@charset "utf-8";

.index .subonly {
    display: none !important;
}

.sub .subonly   {
    display: block;
}

.sub .subonly.flex   {
    display: flex;
}

.sub .subonly.inlineblock   {
    display: inline-block;
}
html.wf-loading .inview.fadeIn {
    opacity: 0 !important;
    visibility: hidden;
}

html.wf-loading .inview.fadeInUp {
    opacity: 0 !important;
    visibility: hidden;
}

.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    padding: 12px 20px;
    background-color: #FFFCEE;
    color: #6DC2C7;
    font-weight: bold;
    text-decoration: none;
    transform: translateY(-120%);
    transition: transform 0.2s linear;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid #6DC2C7;
    outline-offset: -4px;
}

main:focus {
    outline: none;
}

html,body  {
    overflow-x: clip;
    background-color: #6DC2C7;
}

html.is-modal-open,
body.is-modal-open {
    overflow: hidden;
    height: 100%;
}

a   {
    opacity: 1;
    transition: all 200ms ease-in-out;
}

.is-disabled {
    pointer-events: none;
    opacity: 0.3 !important;
    cursor: default;
    position: relative;
}

a:not(.hasarrow):hover {
    opacity: 0.6;
}

.key a:hover,
main a:not(.hasarrow):not(.hastriangle):hover {
    transform: translateY(-3px);
}

body.is-modal-open {
    position: fixed;
    width: 100%;
}

[class^="radius"],
[class*=" radius"] {
    overflow: hidden;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    flex: none;
}

.sp {
    display: none !important;
}

.flex1 {
    flex: 1 !important;
}

.relative   {
    position: relative;
}

.block  {
    display: block;
}

.inlineblock  {
    display: inline-block;
}

.flex   {
    display: flex;
}

.flex.column  {
    flex-direction: column;
}

.flex.column_reverse  {
    flex-direction: column-reverse;
}

.flex.wrap  {
    flex-wrap: wrap;
}

.flex.pc_reverse   {
    flex-direction: row-reverse;
}

.flex_left  {
    justify-content: flex-start !important;
}

.flex_center    {
    width: 100%;
    justify-content: center !important;
}

.flex_right {
    justify-content: flex-end !important;
}

.flex_between  {
    justify-content: space-between !important;
}

.flex_top   {
    align-items: flex-start !important;
}

.flex_middle    {
    align-items: center !important;
}

.flex_bottom    {
    align-items: flex-end !important;
}

.flex_baseline  {
    align-items: baseline;
}

.center_middle  {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-left  {
    text-align: left !important;
}

.text-center  {
    text-align: center !important;
}

.text-right  {
    text-align: right !important;
}

.pc_center  {
    text-align: center !important;
}

.bg_green   {
    background-color: #6DC2C7 !important;
}

.bg_beige   {
    background-color: #FFFCEE !important;
}

.bg_yellow   {
    background-color: #FAF61E !important;
}

.bg_white    {
    background-color: #FFF !important;
}

.hasshadow   {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.white,
.white *  {
    color: white !important;
}

.darkgray,
.darkgray *  {
    color: #333 !important;
}

.black,
.black *  {
    color: black !important;
}

.green,
.green *    {
    color: #6DC2C7 !important;
}

.beige,
.beige *   {
    color: #FFFCEE !important;
}

*    {
    font-family: noto-sans-cjk-jp, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    outline: none !important;
    line-height: 200%;
    color: #000;
    font-feature-settings: "palt";
    letter-spacing: 1px;
    color: #1A171B;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/mont.woff2') format('woff2'),
       url('../fonts/mont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.mont *   {
    font-family: 'Mont', sans-serif !important;
    letter-spacing: 0.1em !important;
    transform: scale(0.95,1) translateY(0.15em);
}

.corporate * {
    font-family: corporate-logo-ver2, sans-serif !important;
    letter-spacing: 0.1em !important;
    transform: scale(0.95,1);
}

.mont   {
    font-family: 'Mont', sans-serif !important;
    letter-spacing: 0.1em !important;
    transform: scale(0.95,1) translateY(0.15em);
}

.corporate {
    font-family: corporate-logo-ver2, sans-serif !important;
    letter-spacing: 0.1em !important;
    transform: scale(0.95,1);
}

.extralight {
    font-weight: 100 !important;
}

.light {
    font-weight: 300 !important;
}

.regular   {
    font-weight: 400 !important;
}

.medium {
    font-weight: 500 !important;
}

.semibold {
    font-weight: 600 !important;
}

.bold {
    font-weight: 700 !important;
}

.extrabold {
    font-weight: 900 !important;
}

.italic,
.italic * {
    font-style: italic !important;
}

.inview.fadeIn {
    opacity: 0;
    transition-property: opacity, filter !important;   /* opacity → opacity, filter */
    transition-duration: 0.2s !important;
    transition-timing-function: linear !important;
}

.inview.fadeInUp,  {
    opacity: 0;
    transform: translateY(5vw);
    transition-property: opacity, transform, background-position !important;
    transition-duration: 0.2s !important;
    transition-timing-function: linear !important;
}

.inview.fadeIn.is-show  {
    opacity: 1;
}

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


.hasarrow   {
    background-size: min(3.3vw,50px);
    line-height: 1;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 7px bottom 5.5px;
    padding: 0 min(4.29vw, 65px);
}

.hasarrow:hover   {
    background-position: right 0 bottom 5.5px;
}

/* ローディング画面 */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6DC2C7;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader_letters {
    display: flex;
    align-items: flex-end;
    gap: min(1.2vw, 16px);
    padding: 0 5vw;
}
.loader_letters img {
    height: min(8vw, 80px);
    width: auto;
    display: block;
    animation: loaderJump 1.1s ease-in-out infinite;
}
.loader_letters picture:nth-child(1) img { animation-delay: 0s; }
.loader_letters picture:nth-child(2) img { animation-delay: 0.1s; }
.loader_letters picture:nth-child(3) img { animation-delay: 0.2s; }
.loader_letters picture:nth-child(4) img { animation-delay: 0.3s; }
.loader_letters picture:nth-child(5) img { animation-delay: 0.4s; }

@keyframes loaderJump {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-12px); }
}

@media screen and (max-width: 834px) {
    .loader_letters img { height: min(16vw, 90px); }
    @keyframes loaderJump {
        0%, 60%, 100% { transform: translateY(0); }
        30% { transform: translateY(-2.5vw); }
    }
}

main section:not(#news) ul {
    flex: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
main section:not(#news) ul li {
    position: relative;
    padding-left: 1.6rem;
}

main section:not(#news) ul li::before {
    content: '・';
    position: absolute;
    left: 0.5rem;
}

.comingsoon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: 4;
    filter:
    drop-shadow(1px 0 0 #FFFCEE)
    drop-shadow(-1px 0 0 #FFFCEE)
    drop-shadow(0 1px 0 #FFFCEE)
    drop-shadow(0 -1px 0 #FFFCEE)
    drop-shadow(1px 1px 0 #FFFCEE)
    drop-shadow(-1px 1px 0 #FFFCEE)
    drop-shadow(1px -1px 0 #FFFCEE)
    drop-shadow(-1px -1px 0 #FFFCEE);
}

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

header  {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

header .h1 a   {
    position: fixed;
}

header .h1 a img {
    opacity: 0;
    display: block;
    width: 100%;
    transition: opacity 0.2s linear;
}

header.scrolled .h1 a img:not(.logo-shadow),
.sub header .h1 a img:not(.logo-shadow) {
    opacity: 1;
}

header .h1 a .logo-shadow {
    position: absolute;
    inset: 0;
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.2s linear;
    filter:
        drop-shadow(1px 0 2px rgba(0,0,0,0.25))
        drop-shadow(-1px 0 2px rgba(0,0,0,0.25))
        drop-shadow(0 1px 2px rgba(0,0,0,0.25))
        drop-shadow(0 -1px 2px rgba(0,0,0,0.25));
}
header.scrolled .h1 a .logo-shadow {
    opacity: 1;
}

header nav ul.pc li a {
    text-shadow:
        1px 0 2px rgba(0,0,0,0),
        -1px 0 2px rgba(0,0,0,0),
        0 1px 2px rgba(0,0,0,0),
        0 -1px 2px rgba(0,0,0,0);
    transition: text-shadow .2s linear, opacity .2s linear;
}

header.scrolled nav ul.pc li a {
    text-shadow:
        1px 0 2px rgba(0,0,0,.45),
        -1px 0 2px rgba(0,0,0,.45),
        0 1px 2px rgba(0,0,0,.45),
        0 -1px 2px rgba(0,0,0,.45);
}

header nav ul.socialarea {
    filter:
        drop-shadow(1px 0 2px rgba(0,0,0,0))
        drop-shadow(-1px 0 2px rgba(0,0,0,0))
        drop-shadow(0 1px 2px rgba(0,0,0,0))
        drop-shadow(0 -1px 2px rgba(0,0,0,0));
    transition: filter .2s linear;
}
header.scrolled nav ul.socialarea {
    filter:
        drop-shadow(1px 0 2px rgba(0,0,0,.25))
        drop-shadow(-1px 0 2px rgba(0,0,0,.25))
        drop-shadow(0 1px 2px rgba(0,0,0,.25))
        drop-shadow(0 -1px 2px rgba(0,0,0,.25));
}

header nav ul li,
header nav ul li a    {
    display: flex;
    justify-content: center;
    align-items: bottom;
    line-height: 1;
    letter-spacing: 0.1em;
}

header .inview.fadeIn   {
    transform: translateY(-5px) scale(0.95,1) !important;
}
header .inview.fadeIn.is-show   {
    transform: translateY(0) scale(0.95,1) !important;
}

@keyframes logo_j {
    from {
        transform: translateY(-3px);
    }
    to {
        transform: translateY(7px);
    }
}

@keyframes logo_u {
    from {
        transform: translateY(7px);
    }
    to {
        transform: translateY(-3px);
    }
}


@keyframes logo_h {
    from {
        transform: translateY(6px);
    }
    to {
        transform: translateY(-6px);
    }
}


@keyframes logo_l {
    from {
        transform: translateY(-6px);
    }
    to {
        transform: translateY(6px);
    }
}

@keyframes logo_a {
    from {
        transform: translateY(-4px);
    }
    to {
        transform: translateY(6px);
    }
}

@keyframes logo_mid {
    from {
        transform: translateY(20px) scale(0.7);
    }
    to {
        transform: translateY(-20px) scale(0.7);
    }
}

@keyframes cv {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.index .key    {
    min-height: 56.25vw;
    max-height: 65vw;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.key .letters img   {
    position: absolute;
}

.logo_j    {
    width: 16.14vw;
    animation: logo_j 2.2s ease-in-out infinite alternate;
}

.key .letters img.logo_j    {
    left: 10.51vw;
    top: -1.98vw;
}

.logo_u    {
    width: 20.56vw;
    animation: logo_u 1.9s ease-in-out infinite alternate;
}

.key .letters img.logo_u    {
    left: 12.76vw;
    top: 15.07vw;
}

.logo_h    {
    width: 19.04vw;
    animation: logo_h 2.1s ease-in-out infinite alternate;
}

.key .letters img.logo_h    {
    left: 43.05vw;
    top: 37.89vw;
}

.logo_l    {
    width: 23.61vw;
    animation: logo_l 2.4s ease-in-out infinite alternate;
}

.key .letters img.logo_l    {
    left: 21.69vw;
    top: 29.56vw;
}

.logo_a    {
    width: 20.63vw;
    animation: logo_a 1.7s ease-in-out infinite alternate;
}

.key .letters img.logo_a    {
    left: 30.55vw;
    top: 11.24vw;
}
main    {
    position: relative;
    z-index: 1;
}
main section picture:has(img.logo_j)    {
    position: absolute;
    left: 5vw;
    top: -17.5vw;
    animation: logo_mid 2s ease-in-out infinite alternate;
}

main section picture:has(img.logo_u)    {
    position: absolute;
    right: 5vw;
    top: -7.5vw;
    animation: logo_mid 2s ease-in-out infinite alternate;
}

main section picture:has(img.logo_h)    {
    position: absolute;
    left: 5vw;
    top: -10vw;
    animation: logo_mid 2s ease-in-out infinite alternate;
}

main section picture:has(img.logo_l)    {
    position: absolute;
    right: 5vw;
    top: -11.5vw;
    animation: logo_mid 2s ease-in-out infinite alternate;
}

main section picture:has(img.logo_a)    {
    position: absolute;
    left: 5vw;
    top: -7.5vw;
    animation: logo_mid 2s ease-in-out infinite alternate;
}


.key .infoarea  {
    position: absolute;
    left: 0;
    right: 0;
    top: 10vw;
    z-index: 2;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

.key .infoarea h1  {
    letter-spacing: 0.1em;
    width: 100%;
    font-feature-settings: normal !important;
    font-size: 5.55vw;
}

.key .infoarea h1 > span    {
    font-size: 4.16vw;
    line-height: 100%;
}

.key .infoarea h1,
.key .infoarea h1 * {
    transform-origin: right center;
}

.key .infoarea h1 .inview.fadeIn {
    opacity: 0 !important;
    visibility: hidden;
}

.key .infoarea h1 .inview.fadeIn.is-show {
    opacity: 1 !important;
    visibility: visible;
}

.key .infoarea h1 span.corporate {
    display: inline-block;
    transform: translateY(-7px);
}

.key .datearea  {
    position: absolute;
    bottom: 40px;
    left: 30px;
    gap: 1vw;
}

.key .datearea img.key_date {
    width: 9.78vw;
}

.key .datearea img.key_venue {
    width: 16vw;
}

main section    {
    min-height: 10vw;
    background-repeat: repeat;
    background-position: center top;
    position: relative;
}

main section .inner,
footer .inner {
    max-width: 1310px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 min(1.5625vw, 30px);
}

main section.sec1   {
    background-image: url(../images/bg_green.svg);
    background-size: 22.55vw 22.55vw;
}

main section.sec1 .inner p.w100p.flex.flex_middle.fs20.mont {
    transform-origin: left center;
}

main section.sec2   {
    background-image: url(../images/bg_beige.svg);
    background-size: 22.55vw 22.55vw;
    min-height: 0;
}

main section.sec2 .inner ul,
footer .inner dl {
    max-width: 1024px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

main section.sec2 .inner ul a   {
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right min(1.5625vw, 30px) center;
    background-size: min(3.3vw,50px);
}

main section.sec2 .inner ul a:hover   {
    opacity: 1;
    background-position: right min(0.7812vw, 15px) center;
}

main section.sec2 .inner ul a .mont {
    transform-origin: left center;
}

main section.sec6   {
    background-image: url(../images/bg_green.svg);
    background-size: 135.3vw 135.3vw;
    background-position: center center;
}

main section.sec6 .inner h2 .mont   {
    padding-bottom: 0.1em;
}

main section.sec6 .inner .price {
    padding-top: min(0.66vw,10px);
}

main section.sec6 .inner sup   {
    transform: translateY(-0.5em);
}

main section.sec9   {
    background-image: url(../images/bg_beige.svg);
    background-size: 135.3vw 135.3vw;
    min-height: 0;
}


footer  {
    width: 100%;
}

footer .inner,
.copyright .inner {
    max-width: 1380px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cv_button  {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 9;
}

.cv_button a,
.cv a    {
    background-color: #fff;
    gap: 0.66vw;
    width: 26.98vw;
    border-radius: 0.66vw;
}
.cv_button a    {
    animation: cv 0.75s ease-in-out infinite alternate;
}
.cv a   {
    width: auto;
}
.cv_button a span,
.cv a span   {
    font-size: 2.38vw;
}

.cv_button a img,
.cv a img    {
    width: 8.39vw;
    height: 4.5vw;
}

.sub .key   {
    background-image: url(../images/bg_beige.svg);
    background-size: 22.55vw 22.55vw;
    min-height: 0;
    height: clamp(350px, 30vw, 600px);
}

.sub .key .inner,
.sub main section .inner    {
    max-width: 1124px;
    padding-left: 50px;
    padding-right: 50px;
}

.sub main section .inner > h2,
.sub main section .inner > h3,
.sub main section .inner > h4,
.sub main section .inner > h5,
.sub main section .inner > h6   {
    text-align: center;
    color: #6DC2C7;
    font-weight: 900;
    line-height: 150%;
    filter:
    drop-shadow(1px 0 0 #FFFCEE)
    drop-shadow(-1px 0 0 #FFFCEE)
    drop-shadow(0 1px 0 #FFFCEE)
    drop-shadow(0 -1px 0 #FFFCEE)
    drop-shadow(1px 1px 0 #FFFCEE)
    drop-shadow(-1px 1px 0 #FFFCEE)
    drop-shadow(1px -1px 0 #FFFCEE)
    drop-shadow(-1px -1px 0 #FFFCEE);
}

.sub main section .inner > h2   {
    font-size: 28px !important;
}

.sub main section .inner > h3   {
    font-size: 24px !important;
}

.sub main section .inner > h4   {
    font-size: 20px !important;
}

.sub main section .inner > h5   {
    font-size: 18px !important;
}

.sub main section .inner > h6   {
    font-size: 16px !important;
}

.sub main section .inner > *   {
    letter-spacing: 1px !important;
    line-height: 225%;
    padding-bottom: 30px;
}

@media screen and (max-width: 834px)  {
    html,body  {
        overflow-x: clip;
        width: 100%;
    }
    
    html.is-modal-open,
    body.is-modal-open {
        overflow: hidden;
        height: 100%;
    }
    
    body.is-modal-open {
        position: fixed;
        width: 100%;
    }
    
    body:before,
    body:after {
        display: none;
    }
    
    *    {
        font-size: 4.07vw;
        line-height: 225%;
    }

    .pc {
        display: none !important;
    }
    
    .sp,
    .sp_block {
        display: block !important;
    }
    
    .sp_left   {
        text-align: left !important;
    }
    
    .sp_center  {
        text-align: center !important;
    }
    
    .flex.sp   {
        display: flex !important;
    }
    .flex.pc_reverse   {
        flex-direction: rows;
    }
    
    .sp_row {
        flex-direction: row !important;
    }
    
    .sp_column  {
        flex-direction: column !important;
    }
    
    .sp_column_reverse  {
        flex-direction: column-reverse !important;
    }
    
    .sp_flex_center   {
        justify-content: center !important;
    }
    
    .sp_flex_right   {
        justify-content: flex-end !important;
    }
    
    .sp_flex_top   {
        align-items: flex-start !important;
    }
    
    .sp_flex_middle   {
        align-items: center !important;
    }
    
    .sp_flex_bottom   {
        align-items: flex-end !important;
    }
    
    .sp_column > *  {
        width: 100% !important;
    }
    
    .sp_wrap  {
        flex-wrap: wrap !important;
    }
    
    br.sp   {
        display: inline-block !important;
    }
    
    .drawer-hamburger {
        z-index: 101;
        /* ヘッダー（.h75 = 19.08vw）の中央にアイコンを合わせる
           9.54vw = ヘッダー高さの半分 / 11px = ボタン内でアイコンが下がる固定量 */
        padding-top: calc(9.54vw - 11px);
        filter:
            drop-shadow(1px 0 2px rgba(0,0,0,0))
            drop-shadow(-1px 0 2px rgba(0,0,0,0))
            drop-shadow(0 1px 2px rgba(0,0,0,0))
            drop-shadow(0 -1px 2px rgba(0,0,0,0));
        transition: filter 0.2s linear;
    }
    header.scrolled ~ .drawer-hamburger {
        filter:
            drop-shadow(1px 0 2px rgba(0,0,0,0.25))
            drop-shadow(-1px 0 2px rgba(0,0,0,0.25))
            drop-shadow(0 1px 2px rgba(0,0,0,0.25))
            drop-shadow(0 -1px 2px rgba(0,0,0,0.25));
    }


    .drawer-hamburger-icon:after, .drawer-hamburger-icon    {
        background-color: #fff;
    }

    .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
        background-color: #fff;
        top: -2.66vw;
    }
    
    .drawer-hamburger-icon:after, .drawer-hamburger-icon:after  {
        background-color: #fff;
        top: 2.66vw;
    }
    
    .index .key    {
        max-height: none;
        width: 100vw;
        height: 100svh;
    }
    
    .key .infoarea  {
        top: 18vw;
        padding: 0 5.09vw;
    }
    
    .logo_j    {
        width: 44vw;
        animation: logo_j 2.2s ease-in-out infinite alternate;
    }
    
    .key .letters img.logo_j    {
        width: 44vw;
        left: -5.33vw;
        top: -2.4vw;
    }
    
    .logo_u    {
        width: 48.53vw;
        animation: logo_u 1.9s ease-in-out infinite alternate;
    }
    
    .key .letters img.logo_u    {
        left: 9.06vw;
        top: 36vw;
    }
    
    .logo_h    {
        width: 48.53vw;
        animation: logo_h 2.1s ease-in-out infinite alternate;
    }
    
    .key .letters img.logo_h    {
        left: 56.53vw;
        top: 100.26vw;
    }
    
    .logo_l    {
        width: 62.93vw;
        animation: logo_l 2.4s ease-in-out infinite alternate;
    }
    
    .key .letters img.logo_l    {
        left: 1.86vw;
        top: 76.8vw;
    }
    
    .logo_a    {
        width: 56vw;
        animation: logo_a 1.7s ease-in-out infinite alternate;
    }

    .key .letters img.logo_a    {
        left: 45.33vw;
        top: 33.06vw;
    }
    
    .key_main   {
        max-width: none;
        width: 125vw;
        height: auto;
        right: -40vw;
        top: -30vw;
    }
    
    .key .datearea  {
        left: 5.09vw;
        gap: 2vw;
        bottom: 22vw;
    }
    
    .key .datearea img.key_date,
    .key .datearea img.key_venue {
        width: 50vw;
    }
    .key .infoarea h1   {
        text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    }
    .key .infoarea h1 > span   {
        font-size: 13vw;
    }
    .key .infoarea h1 span.corporate    {
        transform: translateY(-2px);
    }
    .key .infoarea h1 span.corporate > span    {
        font-size: 10vw;
    }
    
    main section picture:has(img.logo_j),
    main section picture:has(img.logo_u),
    main section picture:has(img.logo_h),
    main section picture:has(img.logo_l),
    main section picture:has(img.logo_a)    {
        top: -30vw;
        animation-name: logo_mid_sp;
    }

    @keyframes logo_mid_sp {
        from { transform: translateY(20px) scale(0.28); }
        to   { transform: translateY(-20px) scale(0.28); }
    }
    
    main section picture:has(img.logo_j),
    main section picture:has(img.logo_u),
    main section picture:has(img.logo_h),
    main section picture:has(img.logo_l),
    main section picture:has(img.logo_a) {
        transform-origin: left center;
    }
    
    main section picture:has(img.logo_u),
    main section picture:has(img.logo_l) {
        transform-origin: right center;
    }
    
    main section    {
        width: 100vw;
        position: relative;
        left: auto;
        transform: none;
    }
    
    .index main section .inner  {
        padding-left: 5.09vw;
        padding-right: 5.09vw;
    }
    .hasarrow   {
        text-align: center;
        width: 70%;
        background-size: 10vw auto;
        background-position: right 1.86vw bottom 1.46vw;
    }
    
    .hasarrow:hover   {
        background-position: right 0 bottom 1.46vw;
    }
    
    
    main section.sec2 .inner ul a   {
        background-size: 10vw auto;
        background-position: right 4.09vw bottom 7vw;
    }
    
    main section.sec2 .inner ul a:hover   {
        background-position: right 3.09vw bottom 7vw;
    }


    main section.sec6 .inner .price {
        padding-top: 2.4vw;
    }

    .cv_button  {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 15px;
    }
    
    .cv_button a, .cv a {
        width: 100% !important;
        height: 15vw;
        gap: 2vw;
    }
    
    .cv_button a span, .cv a span   {
        font-size: 8vw;
        letter-spacing: 0.05em !important;
    }
    
    .cv a span  {
        font-size: 5.75vw;
    }
    
    .cv_button a img, .cv a img {
        width: 27.5vw;
        height: auto;
    }
    
    .sub main section .inner    {
        padding-left: 7.63vw;
        padding-right: 7.63vw;
    }
    
    
    .sub main section .inner > h2   {
        font-size: 7.12vw !important;
    }
    
    .sub main section .inner > h3   {
        font-size: 6.11vw !important;
    }
    
    .sub main section .inner > h4   {
        font-size: 5.09vw !important;
    }
    
    .sub main section .inner > h5   {
        font-size: 4.58vw !important;
    }
    
    .sub main section .inner > h6   {
        font-size: 4.07vw !important;
    }

    table tr th {
        vertical-align: middle;
    }
    
    .drawer-overlay {
        z-index: 99;
    }
    
    .drawer-nav {
        z-index: 100;
        padding-top: 19.08vw;
        padding-bottom: 10vw;
        background-color: rgba(109,194,199,0.8) !important;
    }
    
    .drawer-nav a   {
        color: white;
        text-decoration: none !important;
    }
    
    .drawer-nav a:hover {
        color: rgba(255,255,255,0.8) !important;
    }
}

@media screen and (max-width: 834px) and (max-aspect-ratio: 1 / 2) {
    .key .letters {
        position: relative;
        transform: translateY(8vh);
    }
}

/* iPad mini(768) / iPad(834) は文字が大きすぎるため右上基準で縮小
   上の縦長端末ルールより後ろに置いて transform を上書きする */
@media screen and (min-width: 768px) and (max-width: 834px) {
    .key .letters {
        position: relative;
        transform: scale(0.85);
        transform-origin: 40% 0;
    }
}

/* modal */

.js-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.75);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.js-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.js-modal__dialog {
    position: relative;
    width: auto;
    max-width: 80vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-modal__content {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.js-modal__content img {
    display: block;
    max-width: 100%;
    height: auto;
}

.js-modal__content video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    background: #000;
}

.js-modal__body {
    padding: 32px;
}

.js-modal__close,
.js-modal [data-modal-close] {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    appearance: none;
}

body.is-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media screen and (max-width: 834px) {
    .js-modal {
        padding: 20px 12px;
    }
    
    .js-modal__dialog {
        max-width: 90vw;
    }
    
    .js-modal__body {
        padding: 20px 16px;
    }
    
    .js-modal__close,
    .js-modal [data-modal-close] {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}