@charset "utf-8";

:root {
    --primary: #565a57;
    --dark: #515551;
    --body: #888;
    --bs-green: #858e91;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #d7d6d6;
    background-color: #fff;
}

/* PC用のスタイル */
.pcbr {
    display: block;
    /* 改行する */
}

.spbr {
    display: none;
    /* 改行しない */
}

@media (max-width: 780px) {
    .pcbr {
        display: none;
        /* 改行しない */
    }

    .spbr {
        display: block;
        /* 改行する */
    }
}




/* ====================
header container
==================== */
/* ヘッダーの共通スタイル */
/* ヘッダーの共通スタイル */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header-scrolled {
    background-color: rgba(51, 51, 51, 0.8);
}

.container {
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* ハンバーガーメニューのオープンボタン */
.open-button {
    display: block;
    cursor: pointer;
    z-index: 10;
}

/* ハンバーガーメニューのクローズボタン */
.close-button {
    display: none;
    cursor: pointer;
    color: #fff;
    z-index: 20;
}

/* ナビゲーションメニューのスタイル */
.container-nav__list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 0.6);
    width: 100%;
    height: calc(100% - 60px);
    padding-top: 60px;
    z-index: 5;
    transition: max-height 0.5s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

/* メニュー表示時 */
.container-nav__list.show {
    display: flex;
    max-height: 600px;
}

/* ナビゲーション項目 */
.container-nav__list li {
    margin-left: 60px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
}

.container-nav__list li:hover {
    color: #a7a1a1;
}

/* 780px以上のスクリーンサイズのスタイル */
@media (min-width: 780px) {

    .open-button,
    .close-button {
        display: none;
        /* ハンバーガーメニューのボタンは非表示 */
    }

    /* ナビゲーションメニューの横並びと右寄せ */
    .container-nav__list {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin-left: auto;
        position: static;
        width: auto;
        height: auto;
        max-height: none;
        background-color: transparent;
        padding-top: 0;
    }

    .container-nav__list li {
        margin-left: 20px;
        color: #fff;
    }

    .container-nav__list li:hover {
        color: #a7a1a1;
    }
}

/* 780px以下のスクリーンサイズのスタイル */
@media (max-width: 780px) {
    .container-nav__list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(51, 51, 51, 0.6);
        width: 100%;
        height: calc(100% - 60px);
        padding-top: 120px;
        z-index: 5;
        transition: max-height 0.5s ease-in-out;
        max-height: 0;
        overflow: hidden;
    }

    .container-nav__list li {
        text-align: left;
        font-size: 20px;
        font-weight: 700;
        line-height: 2;
    }

    .container-nav__list.show {
        display: flex;
        max-height: 500px;
    }

    /* メニューが開かれたときのスタイル */
    .container-nav__list.show~.open-button {
        display: none;
    }

    .container-nav__list.show~.close-button {
        display: block;
    }

    .open-button {
        display: block;
    }

    .close-button {
        display: none;
    }
}

.section-top {
    background-image: url(../images/g-zaok1@2x.jpg);
    background-position: center bottom;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    /* ここでimgの上を下から画像が上がってくる設定に */
    /* ... */
    position: relative;
    /* 子要素に対して相対位置を指定 */
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header nav {
    background-color: transparent;
    /* 初期状態 */
}

.show-menu-bg nav {
    background-color: #333;
    /* メニュー背景色 */
}

.top_filter {
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (max-width: 780px) {
    .section-top {
        background-image: url(../images/g-zaok1@2x.jpg);
        background-attachment: initial;
        /* ここでimgの上を下から画像が上がってくる設定に */
    }
}

/* ====================
section-top
==================== */

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.top_heading {
    font-size: 22px;
    margin-bottom: 40px;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 24px;
}

.top_text {
    font-size: 18px;
    margin-bottom: 60px;
}

.book-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.book-massage {
    font-size: 18px;
    margin-bottom: 40px;
}

/* ボタンスタイル */
.top_btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* ボタン同士の間隔 */
    letter-spacing: 2px;
}

.btn.booklead-booking {
    display: flex;
    align-items: center;
    /* 垂直方向の中央揃え */
    justify-content: center;
    /* 水平方向の中央揃え */
    width: 200px;
    /* 固定幅 */
    height: 60px;
    /* 固定高さ */
    border-radius: 6px;
    text-align: center;
    background-color: transparent;
    /* 初期は背景を透明に */
    color: #fff;
    /* フォントは白 */
    border: 1px solid #fff;
    /* 枠は白 */
    cursor: pointer;
    transition: background-color .6s, color .6s, border-color .6s;
    /* スムーズな変化 */
}

/* ホバー時のスタイル */
.btn.booklead-booking:hover {
    background-color: rgba(255, 255, 255, 0.862);
    /* 背景色を薄くする */
    color: #565a57;
    /* フォントは白のまま */
    border-color: #565a57;
    /* 枠も白のまま */
}

/* 780px以下のスクリーンサイズのスタイル */
@media (max-width: 780px) {
    .top_heading {
        font-size: 18px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    h1 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .book-massage {
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .top_btn {
        display: flex;
        /* Flexboxを有効にする */
        flex-direction: column;
        /* 縦方向に並べる */
        align-items: center;
        /* 中央揃え */
        gap: 30px;
        /* ボタン間のスペース（必要に応じて調整） */
    }

    .top_btn .btn {
        width: 200px;
        /* ボタンの幅を300pxに設定（必要に応じて調整） */
        padding: 15px;
        /* ボタン内の余白を調整 */
        text-align: center;
        /* テキストを中央揃え */
        border: 1px solid #fff;
        /* ボタンの枠のスタイルを設定（必要に応じて調整） */
        border-radius: 5px;
        /* ボタンの角を丸くする */
        background-color: transparent;
        /* ボタンの背景色 */
        color: #fff;
        /* ボタンの文字色 */
        transition: background-color 0.3s;
        /* ホバー時のスムーズな変化 */
    }

    .top_btn .btn:hover {
        background-color: rgba(255, 255, 255, 0.862);
        /* ホバー時の背景色 */
    }


}

/* ====================
section-services
==================== */

.section-services {
    max-width: 1240px;
    margin: 0 auto;
    width: 90%;
}

.services_text {
    margin-top: 100px;
    text-align: center;
    color: #565a57;
}

.services_text h6 {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 20px;
}

.services_text p {
    margin-bottom: 18px;
    font-size: 18px;
}

.services_block {
    padding-top: 60px;
    padding-bottom: 120px;
}

.block_row {
    display: flex;
    flex-wrap: wrap;
    /* 複数行を許可 */
    justify-content: space-between;
    /* 各要素を均等に配置 */
    gap: 30px;
    /* カード間のスペース */
}

.card-effect {
    box-shadow: var(--box-shadow);
    background-color: #fff;
    padding: 25px;
    transition: all 0.35s ease;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.iconbox {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-green);
    color: #fff;
    font-size: 32px;
    border-radius: 100px;
    flex: none;

}

.service {
    flex-grow: 1;
    /* カードを均等に拡張 */
    flex-basis: calc(33.333% - 20px);
    /* 3等分しつつ、gapの20pxを考慮 */
    border-radius: 6px 6px 6px 6px;
    color: #515551;
    /* 通常時のフォントカラー */
}

.service::after {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 6px 6px 6px 6px;
}

.service:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.service:hover h5,
.service:hover h2,
.service:hover p {
    color: #fff;
}

.service:hover .iconbox {
    background-color: #fff;
    color: var(--primary);
}

.service:hover::after {
    opacity: 1;
    top: 0;
}

.block_col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 16px;
}

.block_col h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.block_col p {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 16px;
}

.block_col hr {
    border: solid 2px #858e91;
    width: 56px;
}

/* 780px以下のスクリーンサイズのスタイル */
@media (max-width: 780px) {

    .block_row {
        display: flex;
        /* Flexboxを使用 */
        flex-wrap: wrap;
        /* 複数の行にラップする */
        justify-content: space-between;
        /* カードの間を均等に */
    }

    .service {
        flex: 1 1 calc(33.33% - 20px);
        /* デスクトップでは3列に */
        margin: 10px;
        /* カード間のマージン */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* カードに影を追加 */
        border-radius: 8px;
        /* 角を丸くする */
        overflow: hidden;
        /* はみ出した部分を隠す */
        background-color: #fff;
        /* 背景色を白に */
    }

    .feature_text h6 {
        text-align: center;
    }

    .feature_text h1 {
        text-align: center;
    }

    .feature_text p {
        text-align: center;
    }

    .iconbox {
        text-align: center;
        /* アイコンを中央揃え */
        font-size: 40px;
        /* アイコンのサイズを調整 */
    }

    .block_col {
        padding: 10px;
        /* カード内のパディング */
        text-align: center;
        /* テキストを中央揃え */
    }

    .block_row {
        flex-direction: column;
        /* 縦並びにする */
    }

    .block_col h2 {
        text-align: left;
        font-size: 18px;
    }

    .block_col p {
        font-size: 16px;
        text-align: left;

    }

    .service {
        flex: 1 1 100%;
        /* 各カードの幅を100%に設定 */
    }
}



/* ====================
section-Features
==================== */

.section-features {
    margin-bottom: 60px;
    background-color: #F8F9Fa;
}

.features_container {
    max-width: 1240px;
    margin: 0 auto;
    width: 90%;
}

.feature_row {
    display: flex;
    justify-content: flex-start;
    /* 子要素を左揃えにして gap を有効にする */
    align-items: center;
    /* 縦方向も中央に揃える */
    gap: 40px;
    /* 左右の要素の間隔を20pxに */
    padding: 80px 0;
}


.feature-img {
    flex: 1;
    /* 左右を均等な幅にする */
    max-width: 50%;
    /* 左側の画像の最大幅を指定 */
}

.feature-img img {
    width: 100%;
    height: auto;
    display: block;
}

.feature_text {
    flex: 1;
    /* 右側のテキストの幅を画像と同じにする */
    max-width: 50%;
    /* テキスト部分の最大幅も指定 */
    color: #565a57;
}

.feature_text h6 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.feature_text p {
    margin-bottom: 40px;
    font-size: 18px;
}

.feature_text h5 {
    font-weight: 700;
}

.feature_message {
    display: flex;
    justify-content: flex-start;
    /* 子要素を左揃えにして gap を有効にする */
    align-items: center;
    /* 縦方向も中央に揃える */
    gap: 30px;
    /* 左右の要素の間隔を30pxに */
    margin-bottom: 16px;
    line-height: 1.8;
}


/* 780px以下のスクリーンサイズのスタイル */
@media (max-width: 780px) {
    .feature_row {
        flex-direction: column;
        /* 横並びから縦並びに変更 */
        justify-content: center;
        align-items: flex-start;
        /* 縦並びで要素を中央揃えにする */
        gap: 20px;
        /* 上下の要素の間隔を調整 */
        padding: 60px 0 40px;

    }

    .feature-img,
    .feature_text {
        max-width: 100%;
        /* 画像とテキストの最大幅を100%にする */
    }

    .feature_text {
        text-align: left;
        padding-top: 20px;
        /* テキストの上に余白を追加 */
    }

    .feature_message p {
        text-align: left;
    }

    .feature-img img {
        width: 100%;
        /* 画像の横幅を100%に */
        height: auto;
        /* 画像の高さを自動調整 */
    }
}

/* ====================
section-map
==================== */

.section-map {
    padding-top: 80px;
    padding-bottom: 100px;
}

.map_container {
    max-width: 1240px;
    margin: 0 auto;
    width: 90%;
    color: #565a57;
}

.map_text {
    text-align: center;
}

.map_text h6 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 20px;
}

.map_text p {
    margin-bottom: 40px;
    font-size: 18px;
}



.acces-wapper {
    border: 1px solid var(--primary-black);
    /* 黒の枠線 */
    margin-bottom: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.google-title {
    margin: 16px 0;
    font-size: 30px;
    font-weight: 700;
}

.acces-wapper p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-access__map {
    padding: 0 0 20px;
    height: 530px;
}

.section-access__map iframe {
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 6px 6px;
}

.route-wrapper {
    padding: 80px 0;
}

.route-title {
    margin-bottom: 60px;
    font-weight: 700;

}

.section-route__container-imgright {
    max-width: 1240px;
    /* 最大幅を設定 */
    width: 100%;
    /* 幅を100%に設定 */
    height: auto;
    /* 高さは自動調整 */
    margin: 0 auto;
    /* 中央揃え */
}

.section-route__container-imgright img {
    width: 100%;
    /* 画像がコンテナ内で収まるように */
    height: auto;
    /* 高さは画像のアスペクト比に基づく */
}

.route__pic p {
    border: 2px solid #858e91;
    /* 2px幅の黒い枠線を追加 */
    padding: 20px;
    /* 内側の余白を追加 */
    margin-top: 60px;
    /* 上部に余白を追加 */
    border-radius: 6px 6px 6px 6px;
    /* 角を四角くするために丸みをゼロに設定 */
    line-height: 1.8;
    font-size: 18px;
}

@media (max-width: 780px) {
    .section-map {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .route-wrapper {
        padding: 80px 0 40px;
    }
}

/* ====================
section-gourmet
==================== */

.section-gourmet {
    background-color: #F8F9Fa;
    padding: 100px 0 80px;
    /* 追加の上下パディングを設定 */
}

.gourmet_container {
    max-width: 1240px;
    margin: 0 auto;
    width: 90%;
}

.gourmet-text {
    text-align: center;
    color: #565a57;
}

.gourmet-text h6 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 20px;
}

.gourmet-text p {
    margin-bottom: 60px;
    font-size: 18px;
}


.team-gourmet_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1240px;
    /* 最大横幅を1240pxに制限 */
    margin: 0 auto;
    /* コンテナを中央揃え */
    align-items: stretch;
    /* 高さを揃える */
    margin-bottom: 0;
    /* 下に100pxのスペースを追加 */
}

.team-gourmet_item {
    width: calc(25% - 20px);
    /* 4つ並べるために幅を25%に調整 */
    box-sizing: border-box;
    text-align: center;
    color: #565a57;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 通常時の影 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* ホバー時の変化にアニメーションを追加 */
    border-radius: 6px 6px 6px 6px;
}

.team-gourmet_item:hover {
    transform: scale(0.95);
    /* ホバー時に縮小 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* ホバー時に影を強調 */
}


.team-gourmet_item img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
}

.team-gourmet_item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
}

.team-gourmet_item p {
    font-size: 18px;
    margin: 14px 0 24px;
}

/* アイコンの中央揃え */
.social-icons {
    display: flex;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    gap: 10px;
    /* アイコン同士のスペース */
}

.social-icons a {
    display: inline-block;
    background-color: #565a57;
    /* 背景色を指定 */
    color: #fff;
    /* アイコンの色を白に */
    width: 40px;
    /* 丸のサイズ */
    height: 40px;
    border-radius: 50%;
    /* 丸い形に */
    display: flex;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    text-decoration: none;
    /* 下線をなくす */
    transition: background-color 0.3s, color 0.3s;
    /* 色の変更にスムーズなアニメーションを追加 */
}

/* ホバー時の色反転 */
.social-icons a:hover {
    background-color: #fff;
    /* 背景色を白に変更 */
    color: #565a57;
    /* アイコンの色を黒に変更 */
    border: 2px solid #565a57;
    /* 黒い枠線を表示 */

}

/* 通常状態: 4列 */
.team-gourmet_item {
    width: calc(25% - 20px);
    /* 4列の配置（25%の幅からギャップ分を引く） */
}

/* 900px以下のスクリーンサイズでは3列 */
@media screen and (max-width: 900px) {
    .team-gourmet_item {
        width: calc(33.33% - 20px);
        /* 3列の配置（33.33%の幅からギャップ分を引く） */
    }
}

/* 600px以下のスクリーンサイズでは2列 */
@media screen and (max-width: 600px) {
    .team-gourmet_item {
        width: calc(50% - 20px);
        /* 2列の配置（50%の幅からギャップ分を引く） */
    }
}

/* 480px以下のスクリーンサイズでは1列 */
@media screen and (max-width: 480px) {
    .team-gourmet_item {
        width: 100%;
        /* 1列の配置（幅を100%に設定） */
    }
}


/* fuwatto */

.fade {
    opacity: 0;
    transform: translateY(160px);
    transition: opacity 1.5s, transform 1s;
}

.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

/* ====================
section-zao
==================== */

.section-zao {
    background-color: #F8F9Fa;
    padding: 100px 0 120px;
    /* 追加の上下パディングを設定 */
}

.zao-container {
    max-width: 1240px;
    margin: 0 auto;
    width: 90%;
}

.zao-text {
    text-align: center;
    color: #565a57;
}

.zao-text h6 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.zao-text p {
    margin-bottom: 40px;
    font-size: 18px;
}

.zao-member_container {
    display: flex;
    justify-content: space-between;
    /* アイテムの間隔を均等にする */
    flex-wrap: wrap;
    /* 横に並ぶが、空きがあれば次の行に折り返す */
    gap: 20px;
    /* アイテムの間隔 */
    margin: 0 auto;
    /* コンテナを中央揃え */
    margin-bottom: 0;
    /* 下に100pxのスペースを追加 */
}

/* team-zao_item の幅を決めずに均等に配置 */
.team-zao_item {
    flex: 1;
    /* アイテムが均等に分配される */
    min-width: 300px;
    /* 最小幅を設定（必要に応じて調整） */
    box-sizing: border-box;
    text-align: center;
    color: #565a57;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 通常時の影 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* ホバー時の変化にアニメーションを追加 */
    border-radius: 6px;
    /* 角を丸く */
}

.team-zao_item:hover {
    transform: scale(0.95);
    /* ホバー時に縮小 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* ホバー時に影を強調 */
}

.team-zao_item img {
    width: 100%;
    /* 画像の高さを358pxに変更 */
    object-fit: cover;
    /* 画像が指定のサイズに収まるように調整 */
}

.team-zao_item h5 {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin-top: 24px;
}

.team-zao_item p {
    font-size: 18px;
    text-align: left;
    margin: 14px 0 24px;
    line-height: 1.8;
}

/* ====================
footer
==================== */
footer {
    background-color: rgba(51, 51, 51, 0.8);
    /* footer全体に背景色を設定 */
    padding: 40px 0;
    /* 必要に応じて上下のパディングを調整 */
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.footer-rogo,
.footer-yoyaku,
.footer-access {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-rogo {
    font-size: 24px;
    font-weight: 700;
}

.footer-rogo h4:hover {
    color: #a7a1a1;
    transition: color 0.3s ease;
}

.footer-yoyaku h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}


.footer-access h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.list-unstyled {
    font-size: 16px;
    line-height: 1.8;
}

/* リンク全体にホバー効果を適用 */
.list-unstyled li a:hover {
    color: #a7a1a1;
    /* ホバー時に変わる色 */
}

/* アイコンの色も同時に変わるように */
.list-unstyled li a:hover i {
    color: #a7a1a1;
    /* アイコンの色も同じに設定 */
}

.list-unstyled li a i {
    margin-left: 5px;
    vertical-align: middle;
    /* アイコンを文字の中央に揃える */
}

.return_top {
    background-color: #fff;
    /* ボタンの背景色を白に */
    color: #333;
    /* ボタンの文字色を濃いグレーに */
    text-decoration: none;
    /* リンクの下線を消す */
    position: fixed;
    /* スクロールしても位置を固定 */
    right: 30px;
    /* 画面の右端から30pxの位置 */
    bottom: 30px;
    /* 画面の下端から30pxの位置 */
    width: 50px;
    /* ボタンの幅を50pxに */
    height: 50px;
    /* ボタンの高さを50pxに */
    border-radius: 50%;
    /* ボタンを丸にする */
    display: grid;
    /* ボタン内のコンテンツをグリッドレイアウト */
    justify-content: center;
    /* 水平方向に中央寄せ */
    align-items: center;
    /* 垂直方向に中央寄せ */
    transition: .4s;
    /* スムーズなトランジションを設定 */
    opacity: 0;
    /* 初期状態は透明 */
    visibility: hidden;
    /* 初期状態は非表示 */
    box-sizing: border-box;
    /* パディングとボーダーを含めたサイズを指定 */
    border-radius: 50%;
    z-index: 999;
    /* ボタンを最前面に */
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.return_top.active {
    opacity: 1;
    /* アクティブなときは不透明に */
    visibility: visible;
    /* アクティブなときは表示 */
}

.return_top i {
    font-size: 30px;
    /* アイコンのサイズを30pxに */
}


.footer-copy {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    width: 100%;
    background-color: transparent;
    /* ここを透明にして濃い背景色を無くす */
    border: none;
}