@charset "utf-8";
/* ========================================
 common
======================================== */
:root {
    --primary-blue: #424B6F;
    --primary-white: #fff;
    --primary-blueblack: #162531;
    --primary-black: #000;
    --primary-gray: rgba(0, 0, 0, 0.25);
    --primary-darkblue: #61677F;
    --grad-blue: linear-gradient(180deg, #424B6F, #3C4E5B, #162531);
    --grad-pink: linear-gradient(180deg, #CE6969, #D56C6C, #CE6969);
    --grad-red: linear-gradient(180deg, #B00517, #F9909D, #B00517);
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    color:  var(--primary-black, #000);
    background-color: var(--primary-white, #fff);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
section title
======================================== */

.section_title {
    color: #162531;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
}

@media screen and (min-width: 769px) {
    .section_title {
        font-size: 2.8rem;
        text-align: left;
        margin-left: 0;
    }
}

.section_title.center {
    text-align: center; 
}

.section_title.center.mt-20 {
    margin-top: 20px;
}

/* ========================================
btn
======================================== */

.btn {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    padding: 13px 49px;
    margin: 0 auto;
    width: 300px;
    height: 50px;
    background: var(--primary-blueblack);
    position: relative;
    transition: 0.4s;
    gap: 40px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn.order_tab,
.btn.order-btn {
  background-color: #424B6F;
}

.btntext {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
    margin-right: 40px;
}

.btn-light {
    border: 0.5px solid var(--primary-black);
    background: #FFF;
}

.btntext-black {
    color: var(--primary-black);
}

.btn::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 48px;
    aspect-ratio: 1/2;
    background-image: url(../images/icons/chevron.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 49px;
}

.btn:hover {
    opacity: 0.5;
}

.btn-light::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 48px;
    aspect-ratio: 1/2;
    background-image: url(../images/icons/chevron-black.svg); /* 黒のSVGを指定 */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 49px;
}

.btn-dark {
    margin-bottom: 100px;
}

.header,
.nav_top {
    height: 79px;
    padding: 50px 6.6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 79px;
    padding: 50px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999; /* 他の要素より上に */
}

.header_btn {
    width: 33px;
    height: 33px;
}

.nav_top {
    height: 79px;
    padding: 50px 6.6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-icon {
    height: 33px;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* nav 初期表示 */
.nav {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    padding-bottom: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translateX(0);
}

.nav_list {
    width: 280px;
    height: 493px;
    margin: 50px auto;
}

.nav_item {
    display: flex;
    height: 51px;
    margin-top: 30px;
}

.nav_item:nth-of-type(2) {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 51px;
    margin-top: 30px;
}

.nav_item:nth-of-type(3) {
    display: flex;
    align-items: center;
    height: 51px;
    gap: 33px;
    margin-top: 30px;
}

.nav_item:first-of-type {
    margin-top: 0
}

.main_text {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

.sub_text {
    display: block;
    margin-top: 10px;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
}

.small_list {
    padding: 5px 0;
    gap: 10px;
}

.small_text {
    color: #666;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
}

.item {
    margin-right: 60px;
}

.nav_item:last-of-type {
    display: none;
    width: 186px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: Inter;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
    background: #424B6F;
}

.banner {
    text-align: center;
    margin: 0 auto;
}


/* ========================================
hamburger menu
======================================== */

.menu_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu_label {
    font-family: Noto Sans JP;
    font-size: 1.0rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 4px;
    letter-spacing: 0.05em;
  }
  
  .lines {
    width: 18px;
    height: 10px;
    position: relative;
  }
  
  .lines span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    position: absolute;
    left: 0;
    transition: all 0.4s ease;
  }
  
  .lines span:nth-child(1) {
    top: 0;
  }
  
  .lines span:nth-child(2) {
    bottom: 0;
  }
  
  /* メニュー開いた時に × に変形 */
  .menu_btn.active .lines span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  
  .menu_btn.active .lines span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: -2px;
  }

  .nav_btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    width: 33px;
    height: 33px;
  }

/* hamburger menu 終わり */

.floating-order-btn {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 96px;
    height: 96px;
    background-color: var(--primary-blueblack);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 1000;
    border: 0.5px solid var(--primary-white);
}

.floating-order-btn img {
    color: var(--primary-white);
}

.store {
    color: var(--primary-white);
    text-align: center;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.5; /* 150% */
    margin-bottom: 5px;
}

.illustrations {
    position: relative;
}

.illust1 {
    width: 147px;
    height: 133px;
    opacity: 0.33;
    position: absolute;
    right: 40px;
    bottom: 67px;
}

/* main */

.main {
    margin-top: 100px;
}
.top {
    position: relative;
}

.top h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.band1 {
    margin-top: -25vh;
}

.band2 {
    margin-top: 7vh;
}

.band3 {
    margin-bottom: -31vh;
}

.hero_image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, transform 3s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.top__bottomtext {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.50);
    opacity: 0.8;
    text-align: right;
    font-family: Marcellus;
    font-size: 8.0rem;
    font-weight: 400;
    line-height: 1;
}

.slick-active .slide {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 10;
}

.slide2 {
    object-position: 50% 15%;
}

.slide4 {
    object-position: 50% 70%;
}


.brand_concept {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    color: var(--primary-white);
}

.brand_concept span {
    display: block;
    width: fit-content;
    height: fit-content;
    padding: 15px 5px;
    background: rgba(0, 0, 0, 0.18);
    color: #FFFFFF;
}

.description {
    margin: 100px auto 50px;
    width: 90%;
    color: var(--primary-blueblack);
    font-family: "Shippori Mincho";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 1.8px;
    text-align: left;
}

.fontsize {
    color: var(--primary-blueblack);
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 2.4px;
}


.sub_image {
    margin: 50px 0;
}

.sub_image img {
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin: 0 10px;
}

.description:last-of-type {
    margin-top: 14px;
    text-align: right;
}

.aboutus {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 100px 0 0;
    gap: 20px;
}

.illust2 {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 999;
}

.link {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
}

.illust3 {
    position: absolute;
    bottom: -180px;
    right: 10px;
    z-index: 100;
}

.feature {
    margin: 0 auto;
    width: 340px;
}

.feature_text {
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 20px;
    text-align: left;
    margin-left: 0;
}

.features {
    margin-top: 100px;
    padding: 60px 5% 0;
}

.features:last-of-type {
    margin-bottom: 100px;
}

/* .features img {
    margin-top: 20px;
} */

.feature-section_text {
    color: rgba(0, 0, 0, 0.25);
    font-family: Marcellus;
    font-size: 4.0rem;
    font-weight: 400;
    line-height: 1.0; /* 100% */
}

.img-text.imgleft,
.img-text.imgright {
    position: relative;
}

.txt1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}

.txt2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.img-text {
    display: flex;
    margin-top: 20px;
}


.feature-section_image1 {
    margin-top: 20px;
}

.feature-section_image3 {
    display: block;
    margin-left: auto;
}

.rank {
    width: 340px;
    margin: 0 auto;
}

.section_title {
    margin-top: 100px;
}

.rank_image {
    display: flex;
    margin: 30px 20px;
    gap: 20px;
}

.rank_item {
    position: relative;
}

.rank_img {
    width: 150px !important;
    height: 150px !important;
    max-width: none !important;
    max-height: none !important;
}


.ranking {
    position: absolute;
    top: 0;
    left: 10px;
    width: 31px;
    height: 41px;
    z-index: 10px;
}

.item_title {
    color: var(--primary-black);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 30px; /* 166.667% */
}

.section_title:nth-of-type(4) {
    display: block;
    align-items: center;
}

.special {
    margin: 100px auto 100px;
    width: 340px;
}

.message {
    width: 340px;
    margin: 0 auto;
}

.text::before {
    content: '';
    display: block;
    width: 300px;
    height: 0.5px;
    margin: 10px auto;
    background-color: var(--primary-black);
}

.text {
    margin: 20px;
    text-align: center;
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.text::after {
    content: '';
    display: block;
    width: 300px;
    height: 0.5px;
    margin: 10px auto;
    background-color: var(--primary-black);
}

.text2 {
    margin-top: 20px;
    color: var(--primary-black);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7; /* 178.571% */
}

.message img {
    margin-top: 20px;
}

.insta_image {
    display: flex;
    align-items: center;
    margin: 40px;
    gap: 20px;
}

.text3 {
    margin: 30px auto 17px;
    color: var(--primary-black);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.footer {
    margin: 140px auto 10px;
}

.sns {
    display: flex;
    align-items: center;
    width: 280px;
    margin: 0 auto;
    text-align: left;
    gap: 18px;
}

.icon {
    width: 29px;
    height: 29px;
}

.SNS_insta,
.SNS_base {
    display: flex;
    gap: 10px;
}

.sns_title {
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.important {
    width: 280px;
    display: flex;
    margin: 0 auto;
    gap: 20px;
}

.small_text {
    margin-top: 20px;
    color: var(--primary-black);
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
}

.footer_logo {
    display: block;
    align-items: center;
    text-align: center;
}

.footerlogo_img {
    margin-top: 30px;
}

.text4 {
    margin-top: 30px;
}

.nav_list {
    margin: 30px auto;
}

.copy {
    margin-top: 50px;
}


/* ========================================
 modal window　【注文instaORbase】
======================================== */
.modal {
    padding: 50px 6.6%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease,visibility 0.3s ease;
    /* padding: 16px 5%;
    color: var(--primary-black);
    margin: 60px auto;
    gap: 30px; */
}

.modal .modal_content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
}

.modal_btn {
    margin: 0 auto;
}

.modal_title {
    display: flex;
    padding: 4px;
    justify-content: space-between;
    align-items: center;
}

.modal_text {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center; /* 中央寄せ */
    text-align: center;
    margin-top: 10px;
}

.modal_text0 {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

.m_btn_text {
    color: var(--primary-white);
    text-align: center;
    font-family: Inter;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
}

.m_btn_text.background_blue {
    background-color: var(--primary-blue);
}

.btn_rap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    width: 308px;
    height: 57px;
    background-color: #5A6DA6;
    margin-top: 10px;
}

.btn_rap:first-of-type {
    margin-top: 30px;
}

.base-btn {
    background-color: #8C8359;
}

.color {
    color: var(--primary-white);
}

.copy_box {
    display: flex;
    margin-top: 30px;
    gap: 33px;
}

.modal_text2 {
    color: var(--primary-white);
    font-family: Inter;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2; /* 128.571% */
}

.copy_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
    width: 91px;
    height: 29px;
    border-radius: 5px;
    background: #D9D9D9;
    cursor: pointer;
}

.copy_btn img {
    width: 16px;
    height: 16px;
}

.copy_btn_text {
    color: var(--primary-black);
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: normal;
}

.copy_area {
    width: 100%;
    max-width: 307px;
    margin: 10px 0 30px;
    border-radius: 5px;
    border: 1px solid var(--primary-black);
    background-color: var(--primary-white);
    padding: 10px;
}

.copy_text {
    width: 100%;
    height: 230px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: Inter;
    color: #888888;
    border: none;
    outline: none;
    resize: none;
    background: var(--primary-white);
}

/* モーダル表示用のクラス */
.modal.show {
    opacity: 1;
    visibility: visible;
}

/* dipart */

/* article header */

.page_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 98px;
    color: var(--primary-white);
    background-color: var(--primary-blue);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
}

.read {
    padding: 0 5%;
    max-width: 1160px;
    margin: 100px auto;
}

.section_title dipartpage {
    margin-top: 100px;
}

.read_text:first-of-type {
    margin-top: 100px;
}

.read_area img {
    margin-top: 30px;
}

.read_text:last-of-type {
    margin-top: 30px;
}

.read_text {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7; /* 178.571% */
}

.bold {
    font-weight: 700;
}

.last {
    padding: 0 5%;
}

.last img {
    margin-top: 100px;
}

.original_name {
    margin-top: 100px;
    text-align: center;
    color: #6A6A6A;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.0; /* 250% */
    letter-spacing: 0.1em;
}

.blue {
    color: #AFC7E0;
    font-size: 2.4rem;
}

.pink {
    color: #D5BAC3;
    font-size: 2.4rem;
}

.green {
    color: #B2D19A;
    font-size: 2.4rem;
}

.yellow {
    color: #D9C06C;
    font-size: 2.4rem;
}
.red {
    color: #CF7F7F;
    font-size: 2.4rem;
}

.cta {
    margin-top: 100px;
}

.link_aboutus {
    color: var(--primary-darkblue);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.link_page {
    padding: 0 5%;
    margin: 100px auto;
    text-align: center;
}

.text4 {
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.text4:last-of-type {
    margin-top: 100px;
}

.feature-section_image1_pc1 {
    display: none;
}

.footer_image {
    margin-top: 30px;
    width: 100%;
}

.footer_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerlogo img {
    margin-top: 30px;
    min-width: 340px;
}

@media screen and (min-width: 769px) {
    .header {
        height: 79px;
        padding: 50px 6.6%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .brpr {
        display: none;
    }

    .layout_pc {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: center;
        margin-top: 100px;
        gap: 40px;
        max-width: 1160px;
    }

    .read_img {
        width: 50%;
        max-width: 50%;
        height: auto;
    }

    .read_textgroup {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .read_textgroup {
        margin-top: 0;
    }

    .read_text {
        color: var(--primary-black);
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 1.7; /* 178.571% */
    }

    .read_text:last-of-type {
        margin-top: 0;
    }

    .read_text.diparttext {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .read_area img {
        margin-top: 30px;
    }

    .feature-section_image1 {
        width: 340px;
        height: 230px;
    }

    .feature-section_image1_pc1 {
        display: block;
        margin-top: 20px;
        width: 340px;
        height: 230px;
    }

    .pc_img1 {
        display: flex;
        gap: 20px;
        line-height: 0;
    }


    .pc_img1.dipart_last {
        margin: 0 auto;
        max-width: 1160px;
        gap: 40px;
    }

    .features {
        margin: 100px auto 0;
        max-width: 1160px;
    }

    .last {
        max-width: 1160px;
        margin: 0 auto;
    }

    .last_img {
        margin: 0;
        width: 50%;
        height: auto;
    }

    .original_name {
        font-size: 2.4rem;
        text-align: right;
    }

    .section_title.last_title {
        line-height: 2.0;
    } 

    .footer_flex {
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
        gap: 300px;
    }
    
    .footer_right {
        margin-top: 30px;
        gap: 30px;
    }

    .footer_image {
        margin-top: 0;
    }

}

.fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  
  .fadein.show {
    opacity: 1;
    transform: translateY(0);
  }


  .header-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
  
  .header-icon-text {
    font-size: 1.0rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 4px;
    text-align: center;
    color: var(--primary-black);
  }
  .header.scrolled {
      background-color: rgba(255, 255, 255, 0.75);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }