@charset "utf-8";
html{
  scroll-behavior: smooth;
}
:root {
  /* カラー変数 */
  --main-blue: #032F7A;
  --gold: #A99E32;
  --text: #333;
  --ex01: #A55958;
  --ex01-shadow: #79403F;
  --ex02: #44716B;
  --ex02-shadow: #2F534E;

  /* フォント変数 */
  --mincho-head:  "Shippori Mincho", serif;
}
* { box-sizing: border-box; }
img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
figure {
  margin: 0;
}
/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none; /* リストスタイルの削除 */
}

/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}


/*=====================================
共通アイテム
======================================*/
/* 見出し */
.head02 {
  position: relative;
  font-family: var(--mincho-head);
  font-weight: 800;
  text-align: center;
  margin: 2em auto 64px;
  font-size: 3.2rem;
  color: var(--main-blue);
}
.head02::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -16px;
  width: 220px;
  height: 40px;
  background: url("../images/h-frameL.svg") no-repeat left bottom;
  background-size: contain;
}
.head02::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -16px;
  width: 220px;
  height: 40px;
  background: url("../images/h-frameR.svg") no-repeat right top;
  background-size: contain;
}

.head03 {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 2.44rem;
  font-weight: 600;
  color: var(--main-blue);
  display: block;
  margin-bottom: 32px;
  padding-left: 2.8em;
  line-height: 1.55;
}
.head03::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.8em;
  height: 1.2em;
  background: url(../images/head-kazari.svg) no-repeat left center;
  background-size: contain;
  transform: translateY(-50%);
  z-index: 1;
}

.head04 {
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}


/* 文字 */
.txt {
  font-size: 1.6rem;
  line-height: 1.6;
}
.notes {
  font-size: 1.4rem;
}
a.txt-link {
  text-decoration: underline;
}
.attention {
  color: #A80D0D;
}
.attention-s {
  color: #A80D0D;
  font-size: 1.4rem;
}
.space {
  margin-left: 1rem;
}

/* ボタン */
a.btn01 {
  position: relative;
  background: #fff;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  padding: 16px 32px 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid var(--gold);
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
}
a.btn01 .material-symbols-rounded {
  position: absolute;
  right: 8px;
}
a.btn01:hover {
  background-color: var(--gold);
}

/* ホバー透過 */
.fade {
  transition: opacity 0.5s;
  cursor: pointer;
}
.fade:hover {
  opacity: 0.5;
}
/* シンプルなリスト */
.disc-small li {
  margin-left: 16px;
  padding-left: 6px;
  position: relative;
}
.disc-small li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--main-blue);
  position: absolute;
  top: 12px;
  left: -10px;
  border-radius: 50%;
}

/*=====================================
京都で温泉 宿泊プラン
======================================*/
#spapass {
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  background: #fff;
  line-break: strict;
}
.spapass_wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
}
.spapass_wrap h1 {
  width: 96%;
  max-width: 1236px;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 2.0rem;
  line-height: 1.5em;
  font-weight: 700;
}

/*=====================================
メインビジュアル
======================================*/
.hero {
  width: 100%;
  overflow: hidden;
}
.hero img {
  display: block;
}


/*=====================================
いつもの京都観光に＋温泉を
======================================*/
.kyoto-onsen_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../images/bg-about_pattern.jpg) repeat;
  background-size: 850px 567px;
  padding: 50px 24px 0;
}
.intro {
  width: 100%;
  max-width: 1440px;
  text-align: center;
  padding-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
}
.intro-ill_woman {
  width: 134px;
}
.intro-txt {
  width: 718px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro-ill_yukata {
  width: 106px;
}
.intro-ill {
  display: none;
}

.about_cont, .enjoy_cont {
  width: 100%;
  max-width: 1028px;
  margin-bottom: 60px;
}

/* SPA PASSとは */
.about {
  display: flex;
  gap: 40px;
}
.about-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-logo {
  width: 260px;
}

/* 第二弾：施設リスト */
.about_list-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about_lis, .about__note-list {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
}

/* 楽しみ方 */
.enjoy-catch {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 24px;
}
.enjoy {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  margin-top: 16px;
}
.enjoy_ex {
  flex: 1;
  background: #fff;
  border: 2px solid var(--ex01);
  box-shadow: 3px 3px var(--ex01-shadow);
}
.enjoy_ex.ex02 {
  border: 2px solid var(--ex02);
  box-shadow: 3px 3px var(--ex02-shadow);
}
.enjoy-ttl {
  padding: 8px 16px;
  background: var(--ex01);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.ex02 .enjoy-ttl {
  background: var(--ex02);
}
.enjoy-desc {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ex02 .enjoy-desc {
  margin-top: 2em;
}
.enjoy_ex-list {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.stay {
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: #D4C09D;
  text-align: center;
}
.enjoy-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.enjoy-list_item {
  padding: 10px;
  width: 100%;
  background: #F4ECEC;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.enjoy-list_item::after {
  content: "";
  position: absolute;
  background: url(../images/arrow_downward.svg) no-repeat center;
  background-size: contain;
  width: 22px;
  height: 22px;
  left: 50%;
  bottom: -22px;
}
.enjoy-list_item:last-child::after {
  display: none;
}
.ex02 .enjoy-list_item {
  background: #ECF3F0;
}
.enjoy-list_item img {
  width: 14vw;
  max-width: 180px;
}

/*第二弾*/
.coupon_wrap {
  background-color: var(--gold);
  padding: 1em 0.5em;
}
.coupon {
  position: relative;
  padding: 16px 32px;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  text-align: center;
}
.coupon:before, .coupon:after{
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #fff;
}
.coupon:before {
  left: 10px;
}
.coupon:after {
  right: 10px;
}
.coupon_head {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 3.1rem;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(63, 63, 63, 1);
  line-height: 1.3;
}
a.coupon_btn {
  display: block;
  background: var(--main-blue);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  padding: 16px 32px;
  width: fit-content;
  height: auto;
  margin: 16px auto 8px;
  border: 3px solid var(--main-blue);
  cursor: pointer;
  transition: 0.5s;
  text-decoration: none;
  animation: coupon_btn-bg 1.5s infinite;
}

@keyframes coupon_btn-bg {
  0% {
  color: #fff;
  }
  50% {
  color: #ffffff43;
  }
  100% {
    background-color: var(--main-blue);
  }
}
.link_items {
  display: flex;
  gap: 32px;
  flex-direction: column;
  margin: 0 20px 60px;
}
.link {
  display: flex;
  gap: 72px;
  align-items: center;
}
.link_btns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.link_book {
  width: 298px;
  text-align: center;
}
.link_book-h1 {
  border: 1px solid var(--text);
}
.link_txt {
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*=====================================
京都市温泉活性化協議会一覧
======================================*/
.hotel_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 60px 20px 80px;
  background-image: url(../images/bg-plan_kumo.png), url(../images/bg-plan_pattern.jpg);
  background-repeat: repeat-y, repeat;
  background-position: top center, top left;
  background-size: 100% auto, auto;
  background-blend-mode: multiply; /* 乗算 */
}
.hotel {
  max-width: 1032px;
  margin: 0 auto;
  width: 100%;
}
.hotel_heads {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.hotel_heads-logo {
  width: 140px;
  flex-shrink: 0;
}
.hotel_heads-desc {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-head02 {
  font-size: 3.2rem;
  font-family: var(--mincho-head);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hotel-head03 {
  color: var(--main-blue);
  font-family: var(--mincho-head);
  font-size: 2.6rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
  text-align: center;
  border-top: 1px solid var(--main-blue);
  border-bottom: 1px solid var(--main-blue);
}

.hotel-list {
  width: 100%;
  max-width: 1032px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 0;
  /* margin: 0 20px 32px; */
}

.hotel-list > li {
  flex-basis: 31.8%;
  display: flex;
  flex-direction: column;
}
.hotel_img {
  position: relative;
}
.hotel_cap {
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow:1px 1px 0 var(--text), -1px -1px 0 var(--text),
              -1px 1px 0 var(--text), 1px -1px 0 var(--text),
              0px 1px 0 var(--text),  0-1px 0 var(--text),
              -1px 0 0 var(--text), 1px 0 0 var(--text);
              font-feature-settings: "palt";
}
/* .hotel-list li img {
  margin-bottom: 8px;
} */
.hotel-name {
  color: var(--main-blue);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
}
.hotel-name ruby {
  display: flex;
  flex-direction: column-reverse;
}
.hotel-name .yomi {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.hotel-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.yu-spec {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yu-spec .border {
  border: 1px solid var(--text);
  padding: 0 2px;
  margin-right: 4px;
  font-size: 1.4rem;
}

/* SPA PASS単体購入 */
.buy-pass_wrap {
  border-top: 1px dashed var(--text);
  max-width: 1028px;
  width: 100%;
  margin-top: 40px;
  padding: 40px 20px 0;
}
.buy-pass_desc {
  max-width: 820px;
  width: 100%;
  margin: 0 auto 24px;
  text-align: center;
}
.buy-pass_head {
  font-weight: 600;
  font-size: 1.8rem;
  display: inline;
  background: linear-gradient(transparent 50%, #dccece 100%);
}
.buy-pass_txt {
  text-align: left;
  margin-top: 24px;
}

/*=====================================
バナーエリア
======================================*/
.bnr_area {
  padding: 40px 24px;
  text-align: center;
}
.bnr-list {
  max-width: 1028px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}
.bnr-item {
  line-height: 0;
  border: 1px solid var(--text);
}
.bnr-item img {
  max-width: 260px;
  width: 100%;
}
/*=====================================
pagetop
======================================*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  text-align: center;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  background-color: var(--gold);
  color: var(--text);
  padding: 0.15rem;
  cursor: pointer;
}

.pagetop span {
  font-size: 4rem;
}

/*=====================================
共通
======================================*/
.sp, .sp-br {
  display: none;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.mgT8 {
  margin-top: 8px;
}

.mgT16 {
  margin-top: 16px;
}

.mgL4 {
  margin-left: 4px;
}

.mgL8 {
  margin-left: 8px;
}