@charset "utf-8";

/*
theme Name: 草津舘専用テーマ
Author: Plusers
Description: TOP theme
version： 1.0.0
*/
/*cssのリセット*/
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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: serif, Sawarabi Mincho, "Noto Serif JP", "Shippori Mincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  color: #000;
  overflow-x: hidden;
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

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

/*---------------------------------------------------------
共通定義
---------------------------------------------------------*/
/* 空白 */
.spase-half {
  margin-right: 0.5rem;
}

.spase-one {
  margin-right: 1rem;
}

/* スマホのみ改行 */
.sp_br {
  display: none;
}

/* フェードライン */
.separate_fade {
  margin: 1.5rem 0;
  border: 0;
  height: 1.5px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

/* ボタンエフェクト01 */
.btneffect-01 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  border: 1px solid #555;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
  transition: all .2s linear;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
  background-color: #ffffffb8;
}

.btneffect-01:hover {
  background: #4b4f56;
  color: #fff;
}

/*矢印と下線の形状*/
.btneffect-01::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
  background: #333;
  transition: all .2s linear;
}

.btneffect-01::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -19px;
  width: 1px;
  height: 16px;
  background: #333;
  transform: skewX(45deg);
  transition: all .2s linear;
}

/*hoverした際の移動*/
.btneffect-01:hover::before {
  right: -30px;
}

.btneffect-01:hover::after {
  right: -23px;
}

/* ボタンエフェクト02 */
.btneffect-02 {
  position: relative;
  border: 1px solid #555;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
  transition: all .2s linear;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
  background-color: #ffffffb8;
}

.btneffect-02:hover {
  background: #333;
  color: #fff;
  border: 1px solid #fff;
}

/*---------------------------------------------------------
フェード関連
---------------------------------------------------------*/
/* そのままゆっくり表示 */
.fade {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定*/
.fadeInTrigger,
.fadeDownTrigger {
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------------------------
メニューボタン
---------------------------------------------------------*/
.menubtn {
  position: fixed;
  background: #666;
  cursor: pointer;
  width: 75px;
  height: 75px;
  border-radius: 5px;
  z-index: 10;
  top: 25px;
  left: 25px;
}

/*ボタン内側*/
.menubtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
}

.menubtn span:nth-of-type(1),
.menubtn span:nth-of-type(3) {
  height: 3px;
  background: #fff;
  width: 50px;
  left: 13px;
}

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

.menubtn span:nth-of-type(2) {
  top: 29px;
  left: 12px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.menubtn span:nth-of-type(3) {
  top: 60px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.menubtn.active span:nth-of-type(1) {
  top: 30px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 55px;
}

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

.menubtn.active span:nth-of-type(3) {
  top: 43px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 55px;
}

/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/
#TOP-NAV {
  position: fixed;
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#TOP-NAV.panelactive {
  opacity: 0.9;
  z-index: 8;
  background-color: #000;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: all 0.3s;
}

/*ナビゲーションの縦スクロール*/
/* 元は「#TOP-NAV .panelactive」の間に半角スペースがあり、
   #TOP-NAVの子要素の.panelactiveを探すセレクタになっていたが、
   .panelactiveは#TOP-NAV自身に付与されるクラスなので一致せず、
   このスクロール設定が常に無効になっていた（メニュー内の項目が
   画面より多い時に他要素と重なって見える原因）。スペースを削除して修正。*/
#TOP-NAV.panelactive #TOP-NAV-LIST {
  position: fixed;
  z-index: 8;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* 中身をflexで中央寄せにすることで、内容が画面より多い時は
     絶対配置(position:absolute + transform)特有のはみ出しを避け、
     素直に上からスクロールできるようにする */
  display: flex;
  align-items: center;
  justify-content: center;
}

/*ナビゲーション*/
#TOP-NAV ul {
  display: none;
  width: 70%;
  margin: 2rem auto;
}

#TOP-NAV.panelactive ul {
  display: flex;
  justify-content: space-evenly;
}

#TOP-NAV ul .link_header {
  text-align: center;
  font-size: 1.5rem;
}

#TOP-NAV ul .out_link {
  margin-top: 2rem;
}

/*リストのレイアウト設定*/
#TOP-NAV li {
  list-style: none;
  line-height: 4rem;
  color: #fff;
  margin: 0 auto;
  width: fit-content;
}

#TOP-NAV li rt {
  text-align: -webkit-center;
}

#TOP-NAV li a {
  color: #fff;
  text-decoration: none;
  width: fit-content;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: 0.5s;
}

#TOP-NAV li a:hover {
  color: #e1c7a3;
  transition: 0.5s;
}

#TOP-NAV-LIST ul .in-link,
#TOP-NAV-LIST ul .out-link {
  width: 40%;
}

/* 予約ボタン */
header .reserve_block {
  position: fixed;
  height: 75px;
  top: 24px;
  left: 135px;
  z-index: 8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

header .reserve_link {
  background-color: #fff;
  margin: 0 0.5rem 0 0;
  padding: 20px 20px;
}

/* スマホ用アイコン */
header .reserve-link {
  display: none;
}

/* SNSリンク */
header .sns_block {
  position: fixed;
  height: 75px;
  top: 24px;
  left: 670px;
  z-index: 8;
  display: flex;
  align-items: center;
}

header .sns_block .sns_link {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 5px 15px;
  font-size: 25px;
  margin: 0 0.5rem;
  transition: 0.5s;
  background-color: #333;
}

header .sns_block .sns_link:hover {
  color: #333;
  border: 2px solid #333;
  background-color: #fff;
  transition: 0.5s;
}

/*---------------------------------------------------------
フッター
---------------------------------------------------------*/
#FOOTER {
  background-color: #000;
}

#FOOTER .footer_wrap {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 5rem 0 2rem;
  margin: 0 auto;
  width: 75%;
}

#FOOTER .footer_wrap a {
  text-decoration: none;
  transition: 0.5s;
  color: #fff;
}

#FOOTER .footer_wrap a:hover {
  color: #e1c7a3;
  transition: 0.5s;
}

#FOOTER .footer_wrap .copyright .footer_logo {
  width: 300px;
}

#FOOTER .footer_wrap .copyright .copyright_note {
  margin: 1.5rem 0;
  line-height: 2rem;
}

#FOOTER .footer_wrap .footer_border {
  border-right: 1px solid #fff;
  width: 1px;
  height: 200px;
}

#FOOTER .footer_wrap .footer_link {
  display: flex;
  flex-direction: column;
  line-height: 2.5rem;
  align-items: center;
}

/*---------------------------------------------------------
ページTOP
---------------------------------------------------------*/
/* ページTOPに戻る */
#PAGE_TOP {
  display: none;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 3;
}

#PAGE_TOP a img {
  transition: 0.5s all;
  transform: scale(1);
}

#PAGE_TOP a img:hover {
  transition: 0.5s all;
  transform: scale(1.1);
}

#PAGE_TOP a img {
  width: 3rem;
}

/*---------------------------------------------------------
メインビジュアル
---------------------------------------------------------*/
/* スライダー */
#TOP .slider {
  position: relative;
  z-index: 1;
  /* スマホのアドレスバー表示/非表示で高さがガタつくのを防ぐため
     動的ビューポート単位(dvh)を優先的に使用 */
  height: 100vh;
  height: 100dvh;
}

/* 背景画像設定 */
#TOP .slider-item01 {
  background: url(../images/top/slider/01.webp);
}

#TOP .slider-item02 {
  background: url(../images/top/slider/02.webp);
}

#TOP .slider-item03 {
  background: url(../images/top/slider/03.webp);
}

#TOP .slider-item04 {
  background: url(../images/top/slider/04.webp);
}

#TOP .slider-item05 {
  background: url(../images/top/slider/05.webp);
}

#TOP .slider-item {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* filter: brightness(60%); */
}

/*矢印の設定*/
#TOP .slick-prev,
#TOP .slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 25px;
  width: 25px;
}

#TOP .slick-prev {
  left: 2.5%;
  transform: rotate(-135deg);
}

#TOP .slick-next {
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
#TOP .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

#TOP .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

#TOP .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

#TOP .slick-dots .slick-active button {
  background: #333;
}

/* タイトルロゴ */
#TOP .title_logo {
  position: absolute;
  top: 50px;
  right: 0;
  margin-right: 100px;
  z-index: 2;
  width: 400px;
}

/* キャッチコピー */
#TOP .catchcopy {
  position: absolute;
  color: #fff;
  bottom: 50px;
  margin-left: 150px;
  z-index: 2;
}

#TOP .catchcopy .catchcopy-title {
  font-size: 1.5rem;
}

#TOP .catchcopy .catchcopy-note {
  margin: 2rem 0;
  line-height: 2rem;
}

/*---------------------------------------------------------
お知らせ
---------------------------------------------------------*/
#TOP .notice {
  background-image: url(../images/bg/06_bkimg.webp);
  background-size: cover;
  padding: 10rem 0;
}

#TOP .notice h3 {
  font-size: 2rem;
  text-align: center;
  color: #555;
  border-bottom: 1.8px solid #aaa;
  padding-bottom: 3rem;
  width: 90%;
  margin: 0 auto 3rem;
}

#TOP .notice .post_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
}

#TOP .notice .post_block .post_card {
  margin: 1rem 0;
}

#TOP .notice .post_block .post_card a {
  color: #333;
}

/* #TOP .notice .post_block iframe {
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid #666;
} */

#TOP .notice .post_block iframe {
  transition: 0.5s;
  border: 1px solid #666;
  background-color: #fff;
}

/* #TOP .notice .post_block iframe:hover {
  filter: brightness(90%);
  transition: 0.5s;
  cursor: pointer;
} */

#TOP .notice .post_block .post_block_contents:hover {
  filter: brightness(90%);
  transition: 0.5s;
  cursor: pointer;
}

#TOP .notice .archive_link {
  margin: 5rem auto 0;
}

/*---------------------------------------------------------
インフォメーション
---------------------------------------------------------*/
#TOP .access {
  background-image: url(../images/bg/07_bkimg.webp);
}

#TOP .spa {
  background-image: url(../images/bg/03_bkimg.webp);
}

#TOP .store {
  background-image: url(../images/bg/19_bkimg.webp);
}

/* 共通定義 */
#TOP .info {
  background-size: cover;
  padding: 10rem 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

#TOP .info .info_img {
  width: 60%;
}

#TOP .info .info_img p {
  text-align: center;
  margin-top: 1rem;
}

#TOP .info .info_note {
  width: 600px;
  margin: 0 auto 3rem;
}

#TOP .info .info_title h4 {
  width: fit-content;
  padding: 2rem;
  margin: 0 auto 2rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  line-height: 3rem;
}

#TOP .info .info_detail {
  line-height: 2.5rem;
  margin-top: 2rem;
}

#TOP .info .more_link {
  margin: 2rem auto;
}

/*---------------------------------------------------------
個別ページ（共通）
---------------------------------------------------------*/
.page-title {
  background-image: url(../images/bg/pagetitle_02.webp);
  background-size: cover;
  padding-top: 12rem;
  padding-bottom: 4rem;
  /* 高さ固定(height)だと文章量の多いページ(お問い合わせ・ご案内等)で
     はみ出した文字が次のセクションと重なってしまうため、
     最低の高さ(min-height)に変更。内容が多い時は自然に伸びる */
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

.page-title h1 {
  text-align: center;
  color: #555;
  font-size: 3rem;
}

.page_separate {
  width: 70%;
  margin: 2rem auto;
}

.page-title-note {
  text-align: center;
  line-height: 3rem;
  font-weight: 400;
}

/* 小タイトル */
.item-title {
  font-size: 2rem;
  line-height: 1;
  background: url(../images/icon_logo.webp) no-repeat center top;
  background-size: 2rem;
  padding: 3rem 0 3rem 0;
  text-align: center;
  color: #444;
}

/* テーブル */
.page_table {
  max-width: 1100px;
  width: fit-content;
  margin: 4rem auto;
  display: block;
  padding: 0 1rem;
  line-height: 2rem;
}

.page_table th {
  padding: 1.5rem 2rem;
  text-align: center;
  background: #d4d5a0;
  border-bottom: solid 1px #fff;
  white-space: nowrap;
  vertical-align: middle;
}

.page_table td {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.50);
  border-bottom: solid 1px #d4d5a0;
  vertical-align: middle;
}

/* リスト */
.page_list {
  width: fit-content;
  margin: 4rem auto;
  padding: 0 1rem;
}

.page_list dl dt {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  width: fit-content;
  border-bottom: 2px dotted #cbcbcb;
}

.page_list dd {
  margin: 1rem 0;
}

.page_list li {
  margin: 0 2rem;
  line-height: 2.5rem;
}

/*---------------------------------------------------------
ご案内
---------------------------------------------------------*/
/* 文字列（共通） */
#INFO .contents-note {
  text-align: center;
  line-height: 2.5rem;
}

/* 施設概要 */
#INFO .main {
  background: url(../images/bg/01_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

/* アクセス */
#INFO .access {
  background: url(../images/bg/07_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

#INFO .access-map {
  width: 60%;
  margin: 5rem auto;
}

#INFO .access-link {
  line-height: 2rem;
  margin: 2rem auto;
}

/* その他 */
#INFO .other {
  background: url(../images/bg/03_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

#INFO .contact_link {
  margin: 3rem auto;
}

/*---------------------------------------------------------
客室
---------------------------------------------------------*/
#ROOM {
  background: url(../images/bg/01_bkimg.webp);
  background-size: cover;
}

#ROOM .main {
  padding: 5rem 0 15rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  position: relative;
}

#ROOM .main img {
  width: 60%;
  margin: 0 0 0 4rem;
}

#ROOM .main .main-title h3 {
  writing-mode: vertical-rl;
  margin: 10rem auto 0;
  font-weight: 100;
  font-size: 2.5rem;
  letter-spacing: 1.3rem;
}

#ROOM .main .main-title .room-border {
  height: 200px;
  width: fit-content;
  margin: 4rem auto;
  border-right: 1px solid #aaa;
}

#ROOM .main .main-note_right,
#ROOM .main .main-note_left {
  font-size: 1.2rem;
  line-height: 3rem;
  position: absolute;
}

#ROOM .main .main-note_right {
  right: 130px;
}

#ROOM .main .main-note_left, {
  left: 130px;
}

/*---------------------------------------------------------
温泉
---------------------------------------------------------*/
/* タイトル */
.spa-title {
  padding-bottom: 5rem;
  height: auto;
}

/* 共通定義 */
#SPA .contents-note {
  text-align: center;
  line-height: 2.5rem;
}

#SPA .wakanoyu .wakanoyu_img,
#SPA .shirahata .shirahata_img {
  width: 60%;
  margin: 3rem auto;
}

#SPA .wakanoyu .wakanoyu_img p,
#SPA .shirahata .shirahata_img p,
#SPA .bath .bath_img p {
  text-align: center;
  margin-top: 1rem;
}

/* 若乃湯 */
#SPA .wakanoyu {
  background: url(../images/bg/01_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

/* 白旗の湯 */
#SPA .shirahata {
  background: url(../images/bg/07_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

/* PDFリンクボタン */
#SPA .pdf-link {
  margin: 2rem auto;
}

/* 大浴場 */
#SPA .bath {
  background: url(../images/bg/03_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

#SPA .bath .bath_imgblock {
  display: flex;
  margin: 3rem auto;
  justify-content: center;
}

#SPA .bath .bath_img {
  width: 47%;
  margin: 0 1rem;
}

/*---------------------------------------------------------
お食事
---------------------------------------------------------*/
/* 共通定義 */
#MEAL .main-left .main-title,
#MEAL .main-right .main-title {
  writing-mode: vertical-rl;
  font-weight: 100;
  font-size: 4.5rem;
  letter-spacing: 2.5rem;
  color: #999;
}

#MEAL .main-left .main-Word,
#MEAL .main-right .main-Word {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 朝食 */
#MEAL .main-left {
  background: url(../images/bg/01_bkimg.webp);
  padding: 10rem 0;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#MEAL .main-left img {
  width: 60%;
  margin-left: 5rem;
}

/* 夕食 */
#MEAL .main-right {
  background: url(../images/bg/06_bkimg.webp);
  padding: 10rem 0;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#MEAL .main-right img {
  width: 60%;
  margin-right: 5rem;
}

/* その他 */
#MEAL .other {
  background: url(../images/bg/07_bkimg.webp);
  padding: 5rem 0;
  background-size: cover;
}

#MEAL .other .img_block {
  display: flex;
  justify-content: space-around;
  margin: 5rem 0;
}

#MEAL .other .img_block .img_detail {
  text-align: center;
}

#MEAL .other .img_block .img_detail img {
  width: 90%;
}

#MEAL .other .img_block .img_detail p {
  margin-top: 1rem;
}

/*---------------------------------------------------------
お問い合わせ
---------------------------------------------------------*/
#CONTACT {
  background: url(../images/bg/01_bkimg.webp);
  background-size: cover;
}

#CONTACT h3 {
  width: 70%;
  margin: 0 auto;
  padding: 5rem 0 1rem;
  border-bottom: 1px solid #777;
  font-size: 1.5rem;
}

.caution {
  border: 2px solid #c24f3c;
  width: fit-content;
  margin: 3rem auto;
  padding: 2rem 3rem;
  font-weight: 500;
}

.caution .caution-title {
  font-size: 1.5rem;
  color: #ff0000;
}

#CONTACT .wp-block-contact-form-7-contact-form-selector {
  margin: 0 auto;
  width: fit-content;
  padding: 2rem 0 5rem;
}

#CONTACT .wpcf7 p {
  width: 500px;
  margin: 2rem 0;
}

#CONTACT .wpcf7 input,
#CONTACT .wpcf7 textarea {
  border: 1px solid #000;
  background-color: #fff;
}

#CONTACT .wpcf7 p .wpcf7-text {
  width: 100%;
  height: 40px;
  padding: 0.5rem;
}

/* #CONTACT .wpcf7 p .wpcf7-radio {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 1rem;
}

#CONTACT .wpcf7 p .wpcf7-radio .wpcf7-list-item {
  margin: 0.5rem 0 0 1rem;
} */
#CONTACT .wpcf7 p .wpcf7-textarea {
  width: 600px;
  padding: 0.5rem;
  resize: none;
}

#CONTACT .wpcf7-form-control-wrap {
  line-height: 1.8rem;
}

#CONTACT .wpcf7 p .wpcf7-submit {
  padding: 0.5rem 2rem;
}

#CONTACT .wpcf7 p .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

#CONTACT .wpcf7 p .wpcf7-pp {
  margin: 0 0.5rem;
}

/*---------------------------------------------------------
プライバシーポリシー
---------------------------------------------------------*/
#POLICY {
  /* padding: 10rem 5rem; */
}

#POLICY h1 {
  text-align: center;
  color: #555;
  font-size: 3rem;
  padding: 10rem 0 5rem;
}

#POLICY h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
}

#POLICY .policy-note {
  margin-bottom: 2rem;
  line-height: 2rem;
}

#POLICY .policy-area {
  background-color: #dfdfdf;
  padding: 5rem 10rem;
}

#POLICY .policy-block {
  margin: 2rem;
  line-height: 2rem;
}

#POLICY .policy-block ol {
  margin: 1.2rem;
}

/*---------------------------------------------------------
デザインブラッシュアップ（全体の細かい仕上げ）
---------------------------------------------------------*/
/* キーボード操作時のフォーカスを見やすく */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #e1c7a3;
  outline-offset: 2px;
}

/* クリックで拡大できる写真は、それとわかるようホバー時に軽く発光 */
.js-lightbox {
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.js-lightbox:hover,
.js-lightbox:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
