@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
main section {
  margin-bottom: 110px;
}

/* リッチ下層のコンテンツ幅 */
.mv_contents .inner, main section .inner, .breadcrumb .inner, .page_links .inner {
  max-width: 1100px;
}

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }
}

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

  *パンくずリスト

================================================================================================================================== */
.breadcrumb {
  margin: 30px auto !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: 640px) {
  .breadcrumb {
    font-size: 13px;
  }
}

/* ==============================================
  *SP パンくずリスト
============================================== */
@media screen and (max-width: 640px) {
  .breadcrumb {
    font-size: 13px;
  }
}

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

  *ページ内リンク

================================================================================================================================== */
.page_links {
  margin-bottom: 50px;
}

.page_links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.page_links li {
  position: relative;
  z-index: 1;
}

.page_links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 15px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 95%;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.page_links li a:hover {
  background: var(--sub-color);
  color: #ffffff;
}

/* 2列 */
.twoLinks li {
  width: calc(50% - 5px);
}

/* 3列 */
.threeLinks li {
  width: calc(33.3333333333% - 6.6666666667px);
}

/* ==============================================
  *SP ページ内リンク
============================================== */
@media screen and (max-width: 640px) {
  .page_links li {
    width: 100%;
  }
}

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

  *ページャー

================================================================================================================================== */
.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%;
}

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

  *書式設定

================================================================================================================================== */
.mtem {
  margin-top: 2em;
}

.mbem {
  margin-bottom: 1em;
}

/* 段落余白 */
main .inner > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

main .inner > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 0;
}

/* ----- text ----- */
.text {
  position: relative;
}

.text > *:not(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 2em;
}

.text > *:not(h1, h2, h3, h4, h5, h6):last-child {
  margin-bottom: 0;
}

.yellowline {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: rgb(255, 245, 157);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.6em;
  text-underline-offset: -0.2em;
}

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

  *メインビジュアル

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

/* ---------- 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: 45%;
  left: 0;
  z-index: 2;
  color: #ffffff;
  font-size: 220%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
  transform: translateY(-50%);
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.mv_contents .catch span{
  font-size: 120%;
}

/* ----- テキストバナーエリア ----- */
.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: 170px;
  height: 170px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
}

.bnr_wrap .bnr p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: linear-gradient(-45deg, rgba(135, 113, 69, 0.7) 0%, rgba(135, 113, 69, 0.2) 100%), url(../images/bg_marble.jpg) no-repeat center / cover;
  border-radius: 50%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 120%;  
}

.mv_contents .bnr_facility {
  position: absolute;
  bottom: 50px;
  left: 0;
}

/* ----- 設備バナーエリア ----- */
.mv_contents .bnr_facility {
  margin-top: 40px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.facility_inner {
  display: flex;
  gap: 25px;
  width: fit-content;
  padding: 10px;
  background: url(../images/bg_marble.jpg) no-repeat center / cover;
}

.bnr_facility .facility_text {
  padding: 10px;
}

.bnr_facility .facility_text .title {
  margin: 0 auto 15px;
  padding: 5px 10px;
  background:linear-gradient(to right, #3c94b5, var(--sub-color));
  color: #ffffff;
  text-align: center;
  font-size: 160%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.bnr_facility .facility_text .sub_title{
  color: #3c94b5;
  text-align: center;
  font-size: 110%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.bnr_facility .facility_text p{
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.bnr_facility .facility_text .price {
  margin-top: 10px;
}

.bnr_facility .facility_text .price span {
  font-size: 85%;
}

.bnr_facility .facility_img {
  max-width: 160px;
  height: auto;
  margin-top: -50px;
}

.bnr_facility .list04{
  gap: 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding:8px 0 ;
  margin-top: 10px;
}

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

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  #mainvisual {
    position: relative;
    width: 100%;
    height: 700px;
  }

  .mv_contents {
    padding: 0 20px;
  }

  .mv_contents .catch {
    top: 60%;
    font-size: 170%;
  }

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

  /* テキストバナーエリア */
  .mv_contents .bnr_wrap {
    bottom: 30px;
  }

  .bnr_wrap {
    justify-content: center;
    gap: 5px;
  }

  .bnr_wrap .bnr {
    width: 100%;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: unset;
    background: rgba(135, 113, 69, 0.3);
  }

.bnr_wrap .bnr p{
  border-radius: unset;
}

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

  .bnr_facility .facility_text {
    width: 100%;
    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;
  }
}

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

  *タイトル

================================================================================================================================== */
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;
  line-height: 1.75;
}

h2.special_title {
  margin: 0 0 50px;
  font-size: 190%;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

h2.special_title::before {
  content: attr(eng);
  display: block;
  margin: 0 auto 5px;
  color: var(--main-color);
  font-size: 80%;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

h2.special_title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 15px auto 0;
  background: var(--line-color);
}

h3.tit01 {
  display: flex;
  margin-bottom: 25px;
  padding: 8px 15px;
  background-color: var(--sub-color2);
  color: #ffffff;
  font-size: 140%;
  background-image: url(../images/title_bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 60%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

/* h3.tit01::before {
    content: "";
    background: url(../images/title_ico.png) center center / cover no-repeat;
    min-width: 30px;
    height: 25px;
    display: block;
} */

h3.tit02 {
  width: fit-content;
  display: flex;
  gap: 10px;
  color: var(--main-color);
  margin-bottom: 20px;
  padding: 5px 5px 5px 0;
  font-size: 120%;
  border-bottom: 4px dotted var(--sub-color);
  align-items: center;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;  
}

h3.tit02::before {
  content: "";
  background: url(../images/title_ico.png) center center / cover no-repeat;
  min-width: 30px;
  height: 25px;
  display: block;
}

h4{
  width: fit-content;
  margin-bottom: 17px;
  color: var(--main-color);
  font-size: 125%;
  background: linear-gradient(transparent 70%, #e2fbfd 70%);
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

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

  *おすすめ

================================================================================================================================== */
h2.special_title.implant_option{
  position: relative;
  padding-top: 30px;
}

h2.special_title.implant_option::before {
  display: block;
  content: '';
  position: absolute;
  background: url(../images/plus.png) no-repeat;
  background-size: contain;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
}

.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: -30px;
  left: -10px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: var(--sub-color);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.recommend_item .title {
  padding: 15px 30px;
  background: var(--sub-color2);
  color: #ffffff;
  font-size: 140%;
  text-align: center;
  background-image: url(../images/title_bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 60%;  
}

.recommend_item .popular_title {
  padding: 15px 60px;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;  
}

.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: 120%;
}

.recommend_text .price{
  font-size: 150%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.recommend_text .price span{
  font-size: 150%;
  color: var(--main-color);
}

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

.recommend_text .subtitle{
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
  text-align: center;
  background: var(--bg-color);
  padding: 2px 0;
  border-radius: 100vh;
  margin-bottom: 15px;
}

.recommend_text ul{
  margin-bottom: 20px;
}

.recommend_option .flexbox03 >*{
  background: url(../images/bg_marble.jpg) no-repeat;
  background-size: cover;
  align-items: center;
  height: 230px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.recommend_option .flexbox03 >* p{
  font-size: 120%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.5;
}



/* ==============================================
  *SP おすすめ
============================================== */
@media screen and (max-width: 640px) {
  .recommend_list {
    flex-flow: column;
  }

  .recommend_item {
    width: 100%;
  }

  .recommend_item .popular {
    width: 70px;
    height: 70px;
    font-size: 13px;
  }

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

  .recommend_text {
    padding: 20px;
  }

  .recommend_text .price{
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

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

  *お悩みリスト

================================================================================================================================== */
#worries_implant, #worries_ceramic, #worries_orthodontic{
  background: var(--bg-color);
}

#worries_implant .inner, #worries_ceramic .inner, #worries_orthodontic .inner{
  padding: 70px 0;
}

#worries_implant .list04_bg, #worries_ceramic .list04_bg, #worries_orthodontic .list04_bg{
  background: #ffffff;
}

.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-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: 640px) {
#worries_implant .inner, #worries_ceramic .inner, #worries_orthodontic .inner{
  padding: 50px 20px;
}

  .worries_list {
    justify-content: flex-start;
    padding: 25px 30px;
  }

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

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

  *院長の想い

================================================================================================================================== */
#message_implant, #message_ceramic, #message_orthodontic{
  background: var(--bg-color);
}

#message_implant .inner, #message_ceramic .inner, #message_orthodontic .inner{
  padding: 70px 0;
}

#message_implant .doctor_name, #message_ceramic .doctor_name, #message_orthodontic .doctor_name{
  font-size: 120%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;  
}

#message_implant .doctor_name span, #message_ceramic .doctor_name span, #message_orthodontic .doctor_name span{
  font-size: 80%;
}

@media screen and (max-width: 640px) {
  #message_implant .inner, #message_ceramic .inner, #message_orthodontic .inner{
  padding: 50px 20px;
}
}

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

  *当院の特徴

================================================================================================================================== */
.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: 640px) {
  .feature_list {
    flex-flow: column;
    gap: 40px;
  }
}

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

  *追加費用

================================================================================================================================== */
.cost {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  justify-content: center;
}

.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;
  background: url(../images/bg_marble.jpg) no-repeat;
  background-size: cover;
}

.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%); */
  background: #ffffff;
  border-radius: 50%;
  color: var(--main-color);
  font-size: 40px;
}

.cost li .title {
  margin: 15px 0 0;
  font-size: 130%;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.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;
}

.cost li.loan{
  width: calc(50% - 15px);
  flex-flow: nowrap;
  gap: 20px;
}

.cost li.loan > div:first-of-type {
  width: 40%;
}

.cost li.loan .btn{
  margin-top: 15px;
}

.cost li.loan .btn a{
  color: var(--sub-color);
  border: 1px solid var(--sub-color);
  padding: 10px;
}

.cost li.loan .btn a:hover{
  color: #ffffff;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}
/* ==============================================
  *SP 追加費用
============================================== */
@media screen and (max-width: 640px) {
  .cost {
    gap: 10px;
  }

  .cost li {
    justify-content: flex-start;
    width: calc(50% - 5px);
  }

  .cost li.loan{
  width: 100%;
  flex-flow: wrap;
  justify-content: center;
  }

  .cost li.loan > div:first-of-type{
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .cost {
    gap: 15px;
  }

  .cost li {
    width: 100%;
  }
}

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

  *当院が選ばれる理由

================================================================================================================================== */
.reason_list {
  counter-reset: number 0;
}

.reason_item {
  display: flex;
}

.reason_item:not(:last-child) {
  margin: 0 0 20px;
}

.reason_title {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 120%;
  text-align: center;
}

.reason_title::before {
  /* content: "Reason" counter(number); */
  content: "0" counter(number);
  counter-increment: number;
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: -1;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  opacity: 0.3;
}

.reason_text {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 65%;
  padding: 10px 15px;
  background: var(--bg-color);
}

/* ==============================================
  *SP 当院が選ばれる理由
============================================== */
@media screen and (max-width: 640px) {
  .reason_item {
    flex-flow: wrap;
  }

  .reason_title {
    padding: 20px;
  }

  .reason_text {
    width: 100%;
    padding: 20px;
  }
}

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

  *料金表（タブ）

================================================================================================================================== */
.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: 640px) {
  .price_tab .tab_list {
    flex-flow: column;
    margin: 0 auto 10px;
  }

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

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

  *施術の流れ

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

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

================================================================================================================================== */
.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: 640px) {
  .risk_list {
    padding: 30px 25px;
  }
}

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

  *よくある質問

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

  *WEB予約ボタン

================================================================================================================================== */
.webyoyaku {
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;  
}

.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, #3c94b5, var(--sub-color));
  border-radius: 300px;
  color: #ffffff;
  font-size: 120%;
  text-align: center;
  transition: filter 0.2s, opacity 0.2s;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;  
}

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

.webyoyaku_btn a::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 35px;
  z-index: 2;
  display: block;
  width: 32px;
  height: 7px;
  background: #ffffff;
  -webkit-mask: url(../images/btn_arrow.svg) no-repeat center/cover;
  mask: url(../images/btn_arrow.svg) no-repeat center/cover;
  transform: translateY(-50%);
  transition: right 0.2s;
}

.webyoyaku_btn a:hover::after {
  right: 30px;
}

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

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

/* ==============================================
  *SP WEB予約ボタン
============================================== */
@media screen and (max-width: 640px) {
  .webyoyaku_btn a {
    min-width: auto;
    padding: 15px 50px;
    font-size: 110%;
  }

  .webyoyaku_btn a::after {
    right: 20px;
    width: 23px;
    height: 5px;
  }

  .webyoyaku_btn a:hover:after {
    right: 15px;
  }
}
