@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/* メディアクエリ */
/* @media screen and (max-width: 1024px) {} */
/* @media screen and (max-width: 600px){} */
/* @media screen and (max-width: 430px){} */


/*==================
変数
=================*/
:root {
    --main-color: #fff542;
    --pale-color: #fffff1;
    --accent-color: #7A4F26;
    --border-color: #dddddd;
    --text-color: #333;
    --white: #f6f6f6;
}

/*==================
共通設定
=================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    color: var(--text-color);
    font-family: "Zen Maru Gothic", "sans-serif";
    font-size: 16px;
    line-height: 1.75;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

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

.wrapper {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

header .wrapper {
    max-width: 100%;
    margin-bottom: 0;
}

/* h1 a {
    padding: 10px 0;
} */

#mainvisual,
#news,
#about-us,
#topvisual,
#greeting,
#education,
#about,
.shisetsu,
.hoiku,
#program,
.day,
.year,
.fullyear,
#question {
    margin-bottom: 9rem;
}

#news,
#about-us,
#greeting,
#education,
#about,
#program,
#question {
    padding: 0 2.5rem;
}

.section-title {
    display: block;
    display: inline-block;
    margin-bottom: 5.5rem;
    border-bottom: 5px dotted var(--main-color);
    font-weight: 600;
    font-size: 2rem;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {

    #mainvisual,
    #news,
    #about-us,
    #topvisual,
    #greeting,
    #education,
    #about,
    .shisetsu,
    #about .hoiku,
    .class,
    .enchou,
    #program,
    .day,
    .year,
    .fullyear,
    #question {
        margin-bottom: 4.5rem;
    }

    #news,
    #about-us,
    #greeting,
    #education,
    #about,
    #program,
    #question {
        max-width: 600px;
    }

    .section-title {
        margin-bottom: 3.5rem
    }
}

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

    #news,
    #about-us,
    #greeting,
    #education,
    #about,
    #program,
    #question {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/*==================
ヘッダー
=================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 4px 0; */
}

h1 img {
    display: flex;
    height: 5rem;
    margin-left: 2.5rem;
    padding: 0.5rem 0;
}

header nav ul {
    display: flex;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
}

header li {
    margin-left: 2rem;
}

header li a {
    /*アンダーラインの位置を決めるための基準 */
    position: relative;
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

header li a::after {
    /*親要素であるaタグを基準に位置を指定*/
    position: absolute;
    /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    left: 0;
    /*アンダーラインを各aタグの幅に合わせる*/
    width: 100%;
    /*アンダーラインの高さ（太さ）*/
    height: 2px;
    bottom: -1px;
    /*アンダーラインの色*/
    border-bottom: 3px solid var(--main-color);
    /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    content: '';
    transform: scale(0, 1);
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transform-origin: center top;
    /*変形の時間*/
    transition: transform 0.3s;
}

a:hover::after {
    /*ホバー後、x軸方向に1（相対値）伸長*/
    transform: scale(1, 1);
}

header li a:hover {
    opacity: 0.7;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    h1 img {
        margin-left: 1rem;
    }
}

/*==================
ハンバーガーメニュー
=================*/
.site-header-navbtn {
    display: none;
    position: fixed;
    z-index: 1;
    /* top: 10px; */
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
}

.site-header-navbtn span,
.site-header-navbtn::before,
.site-header-navbtn::after {
    display: block;
    position: absolute;
    /*3本線作成*/
    top: 50%;
    left: 5px;
    width: 1.875rem;
    height: 1px;
    background-color: var(--text-color);
    transition: transform .4s;
}

.site-header-navbtn::before,
.site-header-navbtn::after {
    content: '';
}

.site-header-navbtn::before {
    transform: translateY(-8px);
}

.site-header-navbtn::after {
    transform: translateY(8px);
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .site-header-navbtn {
        display: block;
    }

    /* ドロワーメニュー */
    .site-header-nav {
        display: inline;
        /*画面固定*/
        position: fixed;
        top: 0;
        /*表示位置をスクリーンの左上に合わせる*/
        left: 0;
        /*幅と高さをスクリーンサイズに合わせる*/
        width: 100%;
        height: 100%;
        background-color: rgba(250, 250, 250, 9);
        /*要素の幅の分左へ移動→スクリーンから外れ非表示に*/
        transform: translateX(-100%);
        transition: transform .6s;
    }

    body.is-nav-open .site-header-nav {
        transform: translateX(0);
    }

    .site-header-nav ul {
        /*display:flexを生かし、レイアウトの方向をタテに変更*/
        flex-direction: column;
        /*高さを親要素navと同じにしてスクリーンの高さに合わせる*/
        height: 100%;
        padding: 0;
        /*垂直方向中央に寄せる設定*/
        justify-content: center;
        /*テキスト中央揃え*/
        text-align: center;
    }

    .site-header-nav ul li a {
        display: inline-block;
        font-size: 1.5rem;
    }

    .site-header-nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    header ul {
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        text-align: center;
    }

    header ul li {
        margin-left: 0px;
    }

    header ul li:hover {
        opacity: 0.7;
    }

    /*ボタンを×にする*/
    body.is-nav-open .site-header-navbtn span {
        transform: scaleX(0);
    }

    body.is-nav-open .site-header-navbtn::before {
        /*元の中央位置に戻す*/
        transform: translateY(0) rotate(45deg);
    }

    body.is-nav-open .site-header-navbtn::after {
        /*元の中央位置に戻す*/
        transform: translateY(0) rotate(-45deg);
    }
}

/*==================
メインビジュアル
=================*/
#mainvisual {
    position: relative;
}

#mainvisual img {
    display: block;
    width: 100%;
    height: 41rem;
    /* はみ出た部分はトリミング */
    object-fit: cover;
}

#mainvisual .main-title {
    position: absolute;
    top: 75%;
    margin-left: 2.5rem;
    background-color: rgb(255, 255, 255, 0.8);
    /* text-shadow: 1px 1px 1px var(--text-color); */
    color: var(--main-color);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.3;
    -webkit-text-stroke: 1px var(--text-color);
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    #mainvisual img {
        height: 25.5rem;
    }

    #mainvisual .main-title {
        margin-left: 1rem;
        font-size: 2rem;
    }
}

@media screen and (max-width:430px) {
    #mainvisual img {
        height: 20.5rem;
    }

    #mainvisual .main-title {
        top: 75%;
        font-size: 1.5rem;
        -webkit-text-stroke: 0.5px var(--text-color);
    }
}

/*==================
お知らせ
=================*/
.news-text {
    width: 100%;
    margin: 0 auto;
}

.news-text dl {
    display: flex;
    margin: 2rem 0;
    font-size: 1.125rem;
}

.news-text time {
    margin: 0 1.5rem 0 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.news-text dt {
    display: inline-block;
    margin-right: 4rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.875rem;
}

.news-text dd {
    font-weight: 500;
}

.news-text a {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border-color);
    text-decoration: none;
    transition: background 0.15s ease-out;
}

.news-text a:last-child {
    border-bottom: 1px solid var(--border-color);
}

.news-text a:hover {
    background: var(--white);
}

.news-btn {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    width: 12rem;
    height: 3rem;
    margin: 5rem auto 0 auto;
    border: var(--main-color) 1px solid;
    border-radius: 100vw;
    background: var(--main-color);
    color: var(--text-color);
    font-weight: bold;
    line-height: 100%;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer
        /* padding-right: 10px; */
        /* transition: color 0.15s ease-out, background 0.15s ease-out; */
}

.news-btn::after {
    content: "＞";
    color: var(--text-color);
}

.news-btn a {
    margin-right: 1rem;
}

.news-btn:hover {
    border: var(--accent-color) 1px solid;
    background: var(--accent-color);
    color: var(--white);
    /* opacity: 0.6; */
    transform: scale(1.1, 1.1);
    transition: 0.5s;
}

.news-btn:hover:after {
    color: var(--white);
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .news-text time {
        margin: 0 1rem
    }

    .news-text dt {
        margin-right: 2rem;
    }
}

@media screen and (max-width:430px) {
    .news-text dl {
        display: block;
        margin: 1rem 0;
    }

    .news-text dd {
        margin-left: 1.5rem;
        padding-top: 0.5rem;
        text-align: left;
    }

    .news-btn {
        height: 2.5rem;
        margin-top: 3.5rem
    }
}

/*==================
当園について
=================*/
.about-us-list {
    display: flex;
    /* justify-content: space-between; */
    margin: auto;
    column-gap: 1rem;
}

.about-us-list img {
    width: 100%;
    height: auto;
}

.about-us-list .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    height: 2rem;
    margin: 2.5rem auto 0 auto;
    border: var(--main-color) 1px solid;
    border-radius: 100vw;
    background: var(--main-color);
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer
}

.about-us-list .btn::after {
    content: "＞";
    color: var(--text-color);
}

.about-us-list .btn a {
    margin-right: 1.125rem;
}

.about-us-list .btn:hover {
    border: var(--white) 1px solid;
    background: var(--accent-color);
    color: var(--white);
    /* opacity: 0.6; */
    transform: scale(1.1, 1.1);
    transition: 0.5s;
}

.about-us-list .btn:hover:after {
    color: var(--white);
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .about-us-list {
        display: block;
    }

    .about-us-list li:not(:last-child) {
        margin-bottom: 5rem;
    }

    .about-us-list .btn {
        width: 80%;
        margin-top: 2rem;
    }
}

@media screen and (max-width:430px) {
    .about-us-list .btn {
        font-size: 1rem;
    }
}

/*==================
下層ページのトップタイトル
=================*/
#topvisual {
    position: relative;
}

#topvisual img {
    display: block;
    width: 100%;
    height: 25.5rem;
    /* はみ出た部分はトリミング */
    object-fit: cover;
}

.top-title {
    position: absolute;
    top: 75%;
    left: 2.5rem;
    background-color: rgb(246, 246, 246, 0.8);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 2.5rem;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    #topvisual img {
        height: 20.5rem;
    }

    .top-title {
        left: 1rem;
        font-size: 2rem;
    }
}

@media screen and (max-width:430px) {
    #topvisual img {
        height: 13rem;
    }

    .top-title {
        font-size: 1.5rem;
    }
}

/*==================
ごあいさつ
=================*/
.greeting-title {
    display: block;
    display: inline-block;
    margin-bottom: 3.5rem;
    border-bottom: 5px dotted var(--main-color);
    font-weight: 600;
    font-size: 2.5rem;
}

.greeting-text {
    width: 100%;
    font-size: 1.5rem;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .greeting-title {
        font-size: 2rem;
    }

    .greeting-text {
        font-size: 1.25rem;
        text-align: left;
    }

    .greeting-text br {
        display: none;
    }
}

@media screen and (max-width:430px) {
    .greeting-title {
        font-size: 1.875rem;
    }

    .greeting-text {
        font-size: 1.125rem
    }
}

/*==================
理念・方針
=================*/
.education-container {
    display: grid;
    justify-content: space-around;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
}

.education-title {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    width: 70%;
    height: 2.5rem;
    margin: 0 auto 1.5rem auto;
    border: var(--accent-color) 1px solid;
    border-radius: 100vw;
    background: var(--accent-color);
    color: var(--white);
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
}

.education-box img {
    width: 80%;
    height: auto;
    margin-bottom: 2.5rem;
}

.education-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .education-container {
        display: block;
    }

    .education-box:last-child {
        margin-top: 4rem;
    }

    .education-title {
        width: 90%
    }

    .education-box img {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .education-text {
        text-align: left;
    }

    .education-text br {
        display: none;
    }
}

/*==================
施設概要
=================*/
.shisetsu-table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
    letter-spacing: 1px;
}

.shisetsu th {
    width: 20%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    background: var(--pale-color);
    font-weight: bold;
    text-align: center;
    line-height: 3;
}

.shisetsu td {
    width: 80%;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
    border: 1px solid var(--border-color);
    line-height: 1.3;
    text-align: left;
    vertical-align: middle;
}

.span-br {
    display: inline-block;
}

.hoiku {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: auto auto 9rem auto;
    column-gap: 3.75rem;
}

.class,
.class-table {
    width: 100%;
}

.class th {
    width: 33%;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
    background: var(--pale-color);
    font-weight: bold;
    text-align: center;
}

.class td {
    width: 33%;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
}

.enchou-text {
    margin-bottom: 0.5rem;
}

#about .access .map iframe {
    width: 90%;
    height: 18.75rem;
    margin: auto;
}

.access p {
    margin-top: 1.5rem;
    font-weight: 400;
    font-size: 1.125rem;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .shisetsu-table {
        width: 100%;
    }

    .shisetsu td {
        padding-left: 1rem;
    }

    .hoiku {
        display: block;
        width: 100%;
    }

    #about .access .map iframe {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .shisetsu-table {
        border: none
    }

    .shisetsu th {
        width: 100%;
        padding: 0.25rem;
        background: #fffaa7;
        font-weight: bold;
        line-height: 1;
        text-align: center;
    }

    .shisetsu td {
        width: 100%;
        padding: 1rem;
        text-align: left;
        line-height: 1.3;
        vertical-align: middle;
    }

    .shisetsu th,
    .shisetsu td {
        display: block;
        border: none;
    }
}

/*==================
1日の流れ・行事
=================*/
.day-container {
    display: grid;
    justify-content: space-around;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
}

.day-title {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding-left: 1.8rem;
    padding-right: 1.7rem;
    background-image: url(../img/himawari.png), url(../img/himawari.png);
    background-position: left 0.9rem, right 0.9rem;
    background-size: 1.45rem;
    background-repeat: no-repeat, no-repeat;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
}

.day-title span {
    font-size: 27px;
}

.day-table {
    width: 100%;
}

.day-table th {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    background: var(--pale-color);
    letter-spacing: 1px;
    text-align: center;
}

.day-table td {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

.year-box {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem 0;
    background-color: var(--pale-color);
}

.year-box ul {
    width: 48%;
}

.year-box li {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    letter-spacing: 0;
    /* line-height: 2.7rem; */
}

.year-box .month {
    display: inline-block;
    width: 3rem;
    height: 2rem;
    margin: 0 1.5rem 0 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 2rem;
}

.year-box .month+span {
    display: inline-block;
    /* padding-left: 1rem; */
    flex: 1;
    text-align: left;
}

.fullyear-container {
    display: flex;
    justify-content: space-between;
}

.fullyear-box {
    width: 48%;
}

.fullyear-box .list {
    margin-left: 2rem;
}

.fullyear-box .list li {
    display: flex;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    background-image: url(../img/himawari.png);
    background-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: left 0.3rem;
}

.fullyear-box .coment {
    margin: 3rem 0 0 2rem;
    text-align: left;
}

.fullyear-container img {
    width: 48%;
    height: auto;
}

/* メディアクエリ */
@media screen and (max-width: 1024px) {
    .day-container {
        display: block;
    }

    .day-babybox {
        margin-bottom: 3rem;
    }

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

    .year-box ul {
        width: 100%;
    }

    .fullyear-container {
        display: block;
    }

    .fullyear-box {
        display: flex;
        width: 100%;
        margin-bottom: 2rem;
        column-gap: 2rem;
    }

    .fullyear-box .list {
        width: 100%;
        margin-left: 0
    }

    .fullyear-box .coment {
        width: 100%;
        margin: 0;
    }

    .fullyear-container img {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .fullyear-box {
        display: block;
    }

    .fullyear-box .coment {
        padding-top: 1rem;
    }
}

@media screen and (max-width: 430px) {
    .day-title {
        margin-bottom: 1rem;
        font-size: 1.25rem;
        background-position: left 0.6rem, right 0.6rem;
    }

    .day-title span {
        font-size: 22px;
    }

    .year-box .month {
        margin: 0 1rem 0 0;
    }
}

/*=======================
  よくある質問
  =======================*/
#question .coment {
    margin-bottom: 3rem;
}

.accordion-container {
    width: 80%;
    margin: 0 auto;
    text-align: left;
}

.accordion-box {
    margin-bottom: 2rem;
}

.accordion-container .accordion-box .question-container {
    position: relative;
    padding: 1.5rem 4rem 1.5rem 2rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: .2s;
}

.accordion-container .accordion-box .question-container {
    background-color: var(--pale-color);
}

.accordion-container .accordion-box .question-container .toggle {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -10px;
}

.accordion-container .accordion-box .question-container .toggle:before,
.accordion-container .accordion-box .question-container .toggle:after {
    position: absolute;
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
    content: "";
}

.accordion-container .accordion-box .question-container .toggle:before {
    top: 0;
    right: 0;
    bottom: 0;
    width: 1.25rem;
    height: 0;
    border-top: 3px solid var(--accent-color);
}

.accordion-container .accordion-box .question-container .toggle:after {
    top: 0;
    right: 9px;
    bottom: 0;
    width: 0;
    height: 1.25rem;
    border-left: 3px solid var(--accent-color);
    transition: .3s;
}

.accordion-container .accordion-box .question-container.open .toggle:after {
    height: 0;
}

.accordion-container .accordion-box .answer-container {
    display: none;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    box-sizing: border-box;
}

.question-box {
    display: block;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.question-box::before {
    position: absolute;
    left: 0;
    color: #424bff;
    font-weight: bold;
    content: "Q．";
}

.answer-box {
    display: block;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.answer-box::before {
    position: absolute;
    left: 0;
    color: #ff4242;
    font-weight: bold;
    content: "A．";
}

.goods-list {
    margin-top: 1rem;
}

.goods-list li {
    list-style: disc;
}

@media screen and (max-width:1024px) {
    #question .coment {
        text-align: left;
    }

    .accordion-container {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    #question .coment {
        margin-bottom: 2rem;
    }

    .accordion-box {
        margin-bottom: 1rem;
    }

    .accordion-container .accordion-box .question-container {
        padding: 1rem 4rem 1rem 1.5rem;
    }

    .accordion-container .accordion-box .answer-container {
        padding: 1rem 1.5rem;
    }
}

/*==================
トップへ戻るボタン
=================*/
#page-top {
    position: fixed;
    z-index: 1;
    width: 70px;
    height: 70px;
    right: 1rem;
    bottom: 1rem;
    background-repeat: no-repeat;
    object-fit: cover;
    cursor: pointer;
}

#page-top:hover {
    opacity: 0.7;
}

@media screen and (max-width:600px) {
    #page-top {
        display: none !important;
    }
}

/*==================
フッター
=================*/
footer {
    padding: 2.5rem 0 1rem 0;
    background-color: var(--pale-color);
    text-align: center;
}

.footer-container {
    display: grid;
    max-width: 60rem;
    grid-template-columns: 1fr 1fr;
    margin: auto;
}

.f-logo img {
    width: 18.75rem
}

.adress {
    display: inline-block;
    margin: 1rem 0;
    font-size: 1.25rem;
}

.adress p {
    text-align: left;
}

.contact {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    width: 18.75rem;
    height: 2.5rem;
    margin: 0 auto;
    background: var(--accent-color);
    border: var(--accent-color) 1px solid;
    border-radius: 100vw;
    color: var(--white);
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    white-space: nowrap;
}

.tel {
    margin: -0.5rem 0 1rem 0;
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.footer-container .map iframe {
    width: 100%;
    height: 290px;
}

.copyright {
    font-size: 13px;
}

/* メディアクエリ */
@media screen and (max-width:1024px) {
    .footer-container {
        display: block;
    }

    .footer-container .map {
        display: none;
    }
}

@media screen and (max-width:600px) {
    footer {
        padding-bottom: 3.5rem;
    }
}

@media screen and (max-width:430px) {
    footer {
        padding-bottom: 2.5rem;
    }

    .f-logo img {
        width: 15rem
    }

    .adress {
        margin-bottom: 0.5rem;
        font-size: 1.125rem;
    }

    .contact {
        width: 15rem;
        height: 2rem;
        font-size: 1.125rem;
    }

    .tel {
        font-size: 2rem;
    }
}

/*==================
サイド・フッターボタン切替
=================*/
.side-btns {
    position: fixed;
    right: -6px;
    bottom: 12.5rem;
    z-index: 5;
    width: 5.5rem;
}

.side-btns a>img:hover {
    opacity: 0.7;
}

.footer-btns {
    display: flex;
    position: fixed;
    bottom: 0;
}

.footer-btns a>img:hover {
    opacity: 0.7;
}

/* メディアクエリ */
@media screen and (max-width:600px) {
    .side-btns {
        display: none;
    }
}

@media screen and (min-width:601px) {
    .footer-btns {
        display: none;
    }
}