@charset "UTF-8";

/*==============================================================================================
●共通
==============================================================================================*/
* {
    box-sizing: border-box;
}

* a {
    transition: all 0.2s ease-in-out;
}

* a:hover {
    transition: all 0.2s ease-in-out;
}

:root {
    --color-black-1: #1a1a1a;
    --color-black-2: #333333;

    --color-gray-1: #f5f5f5;
    --color-gray-2: #e6e6e6;
    --color-gray-3: #b3b3b3;
    --color-gray-4: #999999;

    --color-white-1: #ffffff;

    --color-green-1: #88edc9;
    --color-red-1: #ec7c84;

    --width-pc: 1200px;
    --width-tb: 90%;
    --width-sp: 90%;

    --margin-pc: calc((100% - var(--width-pc)) /2);
    --margin-sp: calc((100% - var(--width-sp)) /2);
}

body {
    color: var(--color-black-1);
    background: var(--color-white-1);
    width: 100%;
}

a:link,
a:visited {
    color: var(--color-black-1);
    text-decoration: none;
}

a:hover {
    color: var(--color-green-1);
}

.font_titles {
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}


/*/////////////////////////ヘッダー///////////////////////*/
header {}

/* ==== 共通スタイル ==== */

body {
    margin: 0;
}

/* メインコンテンツ：押し出し対応 */
.main-content {
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.main-content.shifted {
    transform: translateX(-300px);
}

/* メニュー背景のオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 498;
    display: none;
}

.menu-overlay.show {
    display: block;
}

/* ハンバーガー */
.menu-container {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 500;
}

.hamburger {
    width: 70px;
    height: 70px;
    background: var(--color-black-1);
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 501;
    transition: transform 0.3s ease-in-out;
}

.hamburger.hide {
    transform: translateX(100px);
    opacity: 0;
    pointer-events: none;
}

.hamburger:hover span {
    background-color: var(--color-white-1);
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--color-white-1);
    border-radius: 2px;
}

/* メニュー本体 */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    min-width: 300px;
    height: 100vh;
    background: var(--color-black-1);
    color: var(--color-white-1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 30px;
    z-index: 499;
}

.menu.open {
    transform: translateX(0);
}

/* ✕ ボタン */
.close-btn {
    font-size: 40px;
    height: 1em;
    line-height: 1em;
    font-weight: bold;
    color: var(--color-white-1);
    text-align: right;
    cursor: pointer;
}

/* メニューリスト */
.menu a {
    text-decoration: none;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.menu ul li {
    margin: 1em 0;
    text-align: center;
    font-size: 0.9rem;
}

.menu ul li a,
.spmenuFooter a {
    color: var(--color-white-1);
}

.close-btn:hover,
.menu a:hover {
    color: var(--color-green-1);
}

.spmenuLogo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.spmenuLogo img {
    max-width: 100px;
}

.spmenuFooter {
    display: flex;
    font-size: 0.7rem;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/*/////////////////////////フッター///////////////////////*/
footer {
    width: 100%;
    position: relative;
    padding-top: 150px;
}

footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 21px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1279.99 21.06"><polyline fill="none" stroke="%231a1a1a" stroke-miterlimit="10" points=".16 .53 58.33 20.53 116.49 .53 174.66 20.53 232.82 .53 290.99 20.53 349.15 .53 407.32 20.53 465.48 .53 523.65 20.53 581.81 .53 639.97 20.53 698.14 .53 756.3 20.53 814.47 .53 872.64 20.53 930.81 .53 988.98 20.53 1047.14 .53 1105.31 20.53 1163.48 .53 1221.65 20.53 1279.83 .53"/></svg>');
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto 100%;
}

footer a:link,
footer a:visited {
    color: var(--color-black-1);
}

footer a:hover {
    color: var(--color-green-1);
}

.fmenus {
    margin-top: 100px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    gap: 50px;
}

.flogo {
    width: 100px;
}

.flogo img {
    width: 100%;
    height: auto;
}

.fmenus-r-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fmenus-r {
    display: flex;
    gap: 50px;
}

.fmenus-r ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.fmenus-etc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fmenus-etc img {
    width: 150px;
}

.fmenus-etc ul {
    gap: 5px;
}

.fmenus-etc ul li a {
    text-decoration: underline;
    font-size: 0.6rem;
}

.fmenus-copyright {
    font-size: 0.6rem;
    text-align: right;
}









/*/////////////////////////共通レイアウト///////////////////////*/
h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.3em;
}

h6 {
    font-size: 0.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}


/*/ページタグ設定/*/
.pagesBaceContent {}

.pagesBaceContent a:link,
.pagesBaceContent a:visited {
    text-decoration: underline;
}

.pagesBaceContent :is(h1, h2, h3, h4, h5, h6) {
    line-height: 1.4em;
}

.pagesBaceContent :is(p, ul, ol) {
    margin: 1em 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.pagesBaceContent :is(em, i) {
    font-style: italic;
}

.pagesBaceContent ul li,
.accordion-body-inner ol li {
    list-style: disc;
    margin: 0.8em 0;
    list-style-position: outside;
    margin-left: 20px;
}

.pagesBaceContent ol li,
.accordion-body-inner ol li {
    list-style: decimal;
    margin: 0.8em 0;
    list-style-position: outside;
    margin-left: 20px;
}

.pagesBaceContent hr {
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--color-gray-2);
    margin: 60px 0;
}

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

.pagesBaceContent table {
    width: 100%;
    border-collapse: collapse;
}

.pagesBaceContent :is(th, td) {
    border: 1px solid var(--color-gray-3);
    padding: 8px;
    text-align: left;
}

.pagesBaceContent thead {
    background-color: var(--color-gray-1);
}


/*/////////////ボタン/////////////*/
.pagebottombutton-wrap {
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

.button,
.button2 {
    padding: 5px 30px 5px 20px;
    font-size: 0.8rem;
    line-height: 0.8rem;
    height: 3.5em;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    border: 1px solid var(--color-black-1);
}

.button2 {
    border: 1px solid var(--color-white-1);
}

.button:link,
.button:visited {
    color: var(--color-black-1);
    text-decoration: none;
}

.button2:link,
.button2:visited {
    color: var(--color-white-1);
    text-decoration: none;
}

.button:hover,
.button2:hover {
    transition: all 0.2s ease-in-out;
    color: var(--color-green-1);
}




/*/////////////SWIPER/////////////*/
.swiper {
    width: 100%;
}

.swiper-wrapper {
    align-items: stretch;
}

.kvslide {
    height: 100%;
    height: 100%;
    position: relative;
}

.kvslide .swiper-slide {
    width: 100%;
    height: 100%;
}

.kvslide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kvslide .swiper-pagination {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
}

.swiper-pagination-bullets {
    position: static;
}

.swiper-pagination-bullet {
    height: 5px !important;
    margin: 0 0 0 10px !important;
    background: var(--color-black-1) !important;
    border-radius: 0px !important;
    opacity: 1 !important;
    transition: min-width 0.3s ease, background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-white-1) !important;
}


.swiper-pagination-bullet:first-child {
    margin: 0 !important;
}



/*/////////////パンくず/////////////*/
.breadcrumb,
.breadcrumb2 {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.6em;
    margin-bottom: 10px;
    position: absolute;
    left: 30px;
}

.breadcrumb>ul,
.breadcrumb2>ul {
    display: inline-block;
}

.breadcrumb>ul>li,
.breadcrumb2>ul>li {
    display: inline-block;
}

.breadcrumb>ul>li:not(:last-of-type)::after,
.breadcrumb2>ul>li:not(:last-of-type)::after {
    content: ">";
    margin: 0.6em;
}

.breadcrumb a:hover,
.breadcrumb>ul>li:last-of-type a:hover,
.breadcrumb2 a:hover,
.breadcrumb2>ul>li:last-of-type a:hover,
.kv-none .breadcrumb a:hover,
.kv-none .breadcrumb>ul>li:last-of-type a:hover {
    color: var(--color-green-1) !important;
}

.breadcrumb>ul>li:not(:last-of-type)::after,
.breadcrumb a:link,
.breadcrumb a:visited,
.breadcrumb>ul>li:last-of-type a:link,
.breadcrumb>ul>li:last-of-type a:visited,
.breadcrumb2>ul>li:not(:last-of-type)::after,
.breadcrumb2 a:link,
.breadcrumb2 a:visited,
.breadcrumb2>ul>li:last-of-type a:link,
.breadcrumb2>ul>li:last-of-type a:visited,
.breadcrumb2>ul {
    color: var(--color-white-1);
}

.kv-none .breadcrumb>ul>li:not(:last-of-type)::after,
.kv-none .breadcrumb a:link,
.kv-none .breadcrumb a:visited,
.kv-none .breadcrumb>ul>li:last-of-type a:link,
.kv-none .breadcrumb>ul>li:last-of-type a:visited {
    color: var(--color-black-1);
}


/*/////////////youtube/////////////*/
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}





/*/////////////////////////ページネーション///////////////////////*/
.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    font-family: "halcom-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 300;
}

.pagination a:link,
.pagination a:visited {
    color: var(--color-gray-3);
}

.pagination span,
.pagination a {
    text-decoration: none;
    line-height: 1em;
    display: flex;
    align-items: center;
}

.pagination .paginationNum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
}

/* ページ番号 */
.pagination .pager {}

/* ホバー時 & 現在のページ */
.pagination a:hover {
    opacity: .7;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.pagination .current {
    text-shadow: none;
    color: var(--color-black-1);
    font-variation-settings: "ital" 0, "wght" 500;
    font-size: 1.2em;
}

/* 前へ */
.pagination a.prev::after,
.pagination a.next::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.22 21.6'%3E%3Cpolyline fill='none' stroke='%231a1a1a' stroke-width='2' stroke-miterlimit='10' points='0.71 20.9 10.8 10.8 0.71 0.71'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.pagination a.prev {}

.pagination a.prev::after {
    transform: scaleX(-1);
}

/* 次へ */
.pagination a.next {}

/* 最初へ */
.pagination a.first {}

/* 最後へ */
.pagination a.last {}

/* Page x / y */
.pagination span.page_num {
    display: none;
}





/*/////////////////////////トップページ///////////////////////*/

.kv-wrap {
    width: 100%;
    margin: 0px auto;
}

.kv,
.kv-page,
.kv-none {
    position: relative;
    overflow: hidden;
}

.kv,
.kv-page {
    background-color: var(--color-black-1);
}

.kv-page {
    height: 600px;
}

.kv-none {
    height: 200px;
}

.kv-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
}

.kv-head-logo {
    display: inline-block;
    will-change: transform;
}

.kv-head-menu-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    background-color: var(--color-white-1);
    padding: 10px 20px;
    border-radius: 9999px;
}

.kv-none .kv-head-menu-wrap {
    border: 1px solid var(--color-gray-1);
}

.kv-head-menu {
    display: flex;
    gap: 25px;
}

.kv-head-menu2 {
    display: flex;
    background-color: var(--color-black-1);
    padding: 5px;
    border-radius: 9999px;
    font-size: 0.6rem;
}

.kv-head-menu2 li {
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
}

.kv-head-menu2 li+li {
    border-left: 1px solid var(--color-black-2);
}

.kv-head-menu2 a:link,
.kv-head-menu2 a:visited {
    color: var(--color-green-1);
}

.kv-head-menu2 a:hover {
    color: var(--color-white-1);
}

.kv-phone {
    position: absolute;
    width: 150px;
    z-index: 200;
}


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

.kv-catch {
    position: absolute;
    z-index: 200;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: last baseline;
}

.kv-catch1,
.kv-catch2 {
    background-color: var(--color-white-1);
    writing-mode: vertical-rl;
    line-height: 1em;
    padding: 10px 2px;
    letter-spacing: 0.2em;
}

.kv-catch1 {
    font-weight: 700;
    padding-left: 10px;
}

.kv-catch-page {
    position: absolute;
    z-index: 200;
    font-size: 0.8rem;
}

.kv-catch-page h3,
.kv-catch-page p {
    display: inline;
    background: var(--color-white-1);
}

.top-news-wrap {
    width: 100%;
    display: flex;
}

.top-news-wrap>div {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.top-news-wrap h5 {
    font-weight: 400;
}

.top-news-catch {
    justify-content: center;
    background-color: var(--color-black-1);
    color: var(--color-white-1);
    letter-spacing: 0.1em;
}

.top-news-catch h5 {
    font-weight: 300;
}

.top-news-catch h1 {
    line-height: 1em;
    margin-top: 20px;
}

.top-news-catch h1 span {
    font-size: 0.3em;
    font-weight: 400;
}

.top-news {
    background-color: var(--color-gray-1);
    font-size: 0.8rem;
}

.top-news h5 {
    font-weight: 600;
}

.top-news ul {
    margin: 20px 0;
}

.top-news ul li {
    border-bottom: 1px solid var(--color-black-1);
    padding: 10px 0;
}

.top-news ul li:first-child {
    border-top: 1px solid var(--color-black-1);
}

.top-facility,
.top-access {
    width: 100%;
}

.top-facility-wrap {
    width: 100%;
    color: var(--color-white-1);
    display: flex;
    background-color: var(--color-black-1);
    clip-path: polygon(40px 0%,
            calc(100% - 40px) 0%,
            100% 40px,
            100% 100%,
            0% 100%,
            0% 40px);
}

.top-facility-wrap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-facility-wrap-txt h1,
.top-facility-wrap-txt h6,
.top-facility-wrap-txt-catch,
.top-facility-wrap-title,
.top-access-title,
.facility-title {
    font-weight: 300;
    letter-spacing: 0.1em;
}

.facility-title h1 {
    line-height: 1.4em;
    margin-bottom: 10px;
}

.top-facility-wrap-txt-catch {
    margin: 50px 0;
    font-size: 1.4rem;
    line-height: 1.4em;
}

.top-facility-wrap-txt-catch span {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.2rem;
    display: block;
}

.top-facility-wrap-txt p {
    margin: 50px 0;
}

.top-facility-wrap-txt p span {
    font-size: 0.6rem;
}

.top-facility-wrap-title,
.top-access-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.top-access-wrap {
    display: flex;
}

.top-access-txt {
    display: flex;
    gap: 50px;
    font-size: 0.8rem;
}

.top-access-txt>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-access-txt ul li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 1.5em;

}

.top-access-txt ul.listnum li {
    list-style-type: decimal;
}







/*/////////////////////////ページ///////////////////////*/

.pagekv {
    width: 100%;
    height: 100%;
}

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

.facility,
.facility-title {
    width: 100%;
}

.facility-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facility-tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.facility-tab.tab-stay {
    display: grid;
    gap: 10px;
}

.facility-tab.tab-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
}

.facility-tab li::after {
    content: '';
    display: block;
    margin-top: 5px;
    border-bottom: 1px solid var(--color-gray-4);
}

.facility-tab li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gray-4);
    border-top: 1px solid var(--color-gray-4);
    border-left: 1px solid var(--color-gray-4);
    border-right: 1px solid var(--color-gray-4);
    text-align: center;
    padding: 15px 10px 10px;
    height: 100%;
}

.facility-tab li.active a {
    position: relative;
    color: var(--color-black-1);
    border-top: 1px solid var(--color-black-1);
    border-left: 1px solid var(--color-black-1);
    border-right: 1px solid var(--color-black-1);
    font-weight: 500;
}

.facility-tab li.active a::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-black-1);
}

.facility-tab li.active::after {
    border-bottom: 1px solid var(--color-black-1);
}

.facility-tab li a:hover {
    color: var(--color-green-1);
    border-top: 1px solid var(--color-black-1);
    border-left: 1px solid var(--color-black-1);
    border-right: 1px solid var(--color-black-1);
}

.facility-tab li:hover::after {
    border-bottom: 1px solid var(--color-black-1);
}

.facility-contents {
    gap: 50px;
}

.facility-contents,
.form-contents {
    display: flex;
    margin: 50px 0;
    align-items: flex-start;
}

.facility-contents>div {
    flex: 1;
}

.facility-contents-photo,
.facility-contents-detail {
    display: flex;
    flex-direction: column;
}

.facility-contents-photo {
    gap: 50px;
}

.facility-contents-photo img {
    width: 100%;
    height: auto;
}

.facility-contents-photo-gallery {
    display: grid;
}

/* モーダル */
.facility-contents-photo .img-modal-overlay,
.facility-contents-photo-gallery .img-modal-overlay {
    cursor: pointer;
    position: relative;
}

.facility-contents-photo-gallery .img-modal-overlay {
    flex: 1;
}

.facility-contents-photo .img-modal-overlay::before,
.facility-contents-photo-gallery .img-modal-overlay::before {
    content: url(../img/zoom.png);
    width: 18px;
    height: 18px;
    top: 5px;
    right: 5px;
    position: absolute;
    z-index: 2;
}

.facility-contents-photo .img-modal-overlay.fullscreen::before,
.facility-contents-photo-gallery .img-modal-overlay.fullscreen::before {
    display: none;
}

.facility-contents-photo .img-modal-overlay img,
.facility-contents-photo-gallery .img-modal-overlay img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* 画像モーダルウインド */
.img-modal-overlay {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.img-modal-overlay img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* 拡大時 */
.img-modal-overlay.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-white-1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* 拡大画像 */
.img-modal-overlay.fullscreen img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* ✕ 閉じるボタン */
.modal-close-btn {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 1em;
    color: var(--color-white-1);
    cursor: pointer;
    z-index: 9999;
    user-select: none;
    transition: opacity 0.3s ease;
    padding: 10px;
    background-color: var(--color-black-1);
}

/* 非モーダル時は非表示（任意） */
.img-modal-overlay:not(.fullscreen) .modal-close-btn {
    display: none;
}

.facility-contents-detail {
    border-left: 1px solid var(--color-black-1);
    border-bottom: 1px solid var(--color-black-1);
}

.facility-contents-detail h4 {
    margin-bottom: 50px;
}

.facility-contents-detail h6 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.facility-contents-detail p,
.facility-contents-detail ul {
    font-size: 1rem;
    margin-bottom: 50px;
}

.facility-contents-detail p span {
    font-size: 0.8rem;
}

.facility-contents-detail ul li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 1.5em;
    margin-bottom: 5px;
}

.accessories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.accessories>span {
    background-color: var(--color-black-1);
    color: var(--color-white-1);
    padding: 2px 5px;
}

.pages-wrap {
    border-left: 1px solid var(--color-black-1);
    border-right: 1px solid var(--color-black-1);
    border-bottom: 1px solid var(--color-black-1);
}

.news-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    gap: 10px;
}

.news-wrap a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-black-1);
    border-left: 1px solid var(--color-black-1);
    padding: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.news-wrap a:link,
.news-wrap a:visited {
    text-decoration: none;
}

.news-wrap a:hover {
    color: var(--color-green-1);
}

.news-wrap a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 21px;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.22 21.6'%3E%3Cpolyline fill='none' stroke='black' stroke-width='2' stroke-miterlimit='10' points='0.71 20.9 10.8 10.8 0.71 0.71'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.22 21.6'%3E%3Cpolyline fill='none' stroke='black' stroke-width='2' stroke-miterlimit='10' points='0.71 20.9 10.8 10.8 0.71 0.71'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    pointer-events: none;
}

.news-wrap a span {
    margin-right: 20px;
    font-size: 0.8rem;

}

.page-date {
    font-size: 0.8rem;
}

.page-txt {
    margin-top: 50px;
}



/*よくある質問*/
.faq-wrap,
.news-wrap {
    border-top: 1px solid var(--color-black-1);
}

.questionsContent :is(h6, p, ul, ol) {
    margin: 1em 0;
}

.accordion {
    width: 100%;
    border-left: 1px solid var(--color-black-1);
    border-bottom: 1px solid var(--color-black-1);
    overflow: hidden;
    margin: 10px 0;
    padding-left: 50px;
    position: relative;
}

.accordion::before {
    content: 'Q';
    position: absolute;
    color: var(--color-black-1);
    top: 10px;
    left: 20px;
    line-height: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    background: #fff;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.accordion-header>div {
    width: calc(100% - 50px);
}

.accordion-icon {
    position: absolute;
    width: 12px;
    height: 100%;
    aspect-ratio: 1;
    right: 15px;
    color: var(--color-black-1);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.3s;
}

.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.22 21.6'%3E%3Cpolyline fill='none' stroke='currentColor' stroke-width='2' stroke-miterlimit='10' points='0.71 20.9 10.8 10.8 0.71 0.71'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.accordion-header.active .accordion-icon {
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
}

/* アニメーションに必要な構造変更 */
.accordion-body {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    padding: 0 15px;
    font-size: 0.9em;
    line-height: 1.6;
}

.accordion-body-inner {
    padding: 15px 0;
}

.otherPagesWrap {
    margin: 50px 0;
}






/*/////////////////////////お問い合わせ///////////////////////*/

.form-contents {
    border-bottom: 1px solid var(--color-black-1);
    border-left: 1px solid var(--color-black-1);
    border-right: 1px solid var(--color-black-1);
    padding-bottom: 50px;
    position: relative;
    flex-wrap: nowrap;
}

.contact-contact,
.contact-quote {
    position: relative;
    z-index: 2;
}

.form-contents>div {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.form-contents>div.active {
    opacity: 1;
    display: block;
    pointer-events: auto;
}

#form {
    font-size: 0.9em;
    letter-spacing: 0.1em;
}

form>div {
    margin-bottom: 50px;
}

::placeholder,
#form select {
    color: var(--color-gray-3);
}

#form a:link,
#form a:visited {
    text-decoration: underline;
}

#form h5 {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 500;
}

#form h5 span {
    line-height: 1em;
}

#form h5 span::before {
    content: "必須";
    color: var(--color-white-1);
    background-color: var(--color-red-1);
    font-size: 10px;
    font-weight: 400;
    padding: 2px 5px;
    border-radius: 5px;
    display: inline-block;
    min-width: 2.5em;
    text-align: center;
}

#form .read-policy {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

#form p {
    margin: 10px 0px;
}

#form input[type=text],
#form input[type=email],
#form input[type=tel],
#form input[type=password],
#form select {
    width: 100%;
}

#form input[type=text],
#form input[type=email],
#form input[type=tel],
#form input[type=password],
#form select,
#form textarea {
    border: 1px solid var(--color-gray-2);
    background-color: var(--color-white-1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

/*上下間隔*/
.wpcf7-form-control-wrap {
    display: block;
}

/*ラジオボタン＆チェックボックス*/
#form input[type=radio],
#form input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

#form .wpcf7-list-item {
    display: block;
}

/* チェック前のボタン */

#form input[type="radio"]+.wpcf7-list-item-label,
#form input[type="checkbox"]+.wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 10px 0;
}

#form input[type="radio"]+.wpcf7-list-item-label::before,
#form input[type="checkbox"]+.wpcf7-list-item-label::before {
    display: inline-block;
    background-color: var(--color-white-1);
    border: 1px solid var(--color-gray-2);
    content: "";
    min-width: 20px;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: auto;
    margin-right: .5em;
    margin-top: auto;
    transition: background-color .5s;
}

#form input[type="checkbox"]+.wpcf7-list-item-label::before {
    border-radius: 15%;
}

#form input[type="radio"]+.wpcf7-list-item-label::before {
    border-radius: 9999px;
}

/* チェック後のボタン */
#form input[type="radio"]:checked+.wpcf7-list-item-label::before,
#form input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
    background-color: var(--color-red-1);
    box-shadow: inset 0 0 0 3px #fff;
}


/*送信ボタン*/
#form input[type=submit] {
    height: 50px;
    line-height: 1em;
    cursor: pointer;
    margin: 30px auto 0 auto;
    border-radius: 9999px;
    width: 100%;
    max-width: 500px;
    color: var(--color-white-1);
    background: var(--color-black-1);
    border: 2px solid var(--color-black-1);
}

#form input[type=submit]:hover {
    background-color: var(--color-white-1);
    color: var(--color-black-1);
    border: 2px solid var(--color-black-1);
}

.formCount {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--color-gray-3);
    font-size: 10px;
}

.privacy-box {
    background-color: var(--color-gray-1);
    padding: 20px 10px 20px 20px;
    border-radius: 15px;
    width: 100%;
    margin: 0 auto;
}

.privacy-content {
    max-height: 200px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 0.8rem;
    padding-right: 5px;
}

.privacy-content::-webkit-scrollbar {
    width: 8px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background-color: var(--color-gray-3);
    border-radius: 4px;
}

.formCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/*/////////////////////////CF7フォーム///////////////////////*/
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    min-height: 3em;
    padding: 10px;
}

.wpcf7 input:focus::placeholder,
.wpcf7 textarea:focus::placeholder {
    color: rgba(0, 0, 0, 0)
}

.wpcf7 input:focus::-webkit-input-placeholder,
.wpcf7 textarea:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.wpcf7 input[type="checkbox"] {
    width: 25px;
    height: 25px;
}

/* アラート */
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid var(--color-black-1);
    color: var(--color-black-1);
    border-radius: 10px;
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--color-black) !important;
    color: var(--color-black-1);
    background-color: var(--color-black);
    border-radius: 10px;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: var(--color-red-1);
    color: var(--color-red-1);
    border-radius: 10px;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: var(--color-black);
    color: var(--color-black);
    border-radius: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: var(--color-red-1) !important;
    color: var(--color-red-1);
    border-radius: 10px;
}

.wpcf7-not-valid-tip {
    font-size: small;
}

.screen-reader-response {
    display: none;
}




/*==============================================================================================
●PCサイズ
==============================================================================================*/

@media screen and (min-width: 1280px) {

    .sp,
    .tb,
    .tableTb {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    .menu-container {
        display: none;
    }

    .kv-head-logo img {
        width: 150px;
        height: auto;
    }

    /*/////////////////////////フッター///////////////////////*/
    footer {}



    /*/////////////////////////共通レイアウト///////////////////////*/

    .container {
        width: var(--width-pc);
    }

    .pagination {
        font-size: 1.5rem;
    }

    .swiper-pagination-bullet {
        min-width: 4%;
    }

    .swiper-pagination-bullet-active {
        min-width: 6% !important;
    }

    .breadcrumb,
    .breadcrumb2 {
        top: 160px;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .kv-wrap,
    .top-news-wrap,
    .top-facility,
    .top-facility-wrap-txt,
    .top-access,
    .top-access-txt,
    .facility,
    .facility-title {
        padding: 50px;
    }

    .kv-head {
        padding: 25px;
    }

    .kv {
        aspect-ratio: 16 / 9;
    }



    .kv-catch,
    .kv-catch-page {
        bottom: 25px;
        right: 25px;
    }

    .kv-catch-page {
        width: 40%;
    }

    .kv-catch1 {
        font-size: 2rem;
    }

    .kv-phone {
        bottom: 25px;
        left: 25px;
    }

    .top-news-catch,
    .top-facility-wrap-image,
    .top-access-map {
        flex: 1;
    }

    .top-news,
    .top-facility-wrap-txt {
        width: 500px;
        flex-shrink: 0;
    }

    .top-access-txt {
        max-width: 50%;
        flex-shrink: 0;
    }

    .top-facility-wrap-reverse {
        flex-direction: row-reverse;
    }

    .top-facility-wrap-title {
        display: none;
    }

    .top-access-txt {
        padding: 10px 30px;
    }

    .top-access-txt>div {
        min-width: 185px;
    }

    /*/////////////////////////ページ///////////////////////*/
    .facility-tab.tab-stay {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .facility-contents-detail {
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .facility-contents-photo-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .pages-wrap {
        padding: 0 50px 50px 50px;
    }

    .modal-close-btn::after {
        content: 'クリックで閉じる';
    }


    /*/////////////////////////お問い合わせ///////////////////////*/
    .form-contents>div {
        flex: 1;
        display: block;
        opacity: 0.3;
        pointer-events: none;
        margin-bottom: 50px;
    }

    .contact-contact {
        padding-right: 50px;
    }

    .contact-quote {
        padding-left: 50px;
    }

    .form-contents>div.active {
        opacity: 1;
        pointer-events: auto;
    }

    .form-contents::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 50px;
        left: 50%;
        width: 1px;
        background: var(--color-black-1);
        z-index: 1;
    }

    #form {
        padding: 0 50px;
    }

    #contactAcademy {
        padding: 100px 50px 50px 50px;
    }

    .academyContactWrap {
        padding: 70px 0;
    }




}


/*==============================================================================================
●タブレットサイズ
==============================================================================================*/

@media screen and (min-width: 450px) and (max-width: 1279px) {

    .sp,
    .pc,
    .pcreserve,
    .tablePc {
        display: none !important;
    }

    .tb {
        display: block !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    .kv-head-logo img {
        width: 120px;
        height: auto;
    }

    /*/////////////////////////スマホメニュー///////////////////////*/


    /*/////////////////////////フッター///////////////////////*/
    footer {}

    .fmenus,
    .fmenus-r,
    .fmenus-etc,
    .fmenus-r ul {
        flex-direction: column;
        align-items: center;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/

    .container {
        width: var(--width-tb);
    }

    .pagination {
        font-size: 1.5rem;
    }

    .swiper-pagination-bullet {
        min-width: 5%;
    }

    .swiper-pagination-bullet-active {
        min-width: 7% !important;
    }

    .breadcrumb,
    .breadcrumb2 {
        top: 140px;
    }

    /*/////////////////////////トップページ///////////////////////*/

    .kv-wrap,
    .top-news-wrap,
    .top-facility,
    .top-facility-wrap-txt,
    .top-access,
    .facility,
    .facility-title {
        padding: 30px;
    }

    .kv {
        aspect-ratio: 1;
    }



    .kv-head {
        padding: 25px;
    }

    .kv-head-menu-wrap {
        display: none;
    }

    .kv-catch {
        font-size: 2.3vw;
    }

    .kv-catch {
        bottom: 25px;
        right: 25px;
    }

    .kv-catch-page {
        width: calc(100% - 50px);
        bottom: 25px;
        left: 25px;
    }

    .kv-catch1 {
        font-size: 4vw;
    }

    .kv-phone {
        bottom: 25px;
        left: 25px;
    }

    .top-news-wrap,
    .top-facility-wrap,
    .top-access-wrap {
        flex-direction: column;
    }

    .top-news-catch,
    .top-news,
    .top-facility-wrap-image,
    .top-facility-wrap-txt,
    .top-access-map,
    .top-access-txt {
        width: 100%;
    }

    .top-facility-wrap-txt h1,
    .top-facility-wrap-txt h6 {
        display: none;
    }

    .top-access-txt {
        padding: 30px 0;
    }

    /*/////////////////////////ページ///////////////////////*/

    .facility-contents {
        flex-direction: column-reverse;
    }

    .facility-tab.tab-stay {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .facility-contents-detail {
        padding-left: 30px;
        padding-bottom: 30px;
    }

    .facility-contents-photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pages-wrap {
        padding: 0 30px 30px 30px;
    }

    .modal-close-btn::after {
        content: 'クリックで閉じる';
    }




    /*/////////////////////////お問い合わせ///////////////////////*/
    .form-contents {
        flex-direction: column;
    }

    .form-contents>div {
        display: none;
        width: 100%;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .form-contents>div.active {
        display: block;
    }

    /* 縦線は非表示 */
    .form-contents::before {
        display: none;
    }

    #form {
        padding: 0 30px;
    }





}


/*==============================================================================================
●スマホサイズ
==============================================================================================*/

@media screen and (max-width: 449px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .sp,
    .tb {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    .kv-head-logo img {
        width: 100px;
        height: auto;
    }

    /*/////////////////////////メニュー///////////////////////*/





    /*/////////////////////////フッター///////////////////////*/
    .fmenus,
    .fmenus-r,
    .fmenus-etc,
    .fmenus-r ul {
        flex-direction: column;
        align-items: center;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/
    .button,
    .button2 {
        width: 100%;
    }

    .container {
        width: var(--width-sp);
    }

    .pagination {
        font-size: 1.2rem;
    }

    .swiper-pagination-bullet {
        min-width: 10%;
    }

    .swiper-pagination-bullet-active {
        min-width: 15% !important;
    }

    .breadcrumb,
    .breadcrumb2 {
        top: 120px;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .kv-wrap,
    .top-facility,
    .top-facility-wrap-txt,
    .top-access,
    .facility,
    .facility-title {
        padding: 30px;
    }

    .facility-title h1 {
        font-size: 1.8em;
    }

    .kv {
        width: 100%;
        aspect-ratio: unset !important;
        height: calc(100dvh - 60px) !important;
        max-height: 900px;
    }

    .kv-head {
        padding: 15px;
    }

    .kv-head-menu-wrap {
        display: none;
    }

    .kv-catch {
        bottom: 40px;
        right: 15px;
    }

    .kv-catch-page {
        width: calc(100% - 30px);
        font-size: 0.6rem;
        bottom: 15px;
        left: 15px;
    }

    .kv-catch1 {
        font-size: 1.7rem;
    }

    .kv-phone {
        bottom: 40px;
        left: 15px;
    }

    .top-news-wrap {
        flex-direction: column;
    }

    .top-news-catch,
    .top-news,
    .top-facility-wrap-image,
    .top-facility-wrap-txt,
    .top-access-map,
    .top-access-txt {
        width: 100%;
    }

    .top-facility-wrap,
    .top-access-wrap,
    .top-access-txt {
        flex-direction: column;
    }

    .top-facility-wrap-txt h1,
    .top-facility-wrap-txt h6 {
        display: none;
    }

    .top-facility-wrap-title {
        font-size: 0.8em;
    }

    .top-access-txt {
        padding: 30px 0;
    }

    /*/////////////////////////ページ///////////////////////*/
    .facility-tab li a {
        font-size: 0.8rem;
    }

    .facility-contents {
        flex-direction: column-reverse;
    }

    .facility-tab.tab-stay {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .facility-contents-detail {
        padding-left: 30px;
        padding-bottom: 30px;
    }

    .facility-contents-photo-gallery {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .pages-wrap {
        padding: 0 30px 30px 30px;
    }

    .modal-close-btn::after {
        content: 'タップで閉じる';
    }

    /*/////////////////////////お問い合わせ///////////////////////*/
    .form-contents {
        flex-direction: column;
    }

    .form-contents>div {
        display: none;
        width: 100%;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .form-contents>div.active {
        display: block;
    }

    /* 縦線は非表示 */
    .form-contents::before {
        display: none;
    }

    #form {
        padding: 0 30px;
    }


}