/************ PC、SP画像切り替え ****************/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
/************ 下向き矢印 ****************/		
.dli-chevron-down {
	position: absolute;
    top: 45%;
    right: 30px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    }	
/************ アンカーリンク ****************/
.anchor_link {
	padding: 0;
    padding-bottom: 40px;
    margin: 0;
    list-style: none;
    text-align: center;
    display: flex;
	flex-wrap: wrap;
    gap: 20px;
	padding-top: 20px;
	justify-content: center;
}
.anchor_link ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.anchor_link > li {
    display:  inline-block;     /* インラインブロック要素にする */
    vertical-align:  middle;    /* 要素を上下中央で揃える */
    width: 30%;
}
.anchor_link > li > a {
    position: relative;
    color: #fff;
    background-color: #EA7EA2;
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    width: 100%;
    border-radius: 100px;
}
/************ メイン画像 ****************/
.bridal_main img ,.bridal_main01 img{
	width: 100%;		
}
/************ タイトル ****************/
.title{
	text-align: center;
	padding: 40px 0 10px;
}
.title p{
	font-size: 34px;
	color: #EA7EA2;
	margin-top: -13px;
}
/************ サブタイトル ****************/
.title_name {
    padding: 30px 0 20px;
}
.title_name p{
    --icon-gutter: 1.5em;
    --heading-gutter: calc(var(--icon-gutter) + 0.5em);
    --default-heading-margin-top: calc(var(--heading-gutter-top) + var(--icon-gutter));
    position: relative;
    padding: 0.8em 5em;
    background-color: #FFEFF1;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: #EA7EA2;
}	
.title_name p:before {	
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 5.215em;
    height: 3.75em;
    background-image: url(https://gigaplus.makeshop.jp/agemochiya/img/bridal_kobito.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}	
.b_noto{
	font-family: "Noto Sans JP";
}
/************ 商品追加 ****************/
.pic_box .p_title{
    font-size: 20px;
    text-align: left;
    padding: 10px 0;
    display: inline-block;
	line-height: 2.5rem;
}
.pic_box img{
	width: 90%;
}
.pic_box .p_text{
    border-top: 2px dotted #333;
	font-size: 15px;
    text-align: left;
    line-height: 2.5rem;
    padding: 10px 0;
	font-family: "Noto Sans JP";
}
.pic_box a .b_btn{
	background-color: #74DDC0;
	border-radius: 100px;
	padding: 10px;
	color: #fff;
	width: 80%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
}
.pic_box .b_price{
	font-size: 24px;
	font-family: "Noto Sans JP";
}
.pic_box .b_price span{
	font-size: 14px;
	padding-left: 10px;
}
/* 4カラム */
*, *:before, *:after {
	box-sizing: border-box;
}
.pic{
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    color: #;
    text-align: center;
	justify-content: space-between;
	padding: 20px 0;
}
.pic > div{
    width: 32%;
	padding: 20px 30px;
	background-color: #fff;
    border-radius: 10px;
}
/********************************************************************/
@media screen and (max-width: 750px) {
.pic > div{
	width: 48%;
	padding: 010px;
    margin-bottom: 10px;
}
.pic_box .p_title {
    font-size: 18px;
}
.pic_box .p_text {
    font-size: 14px;
    line-height: 2rem;
}
.pic_box .b_price {
    font-size: 20px;
}
.pic_box .b_price span{
	padding-left: 5px;
}
pic_box a .b_btn {
    width: 100%;
}
}		
/************ のし ****************/
.noshi_box .noshi_pic {
    display: flex;
    gap: 30px;
}
.noshi_box .noshi_pic img{
    margin: 20px 0 30px;
    width: 350px;
    border-radius: 10px;
}
.noshi_box span{
	color: #E50000;
}
p.noshi_text {
    padding: 10px 0 20px;
	font-family: "Noto Sans JP";
}		
/************ タブ切り替え ****************/
.tabs {
	margin-top: 50px;
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 20px;
}
/*タブのスタイル*/
.tab_item {
    width: calc(99% / 3);
    border-radius: 10px 10px 0 0;
    height: 50px;
    background-color: #74DDC0;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
	clear: both;
    overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  color: #EA7EA2;
}
/************ タブ切り替え（中身） ****************/	
.tab_content_description p{
	padding: 20px 0 0 20px;
}
.tab_content_description .pic{
	padding: 10px 30px;
}
.tab_content_description .pic > div{
	padding: 10px;		
}
.tab_content_description .p_title{
	border-bottom: none;
	font-size: 18px;
    text-align: left;
}
.tab_content_description .b_price{
	font-size: 22px;
	text-align: left;
}
.tab_content_description .b_price span{
	font-size: 14px;
	font-weight: normal;
}
.tab_content_description .pic_box a .b_btn{
	background-color: #EA7EA2;
    color: #fff;
    width: 90%;
}
.tab_content_description .btn_more img {
	width: 30%;
    padding: 20px 0 50px;
	display: block;
    margin: 0 auto;
}		
.sp_anchor_link{
	display: none;
}
/************ sp ****************/ 
@media only screen and (max-width: 750px) {
.title p {
    font-size: 26px;
}	
.sp_anchor_link{
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 3px;
}
.sp_anchor_link > li > a {
	color: #fff;
    background-color: #EA7EA2;
    text-decoration: none;
    display: inline-block;
    font-family: "Zen Maru Gothic", serif;
    padding: 15px;
    line-height: 2rem;
	font-size: 13px;
}
.sp_anchor_link .dli-chevron-down{
	transform: translateX(40px) rotate(135deg);
	}
.anchor_link {
	padding: 0;
    display: block;
}
.anchor_link > li > a {
	padding: 10px 5px;
        font-size: 13px;
        line-height: 1.8rem;
        border-radius: inherit;
        width: 100%;
        height: 65px;
        margin-bottom: 20px;
}
.dli-chevron-down {
        transform: translateY(22px) rotate(135deg);
        display: block;
        right: 45%;
}
.bridal_box {
    display: flex;
    flex-wrap: wrap;
}
.title_name p{
	padding: 8px 5px 8px 100px;
	line-height: 2.5rem;
	font-size: 20px;
}
.tab_content_description .btn_more img {
    width: 90%;
}
.noshi_box .noshi_pic {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	}
.noshi_box .noshi_pic img {
    width: 45%;
}
.tab_item {
    width: calc(97% / 3);
    font-size: 12px;
    text-align: center;
}
}
@media only screen and (max-width: 1441px) {
.tab_item {
    width: calc(98.9% / 3);
    }
    }
@media only screen and (max-width: 1355px) {
.tab_item {
    width: calc(98.8% / 3);
    }
    }
@media only screen and (max-width: 1249px) {
.tab_item {
    width: calc(98.6% / 3);
    }
    }
@media only screen and (max-width: 813px) {
.tab_item {
    width: calc(97% / 3);
    }
    }
/*
@media only screen and (max-width: 768px) {
.tab_item {
    width: calc(97% / 3);
    }
    }
*/
/*
@media only screen and (max-width: 677px) {
.tab_item {
    width: calc(98.3% / 3);
    }
    }
*/
