@charset "UTF-8";
/* CSS Document */

:root {
--bkColor:#000;
--primaryColor:#FF3E3E;
--secondaryColor:#3F9DC2;
--mombaseColor:#FFF5F5;
--dadbaseColor:#F4FCFF;
--primaryAlpha:rgba(240, 60, 61, .6);
--secondaryAlpha:rgba(61, 159, 196, .6);
--momGrade:linear-gradient(90deg, #C20000 0%, #FC1D1D 17%, #BB0000 100%);
--dadGrade:linear-gradient(90deg, #028DC1 0%, #5EC8F0 17%, #007AA8 100%);
--redColor:#FF0000;
--whiteColor:#fff;
--linkColor:#00B59C;
--shadowColor:rgba(0, 0, 0, 0.35);
--grayColor:#575757;
}
/*========= ▼reset ===============*/
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video, a):not(svg *)) {all: unset;display: revert;}
/* box-sizingの優先値 */
*, *::before, *::after {box-sizing: border-box;}
/* リストのスタイル（箇条書き・番号）を削除します */
ol,ul {list-style: none;}
/* 画像がコンテナを超えないようにするため */
img {max-width: 100%;}
/* テーブルのセル間のスペースを削除します */
table {border-collapse: collapse;}
/*========= ▲reset ===============*/

*{box-sizing: border-box;}
a {
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
text-decoration: none;
    color: #333;
}
img {width: auto;max-width: 100%;vertical-align: bottom;}

/*========= LoadingのためのCSS ===============*/
.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100svh;
    background: var(--primaryColor);
    z-index: 999;
}
.loader {
  --c:var(--whiteColor);
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  color: #0000;
  overflow: hidden;
  text-shadow: 0 0 var(--c),11ch 0 var(--c);
  animation: l6 2s infinite linear;
}
.loader:before {
  content:"Loading..."
}
@keyframes l6 {to{text-shadow:-11ch 0 var(--c),0ch 0 var(--c)}}
/*=========▲ LoadingのためのCSS▲ ===============*/
#CONTENTS{overflow-x: inherit;}

#HEADER .global{display: none;}
#CONTENTS, body:not(.noGlobal) #CONTENTS {margin-left: 0;padding: 0;}
#FOOTER{margin-left: 0;}
#PAGEBODY{padding-bottom: 0;}
.includeSCT .item{box-shadow: 2px 5px 10px var(--shadowColor);}
.includeSCT .name{text-align:left;line-height: 1.5;}
.includeSCT .tag{align-content: flex-start;}
#mfGift2025 ul.action {display: none;}
#mfGift2025 .includeSCT .item{height: auto !important;}/*カードの高さ調節*/

#mfGift2025 {font-family:  "Noto Sans JP", sans-serif;font-optical-sizing: auto; font-weight: 400;font-style: normal;line-break: strict;word-wrap: break-word;word-break: break-all!important;line-height: 1.7;color: var(--bkColor);max-width: 1920px;margin: auto;background: var(--whiteColor);font-feature-settings: "palt";}
#mfGift2025 h2 {font-family: "Noto Sans JP", sans-serif; line-break: strict;word-break: break-word;letter-spacing:inherit;line-break: strict;overflow-wrap: break-word;word-wrap: break-word;word-break: normal !important;letter-spacing:inherit;}
.secInner {position: relative;max-width: 1290px; width: 92%; margin: 0 auto;}
.tabWrapper{position: relative;max-width: 1400px;width: 96%;margin: 0 auto;}

#mfGift2025 .includeSCT .kanbai .item::after{
    background: rgba(0, 0, 0, .5);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "完　売";
    top: 0;
    left: 0;
    font-size: 36px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

#mfGift2025 .includeSCT .tag .stockLabel .outStock{
    background: red;
    color: #fff;
}

section{
    position: relative;
    margin: 0 auto;
}
.combiribbon{
    position: absolute;
    top: -10%;
    width: 10%;
    left: 50%;
    transform: translateX(-50%);
}
.lead{
    font-size: clamp(16px, 1.25vw, 20px); 
    font-weight: 400;
    margin: 6% auto 5%;
    text-align: center;
    width: 94%;
}

/*========= タブのCSS ===============*/
#tabcontrol{
    position: relative;
    display: flex;
}
#tabcontrol a {
   display: inline-block;            
   border-style: solid;              
   border-color: black;              
   border-radius: 10px 10px 0 0; 
   padding: 1em 1em 0.5em 1em;              
   text-decoration: none;            
   color: black;                     
   background-color: white;          
   font-weight: bold;                
   position: relative;
    flex-basis: 49%;
}
#tabcontrol a:nth-child(1){
    background-color: var(--mombaseColor);
    border-width: 3px 3px 0px 3px;
    border-style: solid;
    border-color: var(--primaryColor);
    margin-right: 2%;
    z-index: 5;
}
#tabcontrol a:nth-child(2){
    background-color: var(--dadbaseColor);
    border-width: 3px 3px 0 3px;
    border-style: solid;
    border-color: var(--secondaryColor);
}
#tabcontrol a:hover {
   text-decoration: underline;       
}

#tabbody aside {
   border: 1px solid black; /* 枠線：黒色の実線を1pxの太さで引く */
   margin-top: -3px;        /* 上側にあるタブと1pxだけ重ねるために「-1px」を指定 */
   padding: 5% 3%;            /* 内側の余白量 */
   background-color: white; /* 背景色：白色 */
   position: relative;      /* z-indexを調整するために必要 */
   z-index: 0;              /* 重なり順序を「最も背面」にするため */
}

#tabbody aside:nth-child(1) { background-color: var(--mombaseColor);border: 3px solid var(--primaryColor);}
#tabbody aside:nth-child(2) { background-color: var(--dadbaseColor);border: 3px solid var(--secondaryColor);}
/*========= タブのCSS ===============*/

.momRibbon, .dadRibbon{
    position: absolute;
    top: -1%;
    left: 0;
    width: 27%;
}
.momTab, .dadTav {
    text-align: center;
    margin-left: 3%;
}
.momLead{
    position: relative;
    max-width: 880px;
    padding: 1.5em;
    background: var(--whiteColor);
    border: 1px solid var(--primaryColor);
    margin: auto;
}
.momDay{
    width: 30%;
    margin: auto;
}
.momTerm{
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 500;
    text-align: center;
    margin: 3.5% auto;
}
.notice{
    font-size: clamp(12px, 0.95vw, 15px);
    font-weight: 400;
    color: var(--grayColor);
}
.momImg{
    position: absolute;
    right: 3%;
    bottom: -1px;
    width: 17%;
}
.h2{
    padding: 0.5em;
    position: relative;
    margin: 6% 3% 5% 0;
    text-align: center;
    background: var(--momGrade);
    height: 78px;
    box-shadow: 2px 5px 10px var(--shadowColor);
}
.h2 h2 {
    font-size: 36px;
    color: var(--whiteColor);
    font-weight: 400;
}
.h2::after{
    position: absolute;
    top: 0;
    display: block;
    height: 48px;
    content: "";
    border: 39px solid #bb0000;
    right: -3%;
    border-right-width: 19px;
    border-right-color: transparent;
}

.dh2{
    padding: 0.5em;
    position: relative;
    margin: 6% 3% 5% 0;
    text-align: center;
    background: var(--dadGrade);
    height: 78px;
    box-shadow: 2px 5px 10px var(--shadowColor);
}
.dh2 h2 {
    font-size: 36px;
    color: var(--whiteColor);
    font-weight: 400;
}
.dh2::after{
    position: absolute;
    top: 0;
    display: block;
    height: 48px;
    content: "";
    border: 39px solid #007AA8;
    right: -3%;
    border-right-width: 19px;
    border-right-color: transparent;
}


.ulBox{
    margin: 1% auto 0;
}
.proFlex{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.proFlex > li {
    flex-basis: calc(100% / 4);
    position: relative;
}
.cateUl{
    display: flex;
    flex-wrap: wrap;
}
.cateUl > li {
    flex-basis: 30.333%;
    margin: 0 1.5% 5%;
    position: relative;
    transition: all .5s;
}
.cate01{
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 2px 5px 10px var(--shadowColor);
}
.whObi {
    position: absolute;
    height: 100%;
    width: 47%;
    background: var(--primaryAlpha);
    top: 0;
    left: 0;
    transition: all .5s;
    padding: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.whObi.dadObi{
    background: var(--secondaryAlpha) !important;
}
.icon{
    width: 67px;
    margin-bottom: 1em;
}
.cateTitle{
    font-size: clamp(12px, 1.25vw, 20px);
    color: var(--whiteColor);
    line-height: 1.3;
}
.priceUl{
    display: flex;
    flex-wrap: wrap;
}
.priceUl > li {
    flex-basis: 32.333%;
    margin: 0 0.5% 5%;
    transition: all .5s;
}
.priceUl > li div img {
    filter: drop-shadow(2px 5px 10px var(--shadowColor));
}
#info, #info2{
    position: sticky;
    top: 100px;
    z-index: 99;
    margin: 0 calc(50% - 50vw);
}
.infoInner{
    background: rgba(255, 255, 255, .4);
    box-shadow: 0 5px 10px var(--shadowColor);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter:blur(10px);
    padding: 10px;
    margin: auto;
    width: 94%;
    max-width: 1398px;
    display: flex;
}
#info .info-ul, #info2 .info-ul{
    display: flex;
    margin-left: auto;
}
.info-ul li {
    position: relative;
    height: 65px;
    margin-left: 3px;
}
.rotatefront span:nth-child(1) {
    transform: rotateX(0deg);
    transform-origin: 0 50% -25px;
}
.btn02 {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    outline: none;
    font-size: 13px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.40);
    border-radius: 60px;
}
.btn02 span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    transform-style: preserve-3d;
    transition: 0.5s;
}
.rotatefront span:nth-child(2) {
    transform: rotateX(-90deg);
    transform-origin: 0 50% -25px;
}

#mLink01, #mLink02, #mLink03, #dLink01, #dLink02, #dLink03 {
    padding-top: 170px;
    margin-top: -170px;
}

.dadLead{
    position: relative;
    max-width: 880px;
    padding: 1.5em;
    background: var(--whiteColor);
    border: 1px solid var(--secondaryColor);
    margin: auto;
}

.onlyPc {
    display: block;
}

#mfGift2025 #faBtn a, #mfGift2025 #moBtn a {
    display: block;
}
#mfGift2025 #faBtn a img, #mfGift2025 #moBtn a img {
    box-shadow: 3px 6px 10px var(--shadowColor);
    transition: all .5s;
}

@media (any-hover: hover) {
/*:hover はここに書く*/
.includeSCT .item:hover{transform:translateY(-5px);box-shadow: 2px 10px 20px var(--shadowColor);}
#mfGift2025 .includeSCT .kanbai .item:hover{
  transform: none;
}
    .cateUl > li:hover .whObi{
        width: 100%;
    }

    .priceUl > li:hover{
        transform: translateY(-5px);
    }
    .rotatefront:hover span:nth-child(1) {
    transform: rotateX(90deg);
}
    .rotatefront:hover span:nth-child(2) {
    transform: rotateX(0deg);
}
    #mfGift2025 #faBtn a:hover img, #mfGift2025 #moBtn a:hover img {
        transform: translateY(-5px);
    box-shadow: 3px 2px 5px var(--shadowColor);
    } 
    
}



    /************************************************************/@media screen and (max-width: 1279px) {
      #HEADER .global{display: block;}
    }

    /************************************************************/@media screen and (max-width: 820px) {
        
        .proFlex > li{
            flex-basis: calc(100% / 3);
        }
        .h2, .dh2{
            height: 60px;
        }
        .h2 h2, .dh2 h2{
            font-size: 26px;
        }
        .h2::after, .dh2::after{
            border-width: 30px;
            right: -6%;
        }
        .icon{width: 45px;}
        .icon.icon3{margin-bottom: 0.3em;}
        #tabbody aside {
            margin-top: -3.5px;
        }

        
        .onlyPc {
    display: none;
}

}


    /************************************************************/@media screen and (max-width: 700px) {
        #tabbody section:not(#sec01):not(#sec08) .secInner{
            width: 100%;
        }

        .proFlex > li{
            flex-basis: calc(100% / 2);
        }
        .h2, .dh2{
            height: auto;
            margin: 10% 0;
        }
        .h2 h2, .dh2 h2{
            font-size: 20px;
        }
        .h2::after, .dh2::after{
            display: none;
        }
        .cateUl > li{
            flex-basis: 47%;
        }
        .whObi{
            width: 65%;
        }
        .icon{
            width: 35px;
            margin-bottom: 0.5em;
        }
        .priceUl > li{
            flex-basis: 48%;
            margin: 0 1% 4%;
        }
        .btn02{
            width: 56px;
            height: 56px;
            line-height: 56px;
        }
        .infoInner{
            padding: 5px;
        }
        .info-ul li{
            height: 60px;
        }
        .includeSCT{
            margin-bottom: 0;
        }
        .includeSCT .cont{
            padding-bottom: 0;
        }
        .ribbon{
            margin-top: -5%;
        }
        .combiribbon{
            top: 5%;
        }
        
        
        .onlyPc {
    display: none;
}

}
