/** @format */

@charset "UTF-8";

:root {
    --base-color: #3e2600;
    --base-color-rgb: 0, 56, 188;
    --text-color: #222;
    --slide-index: 1;
    --menu-index: 2;
    --hamburger-index: 3;
    --button-start: #3e3000;
    --button-end: #6a4e0d;
    --bg-start: #f2e2c7;
    --bg-end: #fdfaf7;
}
:root {
    --font-gothic: "Noto Sans Japanese", "YuGothic", "游ゴシック",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    --font-mincho: "EB Garamond", "Zen Old Mincho", "YuMincho", "Yu Mincho",
        serif;
    --font-marugothic: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
        "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

* {
    word-break: break-all;
}
body {
    color: var(--text-color);
    font-family: var(--font-gothic);
    letter-spacing: 0.05em;
    font-size: 13px;
    line-height: 1.875;
}

body.is-active {
    overflow: hidden;
}
a {
    color: var(--base-color);
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.article-area a[target="_blank"]::after,
.blog ul a[target="_blank"]::after,
.news ul a[target="_blank"]::after,
.editorArea a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 13px;
    margin: 0 4px 4px 4px;
    background-image: url("../../images/254/icon-external-link.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

img,
iframe {
    max-width: 100%;
}

table {
    border-collapse: collapse;
}

.editorArea th,
.profile-info th,
.access-info th,
.contact-info th,
.editorArea td,
.profile-info td,
.access-info td,
.contact-info td {
    border: 1px #ccc solid;
}
.editorArea table,
.profile-info table,
.access-info table,
.contact-info table {
    margin: 2em 0;
}

.editorArea th,
.profile-info th,
.access-info th,
.contact-info th,
.editorArea td,
.profile-info td,
.access-info td,
.contact-info td {
    padding: 0.8em;
}

.editorArea th,
.profile-info th,
.access-info th,
.contact-info th {
    color: #fff;
    background-color: var(--base-color);
}

/*ヘッダー*/
header {
    padding: 0 20px;
}
.head-navi__wrapper {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.site-title {
    font-size: 18px;
    line-height: 1.3;
    flex: 1;
}
.site-title a {
    color: var(--text-color);
    text-decoration: none;
}

.site-title a:hover {
    opacity: 0.8;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;

    z-index: var(--hamburger-index);
    position: inherit;
    padding-top: 3px;
}

.hamburger-menu__line,
.hamburger-menu::before,
.hamburger-menu::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--base-color);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-menu__line.is-active {
    opacity: 0;
}

.hamburger-menu.is-active::before {
    background-color: #fff;
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.is-active::after {
    background-color: #fff;
    transform: translateY(-10px) rotate(-45deg);
}

.head-navi {
    display: none;
}

.global-navi__wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    z-index: var(--menu-index);
    background-color: var(--base-color);
    padding: 80px 40px 30px;
    transition: right 0.3s ease;
    box-sizing: border-box;
    height: 100vh;
    overflow-y: auto; /* 内部のみスクロール */
}

.global-navi__wrapper.is-active {
    right: 0;
}

.global-navi__parent {
    list-style: none;
    margin: 0;
    padding: 0 0 25px 0;
}

.global-navi__parent--border {
    border-top: 1px solid #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.global-navi__child {
    list-style: none;
    padding: 0 0 0 20px;
}

.global-navi__link,
.global-navi__blog,
.global-navi__reservation,
.global-navi__sales {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 6px 0;
    display: inline-block;
}

.global-navi__link--child {
    font-size: 14px;
    padding: 4px 0;
    display: inline-block;
    z-index: var(--menu-index);
    color: #fff;
    text-decoration: none;
}

.global-navi-sns {
    list-style: none;
    padding: 29px 20px 0;
    margin: -20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.global-navi-qrcode {
    text-align: center;
    padding-top: 20px;
}

.global-navi-qrcode img {
    background-color: #fff;
    padding: 10px;
}

/*スライド画像*/
.slide-image {
    position: relative;
}
.slide-image.has-slide-text {
    margin-bottom: 80px;
}
.slide-image__visual {
    line-height: 0;
}
.slide-image__visual-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.slide-image__visual-list li {
    position: relative;
    height: calc(100vw * 5 / 12);
}
.slide-image__visual img {
    margin: 0;
    width: 100%;
    position: absolute;
}
.slide-image__text {
    position: absolute;
    bottom: -50px;
    z-index: var(--slide-index);
}
.slide-image__text p {
    font-family: var(--font-mincho);
    font-size: 18px;
    line-height: 1.3;
    background-color: var(--base-color);
    color: #fff;
    display: table;
    padding: 0.5em 1em;
    margin: 0 0 1px 0;
}

.bx-viewport {
    height: calc(100vw * 5 / 12) !important;
}

.bx-wrapper {
    margin-bottom: 0 !important;
}

.bx-wrapper .bx-pager.bx-default-pager {
    display: none;
    text-align: end;
    position: absolute;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    max-width: 360px;
    width: inherit !important;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #dddddd;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin-right: 5px;
    width: 60px;
    height: 3px;
    cursor: pointer;
    z-index: 2;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: var(--base-color);
}

.main-image {
    margin: 0;
}

.main-image img {
    vertical-align: bottom;
    width: 100%;
    height: calc(100vw * 5 / 12);
    object-fit: cover;
}

/*ホームページ説明文*/
.site-description {
    padding: 1em 20px;
    color: #fff;
    background-image: url("../../images/254/pic-background_001.jpg");
    background-repeat: no-repeat;
    background-position: center top;
}

/*ページタイトル（下層）*/
.page-title {
    margin: 0;
    padding: 1em 20px;
    color: #fff;
    background-image: url("../../images/254/pic-background_001.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
}
h1.page-title__text {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    line-height: 1.3;
}

/*パンくずリスト*/
.bread-crumbs {
    display: none;
}

/*記事エリア全体*/
.article-area {
    padding: 36px 20px 20px;
    background-image: url("../../images/254/pic-background_002.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
}
.article-area h3 {
    font-size: 1.4em;
}
.article-area h4 {
    font-size: 1.3em;
}
.article-area h5 {
    font-size: 1.2em;
}
.article-area h6 {
    font-size: 1.1em;
}
#contents .article-area.empty-articles,
#eid .article-area.empty-articles {
    padding-bottom: 0;
}
#contents .empty-articles .bread-crumbs,
#eid .empty-articles .bread-crumbs {
    margin-bottom: 0;
}

/*記事ボックス-通常TYPE*/
.article-box {
    margin: 0 0 50px 0;
}
.article-box__title {
    display: block;
    text-align: center;
    position: relative;
    font-family: var(--font-mincho);
    font-weight: normal;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 32px 0;
}
.article-box__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background-color: var(--base-color);
}
.article-box__text {
    margin: 0 0 20px 0;
}
.article-box__images {
    margin: 0 0 20px 0;
}
.article-box__images figure {
    display: block;
    margin: 0;
    padding: 0;
}
.article-box__images figure img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
.article-box__images figcaption {
    display: block;
    text-align: center;
    font-weight: lighter;
    margin: 10px 0 0 0;
    padding: 0;
}
/*2列TYPE*/
.box-type--2row {
    margin: 0 0 50px 0;
}
.box-type__title--learge {
    display: block;
    text-align: center;
    position: relative;
    font-family: var(--font-mincho);
    font-weight: normal;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 32px 0;
}
.box-type__title--learge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background-color: var(--base-color);
}
.box-type__entry {
    margin: 0 0 40px 0;
}
.box-type__title--small {
    font-size: 18px;
    font-weight: normal;
    color: var(--base-color);
    margin: 0 0 10px 0;
}
.box-type__images {
    margin: 0 0 10px 0;
    width: 100%;
}
.box-type__images figure {
    display: block;
    margin: 0;
    padding: 0;
}
.box-type__images figure img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
.box-type__button-area {
    text-align: center;
    margin: 16px 0 0 0;
}
.box-type__button-link {
    display: inline-block;
    padding: 0.6em 3em;
    background: linear-gradient(30deg, var(--button-start), var(--button-end));
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}
.box-type__button-link:hover {
    opacity: 0.8;
}

/*3列TYPE*/
.box-type--3row {
    margin: 0 0 50px 0;
}
.box-type--3row .box-type__content-wrap {
    width: 100%;
}
.box-type--3row .box-type__entry {
    border: 1px #ddd solid;
    padding: 10px 16px;
    margin: 0 0 10px 0;
}
.box-type--3row .box-type__title--small {
    text-align: center;
}

.box-type--3row .box-type__button-area {
    margin: 16px 0;
    text-align: center;
}

/*ボタンTYPE*/
.box-type--button {
    margin: 0 0 50px 0;
}

/*最新情報（NEWS）*/
/*最新ブログ（BLOG）*/
.news,
.blog {
    background: linear-gradient(30deg, var(--bg-start), var(--bg-end));
    margin: 0;
    padding: 20px 20px;
}
.news__title,
.blog__title {
    text-align: center;
    color: var(--base-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 0;
}
.news__button-area,
.blog__button-area {
    text-align: center;
    margin: 16px 0 0 0;
}
.news__button-link,
.blog__button-link {
    display: inline-block;
    border: 1px var(--base-color) solid;
    padding: 0.6em 3em;
    color: var(--base-color);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}
.news__button-link:hover,
.blog__button-link:hover {
    opacity: 0.8;
    cursor: pointer;
}

.news__list,
.blog__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news__item,
.blog__item {
    display: flex;
    padding: 6px 0;
    align-items: flex-start;
}
.news__date,
.blog__date {
    width: 100px;
    flex-shrink: 0;
}
.news__text,
.blog__text {
    flex: 1;
    line-height: 1.5;
}
.greeting {
    margin-bottom: 30px;
}

.access-container {
    max-width: calc(1320px + (20px * 2)); /* 1320px + 左右のパディング */
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.profile-info,
.access-info,
.contact-info {
    width: 100%;
    margin-bottom: 60px;
}

.profile-info tr,
.access-info tr,
.contact-info tr {
    display: flex;
    flex-direction: column;
}

.profile-info th,
.access-info th,
.contact-info th,
.profile-info td,
.access-info td,
.contact-info td {
    margin-top: -1px;
}

.access iframe {
    width: calc(1320px + (20px * 2)); /* 1320px + 左右のパディング */
    max-width: 100%;
    max-height: 740px;
    height: calc((100% / 16) * 9);
    aspect-ratio: 16 / 9;
    border: 0;
}

.contact-info input[type="text"],
.contact-info textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
}

.contact-info input[type="radio"],
.contact-info .label_inline {
    cursor: pointer;
}

.contact-info .input-text,
.contact-info textarea {
    width: 100%;
}

.contact-info .input-age {
    width: 40%;
    margin-right: 20px;
}

.button {
    display: inline-block;
    padding: 1em 3em;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    font-size: 20px;
    border: none;
    min-width: 264px;
}

.button:hover {
    opacity: 0.8;
    cursor: pointer;
}

.button--primary {
    background: linear-gradient(30deg, var(--button-start), var(--button-end));
    color: #ffffff;
}

.button--reset {
    background: #bbb;
    color: #ffffff;
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    margin-bottom: 30px;
}

#contact .captcha {
    box-sizing: border-box;
    padding: 30px 20px;
    border: 1px solid #ccc;
}

#contact #captchaInput {
    padding: 8px 15px;
    border: 2px solid #ddd;
    outline: none;
}

/*フリースペース*/
.free-space {
    padding: 30px 20px;
    color: #fff;
    background-image: url("../../images/254/pic-background_001.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.free-space a {
    color: #fff;
}

/*SNSリンク*/
.snsBtn {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.snsBtn li {
    margin-right: 20px;
}
.snsBtn li:hover {
    opacity: 0.7;
}
.snsBtn li:last-child {
    margin-right: 0;
}
.main {
    padding: 30px 20px 20px;
    box-sizing: border-box;
}

/*フッター*/
.footer {
    padding: 20px;
}
.footer .snsBtn {
    margin: 0 0 24px 0;
}
.footer .snsBtn li {
    margin-right: 25px;
}
.footer .snsBtn li:last-child {
    margin-right: 0;
}
.footer .snsBtn a {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .qr-code {
    text-align: center;
}
.footer .copyright {
    text-align: center;
    font-style: normal;
    font-size: 13px;
    padding: 24px 0;
}

/*=============== 780px未満の適用 =================*/
@media (max-width: 779px) {
    /*3列TYPE*/
    .box-type--3row .box-type__content-wrap {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .box-type--3row .box-type__images {
        flex: 1;
        max-width: calc(100% / 2.8); /* 約35.7% */
        margin: 0;
    }
    .box-type--3row .box-type__text {
        flex: 1.8;
        max-width: calc(100% * 1.8 / 2.8); /* 約64.3% */
        margin: 0;
    }
}

/*=============== 860px以上の適用 =================*/
@media (min-width: 860px) {
    body {
        font-size: 16px;
    }

    header {
        position: relative;
        z-index: 10;
        padding: 0 0;
    }
    .site-title {
        padding: 16px 0;
        display: inline-block;
    }
    .site-title img {
        vertical-align: middle;
    }
    .head-navi__wrapper {
        min-height: 70px;
        padding: 0 40px;
        align-items: center;
        border-bottom: 1px #ddd solid;
    }
    .site-title {
        font-size: calc(0.4vw + 1.1rem);
        max-width: 50%;
    }
    .head-navi {
        display: block;
        max-width: 600px;
        flex: 1;
    }
    .head-navi ul {
        display: flex;
        justify-content: end;
        gap: 0 36px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .head-navi__link a {
        text-decoration: none;
        color: var(--text-color);
        font-size: calc(0.4vw + 0.6rem);
    }
    .head-navi__link a:hover {
        color: var(--base-color);
    }
    .head-navi__link {
        display: flex;
        align-items: center;
        min-height: 70px;
    }
    a.head-navi__contact {
        display: flex;
        align-items: center;
        min-height: 70px;
        padding: 0 2.8em;
        background: linear-gradient(
            30deg,
            var(--button-start),
            var(--button-end)
        );
        color: #ffffff;
        text-decoration: none;
        transition: opacity 0.3s ease;
        box-sizing: border-box;
        margin-right: -40px;
    }
    a.head-navi__contact:hover {
        color: #ffffff;
        opacity: 0.8;
    }
    a.head-navi__profile,
    a.head-navi__access {
        display: inline-block;
        text-decoration: none;
        color: var(--text-color);
    }
    .hamburger-menu {
        display: none;
    }

    /*グローバルナビ*/
    .global-navi__wrapper {
        position: relative;
        background-color: #fff;
        height: inherit;
        right: inherit;
        padding: 0;
        overflow-y: inherit;
    }
    .global-navi__wrapper .global-navi__parent--border {
        display: none;
    }
    .global-navi {
        position: relative;
        max-width: 100%;
        z-index: 0;
    }
    /*親メニュー*/
    .global-navi__parent {
        display: flex;
        flex-wrap: wrap;
        gap: 0 36px;
        list-style: none;
        margin: 0;
        padding: 0 40px;
    }
    .global-navi__parent li {
        position: relative;
    }

    .global-navi__link,
    .global-navi__blog,
    .global-navi__reservation,
    .global-navi__sales {
        display: flex;
        align-items: center;
        height: 70px;
        padding: 0;
        text-decoration: none;
        color: var(--text-color);
        font-size: 16px;
        box-sizing: border-box;
    }
    .global-navi__link:hover,
    .global-navi__blog:hover,
    .global-navi__reservation:hover,
    .global-navi__sales:hover {
        color: var(--base-color);
    }
    .global-navi__current a {
        border-bottom: 3px solid var(--base-color);
    }

    /*子メニュー*/
    .global-navi__child {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 1px solid #ddd;
        padding: 0;
        margin: 0;
        list-style: none;
        min-width: 200px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 9999; /* 最前面に */
    }
    .global-navi__parent > li:hover .global-navi__child {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .global-navi__child li a {
        display: block;
        padding: 10px 16px;
        background: #fff;
        color: var(--base-color);
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        transition: background-color 0.3s ease, color 0.3s ease;
        height: auto;
    }
    .global-navi__child li a:hover {
        background: var(--base-color);
        color: #fff;
    }

    /*スライド画像*/
    .slide-image {
        position: relative;
        margin: 0;
        padding: 0;
    }
    .slide-image.has-slide-text {
        margin-bottom: 0;
    }
    .slide-image__text {
        position: absolute;
        top: 50%;
        bottom: initial;
        left: 0; /* ← 左端ぴったり */
        transform: translateY(-50%); /* ← Y方向だけ中央に */
    }
    .slide-image__text p {
        font-size: 40px;
        line-height: 1.3;
        padding: 0.5em 1em;
        margin: 0 0 12px 0;
    }

    .bx-wrapper .bx-pager.bx-default-pager {
        display: block;
    }

    /*ホームページ説明文*/
    .site-description__text {
        width: 780px;
        margin: 0 auto;
        padding: 30px 0;
    }

    /*ページタイトル（下層）*/
    .page-title {
        padding: 2em 20px;
    }
    h1.page-title__text {
        font-size: 40px;
    }

    /*パンくずリスト*/
    .bread-crumbs {
        display: block;
        padding: 15px 40px;
    }
    #contents .bread-crumbs,
    #eid .bread-crumbs {
        margin: -80px -40px 80px 0;
    }
    .bread-crumbs__list {
        text-align: right;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .bread-crumbs__list li {
        display: inline;
        font-size: 0.85em;
    }
    .bread-crumbs__list li::after {
        content: "｜";
        padding: 0 0.4em;
    }
    .bread-crumbs__list li:last-child::after {
        content: "";
        padding: 0 0;
    }

    /*記事エリア全体*/
    .article-area {
        position: relative;
        z-index: 0;
        padding: 80px 40px;
    }

    /*記事ボックス-通常TYPE*/
    .article-box {
        width: 780px;
        margin: 0 auto 100px auto;
    }
    .article-box__title {
        font-size: 40px;
        margin: 0 0 60px 0;
    }
    .article-box__title::after {
        bottom: -20px;
        width: 86px;
        height: 3px;
    }
    .article-box__text {
        margin: 0 0 36px 0;
    }
    .article-box__images {
        margin: 0 0 36px 0;
    }
    .article-box__images figcaption {
        margin: 12px 0 0 0;
    }

    /*2列TYPE*/
    .box-type--2row {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto 100px auto;
    }

    .box-type--2row .box-type__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px; /* 2列間の余白 */
        justify-content: space-between;
    }

    .box-type--2row .box-type__entry {
        width: calc(50% - 20px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .box-type__title--learge {
        font-size: 40px;
        margin: 0 0 60px 0;
    }
    .box-type__title--learge::after {
        bottom: -20px;
        width: 86px;
        height: 3px;
    }
    .box-type__title--small {
        text-align: center;
        font-size: 28px;
        margin: 0 auto 16px auto;
    }

    .box-type__button-area {
        margin: 36px 0 0 0;
        align-self: center;
    }
    .box-type__button-link {
        font-size: 20px;
    }

    /*3列TYPE*/
    .box-type--3row {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto 100px auto;
    }

    .box-type--3row .box-type__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .box-type--3row .box-type__entry {
        flex: 1 1 calc((100% - 80px) / 3); /* ← 計算済み幅 */
        max-width: calc((100% - 80px) / 3);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: none;
        box-sizing: border-box; /* ← 横幅計算に padding を含めるように */
        overflow: hidden; /* ← はみ出し防止 */
    }
    .box-type--3row .box-type__button-area {
        margin: 36px 0 0 0;
    }
    .box-type--3row .box-type__title--small {
        font-size: 24px;
    }

    /*ボタンTYPE*/
    .box-type--button {
        width: 780px;
        margin: 0 auto 100px auto;
    }

    /*最新情報（NEWS）*/
    /*最新ブログ（BLOG）*/
    .news {
        padding: 36px 36px 56px 36px;
    }
    .blog {
        padding: 36px 36px 56px 36px;
    }
    .news__title,
    .blog__title {
        font-size: 30px;
        margin: 0 0 36px 0;
        padding: 0;
    }
    .news__button-area,
    .blog__button-area {
        text-align: center;
        margin: 36px 0 0 0;
    }
    .news__button-link,
    .blog__button-link {
        font-size: 16px;
    }
    .news__list,
    .blog__list {
        width: 780px;
        margin: 0 auto;
    }
    .news__item,
    .blog__item {
        display: flex;
        padding: 12px 0;
        align-items: flex-start;
    }
    .news__date,
    .blog__date {
        width: 110px;
        flex-shrink: 0;
    }
    .news__text,
    .blog__text {
        flex: 1;
        line-height: 1.5;
    }
    .greeting {
        margin-bottom: 50px;
    }
    .main {
        max-width: calc(780px + (24px * 2)); /* 780px + 左右のパディング */
        margin: 0 auto;
        width: 100%;
        padding: 80px 24px 40px;
    }
    .footer {
        padding: 50px 20px;
    }
    .profile-info,
    .access-info,
    .contact-info {
        margin-bottom: 100px;
    }
    .access-info {
        max-width: calc(780px + (24px * 2)); /* 780px + 左右のパディング */
        margin-left: auto;
        margin-right: auto;
    }
    .profile-info tr,
    .access-info tr,
    .contact-info tr {
        flex-direction: row;
    }
    .profile-info tr th,
    .access-info tr th {
        flex: 0 0 120px;
    }

    .contact-info tr th {
        flex: 0 0 250px;
    }

    .profile-info tr td,
    .access-info tr td,
    .contact-info tr td {
        flex: 1;
    }

    .profile-info th,
    .access-info th,
    .contact-info th,
    .profile-info td,
    .access-info td,
    .contact-info td {
        margin-left: -1px;
    }

    .btn-container {
        flex-direction: row;
    }
    /*フリースペース*/
    .free-space {
        padding: 56px 0px;
    }
    .free-space__wrapper {
        width: 780px;
        margin: 0 auto;
    }

    /*ページトップボタン*/
    .page-top {
        display: block;
        width: 64px;
        height: 64px;
        border: 1px solid var(--base-color);
        position: fixed;
        bottom: 20px;
        right: 20px;
        box-sizing: border-box;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }
    .page-top.show {
        opacity: 1;
        visibility: visible;
    }
    .page-top::before {
        content: "";
        position: absolute;
        top: 17px;
        left: 50%;
        transform: translateX(-0.5px);
        width: 1px;
        height: 30px;
        background-color: var(--base-color);
    }
    .page-top::after {
        content: "";
        position: absolute;
        top: 30px;
        left: 50%;
        width: 20px;
        height: 20px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-top: 1px solid var(--base-color);
        border-left: 1px solid var(--base-color);
        background: transparent;
    }

    /*モーション実装*/
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 0;
        transition: all 0.6s ease-out;
        transition-delay: 0.3s; /*出現タイミング調整*/
    }

    /* 下から */
    .fade-in {
        transform: translateY(30px);
    }
    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* 左から */
    .fade-in-left {
        transform: translateX(-30px);
    }
    .fade-in-left.show {
        opacity: 1;
        transform: translateX(0);
    }

    /* 右から */
    .fade-in-right {
        transform: translateX(30px);
    }
    .fade-in-right.show {
        opacity: 1;
        transform: translateX(0);
    }
}
