/********************************************
*********************************************
    custom_property
*********************************************
********************************************/

:root {
    /* color */
    --black: #000;
    --white: #fff;
    --gray: #D9D9D9;
    --darkgray: #5a5a5a;
    --blue: #4A90E2;
    --logoblue: #1B6DA0;
    --beige: #FDCB6E;
    --darkblue: #2C3E50;
    --red: #E17055;

    --hot: #A11212;
    --ice: #1214A1;

    /* transition */
    --base: .3s ease;
    --easeOutCB: cubic-bezier(0.22, 1, 0.36, 1);
}

/********************************************
*********************************************
    reset
*********************************************
********************************************/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}


/********************************************
*********************************************
    common
*********************************************
********************************************/

html {
    scroll-behavior: smooth;
}

::selection {
    color: var(--beige);
    background-color: var(--darkgray);
}

body {
    background-color: var(--gray);
    font-family: "Noto Sans JP", sans-serif;
}

section {
    padding: 11rem 1rem;
}

.pc {
    display: inline-block;
}

.sp {
    display: none;
}

.co {
    display: none;
}

.content_wrap {
    max-width: 1200px;
    margin-inline: auto;
}

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

.mb_1rem {
    margin-bottom: 1rem;
}

.accent_text {
    position: relative;
    width: fit-content;
}

/* <span>はjsで追加 */
.accent_text>span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + .2em);
    border-bottom: 2px dashed var(--red);
    clip-path: inset(0 100% 0 0);
}

.accent_text_observed>span {
    clip-path: inset(0);
    transition: clip-path 2s ease-out .5s;
}

/***************
    view_more_btn
***************/

.view_more_wrap {
    width: fit-content;
}

.pop_circle_right .view_more_wrap {
    margin-left: auto;
}

.view_more_btn {
    --duration: .6s;

    display: grid;
    place-items: center;
    position: relative;
    width: 6rem;
    height: 2.5rem;
    margin: 2.75rem 1rem;
    color: var(--white);
    border: 1px solid #333;
    transition: margin var(--duration) ease, height var(--duration) ease, width var(--duration) ease, border-radius calc(var(--duration)/2) ease;
    cursor: pointer;

}

@media (any-hover: hover) {
    .view_more_btn:hover {
        width: 8rem;
        height: 8rem;
        margin: 0;
        border-radius: 50%;
    }
}

.view_more_btn::before,
.view_more_btn::after {
    content: "";
    display: block;
    position: absolute;
    translate: -50% -50%;
    transition: scale var(--base);
    transform-origin: center center;
    z-index: -1;
}

.view_more_btn::before {
    top: 50%;
    left: 50%;
    height: 7.5rem;
    width: 7.5rem;
    border-radius: 50%;
    background-color: var(--blue);
    scale: 0;
}

.view_more_btn::after {
    width: 6rem;
    height: 2.5rem;
    top: calc(50% + 3px);
    left: calc(50% + 3px);
    background-color: var(--red);
}

@media (any-hover: hover) {
    .view_more_btn:hover::before {
        scale: 1;
    }

    .view_more_btn:hover::after {
        scale: 0;
    }
}

/***************
    h2_basic
***************/

.h2_basic {
    position: relative;
    width: 65%;
    padding: 0 1.5rem .5rem;
    margin-bottom: 4.5rem;
    background-color: var(--white);
    font-size: 4rem;
    z-index: 0;
}

.h2_right {
    margin-left: auto;
    text-align: right;
}


/***************
    pop_circle
***************/
.pop_circle {
    position: relative;
    width: fit-content;
    margin-left: 3rem;
    z-index: 1;
}

.pop_circle::before,
.pop_circle::after {
    content: "";
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    width: 10rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    scale: 0;
    transition: scale .5s ease;
    z-index: -10;
}

/* jsで付与 */
.pop_circle_active::before,
.pop_circle_active::after {
    scale: 1;
}

.pop_circle::before {
    transform-origin: 51% 51%;
    background-color: var(--beige);
    animation: pop_circle 2s linear infinite;
}

.pop_circle::after {
    transform-origin: 52% 52%;
    outline: 3px solid var(--beige);
    translate: -2px -2px;
    animation: pop_circle 3s linear reverse infinite;
}

@keyframes pop_circle {
    form {
        rotate: 10deg;
    }

    to {
        rotate: 370deg;
    }
}

.pop_circle_right {
    margin-inline: auto 3rem;
    text-align: right;
}

.pop_circle_right::before,
.pop_circle_right::after {
    left: auto;
    right: -1.5rem;
}


/********************************************
    hamburger_menu
********************************************/

/***************
    button
***************/

.ham_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    aspect-ratio: 1/1;
    background-color: var(--darkblue);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    z-index: 1000;
}

.ham_btn::after,
.ham_btn span {
    content: "";
    display: block;
    position: absolute;
    top: 30%;
    right: 1rem;
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    transition: opacity var(--base), width var(--base), transform var(--base);
}

.ham_btn span:first-of-type {
    width: 2rem;
    transform: translateY(-.5rem);
}

.ham_btn span:last-of-type {
    width: 1rem;
    transform: translateY(.5rem);
}

/* ハンバーガーメニュー オープン時 jsでclass付与 .ham_active */
.ham_active::after {
    opacity: 0;
}

.ham_active span:first-of-type {
    transform: rotate(20deg) translateY(0);
}

.ham_active span:last-of-type {
    top: 30%;
    width: 2rem;
    transform: rotate(-55deg) translateY(0);
}

/***************
    nav_body
***************/

.ham_nav {
    position: fixed;
    top: -.5rem;
    right: -4rem;
    height: 0;
    width: 0;
    border-radius: 13% 87% 77% 23% / 19% 0% 100% 81%;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--darkblue);
    transform-origin: top right;
    overflow: hidden;
    transition: width var(--base), height var(--base), border-radius var(--base);
    z-index: 999;
}

/* ハンバーガーメニュー オープン時、<nav>にjsで付与するclass */
.ham_open {
    height: 23.5rem;
    width: 21rem;
    border-radius: 20% 80% 43% 57% / 42% 0% 100% 58%;
    transition: width var(--base), height var(--base), border-radius 1.5s ease;
}

.ham_nav ul {
    position: absolute;
    top: 5rem;
    right: 8.5rem;
    text-align: right;
}

.ham_nav li:not(:last-of-type) {
    margin-bottom: 1rem;
}

.ham_nav a {
    transition: margin var(--base), letter-spacing var(--base);
}

@media (any-hover: hover) {
    .ham_nav a:hover {
        margin-right: -.3em;
        letter-spacing: .3em;
    }
}


/********************************************
    access
********************************************/

#access {
    position: relative;
    padding-bottom: 4rem;
    overflow: hidden;
    z-index: 0;

    /* ::after jsで操作用 */
    --translate: translate(-8%, -30%);
    --opacity: 0;
    --transition: transform 3.5s ease, opacity 4s ease;
}

#access::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: var(--translate);
    height: 1700px;
    width: 1700px;
    background-image: url(../img/KOSELING.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: var(--opacity);
    z-index: -1;
    transition: var(--transition);
}

#access iframe {
    display: block;
    width: 90%;
    margin-inline: auto;
    margin-bottom: 5rem;
}

#access .pop_circle {
    max-width: 25rem;
    width: 100%;
    padding-inline: 1rem;
    margin-inline: auto;
    margin-bottom: 3rem;
}

#access dl div {
    justify-content: flex-start;
    padding-block: .5rem;
}

#access dl div:not(div:last-of-type) {
    border-bottom: 1px solid var(--black);
}

#access dt {
    width: 25%;
    margin-right: 1rem;
}

#access .sns_wrap ul {
    justify-content: center;
    gap: 2rem;
}

#access .sns_wrap ul img {
    width: 44px;
    filter: drop-shadow(0 0 5px var(--black));
}

#access .sns_wrap ul a {
    display: block;
    width: fit-content;
    height: auto;
    position: relative;
}

#access .sns_wrap ul a::before,
#access .sns_wrap ul a::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    /* ver(--src)は、親のaタグにjsで生成 */
    background-image: var(--src);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1);
    opacity: 1;
}

@media (any-hover: hover) {

    #access .sns_wrap ul a:hover img {
        animation: sns_icon 1s linear infinite;
    }

    #access .sns_wrap ul a:hover::before {
        animation: sns_before 1s linear infinite;
    }

    #access .sns_wrap ul a:hover::after {
        animation: sns_after 1s linear infinite;
    }
}

@keyframes sns_icon {
    from {
        filter: blur(5px) drop-shadow(0 0 0 var(--black));
    }

    20% {
        filter: blur(0px) drop-shadow(0 0 5px var(--black));
    }

    to {
        filter: blur(0px) drop-shadow(0 0 5px var(--black));
    }

}

@keyframes sns_before {
    from {
        transform: scale(1);
        opacity: 1;
        filter: blur(0px);
    }

    30% {
        transform: scale(1.5);
        opacity: 0;
        filter: blur(3px);
    }

    to {
        transform: scale(1.5);
        opacity: 0;
        filter: blur(3px);
    }
}

@keyframes sns_after {
    from {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: scale(.5);
        opacity: 0;
    }

    to {
        transform: scale(.5);
        opacity: 0;
    }
}



/********************************************
    footer
********************************************/
footer {
    /* clip-path */
    --triangle: polygon(50% 0%, 100% 90%, 0% 90%);

    position: relative;
    padding-top: 2rem;
    color: var(--white);
    background-color: var(--darkblue);
    text-align: center;
}

footer .top_btn {
    --btn_size: 5rem;

    position: absolute;
    top: 0;
    right: 3rem;
    transform: translateY(-60%);
    width: fit-content;
    height: auto;
    color: var(--black);
    pointer-events: none;
    transition: color .5s var(--easeOutCB), transform .5s var(--easeOutCB);
}

footer .top_btn::before,
footer .top_btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    translate: -50% -50%;
    width: var(--btn_size);
    aspect-ratio: 1/1;
    background-color: var(--darkgray);
    pointer-events: none;
    clip-path: polygon(50% 0%, 100% 90%, 0% 90%, 50% 0%, 50% 2px, calc(0% + 1.73px) calc(90% - 1px), calc(100% - 1.73px) calc(90% - 1px), 50% 2px, 50% 0%);
    transition: top .5s ease, transform .5s ease, width .5s ease;
    z-index: -1;
}

footer .top_btn::before {
    transform: rotate(180deg);
}

footer .top_btn::after {
    transform: rotate(-180deg);
}

footer .top_btn a {
    position: relative;
    display: grid;
    place-content: center;
    width: var(--btn_size);
    aspect-ratio: 1/1;
    margin-inline: auto;
    background-color: var(--beige);
    pointer-events: auto;
    clip-path: var(--triangle);
    z-index: 0;
}

footer .top_btn a::before,
footer .top_btn a::after {
    content: "";
    display: block;
    position: absolute;
    width: var(--btn_size);
    aspect-ratio: 1/1;
    z-index: -1;
}

footer .top_btn a::before {
    background-color: var(--blue);
    transform: translateY(90%);
    clip-path: var(--triangle);
    transition: transform .4s cubic-bezier(0.5, 1, 0.89, 1) .1s;
}

footer .top_btn a::after {
    background-color: var(--red);
    transform: translateY(90%);
    clip-path: var(--triangle);
    transition: transform .4s cubic-bezier(0.5, 1, 0.89, 1);
}

@media (any-hover: hover) {

    footer .top_btn:hover {
        color: var(--white);
        transform: translateY(-70%);
    }

    footer .top_btn:hover::before,
    footer .top_btn:hover::after {
        top: 50%;
        transform: rotate(0deg);
        transition: top .5s ease, transform .5s ease, width 1s ease .8s;
    }

    footer .top_btn:hover::before {
        width: calc(5rem + 10px);
    }

    footer .top_btn:hover::after {
        width: calc(5rem + 20px);
    }

    footer .top_btn:hover a::before {
        transform: translateY(0);
        transition: transform .4s var(--easeOutCB);
    }

    footer .top_btn:hover a::after {
        transform: translateY(0);
        transition: transform .4s var(--easeOutCB) .1s;
    }

}

footer .footer_nav {
    margin-bottom: 2rem;
}

footer .footer_nav ul {
    justify-content: center;
}

footer .footer_nav ul li {
    overflow: hidden;
}

footer .footer_nav ul li:not(li:last-of-type) {
    border-right: 1px solid var(--white);
}

footer .footer_nav ul li a {
    position: relative;
    color: transparent;
    padding-inline: 1.5rem;
    margin-inline: 2px;
}

footer .footer_nav ul li a::before,
footer .footer_nav ul li a::after {
    position: absolute;
    left: 0;
    padding-inline: 1.5rem;
    color: var(--white);
    transition: transform var(--base), opacity var(--base);
}

footer .footer_nav ul li a::before {
    top: 0;
}

footer .footer_nav ul li a::after {
    top: 100%;
    opacity: 0;
}

footer .footer_nav ul li:nth-of-type(1) a::before,
footer .footer_nav ul li:nth-of-type(1) a::after {
    content: "HOME";
}

footer .footer_nav ul li:nth-of-type(2) a::before,
footer .footer_nav ul li:nth-of-type(2) a::after {
    content: "PRICE";
}

footer .footer_nav ul li:nth-of-type(3) a::before,
footer .footer_nav ul li:nth-of-type(3) a::after {
    content: "DRINK";
}

@media (any-hover:hover) {

    footer .footer_nav ul li a:hover::before {
        transform: translateY(-100%);
        opacity: 0;
    }

    footer .footer_nav ul li a:hover::after {
        transform: translateY(-100%);
        opacity: 1;
    }
}


/********************************************
    loadiing
********************************************/

.loading {
    position: fixed;
    inset: 0%;
    background-color: var(--logoblue);
    z-index: 9999;
}

.loaded {
    top: 15%;
    animation: loading .6s ease-out forwards;
}

@keyframes loading {
    from {
        inset: 0;
        border-radius: 0;
    }

    33% {
        border-radius: 15% 85% 83% 17% / 33% 85% 15% 67%;
    }

    66% {
        border-radius: 61% 39% 68% 32% / 68% 39% 61% 32%;
    }

    to {
        inset: 50%;
        inset-block: 25% 75%;
        border-radius: 23% 77% 19% 81% / 27% 36% 64% 73%;
    }
}

.basic_loading {
    position: fixed;
    inset: 0;
    background-color: var(--gray);
    opacity: 1;
    transition: opacity var(--base), visibility var(--base);
    z-index: 9999;
}

.basic_loaded {
    opacity: 0;
    visibility: hidden;
}


/********************************************
*********************************************
    home
*********************************************
********************************************/

/********************************************
    key_visual
********************************************/

#home #key_visual {
    position: relative;
    height: 100svh;
    padding: 0;
    background-image: url(../img/hero_img.jpg);
    background-size: cover;
    background-position: center center;
}

#home #key_visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--black);
    opacity: .9;
}

/* スクロール誘導 */
#home #key_visual::after {
    content: "";
    position: absolute;
    bottom: -3rem;
    left: 50%;
    translate: -50% 0;
    height: 8rem;
    width: 3px;
    background-color: var(--beige);
    z-index: 10;
    animation: to_scroll 3s ease infinite;
}

@keyframes to_scroll {
    from {
        transform-origin: bottom;
        scale: 100% 100%;
    }

    45% {
        transform-origin: bottom;
        scale: 100% 0%;
    }

    46% {
        transform-origin: top;
        scale: 100% 0%;
    }

    90% {
        transform-origin: top;
        scale: 100% 100%;
    }
}

#home h1 {
    position: absolute;
    top: 15%;
    left: 50%;
    translate: -50% -5vh;
    height: 30vh;
    aspect-ratio: 1/1;
    margin-inline: auto;
}

#home .key_text {
    position: absolute;
    bottom: 25%;
    inset-inline: 0;
    color: var(--white);
    text-align: center;
}

#home .h2_key {
    /* clamp vw 768px - 910px */
    font-size: clamp(3rem, -2.4085rem + 11.2676vw, 4rem);
    margin-bottom: 3rem;
}


/********************************************
    introduction
********************************************/

#home #home_introduction {
    position: relative;
    padding-block: 15rem;
}

#home #home_introduction::before,
#home #home_introduction::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
    z-index: -1;
}

#home #home_introduction::before {
    background-image: url(../img/relax_space.jpg);
    background-size: cover;
    background-position: center center;
}

#home #home_introduction::after {
    background-color: var(--white);
    opacity: .7;
}

#home #home_introduction .h2_intro {
    font-size: clamp(3.7rem, 0.0294rem + 7.6471vw, 5rem);
    margin-bottom: 7rem;
}


/********************************************
    price
********************************************/

#home #home_price {
    position: relative;
    max-width: 1200px;
    margin-inline: auto;
    z-index: 0;
}

#home #home_price .price_images {
    display: flex;
    gap: 10%;
    justify-content: flex-end;
    position: absolute;
    inset: 0 33% 0 0;
}

#home #home_price .price_images p {
    width: 10rem;
    height: 60%;
    margin-left: 1rem;
    box-shadow: 5px 5px 15px -5px var(--black);
}


#home #home_price .price_images p:nth-of-type(1) {
    margin-top: 20%;
    transition: transform .8s ease;
}

#home #home_price .price_images p:nth-of-type(2) {
    margin-top: 35%;
    z-index: -1;
    transition: transform .5s ease;
}

#home #home_price .price_images p:nth-of-type(3) {
    margin-top: 25%;
    transition: transform 1.2s ease;
}

/* 詳細度注意 */
#home #home_price .content_wrap .price_images .parallax_waiting {
    transition: none;
}

#home #home_price .price_images p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% center;
    transition: object-position 1s ease;
}

#home #home_price .price_images p img:nth-of-type(1) {
    transition: object-position .8s ease;
}

#home #home_price .price_images p img:nth-of-type(2) {
    transition: object-position .5s ease;
}

#home #home_price .price_images p img:nth-of-type(3) {
    transition: object-position 1.2s ease;
}

/********************************************
    price
********************************************/

#home #home_drink {
    position: relative;
    min-width: 3px;
    min-height: 3px;
    background-image: url(../img/coffee_kit2.jpg);
    background-position: center 80%;
    background-size: cover;
    overflow: hidden;
}

#home #home_drink::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--white);
    opacity: .7;
}

#home #home_drink .drink_slider {
    position: absolute;
    inset: 0 0 0 60%;
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

#home #home_drink .drink_slider p {
    position: absolute;
    inset: 0;
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#home #home_drink .drink_slider p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% center;
}

#home #home_drink .drink_slide_el {
    transform: translateX(100%);
}


/********************************************
*********************************************
    PRICE
*********************************************
********************************************/


/********************************************
    top_view
********************************************/

#price #top_view {
    height: 100dvh;
    padding: 0;
}

#price #top_view h1 {
    display: grid;
    place-content: center;
    position: relative;
    width: 100%;
    height: 60dvh;
    color: var(--white);
    font-size: 6rem;
    background-image: url(../img/price_top.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

#price #top_view h1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--black);
    opacity: .75;
    z-index: -1;
}

#price #top_view nav ul {
    justify-content: space-evenly;
    align-items: center;
    height: 40dvh;
}

#price #top_view nav ul a {
    position: relative;
    font-size: 1.5rem;
    text-decoration: underline solid 2px;
    z-index: 0;
}

#price #top_view nav ul a::before,
#price #top_view nav ul a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 8rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--beige);
    transition: transform var(--base), outline-offset .5s ease;
    z-index: -1;
}

#price #top_view nav ul a::before {
    background-color: var(--red);
    transform: scale(0);
    outline: 3px dashed var(--beige);
    outline-offset: -8rem;
    animation: price_nav_btn 10s linear infinite;
}

@keyframes price_nav_btn {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@media (any-hover: hover) {
    #price #top_view nav ul a:hover::before {
        transform: scale(1);
        outline-offset: -8px;
    }

    #price #top_view nav ul a:hover::after {
        transform: scale(0);
    }
}

/********************************************
    prices_sticky_root
********************************************/

#price .prices_sticky_root #price_free_space,
#price .prices_sticky_root #price_meeting_room,
#price .prices_sticky_root #price_rental_office,
#price .prices_sticky_root #price_relax_space {
    position: sticky;
    top: 0;
    height: 100vh;
    background-image: linear-gradient(#3f5873 0%, #2B3D4F 100%);
}

#price .prices_sticky_root #price_relax_space {
    background-image: linear-gradient(#1B6DA0 0%, #135D8B 100%);
}

#price .prices_sticky_root .content_wrap {
    justify-content: center;
    gap: 2%;
}

#price .prices_sticky_root .prices_text {
    flex-direction: column;
    align-items: center;
    width: 49%;
    aspect-ratio: 1/1;
    color: var(--white);
}

#price .prices_sticky_root .prices_text .spacer {
    width: 1rem;
    height: 2rem;
}

#price .prices_sticky_root .prices_text h2 {
    font-size: clamp(2.4rem, -0.3738rem + 5.7788vw, 4rem);
}

#price .prices_sticky_root .prices_text .prices_table {
    width: clamp(10.375rem, -22.125rem + 67.7083vw, 18.5rem);
    font-size: clamp(1rem, -3rem + 8.3333vw, 2rem);
}

#price .prices_sticky_root .prices_text .prices_table div {
    padding-block: .5rem;
}

#price .prices_sticky_root .prices_text .prices_table div:not(div:last-of-type) {
    border-bottom: 1px solid var(--white);
}

#price .prices_sticky_root .prices_text .prices_table dl {
    width: 100%;
}

#price .prices_sticky_root .prices_text .prices_table dt {
    width: 40%;
    text-align: center;
}

#price .prices_sticky_root .prices_text .prices_table dd {
    width: 60%;
    padding-right: 1rem;
    text-align: right;
}

#price .prices_sticky_root .prices_text .prices_table p {
    font-size: 2rem;
    text-align: center;
}

#price .prices_sticky_root .prices_text .plus {
    font-size: clamp(1rem, -3rem + 8.3333vw, 2rem);
}

#price .prices_sticky_root .prices_text .prices_service_text {
    font-size: clamp(1rem, -2.2269rem + 6.7227vw, 2rem);
    text-align: center;
}


#price .prices_sticky_root .prices_image {
    width: 49%;
    aspect-ratio: 1/1;
    border-radius: 10%;
    overflow: hidden;
}

#price .prices_sticky_root .prices_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/********************************************
*********************************************
    DRINK
*********************************************
********************************************/


/********************************************
    top_view
********************************************/

#drink #top_view {
    height: 100dvh;
    padding: 0;
}

#drink #top_view h1 {
    display: grid;
    place-content: center;
    position: relative;
    width: 100%;
    height: 60dvh;
    color: var(--white);
    font-size: 6rem;
    background-image: url(../img/drink_top.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

#drink #top_view h1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--black);
    opacity: .75;
    z-index: -1;
}

#drink #top_view .top_view_text {
    width: fit-content;
    height: 40dvh;
    align-content: center;
    padding-inline: 1rem;
    margin-inline: auto;
    font-size: clamp(2.5rem, -0.639rem + 6.5395vw, 4rem);
}

#drink #top_view .drink_scroll {
    position: relative;
}

#drink #top_view .drink_scroll::before,
#drink #top_view .drink_scroll::after {
    content: "";
    position: absolute;
    left: 4rem;
    width: 2rem;
    aspect-ratio: 1/1;
    border-right: 5px solid var(--black);
    border-bottom: 5px solid var(--black);
    rotate: 45deg;
    animation: drink_scroll 1s ease-in alternate infinite;
}

#drink #top_view .drink_scroll::before {
    top: 1rem;
}

#drink #top_view .drink_scroll::after {
    top: 2rem;
}

@keyframes drink_scroll {
    form {
        translate: 0 0;
    }

    to {
        translate: 0 50%;
    }
}

/********************************************
    introduction
********************************************/

#drink #drink_introduction {
    padding-block: 5rem 9rem;
}

/********************************************
    coffee & other_drink
********************************************/

#drink .h2_drinks {
    text-align: center;
    margin-bottom: 3rem;
}

#drink .price_list {
    max-width: 520px;
    margin-inline: auto;
    font-size: 1.25rem;
}

#drink .price_list dt {
    position: relative;
    width: 46%;
    padding-left: 3.5rem;
}

#drink .price_list dt .temperature {
    display: grid;
    place-content: center;
    position: absolute;
    top: 50%;
    left: 0%;
    translate: 0 -50%;
    width: 3rem;
    aspect-ratio: 1/1;
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
}

#drink .price_list dt .ice {
    clip-path: inset(0 0 50% 0);
    background-color: var(--ice);
}

#drink .price_list dt .ice::after {
    content: "ICE";
    translate: 0 -50%;
}

#drink .price_list dt .hot {
    clip-path: inset(50% 0 0 0);
    background-color: var(--hot);
}

#drink .price_list dt .hot::after {
    content: "HOT";
    translate: 0 50%;
}

#drink .price_list dd {
    position: relative;
}

#drink .price_list dd span {
    position: absolute;
    top: -70%;
    left: 50%;
    translate: -50% 0%;
    font-size: 14px;
}

/********************************************
    coffee
********************************************/

#drink #drink_coffee {
    position: relative;
    color: var(--white);
    background-image: url(../img/coffee_kit.jpg);
    background-position: center 80%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

#drink #drink_coffee::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--black);
    opacity: .8;
    z-index: -1;
}

#drink #drink_coffee .price_list {
    margin-bottom: 5rem;
}

#drink #drink_coffee h3 {
    text-align: center;
    margin-bottom: 1rem;
}

#drink #drink_coffee .drip_relative {
    display: grid;
    place-content: center;
    /* heightはJSで算出 */
    transition: height .7s ease;
}

#drink #drink_coffee .drip_animate {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--white);
    transform: rotate(-225deg);
    transition: width 1s var(--easeOutCB), height 1s var(--easeOutCB), transform .7s ease;
    overflow: hidden;
}

#drink #drink_coffee .drip_animate::before,
#drink #drink_coffee .drip_animate::after {
    content: "";
    display: block;
    position: absolute;
    width: 2.5rem;
    aspect-ratio: 1/1;
    background-color: var(--white);
}

#drink #drink_coffee .drip_animate::before {
    top: -1px;
    left: -1px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

#drink #drink_coffee .drip_animate::after {
    bottom: -1px;
    right: -1px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

#drink #drink_coffee .drip_style_open {
    transform: rotate(0deg);
}

#drink #drink_coffee .drip_style {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: fit-content;
    padding: 2.5rem 3rem;
    rotate: 225deg;
}

#drink #drink_coffee .drip_style_open .drip_style {
    rotate: 0deg;
}

#drink #drink_coffee .drip_style dt {
    font-size: 1.25rem;
    white-space: nowrap;
}

#drink #drink_coffee .drip_style dd {
    white-space: nowrap;
}

/********************************************
    others
********************************************/

#drink #drink_others {
    position: relative;
    background-image: url(../img/drink_others.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

#drink #drink_others::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--white);
    opacity: .7;
    z-index: -1;
}

#drink #drink_others .price_list {
    margin-bottom: 3rem;
}

#drink .price_list dt .taste {
    font-size: 14px;
}

#drink #drink_others .orange_temp {
    clip-path: none;
}

#drink #drink_others .orange_temp::after {
    translate: 0 0;
}


/********************************************
*********************************************
    sp
*********************************************
********************************************/

@media (width < 768px) {
    section {
        padding-block: 5rem;
    }

    .h2_basic {
        width: 100%;
        font-size: 3rem;
    }

    .pc {
        display: none;
    }

    .sp {
        display: inline-block;
    }

    .pop_circle {
        margin-inline: 0;
    }

    .pop_circle_right {
        margin-inline: auto .5rem;
    }

    #access {
        padding-bottom: 6rem;

        /* ::after jsで操作用 */
        --translate: translate(-12%, -2%);
    }

    #access::before {
        height: 750px;
        width: 750px;
    }

    #access .h2_basic {
        margin-bottom: 3rem;
    }

    #access iframe {
        width: 100%;
        margin-bottom: 3rem;
    }

    footer .top_btn {
        --btn_size: 3.5rem;

        right: .5rem;
    }

    /********************************************
    *********************************************
        home
    *********************************************
    ********************************************/

    #home p {
        margin-bottom: .5em;
    }

    #home .mb_1rem {
        margin-bottom: 1.5rem;
    }

    #home .h2_key {
        line-height: 1.2;
    }

    #home #key_visual p {
        font-size: 14px;
    }

    #home #home_introduction {
        padding-block: 10rem;
        z-index: 1;
    }

    #home #home_introduction::before,
    #home #home_introduction::after {
        clip-path: none;
    }

    #home #home_introduction .h2_intro {
        font-size: 2.2rem;
    }

    #home #home_price .price_images {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        translate: clamp(-26.25rem, -40.4799rem + 60.7143vw, -11.375rem) -50%;
        height: 700px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        box-shadow: 0 0 15px black;
        opacity: .3;
        overflow: hidden;
        z-index: -1;
    }

    #home #home_price .price_images p {
        width: 100%;
        height: 100%;
    }

    #home #home_price .price_images p:nth-of-type(1) {
        margin: 0;
    }

    #home #home_price .price_images p img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* to 15% 0% */
        object-position: -10% 0;
    }

    #home #home_drink .drink_slider {
        inset: calc(100% - 11.5rem) 0 0 10%;
    }

    #home #home_drink .drink_slider p {
        margin-bottom: 0;
    }

    /********************************************
    *********************************************
        price
    *********************************************
    ********************************************/

    #price #top_view h1 {
        height: 70dvh;
        font-size: 5rem;
    }

    #price #top_view nav ul {
        height: 30dvh;
    }

    #price #top_view nav ul a {
        font-size: 14px;
    }

    #price #top_view nav ul a::before,
    #price #top_view nav ul a::after {
        width: 5rem;
    }

    #price .prices_sticky_root #price_free_space,
    #price .prices_sticky_root #price_meeting_room,
    #price .prices_sticky_root #price_rental_office,
    #price .prices_sticky_root #price_relax_space {
        padding-block: 2rem;
    }

    #price .prices_sticky_root .content_wrap {
        display: block;
        position: relative;
        height: 100%;
        align-content: center;
    }

    #price .prices_sticky_root .prices_text {
        width: 100%;
    }

    #price .prices_sticky_root .prices_text h2 {
        margin-bottom: .5rem;
        font-size: 2.2rem;
    }

    #price .prices_sticky_root .prices_text .plus {
        margin-bottom: 1rem;
    }

    #price .prices_sticky_root .prices_image {
        position: absolute;
        top: 0px;
        width: 100%;
        height: 90%;
        z-index: -1;
    }

    #price .prices_sticky_root .prices_image::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: var(--black);
        opacity: .8;
    }

    /********************************************
    *********************************************
        drink
    *********************************************
    ********************************************/

    #drink #top_view h1 {
        height: 70dvh;
        font-size: 5rem;
    }

    #drink #top_view .top_view_text {
        height: 30dvh;
        font-size: 1.25rem;
    }

    #drink #top_view .drink_scroll::before,
    #drink #top_view .drink_scroll::after {
        left: 2.5rem;
        width: 1rem;
        border-right: 2px solid var(--black);
        border-bottom: 2px solid var(--black);
    }

    #drink #top_view .drink_scroll::after {
        top: 1.5rem;
    }

    #drink .price_list {
        font-size: 1rem;
    }

    #drink #drink_others .price_list {
        container-type: inline-size;
        align-items: center;
    }

    #drink {
        @container (width < 440px) {
            dt {
                font-size: 14px;
            }
        }

        @container (width < 400px) {
            dt {
                font-size: 16px;
            }

            .co {
                display: inline;
            }
        }
    }
}