@charset "utf-8";


.header {
    position: relative;
    top: 0;
    background-color: #FFF;
    z-index: 1000;
}
.header-address {
    font-size: var(--fs-14);
    margin: 0.5em 0 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    font-size: 10px;
    width: 10em;
}
.header-tel {
    font-size: var(--fs-28);
    font-weight: bold;
    margin: 0;
    line-height: 1;
    a {
        color: #1b1b1b;
    }
}
.header-tel-num {
    font-size: 1.2em;
}
.sp-tel {
    display: none;
}
.skip-link:focus {
    top: 0px;
}
.header-right {
    display: flex;
    justify-content: flex-start;
}
.header-mail-button {
    color: #FFF;
    width: 200px;
    a {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: var(--color-theme);
        color: #FFF;
        width: 100%;
        height: 100%;
    }
}
.header-center {
    text-align: right;
    padding: 0 20px 0 0;
}
.footer {
    padding: 30px 10px;
    background-color: var(--color-theme);
    color: #FFF;
}

.footer h3 {
    margin: 0;
    font-size: var(--fs-20);
    text-align: center;
}

.footer-container {
    width: var(--container);
    max-width: 100%;
    margin: auto;
}

.fnav {
    list-style: none;
    padding: 0;
    margin: 0 1rem;
    color: #FFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    a {
        padding: 0 5px;
        color: #FFF;
    }
    a:hover {
        text-decoration: underline;
        opacity: 1;
    }
    .menu-item:not(:last-child)::after {
        content: "|";
        margin: 0 5px;
    }
}
.copyright {
    margin-top: 1rem;
    text-align: center;
}
.backtotop {
    position: fixed;
    right: 2%;
    bottom: 45px;
    z-index: 100;
    width: fit-content;
    a {
        background-color: #444;
        color: #FFF;
        font-size: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #FFF;
    }
}
.fixed-sns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    right: 0;
    bottom: calc(50% - 90px);
    z-index: 1000;
    margin: 0;
    a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        margin: 0;
    }
    a::after {
        display: none;
    }
    img {
        margin: 0;
    }
    .insta {
        background-color: #D004C3;
        img {
            width: 30px;
        }
    }
    .facebook {
        background-color: #1877F2;
        img {
            width: 40px;
        }
    }
    .line {
        background-color: #00B800;
        img {
            width: 40px;
        }
    }
}
/* ハンバーガーボタン */
.hamburger {
    width: var(--burg-btn-size);
    height: var(--burg-btn-size);
    position: absolute;
    right: 8px;
    top: 15px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.burg-line-tc {
    display: block;
}

.burg-line-tc::before {
    content: "";
    display: block;
    background-color: var(--color-theme);
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 5px;
    left: 1px;
}

.burg-line-tc::after {
    content: "";
    display: block;
    background-color: var(--color-theme);
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 15px;
    left: 1px;
}

.burg-line-b {
    display: block;
    background-color: var(--color-theme);
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 25px;
    left: 1px;
}

.burg-text {
    display: block;
}

.burg-text::before {
    content: "menu";
    position: absolute;
    color: var(--color-theme);
    top: 27px;
    left: 4px;
    font-size: 12px;
}

/* ハンバーガーボタン クリック後 */
.js-open .burg-line-tc::before {
    transform: rotate(45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-tc::after {
    transform: rotate(-45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-b {
    width: 0px;
}

.js-open .burg-text::before {
    content: "close";
}

/* グローバルナビゲーション */

.header-container {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-y: visible;
    background-color: #FFF;
    padding: 0px 0px 10px 20px;
}

.bg-stripe .header-container {
    background-color: transparent;
}

.toggle-menu {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: visible;
    margin-top: 5px;
}

.toggle-menu a {
    display: inline-block;
    padding: 0;
    color: var(--color-text);
    border-bottom: 2px solid transparent;
}

.toggle-menu a:hover {
    border-bottom: 2px solid var(--color-text);
}
.toggle-menu li:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
}

.hamburger {
    display: none;
}

.header-logo {
    margin: 0;
    img {
        width: 300px;
        height: 77px;
    }
}

.toggle-menu {
    display: flex;
    position: relative;
}

.toggle-menu .sub-menu {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFF;
}

.toggle-menu :where(.menu-item:hover)>.sub-menu {
    height: auto;
}


.page_item_has_children {}

.gnav {
    max-width: 100%;
    padding: 10px;
    iframe {
        max-width: 100%;
        aspect-ratio: 9 / 16;
    }
}

@media screen and (max-width: 1170px) {
    .page_item a {
        padding: 0 0.3em;
    }
    .toggle-menu a::after {
        margin-left: 0.3em;
    }
    .header-logo img {
        width: 220px;
    }
    .header-mail-button {
        width: 150px;
    }
    .header-center {
        padding: 0 10px 0 0;
    }
}

/* breadcrumb パンくずリスト */
.breadcrumb {
    padding: 10px;
    width: 100%;
    max-width: var(--container);
    margin: auto;
}

:where(.breadcrumb) ul {
    list-style: none;
    padding: 0;
}

:where(.breadcrumb) li {
    display: inline-block;
    margin-right: 1em;
}

:where(.breadcrumb) li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5em;
}

:where(.breadcrumb) a:link,
:where(.breadcrumb) a:visited {
    color: var(--color-text);
}

:where(.breadcrumb) a:hover,
:where(.breadcrumb) a:active {
    color: var(--color-link-text);
}



/* ボタン */
.button {
    text-align: center;
    margin: 2em auto;
}
.button-tel {
    text-align: center;
    margin: 1em auto 0.5em;
}
.button a {
    background-color: var(--color-theme);
    color: #FFF;
    display: inline-block;
    width: auto;
    min-width: 250px;
    padding: 0.6em 2em;
    border-radius: 2em;
    position: relative;
    line-height: 1.2;
}

.button-tel a{
    background-color: var(--color-theme);
    color: #FFF;
    letter-spacing: 1px;
    display: inline-block;
    width: auto;
    min-width: 250px;
    padding: 0.6em 1em;
    border-radius: 2em;
    position: relative;
    line-height: 1.2;
}

.button a::after {
    content:"\f105";
    font-family: "fa";
    font-weight: 600;
    position: absolute;
    top: calc(50% - 0.5em);
    right: 1em;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    color: var(--color-text);
}

.button-link-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--color-accent);
    color: var(--color-text-reverse);
}

/* ページ送り　pagenation ページネーション */

.pagenation {
    width: 100%;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    min-height: 40px;
    min-width: 40px;
    line-height: 1;
    border-radius: 2em;
    background: linear-gradient(-45deg, #EEE 0%, #F5F5F5 100%);
    box-shadow: 2px 2px 10px #CCC;
    margin: 0 4px;
    border-top: #FFF 1px solid;
    border-left: #FFF 1px solid;
}

.page-numbers:hover {
    border-bottom: none;
}

.current {
    background-color: #EEE;
    box-shadow: none;
}

/* カードレイアウト */
.card {
    position: relative;
    padding: 0 0 60px 0;
    box-shadow: var(--box-shadow);
}

.card-post-title {
    font-size: 1rem;
    margin: 10px;
}

.card-post-excerpt {
    font-size: var(--fs-14);
    margin: 10px;
}

.no-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    justify-content: center;
    align-items: center;
    background-color: #DDD;
}

.small-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    text-align: center;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.small-img img {
    width: 100%;
    height: auto;
}

.card-more {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    text-align: center;
}

.card-more-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding: 0.5em 0.75em;
    min-width: 8em;
    border-radius: 2px;
    background-color: var(--color-theme);
    color: var(--color-theme-text);
    box-shadow: var(--box-shadow);

}

/* セクションレイアウト */
article {
    margin: 0 auto 40px;
}

/* --2カラム構成の設定 ここまで-- */

/* トップページ */
.top-kv {
    width: 90%;
    margin: 40px auto 0;
    padding-bottom: 40px;
    overflow-x: hidden;
    position: relative;
}

.top-slide {
    max-width: 100%;
}

.kv-lead {
    position: absolute;
    left: 0;
    bottom: 40px;
}

.top-lead-box {
    display: block;
    width: fit-content;
    margin-top: 20px;
    background-color: #FFF;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    padding: 0.5em;
    border-bottom: 3px solid #FFC982;
    border-right: 2px solid #FFC982;
    letter-spacing: 1px;
    strong {
        font-size: 1.2em;
        color: #FF9204;
    }
}

.bg-stripe {
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(252, 245, 229, 1) 10px, rgba(252, 245, 229, 1) 20px );
}

/* top-about */
.top-about {
    padding: 50px 0;
    margin: 0;
    background-image: url("../img/bg_img001.webp");
    background-repeat: no-repeat;
    background-size: auto, auto, cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.top-about::before {
    content: "";
    display: block;
    width: 664px;
    height: 664px;
    background-color: #FFFA;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.top-about::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/bnr_img001.webp"), url("../img/bnr_img002.webp");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom 0 left calc(50% - 360px), top 20px right calc(50% - 350px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.top-about-inner {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* top-service */
.bg-cream {
    background-color: var(--color-cream);
}

.top-service {
    padding: 50px 0;
}

.lead {
    text-align: center;
    font-weight: bold;
    margin: 0 auto 2em;
}

/* top-faq */
.top-faq {
    padding: 50px 10px;
    background-image: url("../img/bg_img002.webp"), url("../img/bg_ashiato.webp");
    background-repeat: no-repeat;
    background-position: top 100px center, top right -200px;
    background-size: auto;
}

.top-faq-1 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
    h2 {
        background: none;
        display: flex;
        flex-direction: column;
        text-align: left;
        margin: 0;
    }
}

.top-faq-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.top-faq-text {
    width: 360px;
}
.top-faq-gallery {
    display: flex;
    gap: 30px;
}


/* top-gallery */
.top-gallery {
    padding: 50px 0;
    background-image: url("../img/bg_img003.webp"), url("../img/bg_ashiato.webp");
    background-repeat: no-repeat;
    background-position: top 100px center, top left -200px;
    background-size: auto;
}

.top-gallery-1 {
    display: flex;
    align-items: center;
    position: relative;
}

.top-gallery-heading {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    padding: 0;
    img {
        position: relative;
        left: calc(50% - 3em);
    }
}

.top-gallery-2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.top-gallery-text {
    width: 360px;
}

.top-gallery-img {
    display: flex;
    gap: 30px;
}



/* お知らせ　コーナー */
.top-info {
    padding: 60px 20px;
}

.info-list {
    background-color: #FFF;
    padding: 2rem 1rem;
    margin: 0 auto;
    border-radius: 3px;
    max-height: 350px;
    overflow-y: scroll;
}

.info-list-article {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.info-list-date {
    width: 7rem;
}

.info-list-contents {
    width: calc(100% - 7rem);
    margin: 0;
    h3 {
        background-image: none;
        padding: 0;
        margin: 0 0 0.5rem;
        font-size: 1.2rem;
    }
}

.post-list {}

.post-list-item {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    align-items: flex-start;
}

.post-list-img {
    max-height: 150px;
    max-width: 150px;
    overflow: hidden;
}

.post-list-info {}

.post-list-title {}

.post-list-heading {
    font-size: var(--fs-16);
    margin: 0;
}

.post-date {
    font-weight: normal;
}

.post-list-excerpt {
    padding-left: 1em;
}

.top-company {
    padding: 60px 0;
}
.top-about-text {
    padding: 0 2rem 0 0;
}

table {
    margin: 1em 0;
}

th {
    background-color: var(--color-theme);
    font-weight: bold;
    color: #FFF;
    padding: 1em;
    border: 1px solid #FFF;
    width: 15em;
}

td {
    background-color: #FFF;
    color: #000;
    padding: 1em;
    border: 1px solid var(--color-theme);
}

.table-1 {
    margin: 1rem 1rem 1rem 0;
    th {
        font-weight: normal;
        text-align: left;
        border: none;
        border-bottom: 1px solid #000;
        padding: 0.8em 0;
        width: 8em;
        background-color: #FFF;
        color: #000;
    }
    td {
        padding: 0.8em 1em;
        border: none;
        border-bottom: 1px solid #000;
    }
}
.table-2 {
    th {
        width: 12em;
    }
    td {
        width: auto;
    }

}
.table-bikou {
    padding: 0.5em;
    background-color: var(--color-theme-light);
}
.table-hotel {
    th {
        width: auto;
    }
}
.sns_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    a::after {
        display: none;
    }
    img {
        width: 44px;
        margin: 0;
    }
    .tel {
        background-color: var(--color-theme);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        img {
            width: 24px;
        }
    }
}
.tel.sp-only {
    display: none;
}
.contact {
    padding: 60px 0 40px;
}
.contactform {
    th {
        background-color: transparent;
        color: #000;
        width: auto;
        text-align: right;
        border: none;
        padding: 0.5em;
    }
    td {
        background-color: transparent;
        border: none;
        padding: 0.5em;
    }
}
.require {
    color: var(--color-accent);
    display: inline-block;
    font-size: 0.85em;
}
.bg-orange {
    background-color: var(--color-theme);
    color: #FFF;
    h2 {
        background-image: url("../img/h2_w.webp");
    }
    h3 {
        background-image: none;
        text-align: center;
        padding: 2rem 0 0;
    }
}
.tab-button {
    margin: 0;
    padding: 0.5em;
}
.tab-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-theme);
    color: #FFF;
    line-height: 1.2;
    padding: 0.5em;
    border-radius: 5px;
}

details {
    margin-bottom: 2em;
}

details p {
    padding-inline: 1em;
}

summary {
  display: block;
  list-style: none;
  background-color: var(--color-theme-light);
  padding: 1em;
  border-radius: 2px;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display:none;
}


/* 問合せエリア */
.sidebar {
    background-color: var(--color-theme-light);
    h3 {
        background-image: none;
        text-align: center;
        padding: 2rem 0 0;
    }
    input[type="submit"] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 44px;
        background-color: var(--color-theme);
        color: #FFF;
        margin: 30px auto 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
}
.wpcf7-spinner {
    display: block;
    width: fit-content;
    margin: 10px auto 0;
}
/* サイドバーメニュー */
.side-nav ul {
    padding-left: 0.5em;
}

/* 固定ページ */
.page-kv {
    width: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.page-kv img {
    width: 100%;
    height: auto;
}

.page-title {
    background-color: var(--color-theme-light);
    text-align: center;
    padding: 1em;
    line-height: 1.3;
}

.page-main section {
    padding: 40px 0;
}

.orange-flame {
    border: 1px solid var(--color-theme);
    padding: 1em;
    margin: 0.5em auto;
    font-size: var(--fs-20);
}

.ul-kome {
    list-style: none;
    li::before {
        content: "※";
        margin-left: -1em;
    }
}
.ul-star {
    list-style: none;
    li::before {
        content: "☆";
        margin-left: -1em;
    }
}
.service-list {
    text-align: center;
    margin-bottom: 1em;
    img {
        margin: 0 auto;
        border-radius: 20px;
    }
    p {
        margin: 0;
    }
}
/* archiveページ */

/* 投稿ページ */
.post-nav {
    width: 100%;
    max-width: var(--container);
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-bg-gray);
}

.post-nav a {
    padding: 10px 0;
    display: inline-block;
}

/* パララックス設定 */
.imgcontainer {
    min-height: 100vh;
}

.paracontent {
    min-height: 100vh;
}