@charset "UTF-8";
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
            recet css
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: 500;
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}
a {
    text-decoration: none;
    overflow: hidden;
    color: #333;
}
img {
    border: none;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
}
ul {margin: 0;padding: 0;}
ol {margin: 0;padding: 0;}
li {margin: 0;padding: 0;}
dl {margin: 0;padding: 0;}
dt {margin: 0;padding: 0;}
dd {margin: 0;padding: 0;}
p {
    margin: 0;
    padding: 0;
    font-feature-settings: "palt" 1;
}
span {
    font-feature-settings: "palt" 1;
}
address {font-style: normal;}
* {
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
figure {margin: 0;}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
        セクション間余白
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.mv {margin-bottom: 80px;}
@media screen and (max-width: 768px) {
    .mv {margin-bottom: 40px;}
}
.inrtoduction {margin-top: 80px;}
@media screen and (max-width: 500px) {
    .inrtoduction {margin-top: 40px;}
}
.access {margin-top: 40px;}

.info,
.amenity,
.other,
.reserve {margin-bottom: 80px;}
@media screen and (max-width: 500px) {
    .info,
    .amenity,
    .other,
    .reserve {margin-bottom: 40px;}
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                共通パーツ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
    overflow-x: hidden;
    letter-spacing: 0.1em;
    height: 100%;
    margin: 0;
    font-feature-settings: 'palt';
    font-family: YakuHanRPs,"Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    background-color: #ffffff;
    color: #333;
}
@media screen and (max-width: 500px) {
    body {font-size: 14px;}
}

main {
    width: 100%;
    margin-bottom: 60px;
}

.pc {display: block !important;}
.sp {display: none !important;}
@media screen and (max-width: 768px) {
    .pc {display: none !important;}
    .sp {display: block !important;}
}

.content-wrap {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .content-wrap {width: 95%;}
}

.anker-margin {height: 60px;}
@media screen and (max-width: 500px) {
    .anker-margin {height: 30px;}
}


/* 見出し */
.heading {
    text-align: center;
    margin-bottom: 1em;
}
.heading-main {
    display: inline-block;
    font-size: 22px;
    background:linear-gradient(transparent 60%, #eeeeee 60%);
    padding: 0.2em 0.5em;
}
@media screen and (max-width: 500px) {
    .heading-main {font-size: 18px;}
}

.heading-note {
    display: block;
    font-size: 80%;
    margin-top: 4px;
}

/* ボタン */
.btn-wrap {
    margin: 2em 0 0;
}
.btn {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 5px;
    padding: 1em;
    text-decoration: none;
    transition: .3s;
    background-color: #4B4B4B;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        background-color: #000;
    }
}

.btn_text {
    display: block;
    flex-grow: 1;
    text-align: center;
    position: relative;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
}
@media screen and (max-width: 500px) {
    .btn_text {
        font-size: 16px;
    }
}
.btn_text::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
}

.btn-gallery {
    background-color: #838383;
}

.btn-gallery .btn:hover .btn_text::after {
    content: "";
}

.anker {
    text-decoration: underline;
}


/* 区切り画像 */
.separator-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
    .separator-wrap {
        width: 96%;
    }
}
@media screen and (max-width: 500px) {
    .separator-wrap {
        margin: 0 auto 40px;
    }
}

.separator-single {
    width: 100%;
    aspect-ratio: 4 / 1;
}
@media screen and (max-width: 768px) {
    .separator-single {
        aspect-ratio: 2 /  1;
    }
}

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

.separator-double {
    width: 100%;
    display: flex;
    justify-content: space-between;
    aspect-ratio: 4 / 1;
}
@media screen and (max-width: 768px) {
    .separator-double {
        aspect-ratio: 2 /  1;
    }
}

.separator-double img {
    width: 48%;
    height: 100%;
    object-fit: cover;
}


/* table */
.table,
.table td,
.table th {
    border: 1px solid #707070;
	border-collapse: collapse;
}
.table td,
.table th {
	padding: 10px;
    background-color: #FFF;
}
@media screen and (max-width: 768px) {
    .table td,
    .table th {
        padding: 10px 5px;
    }
}

.table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .table {
        font-size: 14px;
    }
}
.table td:first-child {
    background-color: #eeeeee;
}

.transactions-table {
    font-size: 14px;
}

.transactions-table td:first-child {
    width: 200px;
}
@media screen and (max-width: 500px) {
    .transactions-table td:first-child {
        width: 40%;
    }
}

@media screen and (max-width: 500px) {
    .info-table td:first-child {
        width: 40%;
    }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    z-index: 20;
    font-size: 14px;
    letter-spacing: 0.09em;
    background-color: #FFF;
    padding: 10px 30px;
    align-items: center;
    transition: transform 0.5s;
    height: 80px;
}

.js_hide {
    transform: translateY(-100%);
}

@media screen and (max-width: 870px) {
    .header {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 25px 10px;
        height: 60px;
    }
}

.header-logo {
    display: flex;
    align-items: flex-end;
    font-size: 18px;
    padding-right: 10px;
}

.header-logo img {
    width: 120px;
}
@media screen and (max-width: 768px) {
    .header-logo img {
        width: 100px;
    }
}

.header-logo a {
    color:#838383;
}

.header-inner {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.header-txt {
    color: #838383;
    font-size: 14px;
    width: 300px;
    padding-right: 40px;
    text-align: right;
}
@media screen and (max-width: 400px) {
    .header-txt {
        font-size: 12px;
        width: 200px;
        text-align: start;
    }
}
@media screen and (max-width: 350px) {
    .header-txt {
        display: none;
    }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                header-menu
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* トグルボタン　*/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
@media screen and (max-width: 768px) {
    .menu-btn {
        top: 10px;
        right: 10px;
        height: 40px;
        width: 40px;
    }
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #838383;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #FFF;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #FFF;
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #4B4B4B;
    transition: all 0.5s;
}

#menu-btn-check:checked ~ .menu-content {
    left: 40%;
}
.menu-content ul {
    padding: 100px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 20px 15px 20px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 26px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
    ローディング画面
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.fadeIn {display: none;}

#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #FFF;
    z-index: 999;
    inset: 0;/* 画面全体に要素を広げる */
    display: grid;/* 子要素をグリッドで配置 */
    place-items: center;/* 子要素を中央へ */
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* ロードが完了した時 */
.loadEnd {
    opacity: 0;
    visibility: hidden;
}

/* ロードアニメーション */
.loader {
    margin: 100px auto;
    font-size: 16px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    text-align: center;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
@-webkit-keyframes load5 {
0%,
100% {
    box-shadow: 0em -2.6em 0em 0em #838383, 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.5), -1.8em -1.8em 0 0em rgba(131,131,131, 0.7);
}
12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.7), 1.8em -1.8em 0 0em #838383, 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.5);
}
25% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.5), 1.8em -1.8em 0 0em rgba(131,131,131, 0.7), 2.5em 0em 0 0em #838383, 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.5), 2.5em 0em 0 0em rgba(131,131,131, 0.7), 1.75em 1.75em 0 0em #838383, 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
50% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.5), 1.75em 1.75em 0 0em rgba(131,131,131, 0.7), 0em 2.5em 0 0em #838383, -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.5), 0em 2.5em 0 0em rgba(131,131,131, 0.7), -1.8em 1.8em 0 0em #838383, -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
75% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.5), -1.8em 1.8em 0 0em rgba(131,131,131, 0.7), -2.6em 0em 0 0em #838383, -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.5), -2.6em 0em 0 0em rgba(131,131,131, 0.7), -1.8em -1.8em 0 0em #838383;
}
}
@keyframes load5 {
0%,
100% {
    box-shadow: 0em -2.6em 0em 0em #838383, 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.5), -1.8em -1.8em 0 0em rgba(131,131,131, 0.7);
}
12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.7), 1.8em -1.8em 0 0em #838383, 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.5);
}
25% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.5), 1.8em -1.8em 0 0em rgba(131,131,131, 0.7), 2.5em 0em 0 0em #838383, 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.5), 2.5em 0em 0 0em rgba(131,131,131, 0.7), 1.75em 1.75em 0 0em #838383, 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
50% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.5), 1.75em 1.75em 0 0em rgba(131,131,131, 0.7), 0em 2.5em 0 0em #838383, -1.8em 1.8em 0 0em rgba(131,131,131, 0.2), -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.5), 0em 2.5em 0 0em rgba(131,131,131, 0.7), -1.8em 1.8em 0 0em #838383, -2.6em 0em 0 0em rgba(131,131,131, 0.2), -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
75% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.5), -1.8em 1.8em 0 0em rgba(131,131,131, 0.7), -2.6em 0em 0 0em #838383, -1.8em -1.8em 0 0em rgba(131,131,131, 0.2);
}
87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(131,131,131, 0.2), 1.8em -1.8em 0 0em rgba(131,131,131, 0.2), 2.5em 0em 0 0em rgba(131,131,131, 0.2), 1.75em 1.75em 0 0em rgba(131,131,131, 0.2), 0em 2.5em 0 0em rgba(131,131,131, 0.2), -1.8em 1.8em 0 0em rgba(131,131,131, 0.5), -2.6em 0em 0 0em rgba(131,131,131, 0.7), -1.8em -1.8em 0 0em #838383;
}
}





/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                mv
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.mv {
    background-color: #FFF;
    width: 100%;
    position: relative;
}

.slide-items {
    width: 100%;
    padding-top: 80px;
}
@media screen and (max-width: 768px) {
    .slide-items {
        padding-top: 50px;
    }
}

.slide-items img {
    display: block;
    /* width: 100%; */
}


.slide-items li {
    height: 100%;
}

.slide-items li img {
    width: 100%;
}


/*■■■■■■■■■■■■■■■■■
slick 編集用
■■■■■■■■■■■■■■■■■*/
.slick-slide {
    aspect-ratio: 16 / 9;
}
@media screen and (max-width: 500px) {
    .slick-slide {
        aspect-ratio: 4 / 3;
    }
}

.slick-dots li button:before {
    font-size: 60px;
    top: 6px;
}
@media screen and (max-width: 768px) {
    .slick-dots li button:before {
        font-size: 30px;
        top: 3px;
    }
}

.slick-prev,
.slick-next {
    display: none;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
	color: #838383 !important;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
introduction
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.introduction-head {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .introduction-head {
        font-size: 20px;
    }
}
@media screen and (max-width: 500px) {
    .introduction-head {
        font-size: 16px;
    }
}

.inrtoduction-txt {
    line-height: 1.6;
    margin-bottom: 40px;
}


.introduction-inner {
    margin-top: 40px;
}

.introduction-img {
    width: 100%;
    margin: 0 auto;
}
.introduction-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.info-table-anker {
    color: #838383;
    font-weight: 500;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
アイコン説明
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.icon-outer {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.icon-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 0 auto 40px;
    list-style-type: none;
    justify-content: center;
}
@media screen and (max-width: 500px) {
    .icon-wrap {
        gap: 20px;
    }
}

.icon-item {
    width: 13%;
    text-align: center;
}
@media screen and (max-width: 500px) {
    .icon-item {
        width: 20%;
    }
}

.icon-name {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}
@media screen and (max-width: 400px) {
    .icon-name {
        font-size: 10px;
    }
}


.icon-img-wrap {
    border: 2px solid #000;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 10%;
    box-sizing:border-box;     /* 枠・余白込みで計算 */
    display:flex;              /* 中央寄せ */
    align-items:center;
    justify-content:center;
    overflow:hidden;   /* 念のためはみ出し防止 */
}
.icon-img {
    width: 80%;
    height: 80%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}


.sub-txt {
    font-size: 14px;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 1em;
}
@media screen and (max-width: 500px) {
    .sub-txt {
        font-size: 12px;
    }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
文章説明
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.description-wrap {
    padding: 20px 0 20px;
    border-bottom: 1px solid #eeeeee;
}
.description-head {
    font-size: 18px;
    margin-bottom: 4px;
}
@media screen and (max-width: 500px) {
    .description-head {
        font-size: 16px;
    }
}

.description-txt {
    padding-left: 1em;
    text-indent: -1em;
}

.description-txt-noindent {
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                map
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.access {
    margin-bottom: 0 !important;
}

.googlemap {
    margin: 0 auto;
    width: 100%;
}
.googlemap iframe {
    width: 100%;
}

.map-address {
    margin-top: 20px;
}

.access-list-item {
    display: flex;
}
.access-list-item:not(:last-child) {
    margin-bottom: 0.5em;
}

.access-list-item dt {
    width: 80px;
    position: relative;
}
@media screen and (max-width: 500px) {
    .access-list-item dt {
        width: 20%;
    }
    .access-list-item dd {
        width: 80%;
    }
}

.access-list-item dt::after {
    content:"：";
    position: absolute;
    right: 0%;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                resarve
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.iframe-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 700px;
    overflow: hidden;
}
@media screen and (max-width: 980px) {
    .iframe-wrapper {
        padding-bottom: 1100px;
        overflow: hidden;
    }
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                followBtn
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.followBtn {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 100px;
    background: #fff;
    border: solid 2px #838383;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.followBtn__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #838383;
    border-right: 3px solid #838383;
    transform: translateY(20%) rotate(-45deg);
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
                footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
    position: relative;
    padding-bottom: 80px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #eeeeee;
}

.footer-wrap {
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}
.footer-wrap .btn {
    width: 100%;
    max-width: none;
    border-radius: 0;
}

.footer-sub {
    display: flex;
}

.footer-icon {
    margin-right: 10px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
              下層  gallery
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.gallery {
    padding-top: 100px;
}
.gallery-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.gallery-full {
    width: 100%;
    margin-bottom: 20px;
}
.gallery-harf {
    width: 49%;
    margin-bottom: 20px;
}
.gallery-wrap figure img {
    width: 100%;
}

.gallery-return-wrap {
    display: block;
    text-align: center;
    margin-top: 20px;
}
.gallery-return-wrap a {
    text-decoration: underline;
}

h3.gallery-heading {
    font-size: 18px;
    margin-bottom: 10px;
}