@charset "utf-8";

/*PCSP共通設定*/
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic:wght@500&display=swap');

/*キラッと光るボタンデザイン*/
@keyframes shine {
  100% { left: 125%; }
}

#wrapper{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000;
}

section:nth-of-type(odd){background-color:#FCF9E9;}
section:nth-of-type(even){background-color:#ECECEC;}

img {
    image-rendering: -webkit-optimize-contrast;
}

a:hover img {
	opacity: 0.8;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1,Style=0,Opacity=80);
}

strong {
    font-weight: 600;
}

*, *:before, *:after {
	box-sizing: border-box;
}

.textLeft {
	text-align: left;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}

.red {
	color: #ff0000;
}

/*759px以下*/
@media screen and (max-width: 759.9px) {
#wrapper {line-height: 1.4;}
.spnone{display:none !important;}

/* CSS */
#dirPathBlock,
#anchorLinkBlock {
	font-size: 10px;
	margin: 1% 1% 0 1%;
}

#dirPathBlock p,
#anchorLinkBlock a{font-size: 12px;}

.inner {
	width: 96%;
	margin: 0 auto;
	padding: 5% 2%;
}

/*title*/
.titlePc {
    display: none !important;
}

.titleSp {
    width: 100% !important;
    text-align: center;
}

.titleSp img {
    width: 100%;
}

/*navi*/
  #navi {
    padding: 6px 0;
    background: #0F3345; /* 必要なら上書き */
  }

  /* UL をグリッドにして 2列表示（2行×2列） */
  #navi ul {
    width: 100%;
    padding: 0 6px;              /* 両端の余白 */
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 8px;                     /* アイテム間の隙間（調整可） */
    list-style: none;
    margin: 0;
  }

  /* li の余計な flex の影響を排除 */
  #navi li {
    flex: none;
    margin: 0;
    padding: 0;
    border-right: none;           /* 横のボーダーはデフォで無効化 */
    border-bottom: none;          /* 行の下のボーダーは不要（任意） */
    box-sizing: border-box;
  }

  /* 2列表示の際、左列の右側に薄い仕切りを入れる（任意） */
  #navi li:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.5);
  }
  #navi li:nth-child(even) {
    border-right: none;
  }

  /* リンクを中央寄せ・タップ領域確保 */
  #navi li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    min-height: 30px;             /* タップしやすさ確保 */
    box-sizing: border-box;
    background: transparent;
  }


/*見出し*/
h1 {
	font-size: 12px;
	margin: 0 1%;
}

h2 {
  background: #054568;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .35);
  color: #fff;
  font-weight: 700;
  padding: .5em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 20px;
}

h3 {
  padding: 0 .5em;
  border-left: 5px solid #7a765c;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: .5em;
}

h3 small {
  font-weight: normal;
  font-size: 80%;
}

h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #7f0019;
  text-align: center;
  margin: 2em 0 .5em;
}

h4::before,
h4::after {
  content: '';
  height: 2px;
  background-color: #7f0019;
  width: 40px; /* ここで長さを決める */
}

h4::before {
  right: 50%;   /* 中央を基準に左側へ */
  margin-right: calc(0.5em + 4px); /* 中央テキストとの隙間（調整用） */
}

h4::after {
  left: 50%;    /* 中央を基準に右側へ */
  margin-left: calc(0.5em + 4px); /* 中央テキストとの隙間（調整用） */
}

/*館内施設・お部屋のご紹介*/
.roomBox01 {
    flex-direction: column;
    align-items: stretch;
}

.roomBox01 .photo {
    width: 100%;
    flex: 0 0 auto;
    text-align: center; /* スマホでは中央寄せが見やすい場合に */
    margin-bottom: .5em;
}

.roomBox01 .photo img {
  width: 100%;
  height: auto;
}

.roomBox01 .detail {
    width: 100%;
    flex: 0 0 auto;
    line-height: 1.4;
}

.roomBox02 {
  display: flex;
  flex-direction: column; /* 要素を縦並びに */
  align-items: center;    /* 中央揃え（必要に応じて） */
  gap: 10px;  
}
    
 .roomBox02 .photo02 img {
  width: 100%;
  height: auto;
}
    
 .roomBox02 .detail {
    text-align: left; /* 中央揃えが不要なら左揃えに */
    line-height: 1.4;
}


/** 2列表示のとき **/
.itemList2 .photo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: .5em;
}

.itemList2 .photo img {
    width: 100%;
    height: auto;
    display: block;
}

.itemList2 .detail {/* detail を下にして幅100%にする */
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    text-align: left;
    line-height: 1.4;
}

/** 4列表示のとき **/
.itemList4 > div {
	position: relative;
    display: inline-block;
}

.itemList4 .photo img {
	display: block; /* 行内スペースや下のズレを防ぐ */
    width: 100%;
    height: auto;
}

.itemList4 > div .overlay-text {
      position: absolute;
      top: 0;
      left: 0;
      /* 画像周りの背景色 */
      background-color: rgba(127, 0, 25, 0.9);
      color: white;
      padding: .5em .8em;
      text-align: center;
      font-weight: 600;
}

/** おもてなし **/
.service {
  border-top: 1px dashed #000;
  margin-top: 1em;
  padding-top: 1em;
  box-sizing: border-box;
}

/* guideList のスタイル（任意） */
.service .guideList {
  line-height: 1.4;
}

/* photo（inline画像）を丸くして回り込ませる設定 */
.service img  {
  float: right;               /* 右に回り込ませる（左にしたければ left） */
  width: 36%;               /* 必ず幅・高さを指定する */
  height: 36%;
  margin-left: .5em;
  margin-bottom: .5em;
  display: block;             /* ブロックにして確実に float を効かせる */
  border-radius: 50%;         /* 丸く見せる */
  object-fit: cover;          /* 画像を切り抜く */
  overflow: hidden;
  shape-outside: circle(50% at 50% 50%);         /* 対応ブラウザで円形回り込み */
  -webkit-shape-outside: circle(50% at 50% 50%);
  vertical-align: top;    /* 行ボックスの上端に揃える（念のため） */
}

/* クリア（float の影響で親高さが崩れる場合に対応） */
.service::after {
  content: "";
  display: block;
  clear: both;
}

.fukidashi {
    display: inline-block;
    vertical-align: top;      /* ← これで画像の上端に揃う */
    position: relative;
    padding: .2em .4em .4em;
    border-radius: 5px;
    background-color: #d4af37;
    color: #fff;
    margin-bottom: .8em;
    text-align: center;
    line-height: 1.2;
}

.fukidashi::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 8px solid #d4af37;
}




/*◆list横並び*/
.itemList4 > div,
.itemList3 > div,
.itemList2 > div {
    width: 100%;
    margin: 1em 0;
}

/*◆注意事項*/
ul.guideList {
}

ul.guideList li {
	padding-bottom: .5em;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:before {
	content: '◆';
}

ul.guideList li.kome {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
}

ul.guideList li.kome:before {
	content: '※';
}

ul.guideList li span {
	color: #F00;
}

/*◆ボタン*/
.Btn a {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    display: block;
    background: #990033;
    margin: auto;
    padding: 1em 2em;
    text-align: center;
    font-weight: 600;
    outline: none;
    color: #fff;
    transition: ease .2s;
}
.Btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}

.Btn a:hover::before {
  animation: shine 0.7s;
}

.Btn a:after,
.Btn_gray:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 1em;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
    




.Btn_gray {
  color: #fff;
  width: 88%;
  text-align: center;
  background: #666    ;
  border-radius: 5px;
  padding: 6% 3%;
  position: relative; /* 追記 */
  font-weight: bold;
}

.Btn_gray::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.Btn_gray span {
  font-size: 85%;
  font-weight: normal;
}



	
}



/*760px以上*/
@media screen and (min-width: 760px),print {
/* CSS */
#wrapper {line-height: 1.231;}
#dirPathBlock,
h1,
.iframe_end-content_gadget,
#anchorLinkBlock{
	width: 100%;
	max-width:1080px;
	min-width:760px;
	margin: auto;
}
	
.pcnone{
    display: none !important;
	}

/*panlist&back*/
#dirPathBlock,
#anchorLinkBlock {
	width: 100%;
	margin: 10px auto;
	display: block;
	font-size: 12px;
}

#dirPathBlock p,
#anchorLinkBlock a{font-size: 12px;}

.inner {
	width: 1080px;
	margin: 0 auto;
	padding: 50px 0;
}

/*title*/
.titlePc {
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
  overflow: hidden;        /* はみ出す場合に隠す */
}

.titlePc img {
  min-height: 400px;
  max-width: 100%;
  height: auto;            /* 必要に応じて調整 */
  object-fit: cover;
  object-position: center;
}

.titleSp {
		display: none !important;
}

/*navi*/
#navi {
  width: 100%;
  background: #0F3345;
  padding: .5em 0;
}

#navi ul {
  width: var(--content-width-pc);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#navi li {
  flex: 0 1 auto;
}

#navi li:not(:last-child) {
  border-right: 1px solid #fff;
}

#navi li a {
  display: block;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}



/*見出し*/
h1 {
	font-size: 14px;
    margin: 0 auto 5px;
}

h2 {
  background: #054568;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .35);
  color: #fff;
  font-weight: 700;
  padding: .5em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 26px;
}

h3 {
  padding: 0 .5em;
  border-left: 5px solid #7a765c;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: .5em;
}

h3 small {
  font-weight: normal;
  font-size: 70%;
}

h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #7f0019;
  margin: 2em 0 .5em;
}

h4::before,
h4::after {
  content: '';
  height: 2px;
  background-color: #7f0019;
  width: 120px; /* ここで長さを決める */
}

h4::before {
  margin-right: calc(0.5em + 4px); /* 中央テキストとの隙間（調整用） */
}

h4::after {
  margin-left: calc(0.5em + 4px); /* 中央テキストとの隙間（調整用） */
}

/*館内施設・お部屋のご紹介*/
.roomBox01 {
  display: flex;
  align-items: flex-start; /* 画像とテキストの縦位置を揃える */
  gap: 10px; /* 要素間の隙間 */
  flex-wrap: nowrap;
}

.roomBox01 .photo {
  width: 540px;
  margin-right: 10px; /* 必要なら残す */
  flex: 0 0 540px; /* flex アイテムとして固定幅にする */
}

.roomBox01 .photo img {
  width: 100%;
  height: auto;
}

.roomBox01 .detail {
  width: 540px;
  flex: 1 1 auto; /* 余白を占有するように */
  line-height: 1.4;
}

.roomBox02 {
  display: flex;
  flex-direction: column; /* 要素を縦並びに */
  align-items: center;    /* 中央揃え（必要に応じて） */
  gap: 10px;  
}
    
 .roomBox02 .photo02 img {
  width: 100%;
  height: auto;
}
    
 .roomBox02 .detail {
    text-align: left; /* 中央揃えが不要なら左揃えに */
    line-height: 1.4;
}

/** 2列表示のとき **/
.itemList2 .photo {
	flex: 0 0 240px;
    max-width: 240px;
}

.itemList2 .photo img {
	display: block; /* 行内スペースや下のズレを防ぐ */
    width: 100%;
    height: auto;
}

.itemList2 .detail {
	flex: 1 1 0;
    min-width: 0; /* テキスト折返しのために必須 */
    text-align: left; /* 中央揃えが不要なら左揃えに */
    line-height: 1.4;
}

/** 4列表示のとき **/
.itemList4 > div {
	position: relative;
    display: inline-block;
}

.itemList4 .photo img {
	display: block; /* 行内スペースや下のズレを防ぐ */
    width: 100%;
    height: auto;
}

.itemList4 > div .overlay-text {
      position: absolute;
      top: 0;
      left: 0;
      /* 画像周りの背景色 */
      background-color: rgba(127, 0, 25, 0.9);
      color: white;
      padding: .5em .8em;
      text-align: center;
      font-weight: 600;
}



/** おもてなし **/
.service {
  border-top: 1px dashed #000;
  margin-top: 1em;
  padding-top: 1em;
  box-sizing: border-box;
}

/* guideList のスタイル（任意） */
.service .guideList {
  line-height: 1.4;
}

/* photo（inline画像）を丸くして回り込ませる設定 */
.service img  {
  float: right;               /* 右に回り込ませる（左にしたければ left） */
  width: 40%;               /* 必ず幅・高さを指定する */
  height: 40%;
  margin-left: 1em;
  margin-bottom: 0.6em;
  display: block;             /* ブロックにして確実に float を効かせる */
  border-radius: 50%;         /* 丸く見せる */
  object-fit: cover;          /* 画像を切り抜く */
  overflow: hidden;
  shape-outside: circle(50% at 50% 50%);         /* 対応ブラウザで円形回り込み */
  -webkit-shape-outside: circle(50% at 50% 50%);
  /* shape-outside を確実に動作させるために background-image を使う方法もあります（下で補足） */
}

/* クリア（float の影響で親高さが崩れる場合に対応） */
.service::after {
  content: "";
  display: block;
  clear: both;
}

.fukidashi {
    display: inline-block;
    position: relative;
    padding: .5em .7em;
    border-radius: 5px;
    background-color: #d4af37;
    color: #fff;
    margin-bottom: 1em;
}

.fukidashi::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 8px solid #d4af37;
}






/*◆list横並び*/
.itemList2,
.itemList3,
.itemList4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;   /* 項目間の等間隔（任意の値に調整） */
  padding: 0;  /* コンテナ両端の内側余白をゼロにする */
  margin: 1em 0;
}

/* 2列 */
.itemList2 > div {
  box-sizing: border-box;
  width: calc((100% - 1 * 20px) / 2); /* gap が 1 箇所なので (100% - gap) / 2 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* 3列 */
.itemList3 > div {
  box-sizing: border-box;
  width: calc((100% - 2 * 20px) / 3); /* gap が 2 箇所なので (100% - 2*gap) / 3 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* 4列 */
.itemList4 > div {
  box-sizing: border-box;
  width: calc((100% - 3 * 20px) / 4); /* gap が 3 箇所なので (100% - 3*gap) / 4 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.itemList2 > div .Btn,
.itemList3 > div .Btn,
.itemList4 > div .Btn,
.itemList2 > div .Btn_gray,
.itemList3 > div .Btn_gray,
.itemList4 > div .Btn_gray {
  width: 100%;
}

/*◆注意事項*/
ul.guideList {
}

ul.guideList li {
	padding-bottom: .5em;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:last-child {
	padding-bottom: 0;
}

ul.guideList li:before {
	content: '◆';
}

ul.guideList li.kome:before {
	content: '※';
}



/*◆ボタン*/
.Btn a {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    display: block;
    background: #990033;
    margin: auto;
    padding: 1em 2em;
    text-align: center;
    font-weight: 600;
    outline: none;
    color: #fff;
    transition: ease .2s;
}
.Btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}

.Btn a:hover::before {
  animation: shine 0.7s;
}

.Btn a:after,
.Btn_gray:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 1em;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}


.Btn_gray {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    display: block;
    background: #666;
    margin: auto;
    padding: 1em 2em;
    text-align: center;
    font-weight: 600;
    outline: none;
    color: #fff;
    transition: ease .2s;
}

}