@charset "utf-8";

/* フォント読み込み
-----------------------------------------------*/

@font-face {
    font-family: "APJapanesefont";
    src: url("../font/APJapanesefont.ttf") format("truetype");
}

/* 共通
-------------------------------------------------- */

html {
    font-size: 62.5%;

    scroll-behavior: smooth;

    @media (min-width: 768px) and (max-width: 1200px) {
        font-size: calc(10 / 1200 * 100vw);
    }

    @media (min-width: 320px) and (max-width: 767px) {
        font-size: calc(10 / 767 * 100vw);
    }
}

body {
    color: #333;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Zen Maru Gothic", "Noto Sans JP", "ADLaM Display", "APJapanesefont", serif;
}

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

a,
span {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

.c-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-inline: auto;
}

.c-title img {
    width: calc(150 / 1200 * 100%);
}

.c-title h2 {
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}


/* ボタン */

.js-backToTop {
    position: fixed;
    right: 30px;
    bottom: 60px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 10rem;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.js-backToTop:hover {
    opacity: 0.6;
}

/* クラス付与時の指定 */
.is-active {
    opacity: 1;
    visibility: visible;
}

.js-backToTop span {
    color: #73a20e;
    font-size: 2rem;
    font-family: "ADLaM Display", serif;
    letter-spacing: 0.2em;
}

.p-btn__reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 3.6rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.1em;
    border: 3px solid #fff;
    border-radius: 90px;
    transition: all 0.3s;
}

.p-btn__reservation:hover {
    color: #3b500f;
    background-color: #fff;
}

.p-btn__reservation--yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    width: calc(450 / 1200 * 100%);
    height: 6.4rem;
    margin-inline: auto;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 900;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
    background-color: #f7c738;
    border-radius: 90px;
    transition: all 0.3s;
}

.p-btn__reservation--yellow:hover {
    color: #f7c738;
    background-color: #fff;
    border: 3px solid #f7c738;
}

.p-btn__reservation--yellow img {
    width: 2.5rem;
    height: 2.5rem;
}

@media screen and (max-width: 767px) {

    .p-btn__reservation {
        width: 40rem;
        height: 6.4rem;
        padding-inline: 5rem;
        color: #fff;
        font-size: 2.8rem;
        background-color: #f7c738;
        border: 3px solid #f7c738;
    }

    .p-btn__reservation--yellow {
        width: calc(800 / 1200 * 100%);
    }

}

@media screen and (max-width: 576px) {

    .p-btn__reservation--yellow {
        width: 100%;
    }

}


/* ヘッダー
-------------------------------------------------- */

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1000;
    padding-top: 2rem;
    transition: height 0.4s ease;
    pointer-events: none;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    height: 100%;
    margin-inline: auto;
    padding: 2rem 3rem;
    transition: padding 0.4s ease;
}

.l-header__logo {
    width: calc(240 / 1440 * 100%);
    height: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.l-header__logo.is-hidden {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

.l-header__logo a {
    width: calc(720 / 1440 * 100%);
    height: 100%;
}

.p-nav-pc {
    display: flex;
    align-items: center;
    height: 6rem;
    margin-top: 10px;
    padding: 1rem 3.5rem;
    background-color: #3b500f;
    border-radius: 10px;
    transition: all 0.4s ease;
    pointer-events: auto;
}

/* ナビが固定されたときのサイズ感を微調整 */
.l-header.is-scrolled .l-header__inner {
    padding: 10px 30px;
}

.p-nav-pc__list {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.p-nav-pc__link {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.p-nav-pc__link:hover {
    opacity: 0.7;
}

.p-nav-sp {
    display: none;
}

@media screen and (max-width: 767px) {

    .l-header__logo {
        width: calc(400 / 1440 * 100%);
    }

    .p-nav-pc {
        display: none;
    }

    .p-nav-sp {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        height: 100vh;
        background-color: #d7dec7;
        overflow-x: hidden;
        transition: all 0.7s;
        pointer-events: auto;
    }

    .p-nav-sp.open {
        right: 0;
    }

    .p-nav-sp__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6rem;
        width: 100%;
        margin-bottom: 10rem;
        padding-top: 13rem;
    }

    .p-nav-sp__item a {
        font-size: 2.8rem;
        font-weight: 500;
        font-family: "Noto Sans JP", serif;
        letter-spacing: 0.1em;
        transition: opacity 0.5s ease;
    }

    .p-nav-sp__logo {
        width: calc(400 / 1200 * 100%);
    }

}

@media screen and (max-width: 576px) {

    .p-nav-sp {
        width: 100%;
    }

}



/* ハンバーガーメニュー */

.p-hamburger {
    display: none;
}

@media screen and (max-width: 767px) {
    .p-hamburger {
        position: relative;
        top: 0;
        right: -20px;
        z-index: 1000;
        display: block;
        width: 72px;
        height: 50px;
        transition: all 0.3s;
        pointer-events: auto;
    }

    .p-hamburger__line,
    .p-hamburger__line::before,
    .p-hamburger__line::after {
        content: "";
        position: absolute;
        width: 32px;
        height: 2px;
        background-color: #73a20e;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .p-hamburger__line {
        top: 23px;
        left: 20px;
    }

    .p-hamburger__line::before {
        top: 10px;
        transition: all 0.3s;
    }

    .p-hamburger__line::after {
        bottom: 10px;
        transition: all 0.3s;
    }

    .p-hamburger.open .p-hamburger__line {
        background-color: transparent;
    }

    .p-hamburger.open .p-hamburger__line::before {
        top: 0;
        transform: rotate(45deg);
    }

    .p-hamburger.open .p-hamburger__line::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
}


/* ファーストビュー
-------------------------------------------------- */

.p-fv {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #d8dec7;
}

.p-fv__title {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #a63268;
    font-size: 7.2rem;
    font-family: "APJapanesefont", serif;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-align: center;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1));
    text-shadow: 0 0 12px rgba(255, 255, 255, 1);
}

.p-fv__title span {
    font-size: 3.2rem;
    line-height: 1;
}

@media screen and (max-width: 767px) {

    .p-fv__title {
        font-size: 4.8rem;
    }

    .p-fv__title span {
        font-size: 2.8rem;
    }

}

@media screen and (max-width: 576px) {

    .p-fv__img img {
        height: 100vh;
        object-position: 70% 0;
    }

    .p-fv__title {
        font-size: 6.4rem;
    }

    .p-fv__title span {
        font-size: 4rem;
    }

}


/* 施設案内
-------------------------------------------------- */

.p-about {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    background-color: #d8dec7;
}

.p-about__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-about__main {
    position: relative;
}

.p-about__icon--top {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 16%;
}

.p-about__icon--bottom {
    position: absolute;
    right: -9%;
    bottom: -28%;
    width: 17%;
}

.p-about__main-flex {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    margin-bottom: 80px;
    padding: 7.5rem;
}

.p-about__main-flex::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url("../img/about.webp");
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.p-about__main-flex-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: calc(390 / 950 * 100%);
}

.p-about__logo {
    width: 53%;
}

.p-about__logo-text {
    color: #fff;
    font-size: 3.2rem;
    font-family: "APJapanesefont", serif;
    line-height: 1.2;
    letter-spacing: 0.2em;
}

.p-about__main-flex-text {
    width: calc(890 / 950 * 100%);
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(51, 51, 51, 1);
}

.p-about__main-text {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.2em;
}

.p-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.p-about__item {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.p-about__item img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.p-about__item-text-box {
    padding: 5rem 2.5rem;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.p-about__item-label {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding-inline: 15px;
    color: #fff;
    font-size: 2rem;
    font-family: "ADLaM Display", serif;
    letter-spacing: 0.2em;
    background-color: #73a20e;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.p-about__item-title {
    margin-bottom: 30px;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    text-align: center;
}

.p-about__item-text {
    line-height: 1.8;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 1400px) {

    .p-about__icon--top {
        top: -24%;
        left: 0;
    }

    .p-about__icon--bottom {
        right: 0;
        bottom: -15%;
    }
}

@media screen and (max-width: 767px) {

    .p-about__icon--top {
        position: absolute;
        top: -10%;
        left: 0;
    }

    .p-about__icon--bottom {
        position: absolute;
        right: 0;
        bottom: -7%;
    }

    .p-about__main-flex {
        flex-direction: column;
        gap: 5rem;
    }

    .p-about__main-flex-logo {
        width: calc(440 / 950 * 100%);
        text-align: center;
    }

    .p-about__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }

    .p-about__item {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .p-about__item img {
        border-top-left-radius: 20px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 20px;
    }

    .p-about__item-text-box {
        padding: 5rem 2.5rem;
        background-color: #fff;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 0;
    }
}

@media screen and (max-width: 576px) {

    .p-about {
        padding: 5rem 0;
    }

    .p-about__icon--top {
        position: absolute;
        top: -5%;
        left: 0;
    }

    .p-about__main-flex-logo {
        width: 100%;
    }

    .p-about__main-flex-text {
        width: 100%;
    }

    .p-about__item {
        display: block;
    }

    .p-about__item img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
    }

    .p-about__item-text-box {
        border-top-right-radius: 0;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .p-about__item-label {
        font-size: 3.6rem;
    }

    .p-about__item-title {
        font-size: 4rem;
    }

    .p-about__item-text {
        font-size: 3.2rem;
    }

}


/* お部屋の紹介
-------------------------------------------------- */

.p-price {
    position: relative;
    padding: 11rem 0;
}

.p-price__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.p-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url("../img/introduction-bg.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.p-price__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-price__title {
    margin-bottom: 8rem;
}

.p-price__list {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.p-price__item-flex {
    display: flex;
    align-items: center;
    gap: 7rem;
    margin-bottom: 3rem;
}

.p-price__item-img-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: calc(810 / 1200 * 100%);
}

.p-price__item-img--main img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: opacity 0.7s ease;
    opacity: 1;
}

.p-price__item-img--main img.is-fading {
    opacity: 0;
}

.p-price__item-img-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.p-price__item-img-list li img {
    border-radius: 8px;
}

.p-price__item-img-list li:first-child img {
    border-bottom-left-radius: 20px;
}

.p-price__item-img-list li:last-child img {
    border-bottom-right-radius: 20px;
}

.p-price__item-contents {
    width: calc(795 / 1200 * 100%);
}

.p-price__item-title {
    margin-bottom: 25px;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.p-price__item-price {
    margin-bottom: 5rem;
    font-size: 4rem;
    font-family: "ADLaM Display", serif;
}

.p-price__item-price span {
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Zen Maru Gothic", serif;
}

.p-price__item-text {
    margin-bottom: 3.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.2em;
}

.p-price__item-label-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.p-price__item-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 9rem;
}

.p-price__item-label h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(110 / 540 * 100%);
    height: 100%;
    padding-inline: 2.5rem;
    color: #fff;
    font-size: 2rem;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
    background-color: #73a20e;
}

.p-price__item-label p {
    display: flex;
    align-items: center;
    width: calc(430 / 540 * 100%);
    height: 100%;
    padding-inline: 20px;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.1em;
    background-color: #fff;
}

@media screen and (max-width: 767px) {

    .p-price__item-flex {
        flex-direction: column;
        gap: 5rem;
        margin-bottom: 3rem;
    }

    .p-price__item-title {
        margin-bottom: 1rem;
    }

    .p-price__item-price {
        margin-bottom: 2rem;
    }

    .p-price__item-label h4 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 576px) {

    .p-price__item-img-box {
        width: 100%;
    }

    .p-price__item-contents {
        width: 100%;
    }

}


/* 最新情報
-------------------------------------------------- */

.p-news {
    position: relative;
    z-index: 10;
    /* padding: 120px 0 350px 0; */
    padding: 12rem 0;
    background-color: #d8dec7;
}

.p-news__bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: soft-light;
    /* opacity: 0.3; */
}

/* .p-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url("../img/info-bg.png");
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
} */

.p-news__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-news__title {
    margin-bottom: 5.5rem;
}

.p-news__container {
    display: flex;
    flex-direction: column;
}

.p-news__item {
    display: flex;
    align-items: center;
    gap: 8rem;
    padding: 2.5rem;
    border-bottom: 1px solid #333;
    transition: opacity 0.3s;
}

.p-news__item:hover {
    opacity: 0.7;
}

.p-news__info {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.p-news__info-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    padding-inline: 2.5rem;
    color: #fff;
    font-size: 2.4rem;
    font-family: "ADLaM Display", serif;
    letter-spacing: 0.08em;
    background-color: #a63268;
}

.p-news__info-label--none {
    opacity: 0;
}

.p-news__info-time {
    font-size: 2.4rem;
    font-family: "ADLaM Display", serif;
    letter-spacing: 0.08em;
}

.p-news__item-title {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {

    .p-news {
        padding: 5rem 0;
    }

    .p-news__bg-img {
        padding-top: 10rem;
    }

    .p-news__info {
        gap: 3rem;
    }

    .p-news__info-label {
        font-size: 2rem;
    }

    .p-news__info-time {
        font-size: 2rem;
    }

    .p-news__item-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {

    .p-news__bg-img {
        padding-top: 15rem;
    }

}

/* よくあるご質問
-------------------------------------------------- */

.p-faq {
    position: relative;
    z-index: 10;
    /* margin-top: -230px; */
    padding: 12rem 0 20rem 0;
    background-color: #d8dec7;
}

.p-faq__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-faq__icon-01 {
    position: absolute;
    top: 17%;
    right: 18%;
    width: 17rem;
    height: 17rem;
}

.p-faq__icon-02 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
}

.p-faq__icon-03 {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    width: 10rem;
    height: 10rem;
}

.p-faq__icon-04 {
    position: absolute;
    right: 0;
    bottom: -5%;
    width: 23rem;
    height: 23rem;
}

.p-faq__title {
    margin-bottom: 8rem;
}

.tab-list {
    position: relative;
    isolation: isolate;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 10rem;
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 280px;
    height: 7.2rem;
    padding-inline: 20px;
    color: #73a20e;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.tab img {
    width: 2.5rem;
    height: 2.5rem;
}

.tab p {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.tab.active {
    background: #73a20e;
    color: #fff;
}

.tab.active img {
    display: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* アコーディオン */

.accordion-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #333;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
    padding: 2.5rem 2.5rem 0 2.5rem;
    border: none;
    cursor: pointer;
}

.accordion-header span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    color: #a63268;
    font-size: 2.4rem;
    font-family: "ADLaM Display", serif;
    letter-spacing: 0.08em;
    background-color: #fff;
    border-radius: 50%;
}

.accordion-header p {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.accordion-body {
    /* display: none;
    height: 0; */
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
    padding: 0 2.5rem 2.5rem 2.5rem;
    transition: height 0.4s ease, padding 0.4s ease;
}

/* .accordion-body.open {
    display: flex;
    padding: 25px;
} */

.accordion-body span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    color: #fff;
    font-size: 2.4rem;
    font-family: "ADLaM Display", serif;
    letter-spacing: 0.08em;
    background-color: #a63268;
    border-radius: 50%;
}

.accordion-body p {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {

    .p-faq {
        padding: 5rem 0 30rem 0;
    }

    .p-faq__icon-01 {
        right: 3%;
        width: 17rem;
        height: 17rem;
    }

    .p-faq__icon-02 {
        bottom: 0;
        left: 0;
        width: 15rem;
        height: 15rem;
    }

    .p-faq__icon-03 {
        bottom: -2%;
        left: 50%;
        transform: translateX(-50%);
        width: 10rem;
        height: 10rem;
    }

    .p-faq__icon-04 {
        right: 0;
        bottom: -3%;
        width: 18rem;
        height: 18rem;
    }

    .tab-list {
        flex-direction: column;
        align-items: center;
        margin-bottom: 5rem;
    }

    .accordion-header span {
        font-size: 2rem;
    }

    .accordion-body span {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {

    .p-faq__icon-01 {
        top: 8%;
    }
}


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

.l-footer {
    padding-top: 8rem;
    background-color: #73a20e;
}

.l-footer__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-bottom: 3.5rem;
}

.l-footer__info {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.l-footer__info-contents {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.l-footer__info-flex {
    display: flex;
    justify-content: center;
    gap: 6.5rem;
}

.l-footer__info-logo {
    width: calc(310 / 1280 * 100%);
    margin-top: -5.5rem;
}

address {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
    font-size: 2.4rem;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
}

address a {
    transition: opacity 0.3s;
}

address a:hover {
    opacity: 0.7;
}

.l-footer__info-tel,
.l-footer__info-mail,
.l-footer__info-address {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

.l-footer__info-tel::before,
.l-footer__info-mail::before,
.l-footer__info-address::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.l-footer__info-tel::before {
    background-image: url("../img/Call.png");
}

.l-footer__info-mail::before {
    background-image: url("../img/Email.png");
}

.l-footer__info-address::before {
    background-image: url("../img/map.png");
}

.l-footer__info-list {
    display: flex;
    gap: 2.5rem;
}

.l-footer__info-item {
    color: #fff;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
}

.l-footer__info-item a {
    transition: opacity 0.3s;
}

.l-footer__info-item a:hover {
    opacity: 0.7;
}

.l-footer__map {
    width: 100%;
    max-width: 628px;
    height: auto;
    aspect-ratio: 628 / 426;
}

.l-footer__map iframe {
    width: 100%;
    height: 100%;
}

.l-footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.4rem;
    color: #fff;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
    background-color: #3b500f;
}

@media screen and (max-width: 1200px) {

    .l-footer__info {
        align-items: center;
        justify-content: center;
    }

    .l-footer__info-flex {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .l-footer__info-list {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {

    .l-footer {
        padding-top: 10rem;
    }

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

    address {
        font-size: 2rem;
    }

}