:root{
    --main-color: #FFD700;;
    --sub-color: #FEE57D;
    --bg-color: #F8F4EF;
    --text-color: #4e5257;
    --black: #222;
    --white:#fff;
    --white-opa: rgba(255, 255, 255, .8)
}


/* *{
    outline: 1px solid magenta;
} */

.kaisei-opti-regular {
    font-family: "Kaisei Opti", serif;
    font-weight: 400;
    font-style: normal;
}
  

html{
    width: 100%;
    font-size: 62.5%;
    font-family: "Kaisei Opti","Noto Serif JP", serif;
    color: var(--text-color);
}

@media screen and (max-width:768px) {
    html{
        font-size: clamp(6px, 2vw, 10px);
    }
}

body{
    width: 100%;
    font-size: 100%;
    line-height: 2;
    letter-spacing: .3em;
}

.pc{
    display: inherit;
}

.sp{
    display: none;
}


@media screen and (max-width:1440px) {
    .pc{
        display: none;
    }
    
    .sp{
        display: inherit;
    }
}

a{
    text-decoration: none;
    color: var(--text-color);
    transition: opacity .2s;
}

img, picture{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

li{
    list-style: none;
}

.inner {
    max-width: 1280px;
    margin: 0 8rem;
}

/* 共通装飾 */
p:not(.fv__catch p, .fv__scroll-bar p, .lead__text p, .copyright p){
    padding: .5em;
    background: url(../img/bg_text/bg_text03.jpg) no-repeat center / cover;
    border-radius: .5em;
}

.sec-ttl {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding: .1em .5em;
    font-weight: normal;
    font-size: 2rem;
    line-height: 1.5;
    word-break: keep-all;
    color: var(--text-color);
}

.sec-ttl::after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 0;
    height: 100%;
    border-radius: 45%;
    background-color: var(--main-color);
    transition: width 1.5s ease;
}

.is-slideIn.sec-ttl::after{
    width: 100%;
}

.sec-ttl-sub {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding: .1em .5em;
    font-weight: normal;
    font-size: 2rem;
    line-height: 1.5;
    word-break: keep-all;
    color: var(--text-color);
}

.sec-ttl-sub::after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 0;
    height: 100%;
    border-radius: 45%;
    background-color: var(--main-color);
    transition: width 1.5s ease;
}

.is-slideIn.sec-ttl-sub::after{
    width: 100%;
}

@media screen and (min-width:1441px) {
    .inner{
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {
    .inner{
        margin: 0 4rem;
    }
}
/* ボタン */
button{
    width: 100%;
}

.btn-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 8rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background-color: var(--main-color);
    transition: background-color .3s;
}

.btn-more::after{
    position: absolute;
    top: 50%;
    right: 1rem;
    translate: 0 -50%;
    content: "";
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.btn-more:hover{
    background-color: var(--sub-color);
}

.arrow {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    translate: 0 -50%;
    display: inline-block;
    width: 2rem;
    height: 1px;
    border-radius: 9999px;
    background-color: var(--white);
}
  
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--white);
  transform-origin: calc(100% - 0.5px) 50%;
}

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

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

@media screen and (max-width:768px) {
    .btn-more {
        width: 100%;
        height: 6rem;
        font-size: 1.4rem;
    }
    
    .btn-more::after{
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
    }
    
    .arrow {
        right: 1.5rem;
        width: 1.5rem;
        height: 1px;
    }
      
    .arrow::before,
    .arrow::after {
      right: 0;
      width: 1rem;
    }
}

/*お問い合わせボタン  */
.contact button{
    position: relative;
    padding: 10rem 0;
    cursor: inherit;
}

.btn-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 20rem;
    margin: 2rem auto 0;
    border-radius: 1rem;
    font-size: 2rem;
    color: var(--text-color);
    background-color: var(--main-color);
    transition: background-color .3s;
}

.btn-contact::after{
    position: absolute;
    top: 50%;
    right: 4rem;
    translate: 0 -50%;
    content: "";
    width: 8rem;
    height: 8rem;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.btn-contact:hover{
    background-color: var(--sub-color);
}

.btn-contact .arrow{
    right: 5.5rem;
    width: 5rem;
}

.contact-attention {
    position: absolute;
    top: 0;
    left: 5%;
    z-index: 1;
    width: 20rem;
    height: 30rem;
}

@media screen and (max-width:768px) {
    .contact button {
        padding: 0;
    }

    .btn-contact {
        height: 10rem;
        font-size: 1.6rem;
    }
    
    .btn-contact::after{
        right: 4rem;
        width: 4rem;
        height: 4rem;
    }

    .btn-contact .arrow{
        right: 4.5rem;
        width: 3rem;
    }

    .contact-attention {
        position: static;
        margin: 0 auto;
        width: 20rem;
        height: 30rem;
}
}

/* 上に戻るボタン */
.btn-to-top {
    width: 5rem;
    height: 5rem;
    position: fixed;
    top: -7rem;
    right: 10px;
    z-index: 10;
    border: 1px solid var(--white);
    background-color: var(--main-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.btn-to-top.scrolled{
    opacity: 1;
}

.btn-to-top::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f0d8';
    font-size: 3rem;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

/* loading animation */
.loading {
    /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
    width: 100%;
    height: 100vh;
    /*ローディング画面の表示位置を固定*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    /*ローディング画面を3秒かけて非表示にする*/
    transition: all 2s ease;
}

.spinner {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #FFF;
    border-left-color: #ccc; 
    /* アニメーションを1秒かけて実行 */
    animation: spinner-rotation 1s linear infinite;
  }
  
/* アニメーションの設定 */
@keyframes spinner-rotation {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
}

/*ローディング画面を非表示にする*/
.loading.loaded {
    opacity: 0;
    visibility: hidden;
}

.header.loaded{
    translate: 0 0;
    opacity: 1;
}

.fv__img.loaded{
    opacity: 1;
}

.fv__img--fade-in-out.loaded{
    animation: fade-in-out 3s ease forwards;
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fv__catch.loaded{
    translate: 0 0;
    transition: translate 1s ease-in-out;
}

.fv__scroll-bar.loaded{
    opacity: 1;
}


/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    translate: 0 -110%;
    width: 100%;
    height: 8rem;
    transition: translate 2s;
}

.header .inner{
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo {
    visibility: hidden;
    width: 16rem;
}

.hamburger {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9900;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--main-color);
    cursor: pointer;
}

.hamburger-line{
    position: relative;
    width: 100%;
    height: 100%;
}

.hamburger-line span{
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--white);
    will-change: transform;
    transition: translate .3s, opacity .3s, rotate .3s;
}

.hamburger-line span:nth-child(1){
    top: 28%;
}

.hamburger-line span:nth-child(2){
    top: 50%;
    translate: 0 -50%;
    width: 66%;
}

.hamburger-line span:nth-child(3){
    bottom: 28%;
}

.hamburger.is-open span:nth-child(1){
    top: 52%;
    rotate: 45deg;
}

.hamburger.is-open span:nth-child(2){
    opacity: 0;
}

.hamburger.is-open span:nth-child(3){
    bottom: 46%;
    rotate: 135deg;
}

.drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    transition: visibility .3s ease, opacity .3s ease;
    background-color: var(--main-color);
}

.drawer.is-open{
    visibility: visible;
    opacity: 1;
}

.drawer ul{
    width: 70%;
    margin: 0 auto;
    padding: 10rem 0;
}

.drawer li a{
    display: inline-block;
    margin: .5rem 0;
    padding: .5rem 0;
    font-size: 1.6rem;
    color: var(--text-color);
    transition: color .3s ease, translate .3s ease;
}

.drawer li a:hover{
    translate: .5em 0;
    color: var(--sub-color);
}

@media screen and (max-width:768px) {    
    .header-logo {
        width: 12rem;
    }
    
    .hamburger {
        display: none;
        width: 5rem;
        height: 5rem;
        padding: 1rem;
    }
}

/* スマホ画面メニュー */
.fixed-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    translate: 0 100%;
    z-index: 10;
    width: 100%;
    background-color: var(--main-color);
    transition: translate 1.5s ease;
}

.fixed-nav.scrolled{
    translate: 0 0;
}

.fixed-nav ul{
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    font-size: 1.4rem;
    border-top: 1px solid var(--white);
}

.fixed-nav li{
    border-bottom: 1px solid var(--white);
}

.fixed-nav ul li:nth-child(1) {
    grid-area: 1 / 1 / 2 / 4;
}

.fixed-nav ul li:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2; 
    border-right: 1px solid var(--white);
}

.fixed-nav ul li:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3; 
}

.fixed-nav ul li:nth-child(4) {
    grid-area: 3 / 1 / 4 / 3; 
}

.fixed-nav ul li:nth-child(5) {
    grid-area: 4 / 1 / 5 / 2; 
    border-right: 1px solid var(--white);
}

.fixed-nav ul li:nth-child(6) {
    grid-area: 4 / 2 / 5 / 3; 
}

.fixed-nav ul li:nth-child(7) {
    grid-area: 5 / 1 / 6 / 3; 
}

.fixed-nav ul li:nth-child(8) {
    grid-area: 6 / 1 / 7 / 2; 
    border-right: 1px solid var(--white);
}

.fixed-nav ul li:nth-child(9) {
    grid-area: 6 / 2 / 7 / 3; 
}

.fixed-nav ul li:nth-child(10) {
    grid-area: 7 / 1 / 8 / 2; /* 7行目1列目 */
    border-right: 1px solid var(--white);
}

.fixed-nav ul li:nth-child(11) {
    grid-area: 7 / 2 / 8 / 3; /* 7行目2列目 */
}

.fixed-nav ul li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem 0;
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-color);
    transition: background-color .3s ease;
}

.fixed-nav ul li a:hover{
    background-color: var(--sub-color);
    color: var(--white);
}

@media screen and (max-width:768px) {
    .fixed-nav{
        display: block;
    }
}


/* スクロールでフェードイン */
.fadeIn {
    transition: opacity 0.7s, translate 1s ease;
    translate: 0 10rem;
    opacity: 0;
}
/* jsでこのクラスをつけることでフェードインさせる */
.is-fadeIn {
    /*要素を表示させる*/
    opacity: 1;
    visibility: visible;
    /*元の位置に戻す*/
    translate: 0 0;
}


/* fv セクション*/
.fv {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin-bottom: 5rem;
    overflow: hidden;
}

.fv__img {
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 3s;
}

.fv__img picture img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.fv__img--fade-in-out {
    position: absolute;
    z-index: 1;
    width: 30vh;
    opacity: 0;
    transition: opacity .3s;
}

.fv__img--fade-in-out.left-top{
    top: 5%;
    left: 10%;
}

.fv__img--fade-in-out.right-bottom{
    bottom: 5%;
    right: 10%;
}

.fv__catch {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 12rem;
    translate: 0 calc((-100vh / 2) + 12rem); /*画面真ん中より12remに配置*/
    margin: 0 auto;
    font-size: 4.8rem;
    color: var(--white);
    -webkit-text-stroke: 1px var(--sub-color);
    text-align: center;
}

.fv__scroll-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    margin: 0 auto;
    padding-bottom: 4rem;
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 3s ease;
}

.fv__scroll-bar::before{
    position: absolute;
    top: 2em;
    left: 50%;
    translate: -50% 0;
    content: "";
    width: 1px;
    height: 5rem;
    background: var(--white);
    opacity: .7;
}

.fv__scroll-bar::after{
    position: absolute;
    top: 2em;
    left: 50%;
    translate: -50% 0;
    content: "";
    width: 1px;
    height: 5rem;
    background: var(--white);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }
    45% {
        transform-origin: top;
        transform: scaleY(1);
    }
    55% {
        transform-origin: bottom;
        transform: scaleY(1);
    }
    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}


/* スライダー */
@keyframes horizontal-animation {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-100%);
    }
}

@keyframes horizontal-animation-reverse {
    from {
      transform: translateX(-100%);
    }
  
    to {
      transform: translateX(0);
    }
}

.about__slider {
    max-height: 200px;
}

.about__slider .slider-container{
    margin-top: 0rem;
}

.slider-container {
    max-height: 315px;
    display: flex;
    margin-top: 5rem;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    animation: horizontal-animation 40s linear infinite;
}

.slider-wrapper.reverse {
    animation: horizontal-animation-reverse 40s linear infinite;
}

.slide {
    max-width: 320px;
    width: 30vw;
    margin-right: 2rem;
}

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

#rider-card img{
    display: inline-block;
    margin: 0 .3rem;
    width: 40px;
    height: 80px;
    aspect-ratio: auto;
    object-fit: contain;
}

#oracle-card img{
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}


/* 霊視鑑定セクション */
.spiritual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding: 10rem 0;
}

.spiritual__ttl-wrap {
    padding-left: 2rem;
}

.spiritual__ttl-wrap p{
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.2em;
}

.spiritual__photo {
    flex-shrink: 0;
    width: 48%;
}

.spiritual__photo img{
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .spiritual {
        display: flex;
        flex-direction: column-reverse;
        padding: 8rem 0;
    }
    
    .sec-ttl {
        margin-bottom: 1.8rem;
    }

    .spiritual__ttl-wrap {
        padding-left: 0;
    }
    
    .spiritual__ttl-wrap p{
        margin-bottom: 1.8rem;
        line-height: 1.8;
    }
    
    .spiritual__photo {
        width: 100%;
    }

    .spiritual__photo img{
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }
    
}

/* パーソナルカラーセクション */
.color {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding: 10rem 0;
}

.color__ttl-wrap {
    padding-left: 2rem;
}

.color__ttl-wrap p{
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.2em;
}

.color__photo {
    flex-shrink: 0;
    width: 48%;
}

.color__photo img{
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .color {
        display: flex;
        flex-direction: column-reverse;
        padding: 4rem 0 8rem;
    }
    
    .sec-ttl {
        margin-bottom: 1.8rem;
    }

    .color__ttl-wrap{
        padding-left: 0;
    }
    
    .color__ttl-wrap p{
        margin-bottom: 1.8rem;
        line-height: 1.8;
    }
    
    .color__photo {
        width: 100%;
    }

    .color__photo img{
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }
}

/* aboutセクション */
.about {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 10rem 0 8rem;
}

.about__ttl-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32%;
    padding-top: 4rem;
}

.about__ttl-wrap p{
    font-size: 1.6rem;
    margin-bottom: 8rem;
    text-align: justify;
}

.about__ttl-wrap img{
    aspect-ratio: 4 / 3;
}

.about__photo {
    width: 32%;
    max-height: 600px;
}

.about__photo img{
    object-fit: cover;
    height: 100%;
}

.about__more {
    display: flex;
    flex-direction: column;
    width: 32%;
}

.about__more p{
    margin: 8rem 0 2rem;
    font-size: 1.6rem;
    text-align: justify;
}

.about button{
    text-align: right;
}

.read-more {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--main-color);
    transition: color .3s ease;
}

.read-more:hover{
    color: var(--sub-color);
}

@media screen and (max-width:768px) {
    .about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4rem;
        padding: 8rem 0 0;
    }
    
    .about__ttl-wrap {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        gap: 8rem;
        width: 100%;
        padding-top: 2rem;
    }

    .about__ttl-wrap-text {
        padding-left: 2.5rem;
    }
    
    .about__ttl-wrap p{
        margin-bottom: 0;
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .about__photo {
        display: none;
    }
    
    .about__more {
        width: 100%;
    }
    
    .about__more p{
        margin: 4rem 0 2rem;
        font-size: 1.4rem;
        line-height: 1.8;
    }
}


/* menuセクション */
.menu {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 10rem 0;
}

.menu__block {
    width: 32%;
    transition: translate .3s ease, opacity .3s ease;
}

.menu__block:hover{
    translate: 0 -1rem;
    opacity: .7;
}

.menu__block:nth-child(2){
    margin-top: 10rem;
}

.menu__block:nth-child(3){
    margin-top: 15rem;
}

.menu__photo {
    height: 52rem;
}

.menu__photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .menu {
        display: flex;
        flex-direction: column;
        gap: 8rem;
        justify-content: flex-start;
        padding: 10rem 0 8rem;
    }
    
    .menu__block {
        width: 100%;
    }

    .menu__block:nth-child(2){
        margin-top: 0;
    }
    
    .menu__block:nth-child(3){
        margin-top: 0;
    }
    
    .menu__photo {
        height: auto;
    }
    
    .menu__photo img{
        height: 100%;
        object-fit: cover;
    }
}


/* leadセクション */
.lead{
    position: relative;
    height: 80vh;
    padding: 3.5rem;
    margin-bottom: 10rem;
    background: url(../img/top-lead_bg.jpg) no-repeat center / cover;
}

.lead__text {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    max-width: 60rem;
    padding: 2rem;
    background: url(../img/bg_text/bg_text03.jpg) no-repeat center / cover;
    background-color:rgb(255, 255, 255, .3);
    background-blend-mode:lighten;
}

.lead__text h2{
    margin-left: 2.5rem;
}

.lead__text p{
    font-size: 1.6rem;
}

@media screen and (max-width:768px) {
    .lead{
        margin-bottom: 8rem;
    }
    
    .lead__text {
        right: 0;
        left: 0;
        max-width: 60rem;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .lead__text h2{
        margin-left: 2.5rem;
    }
    
    .lead__text p{
        font-size: 1.6rem;
    }
}


/* footer */
.footer {
    margin: 4rem auto 0;
    padding: 4rem 8rem 0;
    background-color: var(--bg-color);
}

.footer__content{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer__nav {
    margin-bottom: 2rem;
}

.footer__logo {
    width: 30rem;
    margin-bottom: 2rem;
}

.footer__global-nav{
    margin-bottom: 2rem;
}

.footer__global-nav li{
    margin-bottom: 1rem;
}

.footer__global-nav li a{
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.5;
    transition: color .3s ease, translate .3s ease;
}

.footer__global-nav li a:hover{
    translate: .5em 0;
    color: var(--sub-color);
}

.footer__sns li{
    width: 12rem;
    margin-bottom: 1rem;
}

.gmail{
    display: inline-block;
    width: 12rem;
    padding: 1rem 1rem 1rem;
    border-radius: .3rem;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: bold;
    color: var(--white);
    background-color: var(--main-color);
}

.gmail span{
    position: relative;
    padding-left: 3rem;
}

.gmail span::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 2.4rem;
    height: 2rem;
    background: url(../img/icon-gmail.svg) no-repeat center / cover;
}

.footer__sns a:hover{
    opacity: .8;
}

.footer .address{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.time-table {
    display: block;
    width: 100%;
    border: 1px solid var(--main-color);
    border-bottom: none;
    border-collapse: collapse;
}
  
.time-table {
    display: block;
    border-collapse: collapse;
}
  
.time-table th, .time-table td {
    padding: 0px 1rem;
    text-align: center;
    height: 5rem;
    border-bottom: 1px solid var(--main-color);
    font-weight: normal;
    font-size: 1.4rem;
}
  
.time-table td {
    width: 100%;
    color:var(--main-color);
}
  
.time-table .time {
    border-right: 1px solid var(--main-color);
    color: var(--text-color);
}
  
@media screen and (max-width: 768px)  {
.time-table td {
    min-width: auto;
    width:100%;
    max-width:5%;
    font-size:1.2rem;
}
  
.time-table th, .time-table td {
    width:100%;
    padding:0px 1.5rem;
    font-size:1rem;
}
}
  
.footer__map {
    width: 45vw;
    height: 45vw;
}

.copyright {
    padding: 2rem 0;
}

.copyright p{
    text-align: center;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.2em;
}


@media screen and (max-width:768px) {
    .footer {
        margin: 4rem auto 24rem;
        padding: 4rem 4rem 0;
    }

    .footer__content{
        flex-direction: column;
    }

    .footer__map {
        min-height: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .copyright p{
        font-size: 1rem;
    }
}