@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;
}
/* 
.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;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.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;
}


/* ========================================
header
======================================== */
.header,
.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;
}

.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;
}

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





.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;
}

/* .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;
}
/* 
.rank {
    width: 340px;
    margin: 0 auto;
} */

/* .section_title {
    margin-top: 100px;
} */

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

.rank_item {
    position: relative;
}



.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;
}

@media screen and (min-width: 769px) {
    .floating-order-btn {
        display: none;
    }

    .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;
    }
}