/*
Theme Name: andcolor theme
Theme URI: https://and-color.com
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp
Version: 1.0
*/

/* --------------------------------------------------
 common
--------------------------------------------------- */

@charset "UTF-8";

/* reset
--------------------------------------------------- */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid Highlight;outline-offset:2px;scroll-margin-block:10vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* input focus / outline 無効化 */
:where(input, textarea, select):focus,
:where(input, textarea, select):focus-visible,
:where(input, textarea, select):focus-within {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}
/* iOSタップズーム対策 */
:where(input, textarea, select, button) {
    font-size: 16px !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

/* design tokens
--------------------------------------------------- */

:root {
    --color-wht: #fff;
    --color-blk: #191919;
    --color-dgy: #363636;
    --color-beg: #e2ded9;
    --color-crm: #f8f5f0;
    --color-ccl: #746f6b;
    --color-lrd: #cd9392;
    --color-grn: #87937f;
    --color-pbe: #caa89a;
    --color-blu: #8caaaa;
    --color-brw: #91795e;
    
    --font-jp-01: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    --font-jp-02: "Hiragino Mincho ProN", "Hiragino Serif", "Yu Mincho", "YuMincho", "MS Mincho", serif;
    --font-en-01: "Jost", sans-serif;
    --font-en-02: "Cormorant Garamond", serif;
    --font-en-03: "Playfair Display", serif;
    
    --filter-dark: saturate(0.5) brightness(0.6) contrast(0.95);
    --filter-gray: saturate(0.7) brightness(0.95) contrast(0.9);
    --filter-bright: saturate(0.9) brightness(0.6) contrast(0.95);
}
@media screen and (min-width: 1280px) {
    :root {
        --inner-width: 1180px;
    }
}
@media screen and (min-width: 1401px) {
    :root {
        --inner-width: 1280px;
    }
}
@media screen and (min-width: 1600px) {
    :root {
        --inner-width: 1480px;
    }
}

/* layout
--------------------------------------------------- */

html {
    height: 100%;
    font-size: 100%;
    scroll-behavior: smooth;
    background-color: var(--color-crm)!important;
    scroll-padding-top: 50px;
    overflow-x: clip;
}
@media screen and (min-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}
@media screen and (min-width: 1280px) {
    html {
        scroll-padding-top: max(8vh, 70px);
    }
}
body {
    min-height: 100%;
    font-family: var(--font-jp-01);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.8;
    font-family: var(--font-jp-01);
    font-weight: 500;
    color: var(--color-blk);
    overflow-x: clip;
}
@media screen and (min-width: 768px) {
    body {
        line-height: 2;
    }
}

body::after {
  z-index: 9999;
  content: "";
  position: fixed;
  top: 0; right: 0;
  width: 100vw; height: 100vh;
  background: var(--color-blk);
  pointer-events: none;
  animation: fadeOut .7s cubic-bezier(.8,0,.5,1) forwards;
}

body.viewtrans::after {
  animation: fadeIn .7s cubic-bezier(.8,0,.5,1) forwards;
}

@keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fadeIn  { 0% { opacity: 0; } 100% { opacity: 1; } }

.fixed { position: fixed; width: 100%; height: 100%; }

a {
    display: inline;
    color: var(--color-blk);
    text-decoration: none;
    cursor: pointer;
}
p {
    text-align: justify;
}
img, svg {
    width: 100%;
    height: auto;
}

.wrap {
    position: relative;
    width: 100%; min-width: 320px;
    height: auto !important; height: 100%; min-height: 100%;
    margin: auto;
    overflow-x: clip;
    transition: 1s;
}

.mask {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.mask .mask__inner {
    width: inherit;
    height: inherit;
    opacity: 0;
}
.mask .mask__inner.inview {
    position: relative;
    animation: maskIn .5s cubic-bezier(.8,0,.5,1) forwards;
    opacity: 1 !important;
}
.mask .mask__inner.inview::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-crm);
    animation: maskOut .5s .5s cubic-bezier(.8,0,.5,1) forwards;
}
.top-location .mask,
.top-location .mask__inner {
    width: 100%;
    height: 100%;
}
.top-location .mask .mask__inner.inview::before {
    background: var(--color-blk);
}
@keyframes maskIn  {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
@keyframes maskOut {
    from { transform: translateX(0); }
    to { transform: translateX(101%); }
}

.fade { opacity: 0; transform: translate(0, 5px); }
.fade.inview {
  position: relative;
  animation: fadeInUp .5s cubic-bezier(.8,0,.5,1) forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(0, 5px); }
  to   { opacity: 1; transform: translate(0, 0); }
}

.is-pc {
    display: none;
}
@media screen and (min-width: 1024px) {
    .is-pc {
        display: block;
    }
}

/* --------------------------------------------------
 header
--------------------------------------------------- */

.header {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    transition: .3s;
}
.header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: var(--color-wht);
    opacity: 0.7;
}
@media screen and (min-width: 768px) {
    .header {
        height: 70px;
    }
}
@media screen and (min-width: 1280px) {
    .header {
        height: 8vh;
        min-height: 70px;
    }
}
.header.scroll {
    background: var(--color-blk);
}
.header.scroll::before {
    opacity: 0.5;
}

.header__inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.header__logo {
    display: flex;
    align-items: center;
    height: 100%;
}
.header__logo a .logo {
    display: flex;
    width: auto;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: var(--color-wht);
}
.header__logo a .logo span {
    display: block;
    line-height: 1;
}
.header__logo a .logo span.logo__text {
    width: 90px;
}
.header__logo a .logo span.logo__desc {
    margin-top: 3px;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: normal;
}
@media screen and (min-width: 768px) {
    .header__logo a .logo span.logo__text {
        width: 110px;
    }
    .header__logo a .logo span.logo__desc {
        font-size: 0.65rem;
    }
}
@media screen and (min-width: 1280px) {
    .header__logo a .logo {
        padding: 0 50px;
    }
}

.header__nav {
    display: none;
}
.header__btn {
    display: none;
}
@media screen and (min-width: 1024px) {
    .header.scroll::before {
        opacity: 0;
    }
    .header__nav,
    .header__btn {
        display: block;
    }
    .header__nav {
        margin-left: auto;
    }
    .header__nav-list {
        display: flex;
        gap: 15px;
    }
    .header__nav-list li a {
        display: flex;
        flex-direction: column;
        font-family: var(--font-en-01);
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: .05em;
        line-height: 1;
        color: var(--color-wht);
        text-transform: uppercase;
        padding-top: 3px;
        transition: .3s;
    }
    .header__nav-list li a::after {
        content: "";
        display: block;
        width: 0;
        height: 1px;
        background-color: var(--color-crm);
        opacity: 0;
        transition: .4s;
    }
    .header__nav-list li a:hover::after {
        width: 100%;
        opacity: 0.7;
    }
    .header__btn {
        height: 100%;
        margin-left: 40px;
    }
    .header__btn-list,
    .header__btn-list li {
        height: 100%;
    }
    .header__btn-list li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: relative;
        width: 71px;
        height: 100%;
        padding-top: 3px;
        transition: .3s;
    }
    .header__btn-list li a:hover,
    .header.scroll .header__btn-list li a {
        background: var(--color-grn);
    }
    .header__btn-list li a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0.5px;
        height: 100%;
        background: var(--color-wht);
        opacity: 0.7;
        transition: .3s;
    }
    .header__btn-list li a:hover::before,
    .header.scroll .header__btn-list li a::before {
        opacity: 0;
    }
    .header__btn-list li a span {
        display: block;
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: .05em;
        color: var(--color-wht);
        line-height: 1;
    }
    .header__btn-list li a span.icon {
        width: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .header__nav-list {
        gap: 25px;
    }
    .header__nav-list li a {
        font-size: 0.9rem;
    }
    .header__btn-list li a {
        flex-direction: row;
        width: 140px;
    }
    .header__btn-list li a span {
        font-size: 0.85rem;
    }
    .header__btn-list li a span.icon {
        width: 34px;
    }
}

.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 6px;
    width: 50px;
    height: 50px;
    margin-left: auto;
    border: 0;
    outline: none;
    background: none;
}
.header__burger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--color-wht);
    opacity: 0.5;
}
.header__burger span {
    width: 22px;
    height: 1px;
    background: var(--color-wht);
}
@media screen and (min-width: 768px) {
    .header__burger {
        width: 71px;
        height: 70px;
    }
    .header__burger span {
        width: 25px;
    }
}
@media screen and (min-width: 1024px) {
    .header__burger {
        display: none;
    }
}

/* --------------------------------------------------
 drawer
--------------------------------------------------- */

body.drawer-open {
    overflow: hidden;
    touch-action: none;
}
.drawer-overlay {
    z-index: 101;
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 199;
    opacity: 0;
    transition: opacity .3s ease;
}
body.drawer-open .drawer-overlay {
    display: block;
    opacity: 1;
}
.drawer {
    z-index: 102;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--color-blk);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}
@media screen and (min-width: 768px) {
    .drawer {
        width: min(550px, 85vw);
    }
}
.drawer.is-open {
    transform: translateX(0);
}
.drawer__inner {
    padding: 1.5rem;
}
.drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}
.drawer__logo {
    color: var(--color-wht);
    font-family: var(--font-en-01);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.drawer__close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 1.125rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .2s;
}
.drawer__close:hover {
    color: var(--color-wht);
}
.drawer__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.drawer__list li {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.drawer__list a {
    display: block;
    padding: 15px 10px;
    font-family: var(--font-en-01);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-wht);
    text-decoration: none;
    line-height: 1;
    letter-spacing: .1em;
    transition: color .2s, padding-left .2s;
    text-transform: uppercase;
}

/* 検索フォーム */
.drawer__search {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    overflow: hidden;
}
.drawer__search input[type="search"] {
    flex: 1;
    background: rgba(255, 255, 255, .1);
    border: none;
    padding: .75rem 1rem;
    color: #fff;
    font-family: var(--font-jp-01);
    font-size: .875rem !important;
    outline: none;
}
.drawer__search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, .4);
}
.drawer__search button {
    background: rgba(255, 255, 255, .15);
    border: none;
    padding: .75rem 1rem;
    color: rgba(255, 255, 255, .8);
    font-family: var(--font-jp-01);
    font-size: .8125rem;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.drawer__search button:hover {
    background: rgba(255, 255, 255, .25);
}
.drawer__banner {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

/* --------------------------------------------------
 sp footer fix
--------------------------------------------------- */

.sp-fix-btn {
    z-index: 99;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.sp-fix-btn ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}
.sp-fix-btn ul li {
    width: 50%;
}
.sp-fix-btn ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    background: var(--color-grn);
    color: var(--color-wht);
    font-size: 0.8rem;
    line-height: 1;
}
.sp-fix-btn ul li:nth-child(1) a {
    background: var(--color-dgy);
}
.sp-fix-btn ul li a span {
    display: block;
}
.sp-fix-btn ul li a span.icon {
    width: 22px;
}
@media screen and (min-width: 768px) {
    .sp-fix-btn ul li a {
        gap: 10px;
        height: 60px;
        font-size: 0.9rem;
    }
    .sp-fix-btn ul li a span.icon {
        width: 28px;
    }
}
@media screen and (min-width: 1024px) {
    .sp-fix-btn {
        display: none;
    }
}


/* --------------------------------------------------
 common footer contact
--------------------------------------------------- */

.contact {
    width: 100%;
}
.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 50px 30px 0;
}
@media screen and (min-width: 768px) {
    .contact__inner {
        padding: 60px;
    }
}
@media screen and (min-width: 1280px) {
    .contact__inner {
        flex-direction: row;
        gap: 50px;
        max-width: var(--inner-width);
        margin: auto;
        padding: 100px 60px;
    }
}
@media screen and (min-width: 1401px) {
    .contact__inner {
        gap: 120px;
        padding: 140px 60px;
    }
}
.contact-text {
    width: 100%;
}
.contact-form {
    width: 100%;
}
@media screen and (min-width: 1280px) {
    .contact-text {
        width: 300px;
    }
    .contact-form {
        width: calc(100% - 350px);
    }
}
@media screen and (min-width: 1401px) {
    .contact-text {
        width: 300px;
    }
    .contact-form {
        width: calc(100% - 420px);
    }
}
.form {
    width: 100%;
}
.form__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
}
.form__item {
    width: 100%;
}
.form__item--full {
    margin-bottom: 24px;
}
.form__item label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #555;
}
.form__item label span {
    color: #999;
    margin-left: 4px;
}
.form__input,
.form__select,
.form__textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #333;
    padding: 5px 0;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
}
.form__input::placeholder,
.form__textarea::placeholder,
.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder,
.form .wpcf7-form-control::placeholder {
    font-size: 0.9rem;
    color: #aaa;
}
.form__select {
    font-size: 0.9rem!important;
    padding: 5px 2px 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px bottom 17px;
    background-size: 8px;
    padding-right: 30px;
}

.form__textarea {
    height: 80px;
    padding: 10px;
    resize: vertical;
    border: 1px solid #333;
}
.form__note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}
.form__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.form__required {
    font-size: 12px;
    color: #888;
}
.form__submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: auto;
    background: linear-gradient(90deg, #000, #333);
    padding: 15px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    font-size: 0.9rem!important;
    line-height: 1;
    color: var(--color-wht);
    border-radius: 4px;
}
.form__submit:hover {
    opacity: 0.8;
}
@media screen and (min-width: 768px) {
    .form__row {
        flex-direction: row;
        gap: 40px;
    }
    .form__item {
        width: 50%;
    }
    .form__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .form__item--full {
        width: 100%;
        flex: 0 0 100%;
    }
}
@media screen and (min-width: 1280px) {
    .form__submit {
        padding: 25px;
    }
}

/* --------------------------------------------------
 footer
--------------------------------------------------- */

.footer {
    width: 100%;
    padding-bottom: 80px;
    background: var(--color-blk);
}
@media screen and (min-width: 1024px) {
    .footer {
        padding-bottom: 60px;
    }
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 60px 30px 30px;
}
@media screen and (min-width: 1024px) {
    .footer__inner {
        padding: 100px 30px 60px;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    height: 100%;
}
.footer__logo a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: var(--color-wht);
}
.footer__logo a span {
    display: block;
    line-height: 1;
}
.footer__logo a span.logo__text {
    width: 110px;
}
.footer__logo a span.logo__desc {
    margin-top: 3px;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: normal;
}
@media screen and (min-width: 768px) {
    .footer__logo a span.logo__text {
        width: 130px;
    }
    .footer__logo a span.logo__desc {
        font-size: 0.65rem;
    }
}
@media screen and (min-width: 1280px) {
    .footer__logo a {
        padding: 0 50px;
    }
}

.footer__nav {
    width: 100%;
}
.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer__nav-list li a {
    font-family: var(--font-en-01);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-beg);
    text-transform: uppercase;
}


.header__nav {
    display: none;
}
.header__btn {
    display: none;
}
@media screen and (min-width: 1024px) {
    .header.scroll::before {
        opacity: 0;
    }
    .header__nav,
    .header__btn {
        display: block;
    }
    .header__nav {
        margin-left: auto;
    }
    .header__nav-list {
        display: flex;
        gap: 15px;
    }
    .header__nav-list li a {
        display: flex;
        flex-direction: column;
        font-family: var(--font-en-01);
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: .05em;
        line-height: 1;
        color: var(--color-wht);
        text-transform: uppercase;
        padding-top: 3px;
        transition: .3s;
    }
    .header__nav-list li a::after {
        content: "";
        display: block;
        width: 0;
        height: 1px;
        background-color: var(--color-crm);
        opacity: 0;
        transition: .4s;
    }
    .header__nav-list li a:hover::after {
        width: 100%;
        opacity: 0.7;
    }
    .header__btn {
        height: 100%;
        margin-left: 40px;
    }
    .header__btn-list,
    .header__btn-list li {
        height: 100%;
    }
    .header__btn-list li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: relative;
        width: 71px;
        height: 100%;
        padding-top: 3px;
        transition: .3s;
    }
    .header__btn-list li a:hover,
    .header.scroll .header__btn-list li a {
        background: var(--color-grn);
    }
    .header__btn-list li a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0.5px;
        height: 100%;
        background: var(--color-wht);
        opacity: 0.7;
        transition: .3s;
    }
    .header__btn-list li a:hover::before,
    .header.scroll .header__btn-list li a::before {
        opacity: 0;
    }
    .header__btn-list li a span {
        display: block;
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: .05em;
        color: var(--color-wht);
        line-height: 1;
    }
    .header__btn-list li a span.icon {
        width: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .header__nav-list {
        gap: 25px;
    }
    .header__nav-list li a {
        font-size: 0.9rem;
    }
    .header__btn-list li a {
        flex-direction: row;
        width: 140px;
    }
    .header__btn-list li a span {
        font-size: 0.85rem;
    }
    .header__btn-list li a span.icon {
        width: 34px;
    }
}


.footer__copy {
    width: 100%;
    padding: 0 30px;
}
.footer__copy p {
    color: var(--color-wht);
    font-family: var(--font-en-01);
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
}

/* --------------------------------------------------
 common page head
--------------------------------------------------- */

.page-header {
    width: 100%;
    height: 30vh;
    min-height: 250px;
    background: var(--color-blk);
}
@media screen and (min-width: 768px) {
    .page-header {
        min-height: 330px;
    }
}
@media screen and (min-width: 1280px) {
    .page-header {
        height: 38vh;
    }
    .page-header {
        min-height: 400px;
    }
}
.page-header__inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.page-header__image {
    z-index: 1;
    position: relative;
}
.page-header__image,
.page-header__image picture {
    width: 100%;
    height: 100%;
}
.page-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-dark);
}
.page-header__title {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    color: var(--color-wht);
    line-height: 1;
}
.page-header__title p {
    position: relative;
    padding-bottom: 12px;
    font-family: var(--font-en-01);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.page-header__title p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 0.5px;
    background: var(--color-wht);
    transform: translate(-50%, 0);
}
.page-header__title h1 {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
    .page-header__title p {
        font-size: 1.55rem;
    }
    .page-header__title h1 {
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 1280px) {
    .page-header__title {
        gap: 15px;
        padding: 40px 20px;
    }
    .page-header__title p {
        padding-bottom: 15px;
        font-size: 1.75rem;
    }
    .page-header__title h1 {
        font-size: 0.9rem;
    }
}

.breadcrumb {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--color-crm);
}
.breadcrumb::-webkit-scrollbar {
    display: none;
}
.breadcrumb__inner {
    padding: 20px;
}
@media screen and (min-width: 768px) {
    .breadcrumb__inner {
        padding: 20px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .breadcrumb__inner {
        max-width: var(--inner-width);
        margin: auto;
    }
}

.breadcrumb__inner ul {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
}
.breadcrumb__inner ul li {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    line-height: 1;
}
.breadcrumb__inner ul li a,
.breadcrumb__inner ul li span {
    display: flex;
    align-items: center;
    line-height: 1;
}
.breadcrumb__inner ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--color-dgy);
    border-right: 1px solid var(--color-dgy);
    transform: translateY(-50%) rotate(45deg);
}
.breadcrumb__inner ul li:last-child::after {
    display: none;
}
.breadcrumb__inner ul li span.jp {
    font-size: 0.65rem;
    line-height: 1;
}

/* --------------------------------------------------
 common section
--------------------------------------------------- */

.section-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}
.section-head-en {
    position: relative;
    padding-bottom: 5px;
    font-family: var(--font-en-01);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-ccl)
}
.section-head-en::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-lrd);
}
.section-head-jp {
    font-family: var(--font-jp-02);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: .1em;
}
.section-text {
    font-size: 0.8rem;
    letter-spacing: .05em;
    color: var(--color-ccl);
    text-align: justify;
    word-break: break-all;
}
@media screen and (min-width: 768px) {
    .section-title {
        gap: 25px;
    }
    .section-head-en {
        padding-bottom: 5px;
        font-size: 0.85rem;
    }
    .section-head-jp {
        font-size: 1.45rem;
        letter-spacing: .15em;
    }
    .section-text {
        font-size: 0.85rem;
        letter-spacing: .07em;
    }
}
@media screen and (min-width: 1280px) {
    .section-title {
        gap: 30px;
    }
    .section-head-en {
        padding-bottom: 5px;
        font-size: 0.9rem;
    }
    .section-head-jp {
        font-size: 1.55rem;
        letter-spacing: .15em;
    }
    .section-text {
        font-size: 0.85rem;
        letter-spacing: .07em;
    }
}

/* --------------------------------------------------
 front page
--------------------------------------------------- */

/* mv
--------------------------------------------------- */

.mv {
    width: 100%;
    height: calc(100svh - 50px);
}
.mv__inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.mv__splide,
.splide__track,
.splide__list,
.splide__slide {
    width: 100%;
    height: 100%;
}
.mv-image {
    z-index: 1;
    position: relative;
    width: 100%;
    height: calc(100svh - 50px);
}
@media screen and (min-width: 1024px) {
    .mv,
    .mv-image {
        height: 100svh;
        min-height: 800px;
    }
}
.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-bright);
}
.mv__splide .splide__pagination {
    bottom: 20px;
    gap: 6px;
    justify-content: flex-end;
}
.mv__splide .splide__pagination__page {
    width: 40px;
    height: 2px;
    background: var(--color-wht);
    opacity: 0.5;
    border-radius: 0;
}
.splide__pagination__page.is-active {
    opacity: 1;
    transform: scale(1);
}
@media screen and (min-width: 768px) {
    .mv__splide .splide__pagination {
        bottom: 30px;
    }
}
@media screen and (min-width: 1024px) {
    .mv__splide .splide__pagination {
        right: 40px;
        bottom: 40px;
    }
    .mv__splide .splide__pagination__page {
        width: 55px;
    }
}

.mv-text {
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    bottom: 20%;
    left: 0;
    padding: 30px;
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}

@keyframes blurFade {
    0% {
        opacity: 0;
        filter: blur(12px);
    }

    40% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}
@media screen and (min-width: 768px) {
    .mv-text {
        gap: 25px;
        padding: 30px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .mv-text {
        bottom: 10%;
    }
}
@media screen and (min-width: 1280px) {
    .mv-text {
        padding: 50px 110px;
    }
}
@media screen and (min-width: 1401px) {
    .mv-text {
        bottom: 15%;
        gap: 30px;
        padding: 50px 180px;
    }
}
@media screen and (min-width: 1600px) {
    .mv-text {
        padding: 50px 240px;
    }
}
.mv-text p {
    color: var(--color-wht);
}
.mv-text p.mv-title__main {
    font-family: var(--font-jp-02);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .2em;
}
.mv-text p.mv-title__sub {
    font-size: 0.8rem;
    letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
    .mv-text p.mv-title__main {
        font-size: 1.7rem;
    }
    .mv-text p.mv-title__sub {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1280px) {
    .mv-text p.mv-title__main {
        font-size: 1.9rem;
    }
    .mv-text p.mv-title__sub {
        font-size: 0.9rem;
        letter-spacing: .15em;
    }
}
@media screen and (min-width: 1401px) {
    .mv-text p.mv-title__main {
        font-size: 2rem;
        letter-spacing: .25em;
    }
    .mv-text p.mv-title__sub {
        font-size: 0.9rem;
    }
}
.mv-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 25px;
}
.mv-btn a {
    display: flex;
    position: relative;
    font-size: 0.8rem;
    letter-spacing: .1em;
    line-height: 1;
    transition: .3s;
    overflow: hidden;
}
.mv-btn a::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: .4s;
}
.mv-btn a:hover::before {
    width: 100%;
}
.mv-btn a span {
    z-index: 3;
    position: relative;
}

.mv-btn a.mv-link__plan {
    gap: 10px;
    padding: 10px 15px;
    background: var(--color-blk);
    color: var(--color-wht);
    letter-spacing: .05em;
    border: 0.5px solid var(--color-blk);
}
.mv-btn a.mv-link__plan::before {
    background: var(--color-dgy);
}
.mv-btn a.mv-link__plan span.arrow {
    position: relative;
    width: 16px;
    opacity: 0.7;
}
.mv-btn a.mv-link__plan span.arrow::before,
.mv-btn a.mv-link__plan span.arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
}
.mv-btn a.mv-link__plan span.arrow::before {
    width: 100%;
    height: 1px;
    background: var(--color-wht);
    transform: translate(0, -50%);
}
.mv-btn a.mv-link__plan span.arrow::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--color-wht);
    border-right: 1px solid var(--color-wht);
    transform: translate(0, -50%) rotate(45deg);
}
.mv-btn a.mv-link__gallery {
    padding: 8px 15px;
    color: var(--color-wht);
    border: 0.5px solid var(--color-wht);
    letter-spacing: .05em;
}
.mv-btn a.mv-link__gallery:hover {
    color: var(--color-blk);
}
.mv-btn a.mv-link__gallery::before {
    background: var(--color-wht);
}
@media screen and (min-width: 768px) {
    .mv-btn {
        gap: 12px;
        margin-top: 30px;
    }
    .mv-btn a {
        font-size: 0.85rem;
    }
    .mv-btn a.mv-link__plan {
        padding: 12px 15px;
    }
    .mv-btn a.mv-link__gallery {
        padding: 10px 15px;
    }
}
@media screen and (min-width: 1280px) {
    .mv-btn {
        flex-direction: row;
        align-items: center;
    }
    .mv-btn a {
        font-size: 0.85rem;
        letter-spacing: .15em;
    }
    .mv-btn a.mv-link__plan {
        padding: 12px 18px;
    }
    .mv-btn a.mv-link__gallery {
        padding: 10px 18px;
    }
}

/* about
--------------------------------------------------- */

.top-about {
    position: relative;
}
.top-about::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 40%;
    background: var(--color-beg);
    opacity: 0.3;
}
.top-about__inner {
    z-index: 3;
    position: relative;
}
@media screen and (min-width: 768px) {
    .top-about::before {
        height: 60%;
    }
    .top-about__inner {
        display: flex;
    }
}
@media screen and (min-width: 1024px) {
    .top-about__inner {
        gap: 80px;
        padding: 100px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .top-about::before {
        width: 70%;
        height: 70%;
    }
    .top-about__inner {
        gap: 100px;
        max-width: var(--inner-width);
        margin: auto;
        padding: 140px 60px;
    }
}

.about-head {
    padding: 50px 30px;
}
@media screen and (min-width: 768px) {
    .about-head {
        padding: 80px 20px 80px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .about-head {
        padding: 0;
        width: 500px;
    }
}
@media screen and (min-width: 1280px) {
    .about-head {
        padding: 0;
        width: 550px;
    }
}
@media screen and (min-width: 1401px) {
    .about-head {
        padding-top: 25px;
        width: 700px;
    }
}
@media screen and (min-width: 1600px) {
    .about-head {
        padding-top: 40px;
        width: 750px;
    }
}

.top-about .section-head-jp {
    opacity: 0;
}
.top-about .section-head-jp.inview {
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}

.about-head a {
    display: inline;
    position: relative;
    width: auto;
    padding: 5px 38px 5px 5px;
    margin-top: 15px;
    font-size: 0.8rem;
    line-height: 1;
}
.about-head a::before,
.about-head a::after {
    content: "";
    position: absolute;
    bottom: 0;
}
.about-head a::before {
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blk);
    transition: 2s;
}
.about-head a::after {
    right: 0;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-blk);
    transform: translate(0, 2.5px) rotate(45deg);
    opacity: 0;
    transition: 0.5s;
    transition-delay: 2s;
}
.about-head a.inview::before {
    width: 100%;
}
.about-head a.inview::after {
    opacity: 1;
}


.about-visual {
    width: 100%;
    aspect-ratio: 3 / 2;
}
@media screen and (min-width: 768px) {
    .about-visual {
        padding: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .about-visual {
        padding: 0;
    }
}
@media screen and (min-width: 1600px) {
    .about-visual {
        aspect-ratio: 5 / 3;
    }
}
.about-visual .mask,
.about-visual .mask__inner {
    width: 100%;
    height: 100%;
}
.about-visual .about-image {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-gray);
}

/* location
--------------------------------------------------- */

.top-location {
    position: relative;
    background: var(--color-blk);
}
.top-location::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--color-beg);
    opacity: 0.05;
}
.top-location__inner {
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 50px 30px;
}
@media screen and (min-width: 768px) {
    .top-location__inner {
        padding: 80px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .top-location__inner {
        padding: 100px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .top-location__inner {
        max-width: var(--inner-width);
        margin: auto;
        padding: 140px 60px;
    }
}
.location-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.location__left,
.location__right {
    display: contents;
}
.location-card {
    display: block;
    position: relative;
}
.location-image {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}
@media screen and (min-width: 768px) {
    .location-image {
        aspect-ratio: 4 / 2;
    }
}
@media screen and (min-width: 1024px) {
    .location-image {
        aspect-ratio: initial;
        width: 100%;
        height: 100%;
    }
}
.location-image::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid var(--color-wht);
    transform: translate(-50%, -50%);
    opacity: 0.4;
}
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-dark);
}
.location-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: var(--color-crm)
}
.location-desc__name h3 {
    font-family: var(--font-jp-02);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .1em;
}
.location-desc__name p {
    font-family: var(--font-en-01);
    font-size: 0.8rem;
}
.location-desc__text p {
    font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
    .location-desc {
        padding: 40px;
    }
    .location-desc__name h3 {
        font-size: 1.2rem;
        letter-spacing: .1em;
    }
    .location-desc__name p {
        font-size: 0.85rem;
    }
    .location-desc__text p {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1280px) {
    .location-desc {
        padding: 50px;
    }
    .location-desc__name {
        display: flex;
        align-items: baseline;
        gap: 20px;
    }
    .location-desc__name h3 {
        font-size: 1.35rem;
    }
    .location-desc__name p {
        font-size: 0.9rem;
    }
    .location-desc__text p {
        font-size: 0.9rem;
    }
}

.location__text p {
    font-size: 0.8rem;
    color: var(--color-crm);
}
@media screen and (min-width: 768px) {
    .location__text p {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1024px) {
    .location-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 50px;
        row-gap: 35px;
        align-items: end;
    }
    .location__left {
        display: block;
        grid-column: 1;
        grid-row: 1;
    }
    .location__right {
        display: grid;
        grid-column: 2;
        grid-row: 1 / 3;
        gap: 20px;
    }

    .location__text {
        grid-column: 1;
        grid-row: 2;
    }
    .location__text p {
        font-size: 0.75rem;
    }
    .location-card--large {
        aspect-ratio: 480 / 545;
    }
    .location__right .location-card {
        aspect-ratio: 480 / 335;
    }
    .location-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media screen and (min-width: 1280px) {
    .location-grid {
        column-gap: 60px;
        row-gap: 30px;
    }
    .location__right {
        gap: 40px;
    }
    .location-card--large {
        aspect-ratio: 480 / 572;
    }
    .location__text p {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1401px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 70px;
    }
    .location__right {
        gap: 45px;
    }
    .location-card--large {
        aspect-ratio: 480 / 605;
    }
    .location__right .location-card {
        aspect-ratio: 480 / 320;
    }
    .location__text p {
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 1600px) {
    .location-grid {
        grid-template-columns: 0.9fr 1fr;
    }
    .location-card--large {
        aspect-ratio: 480 / 555;
    }
    .location__right .location-card {
        aspect-ratio: 480 / 265;
    }
    .location__text p {
        font-size: 0.85rem;
    }
}

/* plan
--------------------------------------------------- */

.top-plan {
    position: relative;
}
.top-plan::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--color-beg);
    opacity: 0.3;
}
.top-plan__inner {
    z-index: 3;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .top-plan__inner {
        display: flex;
        flex-wrap: wrap;
        padding: 90px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .top-plan__inner {
        max-width: var(--inner-width);
        margin: auto;
        padding: 140px 60px;
    }
}

.top-plan-head {
    padding: 60px 30px 30px;
}
@media screen and (min-width: 768px) {
    .top-plan-head {
        padding: 80px 60px 40px;
    }
}
@media screen and (min-width: 1024px) {
    .top-plan-head {
        width: 40%;
        padding: 0 30px 0 0;
    }
}
@media screen and (min-width: 1401px) {
    .top-plan-head {
        width: 40%;
        padding: 25px 40px 0 0;
    }
}
@media screen and (min-width: 1600px) {
    .top-plan-head {
        padding: 25px 60px 0 0;
    }
}
.top-plan-visual {
    width: 100%;
    aspect-ratio: 3 / 2;
    opacity: 0;
}
@media screen and (min-width: 768px) {
    .top-plan-visual {
        aspect-ratio: 5 / 2;
    }
}
@media screen and (min-width: 1024px) {
    .top-plan-visual {
        width: 60%;
        padding: 0 0 0 30px;
        aspect-ratio: 5 / 3;
    }
}
@media screen and (min-width: 1401px) {
    .top-plan-visual {
        padding: 0 0 0 40px;
    }
}
@media screen and (min-width: 1600px) {
    .top-plan-visual {
        padding: 0 0 0 50px;
    }
}
.top-plan-visual.inview {
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}
.top-plan-visual .top-plan-image {
    width: 100%;
    height: 100%;
}
.top-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-gray);
}

.top-plan-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 30px 60px;
}
@media screen and (min-width: 768px) {
    .top-plan-list {
        gap: 40px;
        padding: 50px 60px 80px;
    }
}
@media screen and (min-width: 1024px) {
    .top-plan-list {
        width: 100%;
        padding: 40px 0 0;
    }
}
@media screen and (min-width: 1280px) {
    .top-plan-list {
        padding: 60px 0 0;
    }
}
.top-plan-list .section-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .top-plan-list .section-title {
        padding-bottom: 6px;
    }
    .top-plan-list .section-title::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-blk);
        opacity: 0.5;
        transition: 2s;
    }
    .top-plan-list.inview .section-title::before {
        width: 100%;
    }
}
.top-plan-list .section-head-en {
    padding-bottom: 0;
    line-height: 1;
}
.top-plan-list .section-head-en::before {
    display: none;
}
.top-plan-list .section-head-jp {
    font-family: var(--font-jp-01);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: .1em;
}
.top-plan-list__loop {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (min-width: 1401px) {
    .top-plan-list__loop {
        gap: 50px;
    }
}
.top-plan-list__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .top-plan-list__item {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .top-plan-list__item {
        align-items: flex-end;
        gap: 60px;
    }
}
@media screen and (min-width: 1600px) {
    .top-plan-list__item {
        gap: 80px;
    }
}
.top-plan-list__item .image {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .top-plan-list__item .image,
    .top-plan-list__item .movie {
        aspect-ratio: 4 / 3;
    }
}
@media screen and (min-width: 1280px) {
    .top-plan-list__item .image,
    .top-plan-list__item .movie {
        aspect-ratio: 5 / 3;
    }
}
.top-plan-list__item .image img,
.top-plan-list__item .movie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-plan-list__item .text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.top-plan-list__item .text .text__name {
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: 100%;
}
.top-plan-list__item .text .text__name p {
    font-family: var(--font-en-01);
    font-size: 1.3rem;
    font-weight: 400;
}
.top-plan-list__item .text .text__name h4 {
    font-family: var(--font-jp-01);
    font-size: 0.8rem;
    font-weight: 400;
}
.top-plan-list__item .text .text__desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.top-plan-list__item .text .text__desc p {
    display: block;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--color-dgy);
}
.top-plan-list__item .text .text__desc p.text__desc-excerpt {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-beg);
}
@media screen and (min-width: 1280px) {
    .top-plan-list__item .text {
        padding-bottom: 20px;
    }
    .top-plan-list__item .text .text__name p {
        font-size: 1.5rem;
    }
    .top-plan-list__item .text .text__name h4 {
        font-size: 0.9rem;
    }
    .top-plan-list__item .text .text__desc p {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1600px) {
    .top-plan-list__item .text {
        padding-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .top-plan-link {
        margin-top: 25px;
    }
}
.top-plan-link a {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: auto;
    background: linear-gradient(90deg, #000, #333);
    padding: 15px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    font-size: 0.9rem!important;
    line-height: 1;
    color: var(--color-wht);
    border-radius: 4px;
}
.top-plan-link a:hover {
    opacity: 0.8;
}
@media screen and (min-width: 1280px) {
    .top-plan-link a {
        padding: 25px;
    }
}

/* gallery
--------------------------------------------------- */

.top-gallery {
    position: relative;
    background: var(--color-blk);
}
.top-gallery__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 60px 0;
}
@media screen and (min-width: 768px) {
    .top-gallery__inner {
        gap: 50px;
        padding: 90px 0;
    }
}
@media screen and (min-width: 1280px) {
    .top-gallery__inner {
        gap: 60px;
        padding: 130px 0;
    }
}
.top-gallery-bg {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.top-gallery-bg .image {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
}
.top-gallery-bg .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-dark);
}
.top-gallery-bg .image::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blk);
    opacity: 0.6;
}
.top-gallery-head,
.gallery__splide,
.top-gallery-link {
    z-index: 3;
    position: relative;
    width: 100%;
}

.top-gallery-head p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-en-02);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: .15em;
    color: var(--color-wht);
}
@media screen and (min-width: 768px) {
    .top-gallery-head p {
        flex-direction: row;
        justify-content: center;
        gap: 0.5em;
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 1280px) {
    .top-gallery-head p {
        font-size: 1.7rem;
    }
}

.gallery__splide .gallery-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
}
.gallery__splide .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-gray);
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
    border: 0;
    outline: none;
}
.gallery-arrow--prev {
    left: 10px;
}
.gallery-arrow--next {
    right: 10px;
}

.top-gallery-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media screen and (min-width: 768px) {
    .top-gallery-link {
        margin-top: 20px;
    }
}
@media screen and (min-width: 1280px) {
    .top-gallery-link {
        gap: 30px;
    }
}
.top-gallery-link a {
    display: block;
    color: var(--color-wht);
}
.top-gallery-link a.external {
    display: flex;
    align-items: center;
}
.top-gallery-link a.external span {
    display: block;
    font-family: var(--font-en-01);
    font-size: 0.8rem;
    font-weight: 400;
}
.top-gallery-link a.external span.icon {
    width: 28px;
}
.top-gallery-link .sep {
    width: 1px;
    height: 28px;
    background: var(--color-wht);
}
@media screen and (min-width: 1280px) {
    .top-gallery-link a.external span {
        font-size: 0.9rem;
    }
    .top-gallery-link a.external span.icon {
        width: 33px;
    }
    .top-gallery-link .sep {
        height: 33px;
    }
}

.top-gallery-link a.internal {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 20px;
    font-family: var(--font-en-01);
    font-size: 0.75rem;
    font-weight: 400;
    border: 1px solid var(--color-wht);
    line-height: 1;
    transition: .3s;
}
.top-gallery-link a.internal::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: .4s;
    background: var(--color-wht);
}
.top-gallery-link a.internal:hover {
    color: var(--color-blk);
}
.top-gallery-link a.internal:hover::before {
    width: 100%;
}
.top-gallery-link a.internal span {
    z-index: 3;
    display: block;
    position: relative;
}

@media screen and (min-width: 1280px) {
    .top-gallery-link a.internal {
        padding: 10px 30px;
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------
 page about
--------------------------------------------------- */

.concept {
    width: 100%;
}
.concept__inner {
    display: grid;
    gap: 20px;
    width: 100%;
    padding: 30px;
    grid-template-areas: "concept-head" "concept-visual" "concept-text";
}
@media screen and (min-width: 768px) {
    .concept__inner {
        padding: 40px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .concept__inner {
        gap: 25px 80px;
        grid-template-columns: 1fr 0.9fr;
        grid-template-rows: max-content max-content;
        grid-template-areas: "concept-head concept-visual" "concept-text concept-visual";
        align-content: center;
        align-items: start;
        padding: 70px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .concept__inner {
        grid-template-columns: 1fr 1.4fr;
        max-width: var(--inner-width);
        margin: auto;
        padding: 100px 60px 120px;
    }
}
.concept-head {
    grid-area: concept-head;
}
.concept-head .section-head-jp {
    opacity: 0;
}
.concept-head .section-head-jp.inview {
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}

.concept-text {
    grid-area: concept-text;
}
.concept-text .section-text {
    line-height: 2;
}
@media screen and (min-width: 1024px) {
    .concept-head {
        align-self: end;
    }
    .concept-text {
        align-self: start;
    }
}

.concept-visual {
    grid-area: concept-visual;
    opacity: 0;
}
.concept-visual.inview {
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}
.concept-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
}
@media screen and (min-width: 768px) {
    .concept-image {
        aspect-ratio: 7 / 3;
    }
}
@media screen and (min-width: 1024px) {
    .concept-image {
        aspect-ratio: 1 / 1;
    }
}
@media screen and (min-width: 1280px) {
    .concept-image {
        aspect-ratio: 5 / 4;
    }
}
.concept-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message {
    position: relative;
    width: 100%;
}
.message__inner {
    z-index: 3;
    display: grid;
    gap: 20px;
    position: relative;
    width: 100%;
    padding: 30px;
    grid-template-areas: "message-head" "message-visual" "message-person" "message-text";
}
@media screen and (min-width: 768px) {
    .message__inner {
        padding: 40px 60px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .message::after {
        z-index: 2;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background: var(--color-beg);
        opacity: 0.3;
    }
    .message__inner {
        gap: 0 80px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr max-content max-content max-content 1fr;
        grid-template-areas:
            "message-visual ."
            "message-visual message-head"
            "message-visual message-person"
            "message-visual message-text"
            "message-visual .";
        padding: 80px 60px;
    }
    .message-head {
        margin-bottom: 15px;
    }
    .message-person {
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 1280px) {
    .message__inner {
        gap: 0 140px;
        grid-template-columns: 0.85fr 1fr;
        max-width: var(--inner-width);
        margin: auto;
        padding: 120px 60px;
    }
}

.message-head {
    grid-area: message-head;
}
.message-person {
    grid-area: message-person;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.message-person__position {
    font-family: var(--font-en-01);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-ccl);
}
.message-person__name {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.message-person__name h3 {
    font-family: var(--font-jp-02);
    font-size: 1.05rem;
    font-weight: 400;
}
@media screen and (min-width: 1024px) {
    .message-person__name {
        gap: 10px;
    }
    .message-person__name h3 {
        font-size: 1.1rem;
    }
}
.message-person__name p {
    font-family: var(--font-en-01);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-ccl);
}
.message-visual {
    grid-area: message-visual;
}
.message-image {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
}
@media screen and (min-width: 768px) {
    .message-image {
        aspect-ratio: 7 / 3;
    }
}
@media screen and (min-width: 1024px) {
    .message-image {
        aspect-ratio: 4 / 6;
    }
}
@media screen and (min-width: 1280px) {
    .message-image {
        aspect-ratio: 4 / 5;
    }
}
.message-image::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid var(--color-wht);
    transform: translate(-50%, -50%);
    opacity: 0.6;
}
.message-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .message-image img {
        object-position: center 37%;
    }
}


.message-text {
    grid-area: message-text;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.message-text p {
    font-size: 0.8rem;
    letter-spacing: .05em;
    color: var(--color-ccl);
}
.message-text .message-text__main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-ccl);
}
@media screen and (min-width: 768px) {
    .message-text p {
        font-size: 0.85rem;
        letter-spacing: .07em;
    }
}
@media screen and (min-width: 1280px) {
    .message-text p {
        font-size: 0.85rem;
        letter-spacing: .07em;
    }
}

.company {
    width: 100%;
}
.company__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
    padding: 50px 30px;
}
@media screen and (min-width: 768px) {
    .company__inner {
        padding: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .company__inner {
        padding: 80px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .company__inner {
        padding: 0;
    }
}

.company-bg {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.company-image {
    display: block;
    width: 100%;
    height: 100%;
}
.company-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-dark);
}
.company-desc {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .company-desc {
        flex-direction: row;
        gap: 80px;
        align-items: center;
    }
}
@media screen and (min-width: 1280px) {
    .company-desc {
        gap: 120px;
        max-width: var(--inner-width);
        margin: auto;
        padding: 120px 60px;
    }
}

.company-desc__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.company-desc__head svg {
    width: 120px;
    fill: var(--color-wht);
}
.company-desc__head .logo__desc {
    font-size: 0.75rem;
    color: var(--color-wht);
}
@media screen and (min-width: 1024px) {
    .company-desc__head {
        width: 300px;
    }
    .company-desc__head svg {
        width: 160px;
    }
}
@media screen and (min-width: 1280px) {
    .company-desc__head {
        width: 300px;
    }
    .company-desc__head svg {
        width: 180px;
    }
}
@media screen and (min-width: 1401px) {
    .company-desc__head {
        width: 400px;
    }
    .company-desc__head svg {
        width: 180px;
    }
}


.company-desc__outline {
    padding: 30px 20px;
    background: var(--color-wht);
    border-radius: 6px;
}
@media screen and (min-width: 768px) {
    .company-desc__outline {
        padding: 40px;
    }
}
@media screen and (min-width: 1024px) {
    .company-desc__outline {
        width: calc(100% - 380px);
        padding: 60px;
    }
}
@media screen and (min-width: 1280px) {
    .company-desc__outline {
        width: calc(100% - 400px);
        padding: 60px;
    }
}
@media screen and (min-width: 1401px) {
    .company-desc__outline {
        width: calc(100% - 500px);
        padding: 80px;
    }
}

.company-desc__outline table {
    width: 100%;
}
.company__inner table tr th,
.company__inner table tr td {
    padding-top: 20px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    vertical-align: top;
}
.company__inner table tr:nth-child(1) th,
.company__inner table tr:nth-child(1) td {
    padding-top: 0;
}
.company__inner table tr th {
    width: 90px;
    text-align: left;
}
@media screen and (min-width: 768px) {
    .company__inner table tr th {
        width: 110px;
    }
}
@media screen and (min-width: 1024px) {
    .company__inner table tr th,
    .company__inner table tr td {
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 1280px) {
    .company__inner table tr th,
    .company__inner table tr td {
        font-size: 0.9rem;
    }
    .company__inner table tr th {
        width: 120px;
    }
}


/* --------------------------------------------------
 page flow
--------------------------------------------------- */

.flow {
    width: 100%;
}

.flow__inner {
    display: grid;
    gap: 40px;
    padding: 40px 30px 20px;
}
@media screen and (min-width: 768px) {
    .flow__inner {
        grid-template-columns: 220px 1fr;
        gap: 60px;
        align-items: start;
        overflow: visible;
        padding: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .flow__inner {
        grid-template-columns: 320px 1fr;
        gap: 90px;
        padding: 50px 60px 80px;
    }
}
@media screen and (min-width: 1280px) {
    .flow__inner {
        grid-template-columns: 340px 1fr;
        max-width: var(--inner-width);
        margin: auto;
    }
}
@media screen and (min-width: 1401px) {
    .flow__inner {
        grid-template-columns: 360px 1fr;
        gap: 110px;
    }
}

.flow-head {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media screen and (min-width: 768px) {
    .flow-head {
        position: sticky;
        top: 120px;
        align-self: start;
        height: fit-content;
    }
}

.flow-head__line {
    display: flex;
    align-items: center;
    gap: 10px;
}
.flow-head__line span {
    display: block;
}
.flow-head__line span.icon {
    width: 40px;
    aspect-ratio: 1 / 1;
    padding: 5px;
    border: 1px solid var(--color-ccl);
}
.flow-head__line span.text {
    font-family: var(--font-en-01);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-ccl);
}

.flow-list {
    width: 100%;
}
.flow-list ul {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.flow-list ul li {
    display: flex;
    gap: 20px;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .flow-list ul li {
        gap: 30px;
    }
}
.flow-list ul li .icon {
    display: flex;
    align-items: center;
    position: relative;
    width: 60px;
    opacity: 0;
    transition: 1s;
    transition-delay: .3s;
}
@media screen and (min-width: 768px) {
    .flow-list ul li .icon {
        width: 70px;
    }
}
.flow-list ul li .icon::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0;
    background: var(--color-pbe);
    transform: translate(-50%, 0);
    transition: 1s;
    transition-delay: 1s;
}
.flow-list ul li .icon.inview::before {
    height: 100%;
}
.flow-list ul li .icon-image {
    z-index: 1;
    position: relative;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-pbe);
    border-radius: 100%;
    background: var(--color-crm);
}
@media screen and (min-width: 768px) {
    .flow-list ul li .icon-image {
        padding: 16px;
    }
}
.flow-list ul li .desc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 80px);
    padding: 20px 0;
}
@media screen and (min-width: 768px) {
    .flow-list ul li .desc {
        width: calc(100% - 100px);
        padding: 25px 0;
    }
}
.flow-list ul li .desc-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    opacity: 0;
    transition: 1s;
}
.flow-list ul li .desc-head .num {
    font-family: var(--font-en-03);
    font-size: 1.6rem;
    color: var(--color-pbe);
    opacity: 0.5;
}
.flow-list ul li .desc-head .en {
    font-family: var(--font-en-01);
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-ccl);
}
.flow-list ul li .desc-title {
    margin-top: -5px;
    font-family: var(--font-jp-02);
    font-size: 1rem;
    opacity: 0;
    transition: 1s;
}
.flow-list ul li .desc-text {
    opacity: 0;
    transition: 1s;
}
.flow-list ul li .desc-text p {
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: justify;
}
.flow-list ul li .inview {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .flow-list ul li .desc-head .num {
        font-size: 1.8rem;
    }
    .flow-list ul li .desc-head .en {
        font-size: 0.8rem;
    }
    .flow-list ul li .desc-title {
        font-size: 1.1rem;
    }
    .flow-list ul li .desc-text p {
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------
 archive plan
--------------------------------------------------- */

.contents-plan {
    position: relative;
    width: 100%;
}
.contents-plan::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: var(--color-beg);
    opacity: 0.3;
}

.plan-head {
    width: 100%;
}
.plan-head__inner {
    display: grid;
    gap: 20px;
    width: 100%;
    padding: 30px 30px 60px;
    grid-template-areas: "plan-title" "plan-visual" "plan-text";
}
@media screen and (min-width: 768px) {
    .plan-head__inner {
        padding: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-head__inner {
        gap: 0 80px;
        grid-template-columns: 1fr 0.9fr;
        grid-template-rows: max-content max-content;
        grid-template-areas: "plan-title plan-visual" "plan-text plan-visual";
        align-content: center;
        align-items: start;
        padding: 70px 60px;
    }
}
@media screen and (min-width: 1280px) {
    .plan-head__inner {
        grid-template-columns: 1fr 1.4fr;
        max-width: var(--inner-width);
        margin: auto;
        padding: 100px 60px 120px;
    }
}

.plan-title {
    grid-area: plan-title;
}

.plan-text {
    grid-area: plan-text;
}
@media screen and (min-width: 1024px) {
    .plan-title {
        align-self: end;
        margin-bottom: 30px;
    }
    .plan-text {
        align-self: start;
    }
}

.plan-text .section-text {
    line-height: 2;
}

.plan-visual {
    grid-area: plan-visual;
    opacity: 0;
}
.plan-visual.inview {
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}
.plan-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
}
.plan-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .plan-image {
        aspect-ratio: 7 / 3;
    }
}
@media screen and (min-width: 1024px) {
    .plan-image {
        aspect-ratio: 5 / 4;
    }
}
@media screen and (min-width: 1280px) {
    .plan-image {
        aspect-ratio: 6 / 4;
    }
}

.plan-tab {
    display: flex;
    gap: 0;
    padding: 0 30px;
    border-bottom: 1px solid var(--color-blk);
    border-top: 1px solid var(--color-blk);
}
@media screen and (min-width: 768px) {
    .plan-tab {
        padding: 0 60px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-tab {
        display: none;
    }
}
.plan-tab__button {
    padding: 12px;
    border: 1px solid var(--color-blk);
    border-bottom: 0;
    border-top: 0;
    outline: none;
    line-height: 1;
    background: none;
    font-size: 0.8rem!important;
    letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
    .plan-tab__button {
        padding: 15px;
        font-size: 0.85rem!important;
    }
}
.plan-tab__button.is-active {
    background: var(--color-blk);
    color: var(--color-wht);
}

.plan-tab-content {
    padding: 40px 30px;
}
@media screen and (min-width: 768px) {
    .plan-tab-content {
        padding: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-tab-content {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }
}
@media screen and (min-width: 1280px) {
    .plan-tab-content {
        max-width: var(--inner-width);
        margin: auto;
    }
}

.plan-panel {
    display: none;
}
@media screen and (min-width: 1024px) {
    .plan-panel {
        display: flex!important;
        flex-direction: column;
        gap: 30px;
    }
}
.plan-panel.is-active {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.plan-panel__head {
    display: flex;
    align-items: baseline;
    gap: 5px;
    width: 100%;
}
.plan-panel__head .plan-panel__en {
    font-family: var(--font-en-01);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}
.plan-panel__head .plan-panel__title {
    font-family: var(--font-jp-01);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (min-width: 1401px) {
    .plan-list {
        gap: 50px;
    }
}


/*.plan-list .plan-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    opacity: 0;
}
.plan-list .plan-card.inview {
    opacity: 0;
    filter: blur(12px);
    animation: blurFade 1.2s ease forwards;
}
@media screen and (min-width: 768px) {
    .plan-list .plan-card {
        flex-direction: row;
        gap: 40px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-list .plan-card {
        gap: 50px;
    }
}*/

.plan-list .plan-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    opacity: 0;
    transition: 1s;
}
.plan-list .plan-card.inview {
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .plan-list .plan-card {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .plan-list .plan-card {
        align-items: flex-end;
        gap: 60px;
    }
}
@media screen and (min-width: 1600px) {
    .plan-list .plan-card {
        gap: 80px;
    }
}
/*
.plan-list .plan-card .plan-card__media {
    width: 100%;
}
.plan-list .plan-card .plan-card__media .plan-card__movie {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.plan-list .plan-card .plan-card__media .plan-card__movie iframe {
    width: 100%;
    height: 100%;
}
.plan-list .plan-card .plan-card__media .plan-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.plan-list .plan-card .plan-card__media .plan-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .plan-list .plan-card .plan-card__media {
        width: calc(100% - 350px);
    }
    .plan-list .plan-card .plan-card__media .plan-card__movie,
    .plan-list .plan-card .plan-card__media .plan-card__image {
        aspect-ratio: 7 / 5;
    }
}
@media screen and (min-width: 1024px) {
    .plan-list .plan-card .plan-card__media {
        width: calc(100% - 450px);
    }
    .plan-list .plan-card .plan-card__media .plan-card__movie {
        aspect-ratio: 16 / 9;
    }
    .plan-list .plan-card .plan-card__media .plan-card__image {
        aspect-ratio: 16 / 11;
    }
}*/

.plan-list .plan-card .plan-card__media {
    width: 100%;
}
.plan-list .plan-card .plan-card__media .plan-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .plan-list .plan-card .plan-card__media .plan-card__image {
        aspect-ratio: 1 / 1;
    }
}
@media screen and (min-width: 1024px) {
    .plan-list .plan-card .plan-card__media .plan-card__image {
        aspect-ratio: 4 / 3;
    }
}
@media screen and (min-width: 1280px) {
    .plan-list .plan-card .plan-card__media .plan-card__image {
        aspect-ratio: 6 / 4;
    }
}
@media screen and (min-width: 1401px) {
    .plan-list .plan-card .plan-card__media .plan-card__image {
        aspect-ratio: 6 / 4;
    }
}
.plan-list .plan-card .plan-card__media .plan-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 1s;
}
.plan-list .plan-card.inview .plan-card__media .plan-card__image img {
    transform: scale(1.0);
}




.movie {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.movie img {
    display: block;
    width: 100%;
    height: auto;
}

.movie-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
}

.movie-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
}

.movie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.movie-modal.is-active {
    display: block;
}

.movie-modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.movie-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90vw, 960px);
    transform: translate(-50%, -50%);
}

.movie-modal__body iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie-modal__close {
    position: absolute;
    right: 0;
    bottom: calc(100% + 16px);
    border: 0;
    background: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

/*.plan-list .plan-card .plan-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px 5px;
}
@media screen and (min-width: 768px) {
    .plan-list .plan-card .plan-card__body {
        justify-content: center;
        width: 310px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-list .plan-card .plan-card__body {
        justify-content: center;
        width: 400px;
    }
}

.plan-list .plan-card .plan-card__body .plan-card__title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-list .plan-card .plan-card__body .plan-card__title-en {
    font-family: var(--font-en-01);
    font-size: 1.1rem;
}
.plan-list .plan-card .plan-card__body .plan-card__title-jp {
    font-family: var(--font-jp-02);
    font-size: 0.9rem;
    font-weight: 400;
}
.plan-list .plan-card .plan-card__body .plan-card__excerpt {
    width: 100%;
}
.plan-list .plan-card .plan-card__body .plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.plan-list .plan-card .plan-card__body .plan-card__price .notax,
.plan-list .plan-card .plan-card__body .plan-card__price .intax {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.plan-list .plan-card .plan-card__body .plan-card__price .num {
    font-family: var(--font-en-01);
    font-weight: 400;
}
.plan-list .plan-card .plan-card__body .plan-card__price .notax .num {
    font-size: 1rem;
}
.plan-list .plan-card .plan-card__body .plan-card__price .intax .num {
    font-size: 0.75rem;
}
.plan-list .plan-card .plan-card__body .plan-card__price .jpy {
    font-family: var(--font-jp-01);
    font-weight: 400;
    font-size: 0.75rem;
}*/

.plan-list .plan-card .plan-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.plan-list .plan-card .plan-card__body .plan-card__title {
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: 100%;
}
.plan-list .plan-card .plan-card__body .plan-card__title p {
    font-family: var(--font-en-01);
    font-size: 1.3rem;
    font-weight: 400;
}
.plan-list .plan-card .plan-card__body .plan-card__title h3 {
    font-family: var(--font-jp-01);
    font-size: 0.8rem;
    font-weight: 400;
}
.plan-list .plan-card .plan-card__body .plan-card__desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.plan-list .plan-card .plan-card__body .plan-card__desc p {
    display: block;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--color-dgy);
}
.plan-list .plan-card .plan-card__body .plan-card__desc p.plan-card__excerpt {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-beg);
}

.plan-list .plan-card .plan-card__body .plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.plan-list .plan-card .plan-card__body .plan-card__price .notax,
.plan-list .plan-card .plan-card__body .plan-card__price .intax {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.plan-list .plan-card .plan-card__body .plan-card__price .num {
    font-family: var(--font-en-01);
    font-weight: 400;
}
.plan-list .plan-card .plan-card__body .plan-card__price .notax .num {
    font-size: 1rem;
}
.plan-list .plan-card .plan-card__body .plan-card__price .intax .num {
    font-size: 0.75rem;
}
.plan-list .plan-card .plan-card__body .plan-card__price .jpy {
    font-family: var(--font-jp-01);
    font-weight: 400;
    font-size: 0.75rem;
}
@media screen and (min-width: 1280px) {
    .plan-list .plan-card .plan-card__body {
        padding-bottom: 20px;
    }
    .plan-list .plan-card .plan-card__body .plan-card__title p {
        font-size: 1.5rem;
    }
    .plan-list .plan-card .plan-card__body .plan-card__title h3 {
        font-size: 0.9rem;
    }
    .plan-list .plan-card .plan-card__body .plan-card__desc p {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1600px) {
    .plan-list .plan-card .plan-card__body {
        padding-bottom: 40px;
    }
}

.plan-option {
    width: 100%;
}
.plan-option__inner {
    display: grid;
    gap: 40px;
    padding: 15px 30px 40px;
}
@media screen and (min-width: 768px) {
    .plan-option {
        overflow: visible;
    }
    .plan-option__inner {
        grid-template-columns: 220px 1fr;
        gap: 60px;
        align-items: start;
        overflow: visible;
        padding: 15px 60px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-option__inner {
        grid-template-columns: 320px 1fr;
        gap: 90px;
        padding: 50px 60px 80px;
    }
}
@media screen and (min-width: 1280px) {
    .plan-option__inner {
        grid-template-columns: 340px 1fr;
        max-width: var(--inner-width);
        margin: auto;
    }
}
@media screen and (min-width: 1401px) {
    .plan-option__inner {
        grid-template-columns: 360px 1fr;
        gap: 110px;
    }
}

.plan-option__side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media screen and (min-width: 768px) {
    .plan-option__side {
        position: sticky;
        top: 120px;
        align-self: start;
        height: fit-content;
    }
}

.plan-option__line {
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-option__line span {
    display: block;
}
.plan-option__line span.icon {
    width: 40px;
    aspect-ratio: 1 / 1;
    padding: 5px;
    border: 1px solid var(--color-ccl);
}
.plan-option__line span.text {
    font-family: var(--font-en-01);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-ccl);
}

.plan-option__main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media screen and (min-width: 768px) {
    .plan-option__main {
        gap: 30px;
    }
}
@media screen and (min-width: 1024px) {
    .plan-option__main {
        gap: 35px;
    }
}
@media screen and (min-width: 1280px) {
    .plan-option__main {
        gap: 40px;
    }
}

.option-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    line-height: 1;
}
.option-filter p {
    font-size: 0.8rem;
    letter-spacing: .05em;
    line-height: 1;
    color: var(--color-ccl);
}
.option-filter__label {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}
.option-filter__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.option-filter__label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border: 1px solid var(--color-ccl);
    border-radius: 6px;
    color: var()--color-ccl;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
.option-filter__label:hover span {
    border-color: var(--color-ccl);
}
.option-filter__checkbox:checked + span {
    background: var(--color-ccl);
    border-color: var(--color-ccl);
    color: var(--color-wht);
}
.option-filter__label:active span {
    transform: scale(0.97);
}


.option-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (min-width: 1024px) {
    .option-list {
        gap: 80px;
    }
    .option-card__link {
        display: grid;
        grid-template-columns: 45% 1fr;
        gap: 70px;
        align-items: center;
    }
}
.option-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media screen and (min-width: 768px) {
    .option-group {
        gap: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .option-group {
        gap: 25px;
    }
}
@media screen and (min-width: 1280px) {
    .option-group {
        gap: 30px;
    }
}

.option-group__head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-bottom: 1px solid var(--color-ccl);
}
.option-group__head .option-group__en {
    font-family: var(--font-en-01);
    font-size: 1.05rem;
    font-weight: 400;
    text-transform: uppercase;
}
.option-group__head .option-group__title {
    font-family: var(--font-jp-01);
    font-size: 0.8rem;
    font-weight: 400;
}

.option-group__text {
    padding: 20px;
    background: var(--color-wht);
}
.option-group__text p {
    font-size: 0.75rem;
}

.option-group__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.option-card__image {
    width: 100%;
    aspect-ratio: 6 / 3;
    overflow: hidden;
}
.option-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .option-card {
        flex-direction: row;
        align-items: center;
    }
    .option-card__image {
        width: 160px;
    }
}
@media screen and (min-width: 1024px) {
    .option-card {
        gap: 40px;
    }
    .option-card__image {
        width: 240px;
        aspect-ratio: 6 / 4;
    }
}
@media screen and (min-width: 1280px) {
    .option-card {
        gap: 40px;
    }
    .option-card__image {
        width: 330px;
    }
}
@media screen and (min-width: 1401px) {
    .option-card {
        gap: 50px;
    }
    .option-card__image {
        width: 380px;
    }
}
.option-card__image picture {
    width: 100%;
    height: 100%;
}
.option-card__image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--filter-gray);
}
.option-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.option-card__title {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: justify;
}
.option-card__text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.option-card__text p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--color-blk);
}
.option-card__text-attention {
    padding-top: 15px;
    border-top: 1px solid var(--color-ccl);
}
.option-card__text-attention p {
    color: var(--color-ccl);
}

.option-card__price {
    width: 100%;
    font-size: 0.9rem;
    color: var(--color-brw);
}
.option-card__price span {
    font-size: 0.7rem;
}
.option-card__area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.option-card__area-title {
    font-size: 0.8rem;
    color: var(--color-ccl);
}
.option-card__area-list {
    display: flex;
    gap: 5px;
}
.option-card__area-item {
    padding: 6px;
    font-size: 0.7rem;
    line-height: 1;
    color: var(--color-wht);
}
.option-card__area-item.amami-oshima {
    background: var(--color-blu);
}
.option-card__area-item.tokyo {
    background: var(--color-lrd);
}
.option-card__area-item.yokohama {
    background: var(--color-grn);
}

@media screen and (min-width: 1024px) {
    .option-card__title {
        font-size: 0.95rem;
    }
    .option-card__price {
        font-size: 1rem;
    }
    .option-card__price span {
        font-size: 0.75rem;
    }
    .option-card__area {
        gap: 12px;
    }
    .option-card__area-title {
        font-size: 0.85rem;
    }
    .option-card__area-list {
        gap: 8px;
    }
    .option-card__area-item {
        padding: 8px;
        font-size: 0.75rem;
    }
}

/* --------------------------------------------------
 archive gallery
--------------------------------------------------- */

.gallery {
    width: 100%;
    background: var(--color-wht);
}
.gallery__inner {
    width: 100%;
    padding: 20px;
    margin-inline: auto;
}
@media screen and (min-width: 768px) {
    .gallery__inner {
        padding: 60px;
    }
}
.gallery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 14vw;
    grid-auto-flow: dense;
    gap: 6px;
}
@media screen and (min-width: 768px) {
    .gallery-list {
        gap: 15px;
        grid-auto-rows: 12vw;
    }
}
@media screen and (min-width: 1024px) {
    .gallery-list {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 8vw;
        grid-auto-flow: dense;
        gap: 10px;
    }
}
@media screen and (min-width: 1280px) {
    .gallery-list {
        grid-auto-rows: 7vw;
        gap: 15px;
    }
}

.gallery-item {
    position: relative;
}
.gallery-item__label {
    z-index: 3;
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-family: var(--font-en-01);
    font-size: 0.4rem;
    color: var(--color-wht);
    text-transform: uppercase;
    opacity: 0.7;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .gallery-item__label {
        bottom: 10px;
        right: 10px;
        font-size: 0.5rem;
    }
}
@media screen and (min-width: 1024px) {
    .gallery-item__label {
        font-size: 0.6rem;
    }
}
.gallery-item__btn {
    z-index: 2;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    background: none;
}
.gallery-item__btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item__btn:hover img {
    transform: scale(1.04);
}

.gallery-item--sp-vertical {
    grid-column: span 1;
    grid-row: span 4;
}
.gallery-item--sp-small {
    grid-column: span 1;
    grid-row: span 3;
}
.gallery-item--sp-horizontal {
    grid-column: span 2;
    grid-row: span 3;
}
@media screen and (min-width: 1024px) {
    .gallery-item--vertical {
        grid-column: span 1;
        grid-row: span 4;
    }
    .gallery-item--horizontal {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 4;
    }
    .gallery-item--small {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
@media screen and (min-width: 768px) {
    .gallery-pagination {
        margin-top: 40px;
    }
}
.gallery-pagination .page-numbers {
    display: grid;
    place-items: center;
    min-width: 22px;
    aspect-ratio: 1 / 1;
    padding: 0 10px;
    border: 1px solid var(--color-beg);
    background: var(--color-beg);
    text-decoration: none;
    font-family: var(--font-en-01);
    font-size: 0.7rem;
}
@media screen and (min-width: 768px) {
    .gallery-pagination .page-numbers {
        min-width: 28px;
    }
}
@media screen and (min-width: 1280px) {
    .gallery-pagination .page-numbers {
        min-width: 32px;
    }
}

.gallery-pagination .page-numbers.current {
    background: var(--color-blk);
    border: 1px solid var(--color-blk);
    color: var(--color-wht);
    pointer-events: none;
}

.gallery-pagination .page-numbers.next,
.gallery-pagination .page-numbers.prev {
    background: var(--color-wht);
    border: 0;
}
.gallery-pagination .page-numbers span {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-pagination .page-numbers span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    transform: translate(-50%, -50%) rotate(45deg);
}
.gallery-pagination .page-numbers span.next-icon::before {
    border-top: 1px solid var(--color-blk);
    border-right: 1px solid var(--color-blk);
}
.gallery-pagination .page-numbers span.prev-icon::before {
    border-left: 1px solid var(--color-blk);
    border-bottom: 1px solid var(--color-blk);
}


body.gallery-modal-open {
    overflow: hidden;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal.is-active {
    display: flex !important;
}

.gallery-modal__body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(90vw, 1200px);
    height: 86vh;
}

.gallery-modal__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity .35s ease;
}

.gallery-modal__image.is-fading {
    opacity: 0;
}

.gallery-modal__close,
.gallery-modal__prev,
.gallery-modal__next {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.gallery-modal__close {
    top: 24px;
    right: 24px;
    font-size: 28px;
}

.gallery-modal__prev {
    top: 50%;
    left: 24px;
    font-size: 40px;
    transform: translateY(-50%);
}

.gallery-modal__next {
    top: 50%;
    right: 24px;
    font-size: 40px;
    transform: translateY(-50%);
}

.gallery-modal__movie {
    display: none;
    width: min(90vw, 1200px);
}

.gallery-modal__movie iframe,
.gallery-modal__movie video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* --------------------------------------------------
 archive column
--------------------------------------------------- */

.column {
    width: 100%;
    background: var(--color-beg);
}
.column__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15vh 20px;
    margin-inline: auto;
}
.column__inner p {
    font-family: var(--font-en-01);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* --------------------------------------------------
 page FAQ
--------------------------------------------------- */

.faq {
    width: 100%;
}

.faq__inner {
    display: grid;
    gap: 40px;
    padding: 40px 30px 20px;
}
@media screen and (min-width: 768px) {
    .faq__inner {
        gap: 80px;
        padding: 40px 60px;
    }
}
@media screen and (min-width: 1024px) {
    .faq__inner {
        grid-template-columns: 320px 1fr;
        gap: 90px;
        align-items: start;
        overflow: visible;
        padding: 20px 60px 80px;
    }
}
@media screen and (min-width: 1280px) {
    .faq__inner {
        grid-template-columns: 340px 1fr;
        max-width: var(--inner-width);
        margin: auto;
        padding: 50px 60px 80px;
    }
}
@media screen and (min-width: 1401px) {
    .faq__inner {
        grid-template-columns: 360px 1fr;
        gap: 110px;
    }
}

.faq-head {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media screen and (min-width: 1024px) {
    .faq-head {
        position: sticky;
        top: 120px;
        align-self: start;
        height: fit-content;
    }
}

.faq-head__line {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-head__line span {
    display: block;
}
.faq-head__line span.icon {
    width: 40px;
    aspect-ratio: 1 / 1;
    padding: 5px;
    border: 1px solid var(--color-ccl);
}
.faq-head__line span.text {
    font-family: var(--font-en-01);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-ccl);
}


.faq-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (min-width: 1024px) {
    .faq-list {
        padding-top: 60px;
    }
}
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .faq-section {
        gap: 30px;
    }
}
.faq-section__title {
    padding-bottom: 8px;
    font-family: var(--font-jp-01);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    border-bottom: 1px solid var(--color-ccl);
}
@media screen and (min-width: 768px) {
    .faq-section__title {
        font-size: 1.1rem;
        padding-bottom: 10px;
    }
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.faq-item__desc {
    width: 100%;
}
.faq-item__btn,
.faq-item__a-content {
    display: flex;
    gap: 10px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .faq-item__btn,
    .faq-item__a-content {
        gap: 15px;
    }
}
.faq-item__btn {
    padding-bottom: 12px;
}
.faq-item__a-content {
    padding: 15px 0 20px;
}
.faq-item__btn::before,
.faq-item__a-content::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-blk);
    color: var(--color-wht);
    font-family: var(--font-en-01);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .faq-item__btn::before,
    .faq-item__a-content::before {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

.faq-item__btn::before {
    content: "Q";
}
.faq-item__a-content::before {
    content: "A";
    background-color: var(--color-lrd);
}
.faq-item__btn::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: auto;
    border-right: 1px solid var(--color-blk);
    border-bottom: 1px solid var(--color-blk);
    transform: rotate(45deg);
    transition: transform .3s ease;
}
.faq-item__btn[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}
@media screen and (min-width: 768px) {
    .faq-item__btn::after {
        width: 6px;
        height: 6px;
        margin-right: 10px;
    }
}

.faq-item__btn span,
.faq-item__a-content p {
    display: block;
    font-size: 0.85rem!important;
    line-height: 1.5;
}
.faq-item__btn span {
    width: calc(100% - 55px);
}
.faq-item__a-content p {
    width: calc(100% - 35px);
}
@media screen and (min-width: 768px) {
    .faq-item__btn span,
    .faq-item__a-content p {
        font-size: 0.95rem!important;
    }
    .faq-item__btn span {
        width: calc(100% - 65px);
    }
    .faq-item__a-content p {
        width: calc(100% - 45px);
    }
}
@media screen and (min-width: 768px) {
    .faq-item__btn span,
    .faq-item__a-content p {
        font-size: 0.95rem!important;
    }
    .faq-item__btn span {
        width: calc(100% - 75px);
    }
    .faq-item__a-content p {
        width: calc(100% - 55px);
    }
}


.faq-item__q {
    width: 100%;
}
.faq-item__btn {
    align-items: center;
    outline: none;
    border: 0;
    border-radius: 0;
    background: none;
    text-align: justify;
}

.faq-item__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
}
.faq-item__a-inner {
    overflow: hidden;
}
.faq-item__a-content {
    border-top: 1px solid rgba(0,0,0,.06);
}
.faq-item__desc.is-open .faq-item__a {
    grid-template-rows: 1fr;
}


/*
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.faq-item {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--color-wht);
}
.faq-item__q {
    width: 100%;
}
.faq-item__btn {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 55px;
    padding: 12px 30px 12px 12px;
    border: none;
    background: transparent;
    color: inherit;
    font-size: 0.85rem!important;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    cursor: pointer;
    transition: background-color .3s ease;
}
.faq-item__btn:hover {
    background-color: rgba(0,0,0,.02);
}
.faq-item__btn::before {
    content: "Q";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    margin-right: 12px;
    border-radius: 50%;
    background-color: var(--color-blk);
    color: var(--color-wht);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
}
.faq-item__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    transform: translateY(-70%) rotate(45deg);
    transition: transform .3s ease;
}

.faq-item__btn[aria-expanded="true"]::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-item__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
}

.faq-item__a-inner {
    overflow: hidden;
}

.faq-item__a-content {
    display: flex;
    padding: 20px 12px 12px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.faq-item__a-content::before {
    content: "A";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-blk);
    color: var(--color-wht);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
}

.faq-item__a-content p {
    width: calc(100% - 25px);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.6;
}

.faq-item.is-open .faq-item__a {
    grid-template-rows: 1fr;
}

@media screen and (min-width: 768px) {

    .faq__inner {
        max-width: 960px;
        margin-inline: auto;
        padding: 80px 30px;
    }

    .faq-section + .faq-section {
        margin-top: 80px;
    }

    .faq-section__title {
        margin-bottom: 32px;
        font-size: 2rem;
    }

    .faq-item__btn {
        min-height: 88px;
        padding: 24px 72px 24px 24px;
        font-size: 1rem;
        line-height: 1.8;
    }

    .faq-item__btn::before,
    .faq-item__a-content::before {
        width: 36px;
        height: 36px;
        font-size: .875rem;
    }

    .faq-item__btn::before {
        margin-right: 16px;
    }

    .faq-item__btn::after {
        right: 28px;
        width: 10px;
        height: 10px;
    }

    .faq-item__a-content {
        padding: 0 24px 24px;
    }

}*/