@charset "UTF-8";

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    color: #000;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

li {
    list-style-type: none;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
}

address {
    font-style: normal;
}

img {
    width: 100%;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
}

.page-ttl {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-weight: bold;
    margin-bottom: 50px;
}

.cont-ttl {
    font-family: "Zen Maru Gothic", sans-serif;
    border-radius: 0 5rem 5rem 0;
    color: #fff;
    background-color: #2F2F99;
    text-align: center;
    font-size: 1.25rem;
    padding: 2rem;
    padding-left: 5.5%;
    margin: 1rem auto 1rem -5.5%;
}

.cont-ttl.area-back-a {
    line-height: 1;
}

.cont-ttl span {
    font-size: 1.25rem;
}

.fw-bold {
    font-weight: bold;
}

.ticket-btn {
    margin-bottom: 9rem;
}

.next-btn,
.ticket {
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background-color: #FF9933;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 16px;
    font-weight: bold;
}

.next-btn::after {
    content: "";
    display: inline-block;
    width: 1rem;
    aspect-ratio: 21/34;
    background-image: url(../img/next-btn.svg);
    background-size: contain;
}

.ticket::after {
    content: "";
    display: inline-block;
    width: 3rem;
    aspect-ratio: 50/34;
    background-image: url(../img/pdficon.svg);
    background-size: contain;
}

.hdr-contact {
    color: #4D3423;
    font-family: "Zen Maru Gothic", sans-serif;
}

.hdr-contact h3 {
    margin-top: 3rem;
}

.hdr-contact h3 span {
    font-weight: normal;
}

.hdr-contact p {
    margin: 1.5rem 0;
}

.hdr-contact p span {
    font-size: 18px;
}

.hdr-contact a {
    color: #4D3423;
    font-family: "Zen Maru Gothic", sans-serif;
}

#footer {
    width: 100%;
    aspect-ratio: 375/350;
    background-image: url(../img/footer/footer-full-background.svg);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-cont {
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-top: 2rem;
}

#footer a,
#footer small {
    color: #fff;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
}

.navigation a {
    font-family: "Zen Maru Gothic", sans-serif;
    border-bottom: 1px solid #fff;
}

.footer-ttl {
    font-size: 1.5rem;
    font-weight: normal;
}

.info {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.info a:nth-of-type(1) {
    border-bottom: 1px solid #fff;
}

.info a:nth-of-type(2) {
    width: 1.5rem;
}

.copyright {
    margin-bottom: 14px;
}

main,
footer {
    max-width: 375px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}

.pc-nav {
    display: none;
}

.flow-ftr {
    background-color: transparent;
}

.top-visual-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -999;
}


/* ハンバーガーメニュー */
.drawer-nav {
    background-image: url("../img/header/hamburger.svg");
    background-position: bottom;
    background-size: cover;
}

.drawer-btn {
    position: fixed;
    top: 20px;
    right: 0;
    width: 73px;
    height: 49px;
    border: none;
    cursor: pointer;
    z-index: 999;
    background-color: #FF9933;
    border-radius: 24px 0 0 24px;
}

.drawer-btn>span {
    display: block;
    position: absolute;
    top: 50%;
    right: -8px;
    width: 2.625rem;
    height: 5px;
    border-radius: 1rem;
    background-color: #fff;
    transform: translateX(-50%);
}

.drawer-btn>span:first-child {
    transform: translate(-50%, calc(-50% - .5rem));
    transition: transform .1s ease;
}


.drawer-btn>span:last-child {
    transform: translate(-50%, calc(-50% + .5rem));
    transition: transform .1s ease;
}

.drawer-btn.hm-active>span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.drawer-btn.hm-active>span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* メニューのデザイン */
.drawer-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 5;
}

.drawer-nav.hm-active {
    opacity: 1;
    visibility: visible;
}

.drawer-nav-inner {
    position: relative;
    width: 73%;
    height: 100vh;
    padding: 4rem 1.5rem 1rem;
    margin: 0 auto;
    text-align: center;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.drawer-nav.hm-active .drawer-nav-inner {
    transform: translateX(0);
}

.drawer-nav-menu {
    list-style-type: none;
    padding-left: 0;
}

.drawer-nav-link {
    display: block;
    text-decoration: none;
    color: #4D3423;
    padding: 1rem 1rem;
    font-size: 1.5rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 600;
}

.drawer-nav-item a:hover{
    scale: 1.05;
    transition: .5s;
}

.drawer-nav-item {
    padding: 10px 0 0;
    border-bottom: 2px dashed #4D3423;
}

.drawer-nav-item a:hover {
    scale: 1.05;
    transition: .5s;
}

body.hm-active {
    height: 100%;
    overflow: hidden;
}

.is-active {
    text-decoration: underline;
}

.is-hide {
    display: none;
}

/* top-page */
main {
    overflow: hidden;
}

#top-visual {
    height: 724px;
    background-position: top, bottom;
    background-image: url("../img/top-visual/morning-background.svg"), url("../img/top-visual/night-background.svg");

}

.site-ttl-cont {
    position: relative;
    top: 50%;
    transform: translateY(calc(-50% - 32px));
    text-align: center;
}

.site-ttl-cont p {
    padding: 10px;
}

.site-day {
    color: #fff;
    font-weight: bold;
    background-image: url("../img/top-visual/ribbon.svg");
    background-position: center .4rem;
    width: 250px;
    margin: 0 auto;
    font-size: .75rem;
}

.site-day span {
    font-size: 1.25rem;
}

.site-sub-ttl {
    font-size: 1.5rem;
    color: #2F2F99;
    font-weight: bold;
}

.site-sub-ttl span {
    font-size: 0.938rem;
}

.site-ttl {
    color: #F15A24;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 3.438rem;
    line-height: 3.438rem;
    margin-top: -0.625rem;
}


.site-price {
    color: #2F2F99;
    line-height: 170%;
}

.site-price span:nth-of-type(1) {
    font-size: 1.25rem;
}

.site-price span:nth-of-type(2),
.site-price span:nth-of-type(3) {
    font-size: 1.75rem;
}

.catch img {
    width: 54.67vw;
}

.catch-ttl {
    font-size: 2rem;
    color: #2F2F99;
    text-align: center;
    padding: 10px;
    margin-bottom: 1.25rem;
    font-family: "Zen Maru Gothic", sans-serif;
}

.catch p {
    text-align: center;
    line-height: 200%;
}

.catch p span:nth-of-type(1) {
    font-size: 1.25rem;
}

.catch img:nth-of-type(1) {
    display: block;
    width: 65.33%;
    margin: 5rem auto 0;
}

.catch img:nth-of-type(2) {
    display: block;
    width: 36%;
    margin: 2rem auto 6rem;
}

.introduction {
    margin-bottom: 9rem;
}

.introduction-cont {
    margin: 2rem auto;
    line-height: 160%;
}

.introduction-about {
    display: flex;
    width: 100%;
    border: 2px dashed #51443B;
    padding: 1rem;
    border-radius: 2rem;
}

.introduction-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width: 45%;
}

.introduction-item:nth-child(2) {
    justify-content: center;
    width: 10%;
    font-size: 2rem;
}

.introduction-item:nth-child(1) p:nth-child(1),
.introduction-item:nth-child(3) p:nth-child(1) {
    color: #2F2F99;
    font-weight: bold;
    margin-bottom: 10px;
}

.introduction-item:nth-child(1) p:nth-child(3),
.introduction-item:nth-child(3) p:nth-child(3) {
    margin-top: 10px;
}

.store {
    height: 1000px;
    position: relative;
}

.store::before {
    content: "";
    display: inline-block;
    width: 11rem;
    aspect-ratio: 1/1;
    background-image: url(../img/about/store/orangedot.svg);
    background-size: contain;
    position: absolute;
    top: -10%;
    z-index: 1;
}

.store::after {
    content: "";
    display: inline-block;
    width: 11rem;
    aspect-ratio: 1/1;
    background-image: url(../img/about/store/orangedot.svg);
    background-size: contain;
    position: absolute;
    bottom: -3%;
    right: 0%;
    z-index: 1;
}

.shop-item {
    text-align: center;
    position: absolute;
    width: 112%;
    height: 40%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 7rem;
    z-index: 2;
}

.shop-item:nth-child(2) {
    padding-top: 5rem;
}

.shop-ttl {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #2F2F99;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.shop-item:nth-child(3) .shop-ttl,
.shop-item:nth-child(3) {
    color: #fff;
}

.shop-ttl span {
    font-size: 1.5rem;
}

.shop-item p:nth-of-type(1) {
    margin-bottom: 16px;
}

.shop-item span {
    font-weight: bold;
}

.shop-item:nth-child(1) {
    background-image: url(../img/about/store/lightblue.svg);
    background-size: cover;
    background-position: center;
    top: 0;
}

.shop-item:nth-child(2) {
    background-image: url(../img/about/store/white.svg);
    background-size: cover;
    background-position: center;
    top: 28%;
}

.shop-item:nth-child(3) {
    background-image: url(../img/about/store/navy.svg);
    background-size: cover;
    background-position: center;
    top: 56%;
}

.shop-item:nth-child(3) p {
    line-height: 1.2;
}

.map iframe {
    width: 100%;
    aspect-ratio: 4/3;
    margin: 9rem 0 5rem;
}

#plan .cont-ttl span {
    font-size: 2rem;
    font-weight: bold;
}

#plan .cont-ttl span:nth-of-type(1) {
    background-color: #FF9933;
    padding: 0 0.5rem;
    border-radius: 2rem;
}

#plan .cont-ttl span:nth-of-type(2) {
    background-color: #4598FF;
    padding: 0 0.5rem;
    border-radius: 2rem;
}

#plan .cont-ttl span:nth-of-type(3) {
    font-size: 2.25rem;
}

.plan-item:nth-child(1) {
    margin-top: 12rem;
}

.plan-item:nth-child(5) {
    margin-top: 10rem;
}

.plan-item p {
    position: relative;
}

.plan-item-cont {
    width: 83.09%;
    margin: 1rem 0 1rem auto;
    position: relative;
    text-align: center;
}

.plan-item:nth-child(5) .plan-item-cont {
    margin: 1rem auto;
}

.plan-item-cont img {
    position: relative;
    z-index: 3;
}

.plan-item-cont p {
    margin-top: 1rem;
    font-family: "Zen Maru Gothic", sans-serif;
}

.plan-item:nth-child(1) .plan-item-cont p,
.plan-item:nth-child(4) .plan-item-cont p {
    padding-bottom: 7rem;
}

.plan-item:nth-child(3) .plan-item-cont p {
    padding-bottom: 14rem;
}

.plan-item p:first-child {
    font-size: 2rem;
    font-weight: 600;
}

.plan-item-cont::before {
    content: '';
    display: block;
    width: .3rem;
    height: 100%;
    position: absolute;
    left: -2.5rem;
}

.plan-item:nth-child(1) .plan-item-cont::before {
    background: linear-gradient(#AFDCE9, #EFD451);
}

.plan-item:nth-child(2) .plan-item-cont::before {
    background: linear-gradient(#EFD451, #EB9600);
}

.plan-item:nth-child(3) .plan-item-cont::before {
    background: linear-gradient(#EB9600, #7952A6);
}

.plan-item:nth-child(4) .plan-item-cont::before {
    background: linear-gradient(#7952A6, #1B264D);
}

.plan-item:nth-child(1) .plan-item-cont::after {
    content: '';
    display: block;
    width: 50%;
    aspect-ratio: 1/1;
    background-image: url(../img/about/store/orangedot.svg);
    background-size: cover;
    position: absolute;
    top: -4rem;
    right: 0rem;
    z-index: 1;
}

.plan-item:nth-child(1) p:first-child::before {
    content: '';
    display: block;
    width: 35%;
    aspect-ratio: 1/1;
    background-image: url(../img/plan/solar.svg);
    position: absolute;
    top: -7.5rem;
    left: -2rem;
}

.plan-item:nth-child(5) p:first-child::before {
    content: '';
    display: block;
    width: 42%;
    aspect-ratio: 14/11;
    background-image: url(../img/plan/li.plan-item-famiy-star.svg);
    position: absolute;
    top: -6.75rem;
    left: -1rem;
}

.plan-item:nth-child(1) .plan-item-cont p::after {
    content: '';
    display: block;
    width: 64%;
    aspect-ratio: 3/2;
    background-image: url(../img/plan/plan-illustration-tea.svg);
    background-size: cover;
    position: absolute;
    top: 5.5rem;
    right: 0;
}

.plan-item:nth-child(3) .plan-item-cont p::after {
    content: '';
    display: block;
    width: 55%;
    aspect-ratio: 137/145;
    background-image: url(../img/plan/plan-illustration-aeonstore.svg);
    background-size: cover;
    position: absolute;
    top: 4rem;
    left: 0;
}

.plan-item:nth-child(4) .plan-item-cont p::after {
    content: '';
    display: block;
    width: 55%;
    aspect-ratio: 15/6;
    background-image: url(../img/plan/plan-illustration-alcohol.svg);
    background-size: cover;
    position: absolute;
    top: 4rem;
    right: 0;
}

.plan-item:nth-child(5) .plan-item-cont::after {
    content: '';
    display: block;
    width: 50%;
    aspect-ratio: 1/1;
    background-image: url(../img/plan/bluedot.svg);
    background-size: cover;
    position: absolute;
    top: -2rem;
    right: 0;
    z-index: 1;
}

#plan {
    padding-bottom: 200px;
}


/* サーチ */
.area-back-o {
    background-color: #55A2C1;
    font-size: 2rem;
    background-image: url(../img/store/cont-ttl-oyahukou.svg);
    background-size: contain;
    background-position: bottom;
}

.area-back-m {
    background-color: #7DBA57;
    font-size: 2rem;
    background-image: url(../img/store/cont-ttl-mina.svg);
    background-size: contain;
    background-position: bottom;
}

.area-back-a {
    background-color: #B60081;
    font-size: 1.5rem;
    background-image: url(../img/store/cont-ttl-aeon.svg);
    background-size: contain;
    background-position: bottom;
}

.search-list button {
    text-decoration: none;
}

.search-list__item {
    border: 1px solid #FF9933;
    color: #FF9933;
    margin-bottom: 50px;
    margin-right: 5px;
    padding: 3px;
    transition: .5s;
}

.search-list__item.is-active {
    background-color: #FF9933;
    color: #fff;
}

.search-list button:hover{
    scale: 1.05;
}

.search-list p {
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
}

.shop-name {
    font-size: 18px;
}

.line h3,
.line p,
.line-m h3,
.line-m p,
.line-a h3,
.line-a p {
    text-align: center;
    color: #4D3423;
}

.line p {
    font-size: 12px;
}

.line {
    padding: 5px;
    margin-bottom: 35px;
    position: relative;
}

#area-o .line {
    border-top: 2px dashed #338FB4;
    border-bottom: 2px dashed #338FB4;
}

#area-m .line {
    border-top: 2px dashed #7DBA57;
    border-bottom: 2px dashed #7DBA57;
}

#area-a .line {
    border-top: 2px dashed #B60081;
    border-bottom: 2px dashed #B60081;
}

.floor::after {
    content: '';
    display: block;
    width: 45px;
    aspect-ratio: 13/16;
    top: -5px;
    right: 0;
    position: absolute;
}

.m-bf-1::after {
    background-image: url(../img/store/area-item-mina-floor-b1.svg);
}

.m-1::after {
    background-image: url(../img/store/area-item-mina-floor-1.svg);
}

.m-2::after {
    background-image: url(../img/store/area-item-mina-floor-2.svg);
}

.m-1-2::after {
    background-image: url(../img/store/area-item-mina-floor-1.2.svg);
}

.m-3::after {
    background-image: url(../img/store/area-item-mina-floor-3.svg);
}

.m-4::after {
    background-image: url(../img/store/area-item-mina-floor-4.svg);
}

.m-5::after {
    background-image: url(../img/store/area-item-mina-floor-5.svg);
}

.m-6::after {
    background-image: url(../img/store/area-item-mina-floor-6.svg);
}

.m-8::after {
    background-image: url(../img/store/area-item-mina-floor-8.svg);
}

.m-8-rf::after {
    background-image: url(../img/store/area-item-mina-floor-8.rf.svg);
}

.a-bf-1::after {
    background-image: url(../img/store/area-item-eon-floor-b1.svg);
}

.a-1::after {
    background-image: url(../img/store/area-item-eon-floor-1.svg);
}

.a-2::after {
    background-image: url(../img/store/area-item-eon-floor-2.svg);
}

.a-4::after {
    background-image: url(../img/store/area-item-eon-floor-4.svg);
}

.area-item img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.shop-btn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.site-link {
    border-bottom: 1px dotted #4D3423;
    display: block;
    width: fit-content;
    margin: 15px 0 auto auto;
}

.site-link::after {
    content: '▶︎';
}

.area-item {
    margin-bottom: 100px;
}

.tel-btn a,
.map-btn a {
    background-color: #FF9933;
    width: 160px;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 19.2px;
    font-size: 15px;
    color: #fff;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.tel-btn a::before {
    content: "";
    display: block;
    width: 17px;
    aspect-ratio: 1/1;
    background-image: url(../img/store/area-item-tell-icon.svg);
    margin-top: .15rem;
}

.map-btn a::before {
    content: "";
    display: block;
    width: 17px;
    aspect-ratio: 1/1;
    background-image: url(../img/store/area-item-map-icon.svg);
}


/* お問い合わせ */
#contact {
    text-align: center;
    padding-bottom: 200px;
}

#contact h3 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 36px;
    margin-top: 200px;
    margin-bottom: 20px;
}

.contact-cont {
    background-color: #FFFCD6;
    border-radius: 10px;
}

.contact-cont li {
    width: 80%;
    margin: auto;
}

.contact-cont li:nth-child(2) {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.contact-item {
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-item p {
    margin-bottom: 5px;
}


/* 購入フロ- */
.page-ttl {
    height: 200px;
    background-image: url(../img/header/header-full-background.svg);
    background-position: top;
}

#flow-page .cont-ttl {
    font-size: 1.5rem;
}

.flow-ttl {
    text-align: center;
    margin: 75px auto;
}

.arrow {
    align-items: center;
    width: 30px;
    margin: 32px auto;
}

#flow {
    margin-bottom: 140px;
}

.flow-cont-item p {
    font-size: 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    line-height: 1;
}

.flow-cont-item span {
    font-size: 12px;
}

.flow-cont {
    text-align: center;
}

.flow-item {
    position: relative;
    width: 64%;
    margin: 0 auto;
}

.flow-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F2F2EB;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    z-index: 1;
}

.flow-item:nth-child(1)::after {
    content: '';
    display: block;
    width: 160px;
    aspect-ratio: 1/1;
    background-image: url(../img/flow/purplepolkadot.svg);
    background-size: cover;
    position: absolute;
    top: -60px;
    right: -60px;
}

.flow-item:nth-child(2)::after {
    content: '';
    display: block;
    width: 160px;
    aspect-ratio: 1/1;
    background-image: url(../img/flow/purplepolkadot.svg);
    background-size: cover;
    position: absolute;
    bottom: 80px;
    left: -80px;
}

.flow-item:nth-child(3)::after {
    content: '';
    display: block;
    width: 160px;
    aspect-ratio: 1/1;
    background-image: url(../img/flow/purplepolkadot.svg);
    background-size: cover;
    position: absolute;
    top: -60px;
    right: -80px;
}

.flow-item:nth-child(4)::after {
    content: '';
    display: block;
    width: 160px;
    aspect-ratio: 1/1;
    background-image: url(../img/flow/purplepolkadot.svg);
    background-size: cover;
    position: absolute;
    bottom: 15px;
    left: -80px;
}

.flow-illust {
    width: 114px;
}

.flow-item:nth-child(2) .flow-illust {
    width: 196px;
}

.flow-item:nth-child(3) .flow-illust {
    width: 151px;
}

.flow-item:nth-child(4) .flow-illust {
    width: 149px;
}

.flow-num {
    position: absolute;
    color: #F3B890;
    font-size: 70px;
    left: -50px;
    top: -40px;
}

/* 商品券販売概要 */
.sub-ttl {
    background-image: url(../img/ticket-about/tix-sub-ttl03limit\ back.svg.svg);
    color: #fff;
    border-bottom: 2px solid #2F2F99;
    margin-top: 50px;
    padding-left: 10px;
}

.ticket-cont {
    font-size: 1.25rem;
    margin-bottom: 100px;
}

.flex {
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
}

.flex p:nth-child(2),
.flex p:nth-child(3) {
    font-size: 1.125rem;
}

.day-item span {
    padding-left: 3rem;
}

.day-item p:first-child,
.day {
    font-size: 1.5rem;
}

.tix-about p:first-child span {
    font-weight: bold;
}

.tix-about p:nth-child(2) span {
    color: #FF0000;
    font-weight: bold;
}

.tix-about p:nth-child(2) {
    font-size: 0.75rem;
    color: #606060;
}

.tix-about,
.tix-about-day {
    margin-top: 10px;
    margin-bottom: 20px;
}

.ticket-int {
    font-size: 0.75rem;
    margin-top: 50px;
    margin-bottom: 60px;
}

.ticket-int li {
    list-style-type: disc;
    list-style-position: inside;
    padding: 5px;
    text-indent: -1.5em;
    padding-left: 1em;
}

.ticket-int li span {
    font-weight: bold;
}

/* 親不孝通りについて */
#overview {
    text-align: center;
    font-size: 16px;
    font-family: "Zen Maru Gothic", sans-serif;
}

.overview-ttl {
    margin-bottom: 30px;
    background-image: url(../img/overview/ov-noonsky.svg);
    background-size: cover;
    height: 150px;
    padding-top: 5px;
    color: #2C85B2;
}

.overview-ttl span {
    font-size: 32px;
}

.ov-noon h3,
.ov-night h3 {
    margin-bottom: 25px;
    font-weight: normal;
}

.ov-noon span,
.ov-night span {
    font-size: 24px;
    font-weight: bold;
}

.ov-noon {
    text-align: left;
    padding-bottom: 100px;
    background-image: url(../img/overview/ov-noonstreet.svg);
    background-position: bottom;
}

.ov-night {
    text-align: right;
    margin-bottom: 100px;
    padding-top: 100px;
    background-image: url(../img/overview/ov-nightstreet.svg);
    background-position: top;
}

#overview {
    background-image: url(../img/overview/ov-nightsky.svg);
    background-size: contain;
    background-position: bottom;
    padding-bottom: 135px;
}

#flow-page {
    position: relative;
}

#flow-page #footer {
    position: absolute;
    bottom: -250px;
    left: 50%;
    translate: calc(-50% - .5px);
}


/* --ボタンアニメーション---------------------------------------------- */
.tel-btn,
.map-btn,
.ticket-btn {
    transition-duration: .5s;
}

.tel-btn:hover,
.map-btn:hover,
.ticket-btn:hover {
    transform: scale(1.05);
}

#footer a:hover {
    scale: 1.05;
}

.swiper {
    height: 100vh;
}

.swiper-slide img {
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

/* animation */
.fade-up-top {
    transform: translateX(-50%) translateY(30px);
    transition: .8s ease;
    opacity: 0;
}

.fade-up-top.is-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

.scale-up {
    scale: 0.8;
    transition: .8s ease;
}

.scale-up.is-show {
    scale: 1;
}



@media (min-width: 768px) {
    .drawer-nav-link {
        font-size: 2rem;
    }

    .hdr-contact h3 {
        font-size: 1.5rem;
    }

    .hdr-contact p {
        font-size: 1.25rem;
        margin: 2rem 0;
    }

    .drawer-nav-inner .tel-btn a {
        font-size: 1.25rem;
        width: 200px;
        border-radius: 24px;
    }
}

@media (min-width: 1280px) {
    .header-inner {
        display: none;
    }

    .pc-nav {
        display: block;
        position: fixed;
        background-color: #fcfcfcd0;
        color: #534741;
        text-align: center;
        width: 355px;
        padding: 30px 35px;
        border-radius: 20px;
        right: 4%;
        top: 20%;
        font-size: 1.25rem;
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 600;
    }

    .pc-nav a {
        color: #534741;
        font-family: "Zen Maru Gothic", sans-serif;
    }

    .pc-nav li:hover{
        scale: 1.05;
    }

    .pc-nav-list li a {
        color: #534741;
        font-family: "Zen Maru Gothic", sans-serif;
        display: block;
        width: 75%;
    }

    .pc-nav-list {
        width: 90%;
        margin: 0 auto;
    }

    .pc-nav-list li {
        padding: .5rem;
        background-color: #fff;
        margin-bottom: 30px;
        border-radius: 30px;
        font-size: 1.5rem;
        box-shadow: 5px 5px 10px #47474730;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .5rem;
        transition: .5s;
    }

    .pc-nav-list li::after {
        content: '';
        display: block;
        width: 1.5rem;
        aspect-ratio: 1/1;
        background-image: url(../img/pcbackground/pc-top-visual-menuarrow.svg);
    }

    .pc-nav-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .pc-nav p,
    .pc-nav a {
        font-weight: normal;
    }

    .pc-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pc-info p:nth-of-type(2),
    .pc-info a {
        font-size: 1rem;
    }

    .pc-info h3 {
        margin-top: .5rem;
    }

    .pc-info p:nth-of-type(1) {
        margin-top: .5rem;
    }

    .pc-nav-flex img {
        width: 30px;
        vertical-align: bottom;
    }
}

@media (min-width: 1440px) {
    .pc-nav {
        right: 6%;
    }
}

@media (min-width: 1600px) {
    .pc-nav {
        right: 8%;
    }
}

@media (min-width: 1920px) {
    .pc-nav {
        right: 9%;
    }

    .pc-nav {
        width: 400px;
        padding: 60px 35px;
    }
}