@charset "UTF-8";

/* ------
  - *基本設定
  - *パンくずリスト
  - *ページ内リンク
  - *ページャー
  - *書式設定
  - *メインビジュアル
  - *タイトル
  - *おすすめ
  - *お悩みリスト
  - *院長の想い
  - *当院の特徴
  - *追加費用
  - *当院が選ばれる理由
  - *料金表（タブ）
  - *施術の流れ
  - *注意点・副作用・リスク
  - *よくある質問
  - *WEB予約ボタン
------ */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
main section:not(:last-child) {
  margin-bottom: 150px;
}

main .wrapper {
  margin: 30px auto 100px;
}

main .contents {
  width: 100%;
}

main .inner {
  max-width: 1200px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  main section {
    margin-bottom: 80px;
  }

  main .wrapper {
    margin: 0 auto 100px;
  }

  main .inner {
    max-width: 1200px;
  }
}

/* ==================================================================================================================================

  *パンくずリスト

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.breadcrumb {
  margin: 0 auto 30px !important;
}

.breadcrumb_list {
  counter-reset: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}

.breadcrumb_list li {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.breadcrumb_list li::after {
  content: "\f054";
  position: relative;
  top: -1px;
  padding: 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
}

/* 親ターム、子タームが複数ある場合、最後以外にカンマを表示 */
.breadcrumb_list li.parent:has(~ .parent)::after,
.breadcrumb_list li.child:has(~ .child)::after,
.breadcrumb_list li.grandchild:has(~ .grandchild)::after {
  content: ",";
  position: relative;
  top: 0;
  padding: 0 5px;
  font-family: inherit;
  font-weight: normal;
  font-size: 100%;
}

/* 最後の要素の矢印を消す */
.breadcrumb_list li:last-of-type::after {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 13px;
  }
}

/* ==================================================================================================================================

  *ページ内リンク

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.page_links {
  margin-bottom: 100px;
}

.page_links ul {
  display: grid;
  gap: 10px 30px;
}

.page_links a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 40px 15px 0;
  border-bottom: 1px solid var(--main-color);
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  vertical-align: bottom;
  transition: background 0.2s, color 0.2s;
}

.page_links a:hover {
  border-bottom: 1px solid var(--sub-color);
  color: var(--sub-color);
}

.page_links a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: right 0.3s, background 0.3s;
}

.page_links a:hover::before {
  right: 20px;
  background: var(--sub-color);
}

.page_links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  display: block;
  width: 25px;
  height: 1px;
  background: var(--main-color);
  transform: translateY(-50%);
  transition: background 0.3s;
}

.page_links a:hover::before {
  background: var(--sub-color);
}

/* 2列 */
.twoLinks ul {
  grid-template-columns: repeat(2, 1fr);
}

/* 3列 */
.threeLinks ul {
  grid-template-columns: repeat(3, 1fr);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .page_links li {
    width: 100%;
  }
}

/* ==================================================================================================================================

  *ページャー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pager {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  font-size: 15px;
}

.pager > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 34px;
  background: #d7d7d7;
  border-radius: 30px;
  color: #ffffff;
  line-height: 1;
}

.pager .current {
  background: var(--main-color);
  color: #ffffff;
}

.pager a:hover {
  background: #929292;
  color: #ffffff;
}

.pager .next, .pager .prev {
  padding: 0 0 3px 1px;
  font-size: 150%;
}

/* ==================================================================================================================================

  *CTA

================================================================================================================================== */
.cta {
  margin-top: 70px;
}

.cta a {
  display: block;
  border: 3px solid #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.cta a:hover {
  opacity: 0.7;
}

.cta_message {
  margin: 0 auto 25px;
  background: linear-gradient(to right, #b2a176, #854f3d);
  -webkit-background-clip: text;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 150%;
  line-height: 1.5;
  text-align: center;
  animation: scaleBig 0.5s ease-in-out infinite alternate;
  -webkit-text-fill-color: transparent;
}

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

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

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- #mainvisual ----- */
#mainvisual {
  position: relative;
  z-index: 1;
  height: 950px;
  margin: 0 0 0 auto;
  background: var(--main-color);
  overflow: hidden;
}

#mainvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(193, 124, 85, 0.3);
}

/* ---------- MVの画像 ---------- */
.mv_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- コンテンツ ----- */
.mv_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mv_contents .inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.mv_contents .catch {
  position: absolute;
  top: 35%;
  left: 0;
  z-index: 2;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  transform: translateY(-50%);
}

.mv_contents .catch .main {
  font-size: 220%;
}

.mv_contents .catch .sub {
  font-size: 90%;
}

/* ----- テキストバナーエリア ----- */
.mv_contents .bnr_wrap {
  position: absolute;
  right: 0;
  bottom: 50px;
}

.bnr_wrap {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.bnr_wrap .bnr {
  display: block;
  width: 180px;
  height: 180px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  text-align: center;
}

.bnr_wrap .bnr p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: linear-gradient(135deg, rgba(209, 167, 153, 0.7), rgba(206, 193, 161, 0.7));
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
}

/* ----- 設備バナーエリア ----- */
.mv_contents .bnr_facility {
  position: absolute;
  bottom: 50px;
  left: 0;
  max-width: 600px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.3);
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.facility_inner {
  display: flex;
  gap: 25px;
  width: fit-content;
  padding: 10px;
  background: rgb(255, 255, 255);
}

.facility_img {
  max-width: 130px;
  height: auto;
}

.facility_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility_text {
  padding: 10px 10px 10px 0;
}

.facility_text .title {
  margin: 0 auto 15px;
  padding: 0 10px 10px;
  border-bottom: 1px solid #695733;
  color: #695733;
  font-size: 110%;
  text-align: center;
}

.facility_text .title:not(:first-of-type) {
  margin-top: 15px;
}

.facility_text .title .small {
  display: block;
  color: #868686;
  font-size: 10px;
  line-height: 1.75;
}

.facility_text .sub_title {
  font-size: 90%;
  text-align: center;
}

.facility_price {
  margin-top: 10px;
  padding: 20px;
  background: #f2e8e5;
  color: #8f7745;
  text-align: center;
}

.facility_price span {
  font-size: 85%;
}

/* ----- MVのSP用は非表示に ----- */
.mv_under {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  #mainvisual {
    position: relative;
    width: 100%;
    height: calc(100svh - 30px);
    min-height: 700px;
  }

  .mv_contents {
    padding: 0 20px;
  }

  .mv_contents .catch {
    top: 45%;
    font-family: "shippori-mincho", sans-serif;
    font-style: normal;
    font-weight: 400;
  }

  .mv_contents .catch .main {
    font-size: 140%;
  }

  .mv_contents .catch .sub {
    font-size: 80%;
  }

  .mv_contents .inner {
    margin: 0 auto;
    padding: 0;
  }

  /* テキストバナーエリア */
  .mv_contents .bnr_wrap {
    bottom: 50px;
    justify-content: center;
    gap: 5px;
  }

  .bnr_wrap .bnr {
    width: 100%;
    height: auto;
    font-size: 12px;
  }

  /* 設備紹介バナー */
  .bnr_facility .facility_inner {
    justify-content: center;
    width: 100%;
    margin: 0 auto 30px;
  }

  .bnr_facility .facility_text {
    width: 70%;
    padding: 0;
  }

  .bnr_facility .facility_img {
    width: 30%;
    margin: 0;
  }

  /* ----- MVから非表示にするコンテンツを指定 ----- */
  .mv_contents .bnr_facility {
    display: none;
  }

  /* ----- MV内のコンテンツをMV下に表示 ----- */
  .mv_under {
    display: block;
  }

  .mv_under .bnr_wrap {
    display: none;
  }
}

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
h2.coming_title {
  margin-bottom: 25px;
  padding: 10px 15px 7px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 140%;
}

h2, h3, h4, h5, h6 {
  position: relative;
  z-index: 1;
  margin: 50px 0 25px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}

h2:first-of-type, h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
  margin-top: 0;
}

h2.special_title {
  margin: 0 0 50px;
  padding: 50px 30px;
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  font-size: 170%;
  text-align: center;
}

h2.special_title::before {
  content: attr(eng);
  display: block;
  margin: 0 auto 10px;
  font-family: "classico-urw", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 80%;
  line-height: 1;
}

.tit01 {
  gap: 25px;
  padding: 0 10px 15px;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 150%;
}

.tit02 {
  font-size: 120%;
}

@media screen and (max-width: 768px) {
  h2.special_title {
    padding: 35px 10px;
    font-size: 150%;
  }

  .tit01 {
    padding: 0 10px 12px;
    font-size: 140%;
  }
}

/* ==================================================================================================================================

  *おすすめ

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.recommend_list {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.recommend_item {
  position: relative;
  z-index: 1;
  width: calc(50% - 10px);
}

.recommend_item .popular {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--sub-color);
  border: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.recommend_item .title {
  padding: 15px 30px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 140%;
  text-align: center;
}

.recommend_item .popular_title {
  padding: 15px 60px;
}

.recommend_item .title .white {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 15px;
  padding: 2px 15px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 14px;
}

.recommend_item .title .small {
  font-size: 75%;
}

.recommend_text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line-color);
  border-style: none solid solid solid;
  font-size: 150%;
}

.recommend_text .price .num {
  display: inline-block;
  margin-right: 15px;
  font-size: 80%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .recommend_list {
    flex-flow: column;
  }

  .recommend_item {
    width: 100%;
  }

  .recommend_item .popular_title {
    padding: 15px 50px;
  }

  .recommend_text {
    padding: 20px;
  }
}

/* ==================================================================================================================================

  *お悩みリスト

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.worries_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px 45px;
  padding: 40px 20px;
  background: var(--bg-color);
}

.worries_list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 40px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 130%;
}

.worries_list li::before {
  content: "\f14a";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
  font-size: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .worries_list {
    justify-content: flex-start;
    padding: 25px 30px;
  }

  .worries_list li {
    padding: 0 0 0 35px;
  }
}

/* ==================================================================================================================================

  *院長の想い

================================================================================================================================== */
/* ==================================================================================================================================

  *当院の特徴

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
}

.feature_item {
  flex: 1;
}

.feature_inner > *:not(:last-child) {
  margin-bottom: 1em;
}

.feature_title {
  margin-top: 20px !important;
  padding: 7px 15px 5px;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 110%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .feature_list {
    flex-flow: column;
    gap: 40px;
  }
}

/* ==================================================================================================================================

  *追加費用

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.cost {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.cost li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: calc(25% - 15px);
  height: auto;
  padding: 30px 20px;
  border: 1px solid var(--line-color);
  text-align: center;
}

.cost li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(to bottom right, var(--main-color) 0, var(--main-color) 65%, #cfcfcf 65%, #cfcfcf 100%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
}

.cost li .title {
  margin: 15px 0 0;
  font-size: 130%;
  text-align: center;
}

.cost li .price {
  margin-top: 5px;
  font-size: 220%;
  line-height: 1.85;
}

.cost li .price span {
  display: inline-block;
  margin-right: 10px;
  color: var(--main-color);
  font-size: 70%;
}

.cost li .cautionary {
  color: #5b5b5b;
  font-size: 90%;
}

table.comparison tr:first-of-type > * {
  background: var(--main-color);
  color: #ffffff;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .cost {
    gap: 10px;
  }

  .cost li {
    justify-content: flex-start;
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 400px) {
  .cost {
    gap: 15px;
  }

  .cost li {
    width: 100%;
  }
}

/* ==================================================================================================================================

  *当院が選ばれる理由

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.reason_list {
  counter-reset: number 0;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px;
  height: 100%;
}

.reason_item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  padding: 50px 30px 90px;
  background: #ffffff;
}

.reason_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--sub-color);
  transform: translate(-50%, -50%);
}

.reason_item::after {
  content: "0" counter(number);
  counter-increment: number;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: -1;
  z-index: 2;
  font-family: "classico-urw", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 70px;
  line-height: 1;
  opacity: 0.2;
}

.reason_title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 75px;
  padding: 5px 0px 25px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 120%;
  line-height: 1.65;
  text-align: center;
}

.reason_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 70px;
  height: 1px;
  background: var(--sub-color);
  transform: translateX(-50%);
}

.reason_text {
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 15px;
  width: 100%;
  height: 100%;
  margin-top: 30px;
  background: var(--bg-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .reason_item {
    width: 100%;
    padding: 30px 25px 70px;
  }

  .reason_item::after {
    font-size: 50px;
  }

  .reason_title {
    min-height: auto;
    padding: 20px 10px;
  }

  .reason_text {
    width: 100%;
  }
}

/* ==================================================================================================================================

  *料金表（タブ）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.price_table tr:first-child th {
  background: var(--main-color);
  color: #ffffff;
}

.price_table tr:not(:first-child) th {
  background: #f1f1f1;
}

.price_table td {
  background: #ffffff;
}

.price_tab .tab_list li {
  min-height: auto;
  padding: 10px 20px;
}

.price_tab .price_img {
  margin: 0 auto 15px;
  text-align: center;
}

.price_tab .panel .cautionary {
  margin-top: 15px;
  font-size: 90%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .price_tab .tab_list {
    flex-flow: column;
    margin: 0 auto 10px;
  }

  .price_tab .tab_list li {
    width: 100%;
    padding: 5px 15px;
  }
}

/* ==================================================================================================================================

  *施術の流れ

================================================================================================================================== */
/* ==================================================================================================================================

  *注意点・副作用・リスク

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.risk_list {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 30px 40px;
  background: var(--bg-color);
}

.risk_list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 35px;
  font-size: 115%;
}

.risk_list li::before {
  content: "\f071";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .risk_list {
    padding: 30px 25px;
  }
}

/* ==================================================================================================================================

  *リスト

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.special_list01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  padding: 40px 50px;
  background: var(--bg-color);
}

.special_list01 li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 50px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 120%;
}

.special_list01 li::before {
  content: "\f058";
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 1;
  background: linear-gradient(135deg, #e6c3b8, #d2bd88);
  -webkit-background-clip: text;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  -webkit-text-fill-color: transparent;
}

.check_list {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10px;
  padding: 40px 35px;
  background: #ffffff;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 110%;
}

.check_list.list_inline {
  flex-flow: wrap row;
  gap: 10px 30px;
}

.check_list li {
  position: relative;
  padding: 0 0 0 35px;
}

.check_list li:before {
  content: "\f14a";
  position: absolute;
  top: -2px;
  left: 0px;
  background: linear-gradient(135deg, #e6c3b8, #d2bd88);
  -webkit-background-clip: text;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
  font-size: 120%;
  -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .special_list01 {
    grid-template-columns: repeat(1, 1fr);
    padding: 25px 25px;
  }

  .check_list {
    flex-flow: column;
    justify-content: flex-start;
    padding: 25px 25px;
  }
}

/* ==================================================================================================================================

  *リンクボタン

================================================================================================================================== */
.btn_special {
  text-align: center;
}

.btn_special > * {
  position: relative;
  display: inline-block;
  min-width: 400px;
  padding: 15px 50px;
  background: linear-gradient(135deg, #cba192, #b28575, #baa56f, #ab9358);
  background-position: 0 0;
  background-size: 300%;
  border-radius: 10000px;
  font-family: "classico-urw", "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 110%;
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: bottom;
  overflow: hidden;
  transition: background 0.4s;
}

.btn_special > *:hover {
  background-position: 100% 100%;
  color: #ffffff;
}

.btn_special > a[href=""] {
  pointer-events: none;
}

.btn_special > a[href=""]::after {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .btn_special > * {
    min-width: 220px;
    padding: 10px 20px;
  }
}

/* ==================================================================================================================================

  *WEB予約ボタン

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.webyoyaku {
  text-align: center;
}

.webyoyaku p {
  margin-bottom: 10px;
  font-size: 110%;
}

.webyoyaku_btn {
  animation: btnSize 0.5s ease-in-out infinite alternate;
}

.webyoyaku_btn a {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 500px;
  padding: 15px 20px;
  background: linear-gradient(to right, var(--main-color), var(--sub-color));
  border-radius: 300px;
  color: #ffffff;
  font-size: 120%;
  text-align: center;
  transition: filter 0.2s, opacity 0.2s;
}

.webyoyaku_btn a:hover {
  filter: brightness(1.2);
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .webyoyaku_btn a {
    min-width: auto;
    padding: 15px 50px;
    font-size: 110%;
  }
}
