﻿@charset "UTF-8";

.top_sec .inner {
    max-width: 1400px;
    margin: 0 auto;
}
.top_sec .inner sup {
    font-size: .6em;
    vertical-align: super;
}
.top_sec .inner .caution {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 24px;
}
.top_sec h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 4.0rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    color:#f47996;
    line-height: 1.6;
    font-family: "Times New Roman", Times, serif;
}
.top_sec h2 span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.grid_box {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:4.8rem;
}

@media only screen and (max-width: 749px) {
    .contents section {
        margin-top: 0;
    }
    .top_sec h2 {font-size: 7.46vw;}
    .top_sec h2 span {font-size: 3.2vw;}
    .top_sec .inner .caution {font-size: 2.67vw;}
    .grid_box {
        grid-template-columns: 1fr;
        gap:1.5rem;
    }
}
/*------------------
  shopping guide
------------------*/
#mdB_guide {
    border-top:1px solid #444;
    border-bottom:1px solid #444;
}
#mdB_guide .inner {
    display: flex;
    align-items: center;
} 
#mdB_guide h2 {
    font-size:3.0rem;
    text-align: left;
    color: #444;
    letter-spacing: .1rem;
    line-height: 1.4;
    margin-bottom: 0;
    max-width: 440px;
    width:calc(440 / 1400 * 100%);
    padding-left: clamp(2rem, 7.1vw, 60px);
    min-width: 240px;
}
#mdB_guide .mdB_guide_list {
    display: flex;
    align-items: stretch;
    margin-left: -1px;
}
#mdB_guide .mdB_guide_list .mdB_guide_list_item {
    border-left: 1px solid #444;
    width: 34%;
}
@media only screen and (min-width: 1160px) {
    #mdB_guide h2 .bp1300{
        display: none;
    }
}
@media only screen and (max-width: 749px) {
    #mdB_guide h2 .bp1300{
        display: none;
    }
    #mdB_guide {
        border-bottom:none;
    }
    #mdB_guide .inner {
        display: block;
        border-bottom:1px solid #444;
    }
    #mdB_guide h2 {
        border-bottom:1px solid #444;
        font-size: 6.4vw;
        width: 100%;
        padding: 2.6rem;
        max-width: unset;
    }
}

/* スクロール */
.scroll {
    display: none;
}
@media only screen and (max-width: 749px) {
    .scroll {
        position: relative;
        display: inline-block;
        margin-top: 2rem;
        margin-left: 2rem;
        font-family: 'Times New Roman', Times, serif;
        color: #999;
        letter-spacing: 0.1rem;
    }
    .scroll::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 120%; /* 文字の右横からスタート */
        transform: translateY(-50%);
        width: 12rem; /* 横方向に伸びる */
        height: 1px;
        background-color: #999;
        animation: scroll-line 2s infinite;
    }
}

@keyframes scroll-line {
  0% {
    transform: scale(0, 1) translateY(-50%);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1) translateY(-50%);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1) translateY(-50%);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1) translateY(-50%);
    transform-origin: 100% 0;
  }
}

/*------------------
  about
------------------*/
#mdB_about {
    padding: 100px 0;
    position: relative;
    max-width: 1400px;
    margin: auto;
}
#mdB_about .brandMessage {
    text-shadow: 0 0 12px #fff;
}
#mdB_about .brandMessage p {
    text-align: center;
    font-size: 1.8rem;
    margin: 2em 0;
    line-height: 2.2;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.1em;
    position: relative;
}
#mdB_about .bg_img {
    position: absolute;
    z-index: -1;
}
#mdB_about .bg_img01{
    top:10.5rem;
    left:12rem;
}
#mdB_about .bg_img02 {
    display: none;
}
#mdB_about .bg_img03{
    bottom:10rem;
    right: 6rem; 
}

@media only screen and (max-width: 749px) {
     #mdB_about {
        padding: 8rem 0;
     }
     #mdB_about .brandMessage {
        margin-bottom: 15vw;
     }
    #mdB_about .brandMessage p  {
        font-size: 3.46vw;
        line-height: 1.8;
        padding: 0 3%;
    }
    #mdB_about .bg_img01{
        width: calc(232 / 750 * 100vw);
        top:4rem;
        left:unset;
        right: 0;
    }
    #mdB_about .bg_img02 {
        display: block;
        width: calc(184 / 750 * 100vw);
        top:27.3%;
    }
    #mdB_about .bg_img03{
        width: 100vw;
        position: relative;
        right: unset;
        bottom: unset;
    }
}
/*fade in*/
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*------------------
  point
------------------*/
#mdB_point {
    background-color: #f9efee;
    position: relative;
}
#mdB_point .mdB_point_mv {
    background-color: #e6d4d9;
    text-align: center;
    position: relative;
}
#mdB_point h2 {
    color:#444444 ;
    padding-top: 8rem;
}
#mdB_point .inner {
    max-width: 960px;
}
#mdB_point .acc_content {
    padding-bottom: 8rem;
    
}
.mdB_point_box {
    background-color: #fff;
    padding:4rem 5.6rem;
    border-radius: 2rem;
    margin-bottom: 4rem;
}
.mdB_point_box h3 {
    text-align: center;
    border-bottom: 1px solid #f3d0d8;
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
    font-size: 2.6rem;
    line-height: 1.6;
    font-family: "Shippori Mincho", serif;
}
.mdB_point_box h3 span {
    color:#f47996;
    font-family: "Times New Roman", Times, serif;
    display: block;
    font-size: 3.0rem;
    padding-bottom: 1rem;
    line-height: 1;
}
.mdB_point_box .ph {
    padding-top: 1rem;
}
.mdB_point_box:nth-of-type(3) .ph {
    max-width: 257px;
    margin: auto;
}

/*accordion*/
.acc_content {
    display: none;
}
.acc_btn {
    width: 192px;
    height: 36px;
    border-radius: 18px;
    margin: 0 auto;
    border: 1px solid #444444;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    line-height: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.acc_btn::before {
    content: "";
    position: absolute;
    width: 1.2rem; 
    height: 1px; 
    background-color: #444444;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}

.acc_btn.view {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom:40px;
}
.acc_btn.view::after {
    content: "";
    position: absolute;
    width: 1px; 
    height: 12px; 
    background-color: #444444;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    transition: all 0.3s ease;
}
.acc_btn.view:hover{
    background-color: rgba(255, 255, 2550, 0.65);
}
.acc_btn.view.is-open::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 0.3s ease;
}
.acc_btn.close {
    position: relative;
}
@media only screen and (max-width: 749px) {
    #mdB_point .inner {
        padding: 0 2.4rem;
    }
    #mdB_point h2 {
        padding: 4rem 0 3rem;
        margin-bottom: 0;
    }
    #mdB_point .acc_content {
        padding-bottom: 5rem;
    }
    .acc_btn {font-size:3.2vw ;}
    .acc_btn.view{
        background-color: rgba(255, 255, 2550, 0.65);
    }
    .mdB_point_box {
        padding:2.4rem;
        margin-bottom: 3rem;
    }
    .mdB_point_box h3 {
        padding-bottom: 1.6rem;
        margin-bottom: 1.6rem;
        font-size: 4vw;
    }
    .mdB_point_box h3 span {
        font-size:7.46vw;
        line-height: 1;
    }

    .mdB_point_box .txt {
        display: contents;
    }
    .mdB_point_box .txt p {
        font-size: 3.2vw;
    }
    .mdB_point_box .txt p.caution {
        margin-top: 0;
    }
    .mdB_point_box .ph {
        padding-top:0;
    }
    .mdB_point_box:nth-of-type(1) .txt > p:not(.caution) {
        order: 1;
    }
    .mdB_point_box:nth-of-type(1) .grid_box .ph {
        order: 2;
    }
    .mdB_point_box:nth-of-type(1) .grid_box .txt > .caution {
        order: 3;
    }
    .mdB_point_box:nth-of-type(2) .ph {
        padding-top:0;
    }
    .mdB_point_box:nth-of-type(3) .ph {
        width: 50%;
        padding-top:0;
    }
}

/*------------------
  media
------------------*/
#mdB_media {
    background-color: #f8f8f8;
    padding: 120px 0;
}

#mdB_media_swiper {
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
}
.mdB_media_box p{
    font-size: 1.4rem;
    line-height: 1.6;
}
.mdB_media_box p time{
    display: block;
    color:#f47996;
    margin: .8rem 0 .6rem;
}
.mdB_media_box p span {
    display: block;
}
#mdB_media_swiper .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid #8c8c8c;
    border-right: 1px solid #8c8c8c;
    z-index: 1;
}
#mdB_media_swiper .slick-prev {
    left: -30px;  
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#mdB_media_swiper .slick-next {
    right: -30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#mdB_media_swiper .slick-prev:before,
#mdB_media_swiper .slick-next:before {
    content: '';
}
@media only screen and (max-width: 749px) {
    #mdB_media {
        padding: 6rem 0;
    }
    #mdB_media_swiper {
        width: 76%;
        padding-left: 0;
    }
    .mdB_media_box {
        max-width: 177px;
        width: 30%;
        margin: 0 .5rem;
    }
    .mdB_media_box p{
        font-size: 2.6vw;
        line-height: 1.6;
    }
    .mdB_media_box p time{
        display: block;
        color:#f47996;
        margin: .8rem 0 0;
    }
    .mdB_media_box p span {
        display: inline-block;
        padding-left: .5rem;
    }
}

/*------------------
  link
------------------*/
#mdB_link {
    background-color:#f9efee ;
    padding: 100px 0;
}
#mdB_link h2 img{
    width: 102px;
    height: auto;
}
#mdB_link .inner {
    max-width: 960px;

}
#mdB_link .inner .ec_link {
    text-align: center;
    margin-bottom: 50px;
}
.wh_btn {
    width: 320px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #8c8c8c;
    border-radius: 32px;
    display: inline-block;
    position: relative;
    font-size: 1.8rem;
    letter-spacing: .2rem;
}
.wh_btn.login_btn {
    margin-bottom: 20px;
    width: 440px;
}
.wh_btn::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #444444;
    border-right: 1px solid #444444;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(45deg);
}
.wh_btn:hover {
    text-decoration: none;
    background-color: #8c8c8c;
    color: #fff;
}
.wh_btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
}
.login_btn span {
   display: flex;
   justify-content: center;
   align-items: center;
}
.login_btn .arrow-icon {
    max-width: 20px;
    margin-right: 1rem;
}
.txt_link {
    display: inline-flex;
    position: relative;
    border-bottom: 1px solid #8c8c8c;
    align-items: center;
    line-height: 1.6;
    font-size: 1.6rem;
}

.txt_link::after {
    content: "";
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-top: 1px solid #8c8c8c;
    border-right: 1px solid #8c8c8c;
    transform: rotate(45deg);
    margin-left: .2rem;
}
.txt_link:hover {
    text-decoration: none;
    border-bottom-color: #c26f71;
}
.txt_link:hover::after {
    border-top-color: #c26f71;
    border-right-color: #c26f71;
}
#mdB_link .grid_box li:nth-child(odd) a {
    margin-left: auto;
}
#mdB_link .grid_box li:nth-child(odd) {
    text-align: right;
}
@media only screen and (max-width: 749px) {
    #mdB_link {
        padding: 6rem 4.5rem;
    }
    #mdB_link .grid_box {
        grid-template-columns: 1fr 1fr;
        gap:2rem;
        
    }
    #mdB_link .grid_box li:nth-of-type(1){grid-column: 1 / -1;}
    #mdB_link .grid_box li:nth-of-type(2){grid-column: 1 / -1; margin-bottom: 2rem;}
    #mdB_link .grid_box li:nth-of-type(3){grid-column: 1; margin-right: 1.5rem;}
    #mdB_link .grid_box li:nth-of-type(4){grid-column: 2; margin-left: 1.5rem;}

    #mdB_link .inner .ec_link {
        margin-bottom: 2rem;
    }
    .wh_btn {
        width: 100%!important;
        height:5rem;
        border-radius: 2.5rem;
        line-height: 5rem;
        font-size: 3.46vw;
    }
    .wh_btn.login_btn {
        margin-bottom: .5rem;
    }
   .login_btn .arrow-icon {
        width: 5.26%;
    }
    .txt_link {
        font-size: 3.2vw;
    }
    .sns_icon img {
        width: 27%;
    }
}


/*------------------
  MV　スライダー
------------------*/

#top_fv {
    position: relative;
    overflow: hidden;
}

.topSlide {
    background: #fff;
    width: 100%;
    height: auto;
}

.topSlide::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}

.topSlide.slick-initialized::before {
    display: none;
}

.topSlide .slick-slide {
	background: #eaeaec;
}

.topSlide .slick-slide a {
    width: 100%;
    height: 500px;
    display: block;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width:1921px) {
    .topSlide .slick-slide a {
        width: 1920px;
    }
}

.topSlide .slick-slide a img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: none !important;
}

.topSlide .slick-slide a img:hover {
    opacity: 1;
}

.topSlide .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 10px;
}

.topSlide .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.topSlide .slick-dots li button:before {
    line-height: 10px;
    width: 10px;
    height: 10px;
    background: #000;
}

@media only screen and (max-width: 749px) {
    .topSlide {
        width: 100%;
        height: auto;
    }
    .topSlide .slick-slide a {
        height: 100vw;
    }
    .topSlide .slick-slide a img {
        height: 100vw !important;
    }
    .topSlide .slick-dots {
        bottom: -30px;
    }
    .topSlide .slick-dots li {
        width: 3vw;
        height: 3vw;
        margin: 0 3vw;
    }
    .topSlide .slick-dots li button {
        width: 3vw;
        height: 3vw;
    }
    .topSlide .slick-dots li button:before {
        line-height: 3vw;
        width: 3vw;
        height: 3vw;
    }
}

