@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

.pc {
  display: none !important;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
button[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
button[type=button] {
  outline-offset: -2px;
}

input[type=text], textarea {
  font-size: 16px;
}

/*デフォルト設定*/
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

img {
  width: 100%;
}

#top-link span {
  display: none;
}

.wrap {
  width: 90%;
  margin: auto;
}

/*ヘッダー*/
#logo {
  width: 80%;
}

#tel {
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
}

/*メイン画像*/
/* main */
/*-------------------------------------------*/
.top_main {
  margin-left: 10%;
  margin-left: 0;
  padding-bottom: 50px;
}

/*中ページ*/
.s-main {
  background: url(../img/s-mainbg.webp) no-repeat center center;
  text-align: center;
  background-size: cover;
  padding: 50px 0;
  margin-top: 10px;
}
.s-main h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
}
.s-main P {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
}

/*パンくず*/
div#bread {
  margin: 20px 0 60px 0;
}

#bread ul li {
  display: inline-block;
  font-size: 13px;
}

ul.bread-list li a {
  font-size: 13px;
  text-decoration: underline;
}

ul.bread-list li a:hover {
  text-decoration: none;
}

ul.bread-list li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 5px;
}

ul.bread-list li:last-child:after {
  content: none;
}

/* footer SP */
/*-------------------------------------------*/
#footer .wrap {
  width: 95%;
  margin: auto;
}

.f-logo {
  text-align: center;
  margin-bottom: 25px;
}
.f-logo img {
  width: 50%;
}

.f-info {
  margin-bottom: 30px;
}
.f-info p {
  background-size: contain !important;
  margin-bottom: 15px;
  margin-left: 0 !important;
}

.f-info02 table {
  width: 100%;
}
.f-info02 th, .f-info02 td {
  text-align: center;
  padding: 3% 2%;
}
.f-info02 th {
  font-size: 14px;
}
.f-info02 td {
  border-bottom: 1px solid #ce8ea7;
}
.f-info02 .time table {
  margin-bottom: 20px;
}
.f-info02 .time p {
  margin-bottom: 20px;
}
.f-info02 h5 {
  background-color: #f2e6ea;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.f-info02 .rev_box > div {
  display: flex;
  margin-bottom: 25px;
}
.f-info02 .rev_box .btn_line {
  width: 25%;
  margin-left: 2%;
}
.f-info02 .rev_box a > img {
  width: 80%;
  margin-bottom: 20px;
}
.f-info02 .rev_box > p {
  font-size: 13px;
  margin-bottom: 10px;
}

.h-info {
  background-color: #f2e6ea;
}

.f-sitemap {
  margin-top: 40px;
}
.f-sitemap > div {
  margin-bottom: 30px;
}
.f-sitemap li {
  text-align: center;
  padding: 15px 0;
  background-color: #f2e6ea;
  border-bottom: 1px solid #ce8ea7;
}
.f-sitemap p {
  background-color: #ce8ea7;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 10px 0;
}
.f-sitemap p a {
  color: #fff;
}

.f-sns {
  display: flex;
  margin-bottom: 30px;
}
.f-sns li {
  width: 12%;
  margin-right: 10px;
}

.copyright {
  font-size: 13px;
  text-align: center;
  background-color: #e8c8d4;
  padding: 10px 0;
}

.top_btn {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 99;
}

/* コンテンツレイアウト */
/*-------------------------------------------*/
section {
  width: 90%;
  margin: auto;
  margin-bottom: 60px;
}

/* ボタン */
/*-------------------------------------------*/
.web-reserve-button {
  /* レイアウト: 縦並び・中央揃え */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* サイズと背景 */
  width: 175px;
  height: 105px;
  background-color: #ce8ea7; /* 画像に近いピンク */
  border-radius: 12px; /* 角の丸み */
  text-decoration: none; /* リンクの下線を消す */
  /* ホバー時のアニメーション */
  transition: opacity 0.3s ease;
}
.web-reserve-button:hover {
  opacity: 0.8;
}

.icon-laptop {
  display: block;
  width: 40px;
  height: 25px;
  border: 2px solid #ffffff;
  border-radius: 2px;
  position: relative;
  margin-bottom: 8px;
}
.icon-laptop::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 50px;
  height: 3px;
  background-color: #ffffff;
}

.web-reserve-button .text {
  color: #ffffff;
  font-size: 18px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
}

.btn01 {
  margin-bottom: 10px;
  text-align: center;
}
.btn01 a {
  font-size: 15px;
  display: inline-block;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  background-color: #000;
  background: #bf2f65 url(../img/ya_mark.webp) no-repeat right 10px center;
  background-size: 7%;
  color: #fff !important;
}

.btn02 {
  margin-bottom: 10px;
  text-align: center;
}
.btn02 a {
  font-size: 15px;
  display: inline-block;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  background-color: #000;
  background: #af9e79 url(../img/ya_mark.webp) no-repeat right 10px center;
  background-size: 7%;
  color: #fff;
  margin-top: -20px;
}

/*WEB予約ボタン*/
.btn-web-reserve {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #bf2f65; /* メインのえんじ色 */
  color: #fff;
  text-decoration: none;
  padding: 3px 0;
  width: 100%;
  border-radius: 15px; /* 角丸 */
  transition: opacity 0.3s;
}

.btn-header {
  display: flex;
  align-items: center;
}

.icon-pc {
  position: relative;
  width: 32px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 2px;
  margin-right: 15px;
}

.icon-pc::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -4px;
  width: 40px;
  height: 3px;
  background-color: #fff;
  border-radius: 1px;
}

.main-text {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
}

.sub-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}

/*共通パーツ*/
.icon_bil {
  padding: 5px 0 5px 35px;
  background: url(../img/icon_bil.webp) no-repeat left center;
  background-size: 13%;
  font-size: 20px;
  margin-left: 20px;
  margin-bottom: 10px;
}

.icon_car {
  padding: 5px 0 5px 50px;
  background: url(../img/icon_car.webp) no-repeat left center;
  background-size: 13%;
  font-size: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.icon_map {
  padding: 5px 0 5px 35px;
  background: url(../img/icon_map.webp) no-repeat left center;
  background-size: 13%;
  margin-left: 20px;
}

.icon_bil span, .icon_car span {
  color: #bf2f65;
}

/* top */
/*-------------------------------------------*/
#top01 h3 {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.5;
  margin: 30px 0;
}
#top01 h3 span {
  color: #bf2f65;
}
#top01 p {
  margin-bottom: 20px;
}
#top01 .in_box {
  margin-bottom: 30px;
}
#top01 .in_box ul li {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #e2d1db, #d9c5d1);
  border-radius: 50px;
  border: 2px solid #fff;
  margin-bottom: 10px;
}
#top01 .in_box ul li img {
  width: 35px;
  height: 35px;
  margin: 0 20px 0 40px;
}

.gallery ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery li {
  width: 48%;
  margin-bottom: 10px;
}

#top02 .wrap {
  text-align: center;
  width: 100%;
}
#top02 .wrap h3 {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  margin-bottom: 35px;
}
#top02 .wrap img {
  width: 50%;
  margin: auto;
}

.feature_box h4 {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  line-height: 1.5;
}
.feature_box h4 span {
  font-size: 28px;
  color: #bf2f65;
}
.feature_box > div {
  width: 350px;
  margin: auto;
  margin-bottom: 25px;
}
.feature_box > div p {
  text-align: left;
  margin-top: 20px;
}
.feature_box > div > div {
  width: 350px;
  height: 370px;
  position: relative;
  background-size: contain !important;
}
.feature_box #fe01 > div {
  background: url(../img/top02-img01.png) no-repeat center center;
}
.feature_box #fe02 > div {
  background: url(../img/top02-img02.png) no-repeat center center;
}
.feature_box #fe03 > div {
  background: url(../img/top02-img03.png) no-repeat center center;
}

.feature_box {
  text-align: center;
}

#top03 h3 {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
#top03 h3 span {
  color: #bf2f65;
}
#top03 p {
  margin-bottom: 30px;
  text-align: left;
}
#top03 .text-in {
  margin-top: 15px;
  text-align: center;
}
#top03 .text-in > img {
  margin-bottom: 20px;
}

#top04 h3 {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
#top04 h4 {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  margin-bottom: 35px;
}
#top04 .in_box > div > div img {
  margin-bottom: 20px;
}
#top04 .in_box p {
  margin-bottom: 20px;
}

.top_news .top-news-ttl {
  text-align: center;
}
.top_news img {
  width: 50%;
}
.top_news .top_news-cont {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px dotted #313131;
}
.top_news .top_news-date {
  color: #bf2f65;
  margin-right: 50px;
}

#top06 {
  text-align: center;
}
#top06 p {
  text-align: left;
}
#top06 > div {
  background-color: #fff;
  border: 1px solid #bf2f65;
  padding: 3%;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* タイトル（グーテンベルク） */
/*-------------------------------------------*/
/* フォントを明朝体に、文字色を濃いグレーに設定 */
h3.wp-block-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 27px;
  text-align: center; /* 中央揃え */
  position: relative; /* 擬似要素（ドット）を配置するための基準 */
  display: inline-block; /* ドットを文字幅に合わせるため */
  padding-bottom: 5px; /* 文字とラインの間の余白 */
  /* デフォルトの下線を消す（もしあれば） */
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 45px; /* 見出し下の余白 */
  font-weight: unset;
}

/* 中央のピンク色のライン */
h3.wp-block-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px; /* ラインの長さ */
  height: 1.5px; /* ラインの太さ（少し細くするとより上品です） */
  background-color: #d1a1b5;
}

/* 左右のドット */
h3.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: -4px; /* ラインの中央にドットが来るよう調整 */
  left: 50%;
  transform: translateX(-50%);
  /* ドット自体の設定 */
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: transparent; /* 中央の本体は透明にする */
  /* box-shadowで左右にドットを飛ばす */
  /* -70px（左）と 70px（右）の合計がラインの長さ140pxと一致します */
  box-shadow: -70px 0 0 0 #c98fa8, 70px 0 0 0 #c98fa8;
}

h4.wp-block-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: unset;
  margin-bottom: 30px;
}
h4.wp-block-heading strong {
  color: #bf2f65;
  font-weight: unset;
}

h5.wp-block-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: unset;
  margin-bottom: 20px;
}
h5.wp-block-heading strong {
  color: #bf2f65;
  font-weight: unset;
}

.wp-block-media-text__media {
  margin: 20px 0 !important;
}

.flow {
  background-color: #f7eff2;
  border-radius: 20px;
  padding: 5%;
}
.flow h5 {
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  font-weight: unset;
  padding-left: 65px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.flow .flow01 {
  background: url(../img/f_01.png) no-repeat left top;
  background-size: 12%;
}
.flow .flow02 {
  background: url(../img/f_02.png) no-repeat left top;
  background-size: 12%;
}
.flow .flow03 {
  background: url(../img/f_03.png) no-repeat left top;
  background-size: 12%;
}
.flow .flow04 {
  background: url(../img/f_04.png) no-repeat left top;
  background-size: 12%;
}
.flow .flow05 {
  background: url(../img/f_05.png) no-repeat left top;
  background-size: 12%;
}
.flow .flow06 {
  background: url(../img/f_06.png) no-repeat left top;
  background-size: 12%;
}
.flow > div > div {
  margin-bottom: 20px;
  padding-bottom: 70px;
  background: url(../img/flow-line.png) no-repeat center bottom;
}
.flow > div > div:last-child {
  background: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.wp-block-table td, .wp-block-table th {
  border: none !important;
  border-top: 1px dotted #88757c !important;
  border-bottom: 1px dotted #88757c !important;
  border-left: 1px solid #d2d2d2 !important;
  border-right: 1px solid #d2d2d2 !important;
  text-align: center;
  padding: 25px 0 !important;
  display: block;
}

.wp-block-table {
  margin-bottom: 20px;
}
.wp-block-table thead {
  background-color: #e0c3ce;
  border-bottom: none !important;
}
.wp-block-table tr > td:first-child {
  background-color: #f7eff2;
}
.wp-block-table.type02 td:last-child {
  text-align: left;
  padding: 3% 5% !important;
}

.conte {
  margin-bottom: 60px;
}
.conte a {
  color: #bf2f65;
  text-decoration: underline;
}
.conte .btn01 {
  margin-top: 25px;
}
.conte .btn01 a {
  text-decoration: none;
}

.partners {
  padding-left: 20px;
}
.partners li {
  list-style: disc;
}

/* 投稿 */
/*-------------------------------------------*/
.blog-cont {
  margin-bottom: 20px;
  border-bottom: 1px dotted #313131;
  padding-bottom: 20px;
}

.blog_box a {
  text-decoration: none;
}

.blogs-img {
  margin-bottom: 20px;
}

.blog-con {
  margin-bottom: 50px;
}

.blog-title h4 {
  font-size: vw(20);
}

.blog-date02 {
  margin-bottom: 10px;
}

/*詳細*/
.blog-date {
  margin-bottom: 20px;
}

/*カテゴリー*/
.category .s-main {
  display: none;
}
/*# sourceMappingURL=sp.css.map */