@charset "utf-8";

/*
Theme Name: hotel-nagisa
Version: 1
Template: wp-base
*/

/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */

/* カラー */
:root {
   --color-main: #284874;
   --color-base: #1a1a1a;
   --color-white: #fff;
   --color-gray: #9a9a9a;
   --color-darkgray: #555;
   --color-lightgray: #cacaca;
   --color-gold: #a89459;
   --color-gold-2: #927f47;
   --color-bg-white: #fff;
   --color-bg-lightgray: #f7f7f7;
   --color-bg-lightblue: #f0f4f8;
   --color-bg-sand01: #f9f8f6;
   --color-bg-sand02: #f1efed;
   --color-bg-dark-blue: #13315b;
   --color-bg-dark: #313131;
}

/* コンテナ幅 */
:root {
   --width-content: 1264px;
   --width-content-narrow: 960px;
   --width-content-wide: 1920px;
}

/* ***************************************************************** 
*	基本設定
* ***************************************************************** */
*,
*:before,
*:after {
   box-sizing: inherit;
}

html {
   box-sizing: border-box;
}

body {
   font-family: 'Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   font-size: 16px;
   color: var(--color-base);
   line-height: 1.75;
   letter-spacing: 0.05em;
   word-break: break-all;
   overflow-wrap: break-word;
}

/* Remove default margin padding
---------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
   margin: 0;
   padding: 0;
}


/* 見出し
---------------------------------------------------- */
h1 {
   font-size: 28px;
}

h2 {
   font-size: 26px;
}

h3 {
   font-size: 24px;
}

h4 {
   font-size: 20px;
}

h5 {
   font-size: 18px;
}

h6 {
   font-size: 16px;
}
@media ( max-width: 767px){
   h1 {
      font-size: 21px;
   }
   
   h2 {
      font-size: 21px;
   }
   
   h3 {
      font-size: 19px;
   }
   
   h4 {
      font-size: 17px;
   }
}
/* リンク
---------------------------------------------------- */

a {
   color: var(--color-base);
   transition: 0.5s;
   text-decoration: none;
}

a:visited {
   color: inherit;
}

a:hover {
   color: var(--color-base);
   opacity: .6;
   text-decoration: underline;
}

a:active,
a:focus {
   outline: 0;
}

a.wp-block-file__button,a:visited.wp-block-file__button,a:active.wp-block-file__button,a:hover.wp-block-file__button {
   color: #fff;
   text-decoration: none !important;
}

/* リスト
---------------------------------------------------- */
ul,
ol {
   list-style: none;
}

/* 画像
---------------------------------------------------- */
img {
   max-width: 100%;
   height: auto;
   vertical-align: bottom;
}
/* *****************************************************************
*	アンカーリンクのターゲット位置
* ***************************************************************** */
:root {
   --header: 96px;
   scroll-padding: var(--header);
   scroll-behavior: smooth;
}

/* ***************************************************************** 
*	ヘッダー
* ***************************************************************** */
.header {
   display: block;
}
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-left: 3%;
   padding-right: 0;
   width: 100%;
   height: var(--header);
   background-color: rgba(255, 255, 255, 1);
   transition: .5s;
   z-index: 999;
}

@media screen and (min-width: 768px) {
   .home .site-header {
      background-color: rgba(255, 255, 255, 1);
      box-shadow: none;
   }
}

.site-branding {
   max-width: 210px;
}

.site-ttl {
   line-height: 1.3;
}

.site-text {
   font-size: 11px;
   line-height: 1;
   letter-spacing: normal;
   font-weight: 400;
   color: var(--color-base);
}

.site-logo {
   width: 220px;
   vertical-align: middle;
   transition: .5s;
}

.main-navigation {
   width: auto;
}

.main-navigation .menu {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: 1.6vw;
}

.sitenav {
   display: flex;
   align-items: center;
}

.main-navigation .menu-item a {
   color: var(--color-base);
   font-size: 15px;
   font-weight: 600;
   line-height: 1.4;
   letter-spacing: 0.02em;
   text-decoration: none;
}

.main-navigation .menu-item a:hover {
   text-decoration: none;
   opacity: 1;
}

.home .main-navigation .menu-item a {
   color: var(--color-base);
}

/* ヘッダーアニメーション */
.site-header.is-animation {
   height: 70px;
   background-color: #fff;
   box-shadow: 0 2px 3px rgba(0, 0, 0, .05);
}

.is-animation .main-navigation .menu-item a {
   color: var(--color-base);
}

.is-animation .header-contact-btn a {
   height: 70px;
}

.main-navigation .menu-item a:hover {
   opacity: .6;
}

.nav-logo {
   display: none;
}

@media screen and (min-width: 981px) and (max-width: 1279px) {
   .site-branding {
      width: 160px;
   }
   .main-navigation .menu-item a {
      font-size: 1.2vw;
   }
}

@media screen and (max-width: 979px) {
   .site-header {
      padding-left: 32px;
   }

   .site-branding {
      width: 160px;
   }

   .site-text {
      font-size: 10px;
   }

   .main-navigation {
      width: 100%;
   }

   .nav-logo {
      display: block;
      width: 200px;
      margin-inline: auto;
   }

   /*SPメニュー*/
   #site-navigation {
      visibility: hidden;
      position: fixed;
      opacity: 0;
      top: 0;
      left: 0;
      max-width: 100%;
      height: 100vh;
      background: #fefefe;
      transition: all .5s;
   }

   /*アクティブクラスがついたら透過なしにして最前面へ*/
   #site-navigation.panelactive {
      visibility: inherit;
      opacity: 1;
      z-index: 999;
   }

   /*スクロールさせない*/
   .noscroll {
      overflow: hidden;
   }

   /*ナビゲーションの縦スクロール*/
   #site-navigation.panelactive #site-navigation-list {
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
   }

   .sitenav {
      display: none;
      position: absolute;
      max-width: 100%;
      z-index: 999;
      top: 42%;
      left: 50%;
      transform: translate(-50%, -50%);
   }

   #site-navigation.panelactive .sitenav {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }

   #site-navigation.panelactive .sitenav ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-top: 24px;
      gap: 0;
      max-width: 100%;
   }

   #site-navigation.panelactive .sitenav ul li a {
      display: block;
      width: 100%;
      font-size: 15px;
      margin: 12px 0;
      color: var(--color-base);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
   }

   /*リストのレイアウト設定*/
   #site-navigation ul li {
      text-align: center;
   }

   /*Toggle Button*/
   .navBtn {
      position: absolute;
      z-index: 9999;
      right: 10px;
      cursor: pointer;
      width: 60px;
      height: 50px;
   }

   .navBtn span {
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 15px;
      height: 2px;
      border-radius: 2px;
      background-color: #111;
      width: 50%;
   }

   .navBtn span:nth-of-type(1) {
      top: 15px;
   }

   .navBtn span:nth-of-type(2) {
      top: 23px;
   }

   .navBtn span:nth-of-type(3) {
      top: 31px;
   }

   .navBtn.active span:nth-of-type(1) {
      top: 18px;
      left: 15px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
   }

   .navBtn.active span:nth-of-type(2) {
      opacity: 0;
   }

   .navBtn.active span:nth-of-type(3) {
      top: 30px;
      left: 15px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
   }
}

@media screen and (max-width: 767px) {
   .site-header {
      justify-content: center;
      padding-left: 0;
      height: 70px;
      box-shadow: 0 2px 3px rgba(0, 0, 0, .05);
   }
}

/*ヘッダーコンタクトボタン*/
.header-contact-btn {
   margin-left: 40px;
}

.header-contact-btn i {
   margin-right: 4px;
}

.header-contact-btn a {
   position: relative;
   height: var(--header);
   display: flex;
   justify-content: center;
   align-items: center;
   width: 140px;
   color: #fff;
   font-size: 15px;
   font-weight: 600;
   text-decoration: none;
   background-color: var(--color-main);
}

.header-contact-btn a:hover {
   opacity: .7;
}

@media screen and (min-width: 981px) and (max-width: 1279px) {
   .header-contact-btn {
      margin-left: 24px;
   }

   .header-contact-btn a {
      font-size: 14px;
   }
}

@media screen and (max-width: 979px) {
   .header-contact-btn {
      margin-top: 24px;
      margin-left: 0;
   }

   .header-contact-btn a {
      width: 240px;
      height: 48px;
      font-size: 14px;
      border-radius: 50vh;
   }
}

/* *****************************************************************
*	メインビジュアル(スライドなし)
* ***************************************************************** */
.home-mv {
   position: relative;
	max-width: 100vw;
   height: calc(100vh - 100px);
   /*ヘッダーの高さをマイナス。必要なければheight:100vhに。*/
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   background-image: url(./images/mv/mv_001.jpg);
}

.home-mv .home-mv-inner {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   max-width: 1280px;
   height: 100%;
   margin: 0 auto;
}

/* *****************************************************************
*	メインビジュアル(swiper)
* ***************************************************************** */
.home-mv-slide {
   margin-top: 96px;
	max-width: 100vw;
   height: calc(100vh - 96px);
	position: relative;
	overflow: hidden;
}

@keyframes zoomUp {
   0% {
      transform: scale(1);
   }

   100% {
      transform: scale(1.15);
   }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
   animation: zoomUp 12s linear infinite 0s;
}

.swiper-slide img {
   height: auto;
   width: 100%;
}
.slide-img img {
   object-fit: cover;
   height: 100vh;
   width: 100vw;
}
.slide-img::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, .1);
}

.swiper-button-next, .swiper-button-prev {
   top: calc(50% - 50px) !important;
   color: #fff !important;
}
.swiper-button-next:after, .swiper-button-prev:after  {
   font-size: 32px !important;
}
@media screen and (max-width: 767px) {
   .home-mv-slide  {
      margin-top: 70px;
      height: calc(66vh - 70px);
   }
   .slide-img img {
      height: calc(66vh - 70px);
   }
   .swiper-button-next, .swiper-button-prev {
      top: 50% !important;
   }
   .swiper-button-next:after, .swiper-button-prev:after  {
      font-size: 20px !important;
   }
}

/* *****************************************************************
*	スライダー内テキスト
* ***************************************************************** */
.mv-text{
	position: absolute;
	top: 50%;
	left: 50%;
   width: 100%;
	color: #fff;
	text-align: center;
	text-shadow: 0px 0px 6px #111;
	line-height: 1.5;
	transform: translate(-50%, -100%);
   z-index: 99;
   opacity: 0;
}

.mv-text .lead {
   display: flex;
   justify-content: center;
   font-size: 2.8vw;
   font-weight: 400;
}
.mv-text .lead-sub {
   margin: 24px 0 0;
   font-size: 28px;
}
/* アニメーションのキーフレーム設定 */
@keyframes fade-text {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}
/* テキストのアニメーション設定 */
.swiper-slide-active .mv-text {
   animation-name: fade-text;
   animation-delay: 1.0s;
   animation-duration: 1.0s;
   animation-fill-mode: forwards;
   animation-timing-function: ease-in-out;
}
@media screen and (max-width: 979px) {
   .mv-text .lead {
   font-size: 4vw;
   }
}


/* *****************************************************************
*	layout
* ***************************************************************** */

.wrapper {
   padding: 100px 0 120px 0;
   background-color: var(--color-bg-sand01);
}

.l-container {
   margin: 0 auto;
   padding: 0 32px;
   max-width: var(--width-content);
}
._narrow {
   max-width: var(--width-content-narrow);
}
.l-container .widget-area {
   margin-top: 120px;
}

.l-container-2columns {
   display: flex;
   justify-content: space-between;
   margin: 0 auto;
   padding: 0 32px;
   max-width: var(--width-content);
}

.l-container-2columns .site-main {
   width: calc(100% - 364px);
}

.l-container-2columns .widget-area {
   width: 300px;
}

@media screen and (max-width: 960px) {
   .wrapper {
      padding: 80px 0 120px 0;
   }
   .l-container {
      padding: 0 16px;
   }
   .l-container-2columns {
      display: block;
      width: 100%;
      padding: 0 16px;
   }

   .l-container-2columns .site-main {
      width: 100%;
   }

   .l-container-2columns .widget-area {
      margin-top: 80px;
      width: 100%;
   }
}
@media screen and (max-width: 767px) {
   .wrapper {
      padding: 48px 0 80px 0;
   }
}

/* *****************************************************************
*	#primary
* ***************************************************************** */
#primary .wp-block-heading {
   margin: 40px 0;
}

/* *****************************************************************
*	#secondary
* ***************************************************************** */
#secondary .wp-block-heading {
   margin: 0 0 10px;
   padding: 0 0 10px;
   font-size: 16px;
   border-bottom: 1px solid var(--color-lightgray);
}

#secondary .widget ul li {
   padding: .8em 0;
   font-size: 14px;
   border-bottom: 1px dotted var(--color-lightgray);
}

.widget_block + .widget_block{
   margin-top: 40px;
}

/* *****************************************************************
*	.widget
* ***************************************************************** */
.widget {
   margin: 32px 0 0;
}

.widget:first-child {
   margin-top: 0;
}
.wp-block-latest-posts__post-date {
   color: var(--color-gray);
}

/* *****************************************************************
*	#footer
* ***************************************************************** */
.site-footer {
   background-color: var(--color-bg-sand01);
}

.site-footer-container {
   max-width: var(--width-content);
   margin: 0 auto;
   padding-top: 80px;
   padding-bottom: 80px;
   padding-left: 32px;
   padding-right: 32px;
}

.site-footer-column {
   display: flex;
   justify-content: space-between;
}

.site-info {
   width: 50%;
}

.site-info a {
   color: var(--color-base);
}

.site-info .footer-logo {
   width: 220px;
   filter: brightness(0) invert(1);
}

.site-info .subtitle {
   font-size: 14px;
}
.site-info .title {
   font-size: 24px;
   letter-spacing: .1em;
}

.site-info .address {
   margin: 1em 0 0;
   font-size: 14px;
}
.site-info .tel {
   font-size: 14px;
   letter-spacing: .1em;
}
.site-info .sns {
   margin: 2em 0 0;
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
}
.site-info .sns .icon{
   width: 20px;
   line-height: 1;
}
.site-info .link {
   margin: 2em 0 0;
   display: flex;
   align-items: center;
   gap: 8px;
}
.site-info .item {
   width: 120px;
}
.footer-nav-sp {
   display: none;
}
.footer-nav-col {
   display: flex;
   flex-wrap: wrap;
   gap: 100px;
}

.footer-nav-item {
   padding: .3em 0;
   font-size: 14px;
}
.footer-nav-item a{
   color: var(--color-base);
}

.copy {
   margin: 0 32px;
   padding: 40px 32px 40px;
   color: var(--color-darkgray);
   font-size: 10px;
   text-align: center;
   font-weight: 200;
   border-top: 1px solid #e4e2db;
}
@media screen and (max-width: 979px) {
   .footer-nav-col {
      gap: 80px;
   }
   .site-info .title {
      font-size: 20px;
   }
}
@media screen and (max-width: 767px) {
   .site-footer-container {
      padding-top: 60px;
      padding-bottom: 60px;
   }
   .site-footer-column {
      display: block;
   }
   .site-info {
      width: initial;
      text-align: center;
   }
   .site-info .footer-logo {
      margin-inline: auto;
      width: 160px;
   }
   .site-info .title {
      font-size: 16px;
   }
   .site-info .address {
      font-size: 13px;
   }
   .site-info .tel {
      font-size: 13px;
   }
   .site-info .sns {
      margin: 2em 0 0;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
   }
   .site-info .sns {
      margin: 2em 0 0;
      justify-content: center;
   }
   .site-info .link {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
   }
   .footer-nav-pc {
      display: none;
   }
   .footer-nav-sp {
      display: block;
      margin-top: 40px;
   }

   .footer-nav-sp .footer-nav-col {
      display: block;
      width: 100%;
   }
   .footer-nav-item {
      font-size: 13px;
      text-align: center;
   }
   .copy {
      text-align: center;
   }
}
/* *****************************************************************
*	.pagination
* ***************************************************************** */
.pagination-wrap {
   margin-top: 64px;
}
.nav-links ul {
   list-style: none;
   display: flex;
   justify-content: center;
   gap: 8px;
}

.nav-links li>* {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   height: 35px;
}

.nav-links li>*:not(.dots) {
   width: 35px;
   border-radius: 50%;
   color: var(--color-base);
   background: #efefef;
   transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links li>.current,
.nav-links li>a:hover {
   color:var(--color-white);
   background: var(--color-main);
   text-decoration: none;
}

/* *****************************************************************
*	button
* ***************************************************************** */
/*.button a {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 0 auto;
   padding: 1em 2em;
   width: 300px;
   color: #333;
   font-size: 18px;
   font-weight: 700;
   background-color: #cccccc;
   border-radius: 50vh;
}
.button a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid #333333;
   border-right: 2px solid #333333;
   transform: rotate(45deg);
}
.button a:hover {
   text-decoration: none;
   background-color: #bbbbbb;
}*/

.btn a {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   padding: .8em .2em;
   max-width: 280px;
   color: var(--color-white);
   font-size: 15px;
   font-weight: 600;
   background-color: var(--color-main);
   border: 2px solid var(--color-bg-main);
   border-radius: 0px;
   transition: 0.3s ease-in-out;
}
.btn a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid var(--color-white);
   border-right: 2px solid var(--color-white);
   transform: rotate(45deg);
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translateY(-50%) rotate(45deg);
}
.btn a:hover {
   opacity: .6;
   text-decoration: none;
}
@media (max-width: 767px) {
   .btn a {
      font-size: 14px;
   }
}
/* *****************************************************************
*	table
* ***************************************************************** */
.base-table {
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
}
.base-table th,
.base-table td {
   padding: 24px;
   border: 1px solid var(--color-gray);
}
@media screen and (max-width: 767px) {
   .base-table table {
      border-bottom: 1px solid #DDD;
   }
   .base-table th,
   .base-table td {
      display: block;
      width: auto;
      text-align: left;
      border-bottom: none;
   }
}
/* *****************************************************************
*	カード型
* ***************************************************************** */
._card-wrap {
   padding-top: 48px;
   margin-inline: auto;
}
._card-list {
   display: flex;
   flex-wrap: wrap;
   gap: 68px 24px;
}
._card-item {
   width: calc(100% / 4 - 24px * 3 / 4);
   background-color: #fff;
   padding: 0;
}
._3col {
   width: calc(100% / 3 - 24px * 2 / 3);
}
@media (max-width: 960px) {
   ._card-item {
      width: calc(100% / 2 - 24px * 1 / 2);
   }
   ._3col {
      width: calc(100% / 2 - 24px * 1 / 2);
   }
}
@media (max-width: 767px) {
   ._card-item,._3col {
      width: 100%;
   }
}
._card-pic {
   position: relative;
   aspect-ratio: 3 / 2;
   overflow: hidden; 
}
._card-pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
._card-body {
   display: flex;
   flex-direction: column;
   padding: 16px 0 0;
}
._card-ttl {
   font-size: 16px;
   font-weight: 600;
   line-height: 1.6;
   flex-grow: 1;
}

/* *****************************************************************
*	archive
* ***************************************************************** */
/* テキストリスト表示 */
.list-wrap {
   display: block;
}
.list-item {
   border-bottom: 1px solid var(--color-lightgray);
   padding: 24px 8px;
}
.list-item:first-of-type {
   border-top: 1px solid var(--color-lightgray);
}
.list-body {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}
.list-meta{
   display: flex;
   flex-wrap: wrap;
}
.list-body .date {
   width: 90px;
   font-size: 14px;
   color: var(--color-bg-dark);
}

.list-body .cat {
   display: flex;
   align-items: center;
}

.list-body .cat span {
   min-width: 100px;
   padding: 0px 4px;
   font-size: 12px;
   border-radius:50vh;
   text-align: center;
   letter-spacing: normal;
   color: var(--color-gold);
   border: 1px solid var(--color-gold);
}
.list-body .ttl {
   padding-left: 28px;
   font-size: 16px;
   font-weight: 500;
   flex: 1;
}
@media (max-width: 767px) {
   .list-body {
      display: block;
   }
   .list-body .date {
      width: auto;
      font-size: 13px;
   }
   .list-body .cat span {
      margin-left: 16px;
      font-size: 11px;
   }
   .list-body .ttl {
      margin-top: 8px;
      padding: 0;
      font-weight: 400;
   }
}

/* カラム表示 */
.cardlist-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 48px 24px;
}
.card-item {
   width: calc(100% / 3 - 24px * 2 / 3);
}

.card-pic {
   position: relative;
   aspect-ratio: 3 / 2;
   overflow: hidden; 
}
.card-pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease;
}
.card-pic img:hover {
   transform: scale(1.2);
}
.card-body {
   display: flex;
   flex-direction: column;
   padding: 16px 0 0;
}
.card-meta {
   display: flex;
   align-items: center;
   font-size: 13px;
}
.card-meta .date {
   letter-spacing: 0.08em;
   color: var(--color-darkgray);
}
.card-meta .cat {
   margin-left: 1em;
   padding: .2em .8em;
   font-size: 12px;
   line-height: 1;
   border-radius: 50vh;
   color: var(--color-gold);
   border: 1px solid var(--color-gold);
}
.card-ttl {
   margin-top: 8px;
   font-size: 16px;
   font-weight: 400;
   line-height: 1.4;
}
@media (max-width: 960px) {
   .card-item {
      width: calc(100% / 2 - 24px * 1 / 2);
   }
}
@media (max-width: 767px) {
   .cardlist-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 48px 16px;
   }
   .card-item {
      width: 100%;
   }
   .card-body {
      padding: 20px 0 0;
   }
}
/* *****************************************************************
*	POST,PAGE
* ***************************************************************** */
.post,
.page {
   margin: 0;
}
.page-head {
   margin-top: var(--header);
   position: relative;
   display: flex;
   align-items: center;
   width: 100%;
   height: 260px;
   background: #fafafa;
   overflow: hidden;
}
.page-head-noimg {
   margin-top: var(--header);
   position: relative;
   display: flex;
   align-items: center;
   width: 100%;
   height: 260px;
   background: var(--color-bg-sand02);
}
.page-head::before{
   background-color: rgba(1,5,10,0.5);
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   content: '';
   z-index: 1;
}
.page-head img{
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.page-head-inner {
   position: relative;
   max-width: var(--width-content);
   margin: 0 auto;
   padding: 0 32px;
   z-index: 2;
}
.page-head-ttl {
   font-size: 26px;
   letter-spacing: .1em;
   font-weight: 400;
   color: var(--color-white);
   text-align: center;
}
.page-head-noimg .page-head-ttl {
   color: var(--color-base);
}
.single-post .page-head-ttl {
   color: var(--color-white);
}
.page-head-desc {
   font-size: 16px;
   color: var(--color-white);
   letter-spacing: .08em;
}
.archive-description {
   font-size: 16px;
   color: var(--color-white);
   letter-spacing: .08em;
}

@media (max-width: 767px) {
   .page-head,.page-head-noimg {
      margin-top: 70px;
      padding: 2em 0;
      height: auto;
   }
   .page-head-ttl {
      font-size: 18px;
   }
   .archive-description {
      font-size: 14px;
   }
}

.entry-content,
.entry-summary {
   margin: 64px 0 0;
}
.page-content {
   margin: 0;
}

.search .page-content {
   margin-top: 80px;
}

.entry-header {
   padding-bottom: 32px;
   border-bottom: 1px solid var(--color-lightgray);
}

.entry-title {
   line-height: 1.4;
   font-size: 16px;
}

.single-post .entry-title {
   margin-top: 20px;
   line-height: 1.4;
   font-size: 26px;
   font-weight: 600;
}

.entry-meta {
   display: flex;
   align-items: center;
   font-size: 13px;
}
.entry-meta .date {
   display: flex;
   align-items: center;
   letter-spacing: .08em;
}
.entry-meta .cat {
   margin-left: 1em;
   padding: .2em .8em;
   font-size: 12px;
   line-height: 1;
   border-radius: 50vh;
   color: var(--color-gold);
   border: 1px solid var(--color-gold);
}

.post-thumbnail {
   margin: 40px 0 0;
}

.entry-footer {
   padding-top: 40px;
   padding-bottom: 40px;
}
.content-Tags {
   padding-top: 40px;
   padding-bottom: 40px;
   font-size: 12px;
}

.content-Tags li {
   display: inline-block;
}

.content-Tags li::after {
   content: '/';
   margin: 0 .3em;
}

.single-post .nav-links {
   display: flex;
   justify-content: center;
   font-size: 13px;
   gap: 48px;
}
.single-post .nav-previous {
   text-align: right;
}
.single-post .nav-next {
   text-align: left;
}
.entry-content a{
   text-decoration: underline;
}
@media screen and (max-width: 767px) {
   .entry-content,
   .entry-summary {
      margin: 40px 0 0;
   }
   .single-post .entry-title {
      font-size: 20px;
   }
}

/* *****************************************************************
*	記事用（.single-post）
* ***************************************************************** */
.single-post p {
   margin-top: 24px;
   margin-bottom: 24px;
}
.single-post .wp-block-list {
   margin:  40px 0 40px 24px;
   list-style: disc;
}
.single-post ol.wp-block-list {
   list-style: decimal;
}
.wp-block-image {
   margin-top: 40px;
   margin-bottom: 40px;
}

/* *****************************************************************
*	パンくず
* ***************************************************************** */
.page-head .breadcrumbs {
   margin: 96px 0 0;
   font-size: 12px;
   text-align: center;
}
.breadcrumbs {
   max-width: var(--width-content);
   width: 100%;
   margin-inline: auto;
   padding: 16px 32px 0;
   font-size: 12px;
}
.breadcrumbs span{
   padding: 0 .2em;
   color: var(--color-gray);
}
.breadcrumbs span:first-of-type{
   padding-left: 0;
}
.breadcrumbs span[property="name"] {
   display: inline-block;
   padding: 0;
   margin-top: -3px;
   vertical-align: middle;
   max-width: 200px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.breadcrumbs a:hover{
   color: var(--color-main);
}
@media screen and (max-width: 767px) {
   .breadcrumbs {
      display: none;
   }
}

/* *****************************************************************
*	汎用
* ***************************************************************** */
.bg-white {
   background-color: var(--color-bg-white);
}
.bg-lightgray {
   background-color: var(--color-bg-lightgray);
}
.bg-lightsand01 {
   background-color: var(--color-bg-sand01);
}
.bg-lightsand02 {
   background-color: var(--color-bg-sand02);
}
.bg-dark-blue {
   background-color: var(--color-bg-dark-blue);
}
.c-shadow {
   box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
   transition: .2s;
}
._ttl {
   font-size:26px;
}
._subttl {
   font-size:22px;
}
._text {
   margin-top: 24px;
}
._list {
   margin-top: 24px;
}
ul._list li {
   margin-left: 24px;
   list-style: disc;
}
ol._list li{
   margin-left: 24px;
   list-style: decimal;
}
._underline{
   padding-bottom: 12px;
   border-bottom: 1px solid var(--color-lightgray);
}
._marker {
   background: linear-gradient(transparent 60%, #FFFE03 60%);
}
._note {
   font-size:13px;
}
@media (max-width: 767px) {
   ._ttl {
      font-size:20px;
   }
   ._subttl {
      font-size:17px;
   }
}

/* *****************************************************************
*	home
* ***************************************************************** */
.section {
   padding-top: 120px;
   padding-bottom: 120px;
}

.section-inner {
   margin: 0 auto;
   max-width: var(--width-content);
   padding-left: 32px;
   padding-right: 32px;
}

.section-inner-full {
   margin: 0 auto;
   padding-left: 32px;
   padding-left: 32px;
}

.section-heading{
   text-align: center;
}
.section-heading .ttl {
   margin-top: -.4em;
   font-size: 34px;
   text-align: center;
   font-weight: 600;
   line-height: 1.4;
}
.section-heading .ttl-en {
   display: block;
   margin-top: 8px;
   font-size: 20px;
   color: var(--color-gold);
   font-weight: 600;
   letter-spacing: .15em;
}
.section-heading .lead {
   margin-top: 24px;
   font-size: 16px;
}
@media (max-width: 767px) {
   .section {
      padding-top: 80px;
      padding-bottom: 80px;
   }
   .section-inner {
      padding-left: 16px;
      padding-right: 16px;
   }
   .section-heading .ttl {
      font-size: 24px;
   }
   .section-heading .ttl-en {
      margin-top: 2px;
      font-size: 16px;
   }
}
/* home-reservation */
.home-reservation-sec {
   background-color: var(--color-main);
}
.reservation-wrap {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 24px;
   gap:32px;
}
.reservation-wrap .ttl{
   font-size: 18px;
   color: #fff;
}
.reservation-btn a {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   padding: .8em .5em;
   width: 240px;
   color: var(--color-white);
   font-size: 15px;
   font-weight: 600;
   background-color: var(--color-main);
   border: 1px solid var(--color-white);
   border-radius: 0px;
   transition: 0.3s ease-in-out;
}
.reservation-btn a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid var(--color-white);
   border-right: 2px solid var(--color-white);
   transform: rotate(45deg);
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translateY(-50%) rotate(45deg);
}
.reservation-btn a:hover {
   color: var(--color-main);
   background-color: var(--color-white);
   text-decoration: none;
}
.reservation-btn a:hover:after {
   border-top: 2px solid var(--color-main);
   border-right: 2px solid var(--color-main);
}
@media (max-width: 767px) {
   .reservation-wrap {
      display: flex;
      flex-direction: column;
      padding-top: 16px;
      gap:10px;
   }
   .reservation-wrap .ttl{
      font-size: 14px;
      text-align: center;
   }
   .reservation-btn a {
      font-size: 14px;
   }
}
/* home-news */
.home-news-wrap {
   padding-top: 48px;
   margin-inline: auto;
}
.home-news-list {
   display: flex;
   flex-wrap: wrap;
   gap: 68px 24px;
}
.home-news-item {
   width: calc(100% / 4 - 24px * 3 / 4);
   padding: 0;
}
.home-news-pic {
   position: relative;
   aspect-ratio: 3 / 4;
   overflow: hidden; 
}
.home-news-pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.home-news-body {
   display: flex;
   flex-direction: column;
   padding: 20px 0 0;
}
.home-news-meta {
   display: flex;
   align-items: center;
   font-size: 13px;
}
.home-news-meta .date {
   display: flex;
   align-items: center;
   letter-spacing: .1em;
   color: var(--color-darkgray);
}
.home-news-meta .cat {
   margin-left: 1em;
   padding: .2em .8em;
   font-size: 12px;
   border-radius:50vh;
   text-align: center;
   letter-spacing: normal;
   line-height: 1;
   color: var(--color-gold);
   border: 1px solid var(--color-gold);
}
.home-news-ttl {
   margin-top: 8px;
   font-size: 16px;
   font-weight: 400;
   line-height: 1.5;
}
.home-news-btn {
   margin-top: 40px;
}
.home-news-btn a {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   padding: .6em .2em;
   max-width: 180px;
   color: var(--color-white);
   font-size: 14px;
   border-radius: 0px;
   background-color: var(--color-main);
   transition: 0.3s ease-in-out;
}
.home-news-btn a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid var(--color-white);
   border-right: 2px solid var(--color-white);
   transform: rotate(45deg);
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translateY(-50%) rotate(45deg);
}
.home-news-btn a:hover {
   opacity: .6;
   text-decoration: none;
}
@media (max-width: 960px) {
   .home-news-item {
      width: calc(100% / 2 - 24px * 1 / 2);
      padding: 0;
   }
}

@media (max-width: 767px) {
   .home-news-list {
      gap: 40px;
   }
   .home-news-item {
      width: 100%;
   }
   .home-news-meta {
      font-size: 13px;
   }
   .home-news-meta .cat {
      margin-left: 1em;
      padding: .2em .8em;
      font-size: 12px;
   }
   .home-news-btn a {
      font-size: 14px;
   }
}

/*  タブメニュー
------------------------------------*/
.tab-container {
   margin: 48px auto 0;
}

.tab-title-list {
	display: grid;
   grid-template-columns: repeat(3, 1fr);
	width: 100%;
	margin: 0 0 40px;
   gap: 1px;
}

.tab-title {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
	position: relative;
	margin: 0;
	padding: .8em .2em;
	color: var(--color-base);
	font-size: 15px;
	cursor: pointer;
	text-align: center;
   line-height: 1.4;
   background: var(--color-bg-white);
}
.tab-title.selected {
   color: #fff;
   background-color: var(--color-main);
}
.tab-title span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 2px;
	background-color: var(--color-main);
	left: 50%;
	transform: translateX(-50%);
}
.tab-title.selected span {
	font-weight: bold;
}
.tab-title.selected span::after {
	background-color: var(--color-main);
}
.tab-title:not(.selected):hover {
	color: #fff;
	transition: 0.3s;
   background-color: var(--color-main);
}
.tab-title:not(.selected):hover span::after {
	transition: 0.3s;
	background-color: var(--color-main);
}

@media (max-width: 960px) {
   .tab-title-list {
      margin: 0 0 24px;
   }
	.tab-title {
         font-size: 14px;
	}
}

.tab-contents {
	width: 100%;
}

.tab-contents .tab-list {
	overflow: hidden;
	height: 0;
	opacity: 0;
}

.tab-contents .tab-list.show {
	overflow: visible;
	height: auto;
	opacity: 1;
	transition: opacity .4s ease-in-out;
}

/* home-about */
.home-about-sec {
   padding-top: 100px;
   padding-bottom: 140px;
}
.home-about-inner {
   margin: 0 auto;
   max-width: 1420px;
   padding-left: 32px;
   padding-right: 32px;
}
.home-about-wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 5%;
}
.home-about-pic{
   width: 48%;
}
.home-about-contents {
   width: 52%;
   position: relative;
}
.home-about-pic .pic{
   position: relative;
   aspect-ratio: 4 / 5;
   overflow: hidden; 
   width: 100%;
   box-shadow: -30px 30px 0 #eeebe7;
}
.home-about-pic .pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.home-about-picttl {
   margin-left: -160px;
}
.home-about-ttl {
   margin-top: 40px;
   font-size: 32px;
   font-weight: 600;
}
.home-about-text {
   margin-top: 40px;
   font-size: 16px;
}
.home-about-point {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-top: 48px;
}
.home-about-point .item{
   padding: .8em .3em;
   font-size: 16px;
   text-align: center;
   color: var(--color-main);
   line-height: 1.4;
   border: 1px solid var(--color-main);
}
@media (max-width: 1200px) {
   .home-about-ttl {
      font-size: 26px;
   }
}
@media (max-width: 979px) {
   .home-about-wrap {
      align-items:flex-start;
   }
   .home-about-picttl {
      padding-top: 80px;
   }
   .home-about-ttl {
      font-size: 22px;
   }
   .home-about-point .item span{
      display: block;
   }
}
@media (max-width: 767px) {
   .home-about-sec {
      padding-top: 64px;
      padding-bottom: 64px;
   }
   .home-about-wrap {
      flex-direction: column;
   }
   .home-about-pic{
      width: 100%;
      margin: 0 auto;
   }
   .home-about-pic .pic{
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden; 
      width: 100%;
      box-shadow: -16px 16px 0 #eeebe7;
   }
   .home-about-contents{
      width: 100%;
   }
   .home-about-picttl {
      width: 88%;
      margin-top: -16%;
      margin-left: auto;
      margin-right: 8px;
      padding-top: 0px;
   }
   .home-about-ttl {
      margin-top: 64px;
      font-size: 18px;
      text-align: center;
   }
   .home-about-text {
      margin-top: 40px;
   }
	.home-about-point {
		gap: 10px;
		margin-top: 32px;
	}
	 .home-about-point .item{
      padding: .8em .3em;
      font-size: 15px;
   }
   .home-about-point .item span{
      display: block;
   }
}

/* rooms */
#home-Rooms .section-heading .ttl {
   color: #fff;
}
#home-Rooms .section-inner {
   max-width: 1400px;
}
.home-rooms-wrap {
   padding-top: 48px;
   margin-inline: auto;
}
.home-rooms-list {
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 40px;
}
.home-rooms-item {
   width: 100%;
   padding: 0;
}
.home-rooms-item a{
   position: relative;
   display: flex;
   flex-direction: column;
   height: 100%;
}
.home-rooms-bnr {
   position: relative;
   aspect-ratio: 1 / 1;
   overflow: hidden; 
}
.home-rooms-bnr .ttl{
   position: absolute;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 100%;
   color: #fff;
   font-size: 20px;
   font-weight: 600;
   text-shadow: 0 0 10px #000;
   z-index: 2;
   transition:all .5s ease; 
}
.home-rooms-bnr .ttl .ttl-sub{
   font-size: 13px;
}
.home-rooms-bnr img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all .5s ease;
}
.hoverMask{
   opacity: .15; 
   position: absolute;
   top: 0;
   bottom: 0;
   right: 0;
   left: 0;
   background: rgba(0,0,0,0.7);
   display: flex; 
   justify-content: center; 
   align-items: center; 
   text-align: center; 
   transition:all .5s linear; 
}
.home-rooms-desc {
   opacity: 0; 
   text-align: center;
   display: flex;
   flex-direction: column;
   color: #fff;
   gap: 16px;
   transition:all .3s ease-in; 
}
.home-rooms-desc .ttl {
   font-size: 14px;
}
.home-rooms-desc .number {
   padding: 10px 0;
   font-size: 14px;
   border-top: 1px solid #fff;
   border-bottom: 1px solid #fff;
}
.home-rooms-desc .price {
   font-size: 14px;
}
.home-rooms-desc .price span{
   display: block;
} 
.home-rooms-item a:hover .home-rooms-bnr .ttl{
   opacity: 0;
   transition: all .3s ease;
}
.home-rooms-item a:hover .home-rooms-bnr img, .home-rooms-item a:hover .hoverMask, .home-rooms-item a:hover .hoverMask .home-rooms-desc{
   transform: scale(1.1);
   opacity: 1;
}
.home-rooms-item a:hover {
   text-decoration: none;
   transition: all .5s ease;
   opacity: 1;
}
@media (max-width: 960px) {
   .home-rooms-list {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap:24px;
   }
   .home-rooms-bnr .ttl{
      font-size: 18px;
   }
   .home-rooms-desc {
      opacity: 0; 
      text-align: center;
      display: flex;
      flex-direction: column;
      color: #fff;
      gap: 16px;
      transition:all .3s ease; 
   }
   .home-rooms-desc .ttl {
      font-size: 14px;
   }
   .home-rooms-desc .number {
      padding: 10px 0;
      font-size: 14px;
      border-top: 1px solid #fff;
      border-bottom: 1px solid #fff;
   }
   .home-rooms-desc .price {
      font-size: 14px;
   }
}
@media (max-width: 767px) {
   #home-Rooms .section-inner {
      padding-left: 8px;
      padding-right: 8px;
   }
   .home-rooms-list {
      gap: 8px;
   }
   .home-rooms-bnr .ttl{
      font-size: 16px;
      letter-spacing: normal;
   }
   .home-rooms-desc {
      gap: 8px;
      line-height: 1.4;
      letter-spacing: normal;
   }
   .home-rooms-desc .room {
      font-size: 12px;
   }
   .home-rooms-desc .number {
      padding: 4px 0;
      font-size: 12px;
   }
   .home-rooms-desc .price {
      font-size: 12px;
   }
}

/* feature */
.home-feature-wrap {
   padding-top: 48px;
   margin-inline: auto;
}
.home-feature-grid {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 64px;
}
.home-feature-grid + .home-feature-grid{
   margin-top: 100px;
}
.home-feature-grid:nth-child(2n){
   flex-direction: row-reverse;
}
.home-feature-grid .pic{
   width: 54%;
}
.home-feature-grid .contents{
   width: 46%;
}
.home-feature-grid .pic img{
   width: 100%;
   aspect-ratio: 3 / 2;
   object-fit: cover;
}
.home-feature-grid .contents .ttl {
   font-size: 32px;
   font-weight: 600;
}
.home-feature-grid .contents .text {
   margin-top: 32px;
   font-size: 16px;
}
.btn.home-feature-btn a{
   margin: 40px 0 0;
}
@media screen and (max-width: 1200px) {
   .home-feature-grid {
      gap: 32px;
   }
   .home-feature-grid .contents .ttl {
      font-size: 22px;
   }
   .home-feature-grid .contents .text {
      margin-top: 24px;
   }
}
@media screen and (max-width: 767px) {
   .home-feature-grid,.home-feature-grid:nth-child(2n) {
      flex-direction: column;
   }
   .home-feature-grid .pic{
      width: 100%;
   }
   .home-feature-grid .contents{
      width: 100%;
   }
   .home-feature-grid .contents .ttl {
      text-align: center;
   }
   .btn.home-feature-btn a{
      margin: 40px auto 0;
   }
}

/* service */
.home-service-wrap {
   padding-top: 48px;
}
.home-service-list {
   display: flex;
   justify-content: space-between;
   gap: 40px;
}
.home-service-item {
   display: flex;
   flex-direction: column;
   width: calc(100% / 2 - 48px * 1 / 2);
   padding: 0;
}
.home-service-item .pic{
   position: relative;
   aspect-ratio: 16 / 9;
   overflow: hidden; 
}
.home-service-item .pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.home-service-item .contents {
   padding: 24px 8px;
   text-align: center;
   background-color: #fff;
   flex-grow: 1;
}
.home-service-item .contents .ttl {
   font-size: 22px;
   font-weight: 600;
   color: var(--color-gold);
}
.home-service-item .contents .text {
   margin-top: 16px;
   font-size: 16px;
}
.home-service-item .contents .note {
   margin-top: 8px;
   font-size: 13px;
}
@media (max-width: 767px) {
   .home-service-list {
      flex-direction: column;
   }
   .home-service-item {
      width: 100%;
   }
   .home-service-item .contents .ttl {
      font-size: 18px;
   }
   .home-service-item .contents .text {
      margin-top: 8px;
      font-size: 15px;
   }
   .home-service-item .contents .note {
      font-size: 12px;
   }
}

/* members */
.home-members-bnr {
   max-width: 820px;
   margin-inline: auto;
   padding: 40px;
   display: flex;
   align-items: center;
   flex-direction: column;
   color: var(--color-white);
   background-color: #a2332f;
}
.home-members-bnr .micro{
   font-size:16px;
}
.home-members-bnr .ttl{
   margin-bottom: 24px;
   font-size:32px;
   margin-top: .3em;
   padding-bottom: .5em;
   border-bottom: 1px solid #fff;
}
.home-members-bnr .subttl{
   font-size: 24px;
   text-align: center;
}
.home-members-bnr .text{
   margin-top: 16px;
   font-size: 16px;
   text-align: center;
}
.home-members-btn a{
   width: 300px;
   margin-top: 40px;
   margin-left: 0;
   margin-right: 0;
   background-color: #a2332f;
   border: 1px solid #fff;
}
@media (max-width: 767px) {
   .home-members-bnr {
      padding: 32px 20px 40px;
   }
   .home-members-bnr .micro{
      font-size:13px;
   }
   .home-members-bnr .ttl{
      margin-bottom: 24px;
      font-size:20px;
      border-bottom: 1px solid #fff;
   }
   .home-members-bnr .subttl{
      font-size: 18px;
   }
   .home-members-bnr .text{
      margin-top: 16px;
      font-size: 15px;
      text-align: left;
   }
   .home-members-btn a{
      margin-top: 24px;
   }
}

/* Content List */
.home-content-wrap {
   padding-top: 40px;
   margin-inline: auto;
}
.home-content-list {
   display: grid;
   grid-template-columns: repeat( 2, 1fr);
   gap: 40px;
}
.home-content-item {
   width: 100%;
   position: relative;
}
.home-content-bnr {
   position: relative;
   aspect-ratio: 5 / 2;
   overflow: hidden; 
}
.home-content-bnr img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease;
}
.home-content-bnr .Mask{
   position: absolute;
   top: 0;
   bottom: 0;
   right: 0;
   left: 0;
   background: rgba(0,0,0,0.6);
   display: flex; 
   justify-content: center; 
   align-items: center; 
   text-align: center; 
}
.home-content-bnr .Mask span {
   padding: .4em;
   color: #fff;
   font-size: 20px;
   font-weight: 600;
   text-shadow: 0 0 10px #000;
   line-height: 1.4;
}

.home-content-item a:hover .home-content-bnr img{
   transform: scale(1.1);
}
.home-content-item a:hover {
   opacity: .8;
   text-decoration: none;
}
@media (max-width: 767px) {
   .home-content-list {
      display: grid;
      grid-template-columns: repeat( 1, 1fr);
      gap: 16px;
   }
   .home-content-bnr .Mask span {
      font-size: 16px;
   }
}

/* access */
.home-access-contents {
   margin-top: 32px;
}
.home-access-contents .ttl{
   font-size: 17px;
   text-align: center;
}
.home-access-contents .add{
   font-size: 15px;
   text-align: center;
}
.home-access-contents .map{
   position: relative;
   width: 100%;
   aspect-ratio: 16 / 7;
   margin-top: 40px;
}
.home-access-contents .map iframe {
   width: 100%;
   height: 100%;
   vertical-align: top;
}
@media (max-width: 767px) {
   .home-access-contents .map{
      aspect-ratio: 4 / 3;
   }
}

/* Sns */
.home-sns-wrap {
   max-width: var(--width-content-narrow);
   margin-inline: auto;
   padding-top: 40px;
}
.home-sns-list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 40px;
}
.home-sns-item {
   width: 100%;
}
.home-sns-item a{
   display: grid;
   width: 100%;
   height: 100%; 
   padding: 40px 10px 32px;
   text-align: center;
   background-color: var(--color-bg-white);
   box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1);
}
.home-sns-item a:hover{
   box-shadow: 0 0px 20px 0 rgba(0,0,0,0.5);
   text-decoration: none;
   opacity: 1;
}
.home-sns-item .icon{
   width: 54px;
   margin-inline: auto;
   text-align: center;
}
.home-sns-item .ttl {
   margin-top: 8px;
   font-size: 15px;
}

@media (max-width: 767px) {
   .home-sns-list {
      gap: 24px;
   }
   .home-sns-item .icon{
      width: 40px;
   }
}

/* contact */
.footer-contact-sec {
   padding: 0;
   position: relative;
   background: url('images/contact-sec_bg.jpg');
   background-repeat: no-repeat;
   background-position: center;
   background-size:cover;
}
.footer-contact-sec .bg-dark{
   padding: 100px 0;
   background-color: rgba(0,0,0,0.6);
}
.footer-contact-sec .ttl {
   color: #fff;
}
.footer-contact-wrap {
   max-width: var(--width-content-narrow);
   margin-inline: auto;
   padding-top: 40px;
}
.footer-contact-list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 40px;
}
.footer-contact-item {
   width: 100%;
}
.footer-contact-item a{
   display: grid;
   text-align: center;
   height: 100%; 
   padding: 40px 10px;
   color: var(--color-bg-white);
   background-color: var(--color-main);
   box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1);
   border: 1px solid #70839c;
}
.footer-contact-item a:hover{
   color: var(--color-main);
   background-color: var(--color-bg-white);
   text-decoration: none;
   opacity: 1;
}
.footer-contact-item .text {
   font-size: 24px;
   line-height: 1;
}
.footer-contact-item .text.tel {
   font-size: 28px;
}
.footer-contact-item .note{
   display: block;
   margin-top: .6em;
   font-size: 13px;
   line-height: 1;
}
.footer-contact-item .text .icon {
   padding-right: .3em;
   font-size: 24px;
}
@media (max-width: 767px) {
   .footer-contact-sec .bg-dark{
      padding: 80px 0;
   }
   .footer-contact-list {
      grid-template-columns: 1fr;
   }
   .footer-contact-item a{
      padding: 24px 10px;
   }
   .footer-contact-item .text {
      font-size: 18px;
      line-height: 1;
   }
   .footer-contact-item .text.tel {
      font-size: 20px;
   }
   .footer-contact-item .note{
      font-size: 13px;
   }
   .footer-contact-item .text .icon {
      font-size: 18px;
   }
}

/* *****************************************************************
*	コンテンツ
* ***************************************************************** */
.l-section {
   padding-top: 0px;
}
.l-section + .l-section{
   padding-top: 120px;
}
.c-heading{
   text-align: center;
}
.c-heading .ttl {
   margin-top: -.4em;
   font-size: 34px;
   text-align: center;
   font-weight: 600;
   line-height: 1.4;
}
.c-heading .ttl-en {
   display: block;
   font-size: 18px;
   color: var(--color-gold);
   font-weight: 500;
   letter-spacing: .15em;
}
.c-heading .lead {
   margin-top: 24px;
   font-size: 16px;
}
.c-heading .note {
   margin-top: 24px;
   font-size: 14px;
}
.c-heading .text {
   margin-top: 24px;
   font-size: 16px;
}
.c-ttl {
   display:flex;
   justify-content: center;
   position: relative;
   margin-bottom: 48px;
   font-size: 28px;
   font-weight: 600;
}
.c-ttl:before {
   content: '';
   display: inline-block;
   position: absolute;
   bottom: -12px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 2px;
   background-color: var(--color-gold);
}
.c-unit {
   display: flex;
   justify-content: space-between;
   gap: 6%;
}
.c-unit + .c-unit{
   margin-top: 120px;
}
._reverse {
   flex-direction: row-reverse;
}
.c-unit-item {
   flex: 1;
}
@media (max-width: 767px) {
   .l-section + .l-section{
      padding-top: 80px;
   }
   .c-heading .ttl {
      font-size: 22px;
   }
   .c-heading .ttl-en {
      font-size: 16px;
   }
   .c-ttl {
   margin-bottom: 48px;
   font-size: 20px;
   }
}


/* rooms-list */
.rooms-tab-container {
   margin: 48px auto 0;
}
.rooms-tab-title-list {
	display: grid;
   grid-template-columns: repeat(6, 1fr);
	width: 100%;
	margin: 0 0 40px;
   gap: 1px;
}

.rooms-tab-title {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
	position: relative;
	margin: 0;
	padding: 20px 5px;
	color: var(--color-base);
	font-size: 15px;
	text-align: center;
   line-height: 1.2;
   letter-spacing: normal;
   background: #e6eaf0;
	cursor: pointer;
}
.rooms-tab-title .sub{
   display: block;
   width: 100%;
	font-size: 10px;
}
.rooms-tab-title.selected {
   color: #fff;
   background-color: var(--color-main);
}
.rooms-tab-title span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 2px;
	background-color: var(--color-main);
	left: 50%;
	transform: translateX(-50%);
}
.rooms-tab-title.selected span {
	font-weight: normal;
}
.rooms-tab-title.selected span::after {
	background-color: var(--color-main);
}
.rooms-tab-title:not(.selected):hover {
	color: #fff;
	transition: 0.3s;
   background-color: var(--color-main);
}
.rooms-tab-title:not(.selected):hover span::after {
	transition: 0.3s;
	background-color: var(--color-main);
}
@media (max-width: 960px) {
   .rooms-tab-title-list {
      margin: 0 0 24px;
   }
	.rooms-tab-title {
         font-size: 13px;
      }
}
@media (max-width: 767px) {
   .rooms-tab-title-list {
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
      margin: 0 0 24px;
      gap: 1px;
   }
   .rooms-tab-title {
      padding: 8px 4px;
   }
   .rooms-tab-title > span > span{
      display: block;
   }
}

.rooms-tab-container {
	width: 100%;
}

.rooms-tab-contents .rooms-tab-list {
	overflow: hidden;
	height: 0;
	opacity: 0;
}

.rooms-tab-contents .rooms-tab-list.show {
	overflow: visible;
	height: auto;
	opacity: 1;
	transition: opacity .4s ease-in-out;
}

.rooms-list {
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 40px 24px;
}
.rooms-list .item {
   display: grid;
   grid-template-rows: subgrid;
   grid-row: span 1;
}
.rooms-list .item a{
   display: block;
   box-shadow: 0 0 6px 0px rgba(0,0,0,0.15);
}
.rooms-list .item a:hover{
   text-decoration: none;
   box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.rooms-list .pic {
   position: relative;
   aspect-ratio: 3 / 2;
   overflow: hidden; 
}
.rooms-list .pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease;
}
.rooms-list .item a:hover .pic img {
   transform: scale(1.1);
}
.rooms-list .body {
   padding: 16px 16px 20px;
   text-align: center;
}
.rooms-list .ttl {
   font-size: 22px;
   font-weight: 400;
   line-height: 1.4;
}
.rooms-list .type {
   display: inline-block;
   margin-top: 8px;
   padding: .5em 1em;
   color: var(--color-white);
   font-size: 13px;
   background-color: var(--color-main);
   border-radius: 50vh;
   line-height: 1;
}
.rooms-list .no-smoking {
   margin-top: 8px;
   font-size: 13px;
   color: var(--color-main);
}

@media (max-width: 960px) {
   .rooms-list {
      grid-template-columns: repeat(2,1fr);
      gap: 16px 10px;
   }
   .rooms-list .ttl {
      font-size: 16px;
   }
   .rooms-list .type {
      margin-top: 4px;
      padding: .3em 1em;
      font-size: 12px;
   }
   .rooms-list .no-smoking {
      margin-top: 4px;
      font-size: 12px;
   }
}

/* price */
.price-container {
   margin-top: 48px;
   padding: 40px 40px 48px;
   background-color: var(--color-bg-white);
}
.price-block:nth-child(n+2){
   margin-top: 40px;
}
.price-title {
   font-size: 20px;
   font-weight: 400;
   text-align: center;
}
.price-table {
   margin-top: 24px;
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
}
.price-table th,
.price-table td {
   border: 1px solid #495e7e;
}
.price-table th{
   width: 20%;
   padding: 8px 8px;
   color: var(--color-white);
   font-weight: 400;
   text-align: center;
   background: var(--color-main);
   line-height: 1.2;
}
.price-table th .type{
   font-size: 15px;
   display: block;
   color: var(--color-white);
}
.price-table th .type span{
   font-size: 13px;
   display: block;
}
.price-table th .num{
   display: block;
   font-size: 14px;
   color: var(--color-white);
}
.price-table th .num a[href^="tel:"] {
   color: inherit;
   text-decoration: none;
   pointer-events: none;
}
.price-table td{
   padding: 18px 8px;
   font-weight: 400;
   text-align: center;
   font-size: 16px;
}
.price-table td.subttl{
   line-height: 1.3;
   background-color: #f5f3f0;
}
.price-table td.subttl .time{
   font-size: 14px;
}
.extend {
   margin-top: 10px;
   text-align: center;
}

.credit-block{
   margin-top: 80px;
   text-align: center;
}
.credit-block .ttl{
   display: inline-block;
   padding: .6em;
   font-size: 18px;
   font-weight: 400;
   border-top: 1px solid var(--color-lightgray);
   border-bottom: 1px solid var(--color-lightgray);
}
.credit-block .note{
   font-size: .8em;
}
.credit-block .text{
   margin-top: 24px;
   font-size: 15px;
}
.credit-block .pic{
   margin-top: 8px;
}
.credit-block .paypay-logo img{
   width: 140px;
}
@media (max-width: 960px) {
   .price-container {
      padding: 24px 16px;
   }
   .price-title {
      font-size: 18px;
   }
   .price-table-wrap {
      overflow-x: scroll;
   }
   .price-table {
      min-width: 680px;
      margin-top: 16px;
   }
   .price-table th{
      width: 20%;
      padding: 6px 6px;
   }
   .price-table th .type{
      font-size: 13px;
   }
   .price-table th .type span{
      font-size: 12px;
   }
   .price-table th .num{
      font-size: 13px;
   }
   .price-table td{
      padding: 16px 8px;
      font-size: 13px;
   }
   .price-table td.subttl .time{
      font-size: 12px;
   }
   .extend {
      overflow-x:visible;
   }
   .extend .price-table {
      min-width: 100%;
   }
   .credit-block .ttl{
      font-size: 15px;
   }
   .credit-block .text{
      font-size: 13px;
   }
}

.members-info {
   max-width: 820px;
   margin-inline: auto;
   padding: 40px;
   display: flex;
   align-items: center;
   flex-direction: column;
   color: var(--color-white);
   background-color: #a2332f;
}
.members-info .micro{
   font-size:15px;
}
.members-info .ttl{
   margin-top: 8px;
   font-size:18px;
}
.members-info-btn a{
   width: 300px;
   margin-top: 24px;
   margin-left: 0;
   margin-right: 0;
   background-color: #a2332f;
   border: 1px solid #fff;
}
@media (max-width: 767px) {
   .members-info {
      padding: 32px 24px 32px;
   }
   .members-info .micro{
      font-size:13px;
   }
   .members-info .ttl{
      font-size:16px;
      text-align: center;
   }
   .members-info .ttl span{
      display: block;
   }
}

/* rooms-single */
.rooms-header {
   text-align: center;
}
.rooms-header .title {
   display: inline-block;
   position: relative;
   padding: 0 2.4em;
   font-size: 36px;
   font-weight: 400;
}

.rooms-header .title::before,
.rooms-header .title::after {
   content: '';
   display: inline-block;
   position: absolute;
   top: 50%;
   width: 40px;
   height: 1px;
   background-color: var(--color-base);
}
.rooms-header .title::before {
   left: 0;
}
.rooms-header .title::after {
   right: 0;
}
.rooms-header .meta {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 16px;
   margin-top: 8px;
}
.rooms-header .meta .type {
   display: inline-block;
   padding: .5em 1em;
   color: var(--color-white);
   font-size: 13px;
   background-color: var(--color-main);
   border-radius: 50vh;
   line-height: 1;
   border: 1px solid var(--color-main);
}
.rooms-header .meta .option {
   display: inline-block;
   padding: .5em 1em;
   color: var(--color-main);
   font-size: 13px;
   background-color: var(--color-white);
   border-radius: 50vh;
   line-height: 1;
   border: 1px solid var(--color-main);
}
@media (max-width: 767px) {
   .rooms-header .title {
      font-size: 24px;
   }
   .rooms-header .meta .type {
      font-size: 12px;
   }
}
.rooms-content {
   margin-top: 40px;
   margin-inline: auto;
}

/* rooms-swiper */
.swiper-container {
   max-width: 100%;
   overflow: hidden;
}

.rooms-slider img {
   width: 100%;
   height: auto;
   aspect-ratio: 3 / 2;
   object-fit: cover;
   vertical-align: top;
}
.slide-inner {
   position: relative;
}
.slide-inner .text{
   position: absolute;
   bottom: 0;
   width: 100%;
   padding-bottom: 10px;
   font-size: 16px;
   text-align: center;
   color: var(--color-white);
   background-image: linear-gradient(0deg, #000000, transparent);
}
.thumblist .slide-inner .text{
   padding-bottom: 5px;
   font-size: 13px;
   line-height: 1.2;
   letter-spacing: normal;
}

.thumblist {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 10px;
   margin-top: 10px;
}

.thumblist-item img {
   opacity: 0.6;
   vertical-align: top;
}

.thumblist-item.current img {
   opacity: 1;
}
@media (max-width: 767px) {
   .rooms-content {
      margin-top: 24px;
      margin-inline: auto;
   }
   .thumblist {
      grid-template-columns: repeat(3, 1fr);
   }
   .thumblist .slide-inner .text{
      font-size: 11px;
   }
}

.rooms-block {
   margin-top: 80px;
}
.rooms-block-ttl {
   display:flex;
   justify-content: center;
   position: relative;
   margin-bottom: 48px;
   font-size: 24px;
   font-weight: 600;
}
.rooms-block-ttl:before {
   content: '';
   display: inline-block;
   position: absolute;
   bottom: -14px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 2px;
   background-color: var(--color-gold);
}
.rooms-block-subttl {
   margin-top: -.8em;
   text-align: center;
   font-size: 15px;
}
@media (max-width: 767px) {
   .rooms-block {
      margin-top: 64px;
   }
   .rooms-block-ttl {
      margin-bottom: 40px;
      font-size: 20px;
   }
   .rooms-block-subttl {
      font-size: 13px;
   }
}
.rooms-desc .contents {
   max-width: 680px;
   margin-inline: auto;
   padding: 10px 0;
   border-top: 1px solid var(--color-lightgray);
   border-bottom: 1px solid var(--color-lightgray);
}
#primary .rooms-desc .contents .wp-block-heading {
   margin: 24px 0;
   font-size: 20px;
   font-weight: normal;
}

.rooms-desc .contents p{
   margin: 24px 0;
}
.rooms-limited-list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   place-content: center;
   gap:24px;
}
.rooms-limited-list .item{
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 1em .2em;
   text-align: center;
   color: var(--color-white);
   background-color: var(--color-main);
   line-height: 1.3;
}
@media (max-width: 767px) {
   .rooms-limited-list {
      grid-template-columns: repeat(2, 1fr);
      gap:8px;
   }
   .rooms-limited-list .item{
      padding: 1em .2em;
      font-size: 14px;
   }
}
.rooms-facility-wrap {
   padding: 40px;
   background-color: var(--color-bg-white);
   border: 1px solid var(--color-lightgray);
}
.rooms-facility-box {
   margin-bottom: 32px;
   padding-bottom: 32px;
   border-bottom: 1px solid var(--color-lightgray);
}
.rooms-facility-box:last-child {
   margin-bottom: 0;
   padding-bottom: 0;
   border-bottom: none;
}
.rooms-facility-box .ttl {
   margin-bottom: 10px;
   padding-left: .6em;
   font-weight: 600;
   line-height: 1;
   border-left: 1em solid var(--color-main);
}
.rooms-facility-box .item {
   font-size: 14px;
}
.rooms-price-wrap {
   margin-top: 40px;
   padding: 40px;
   background-color: var(--color-bg-white);
   border: 1px solid var(--color-lightgray);
}
.rooms-price-table-wrap + .rooms-price-table-wrap {
   margin-top: 40px;
}
.price-type {
   margin-bottom: 16px;
   font-size:18px;
   color: var(--color-main);
   text-align: center;
}

.rooms-price-table {
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
}
.rooms-price-table th,
.rooms-price-table td {
   font-size: 15px;
   border: 1px solid #495e7e;
}
.rooms-price-table th{
   padding: 10px 10px;
   color: var(--color-white);
   font-weight: 400;
   text-align: center;
   background: var(--color-main);
}

.rooms-price-table td{
   width: 50%;
   padding: 10px 10px;
   font-weight: 400;
   text-align: center;
}
.rooms-price-table td.subttl{
   line-height: 1.3;
   background-color: #f5f3f0;
}
.rooms-price-table td.subttl .time{
   display: block;
   font-size: 13px;
}

.rooms-credit{
   margin-top: 64px;
   margin-bottom: 16px;
   text-align: center;
}
.rooms-credit .ttl{
   display: inline-block;
   padding: .6em;
   font-size: 16px;
   font-weight: 400;
   border-top: 1px solid var(--color-lightgray);
   border-bottom: 1px solid var(--color-lightgray);
}
.rooms-credit .note{
   font-size: .8em;
}
.rooms-credit .text{
   margin-top: 24px;
   font-size: 15px;
}
.rooms-credit .pic{
   margin-inline: auto;
   margin-top: 8px;
   max-width: 400px;
}
.rooms-credit .paypay-logo img{
   width: 140px;
}
@media (max-width: 960px) {
   .rooms-price-wrap {
      margin-top: 32px;
      padding: 24px;
   }
   .rooms-price-table-wrap + .rooms-price-table-wrap{
      margin-top: 24px;
   }
   .rooms-price-table th{
      font-size: 14px;
   }
   .rooms-price-table td{
      font-size: 14px;
   }
   .rooms-price-table td.subttl .time{
      font-size: 12px;
   }
   .rooms-credit{
      margin-top: 40px;
      margin-bottom: 10px;
   }
   .rooms-credit .ttl{
      font-size: 14px;
   }
   .rooms-credit .text{
      font-size: 12px;
   }
}
.rooms-members-info {
   margin-inline: auto;
   margin-top: 80px;
   padding: 40px;
   display: flex;
   align-items: center;
   flex-direction: column;
   color: var(--color-white);
   background-color: #a2332f;
}
.rooms-members-info .micro{
   font-size:15px;
}
.rooms-members-info .ttl{
   margin-top: 8px;
   font-size:18px;
}
.rooms-members-info-btn a{
   width: 300px;
   margin-top: 24px;
   margin-left: 0;
   margin-right: 0;
   background-color: #a2332f;
   border: 1px solid #fff;
}
@media (max-width: 767px) {
   .rooms-members-info {
      padding: 32px 24px 32px;
   }
   .rooms-members-info .micro{
      font-size:13px;
   }
   .rooms-members-info .ttl{
      font-size:16px;
      text-align: center;
   }
   .rooms-members-info .ttl span{
      display: block;
   }
}
.rooms-footer {
   margin-top: 80px;
}
.rooms-back-btn a {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   padding: .8em .2em;
   color: var(--color-main);
   font-size: 15px;
   font-weight: 600;
   border: 1px solid var(--color-main);
   border-radius: 0px;
   transition: 0.3s ease-in-out;
}
.rooms-back-btn a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid var(--color-white);
   border-right: 2px solid var(--color-white);
   transform: rotate(45deg);
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translateY(-50%) rotate(45deg);
}
.rooms-back-btn a:hover {
   opacity: .6;
   text-decoration: none;
}
@media (max-width: 767px) {
   .rooms-back-btn a {
      font-size: 14px;
   }
}

/* equipment service */
.equipment-sec {
   margin-top: 80px;
}
.equipment-wrap {
   margin-top: 48px;
}
.equipment-list {
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 40px;
}
.equipment-item .contents{
   margin-top: 20px;
}
.equipment-item .ttl{
   font-size: 20px;
   font-weight: 600;
   color: var(--color-gold-2);
   text-align: center;
}
.equipment-item .text{
   margin-top: 8px;
   font-size: 15px;
}

.service-sec {
   margin-top: 120px;
}
.service-list {
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 40px;
}
.service-item .contents{
   margin-top: 20px;
}
.service-item .ttl{
   font-size: 20px;
   font-weight: 600;
   color: var(--color-gold-2);
   text-align: center;
}
.service-item .text{
   margin-top: 8px;
   font-size: 15px;
}
.service-item .text a{
   text-decoration: underline;
}

.facility-sec {
   margin-top: 120px;
}
.facility-list {
   display: grid;
   grid-template-columns: repeat(2,1fr);
   gap: 40px;
}
.facility-item .contents{
   margin-top: 10px;
}
.facility-item .text{
   font-size: 15px;
   text-align: center;
}
@media (max-width: 767px) {
   .equipment-list {
      grid-template-columns: repeat(1,1fr);
      gap: 54px 40px;
   }
   .service-sec {
      margin-top: 80px;
   }
   .service-list {
      display: grid;
      grid-template-columns: repeat(1,1fr);
      gap: 54px 40px;
   }
   .facility-sec {
      margin-top: 80px;
   }
   .facility-list {
      display: grid;
      grid-template-columns: repeat(1,1fr);
      gap: 24px 16px;
   }
   .facility-item .text{
      font-size: 14px;
   }
}

/* food */
.food-sec {
   margin-top: 80px;
}
.food-wrap {
   margin-top: 48px;
}
.food-list {
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 40px;
}
.food-item .contents{
   margin-top: 16px;
}
.food-item .ttl{
   font-size: 16px;
   text-align: center;
}
.drink-sec {
   margin-top: 120px;
}
.drink-wrap {
   margin-inline: auto;
   max-width: 800px;
   margin-top: 48px;
}
.drink-list {
   display: grid;
   grid-template-columns: repeat(2,1fr);
   gap: 40px;
}
.drink-item .contents{
   margin-top: 16px;
}
.drink-item .ttl{
   font-size: 16px;
   text-align: center;
}
.btn.g-menu-btn {
   margin-top: 40px;
}
.btn.g-menu-btn a{
   max-width: 380px;
}
@media (max-width: 767px) {
   .food-wrap {
      margin-top: 24px;
   }
   .food-list {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 40px 10px;
   }
   .food-item .ttl{
      font-size: 14px;
   }
   .drink-sec {
      margin-top: 80px;
   }
   .drink-wrap {
      margin-top: 24px;
   }
   .drink-list {
      gap: 40px 10px;
   }
   .btn.g-menu-btn a{
      font-size: 14px;
   }
}

/* access */
.access-sec {
   margin-top: 80px;
}
.access-col {
   margin-top: 80px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
}
.access-add {
   width: 50%;
}
.access-pic {
   width: 50%;
}
.access-desc {
   display: flex;
   flex-wrap: wrap;
   width: 100%;
}
.access-desc dt{
   display: flex;
   align-items: center;
   width: 26%;
   padding: 20px 5px;
   border-bottom: 1px solid var(--color-lightgray);
   border-color: var(--color-main);
}
.access-desc dd{
   width: 74%;
   padding: 20px 5px 20px 32px;
   border-bottom: 1px solid var(--color-lightgray);
}
.access-desc dd .link{
   display: block;
   font-size: 13px;
}
.sightseeing-sec {
   margin-top: 120px;
}
.sightseeing-wrap {
   margin-top: 48px;
}
.sightseeing-list {
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 40px;
}
.sightseeing-item figcaption{
   margin-top: 16px;
   text-align: center;
}
@media (max-width: 767px) {
   .access-sec {
      margin-top: 48px;
   }
   .access-col {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 40px;
   }
   .access-add {
      width: 100%;
   }
   .access-pic {
      width: 100%;
   }
   .access-desc dt{
      width: 100%;
      padding: 16px 5px 0;
      border-bottom: none;
      border-color: var(--color-main);
   }
   .access-desc dd{
      width: 100%;
      padding: 0 5px 16px;
      border-bottom: 1px solid var(--color-lightgray);
   }
   .sightseeing-sec {
      margin-top: 80px;
   }
   .sightseeing-wrap {
      margin-top: 48px;
   }
   .sightseeing-list {
      display: grid;
      grid-template-columns: repeat(1,1fr);
      gap: 40px;
   }
}

/* members */
.members-copy {
   margin-top: 64px;
   font-size: 20px;
}
.members-sec {
   margin-top: 24px;
}
.benefits-sec {
   margin-top: 64px;
}
.benefits-inner {
   width: 100%;
   max-width: 840px;
   padding: 0 24px;
   margin-left: auto;
   margin-right: auto;
}
.benefits-ttl {
   font-size: 28px;
   font-weight: 600;
   color: var(--color-gold-2);
   text-align: center;
}
.benefits-contents {
   margin-top: 40px;
   padding: 40px;
   background-color: var(--color-white);
   box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}
.benefits-contents .ttl{
   font-size: 20px;
   color: var(--color-gold-2);
   font-weight: 600;
   line-height: 1.4;
}
.benefits-contents .body{
   margin-top: 20px;
   border-top: 1px solid var(--color-lightgray);
}
.benefits-contents .body p{
   margin-top: 20px;
}
.benefits-contents .body ol{
   margin-top: 20px;
   margin-left: 24px;
   list-style:decimal
}
.benefits-contents .body .note{
   font-size: .85em;
}
.benefits-rank-table {
   margin-top: 20px;
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
}
.benefits-rank-table th,
.benefits-rank-table td {
   font-size: 15px;
   border: 1px solid #495e7e;
}
.benefits-rank-table th{
   width: 33%;
   padding: 10px 5px;
   color: var(--color-white);
   font-weight: 400;
   text-align: center;
   background: var(--color-main);
}
.benefits-rank-table td{
   padding: 10px 5px;
   text-align: center;
}

@media (max-width: 767px) {
   .members-copy {
      margin-top: 40px;
      font-size: 16px;
   }
   .benefits-sec {
      margin-top: 40px;
   }
   .benefits-inner {
      padding: 0;
   }
   .benefits-ttl {
      font-size: 22px;
   }
   .benefits-contents {
      margin-top: 24px;
      padding: 24px;
   }
   .benefits-contents .ttl{
      font-size: 18px;
   }
   .benefits-contents .body{
      font-size: 15px;
   }
}
/* faq */
.faq-sec {
   margin-top: 80px;
}
.faq-inner {
   margin-inline: auto;
   width: 100%;
   max-width: 840px;
}
.faq-contents + .faq-contents{
   margin-top: 64px;
}

.faq-heading {
   display: flex;
   justify-content: center;
   margin-bottom: 32px;
}
.faq-ttl {
   display: inline-block;
   position: relative;
   padding: 0 2.8em;
   font-size: 24px;
   font-weight: 600;
}

.faq-ttl::before,
.faq-ttl::after {
   content: '';
   display: inline-block;
   position: absolute;
   top: 50%;
   width: 45px;
   height: 1px;
   background-color: var(--color-base);
}
.faq-ttl::before {
   left: 0;
}
.faq-ttl::after {
   right: 0;
}

.faq-accordion {
   margin: 0 auto;
}
.panel {
   border: 1px solid var(--color-lightgray);
   border-radius: 3px;
}
.panel + .panel{
   margin-top: 16px;
}

.panel-header {
   width: 100%;
   padding: 16px 16px 16px 48px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #fff;
   border: none;
   cursor: pointer;
   font-size: 16px;
   text-align: left;
   line-height: 1.5;
   position: relative;
   font-family: 'Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

.panel-header:hover {
   background: #f8f9fa;
}
.q-txt::before {
   position: absolute;
   top: 17px;
   left: 16px;
   content: "Q．";
   color: var(--color-gold);
   font-size: 16px;
   font-weight: bold;
}
.panel-header .icon {
   font-size: 20px;
   transition: transform 0.3s;
}

.panel-header.active .icon {
   transform: rotate(45deg);
}

.panel-content {
   height: 0;
   overflow: hidden;
   transition: height 0.3s ease-out;
}

.panel-body {
   padding: 20px;
   background: #fff;
   border-top: 1px solid #eee;
}
.panel-body p + p{
   margin-top: 10px;
}
.panel-body a{
   text-decoration: underline;
}

@media screen and (max-width: 767px) {
   .faq-ttl {
      font-size: 20px;
   }
   .panel-header {
      padding: 16px 16px 16px 44px;
      font-size: 15px;
   }
   .panel-body {
      font-size: 15px;
   }
}


/* *****************************************************************
*	blog
* ***************************************************************** */
.single-blog .entry-title{
   margin-top: 16px;
   line-height: 1.4;
   font-size: 28px;
}

@media screen and (max-width: 767px) {
   .single-blog .entry-title{
      margin-top: 8px;
      font-size: 21px;
   }
}



/* *****************************************************************
*	contact form
* ***************************************************************** */
.cf7 {
   margin-top: 48px;
}
.cf7__table {
   max-width: 100%;   
   width: 100%;
   border-collapse: collapse;
   border-spacing: 0;
   table-layout: fixed;
   word-break: break-all;
   word-wrap: break-word;
}

.cf7__table th {
	width: 30%;
	text-align: left;
	background: #f7f7f7;
	padding: 24px;
	border: 1px solid #ddd;
	vertical-align: middle;
}

.cf7__table td {
	text-align: left;
	padding: 24px;
	border: 1px solid #ddd;
	vertical-align: middle;
}
/* 必須・任意 */
.cf7__required,
.cf7__optional {
   margin-left: 8px;
   padding: 2px 6px;
   color: #fff;
   font-size: 10px;
   vertical-align: 1px;
   border-radius: 10px;
}

.cf7__required {
   background: #ed6d74;
}

.cf7__optional {
   background: #aaa;
}

/* input・textarea */
.cf7__table td input[type="text"],
.cf7__table td input[type="tel"],
.cf7__table td input[type="email"],
.cf7__table td textarea {
   width: 100%;
   padding: 15px 20px;
   outline:none;
   font-size: 16px;
}
/* チェックボックス・ラジオボタン */
.cf7__table td .wpcf7-checkbox,
.cf7__table td .wpcf7-radio {
   display: block;
   padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__table td .wpcf7-list-item {
   display: block;
   margin: 0;
}

.cf7__table td .wpcf7-list-item:nth-child(n + 2) {
   margin-top: 18px;
}

/* 横並び（ラジオボタン） */
.cf7__table td .wpcf7-radio {
   padding: 0 0 10px;
}
.cf7__table td .wpcf7-radio .wpcf7-list-item {
   display: inline-block;
   margin: 0;
}
.cf7__table td .wpcf7-radio .wpcf7-list-item:nth-child(n + 2) {
   margin-top: 0;
   margin-left: 32px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__table td .wpcf7-list-item label {
   cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
   position: relative;
   width: 18px;
   height: 18px;
   margin-right: 8px;
   border: 1px solid #bcbcbc;
   vertical-align: -3px;
   cursor: pointer;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
   border: 1px solid #000;
   background: #000;
}

input[type="checkbox"]:checked:before {
   position: absolute;
   top: 2px;
   left: 5px;
   transform: rotate(50deg);
   width: 6px;
   height: 10px;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   content: '';
}

/* ラジオボタン */
input[type="radio"] {
   border-radius: 50%;
}

input[type="radio"]:checked:before {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: #000;
   content: '';
}

.form-kakunin {
	margin: 40px 0;
	text-align: center;
   font-size: 14px;
}

.cf7__btn {
	margin: 0 auto;
	text-align: center;
}
input.wpcf7-submit {
	padding: 1.5em 2em;
	margin: 0;
	background: var(--color-main);
	border: 1px solid var(--color-main);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 9999px;
}

input.wpcf7-submit:hover {
	opacity: 0.8;
	transition: all .5s;
	border: 1px solid var(--color-main);
}

div.wpcf7 .ajax-loader {
	display: none !important;
}

span.wpcf7-spinner {
	display: block;
	margin: 0 auto;
}
@media only screen and (max-width:767px) {
	.cf7__table th,
	.cf7__table td {
		width: 100%;
		display: block;
		border-top: none;
		padding: 15px 10px;
	}

	.cf7__table tr:first-child th {
		border-top: 1px solid #ddd;
	}
}

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

/* googlemap */
.googlemap {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.googlemap iframe {
	width: 100%;
	height: 100%;
}

/* etc
---------------------------------------------------- */
hr {
   margin: 48px 0;
   border: none;
   height: 1px;
   background-color: var(--color-gray);
}
.brsp {
   display: none;
}
@media ( max-width: 767px){
   .brsp {
      display: block;
   }
   .brpc {
      display: none;
   }
}

.mt-0 {
	margin-top: 0px !important;
}

.mt-8 {
	margin-top: 8px !important;
}

.mt-16 {
	margin-top: 16px !important;
}

.mt-24 {
	margin-top: 24px !important;
}

.mt-32 {
	margin-top: 32px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-48 {
	margin-top: 48px !important;
}

.mt-56 {
	margin-top: 56px !important;
}

.mt-64 {
	margin-top: 64px !important;
}

.mt-72 {
	margin-top: 72px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-96 {
	margin-top: 96px !important;
}

.mt-120 {
	margin-top: 120px !important;
}

.mt-160 {
	margin-top: 160px !important;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.mb-8 {
	margin-bottom: 8px !important;
}

.mb-16 {
	margin-bottom: 16px !important;
}

.mb-24 {
	margin-bottom: 24px !important;
}

.mb-32 {
	margin-bottom: 32px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-48 {
	margin-bottom: 48px !important;
}

.mb-56 {
	margin-bottom: 56px !important;
}

.mb-64 {
	margin-bottom: 64px !important;
}

.mb-72 {
	margin-bottom: 72px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-96 {
	margin-bottom: 96px !important;
}

.mb-120 {
	margin-bottom: 120px !important;
}

.mb-160 {
	margin-bottom: 160px !important;
}
.pt-0 {
	padding-top: 0px !important;
}

.pt-8 {
	padding-top: 8px !important;
}

.pt-16 {
	padding-top: 16px !important;
}

.pt-24 {
	padding-top: 24px !important;
}

.pt-32 {
	padding-top: 32px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pt-48 {
	padding-top: 48px !important;
}

.pt-56 {
	padding-top: 56px !important;
}

.pt-64 {
	padding-top: 64px !important;
}

.pt-72 {
	padding-top: 72px !important;
}

.pt-80 {
	padding-top: 80px !important;
}

.pt-96 {
	padding-top: 96px !important;
}

.pt-120 {
	padding-top: 120px !important;
}

.pt-160 {
	padding-top: 160px !important;
}

.pb-0 {
	padding-bottom: 0px !important;
}

.pb-8 {
	padding-bottom: 8px !important;
}

.pb-16 {
	padding-bottom: 16px !important;
}

.pb-24 {
	padding-bottom: 24px !important;
}

.pb-32 {
	padding-bottom: 32px !important;
}

.pb-40 {
	padding-bottom: 40px !important;
}

.pb-48 {
	padding-bottom: 48px !important;
}

.pb-56 {
	padding-bottom: 56px !important;
}

.pb-64 {
	padding-bottom: 64px !important;
}

.pb-72 {
	padding-bottom: 72px !important;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.pb-96 {
	padding-bottom: 96px !important;
}

.pb-120 {
	padding-bottom: 120px !important;
}

.pb-160 {
	padding-bottom: 160px !important;
}
.text-italic { font-style: italic; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.fs-10 {font-size:10px;}
.fs-12 {font-size:12px;}
.fs-14 {font-size:14px;}
.fs-16 {font-size:16px;}
.fs-18 {font-size:18px;}
.fs-20 {font-size:20px;}
.fs-22 {font-size:22px;}
.fs-24 {font-size:24px;}
.fs-26 {font-size:26px;}
.fs-28 {font-size:28px;}
.fs-30 {font-size:30px;}
.fs-32 {font-size:32px;}
.fs-34 {font-size:34px;}
.fs-36 {font-size:36px;}
.fs-38 {font-size:38px;}
.fs-40 {font-size:40px;}

._center {
   display: block;
   text-align: center;
}

/* baguetteBox */
#baguetteBox-overlay .full-image img {
   max-height: 95%;
   max-width: 90%;
}