@charset "UTF-8";

:root {
    --green: #204A36;
    --white: #fff;
    --bk: #312D2D;
    --gray: #4A4A4A;
    --footerbg: #BFBFBF;
    --accentcolor: #CCA680;
    --base1: #F9F9F9;
    --base2: #ECE8E5;
    --base3: #F7F6F0;
    --jp-font: 'Noto Sans JP', sans-serif;
    --main-copy: 'Zen Kaku Gothic New', sans-serif;
    --en-font: 'Roboto', sans-serif;
}

html {
    font-size: 62.5%;
    width: 100%;
    box-sizing: border-box;
    color: var(--bk);
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
    background-color: var(--base1);
    transition: all 0.5s ease 0.1s;
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
}

@media screen and (max-width: 768px) {
    body {
        min-width: initial;
    }
}

main {
    width: 100%;
    overflow-x: hidden;
}

ul li {
    list-style: none;
}

ol li {
    list-style: none;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.sub_ttl {
    display: block;
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accentcolor);
}

.main_ttl {
    display: inline-block;
    font-size: 3.4rem;
    font-weight: 900;
    margin-top: 8px;
    padding: 0 0 16px;
    background-image: repeating-linear-gradient(45deg, var(--accentcolor) 0px, var(--accentcolor) 1px, rgba(0 0 0 / 0) 0%, rgba(0 0 0 / 0) 50%), repeating-linear-gradient(-45deg, var(--accentcolor) 0px, var(--accentcolor) 1px, rgba(0 0 0 / 0) 0%, rgba(0 0 0 / 0) 50%);
    background-size: 8px 8px;
    background-repeat: repeat-x;
    background-position: center bottom;
    color: var(--bk);
}

/* Loading背景画面設定*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-image: url(../img/loading_bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.loading_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/noise_bg.png);
    background-repeat: repeat;
    background-size: 100px;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 150px;
    z-index: 1;
    border: solid 1px var(--bk);
    outline: solid 8px var(--bk);
    outline-offset: 5px;
    padding: 40px 80px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
        -webkit-filter: blur(0);
    }
}




@media(max-width: 1024px) {
    .sp {
        display: none;
    }

    .tb {
        display: block;
    }

    .pc {
        display: none;
    }
}

@media (max-width: 960px) {
    .main_ttl {
        font-size: 2.6rem;
        margin-top: 4px;
        padding: 0 0 14px;
    }
}

@media (max-width: 768px) {
    .main_ttl {
        font-size: 2.2rem;
    }

    #splash_logo img {
        width: 120px;
        padding: 20px 40px;
    }
}

@media(max-width: 580px) {
    .sp {
        display: block;
    }

    .tb {
        display: none;
    }

    .pc {
        display: none;
    }
}

@media (max-width: 1120px) {}

@media (max-width: 780px) {}

@media(max-width:355px) {}

.sp_nav {
    text-align: center;
}

.sidemenu {
    height: 100vh;
    position: fixed;
    right: -100%;
    transition: all 0.6s;
    top: 0;
    width: 100%;
    z-index: 1002;
    background-color: var(--base2);
    background-position: center;
    background-size: cover;
}

.sidemenu h2 {
    color: var(--bk);
    font-size: 2rem;
    text-align: left;
    width: 50px;
    margin: 0 auto 16px auto;
}

.sidemenu h2 img {
    width: 100%;
}

.sidemenu nav {
    width: 94%;
    max-width: 375px;
    margin: 60px auto 24px auto;
    padding: 0 0 24px 0;
}

.sidemenu nav ul {
    width: 90%;
    margin: 0 auto;
}

.sidemenu nav ul li {
    padding: 12px;
    margin-top: 8px;
    border-bottom: 1px rgba(225, 225, 225, 0.7) solid;
    border-top: 1px rgba(225, 225, 225, 0.7) solid;
    text-align: left;
}

.sidemenu nav ul li:last-child {
    margin-top: 20px;
    border-bottom: none;
    border-top: none;
    color: #fff;
    background-color: var(--accentcolor);
    text-align: center;
    padding: 12px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.sidemenu nav ul li:last-child a img {
    margin-bottom: -5px;
    margin-left: 4px;
}

.sidemenu nav ul li a {
    display: block;
    text-decoration: none;
    color: var(--bk);
    font-weight: 600;
    font-size: 1.4rem;
}

.sidemenu nav ul li:last-child a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
}

.hamburger {
    cursor: pointer;
    height: 60px;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    background-color: var(--accentcolor);
    z-index: 1003;
}

.hamburger_linetop,
.hamburger_linebottom {
    background-color: #F0ECE3;
    height: 2px;
    right: 16px;
    position: absolute;
    transition: all 0.6s;
    width: 30px;
}

.hamburger_linetop {
    top: 17px;
}

.hamburger_linecenter {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0 2px 2px 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
}

.hamburger_linebottom {
    top: 41px;
}

.hm_sns_link {
    width: 94%;
    max-width: 375px;
    margin: 0 auto 40px auto;
}

.hm_sns_link p {
    color: var(--bk);
    font-weight: 600;
    text-align: center;
}

.hm_sns_link ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    margin: 16px auto 0 auto;
}

.hm_sns_link ul li a img {
    width: 32px;
}

.nav_open {
    height: 100%;
    overflow: hidden;
}

.sidemenu_inner {
    margin: 0 auto;
    overflow-y: visible;
}

.nav_open .sidemenu {
    overflow-x: hidden;
    right: 0;
}

.nav_open .hamburger_linetop {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
}

.nav_open .hamburger_linecenter {
    display: none;
}

.nav_open .hamburger_linebottom {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
}

.nav_open .overlay {
    opacity: 0.8;
    visibility: visible;
}

.nav_close_overflow {
    overflow: visible;
}

.overlay {
    background-color: var(--white);
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.6s;
    visibility: hidden;
    width: 100vw;
    z-index: 1001;
}

@media screen and (max-width: 1160px) {
    .sidemenu {
        right: 100%;
        width: 100%;
        height: 100%;
    }
}

@media screen and (min-width: 901px) {
    .sp_nav {
        display: none;
    }
}

@media (max-width: 1120px) {
    .hm_sns_link ul {
        width: 75%;
    }
}

@media (max-width: 580px) {
    .hm_sns_link ul {
        width: 75%;
    }
}

.header {
    width: 100%;
    height: 90px;
    background-color: var(--base2);
    position: relative;
    z-index: 100;
}

.header_bg {
    width: 97.35974%;
    height: 90px;
    display: flex;
    align-items: center;
    max-width: 1212px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    z-index: 10;
}

.header_inner_flex {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    line-height: 1;
    width: 227px;
}

.logo img {
    width: 100%;
}

.header_nav {
    width: 100%;
}

.header_nav ul {
    display: flex;
    justify-content: end;
    align-items: center;
}

.header_nav ul li:not(:first-child) {
    margin-left: 40px;
}

.header_nav ul li:last-child a {
    background-color: var(--accentcolor);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    outline: 1px solid;
    outline-color: var(--accentcolor);
    outline-offset: 0px;
    display: inline-block;
    transition: .3s;
}

.header_nav ul li a {
    text-decoration: none;
    display: block;
    color: var(--bk);
    font-weight: 800;
    cursor: pointer;
    font-size: 1.4rem;
}

.header_nav ul li a:hover {
    animation: light .8s infinite;
}

@keyframes light {
    100% {
        outline-color: transparent;
        outline-offset: 6px;
    }
}

.header_nav ul li:first-of-type a {
    border-radius: 36px 0 0 36px;
    -webkit-border-radius: 36px 0 0 36px;
    -moz-border-radius: 36px 0 0 36px;
    -ms-border-radius: 36px 0 0 36px;
    -o-border-radius: 36px 0 0 36px;
}

#fixed-header {
    position: fixed;
    display: flex;
    background-color: var(--base2);
    top: -90px;
    width: 100%;
    height: 90px;
    text-align: center;
    box-sizing: border-box;
    z-index: 500;
    transition: 0.75s;
    -webkit-transition: 0.75s;
    -moz-transition: 0.75s;
    -ms-transition: 0.75s;
    -o-transition: 0.75s;
}

.fixed-header_bg {
    max-width: 1212px;
    width: 97.35974%;
}

.header_nav_scroll ul {
    margin: 0 auto;
}

.header_nav_scroll ul li a {
    color: var(--bk);
}

#fixed-header.is-show {
    top: 0;
}

@media (max-width:1180px) {
    .header {
        height: 60px;
    }

    .header_bg {
        max-width: 100%;
    }

    .header_nav ul li:not(:first-child) {
        margin-left: 16px;
    }

    .header_nav ul li a {
        font-size: 1.2rem;
    }

    .logo {
        width: 200px;
    }

}

@media (max-width:900px) {
    .header_bg {
        height: 6rem;
    }

    .header_nav ul {
        display: none;
    }

    .logo {
        width: 150px;
    }
}

@media (max-width: 900px) {
    #fixed-header {
        top: -60px;
        height: 60px;
    }
}

.delay025s {
    animation-delay: 0.25s;
}

.delay05s {
    animation-delay: 0.5s;
}

.delay075s {
    animation-delay: 0.75s;
}

.delay1s {
    animation-delay: 1s;
}

.delay125s {
    animation-delay: 1.25s;
}

.delay15s {
    animation-delay: 1.5s;
}

.delay175s {
    animation-delay: 1.75s;
}

.delay2s {
    animation-delay: 2s;
}

.delay225s {
    animation-delay: 2.25s;
}

.delay25s {
    animation-delay: 2.5s;
}

.delay275s {
    animation-delay: 2.75s;
}

.delay3s {
    animation-delay: 3s;
}

.delay325s {
    animation-delay: 3.25s;
}

.fadein {
    animation-name: fadeInAnime;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeup {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeleft {
    animation-name: fadeLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faderight {
    animation-name: fadeRightAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeintr,
.fadeuptr,
.fadelefttr,
.faderighttr {
    opacity: 0;
}

.follow-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 500px;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    z-index: 998;
    line-height: 0;
}

.follow-banner a {
    display: block;
    text-decoration: none;
    width: 100%;
}

.follow-banner a img {
    width: 100%;
}

.follow-banner a:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.close-btn {
    position: absolute;
    top: -5px;
    right: 0px;
    background-color: var(--accentcolor);
    border-radius: 100vh;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 100vh;
    -moz-border-radius: 100vh;
    -ms-border-radius: 100vh;
    -o-border-radius: 100vh;
}

@media (max-width: 480px) {
    .follow-banner {
        width: 100%;
        padding: 0;
    }

    .follow-banner a img {
        width: 100%;
    }

    .close-btn {
        top: -10px;
        right: 0px;
    }

}

.intro {
    background: linear-gradient(rgba(236, 232, 229, 0) 0, rgba(236, 232, 229, 1) 75%);
    padding: 150px 0 100px 0;
    position: relative;
    z-index: 10;
}

.intro_inner {
    max-width: 1440px;
    margin: 0 auto;
}

.intro01 {
    width: calc(240 / 1440 * 100%);
    margin: 0 auto 0 34.722222%;
}

.intro02 {
    width: calc(247 / 1440 * 100%);
    margin: -17.45173% auto 0 68.95833%;
}

.intro03 {
    width: calc(262 / 1440 * 100%);
    margin: -7.3359% auto 0 5.13888%;
}

.intro04 {
    width: calc(520 / 1440 * 100%);
    margin: -16.91119% auto 0 29.16666%;
}

.intro05 {
    width: calc(448 / 1440 * 100%);
    margin: -15.90733% auto 0 68.95833%;
}

.intro06 {
    width: calc(476 / 1440 * 100%);
    margin: -0.61776% auto 0 0;
}

.intro07 {
    width: calc(520 / 1440 * 100%);
    margin: -18.45559% auto 0 52.08333%;
}

.img_box img {
    width: 100%;
}

.img_box video {
    width: 100%;
}

@media (max-width: 960px) {
    .intro {
        padding: 80px 0 64px 0;
    }
}

@media (max-width: 768px) {
    .intro_inner {
        max-width: 100%;
        margin: 0 auto;
    }

    .intro01 {
        width: calc(159 / 375 * 100%);
        margin: 0 auto 0 0;
    }

    .intro02 {
        width: calc(187 / 375 * 100%);
        margin: -82px 0 0 auto;
    }

    .intro03 {
        width: calc(119 / 375 * 100%);
        margin: -128px auto 0 0;
    }

    .intro04 {
        width: calc(316 / 375 * 100%);
        margin: 26px auto 0 3.2%;
    }

    .intro05 {
        width: calc(216 / 375 * 100%);
        margin: 17px 0 0 auto;
    }

    .intro06 {
        width: calc(230 / 375 * 100%);
        margin: 17px auto 0 0;
    }

    .intro07 {
        width: calc(327 / 375 * 100%);
        margin: 14px 0 0 auto;
    }
}

.concept_section {
    background-color: var(--base3);
    padding: 100px 0;
}

.concept_inner {
    padding: 0 16px;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.concept_txt_area {
    width: 50%;
    text-align: left;
}

.concept_ttl_box span {
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accentcolor);
    letter-spacing: 0.05rem;
}

.concept_ttl_box h2 {
    margin-top: 12px;
    font-family: var(--main-copy);
    font-size: 6rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--bk);
    letter-spacing: 0.05rem;
}

.concept_paragraph_box {
    margin: 40px 0 0 0;
}

.concept_paragraph_box p {
    line-height: 1.77;
    font-weight: 600;
    color: var(--gray);
    font-size: 1.8rem;
}

.swiper,
swiper-container {
    margin-right: 0;
}

.slidr_box {
    flex: 1;
    margin-right: calc(50% - 50vw);
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
    animation: zoomUp 7s linear 0s normal both;
}

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

.swiper-slide img {
    height: auto;
    width: 100%;
}

@media (max-width: 960px) {
    .concept_inner {
        max-width: 94%;
        display: block;
    }

    .slidr_box {
        margin: 32px auto 0;
    }

    .concept_txt_area {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .concept_section {
        padding: 80px 0;
    }

    .concept_inner {
        margin: 0 auto;
        flex-wrap: wrap;
        padding: 0;
    }

    .concept_ttl_box h2 {
        margin-top: 10px;
        font-size: 2.8rem;
    }

    .concept_paragraph_box {
        margin: 20px 0 0 0;
    }

    .concept_paragraph_box p {
        line-height: 1.71;
        font-size: 1.4rem;
    }

    .swiper-pagination-bullet {
        height: 12px;
        width: 12px;
    }

    .swiper-pagination-bullet-active {
        height: 20px;
        width: 20px;
    }
}

.section_features {
    padding: 100px 0 250px 0;
    background-color: var(--base2);
}

.section_features_inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px;
}

.features_ttl_box {
    margin-bottom: 48px;
}

.features_list_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.features_list_flex li {
    width: 24.03846%;
}

.features_list_flex li:nth-child(-n + 4) {
    margin-bottom: 42px;
}

.features_no_bg {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 100vh;
    background-color: var(--accentcolor);
}

.features_no_bg img {
    width: 100%;
}

.features_no_bg p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--en-font);
    color: var(--white);
}

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

.features_list_img img {
    width: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.features_list_paragraph {
    color: var(--bk);
}

.features_list_paragraph h3 {
    margin: 16px 0 8px 0;
    font-size: 2rem;
    font-weight: 900;
    color: var(--bk);
}

.features_list_paragraph p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray);
}

.features_list_paragraph a {
    text-decoration: underline;
    color: var(--bk);
}

.app_banner {
    margin-top: 56px;
    max-width: 100%;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
}

.app_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.app_banner:hover::before {
    animation: kirarinrevorution 0.7s;
    -webkit-animation: kirarinrevorution 0.7s;
}

@keyframes kirarinrevorution {
    100% {
        left: 125%;
    }
}

.app_banner img {
    width: 100%;
}

.pc_banner {
    display: block;
}

.sp_banner {
    display: none;
}

@media (max-width: 960px) {
    .section_features {
        padding: 80px 0 120px 0;
    }

    .features_list_flex li {
        width: 30.666%;
        margin: 0 8px 8px 8px;
    }

    .features_no_bg {
        width: 40px;
        height: 40px;
    }

    .features_list_paragraph h3 {
        margin: 12px 0 8px 0;
        font-size: 1.8rem;
    }

    .features_list_paragraph p {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.71;
    }

    .features_list_flex {
        justify-content: center;
    }

    .features_list_flex li:nth-child(-n + 4) {
        margin-bottom: 8px;
    }

    .features_list_flex li:nth-child(n + 7) {
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .section_features_inner {
        max-width: 94%;
        padding: 0;
    }

    .features_ttl_box {
        margin-bottom: 13px;
    }

    .features_list_flex {
        justify-content: space-between;
    }

    .features_list_flex li {
        width: 48.06666%;
        margin: 0 0 8px 0;
    }

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

    .features_no_bg {
        width: 32px;
        height: 32px;
        margin: 0 auto 10px auto;
    }

    .features_no_bg p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        font-size: 1.5rem;
    }

    .features_list_paragraph h3 {
        margin: 12px 0 8px 0;
        font-size: 1.6rem;
    }

    .features_list_paragraph p {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.71;
    }

    .features_list_flex li:nth-child(-n + 4) {
        margin-bottom: 8px;
    }

    .features_list_flex li {
        margin-bottom: 8px;
    }

    .features_list_flex li:nth-child(n + 7) {
        margin-bottom: 0px;
    }

    .pc_banner {
        display: none;
    }

    .sp_banner {
        display: block;
    }

    .app_banner {
        margin-top: 24px;
    }
}

.wearing_section {
    background-color: var(--base3);
    padding: 100px 0;
    position: relative;
    width: 100%;
}

.wearing_top_bg {
    width: 125vw;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: var(--base3);
    clip-path: ellipse(50% 250% at 50% 250%);
}

.section_ttl {
    margin-bottom: 40px;
}

.wearing_inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px;
}


.wearing_flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 20px;
}

.size_img_box {
    position: relative;
    width: 32%;
    cursor: pointer;
}

.size_img_box:hover {
    opacity: 0.75;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.back-image {
    display: none;
    opacity: 0;
}

.front-image img,
.back-image img {
    width: 100%;
}

.top_tag {
    position: absolute;
    top: 0px;
    right: 0px;
}

.top_tag_bg {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--accentcolor);
}

.size {
    width: 100%;
    line-height: 0.7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-weight: 900;
    font-size: 2rem;
    color: var(--white);
    font-family: var(--en-font);
}

.size span {
    font-size: 1rem;
    font-family: var(--jp-font);
}

.bottom_tag {
    position: absolute;
    bottom: 0;
    left: 0;
}


.peace_tag {
    position: absolute;
    bottom: 0;
    left: 0;
}

.bottom_tag_bg {
    background-color: var(--accentcolor);
    width: 74px;
    height: 41px;
    position: relative;
}

.peace {
    background-color: var(--accentcolor);
    position: relative;
    padding: 7px 5px;
}

.name {
    font-size: 1rem;
    text-align: left;
    font-weight: 500;
    color: var(--white);
}

.name span {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: var(--jp-font);
    display: block;
    padding-top: 2px;
}

.cm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-size: 1rem;
    text-align: left;
    font-weight: 500;
    color: var(--white);
}

.cm span {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--en-font);
}


.tap_btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.tap_btn_bg {
    width: 50px;
    height: 50px;
    border-radius: 100vh;
    -webkit-border-radius: 100vh;
    -moz-border-radius: 100vh;
    -ms-border-radius: 100vh;
    -o-border-radius: 100vh;
    background-color: rgba(204, 166, 128, 0.75);
    animation: mochimochi 1s infinite;
}

@keyframes mochimochi {
    0% {
        transform: scale(1, 0.9);
        -webkit-transform: scale(1, 0.9);
        -moz-transform: scale(1, 0.9);
        -ms-transform: scale(1, 0.9);
        -o-transform: scale(1, 0.9);
    }

    20% {
        transform: scale(0.9, 1.1);
        -webkit-transform: scale(0.9, 1.1);
        -moz-transform: scale(0.9, 1.1);
        -ms-transform: scale(0.9, 1.1);
        -o-transform: scale(0.9, 1.1);
    }

    90% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 0.9);
        -webkit-transform: scale(1, 0.9);
        -moz-transform: scale(1, 0.9);
        -ms-transform: scale(1, 0.9);
        -o-transform: scale(1, 0.9);
    }
}

.tap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.tap_btn_bg p {
    font-size: 1rem;
    width: 100%;
    color: var(--white);
}

.tap_btn_bg p i {
    font-size: 1.6rem;
    line-height: 1.25;
}



@media (max-width: 960px) {
    .wearing_section {
        background-color: var(--base3);
        padding: 40px 0 80px 0;
        position: relative;
        width: 100%;
    }

    .wearing_top_bg {
        width: 150vw;
        height: 80px;
        top: -80px;
    }

    .wearing_flex {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .wearing_inner {
        max-width: 94%;
        margin: 0 auto;
    }

    .swiper02 {
        margin: 54px calc(50% - 50vw) 0 calc(50% - 50vw);
        cursor: pointer;
    }

    .size_img_box {
        width: calc(50% - 5px);
    }

    .bottom_tag_bg {
        width: 60px;
        height: 40px;
    }

    .cm {
        line-height: 1.25;
    }

    .cm span {
        font-size: 1.6rem;
    }

    .top_tag_bg {
        width: 40px;
        height: 40px;
    }

    .size {
        font-size: 1.6rem;
    }

    .size span {
        line-height: 1.25;
    }
}

.recommendation_section {
    background-color: var(--base3);
    padding-bottom: 100px;
    position: relative;
    width: 100%;
}

.wearing_bottom_bg {
    width: 125vw;
    height: 150px;
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translate(-50%, 0%) rotate(180deg);
    -webkit-transform: translate(-50%, 0%) rotate(180deg);
    -moz-transform: translate(-50%, 0%) rotate(180deg);
    -ms-transform: translate(-50%, 0%) rotate(180deg);
    -o-transform: translate(-50%, 0%) rotate(180deg);
    background-color: var(--base3);
    clip-path: ellipse(50% 250% at 50% 250%);
    z-index: 10;
}

.recommend_innner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px;
}

.recommend_ttl {
    margin-bottom: 48px;
}

.recommend_list_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.recommend_list_flex li {
    width: 31.4423%;
}

.recommend_box {
    width: 100%;
    text-align: left;
}

.recommend_box img {
    width: 100%;
}

.recommend_box h3 {
    font-size: 2rem;
    font-weight: 900;
    margin: 16px 0 8px 0;
    color: var(--bk);
}

.recommend_box p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.75;
}

.recommend_attention {
    text-decoration: underline;
    color: #767676;
    font-size: 1.2rem;
}

@media (max-width: 960px) {
    .recommendation_section {
        padding-bottom: 40px;
    }

    .wearing_bottom_bg {
        width: 150vw;
        height: 80px;
        bottom: -80px;
    }
}

@media (max-width: 768px) {
    .recommend_ttl {
        margin-bottom: 32px;
    }

    .recommend_innner {
        max-width: 94%;
        padding: 0;
    }

    .recommend_list_flex li {
        width: 100%;
    }

    .recommend_list_flex li:nth-child(n+2) {
        margin-top: 32px;
    }

    .recommend_box h3 {
        font-size: 1.6rem;
        margin: 12px 0 8px 0;
    }

    .recommend_box p {
        font-size: 1.4rem;
    }
}

.flow_section {
    background-color: var(--base2);
    padding: 250px 0 0 0;
    margin-bottom: -64px;
}

.flow_innner {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
}

.flow_ttl h2 {
    margin-bottom: 48px;
}

.flow_ttl {
    text-align: left;
}

.swiper03 {
    margin: 0px calc(50% - 50vw) 0 auto;
    cursor: pointer;
}

.swiper03_box {
    width: 100%;
    background-color: var(--base3);
    box-shadow: 6px 6px 10px rgba(0 0 0 / 0.16);
}

.flow_content {
    width: 100%;
    padding: 45px 0;
}

.step {
    display: inline-block;
    letter-spacing: 0.04rem;
    font-family: var(--en-font);
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    background-color: var(--accentcolor);
    padding: 6px 16px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin: 0 0 8px 0;
}

.flow_name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--bk);
}

.phone {
    width: 70px;
}

.member_card {
    width: 80px;
}

.cart {
    width: 75px;
}

.mail {
    width: 73px;
}

.track {
    width: 100px;
}

.icon_bg {
    margin: 0 auto;
}

.icon_bg img {
    width: 100%;
}

.flow_paragraph {
    max-width: 280px;
    padding: 0 16px;
    margin: 14px auto 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray);
}

.flow_paragraph a {
    font-weight: 600;
}

.slide03_margin {
    margin-right: 24px;
}

.opacity_slid {
    opacity: 0;
}

.swiper_button_usagi {
    top: 30px !important;
    right: 80px !important;
}

.swiper-button-tatsu {
    top: 30px !important;
    right: 0 !important;
}

@media (max-width: 960px) {
    .flow_section {
        padding: 120px 0 0 0;
        margin-bottom: -40px;
    }
}

@media (max-width: 768px) {
    .flow_ttl {
        text-align: center;
    }

    .flow_paragraph {
        font-size: 1.4rem;
    }

    .flow_innner {
        padding: 0;
    }

    .flow_ttl h2 {
        margin-bottom: 32px;
    }

    .swiper_button_usagi {
        top: auto !important;
        right: 72px !important;
        bottom: 0px !important;
    }

    .swiper-button-tatsu {
        top: auto !important;
        right: 16px !important;
        bottom: 0px !important;
    }

    .swiper03 {
        width: 94%;
        margin: 0 auto;
    }

    .slide03_margin {
        margin-right: 0;
    }

    .opacity_slid,
    .sp_none {
        display: none;
    }
}

.checklist_section {
    background-color: var(--base3);
    padding: calc(64px + 100px) 0 100px 0;
}

.checklist_box {
    margin-bottom: 56px;
}

.checklist_inner {
    padding: 0 16px;
}

.accordion_checklist {
    list-style: none;
    max-width: 1040px;
    margin: 0 auto;
}

.accordion_checklist li {
    margin: 20px 0;
    box-shadow: 6px 6px 10px rgba(0 0 0 / 0.16);
}

.accordion_checklist li:last-child {
    margin-bottom: 0;
}

.checklist_ttl {
    text-align: left;
    position: relative;
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: 700;
    font-weight: normal;
    padding: 3% 3% 3% 125px;
    transition: all .5s ease;
    background-color: var(--base3);
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

li .checklist_ttl {
    font-weight: 700;
    color: var(--bk);
}

.checklist_ttl span {
    background-color: var(--accentcolor);
    width: 53px;
    height: 53px;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.checklist_ttl::before,
.checklist_ttl::after {
    position: absolute;
    content: '';
    width: 17px;
    height: 2px;
    background-color: var(--white);
    z-index: 1;
}

.checklist_ttl::before {
    top: 48%;
    left: 58px;
    transform: rotate(0deg);
}

.checklist_ttl::after {
    top: 48%;
    left: 58px;
    transform: rotate(90deg);
}

.checklist_ttl.close::before {
    transform: rotate(45deg);
}

.checklist_ttl.close::after {
    transform: rotate(-45deg);
}

.checklist_contents {
    display: none;
    background: var(--base3);
    padding: 0px 3% 40px 3%;
}

.checklist_small {
    font-size: 1.2rem;
    font-weight: 500;
}

table {
    width: 100%;
    color: var(--bk);
}

.table_list_price span {
    font-size: 1.2rem;
}

.table_list_01 th {
    border-top: solid 1px var(--base2);
    border-left: solid 1px var(--base2);
    border-right: solid 1px var(--base2);
    padding: 23px 0;
    width: 20.57692%;
    color: var(--bk);
}

.table_list_01 td {
    border-top: solid 1px var(--base2);
    border-left: solid 1px var(--base2);
    border-right: solid 1px var(--base2);
    padding: 10px 10px 10px 40px;
    text-align: left;
    line-height: 1.5;
    font-weight: 400;
    color: var(--gray);
}

.table_list_01 tr:last-child td,
.table_list_01 tr:last-child th {
    border-bottom: solid 1px var(--base2);
}

.product_flex_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.product_img {
    width: 50%;
    margin: 24px auto 0 auto;
}

.product_img img {
    width: 100%;
}

.url {
    font-weight: 600;
}

.table_list_02 td:first-child {
    font-weight: 700;
    color: var(--bk);
}

.table_list_02 th {
    border-top: solid 1px var(--base2);
    border-left: solid 1px var(--base2);
    border-right: solid 1px var(--base2);
    color: var(--bk);
    padding: 10px;
    width: 16.666666%;
    padding: 23px 0;
}

.table_list_02 tr td {
    padding: 23px 0;
    border-top: solid 1px var(--base2);
    border-left: solid 1px var(--base2);
    border-right: solid 1px var(--base2);
    font-weight: 400;
}

.table_list_02 tr:last-child td {
    border-bottom: solid 1px var(--base2);
}

.unit {
    text-align: right;
    color: var(--bk);
    margin-top: 8px;
    font-size: 1.4rem;
}

.sizechart_flex_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.sizechart_img {
    width: 46%;
    margin: 24px auto 0 auto;
}

.sizechart_img img {
    width: 100%;
}

.checklist_paragraph {
    text-align: left;
    line-height: 1.75;
    color: var(--bk);
    font-weight: 400;
}

.question_btn {
    text-align: left;
    display: table;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    background-color: var(--accentcolor);
    padding: 16px 32px;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    margin-top: 10px;
}

.wash_tag {
    max-width: 280px;
}

.wash_tag img {
    width: 100%;
    vertical-align: middle;
}

@media (max-width: 960px) {
    .checklist_section {
        padding: calc(40px + 80px) 0 80px 0;
    }
}

@media (max-width: 768px) {
    .checklist_inner {
        padding: 0;
    }

    .checklist_box {
        margin-bottom: 32px;
    }

    .accordion_checklist {
        max-width: 94%;
        margin: 0 auto;
    }

    .checklist_ttl {
        font-size: 1.6rem;
        padding: 7% 7% 7% 80px;
    }

    .checklist_ttl span {
        width: 36px;
        height: 36px;
        left: 20px;
    }

    .checklist_ttl::before {
        left: 30px;
    }

    .checklist_ttl::after {
        left: 30px;
    }

    .table_list_01 {
        width: 100%;
    }

    .table_list_01 th,
    .table_list_01 td {
        border-bottom: none;
        display: block;
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 10px 10px;
        font-size: 1.4rem;
        text-align: left;
    }

    .table_list_01 td {
        padding: 10px 0;
    }

    .table_list_01 th {
        border: none;
        background-color: var(--accentcolor);
        color: var(--white);
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
    }

    .table_list_01 td {
        border: none;
    }

    .table_list_01 tr:last-child td,
    .table_list_01 tr:last-child th {
        border: none;
    }

    .product_img {
        width: 100%;
    }

    .table_list_02 {
        width: 100%;
    }

    .table_list_02 .thead {
        display: none;
    }

    .table_list_02 tr {
        width: 100%;
    }

    .table_list_02 td {
        display: block;
        text-align: right;
        width: 100%;
        border-bottom: dotted 1px var(--base2);
    }

    .table_list_02 tr:last-child td {
        border-bottom: dotted 1px var(--base2);
    }

    .table_list_02 tr:last-child td:first-child {
        border-bottom: none;
    }

    .table_list_02 td:first-child {
        background: var(--accentcolor);
        color: #fff;
        font-weight: bold;
        text-align: center;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-bottom: none;
    }

    .table_list_02 td:before {
        content: attr(data-label);
        float: left;
        font-size: 1.4rem;
    }

    .table_list_02 th {
        padding: 10px;
    }

    .table_list_02 tr td {
        width: 94%;
        margin: 0 auto;
        padding: 8px 0;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .sizechart_img {
        width: 100%;
    }

    .unit {
        margin: 4px 0 8px 0;
        font-size: 1.2rem;
    }

    .checklist_paragraph {
        font-size: 1.4rem;
        line-height: 1.75;
    }
}

.ctr_section {
    position: relative;
}

.ctr_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/noise_bg.png);
    background-color: rgba(247, 246, 240, 0.2);
    background-size: 100px;
    background-repeat: repeat;
    z-index: 1;
}

.ctr_section_inner {
    max-width: 1040px;
    margin: 0 auto;
    height: 100vh;
}

.ctr_grid_slide {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
}

.kv_ttl_bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 1;
    border: solid 1px var(--bk);
    outline: solid 8px var(--bk);
    outline-offset: 5px;
    padding: 40px 80px;
}

.kv_ttl {
    width: 150px;
}


.kv_ttl img {
    width: 100%;
}

.ctr_grid_slide_inner {
    transform: translate(-50%, -50%) rotate(-10deg);
    -webkit-transform: translate(-50%, -50%) rotate(-10deg);
    -moz-transform: translate(-50%, -50%) rotate(-10deg);
    -ms-transform: translate(-50%, -50%) rotate(-10deg);
    -o-transform: translate(-50%, -50%) rotate(-10deg);
    position: fixed;
    top: 50%;
    left: 50%;
    width: 120%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    z-index: -1;
}

.ctr_section_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ctr_grid_wrap {
    padding-top: 13px;
    transition: transform 0.3s ease-out;
}

.ctr_grid_area {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
}

.ctr_grid_area li img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    box-shadow: 6px 6px 10px rgba(0 0 0 / 0.16);
}

.grid_list_01,
.grid_list_03 {
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
    -o-transform: translateY(10%);
}

.grid_list_02,
.grid_list_04 {
    transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    -o-transform: translateY(-10%);
}

.ctr_btn_wrap {
    width: 50%;
}

.ctr_btn_inner {
    max-width: 438px;
    margin: 0 auto;
}

.order_stop_txt {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.5;
}

.ctr_btn_ttl {
    margin: 0 auto;
}

.cta_logo {
    width: 84px;
    margin: 0 auto 8px auto;
}

.cta_logo img {
    width: 100%;
}

.ctr_btn_inner h3 {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 54px;
}

.ctr_btn_ttl a {
    text-decoration: none;
    position: relative;
    display: block;
}

.limit {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translate(-50%, 0%);
    display: inline-block;
    color: var(--accentcolor);
    font-size: 1.4rem;
    font-weight: 700;
    background-color: var(--white);
    padding: 8px 18px;
    border-radius: 2.2rem;
    -webkit-border-radius: 2.2rem;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
}

.catch {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.ctr_btn_ttl a {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--accentcolor);
    padding: 42px 16.4%;
    outline: 1px solid;
    outline-color: var(--accentcolor);
    outline-offset: 0px;
    transition: .3s;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    box-shadow: 0 0 1px var(--accentcolor), 0 0 4px var(--accentcolor), 0 0 8px var(--accentcolor);
    animation: howahowa 6s infinite;
    -webkit-animation: howahowa 6s infinite;
}

.ctr_btn_ttl a:hover {
    box-shadow: none;
    animation: none;
    -webkit-animation: none;
}

@keyframes howahowa {
    0% {
        box-shadow: 0 0 1px var(--accentcolor), 0 0 4px var(--accentcolor), 0 0 8px var(--accentcolor);
    }

    20% {
        box-shadow: 0 0 2px var(--accentcolor), 0 0 8px var(--accentcolor), 0 0 16px var(--accentcolor);
    }

    40% {
        box-shadow: 0 0 1px var(--accentcolor), 0 0 4px var(--accentcolor), 0 0 8px var(--accentcolor);
    }

    60% {
        box-shadow: 0 0 2px var(--accentcolor), 0 0 8px var(--accentcolor), 0 0 16px var(--accentcolor);
    }

    80% {
        box-shadow: 0 0 1px var(--accentcolor), 0 0 4px var(--accentcolor), 0 0 8px var(--accentcolor);
    }

    100% {
        box-shadow: 0 0 2px var(--accentcolor), 0 0 8px var(--accentcolor), 0 0 16px var(--accentcolor);
    }
}

.catch img {
    width: 20px;
    height: 20px;
    vertical-align: bottom;
    margin-left: 8px;
}

@media (max-width: 1140px) {
    .ctr_section_flex {
        display: block;
    }

    .ctr_grid_slide {
        width: 100%;
        height: 100vh;
        margin: 0 calc(50% - 50vw);
        padding: 0 calc(50vw - 50%);
    }

    .ctr_btn_wrap {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }

    .ctr_grid_slide_inner {
        width: 300%;
    }
}

@media (max-width: 768px) {
    .ctr_section_inner {
        max-width: 94%;
    }

    .ctr_btn_inner {
        max-width: 94%;
    }

    .ctr_btn_inner h3 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .limit {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 4px 16px;
        width: 40%;
    }

    .ctr_btn_ttl a {
        font-size: 1.6rem;
        padding: 24px 10%;
        border-radius: 80px;
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        -ms-border-radius: 80px;
        -o-border-radius: 80px;
    }

    .catch img {
        margin-bottom: -3px;
    }

    .order_stop_txt {
        font-size: 1.4rem;
    }

    .kv_ttl_bg {
        padding: 20px 40px;
    }

    .kv_ttl {
        width: 120px;
    }

    .ctr_grid_slide_inner {
        width: 400%;
    }
}

@media (max-width: 374px) {
    .limit {
        font-size: 1.2rem;
    }
}


/* CTAセクション */

.cta_section {
    background-color: var(--base3);
    padding: 100px 0;
    position: relative;
}

.cta_inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px;
}

.cta_content_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cta_img {
    width: 340px;
}

.cta_img img {
    width: 100%;
}

.cta_txt_box {
    max-width: 380px;
    text-align: center;
}

.cta_description {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bk);
    margin-bottom: 10px;
}

.cta_ttl {
    width: 208px;
    margin: 0 auto;
}

.cta_ttl img {
    width: 100%;
}

.cta_pagelink {
    max-width: 300px;
    margin: 0 auto;
    background-color: var(--accentcolor);
    margin-top: 30px;
}

.cta_pagelink a {
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 15px 30px;
    color: var(--white);
    cursor: pointer;
}

.cta_pagelink a:hover {
    background-color: var(--white);
    color: var(--accentcolor);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.cta_pagelink a i {
    padding-left: 10px;
}

.cta_period {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--bk);
    margin-top: 30px;
}

.big {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bk);
    margin-top: 30px;
    padding-right: 5px;
}

.cta_attention {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bk);
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .cta_section {
        background-color: var(--base3);
        padding: 80px 0;
        position: relative;
    }

    .cta_period {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .big {
        font-size: 1.6rem;
        margin-top: 10px;
        padding-right: 0px;
    }
}

/* CTAセクション */

.archives_bg {
    background-color: var(--base2);
    position: relative;
    padding: 100px 0 0 0;
}

.archives_section .section_ttl {
    margin-bottom: 56px;
}

.archives_ttl {
    color: var(--bk);
}

.swiper04_img_box {
    max-width: 320px;
    margin: 0 24px;
}

.swiper04_img_box a {
    display: block;
}

.swiper04_img_box a img {
    cursor: pointer;
    line-height: 0;
    width: 100%;
}

.swiper04_img_box a img:hover {
    opacity: 0.6;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.archives_banner_list {
    margin: 40px auto 0px auto;
    max-width: 1040px;
}

.archives_banner_flex ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 0;
}

.archives_banner_flex ul li {
    width: 32%;
    margin-top: 1%;
}

.archives_banner_flex ul li a {
    display: block;
}

.archives_banner_flex ul li:nth-child(1),
.archives_banner_flex ul li:nth-child(3) {
    margin-right: 1%;
    margin-left: 1%;
}

.archives_banner_flex ul li:nth-child(4) {
    margin-right: 0.5%;
}

.archives_banner_flex ul li:nth-child(5) {
    margin-left: 0.5%;
}

.archives_banner_flex ul li img {
    width: 100%;
}

@media (max-width: 960px) {
    .archives_bg {
        position: relative;
        padding: 80px 0 0 0;
    }

    .archives_carousel {
        perspective: 960px;
        max-width: 94%;
        margin: 32px auto 0 auto;
    }

    .archives_banner_list {
        margin: 32px auto 0px auto;
        max-width: 94%;
    }
}

@media (max-width: 768px) {
    .swiper04_img_box {
        max-width: 200px;
    }

    .archives_carousel {
        perspective: 768px;
    }

    .archives_carousel figure {
        width: 150px;
    }

    .archives_carousel figure img {
        padding: 0;
    }

    .archives_carousel nav {
        margin: 24px 0 0;
    }

    .archives_carousel nav button {
        margin: 0 6px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 3px 3px 3px rgba(0 0 0 / 0.16);
    }

    .archives_banner_flex ul li {
        width: 100%;
        margin-top: 0%;
    }

    .archives_banner_flex ul li:nth-child(n + 2) {
        margin-top: 8px;
    }

    .archives_banner_flex ul li:nth-child(1),
    .archives_banner_flex ul li:nth-child(3) {
        margin-right: 0%;
        margin-left: 0%;
    }

    .archives_banner_flex ul li:nth-child(4) {
        margin-right: 0%;
    }

    .archives_banner_flex ul li:nth-child(5) {
        margin-left: 0%;
    }
}

.footer {
    max-width: 100%;
    background-color: var(--base2);
    position: relative;
    overflow-x: clip;
    border-top: solid 1px var(--base2);
}

.footer_bg_top {
    width: 120vw;
    height: auto;
    line-height: 0;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
}

.footer_bg_top img {
    width: 100%;
    height: 100%;
}

.footer_inner {
    max-width: 1040px;
    padding: 150px 0 calc(40px + 125px) 0;
    margin: 0 auto;
}

.footer_nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 56px;
    border-bottom: var(--bk) 2px solid;
    margin-bottom: 64px;
}

.footer_nav ul li a,
.footer_link ul li a {
    cursor: pointer;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--bk);
    text-decoration: none;
}

.footer_nav ul li a:hover,
.footer_link ul li a:hover {
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
    opacity: 0.5;
}

.footer_link {
    margin-left: 80px;
}

.footer_content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 72px;
}

.footer_link p {
    padding-bottom: 16px;
    color: var(--bk);
    font-family: var(--en-font);
    font-weight: 700;
    line-height: 1.5;
}

.footer_link ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_link ul li:nth-child(n+2) {
    padding-left: 24px;
}

.footer_link ul li a img {
    width: 32px;
}

small {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--en-font);
    color: var(--bk);
}

@media (max-width: 1160px) {
    .footer_inner {
        max-width: 94%;
        padding: 80px 0 32px 0;
    }
}

@media (max-width: 580px) {
    .footer_content {
        display: block;
    }

    .footer_bg_top {
        width: 200vw;
    }

    .footer_inner {
        padding: calc(43px + 17px) 0 calc(100px + 20px) 0;
        margin: 0 auto;
    }

    .footer_nav ul {
        display: block;
        align-items: center;
        justify-content: space-around;
        padding-bottom: 32px;
        border-bottom: #D1D1D1 1px solid;
        margin-bottom: 48px;
    }

    .footer_nav ul li:not(:last-child) {
        margin-bottom: 8px;
    }

    .footer_link {
        margin-left: 0px;
    }

    .footer_link p {
        margin-left: 0px;
        margin-top: 24px;
        padding-bottom: 8px;
    }

    .footer_link ul {
        justify-content: space-between;
        width: 75%;
        margin: 0 auto;
    }

    .footer_link ul li:nth-child(n+2) {
        padding-left: 0px;
    }
}

/* 省略 */
/* my-circular-slider-section の修正 */
.my-circular-slider-section {
    position: relative;
    width: 100%;
    /* 高さを固定せず、最小高さを設定。コンテンツが増えれば伸びる */
    /* min-height: 100vh; */
    /* 少なくともビューポート高さを確保 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* my-wheelを下端に揃える */
    overflow: hidden;
    /* 円の下半分を隠すために必要 */
    box-sizing: border-box;
    background-image: url(../img/wheel_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: initial;
    line-height: 0;
}

/* my-slider-header の修正 */
.my-slider-header {
    position: absolute;
    /* 円の中心に配置するため absolute に変更 */
    top: 50%;
    /* 親要素(my-circular-slider-section)の縦中央 */
    left: 50%;
    /* 親要素の横中央 */
    transform: translate(-50%, -50%);
    /* 要素自身のサイズを考慮して完全中央へ */
    -webkit-transform: translate(-50%, -50%);
    width: 80%;
    /* 中央に配置しつつ、内容の幅を調整 */
    max-width: 400px;
    /* PCでの最大幅 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* padding: 20px 0; */
    box-sizing: border-box;
    pointer-events: none;
    /* 初期状態ではクリックイベントを無効 */
    text-align: center;
    /* テキストを中央揃え */
}

.my-slider-header .section_ttl {
    margin-bottom: 20px;
    /* テキストが長くなっても重ならないように */
    word-break: keep-all;
    /* 単語の途中で改行しない */
    white-space: nowrap;
    /* 強制的に改行しない */
    overflow: hidden;
    /* はみ出たら隠す */
    text-overflow: ellipsis;
    /* はみ出たら省略記号 */
}

/* --- モーダル関連のスタイルを再導入 (display: none; は CSS から削除) --- */
.my-current-image-display {
    position: fixed;
    /* 常にビューポート全体を覆う */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    /* 背景を暗くする */
    /* display: flex; は初期状態では設定しない（JSで制御） */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    /* 最前面に表示 */
    opacity: 0;
    /* 初期状態は透明 */
    pointer-events: none;
    /* 初期状態はクリック無効 */
    transition: opacity 0.3s ease;
    /* スムーズなフェードイン/アウト */
}

.my-current-image-display.active {
    opacity: 1;
    pointer-events: auto;
    /* アクティブ時にクリック有効 */
    display: flex;
    /* activeクラスがついて初めてflexboxとして表示 */
}

.my-selected-image {
    width: 100%;
    /* モーダルコンテナに対する割合 */
    max-width: 600px;
    /* 最大幅を設定 */
    max-height: 80vh;
    /* ビューポート高さに対する最大高さを設定 */
    object-fit: contain;
    background-color: var(--base3);

    box-sizing: border-box;

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.my-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 15px;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 2001;
    background-color: var(--accentcolor);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 0;
}

/* my-wheel の修正 */
.my-wheel {
    position: absolute;
    top: -70%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* モバイル優先のレスポンシブなサイズ設定 */
    width: 100vw;
    /* 画面幅に対して常に100vw */
    height: 100vw;
    /* 高さは幅と同じ */
    max-width: 950px;
    /* デスクトップで大きくなりすぎないように制御 */
    max-height: 950px;
}

.my-wheel__card {
    position: absolute;
    top: 0;
    left: 0;
    /* カードのサイズをvwベースで調整し、max-widthで制御 */
    width: 25vw;
    /* 例: 画面幅の25% */
    max-width: 200px;
    /* 最大200px */
    aspect-ratio: 1 / 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-wheel__card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 999;
    position: absolute;
    will-change: transform;
    transform-origin: center center;
}

/* --- メディアクエリの調整 --- */
@media (max-width: 1040px) {
    .my-wheel {
        top: 0%;
    }
}

/* PC向けのスタイル (例: 769px以上の画面幅に適用) */
@media (min-width: 769px) {
    .my-circular-slider-section {
        height: 60vh;
        /* PCではセクションの高さを調整 */
    }

    .my-wheel {
        /* PCではより大きなサイズに。例えば vw ベースで調整し、max-widthで上限を設ける */
        width: 120vw;
        /* PCで120vwベースに */
        height: 120vw;
        max-width: 1200px;
        /* これ以上のサイズにはならない */
        max-height: 1200px;
    }

    .my-wheel__card {
        width: 400px;
        /* PCでは固定ピクセル幅にするなど */
        height: 400px;
        max-width: none;
        /* max-widthは親のwheelに任せるため解除 */
    }

    .my-slider-header {
        max-width: 500px;
        /* PCではヘッダーの最大幅を広げる */
    }
}

/* モバイル向けスタイル (現在の max-width: 768px はそのまま維持) */
@media (max-width: 768px) {
    .my-circular-slider-section {
        height: 40vh;
        /* スマホではセクションの高さを少し小さくする */
    }

    .my-wheel {
        width: 100vw;
        /* スマホでは画面幅いっぱいに */
        height: 100vw;
        max-width: none;
        max-height: none;
    }

    .my-wheel__card {
        width: 30vw;
        /* スマホではvwベースで調整 */
        max-width: 200px;
    }

    .my-slider-header {
        width: 90%;
        /* モバイルではヘッダーの幅を画面の90%に調整 */
        max-width: none;
    }

    .my-slider-header .section_ttl {
        /* スマホでタイトルが長すぎる場合を考慮 */
        font-size: clamp(1.2rem, 5vw, 2rem);
        /* 最小1.2rem, 最大2rem, 間は5vw */
    }
}

@media (max-width: 480px) {
    .my-circular-slider-section {
        height: 35vh;
    }

    .my-wheel {
        top: -50%;
        width: 120vw;
        height: 120vw;
    }

    .my-wheel__card {
        width: 35vw;
        max-width: 150px;
    }
}