@charset "UTF-8";
/*-- globalフォルダの直下の_index.scss --*/
/*-- settingフォルダの中の_index.scss --*/
/* ==================================================
  cache busting設定（scssの最上部に記載）
================================================== */
/*-- mixinフォルダの中の_index.scss --*/
/* ==================================================
  breakpoint & medea query
================================================== */
/*-- commonフォルダの中の_index.scss --*/
/* ===============================================
  htmlでのデザイン制御
=============================================== */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3vw;
}
@media (width < 1100px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex_row_rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fw400 {
  font-weight: 400;
}

.fw700 {
  font-weight: 700;
}

.fw900 {
  font-weight: 900;
}

.is-open {
  display: block;
}

.is-close {
  display: none;
}

@media screen and (min-width: 600px) {
  .is-sp {
    display: none;
  }
}

@media (width < 600px) {
  .is-mobile {
    display: none;
  }
}
@media (width >= 1100px) {
  .is-mobile {
    display: none;
  }
}

@media (width < 1100px) {
  .is-pc {
    display: none;
  }
}

.underline {
  text-decoration: underline;
}

.center {
  text-align: center;
}

.left {
  -moz-text-align-last: left;
       text-align-last: left;
}

.right {
  text-align: right;
}

.fz10 {
  font-size: 1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz16 {
  font-size: 1.6rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz30 {
  font-size: 3rem;
}

.miauto {
  margin-inline: auto;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.w10 {
  width: calc(10% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w10 {
    width: 100%;
  }
  .w10 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w20 {
  width: calc(20% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w20 {
    width: 100%;
  }
  .w20 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w30 {
  width: calc(30% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w30 {
    width: 100%;
  }
  .w30 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w40 {
  width: calc(40% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w40 {
    width: 100%;
  }
  .w40 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w50 {
  width: calc(50% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w50 {
    width: 100%;
  }
  .w50 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w60 {
  width: calc(60% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w60 {
    width: 100%;
  }
  .w60 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w70 {
  width: calc(70% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w70 {
    width: 100%;
  }
  .w70 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w80 {
  width: calc(80% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w80 {
    width: 100%;
  }
  .w80 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w90 {
  width: calc(90% - 1.5vw);
  margin-inline: auto;
}
@media (width < 600px) {
  .w90 {
    width: 100%;
  }
  .w90 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.list_wrapper {
  list-style: none;
}
.list_wrapper > li {
  position: relative;
  padding-left: 15px;
}
.list_wrapper > li:nth-of-type(n + 2) {
  margin-top: 5px;
}
.list_wrapper > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #5e0038;
  border-radius: 5px;
}

.items120 .item:nth-of-type(n + 2) {
  margin-top: 120px;
}
@media (width < 600px) {
  .items120 .item:nth-of-type(n + 2) {
    margin-top: 60px;
  }
}

.items80 .item:nth-of-type(n + 2) {
  margin-top: 80px;
}
@media (width < 600px) {
  .items80 .item:nth-of-type(n + 2) {
    margin-top: 40px;
  }
}

.items60 .item:nth-of-type(n + 2) {
  margin-top: 60px;
}
@media (width < 600px) {
  .items60 .item:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}

.items40 .item:nth-of-type(n + 2) {
  margin-top: 40px;
}
@media (width < 600px) {
  .items40 .item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}

/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
:root {
  color-scheme: light;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.7rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.4vw;
    line-height: 2.2;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}

img:not([class*=wp-image-]) {
  max-width: 100%;
  height: auto;
}
img[class*=wp-image-].alignright {
  display: block;
  margin: 0 0 0 auto;
}
img[class*=wp-image-].alignleft {
  display: block;
  margin: 0 auto 0 0;
}
img[class*=wp-image-].aligncenter {
  display: block;
  margin: 0 auto;
}

hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}

mark {
  display: inline-block;
  padding: 5px 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fef4e1), color-stop(50%, #fbe4d7), to(#d8cde4));
  background: linear-gradient(#fef4e1 0%, #fbe4d7 50%, #d8cde4);
  font-size: 1.8rem;
  font-weight: bold;
  color: #5e0038;
}

@media screen and (max-width: 767px) {
  mark {
    font-size: 3.6vw;
  }
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 10px;
  border: #5e0038 2px solid;
}
table thead th {
  padding: 11px 21px;
  background: #5e0038;
  color: #fff;
  text-align: center;
  border: #e5d6df 1px solid;
  font-size: 1.6rem;
  line-height: 1.2;
}
table tbody th {
  padding: 11px 11px;
  background: #5e0038;
  color: #fff;
  text-align: left;
  border: #e5d6df 1px solid;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}
table td {
  padding: 11px 21px;
  border: #e5d6df 1px solid;
  font-size: 1.6rem;
  line-height: 1.2;
}
table .head {
  background: rgba(94, 0, 56, 0.2);
  color: #5e0038;
}

@media screen and (max-width: 767px) {
  table thead th {
    padding: 5px 5px;
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  table tbody th {
    padding: 5px 5px;
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  table td {
    padding: 5px 5px;
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #ccc;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #5e0038;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th,
  table.tableResponsive tr {
    display: block;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    display: inline-block;
    width: 50px;
  }
}
.reception {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 10px;
}
.reception caption {
  font-size: 2.1rem;
  font-weight: bold;
  color: #5e0038;
}
.reception td {
  text-align: center;
  color: #5e0038;
  font-size: 2rem;
  font-weight: bold;
}
.reception th.saturday {
  background: #005f9e;
}
.reception th.sunday {
  background: #9f005f;
}
.reception th.holiday {
  background: #055e3f;
}
.reception td.saturday {
  color: #005f9e;
}
.reception td.sunday {
  color: #9f005f;
}
.reception td.holiday {
  color: #055e3f;
}

@media screen and (max-width: 767px) {
  .reception {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reception caption {
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .reception table {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reception td {
    font-size: 4vw;
    padding: 5px 3px;
  }
}
@media screen and (max-width: 767px) {
  .reception p {
    font-size: 2.8vw;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: none;
}
.listDisc_01 li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px 0 -16px;
  border-radius: 8px;
  background: #dbcfe3;
  text-align: center;
  vertical-align: 2px;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 5px;
}

.listDisc_02 {
  padding: 0 0 0 2.4rem;
}
.listDisc_02 li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px 0 -16px;
  border-radius: 8px;
  background: #5e0038;
  text-align: center;
  vertical-align: 2px;
}
.listDisc_02 li:not(:last-child) {
  margin: 0 0 5px;
}

@media screen and (max-width: 767px) {
  .listDisc_02 {
    padding-left: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .listDisc_02 li::before {
    margin-left: -8px;
    width: 4px;
    height: 4px;
  }
}
.listDisc_03 {
  padding: 0 0 0 1.5rem;
}
.listDisc_03 li:not(:last-child) {
  margin: 0 0 0;
}
.listDisc_03 li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #5e0038;
  margin-right: -8px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}

.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}

.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: "(" counter(number) ") ";
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}

/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dlList_01 > div dt {
  min-width: 0;
}
.dlList_01 > div dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dlList_01 .dl {
  padding: 14px 18px;
  gap: 42px;
}
.dlList_01.dlBorder > div {
  border-bottom: #666 1px dotted;
}

@media screen and (max-width: 767px) {
  .dlList_01 .dl {
    padding: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .dlList_01 > div {
    display: block;
  }
  .dlList_01 > div dt {
    width: 100%;
  }
  .dlList_01 > div dd {
    width: 100%;
  }
  .dlList_01 > div dd:nth-of-type(n + 2) {
    border: none;
  }
}
.dlList_02 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dlList_02 > div dt {
  min-width: 0;
}
.dlList_02 > div dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 26px;
  }
}
/* -------------------------------- aside */
aside {
  max-width: 1080px;
  margin: 50px auto;
}
aside h2 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #5e0038;
}
aside h2::after {
  content: none;
}
aside .box {
  margin: 0 0 95px;
}

@media screen and (max-width: 767px) {
  aside {
    margin: 25px auto;
  }
}
@media screen and (max-width: 767px) {
  aside h2 {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  aside .box {
    margin-bottom: 50px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	見出し
+++++++++++++++++++++++++++++++++++++++++++ */
hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 22px;
}
hgroup.alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
hgroup h2 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
  text-align: left;
}
hgroup h2::after {
  content: none;
}
hgroup p {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-family: "Roboto", sans-serif;
  font-size: 8.4rem;
  font-weight: 900;
  background-image: -webkit-gradient(linear, left top, right top, from(#fbe4d7), to(#d8cde4));
  background-image: linear-gradient(to right, #fbe4d7, #d8cde4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  hgroup.alignEnd {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  hgroup {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  hgroup p {
    font-size: 16vw;
  }
}
h2 {
  margin: 0 0 50px;
  text-align: center;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: 500;
  color: #5e0038;
}
h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  margin: 15px auto 0;
  background: #5e0038;
}
h2.noBorder {
  text-align: left;
}
h2.noBorder::after {
  content: none;
}

@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 30px;
    font-size: 7.2vw;
  }
}
h3 {
  margin: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 5.6vw;
  }
}
h4 {
  margin: 0 0 15px;
  font-size: 2.1rem;
  color: #5e0038;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 4.2vw;
  }
}
h5 {
  margin: 30px 0 5px;
}

/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  background: url("../img/top/mv_bg.webp") no-repeat center center/cover;
}
header .header {
  grid-template-rows: 36px 36px;
  grid-template-columns: 22% 1fr;
  height: 100px;
  padding: 15px 15px 15px 15px;
}
header .header .sideContact {
  position: fixed;
  z-index: 1000;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .header .sideContact > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 親要素をフレックスボックスにすることで、子要素の配置を制御 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 子要素を中央に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 子要素を縦方向に中央揃え */
}
header .header .sideContact .btn {
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  display: block;
  height: auto;
  padding: 10px 10px;
  border-radius: 10px 0 0 10px;
}
header .header .sideContact .btn i {
  margin-bottom: 5px;
}
header .header .sideContact .btn.line {
  background: #82a54d;
}
header .header .sideContact .btn.first-reserve {
  background: #ca6f99;
}
header .header .sideContact .btn.another-reserve {
  background: #a58f6c;
}
header .header .drawerContact {
  display: none;
  border-top: #fff 1px solid;
  text-align: center;
}
header .header .drawerContact > li {
  margin: 20px 0;
}
header .header .drawerContact .btn {
  min-width: 232px;
  height: 40px;
  margin: 0 auto;
  background: #fff;
  color: #5e0038;
  text-decoration: none;
  font-size: 1.6rem;
}
header h1,
header strong {
  display: block;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 10px;
}

@media screen and (max-width: 1079px) {
  header .header {
    display: grid;
    grid-template-columns: 1fr 3.2fr;
    padding: 10px 70px 10px 10px;
  }
  header .header .drawerContact {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .header {
    display: block;
    padding-right: 70px;
  }
}
@media screen and (max-width: 1079px) {
  header h1,
  header strong {
    grid-row: 1/2;
    padding: 0;
    position: static;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
#gNav .mainMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1260px) {
  #gNav .mainMenu {
    margin-top: 40px;
  }
}
#gNav .mainMenu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 7px;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
}
#gNav .mainMenu > li.toggleMenuList:hover::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fff transparent;
  position: relative;
  top: -8px;
  left: 0;
  right: 0;
  margin: auto;
}
#gNav .mainMenu > li.toggleMenuList:hover > .subMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#gNav .mainMenu > li .subMenu {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  z-index: 1;
}
#gNav .mainMenu > li .subMenu .subImg {
  width: 242px;
  height: 121px;
}
#gNav .mainMenu > li .subMenu .subImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gNav .mainMenu > li .subMenu ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 14px 20px;
}
#gNav .mainMenu > li .subMenu ul li {
  width: 49%;
}
#gNav .mainMenu > li .subMenu ul li a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #000;
  white-space: nowrap;
}
#gNav .mainMenu > li .subMenu ul li a:hover {
  color: #5e0038;
}
#gNav .mainMenu > li .subMenu ul li a i {
  font-size: 1.2rem;
  color: #5e0038;
}

@media screen and (max-width: 1079px) {
  #gNav {
    min-width: 0;
    background: #5e0038;
  }
  #gNav .mainMenu {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 15px 0 0px;
  }
  #gNav .mainMenu > li > a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    font-size: 1.6rem;
  }
  #gNav .mainMenu > li > a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 0 0 7px;
  }
  #gNav .mainMenu > li > a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  #gNav .mainMenu > li.toggleMenuList:hover::after {
    content: none;
  }
  #gNav .mainMenu > li .subMenu {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: static;
    background: none;
    border-radius: 0;
  }
  #gNav .mainMenu > li .subMenu .subImg {
    display: none;
  }
  #gNav .mainMenu > li .subMenu ul {
    display: block;
    padding: 0 10px 20px;
  }
  #gNav .mainMenu > li .subMenu ul li {
    width: 100%;
    line-height: 1.2;
  }
  #gNav .mainMenu > li .subMenu ul li a {
    font-size: 1.4rem;
    color: #fff;
  }
  #gNav .mainMenu > li .subMenu ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  #gNav .mainMenu > li .subMenu ul li a i {
    display: none;
  }
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
header .drawer-toggle {
  display: none;
}

@media screen and (max-width: 1079px) {
  header .drawer-toggle {
    display: block;
    cursor: pointer;
  }
  header .drawer-nav {
    z-index: 10000;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-nav.is-active {
    right: 0;
  }
  header .drawer-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    background: #5e0038;
    z-index: 10000;
    width: 60px;
    aspect-ratio: 1;
    border: 0;
    outline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  header .drawer-hamburger .drawer-text {
    white-space: nowrap;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1;
  }
  header .drawer-hamburger:hover {
    background: #5e0038;
  }
  header .drawer-hamburger.is-active {
    right: 280px;
  }
  header .drawer-hamburger.is-active .drawer-hamburger-icon:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  header .drawer-hamburger.is-active .drawer-hamburger-icon:nth-child(2) {
    opacity: 0;
  }
  header .drawer-hamburger.is-active .drawer-hamburger-icon:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  header .drawer-hamburger-icon {
    display: block;
    background: #fff;
    height: 4px;
    width: 50%;
    margin-inline: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  header .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    z-index: 990;
  }
  body.drawer-open {
    overflow: hidden;
  }
  body.drawer-open .drawer-overlay {
    opacity: 1;
    visibility: visible;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  padding: 0 0 120px;
  background: #5e0038;
  color: #a38b77;
}
footer .pageTop {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  top: -15px;
  cursor: pointer;
}
footer .pageTop i {
  padding: 5px;
  border-radius: 34px;
  background: #5e0038;
  font-size: 2.4rem;
}
footer ul {
  margin: 0 0 20px;
  text-align: center;
}
footer ul li {
  display: inline-block;
  padding: 0 20px;
}
footer ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #a38b77;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer .btn {
  min-width: 232px;
  border: #a38b77 1px solid;
  color: #a38b77;
}
footer .btn:hover {
  text-decoration: none;
  background: #a38b77;
  color: #5e0038;
}
footer .contactBtn {
  margin: 30px 0;
}
footer .contactBtn .btn {
  font-size: 2rem;
  height: 40px;
  border-radius: 40px;
  background: #a38b77;
  color: #5e0038;
  padding: 0 30px;
}
footer .logo {
  display: block;
  margin: 32px auto;
}
footer address {
  font-style: normal;
  text-align: center;
  line-height: 2;
}
footer address .btn {
  margin-top: 10px;
  text-decoration: none;
}
footer small {
  display: block;
  margin: 30px 0 0;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer .pageTop {
    font-size: 3.2vw;
  }
  footer .pageTop i {
    font-size: 4.8vw;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer ul li {
    padding: 0;
    width: 49%;
  }
  footer .btn {
    min-width: 0;
    width: 100%;
    padding: 0 25px;
  }
  footer .contactBtn .btn {
    font-size: 4vw;
  }
  footer .logo {
    width: 78px;
  }
  footer small {
    font-size: 2.8vw;
  }
}
.sp_fixedBtn {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_fixedBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 3vw;
    width: 100%;
    padding: 15px 5vw;
    background: #a38b77;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .sp_fixedBtn a {
    display: block;
    width: 40vw;
    padding: 5px 3vw;
    background: #fff;
    text-decoration: none !important;
    text-align: center;
    font-size: 3.6vw;
    font-weight: bold;
  }
}
.btn_ai {
  width: 370px;
  border: none;
  background: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .btn_ai {
    right: 10px;
    width: 200px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #5e0038;
  text-underline-offset: 3px;
}
a:focus {
  outline: none;
}
a:hover, a:active {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a.link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7.5px;
  border-color: transparent transparent transparent #2da7e0;
  margin: 0 3px 0 0;
  vertical-align: baseline;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #fcc !important;
}

.error {
  color: #f00;
}

/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}

.texCenter {
  text-align: center !important;
}

.texLeft {
  text-align: left !important;
}

.texRight {
  text-align: right !important;
}

@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center !important;
  }
  .texLeft_sp {
    text-align: left !important;
  }
  .texRight_sp {
    text-align: right !important;
  }
}
.weightNormal {
  font-weight: 500 !important;
}

.weightBold {
  font-weight: bold !important;
}

.borderNone {
  border: none !important;
}

.overflowHidden {
  overflow: hidden;
}

.lineHeight20 {
  line-height: 2;
}

.lineHeight19 {
  line-height: 1.9;
}

.lineHeight18 {
  line-height: 1.8;
}

.lineHeight17 {
  line-height: 1.7;
}

.lineHeight16 {
  line-height: 1.6;
}

.lineHeight15 {
  line-height: 1.5;
}

.lineHeight14 {
  line-height: 1.4;
}

.lineHeight13 {
  line-height: 1.3;
}

.lineHeight12 {
  line-height: 1.2;
}

.iBlock {
  display: inline-block;
}

.inline {
  display: inline;
}

/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #d92c15;
}

.colorPurple {
  color: #5e0038;
}

.colorGold {
  color: #a38b77;
}

.colorYellow {
  color: #fffb1b;
}

/*+++++++++++++++++++++++++++++++++++++++++++
	font-size
+++++++++++++++++++++++++++++++++++++++++++ */
.fs10 {
  font-size: 1rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw !important;
  }
  .fs11 {
    font-size: 2.2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs13 {
    font-size: 2.6vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs15 {
    font-size: 3vw !important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs17 {
    font-size: 3.4vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs19 {
    font-size: 3.8vw !important;
  }
  .fs20 {
    font-size: 4vw !important;
  }
  .fs21 {
    font-size: 4.2vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs23 {
    font-size: 4.6vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs25 {
    font-size: 5vw !important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs27 {
    font-size: 5.4vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs29 {
    font-size: 5.8vw !important;
  }
  .fs30 {
    font-size: 6vw !important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw !important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw !important;
  }
  .fs11_sp {
    font-size: 2.2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs13_sp {
    font-size: 2.6vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs15_sp {
    font-size: 3vw !important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs17_sp {
    font-size: 3.4vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs19_sp {
    font-size: 3.8vw !important;
  }
  .fs20_sp {
    font-size: 4vw !important;
  }
  .fs21_sp {
    font-size: 4.2vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs23_sp {
    font-size: 4.6vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs25_sp {
    font-size: 5vw !important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs27_sp {
    font-size: 5.4vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs29_sp {
    font-size: 5.8vw !important;
  }
  .fs30_sp {
    font-size: 6vw !important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw !important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	margin
+++++++++++++++++++++++++++++++++++++++++++ */
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mr0_sp {
    margin-right: 0px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .ml0_sp {
    margin-left: 0px !important;
  }
  .ml5_sp {
    margin-left: 5px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}

@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	PC用
+++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {
  .pc_show {
    display: none;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  border: 15px solid;
  -o-border-image: linear-gradient(to right, #fef4e1 0%, #fbe4d7 25%, #d8cde4 50%);
     border-image: -webkit-gradient(linear, left top, right top, from(#fef4e1), color-stop(25%, #fbe4d7), color-stop(50%, #d8cde4));
     border-image: linear-gradient(to right, #fef4e1 0%, #fbe4d7 25%, #d8cde4 50%);
  border-image-slice: 1;
  padding: 30px;
}
.box .box_head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  max-width: 500px;
  width: 100%;
  min-height: 43px;
  margin: 0 0 30px;
  padding: 5px 15px;
  background: -webkit-gradient(linear, left top, right top, from(#fef4e1), color-stop(#fbe4d7), to(#d8cde4));
  background: linear-gradient(to right, #fef4e1, #fbe4d7, #d8cde4);
  font-size: 1.8rem;
  font-weight: bold;
  color: #5e0038;
}
.box .box_head i {
  font-size: 2.4rem;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .box {
    border-width: 8px;
    padding: 15px;
  }
}
.box_2 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border: #5e0038 1px solid;
  margin: 0 auto 30px;
  padding: 15px 20px;
  background: rgba(94, 0, 56, 0.05);
}

.box_3 {
  padding: 20px 22px;
  background: #fdf4eb;
}

.box_4 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border: #a38b77 1px solid;
  margin: 0 auto 30px;
  padding: 15px 20px;
  background: #fbf5ef;
}

.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}

ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}

.btn {
  background: #5e0038;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  gap: 5px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  height: 30px;
  padding: 0 20px;
  border-radius: 20px;
  font-weight: bold;
}
.btn:hover {
  opacity: 0.7;
}

.btn_2 {
  background: none;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  gap: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  height: 49px;
  padding: 0 15px 0 30px;
  border: #8e7045 1px solid;
  color: #8e7045;
  border-radius: 49px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn_2:hover {
  opacity: 0.7;
  background: #8e7045;
  color: #fff;
}

.btn_3 {
  background: none;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  gap: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 340px;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fef4e1), color-stop(50%, #fbe4d7), to(#d8cde4));
  background: linear-gradient(#fef4e1 0%, #fbe4d7 50%, #d8cde4);
  padding: 5px 14px 5px 18px;
  color: #5e0038 !important;
  font-size: 2.1rem;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn_3:hover {
  opacity: 0.7;
}
.btn_3 i {
  font-size: 3.7rem;
  color: #ad738e;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn_3::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
}
.btn_3:hover {
  background: #5e0038;
  color: #fff !important;
}
.btn_3:hover i {
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .btn_3 {
    max-width: 500px;
    height: auto;
    margin: auto;
    font-size: 4vw;
    padding: 10px 14px 10px 18px;
    text-decoration: none !important;
  }
}
@media screen and (max-width: 767px) {
  .btn_3 i {
    font-size: 7.4vw;
  }
}
.btn.arrow,
.btn_2.arrow {
  padding-right: 40px;
}

.btn_4 {
  background: #5e0038;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: 264px;
  width: 100%;
  height: 45px;
  border-radius: 4px;
}
.btn_4:hover {
  opacity: 0.7;
}

.columnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox > * {
  display: block;
  width: 49%;
}
.columnBox::before, .columnBox::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 49%;
}
.columnBox.col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
}
.columnBox.col3::before, .columnBox.col3::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 32%;
}
.columnBox.col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
}
.columnBox.col4::before, .columnBox.col4::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 24%;
}

@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    gap: 20px 0;
  }
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
  }
  .columnBox.col1_sp::before, .columnBox.col1_sp::after {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 100%;
  }
  .columnBox.col2_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    gap: 20px 0;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
  }
  .columnBox.col2_sp::before, .columnBox.col2_sp::after {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 49%;
  }
  .columnBox.col3_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    gap: 20px 0;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
  }
  .columnBox.col3_sp::before, .columnBox.col3_sp::after {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 32%;
  }
}
.columnBox_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox_top > * {
  display: block;
  width: 49%;
}
.columnBox_top::before, .columnBox_top::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 49%;
}
.columnBox_top.col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox_top.col3 > * {
  display: block;
  width: 32%;
}
.columnBox_top.col3::before, .columnBox_top.col3::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 32%;
}
.columnBox_top.col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox_top.col4 > * {
  display: block;
  width: 24%;
}
.columnBox_top.col4::before, .columnBox_top.col4::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  width: 24%;
}

@media screen and (max-width: 767px) {
  .columnBox_top.col1_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    gap: 20px 0;
  }
  .columnBox_top.col1_sp > * {
    display: block;
    width: 100%;
  }
  .columnBox_top.col1_sp::before, .columnBox_top.col1_sp::after {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 100%;
  }
  .columnBox_top.col2_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    gap: 20px 0;
  }
  .columnBox_top.col2_sp > * {
    display: block;
    width: 49%;
  }
  .columnBox_top.col2_sp::before, .columnBox_top.col2_sp::after {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 49%;
  }
  .columnBox_top.col3_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
    gap: 20px 0;
  }
  .columnBox_top.col3_sp > * {
    display: block;
    width: 32%;
  }
  .columnBox_top.col3_sp::before, .columnBox_top.col3_sp::after {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 32%;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
}
.flex.ai_fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex.ai_c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.ai_fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex.jc_fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex.jc_c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex .flexText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flex .flexRight {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 767px) {
  .flex.sp_block {
    display: block;
  }
  .flex.sp_block .flexText {
    margin-bottom: 10px;
  }
  .flex.sp_block .flexImg {
    margin-bottom: 10px;
    text-align: center;
  }
}
.sp_imgArea {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_imgArea {
    display: block;
    max-width: 80%;
    text-align: center;
    margin: 0 auto 15px;
  }
}
.width_reset {
  width: auto !important;
}

.p-height {
  line-height: 1.2;
}

.margin_b_reset {
  margin-bottom: 0;
}

.lower {
  /*+++++++++++++++++++++++++++++++++++++++++++
    header
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    breadcrumb
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    main
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    article
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    見出し
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    lNav
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    ankerNav
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    cautionBox
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.lower header {
  height: 360px;
  background-image: url("../img/common/mv_bg2.webp");
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .lower header {
    height: 240px;
  }
}
.lower .jumbotron {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 0 0;
}
.lower .jumbotron h1 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 63px 0 20px;
  font-size: 3.8rem;
  font-weight: 500;
  color: #fff;
  background: #5e0038;
  position: relative;
}
.lower .jumbotron h1::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #5e0038;
  position: absolute;
  right: 100%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .lower .jumbotron {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .lower .jumbotron h1 {
    padding: 5px 25px 5px 10px;
    font-size: 6.8vw;
    line-height: 1.2;
  }
}
.lower .breadcrumbs {
  padding-block: 20px;
  margin-top: 50px;
  background: #f3e3ec;
  font-size: 1.4rem;
}
.lower article {
  padding-bottom: 42px;
}
.lower article[id] {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .lower article[id] {
    padding-top: 60px;
  }
}
.lower section {
  margin: 0 0 68px;
}
.lower section:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .lower section {
    margin-bottom: 30px;
  }
}
.lower .noNav {
  padding-top: 50px;
}
.lower h3 {
  padding: 10px 15px;
  background: -webkit-gradient(linear, left top, right top, from(#fff4e2), color-stop(#fbe3d7), to(#ddd0e2));
  background: linear-gradient(to right, #fff4e2, #fbe3d7, #ddd0e2);
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 6px;
  color: #5e0038;
}
@media screen and (max-width: 767px) {
  .lower h3 {
    font-size: 4.8vw;
  }
}
.lower .lNav {
  margin: 0 0 70px;
  background: -webkit-gradient(linear, left top, right top, from(#fff4e2), color-stop(#fbe3d7), to(#fbe3d7));
  background: linear-gradient(to right, #fff4e2, #fbe3d7, #fbe3d7);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
.lower .lNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}
.lower .lNav ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 240px;
}
.lower .lNav ul li.long {
  max-width: 320px;
}
.lower .lNav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 80px;
  padding: 3px 5px 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: transparent 3px solid;
}
.lower .lNav ul li a.current, .lower .lNav ul li a:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: #5e0038;
}
@media screen and (max-width: 767px) {
  .lower .lNav {
    margin-bottom: 30px;
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .lower .lNav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .lower .lNav ul li {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .lower .lNav ul li a {
    height: 100%;
    min-height: 60px;
    padding: 5px;
    font-size: 3vw;
  }
}
.lower .ankerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 70px;
  text-align: center;
}
.lower .ankerNav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 280px;
  width: 50%;
  height: 60px;
  padding: 0 20px;
  background: #fdf4eb;
  border-radius: 60px;
  text-decoration: none;
  font-weight: bold;
  -webkit-box-shadow: 3px 3px 0 rgba(93, 0, 55, 0.1);
          box-shadow: 3px 3px 0 rgba(93, 0, 55, 0.1);
}
.lower .ankerNav a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  top: 3px;
  left: 3px;
}
@media screen and (max-width: 767px) {
  .lower .ankerNav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .lower .ankerNav a {
    width: auto;
    height: auto;
    padding: 5px 10px;
    margin: 0 5px;
    font-size: 2.8vw;
  }
}
.lower .cautionBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 920px;
  margin: 68px auto 0;
  padding: 28px;
  border-radius: 16px;
  background: #fcf8f8;
  font-size: 1.9rem;
  font-weight: bold;
}
.lower .cautionBox .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lower .cautionBox {
    gap: 15px;
    margin-top: 30px;
    padding: 15px 10px 15px 15px;
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 767px) {
  .lower .cautionBox .icon {
    width: 10vw;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++++
    sitemap
  +++++++++++++++++++++++++++++++++++++++++++ */
.sitemap {
  margin-top: 70px;
}
.sitemaparticle {
  padding-bottom: 0;
}

/* LESS Document */
/* -------------------------------- newsArea */
.newsArea {
  padding: 55px 0 55px;
}
.newsArea hgroup {
  margin-bottom: 10px;
}
.newsArea dl .dl {
  padding: 14px 18px;
  gap: 42px;
}
.newsArea dl .dl dt::after {
  content: attr(data-tag);
  display: inline-block;
  width: 105px;
  margin: 0 0 0 42px;
  border-radius: 105px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fef4e1;
}
.newsArea dl .dl dt[data-tag=休診]::after {
  background: #d8cde4;
}
.newsArea dl .dl dt[data-tag=その他]::after {
  background: #d5e3ce;
}
.newsArea dl .dl dt[data-tag=重要]::after {
  background: #edc5c6;
}
.newsArea dl .dl a {
  text-decoration: none;
}
.newsArea dl .dl a:hover {
  text-decoration: underline;
}
.newsArea dl .dl .new {
  display: inline-block;
  margin: 0 0 0 7px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #d92c15;
}

@media screen and (max-width: 767px) {
  .newsArea {
    padding-bottom: 40px;
  }
  .newsArea dl .dl {
    padding: 8px 0;
  }
  .newsArea dl .dl dt::after {
    font-size: 3.2vw;
    width: auto;
    padding: 0 20px;
    margin-left: 5px;
  }
}
/* -------------------------------- columnArea */
.columnArea {
  padding: 0px 0 55px;
}

/* -------------------------------- recruit */
.recruitArea article {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* -------------------------------- cms */
.cmsArea {
  padding: 50px 0 0;
}
.cmsArea .data {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 15px;
}
.cmsArea h3 {
  margin: 50px 0 30px;
}
.cmsArea h4 {
  margin: 35px 0 20px;
}
.cmsArea p {
  clear: both;
}
.cmsArea time {
  display: block;
  text-align: right;
}
.cmsArea img {
  max-width: 100%;
  height: auto !important;
}
.cmsArea img[style*=left] {
  margin: 0 1em 1em 0;
}
.cmsArea img[style*=right] {
  margin: 0 0 1em 1em;
}
.cmsArea ul {
  margin: 0 0 15px;
  padding: 0 0 0 22px;
}
.cmsArea ul li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 7px 0 -15px;
  border-radius: 8px;
  background: #5e0038;
  vertical-align: middle;
}
.cmsArea ol {
  list-style: decimal;
  margin: 0 0 15px;
  padding: 0 0 0 24px;
}
.cmsArea blockquote {
  background: #eee;
  position: relative;
  padding: 32px 48px;
}
.cmsArea blockquote::before {
  content: "";
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 3.2rem;
  color: #787878;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 8px;
}
.cmsArea blockquote::after {
  content: "";
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 3.2rem;
  color: #787878;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 8px;
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: auto;
  left: auto;
  bottom: 8px;
  right: 8px;
}

@media screen and (max-width: 767px) {
  .cmsArea img[style*=left] {
    display: block;
    float: none !important;
    margin: 0 auto 1em;
  }
  .cmsArea img[style*=right] {
    display: block;
    float: none !important;
    margin: 0 auto 1em;
  }
  .cmsArea table {
    max-width: 100%;
  }
  .cmsArea blockquote {
    padding: 36px 24px;
  }
  .cmsArea blockquote::before, .cmsArea blockquote::after {
    font-size: 2.8rem;
  }
}
/* -------------------------------- pagenation */
.pager {
  text-align: center;
  line-height: 1;
}
.pager .page-numbers {
  display: inline-block;
  padding: 10px 12px;
  text-decoration: none;
  border: 1px solid #5e0038;
  color: #5e0038;
}
.pager .page-numbers.prev {
  margin-right: 20px;
}
.pager .page-numbers.next {
  margin-left: 20px;
}
.pager .page-numbers:hover {
  background: #5e0038;
  color: #fff;
}
.pager .page-numbers.current {
  background: #5e0038;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pager {
    display: table;
    width: 100%;
  }
  .pager .page-numbers {
    display: none;
  }
  .pager .page-numbers.current, .pager .page-numbers.next, .pager .page-numbers.prev {
    display: table-cell;
    margin: 0;
    padding: 13px 0;
  }
}
.footer {
  background: #5e0038;
  color: #a38b77;
}

/*-- pageフォルダの中の_index.scss --*/
.page-front {
  /*+++++++++++++++++++++++++++++++++++++++++++
  	article
  +++++++++++++++++++++++++++++++++++++++++++ */
  /* -------------------------------- newsArea */
  /* -------------------------------- topClinicGuide */
  /* -------------------------------- seminarArea */
  /* -------------------------------- renewalOpen */
  /* -------------------------------- aboutArea */
  /* -------------------------------- bg */
  /* -------------------------------- featuresArea */
  /* -------------------------------- figure */
  /* -------------------------------- embryoArea */
  /* -------------------------------- scheduleArea */
  /* -------------------------------- aside */
  /* -------------------------------- ãŠå½¹ç«‹ã¡ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ */
  /* -------------------------------- accessArea */
  /* -------------------------------- insta */
  /* -------------------------------- gMap */
  /* -------------------------------- infoDoctorsArea */
  /* -------------------------------- footerBanner */
}
.page-front header {
  overflow: hidden;
  height: 779px;
}
.page-front header .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  padding: 40px 0 160px;
  height: calc(100% - 100px);
  margin: 0 auto;
  position: relative;
}
.page-front header .mv .siteTitle {
  text-align: center;
}
.page-front header .mv .siteTitle img {
  margin: 0 0 20px;
}
.page-front header .mv .siteTitle p {
  margin-bottom: 0;
  font-size: 2.1rem;
  font-weight: bold;
  color: #d9c19f;
  line-height: 1.2;
}
.page-front header .mv .siteTitle p.main {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 7.8rem;
  font-weight: bold;
  line-height: 1.5;
  color: white;
}
.page-front header .mv .mvData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
}
.page-front header .mv .mvData .result {
  max-width: 490px;
  width: 49%;
  min-height: 160px;
  padding: 10px 10px 10px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(249, 238, 221, 0.8)), color-stop(rgba(251, 227, 215, 0.8)), to(rgba(251, 227, 215, 0.8)));
  background: linear-gradient(to right, rgba(249, 238, 221, 0.8), rgba(251, 227, 215, 0.8), rgba(251, 227, 215, 0.8));
  color: #5e0038;
  border-radius: 32px;
}
.page-front header .mv .mvData .result dl {
  line-height: 1.1;
}
.page-front header .mv .mvData .result dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 0;
}
.page-front header .mv .mvData .result dl dt .text {
  font-weight: bold;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.page-front header .mv .mvData .result dl dt .text .t1 {
  font-size: 1.9rem;
}
.page-front header .mv .mvData .result dl dt .text .t2 {
  font-size: 4rem;
}
.page-front header .mv .mvData .result dl dt .text2 {
  margin: 6px 0 0;
  font-weight: bold;
}
.page-front header .mv .mvData .result dl dt .text2 .t1 {
  display: inline-block;
  font-size: 3.6rem;
}
.page-front header .mv .mvData .result dl dt .text2 .t2 {
  display: inline-block;
  font-size: 2rem;
}
.page-front header .mv .mvData .result dl dt .text2 .t3 {
  display: inline-block;
  font-size: 6.4rem;
  font-family: "Roboto", sans-serif;
}
.page-front header .mv .mvData .result dl dt .num {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
}
.page-front header .mv .mvData .result dl dt .num span {
  font-size: 7.2rem;
}
.page-front header .mv .mvData .result dl dd {
  text-align: center;
}
.page-front header .mv .mvData .result dl dd .text3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 412px;
  margin: 0 auto 8px;
  font-weight: bold;
}
.page-front header .mv .mvData .result dl dd .text3 .t1 {
  font-size: 1.6rem;
}
.page-front header .mv .mvData .result dl dd .text3 .t2 {
  min-width: 150px;
  padding: 2px 0;
  vertical-align: -2px;
  font-size: 1.6rem;
  background: #c48857;
  color: #fff;
}
.page-front header .mv .mvData .result p {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 1.6rem;
}
.page-front header .mv .mvData .result .btn {
  max-width: 325px;
  height: 36px;
  font-weight: 500;
}
.page-front header .mv .mvData .info {
  max-width: 490px;
  width: 49%;
  padding: 26px 19px;
  background: rgba(94, 1, 57, 0.9);
  border-radius: 27px;
  color: #fff;
  text-align: center;
}
.page-front header .mv .mvData .info dt {
  max-width: 432px;
  margin: 0 auto;
  padding: 0 0 5px;
  font-size: 2rem;
  border-bottom: #fff 1px solid;
}
.page-front header .mv .mvData .info dd {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .page-front header {
    height: calc(40vw + 100px);
    margin-bottom: calc(70vw + 80px);
    overflow: visible;
    background-color: #fbf8f5;
    position: relative;
  }
  .page-front header .header {
    height: 70px;
  }
  .page-front header .mv {
    padding: 0 0 20px;
  }
  .page-front header .mv .siteTitle {
    margin: 0;
  }
  .page-front header .mv .siteTitle p {
    font-size: 3.6vw;
  }
  .page-front header .mv .siteTitle p.main {
    font-size: 9.6vw;
    line-height: 1.2;
  }
  .page-front header .mv .mvData {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 26px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
    top: calc(40vw + 60px);
    bottom: auto;
  }
  .page-front header .mv .mvData .result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
    width: 100%;
    height: 35vw;
    min-height: 0;
    margin: 0 auto;
    padding: 10px 10px 10px;
    border-radius: 16px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
  .page-front header .mv .mvData .result dl dt {
    gap: 0px;
    margin-bottom: 0;
  }
  .page-front header .mv .mvData .result dl dt .text {
    -moz-text-align-last: center;
         text-align-last: center;
    text-align: center;
  }
  .page-front header .mv .mvData .result dl dt .text .t1 {
    font-size: 3.8vw;
  }
  .page-front header .mv .mvData .result dl dt .text .t2 {
    font-size: 6vw;
  }
  .page-front header .mv .mvData .result dl dt .text2 .t1 {
    font-size: 6.4vw;
  }
  .page-front header .mv .mvData .result dl dt .text2 .t2 {
    font-size: 3.6vw;
  }
  .page-front header .mv .mvData .result dl dt .text2 .t3 {
    font-size: 9.6vw;
  }
  .page-front header .mv .mvData .result dl dt .num {
    font-size: 8vw;
  }
  .page-front header .mv .mvData .result dl dt .num span {
    font-size: 14.4vw;
  }
  .page-front header .mv .mvData .result dl dd .text3 {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    gap: 15px;
    padding: 0;
  }
  .page-front header .mv .mvData .result dl dd .text3 .t1 {
    font-size: 3.2vw;
  }
  .page-front header .mv .mvData .result dl dd .text3 .t2 {
    min-width: 0;
    padding: 2px 10px;
    font-size: 3.2vw;
  }
  .page-front header .mv .mvData .result p {
    font-size: 3vw;
  }
  .page-front header .mv .mvData .result .btn {
    height: auto;
    padding: 5px 0;
  }
  .page-front header .mv .mvData .info {
    max-width: none;
    width: 90%;
    padding: 15px 10px;
    margin: 0 auto;
    line-height: 1.8;
    border-radius: 16px;
  }
  .page-front header .mv .mvData .info dt {
    max-width: none;
    font-size: 3.6vw;
  }
  .page-front header .mv .mvData .info dd {
    font-size: 3vw;
  }
}
.page-front article {
  padding: 40px 0;
}
.page-front article .flex {
  gap: 50px;
}
.page-front article h2 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #8e7045;
}
.page-front article h2::after {
  content: none;
}
.page-front article p {
  color: #5e4521;
}
@media screen and (max-width: 767px) {
  .page-front article h2 {
    margin-bottom: 20px;
    font-size: 7.2vw;
    font-weight: 500;
    color: #5e0038;
  }
}
.page-front .btn_2 {
  max-width: 278px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .page-front .btn_2 {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    height: auto;
    padding: 10px 20px;
    font-size: 3.2vw;
  }
}
.page-front .newsArea {
  background: #fbf8f5;
  padding: 55px 0 55px;
}
.page-front .newsArea dl {
  margin: 0 0 35px;
}
.page-front .newsArea dl .dl {
  padding: 14px 18px;
  gap: 42px;
}
.page-front .newsArea dl .dl dt::after {
  content: attr(data-tag);
  display: inline-block;
  width: 105px;
  margin: 0 0 0 42px;
  border-radius: 105px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fef4e1;
}
.page-front .newsArea dl .dl dt[data-tag=休診]::after {
  background: #d8cde4;
}
.page-front .newsArea dl .dl dt[data-tag=その他]::after {
  background: #d5e3ce;
}
.page-front .newsArea dl .dl dt[data-tag=重要]::after {
  background: #edc5c6;
}
.page-front .newsArea dl .dl a {
  text-decoration: none;
}
.page-front .newsArea dl .dl a:hover {
  text-decoration: underline;
}
.page-front .newsArea dl .dl .new {
  display: inline-block;
  margin: 0 0 0 7px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #d92c15;
}
@media screen and (max-width: 767px) {
  .page-front .newsArea {
    padding: 20px 0 23px;
  }
  .page-front .newsArea dl {
    margin-bottom: 20px;
  }
  .page-front .newsArea dl .dl {
    padding: 8px 0;
  }
  .page-front .newsArea dl .dl dt::after {
    font-size: 3.2vw;
    width: auto;
    padding: 0 20px;
    margin-left: 5px;
  }
}
.page-front .topClinicGuide {
  padding: 50px 0;
}
.page-front .topClinicGuide h2 {
  max-width: 960px;
  margin: 0 auto 50px;
  padding: 80px 0 0;
  background: url("../img/top/bg_h2_clinic.webp") no-repeat center center/contain;
  color: #8e7045;
  font-size: 3.6rem;
  font-weight: bold;
}
.page-front .topClinicGuide .topClinicNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 0;
}
.page-front .topClinicGuide .topClinicNav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 528px;
  width: 49%;
  min-height: 123px;
  padding: 5px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: #a38b77 url("../img/top/bg_clinic.webp") no-repeat right 190px bottom 20px;
}
.page-front .topClinicGuide .topClinicNav a.flow {
  min-height: 150px;
  background-color: #dea1a3;
}
.page-front .topClinicGuide .topClinicNav a.flow .img {
  width: 139px;
  height: 100%;
}
.page-front .topClinicGuide .topClinicNav a.reservation {
  min-height: 172px;
  background-color: #c599b5;
}
.page-front .topClinicGuide .topClinicNav a.reservation .img {
  width: 139px;
  height: 100%;
}
.page-front .topClinicGuide .topClinicNav a:hover {
  opacity: 0.7;
}
.page-front .topClinicGuide .topClinicNav a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.page-front .topClinicGuide .topClinicNav a .img {
  width: 123px;
  height: 123px;
  border-radius: 8px;
  overflow: hidden;
}
.page-front .topClinicGuide .topClinicNav a .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-front .topClinicGuide .topClinicNav a .text {
  padding: 10px 10px 10px 30px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.page-front .topClinicGuide .topClinicNav a .text strong {
  font-size: 3rem;
  font-weight: 500;
}
.page-front .topClinicGuide .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 18px 0;
  padding: 12px 24px;
  border: #eee3db 2px solid;
  border-radius: 8px;
  text-align: center;
  color: #5e4521;
  line-height: 1.2;
}
.page-front .topClinicGuide .message strong {
  font-size: 2rem;
  font-weight: bold;
  color: #ab6f6f;
}
.page-front .topClinicGuide .message span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-front .topClinicGuide {
    padding: 0 0 0;
  }
  .page-front .topClinicGuide h2 {
    margin-bottom: 25px;
    padding-top: 16vw;
    font-size: 7.2vw;
    font-weight: 500;
  }
  .page-front .topClinicGuide .topClinicNav {
    gap: 10px 0;
  }
  .page-front .topClinicGuide .topClinicNav a {
    min-height: 22.5vw;
    padding: 5vw 2.5vw;
    gap: 5px;
    border-radius: 2vw;
    overflow: hidden;
    background-position: right 40% bottom 6px;
    background-size: 10vw auto;
  }
  .page-front .topClinicGuide .topClinicNav a.flow {
    min-height: 24vw;
  }
  .page-front .topClinicGuide .topClinicNav a.flow .img {
    width: 15vw;
  }
  .page-front .topClinicGuide .topClinicNav a.reservation {
    min-height: 24vw;
  }
  .page-front .topClinicGuide .topClinicNav a.reservation .img {
    width: 15vw;
  }
  .page-front .topClinicGuide .topClinicNav a .img {
    width: 14vw;
    height: 100%;
    border-radius: 0;
  }
  .page-front .topClinicGuide .topClinicNav a .text {
    padding: 0;
    font-size: 1.8vw;
  }
  .page-front .topClinicGuide .topClinicNav a .text strong {
    display: inline-block;
    margin-bottom: 5px;
    line-height: 1.2;
    font-size: 3.2vw;
  }
  .page-front .topClinicGuide .message {
    gap: 5px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.2;
    width: 80%;
    margin: 20px auto;
    padding: 10px 5px;
    border-color: #fef4e1;
    border-width: 4px;
  }
  .page-front .topClinicGuide .message strong {
    display: block;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
    font-size: 3vw;
    color: #ab6f6f;
  }
  .page-front .topClinicGuide .message span {
    font-size: 2.8vw;
  }
}
.page-front .seminarArea {
  margin: 0;
  padding-bottom: 80px;
  text-align: center;
}
.page-front .seminarArea h2 {
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 0 0 0;
  color: #5e0038;
  font-weight: bold;
}
.page-front .seminarArea p {
  line-height: 1.6;
  color: #000;
}
@media screen and (max-width: 767px) {
  .page-front .seminarArea {
    padding: 60px 0 45px;
  }
  .page-front .seminarArea h2 {
    margin-bottom: 20px;
    font-weight: 500;
  }
  .page-front .seminarArea p {
    line-height: 2.2;
  }
}
.page-front .renewalOpen {
  padding: 90px 0;
  margin: 0;
}
.page-front .renewalOpen .flex {
  gap: 35px;
}
.page-front .renewalOpen .flex .flexText h3 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #a38b77;
  line-height: 1.8;
}
.page-front .renewalOpen .flex .flexText p {
  color: #5e4521;
}
.page-front .renewalOpen .box_3 {
  padding: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .page-front .renewalOpen .flex {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-front .renewalOpen .flex .flexImg {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    text-align: center;
  }
  .page-front .renewalOpen .flex .flexImg img {
    height: 50vw;
    min-height: 200px;
    -o-object-position: right center;
       object-position: right center;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50px;
  }
  .page-front .renewalOpen .flex .flexText {
    padding: 25px 0 0;
    display: contents;
  }
  .page-front .renewalOpen .flex .flexText h3 {
    margin: 0;
    font-size: 5.2vw;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .page-front .renewalOpen .box_3 {
    padding: 5px 11px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 3vw;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.page-front .iten {
  padding: 50px 0;
}
.page-front .iten .box {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .page-front .iten .box {
    max-width: 95%;
    -o-border-image: none;
       border-image: none;
    border-color: #fef4e1;
    color: #555;
    line-height: 1.5;
    font-size: 3.4vw;
  }
}
.page-front .iten_2 {
  padding: 50px 0 50px 0;
}
.page-front .iten_2 .box {
  max-width: 80%;
  margin: 0 auto;
  border-width: 4px;
  border-color: #d8cde4;
  -o-border-image: none;
     border-image: none;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .page-front .iten_2 .box {
    max-width: 95%;
    -o-border-image: none;
       border-image: none;
    border-color: #d8cde4;
    color: #555;
    line-height: 1.5;
    font-size: 3.4vw;
  }
}
.page-front .iten_3 {
  padding: 50px 0;
}
.page-front .iten_3 .box {
  max-width: 80%;
  margin: 0 auto;
  border-width: 4px;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .page-front .iten_3 .box {
    max-width: 95%;
    -o-border-image: none;
       border-image: none;
    border-color: #fef4e1;
    color: #555;
    line-height: 1.5;
    font-size: 3.4vw;
  }
  .page-front .iten_3 .box .iten-header {
    margin-top: 16px;
  }
}
.page-front .iten-button {
  margin-top: 16px;
}
.page-front .iten-text {
  color: #5e4521;
}
.page-front .iten-header {
  color: #5e0038;
}
.page-front .aboutArea {
  padding: 90px 0 40px;
}
.page-front .aboutArea h2 {
  text-align: left;
  color: #5e0038;
}
.page-front .aboutArea .flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-front .aboutArea .flex .flexText {
  padding-top: 30px;
}
.page-front .aboutArea .flex .flexText h2 {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  margin: 0 0 50px;
}
.page-front .aboutArea .flex .flexText p {
  color: #5e4521;
  line-height: 1.6;
}
.page-front .aboutArea .flex .flexImg {
  max-width: 420px;
  width: 50%;
  text-align: center;
}
.page-front .aboutArea .flex .flexImg img {
  border-radius: 420px;
}
@media screen and (max-width: 767px) {
  .page-front .aboutArea {
    padding: 45px 0 0;
  }
  .page-front .aboutArea h2 {
    text-align: center;
  }
  .page-front .aboutArea .flex {
    gap: 30px 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-front .aboutArea .flex .flexText {
    display: contents;
  }
  .page-front .aboutArea .flex .flexText h2 {
    margin-bottom: 0;
  }
  .page-front .aboutArea .flex .flexText p {
    line-height: 2.2;
  }
  .page-front .aboutArea .flex .flexImg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 80%;
  }
  .page-front .aboutArea .flex .flexImg img {
    border-radius: 0;
  }
}
.page-front .bgAbout {
  background: url(../img/top/bg_about.webp) no-repeat center top/100% auto;
}
.page-front .bg {
  padding: 90px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #fef4e1), color-stop(50%, #fbe4d7), to(#d8cde4));
  background: linear-gradient(to right, #fef4e1 0, #fbe4d7 50%, #d8cde4 100%);
}
.page-front .bg .inner {
  position: relative;
}
.page-front .bg .inner hgroup {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-front .bg .inner hgroup p {
  position: absolute;
  top: -128px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page-front .bg {
    padding: 45px 0 30px;
  }
  .page-front .bg .inner hgroup {
    margin-bottom: 10px;
  }
  .page-front .bg .inner hgroup p {
    top: -98px;
    right: 0;
    text-align: center;
    margin: auto;
  }
}
.page-front .featuresArea {
  padding: 0 0 80px;
}
.page-front .featuresArea .read {
  margin: 0 0 50px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
}
.page-front .featuresArea .h2 {
  margin: 0 0 30px;
  font-size: 3.2rem;
  text-align: center;
  color: #8e7045;
}
.page-front .featuresArea h3 {
  display: inline-block;
  min-width: 155px;
  margin-bottom: 15px;
  padding: 8px 25px;
  line-height: 1.2;
  text-align: center;
  background: #5e0038;
  border-radius: 30px 0 30px 0;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
}
.page-front .featuresArea p {
  color: #5e4521;
}
.page-front .featuresArea .flex {
  margin: 0 0 120px;
}
.page-front .featuresArea .flex .flexImg {
  max-width: 580px;
  width: 60%;
}
.page-front .featuresArea .columnBox {
  margin: 35px 0 45px;
}
.page-front .featuresArea .columnBox .columnItem {
  max-width: 518px;
  margin: 0 auto 0;
}
.page-front .featuresArea .columnBox .columnItem img {
  display: block;
  margin: 0 auto 15px;
  width: 517px;
  max-height: 232px;
  height: 22vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .page-front .featuresArea {
    padding: 20vw 0 50px;
  }
  .page-front .featuresArea .read {
    font-size: 4.8vw;
    line-height: 1.8;
  }
  .page-front .featuresArea .h2 {
    margin-bottom: 45px;
    text-align: center;
    font-size: 4.4vw;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
    font-weight: 700;
    color: rgba(142, 112, 69, 0.8);
  }
  .page-front .featuresArea h3 {
    margin: 0 auto 10px;
    line-height: 1.2;
    font-size: 3.6vw;
    border-radius: 0;
  }
  .page-front .featuresArea .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0 40px;
    gap: 10px;
  }
  .page-front .featuresArea .flex .flexImg {
    max-width: none;
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    text-align: center;
  }
  .page-front .featuresArea .flex .flexText {
    display: contents;
  }
  .page-front .featuresArea .flex .flexText h3 {
    margin: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .page-front .featuresArea .flex .flexText p {
    margin-bottom: 0;
  }
  .page-front .featuresArea .columnBox {
    margin: 0;
    gap: 40px 0;
  }
  .page-front .featuresArea .columnBox::before, .page-front .featuresArea .columnBox::after {
    content: none;
  }
  .page-front .featuresArea .columnBox .columnItem {
    max-width: none;
    margin: 0 auto;
  }
  .page-front .featuresArea .columnBox .columnItem img {
    height: 40vw;
  }
}
.page-front figure {
  margin: 0 0 15px;
  position: relative;
}
.page-front figure figcaption {
  min-width: 155px;
  padding: 8px 25px;
  line-height: 1.2;
  text-align: center;
  background: #5e0038;
  border-radius: 30px 0 30px 0;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  position: absolute;
  top: -52px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page-front figure {
    max-width: 517px;
    margin: 0 auto 10px;
    padding-top: 12vw;
  }
  .page-front figure figcaption {
    line-height: 1.8;
    top: 0;
    font-size: 4vw;
  }
}
.page-front .embryoArea {
  padding: 110px 0;
  background: url(../img/top/bg_embryo.webp) no-repeat center center/cover;
}
.page-front .embryoArea h2 {
  text-align: left;
  color: #457a8e;
}
.page-front .embryoArea h3 {
  font-weight: bold;
  font-size: 2.4rem;
  color: #457a8e;
}
.page-front .embryoArea p {
  font-size: 1.8rem;
  color: #457a8e;
}
.page-front .embryoArea .btn_2 {
  color: #457a8e;
  border-color: #457a8e;
  font-size: 1.6rem;
}
.page-front .embryoArea .btn_2:hover {
  background: #457a8e;
  color: #fff;
}
.page-front .embryoArea .flex {
  gap: 30px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .page-front .embryoArea {
    padding: 45px 0 30px;
  }
  .page-front .embryoArea h2 {
    font-size: 6.2vw;
  }
  .page-front .embryoArea h3 {
    margin-bottom: 10px;
    font-size: 4.8vw;
  }
  .page-front .embryoArea p {
    font-size: 3.6vw;
  }
  .page-front .embryoArea .btn_2 {
    font-size: 3.2vw;
  }
  .page-front .embryoArea .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .page-front .embryoArea .flex .flexText {
    display: contents;
  }
  .page-front .embryoArea .flex .flexText h2 {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
  }
  .page-front .embryoArea .flex .flexText h3 {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .page-front .embryoArea .flex .flexText p {
    margin-bottom: 0;
  }
  .page-front .embryoArea .flex .flexImg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    text-align: center;
  }
}
.page-front .bgSchedule {
  background: url(../img/top/bg_schedule.webp) no-repeat center top/cover;
}
.page-front .scheduleArea {
  padding: 70px 0 0;
}
.page-front .scheduleArea h2 {
  margin: 0 0 20px;
}
.page-front .scheduleArea .reception.timeTableArea caption {
  text-align: center;
  color: #648d9f;
  font-size: 1.8rem;
}
.page-front .scheduleArea .reception.timeTableArea table {
  border-color: #648d9f;
}
.page-front .scheduleArea .reception.timeTableArea table thead th {
  background: #e3ecf6;
  color: #648d9f;
  border-color: #648d9f;
  font-size: 1.8rem;
}
.page-front .scheduleArea .reception.timeTableArea table td {
  background: #fff;
  color: #648d9f;
  border-color: #648d9f;
}
.page-front .scheduleArea .reception.timeTableArea p {
  color: #648d9f;
}
.page-front .scheduleArea .reception.scheduleTableArea table {
  width: 100%;
  table-layout: fixed;
  border-color: #c9a36d;
}
.page-front .scheduleArea .reception.scheduleTableArea table.pc {
  display: table;
}
.page-front .scheduleArea .reception.scheduleTableArea table.sp {
  display: none;
}
.page-front .scheduleArea .reception.scheduleTableArea table thead th {
  background: #f6e3e3;
  text-align: center;
  font-weight: bold;
  color: #ab6f6f;
  border-color: #c9a36d;
}
.page-front .scheduleArea .reception.scheduleTableArea table thead th:nth-of-type(1) {
  width: 80px;
}
.page-front .scheduleArea .reception.scheduleTableArea table tbody th {
  background: #fff;
  color: #ab6f6f;
  text-align: center;
  vertical-align: middle;
  font-size: 1.8rem;
}
.page-front .scheduleArea .reception.scheduleTableArea table tbody td {
  padding: 10px 10px;
  background: #fff;
  color: #ab6f6f;
  border-color: #c9a36d;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
.page-front .scheduleArea .reception.scheduleTableArea p {
  color: #ab6f6f;
}
.page-front .scheduleArea .reception.scheduleTableArea .small {
  display: inline-block;
  font-size: 1.4rem;
}
.page-front .scheduleArea .closed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 50px;
  margin: 30px 0;
}
.page-front .scheduleArea .closed.col3 {
  gap: 20px;
}
.page-front .scheduleArea .closed.col3 h3 {
  font-size: 2.6rem;
}
.page-front .scheduleArea .closed.col3 .now {
  font-size: 1.4rem;
  font-weight: 500;
}
.page-front .scheduleArea .closed.col3 table th {
  padding: 11px 14px;
}
.page-front .scheduleArea .closed.col3 table td {
  padding: 10px 6px;
}
.page-front .scheduleArea .closed.col3 table td:nth-of-type(3) {
  font-size: 1.8rem;
}
.page-front .scheduleArea .closed.col3 p {
  font-size: 1.5rem;
}
.page-front .scheduleArea .closed .column {
  width: 100%;
}
.page-front .scheduleArea .closed h3 {
  margin: 0;
  font-weight: bold;
  color: #8e7045;
}
.page-front .scheduleArea .closed h3 .month {
  font-size: 4.8rem;
}
.page-front .scheduleArea .closed h3 .now {
  display: inline-block;
  font-size: 2rem;
}
.page-front .scheduleArea .closed table {
  width: 100%;
  border-color: #c9a36d;
}
.page-front .scheduleArea .closed table th {
  background: #f6e3e3;
  text-align: center;
  font-weight: bold;
  color: #ab6f6f;
  border-color: #c9a36d;
}
.page-front .scheduleArea .closed table td {
  font-weight: bold;
  text-align: center;
  padding: 10px 10px;
  background: #fff;
  color: #ab6f6f;
  border-color: #c9a36d;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
.page-front .scheduleArea .closed table td:nth-of-type(3) {
  width: 20%;
  font-size: 2rem;
}
.page-front .scheduleArea .closed .small {
  display: inline-block;
  font-size: 1.4rem;
}
.page-front .scheduleArea .box_2 {
  max-width: 640px;
}
.page-front .scheduleArea .box_4 {
  max-width: 640px;
  margin-bottom: 50px;
}
.page-front .scheduleArea .box_4 ul {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}
.page-front .scheduleArea .box_4 ul li {
  margin-bottom: 0;
}
.page-front .scheduleArea .box_4 ul li::before {
  background: #5e4521;
}
.page-front .kyuusinBox {
  margin: 0 20%;
}
.page-front .kyuusinBox .readArea {
  margin: 0 20px;
}
.page-front .kyuusinBox .texRed {
  color: #ab6f6f;
}
.page-front .kyuusinBox .texBlue {
  color: #457a8e;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .page-front .kyuusinBox {
    margin: 0;
  }
}
@media screen and (max-width: 1079px) {
  .page-front .scheduleArea .closed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .page-front .scheduleArea .reception.scheduleTableArea table tbody td {
    font-size: 1.8vw;
  }
  .page-front .scheduleArea .reception.scheduleTableArea {
    overflow: auto;
    white-space: nowrap;
  }
  .page-front .scheduleArea .reception.scheduleTableArea::-webkit-scrollbar {
    background: #ccc;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .page-front .scheduleArea .reception.scheduleTableArea::-webkit-scrollbar-thumb {
    width: 15px;
    height: 15px;
    background: #5e0038;
    border-radius: 15px;
  }
  .page-front .scheduleArea .reception.scheduleTableArea table {
    table-layout: auto;
  }
}
@media screen and (max-width: 767px) {
  .page-front .scheduleArea {
    padding: 45px 0 30px;
  }
  .page-front .scheduleArea .reception.timeTableArea caption {
    font-size: 3.6vw;
  }
  .page-front .scheduleArea .reception.timeTableArea table thead th {
    font-size: 3.6vw;
  }
  .page-front .scheduleArea .reception.timeTableArea table td {
    font-size: 2.4vw;
  }
  .page-front .scheduleArea .reception.scheduleTableArea table.pc {
    display: none;
  }
  .page-front .scheduleArea .reception.scheduleTableArea table.sp {
    display: table;
  }
  .page-front .scheduleArea .reception.scheduleTableArea table tbody th {
    font-size: 2.4vw;
  }
  .page-front .scheduleArea .reception.scheduleTableArea table tbody td {
    padding: 5px;
    font-size: 2.4vw;
  }
  .page-front .scheduleArea .reception.scheduleTableArea .small {
    font-size: 2vw;
  }
  .page-front .scheduleArea .closed.col3 h3 {
    font-size: 4.8vw;
  }
  .page-front .scheduleArea .closed.col3 .now {
    font-size: 2.8vw;
  }
  .page-front .scheduleArea .closed.col3 table td:nth-of-type(3) {
    font-size: 2.4vw;
  }
  .page-front .scheduleArea .closed.col3 p {
    font-size: 3vw;
  }
  .page-front .scheduleArea .closed .column {
    margin-top: 30px;
  }
  .page-front .scheduleArea .closed h3 {
    margin-bottom: 20px;
    font-size: 4.8vw;
    font-weight: 500;
    color: #5e0038;
    text-align: center;
  }
  .page-front .scheduleArea .closed h3 .month {
    font-size: 4.8vw;
  }
  .page-front .scheduleArea .closed h3 .now {
    font-size: 3.2vw;
  }
  .page-front .scheduleArea .closed table {
    width: 80%;
    margin: 0 auto;
  }
  .page-front .scheduleArea .closed table td {
    padding: 5px;
    font-size: 2.4vw;
  }
  .page-front .scheduleArea .closed table td:nth-of-type(3) {
    font-size: 2.4vw;
  }
  .page-front .scheduleArea .closed .small {
    margin-top: 15px;
    font-size: 2.8vw;
    font-weight: 500;
  }
}
.page-front aside {
  max-width: 774px;
  margin: 0 auto;
  padding: 0 0 195px;
}
.page-front aside h2 {
  margin: 0 0 30px;
  color: #8e7045;
  font-size: 3.6rem;
}
.page-front aside .columnBox {
  margin: 0;
}
.page-front aside .columnBox .columnItem {
  color: #5e4521;
}
.page-front aside .columnBox .columnItem a {
  background: #222;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 344px;
  width: 100%;
  height: 61px;
  gap: 5px;
  margin: 0 0 10px;
  padding: 10px 25px 10px 35px;
  border-radius: 31px;
  background: #fff;
  color: #8e7045;
  font-weight: bold;
  font-size: 2.4rem;
}
.page-front aside .columnBox .columnItem a:hover {
  opacity: 0.7;
}
.page-front aside .columnBox .columnItem a i {
  font-size: 2.4rem;
}
.page-front aside .columnBox .columnItem a::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.9rem;
  margin: 0 0 0 auto;
}
.page-front aside .columnBox .columnItem p {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page-front aside {
    display: none;
    padding: 0 26px 0;
  }
  .page-front aside h2 {
    margin-bottom: 10px;
    font-size: 7.2vw;
  }
  .page-front aside .columnBox .columnItem {
    text-align: center;
  }
  .page-front aside .columnBox .columnItem a {
    font-size: 4vw;
    height: auto;
  }
  .page-front aside .columnBox .columnItem a i {
    font-size: 7.2vw;
  }
  .page-front aside .columnBox .columnItem a::after {
    font-size: 3.6vw;
  }
  .page-front aside .columnBox .columnItem p {
    line-height: 2.2;
    font-size: 2.8vw;
  }
}
.page-front .oyakudachiArea {
  padding-bottom: 60px;
  background: #fbf5ef;
}
.page-front .oyakudachiArea h2 {
  margin-bottom: 40px;
}
.page-front .oyakudachiArea .columnBox {
  padding: 0 24px;
}
.page-front .oyakudachiArea .columnBox .columnItem {
  text-align: center;
  text-decoration: none;
  color: #000;
}
.page-front .oyakudachiArea .columnBox .columnItem:hover {
  color: #5e0038;
}
.page-front .oyakudachiArea .columnBox .columnItem img {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .page-front .oyakudachiArea {
    padding: 45px 0 0;
  }
  .page-front .oyakudachiArea h2 {
    margin-bottom: 20px;
  }
  .page-front .oyakudachiArea .columnBox {
    padding: 0;
  }
  .page-front .oyakudachiArea .columnBox .columnItem {
    margin-bottom: 10px;
    font-size: 3.2vw;
    line-height: 1.8;
  }
}
.page-front .accessArea {
  margin: 0 0 73px;
  background: url(../img/top/bg_access.webp) no-repeat center center/cover;
}
.page-front .accessArea h3 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 20px;
  padding: 6px 25px;
  line-height: 1.2;
  text-align: center;
  background: #5e0038;
  border-radius: 30px 0 30px 0;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
}
.page-front .accessArea p {
  color: #5e0038;
  font-size: 1.9rem;
  text-align: center;
}
.page-front .accessArea .box2 {
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 20px 10px;
  background: none;
  border: #926672 3px solid;
  border-radius: 10px;
  text-align: center;
}
.page-front .accessArea .box2.car {
  border-color: #977049;
}
.page-front .accessArea .box2.car p {
  color: #5e4521;
  font-weight: 500;
}
.page-front .accessArea .box2.car p strong {
  font-size: 2.8rem;
}
.page-front .accessArea .box2.car a {
  color: #8e7045;
}
.page-front .accessArea a {
  background: #222;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 370px;
  width: 100%;
  height: 49px;
  gap: 5px;
  margin: 0;
  padding: 5px 25px 5px 35px;
  border-radius: 31px;
  background: #fff;
  color: #926672;
  font-weight: bold;
  font-size: 2.2rem;
}
.page-front .accessArea a:hover {
  opacity: 0.7;
}
.page-front .accessArea a i {
  font-size: 2.4rem;
}
.page-front .accessArea a::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.9rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .page-front .accessArea {
    padding: 45px 0 30px;
    margin-bottom: 30px;
    background-position: right -32vw center;
  }
  .page-front .accessArea h3 {
    font-size: 3.6vw;
    margin-bottom: 10px;
  }
  .page-front .accessArea p {
    font-size: 3.2vw;
  }
  .page-front .accessArea .box2 {
    padding: 10px;
  }
  .page-front .accessArea .box2.car {
    padding: 10px;
  }
  .page-front .accessArea .box2.car p strong {
    font-size: 4vw;
  }
  .page-front .accessArea a {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    height: auto;
    font-size: 4vw;
  }
  .page-front .accessArea a i {
    font-size: 4.8vw;
  }
  .page-front .accessArea a::after {
    font-size: 3.6vw;
  }
}
.page-front .insta {
  margin: 0 0 73px;
}
.page-front .insta a {
  border-color: #5e0038;
  color: #5e0038;
}
.page-front .insta a:hover {
  background: #5e0038;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-front .insta {
    margin-bottom: 30px;
  }
  .page-front .insta .box {
    border-color: #fef4e1;
    -o-border-image: none;
       border-image: none;
  }
  .page-front .insta .box .box_head {
    background: #fef4e1;
  }
}
.page-front #sb_instagram {
  margin-bottom: 20px;
}
.page-front #sb_instagram #sbi_images {
  padding: 0;
}
.page-front .gMap {
  padding: 0 0 75px;
  text-align: center;
}
.page-front .gMap iframe {
  vertical-align: top;
  margin: 0 0 17px;
}
.page-front .gMap p {
  color: #5e4521;
  padding: 0 26px;
}
.page-front .gMap .route {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  text-align: left;
  color: #5e4521;
}
.page-front .gMap .route i {
  color: #edc5c6;
  font-size: 1rem;
  vertical-align: 4px;
}
@media screen and (max-width: 767px) {
  .page-front .gMap {
    padding-bottom: 30px;
  }
  .page-front .gMap iframe {
    height: 50vh;
  }
  .page-front .gMap .route {
    padding: 0 10px 0 30px;
  }
  .page-front .gMap .route i {
    margin-left: -3.6vw;
    font-size: 2vw;
  }
}
.page-front .infoDoctorsArea hgroup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-front .footerBanner {
  padding: 86px 0;
  background: #fff8ec;
}
@media screen and (max-width: 767px) {
  .page-front .footerBanner {
    padding: 30px 0;
  }
}

/* LESS Document */
/*+++++++++++++++++++++++++++++++++++++++++++
	index
+++++++++++++++++++++++++++++++++++++++++++ */
.page-about header {
  background-image: url(../img/about/kv_about.webp);
}
.page-about section[id] {
  padding-top: 80px;
  margin-top: -80px;
}
.page-about .greetingArea h3 {
  padding: 0;
  background: none;
  font-size: 2.8rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .page-about .greetingArea h3 {
    font-size: 4vw;
  }
}
.page-about .profileArea {
  margin: 0 0 58px;
}
.page-about .profileArea .flex .flexText {
  border-bottom: #eee 1px solid;
}
.page-about .profileArea h3 {
  padding: 0;
  font-size: 2rem;
  font-weight: bold;
  background: none;
  color: #000;
}
.page-about .profileArea h3 .name {
  display: inline-block;
  margin: 10px 0 0;
  font-size: 2.8rem;
}
.page-about .profileArea h3 .kana {
  display: inline-block;
  margin: 0 0 0 12px;
  font-size: 1.7rem;
  color: #b4a291;
}
.page-about .profileArea .dlList_01 {
  margin: 0 0 10px;
}
.page-about .profileArea .dlList_01 .dl {
  gap: 10px;
  padding: 3px 0;
}
.page-about .profileArea .dlList_01 .dl dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-about .profileArea {
    margin-bottom: 8px;
  }
  .page-about .profileArea h3 {
    font-size: 4vw;
  }
  .page-about .profileArea h3 .name {
    font-size: 5.6vw;
  }
  .page-about .profileArea h3 .kana {
    font-size: 3.4vw;
  }
}
.page-about .cooperationArea .flex {
  gap: 17px;
  padding: 14px 0;
  border-bottom: #eee 1px solid;
}
.page-about .cooperationArea .flex:nth-of-type(1) {
  border-top: #eee 1px solid;
}
.page-about .cooperationArea .flex h4 {
  font-size: 1.7rem;
  font-weight: 500;
}
.page-about .cooperationArea .flex p {
  font-size: 1.3rem;
}
.page-about .cooperationArea .flex p.url {
  font-size: 1.5rem;
  word-wrap: break-word;
}
.page-about .cooperationArea .flex p.url span {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 10px 0 0;
  background: #5e0038;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-about .cooperationArea .flex h4 {
    font-size: 3.4vw;
  }
  .page-about .cooperationArea .flex p {
    font-size: 2.6vw;
  }
  .page-about .cooperationArea .flex p.url {
    font-size: 3vw;
  }
  .page-about .cooperationArea .flex p.url span {
    font-size: 2.6vw;
  }
}
.page-about #article2 iframe {
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 16/9;
}

.page-please header {
  background-image: url(../img/about/kv_about.webp);
}

.page-staff,
.page-cultivation_results {
  /*+++++++++++++++++++++++++++++++++++++++++++
  	staff
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-staff header,
.page-cultivation_results header {
  background-image: url(../img/about/kv_about.webp);
}
.page-staff .doctorArea section,
.page-cultivation_results .doctorArea section {
  margin: 0;
  padding: 35px 0;
  border-bottom: #eee 1px solid;
}
.page-staff .doctorArea section .sp_show img,
.page-cultivation_results .doctorArea section .sp_show img {
  width: 50vw;
  height: 60vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.page-staff .doctorArea section .flex,
.page-cultivation_results .doctorArea section .flex {
  gap: 80px;
}
.page-staff .doctorArea section .flex .name,
.page-cultivation_results .doctorArea section .flex .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-staff .doctorArea section .flex .name h3,
.page-cultivation_results .doctorArea section .flex .name h3 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0;
  background: none;
  color: #000;
  font-size: 2.8rem;
}
.page-staff .doctorArea section .flex .name h3 .kana,
.page-cultivation_results .doctorArea section .flex .name h3 .kana {
  color: #a38b77;
  font-size: 1.7rem;
}
.page-staff .doctorArea section .flex .name p,
.page-cultivation_results .doctorArea section .flex .name p {
  font-size: 2rem;
  font-weight: bold;
}
.page-staff .doctorArea section .btn_2,
.page-cultivation_results .doctorArea section .btn_2 {
  max-width: 350px;
}
.page-staff .doctorArea section .dlList_01,
.page-cultivation_results .doctorArea section .dlList_01 {
  margin: 0 0 10px;
}
.page-staff .doctorArea section .dlList_01 .dl,
.page-cultivation_results .doctorArea section .dlList_01 .dl {
  gap: 10px;
  padding: 3px 0;
}
.page-staff .doctorArea section .dlList_01 .dl dt,
.page-cultivation_results .doctorArea section .dlList_01 .dl dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-staff .doctorArea section .flex,
  .page-cultivation_results .doctorArea section .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .page-staff .doctorArea section .flex .name,
  .page-cultivation_results .doctorArea section .flex .name {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .page-staff .doctorArea section .flex .name h3,
  .page-cultivation_results .doctorArea section .flex .name h3 {
    font-size: 5.6vw;
  }
  .page-staff .doctorArea section .flex .name p,
  .page-cultivation_results .doctorArea section .flex .name p {
    font-size: 4vw;
  }
  .page-staff .doctorArea section .flex .flexImg,
  .page-cultivation_results .doctorArea section .flex .flexImg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-item-align: center;
        align-self: center;
    text-align: center;
  }
  .page-staff .doctorArea section .flex .flexImg img,
  .page-cultivation_results .doctorArea section .flex .flexImg img {
    width: 50vw;
    height: 70vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .page-staff .doctorArea section .flex .flexText,
  .page-cultivation_results .doctorArea section .flex .flexText {
    display: contents;
  }
  .page-staff .doctorArea section .dlList_01 .dl dd,
  .page-cultivation_results .doctorArea section .dlList_01 .dl dd {
    margin-bottom: 5px;
    line-height: 1.5;
  }
}
.page-staff .staffArea .flexImg,
.page-cultivation_results .staffArea .flexImg {
  max-width: 258px;
}
.page-staff .staffArea .flexImg img:nth-of-type(n + 2),
.page-cultivation_results .staffArea .flexImg img:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .page-staff .staffArea .flexImg,
  .page-cultivation_results .staffArea .flexImg {
    max-width: none;
    text-align: center;
  }
  .page-staff .staffArea .flexImg img,
  .page-cultivation_results .staffArea .flexImg img {
    width: 49%;
  }
  .page-staff .staffArea .flexImg img:nth-of-type(n + 2),
  .page-cultivation_results .staffArea .flexImg img:nth-of-type(n + 2) {
    margin-top: 0;
  }
}

.page-results {
  /*+++++++++++++++++++++++++++++++++++++++++++
    results
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-results header {
  background-image: url(../img/about/kv_about.webp);
}
.page-results .resultsArea .columnBox {
  margin: 30px 0 50px;
}
.page-results .resultsArea .columnBox .columnTable {
  width: 50%;
}
.page-results .resultsArea .columnBox .columnTable table {
  width: 100%;
}
.page-results .resultsArea .columnBox .columnGraph {
  width: 50%;
  text-align: right;
}
.page-results .resultsArea .resultsTable {
  max-width: 440px;
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .page-results .resultsArea .columnBox .columnTable {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-results .resultsArea .columnBox .columnGraph {
    width: 100%;
    text-align: center;
  }
}

.page-interview {
  /*+++++++++++++++++++++++++++++++++++++++++++
    index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-interview header {
  background-image: url(../img/about/kv_about.webp);
}
.page-interview .interviewNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 77px;
}
.page-interview .interviewNav > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 486px;
  width: 100%;
  text-align: left;
  -webkit-box-shadow: 2px 2px 0 rgba(93, 0, 55, 0.1);
          box-shadow: 2px 2px 0 rgba(93, 0, 55, 0.1);
  background: #fdf4eb;
  text-decoration: none;
}
.page-interview .interviewNav > a .text {
  font-size: 1.7rem;
  color: #000;
  line-height: 1.7;
}
.page-interview .interviewNav > a .text strong {
  color: #5e0038;
  font-size: 2.1rem;
}
.page-interview .interviewNav > a img {
  width: 147px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-interview .interviewNav > a i {
  font-size: 3.6rem;
  margin: 0 20px 0 auto;
}
@media screen and (max-width: 767px) {
  .page-interview .interviewNav {
    display: block;
    margin-bottom: 40px;
  }
  .page-interview .interviewNav > a {
    gap: 10px;
    max-width: none;
    margin: 0 0 5px;
  }
  .page-interview .interviewNav > a .text {
    font-size: 3.4vw;
    line-height: 1.5;
  }
  .page-interview .interviewNav > a .text strong {
    font-size: 4vw;
  }
  .page-interview .interviewNav > a img {
    width: 30vw;
    height: 100%;
  }
  .page-interview .interviewNav > a i {
    font-size: 7.2vw;
  }
}
.page-interview article section {
  margin: -80px 0 42px;
  padding: 80px 0 38px;
  border-bottom: #e8e8e8 1px solid;
}
@media screen and (max-width: 767px) {
  .page-interview article section {
    margin-top: 0;
    padding-top: 0;
  }
}
.page-interview .prof {
  padding: 12px 0;
  border-top: #e1e1e1 1px solid;
  border-bottom: #e1e1e1 1px solid;
}
.page-interview .prof h4 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}
.page-interview .prof p {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-interview .prof h4 {
    font-size: 3.4vw;
  }
  .page-interview .prof p {
    font-size: 3vw;
  }
}
.page-interview .box_3 {
  margin: 62px 0;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #5e0038;
}
@media screen and (max-width: 767px) {
  .page-interview .box_3 {
    font-size: 4.4vw;
  }
}
.page-interview .interviewArea > div {
  margin: 0 0 50px;
}
.page-interview .interviewArea > div dt {
  margin: 0 0 10px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #5e0038;
}
@media screen and (max-width: 767px) {
  .page-interview .interviewArea > div dt {
    font-size: 4vw;
  }
}
.page-interview .end {
  text-align: center;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .page-interview .end {
    font-size: 4vw;
  }
}

.page-clinic {
  /*+++++++++++++++++++++++++++++++++++++++++++
    index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-clinic header {
  background-image: url(../img/clinic/kv_clinic.webp);
}
.page-clinic .btn_2 {
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .page-clinic .btn_2 {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.page-flow {
  /* LESS Document */
  /*+++++++++++++++++++++++++++++++++++++++++++
  	flow
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-flow header {
  background-image: url(../img/clinic/kv_clinic.webp);
}
.page-flow .ankerNav a {
  max-width: none;
}
.page-flow .yoyakuText {
  margin: 0 0 50px;
  color: #d92c15;
  font-weight: bold;
  font-size: 2.1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-flow .yoyakuText {
    margin-bottom: 30px;
    font-size: 4.2vw;
  }
}
.page-flow .reception {
  margin-bottom: 80px;
}
.page-flow .flowArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
.page-flow .flowArea:nth-last-of-type(1) h3::after, .page-flow .flowArea.last h3::after {
  content: none;
}
.page-flow .flowArea .flowContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 134px;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: #ddd 2px dotted;
}
.page-flow .flowArea h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  padding: 0;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  background: #5e0038;
  font-size: 2rem;
  position: relative;
}
.page-flow .flowArea h3 .num {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4.4rem;
}
.page-flow .flowArea h3::after {
  content: "\f142";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #5e0038;
  font-size: 2.8rem;
  position: absolute;
  bottom: -38px;
  left: 48px;
}
.page-flow .flowArea hr {
  border-top: #ddd 2px dotted;
}
.page-flow .flowArea ul.flex {
  gap: 28px;
}
.page-flow .flowArea ul.flex li {
  width: 340px;
}
.page-flow .flowArea .dlList_01 .dl_flow {
  gap: 12px;
  margin: 0 0 12px;
}
.page-flow .flowArea .dlList_01 .dl_flow dt {
  width: 143px;
  background: #5e0038;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.page-flow .flowArea .dlList_01 .dl_flow dd {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-flow .flowArea {
    gap: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-flow .flowArea .flowContents {
    width: 100%;
    min-height: 0;
  }
  .page-flow .flowArea ul.flex li {
    width: 100%;
    max-width: 340px;
  }
  .page-flow .flowArea ul.flex li {
    max-width: none;
    width: auto;
    margin: 0 0 10px;
  }
  .page-flow .flowArea ul.flex li .btn_3 {
    max-width: 500px;
  }
  .page-flow .flowArea .dlList_01 .dl_flow dt {
    width: 30vw;
    font-size: 3vw;
  }
}

.page-price {
  /*+++++++++++++++++++++++++++++++++++++++++++
    price
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-price header {
  background-image: url(../img/clinic/kv_clinic.webp);
}
.page-price section table {
  width: 100%;
}
.page-price section table td {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.page-price .num {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.page-seed_pod {
  /*+++++++++++++++++++++++++++++++++++++++++++
    seedPod
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-seed_pod header {
  background-image: url(../img/clinic/kv_clinic.webp);
}
.page-seed_pod .seedPodArea .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 813px;
  margin: 0 auto 35px;
  padding: 8px 25px 8px 0;
  border: #e8e8e8 1px solid;
}
.page-seed_pod .seedPodArea .product .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-seed_pod .seedPodArea .product .text dt {
  font-size: 2.7rem;
  border-bottom: #00b1ad 2px solid;
}
.page-seed_pod .seedPodArea .product .text dd {
  font-size: 2.4rem;
}
.page-seed_pod .seedPodArea .product .text dd strong {
  font-weight: 500;
  font-size: 4.1rem;
}
.page-seed_pod .seedPodArea .product .text p {
  font-size: 1.9rem;
}
.page-seed_pod .seedPodArea .read {
  margin: 0;
  padding: 20px 30px 20px 30px;
  background: #00b0ae url("../img/seed_pod/bg_tenga.webp") no-repeat right 10px bottom 10px;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.8;
}
.page-seed_pod .seedPodArea .first {
  min-height: 400px;
  text-align: center;
  background: url("../img/seed_pod/bg_hand.webp") no-repeat center top;
}
.page-seed_pod .seedPodArea .first p {
  display: inline-block;
  margin: 25px 0 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.8rem;
}
.page-seed_pod .seedPodArea .title {
  margin: 0 0 80px;
  text-align: center;
}
.page-seed_pod .seedPodArea .title p {
  margin: 0;
  line-height: 1.1;
}
.page-seed_pod .seedPodArea .title p:nth-child(1) {
  margin-bottom: 10px;
  color: #00b0ae;
  font-size: 2.6em;
  letter-spacing: 2px;
}
.page-seed_pod .seedPodArea .title p:nth-child(2) {
  color: #999;
}
.page-seed_pod .seedPodArea .title p:nth-child(2) strong {
  font-size: 5.2rem;
}
.page-seed_pod .seedPodArea .title p:nth-child(2) span {
  display: inline-block;
  width: 276px;
  padding: 2px 0 0;
  border-top: #999 1px solid;
  border-bottom: #999 1px solid;
  font-size: 1.5rem;
}
.page-seed_pod .seedPodArea .strong {
  color: #00b1ad;
  font-size: 2.6rem;
  text-decoration: underline;
  text-align: center;
}
.page-seed_pod .seedPodArea .check {
  max-width: 900px;
  min-height: 145px;
  margin: 0 auto;
  padding: 28px 35px 28px 170px;
  border-radius: 15px;
  background: #fcf8f8 url("../img/seed_pod/icon_check.webp") no-repeat 42px center;
  font-size: 1.9rem;
  font-weight: bold;
}
.page-seed_pod .seedPodArea .section_01 .columnBox {
  max-width: 820px;
  margin: 0 auto;
}
.page-seed_pod .seedPodArea .section_04 {
  margin: 0 0 55px;
}
.page-seed_pod .seedPodArea .section_04 h3 {
  background: none;
  text-align: center;
  color: #00b1ad;
  font-size: 3.2rem;
}
.page-seed_pod .seedPodArea .section_04 picture {
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-seed_pod .seedPodArea .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 10px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-seed_pod .seedPodArea .product .text {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .page-seed_pod .seedPodArea .product .text dt {
    font-size: 5.4vw;
  }
  .page-seed_pod .seedPodArea .product .text dd {
    font-size: 4.8vw;
  }
  .page-seed_pod .seedPodArea .product .text dd strong {
    font-size: 8vw;
  }
  .page-seed_pod .seedPodArea .product .text p {
    font-size: 3.8vw;
  }
  .page-seed_pod .seedPodArea .read {
    padding: 15px 20px 15vw;
    background-size: 50% auto;
    font-size: 3.6vw;
  }
  .page-seed_pod .seedPodArea .first p {
    font-size: 3.6vw;
  }
  .page-seed_pod .seedPodArea .title p:nth-child(1) {
    font-size: 5.2vw;
    letter-spacing: 0;
  }
  .page-seed_pod .seedPodArea .title p:nth-child(2) strong {
    font-size: 10.4vw;
  }
  .page-seed_pod .seedPodArea .title p:nth-child(2) span {
    width: 80%;
    font-size: 3vw;
  }
  .page-seed_pod .seedPodArea .strong {
    font-size: 5.2vw;
  }
  .page-seed_pod .seedPodArea .check {
    padding: 10px 15px;
    font-size: 3.8vw;
    background-image: none;
  }
  .page-seed_pod .seedPodArea .section_04 h3 {
    font-size: 6.4vw;
  }
}

.page-faq {
  /*+++++++++++++++++++++++++++++++++++++++++++
    index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-faq header {
  background-image: url(../img/clinic/kv_clinic.webp);
}
.page-faq .faqList:nth-of-type(1) {
  border-top: #eee 1px solid;
}
.page-faq .faqList > div {
  counter-increment: hoge;
  border-bottom: #eee 1px solid;
}
.page-faq .faqList > div dt.on {
  background: #fcf9f6;
}
.page-faq .faqList > div dt.on .dt::after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.page-faq .faqList > div dd {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.page-faq .faqList > div .dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 26px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding: 12px;
  cursor: pointer;
}
.page-faq .faqList > div .dt .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.6rem;
  font-weight: bold;
}
.page-faq .faqList > div .dt .icon::after {
  content: "-" counter(hoge);
  display: inline-block;
  margin: 0 0 0 6px;
  color: #5e0038;
}
.page-faq .faqList > div .dt .icon span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #5e0038;
  font-size: 2.4rem;
}
.page-faq .faqList > div .dt::after {
  content: "+";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 0 0 auto;
  color: #5e0038;
}
.page-faq .faqList > div .dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 14px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-top: #eee 1px solid;
  background: #fcf9f6;
}
.page-faq .faqList > div .dd .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 44px;
  font-size: 1.6rem;
  font-weight: bold;
}
.page-faq .faqList > div .dd .icon span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #e68027;
  font-size: 2.4rem;
}

.faq-video iframe {
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 16/9;
}

.page-facility {
  /* LESS Document */
  /*+++++++++++++++++++++++++++++++++++++++++++
  	index
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
  	modal
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-facility header {
  background-image: url("../img/facility/kv_facility.webp");
}
.page-facility .mapArea {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 40px auto 10px;
  overflow-x: auto;
}
.page-facility .mapArea .mapInner {
  width: 1080px;
  position: relative;
}
.page-facility .mapArea .mapInner > img {
  max-width: none;
}
.page-facility .mapArea .mapInner .pin {
  position: absolute;
}
.page-facility .mapArea .mapInner .pin.pin1 {
  width: 182px;
  height: 178px;
  top: 88px;
  left: 282px;
}
.page-facility .mapArea .mapInner .pin.pin1 img {
  top: -10px;
}
.page-facility .mapArea .mapInner .pin.pin2 {
  width: 108px;
  height: 94px;
  top: 262px;
  left: 360px;
}
.page-facility .mapArea .mapInner .pin.pin2 img {
  top: -48px;
}
.page-facility .mapArea .mapInner .pin.pin3 {
  width: 74px;
  height: 112px;
  top: 640px;
  left: 340px;
}
.page-facility .mapArea .mapInner .pin.pin3 img {
  top: -35px;
}
.page-facility .mapArea .mapInner .pin.pin4 {
  width: 74px;
  height: 112px;
  top: 640px;
  left: 416px;
}
.page-facility .mapArea .mapInner .pin.pin4 img {
  top: -35px;
}
.page-facility .mapArea .mapInner .pin.pin5 {
  width: 150px;
  height: 244px;
  top: 580px;
  left: 928px;
}
.page-facility .mapArea .mapInner .pin.pin5 img {
  top: 30px;
}
.page-facility .mapArea .mapInner .pin.pin6 {
  width: 94px;
  height: 72px;
  top: 496px;
  left: 490px;
}
.page-facility .mapArea .mapInner .pin.pin6 img {
  top: -6px;
}
.page-facility .mapArea .mapInner .pin.pin7 {
  width: 78px;
  height: 88px;
  top: 410px;
  left: 281px;
}
.page-facility .mapArea .mapInner .pin.pin7 img {
  top: -50px;
}
.page-facility .mapArea .mapInner .pin.pin8 {
  width: 170px;
  height: 100px;
  top: 614px;
  left: 168px;
}
.page-facility .mapArea .mapInner .pin.pin8 img {
  top: 32px;
}
.page-facility .mapArea .mapInner .pin.pin9 {
  width: 136px;
  height: 64px;
  top: 554px;
  left: 240px;
}
.page-facility .mapArea .mapInner .pin.pin9 img {
  top: -30px;
}
.page-facility .mapArea .mapInner .pin.pin10 {
  width: 208px;
  height: 266px;
  top: 90px;
  left: 866px;
}
.page-facility .mapArea .mapInner .pin.pin10 img {
  top: 30px;
}
.page-facility .mapArea .mapInner .pin.pin11 {
  width: 184px;
  height: 104px;
  top: 195px;
  left: 682px;
}
.page-facility .mapArea .mapInner .pin.pin11 img {
  top: -30px;
}
.page-facility .mapArea .mapInner .pin:hover img {
  opacity: 1;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}
.page-facility .mapArea .mapInner .pin img {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page-facility .mapArea .mapInner {
    width: 540px;
    height: 414px;
    -webkit-transform: scale(50%);
            transform: scale(50%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.page-facility #article2 .columnBox a {
  text-decoration: none;
  font-weight: bold;
}
.page-facility #article2 .columnBox a img {
  width: 100%;
  height: 172px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-facility #article2 .columnBox a img {
    height: 30vw;
  }
}
.page-facility .mfp-content {
  max-width: 850px;
  padding: 40px;
  background: #fff;
}
.page-facility .mfp-content .btn_2 {
  max-width: 304px;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-facility .mfp-content .btn_2 i {
  margin-right: -30px;
}
@media screen and (max-width: 767px) {
  .page-facility .mfp-content {
    padding: 40px 20px;
  }
}
.page-facility .mfp-close {
  font-size: 32px;
}

.archive-custom-column header,
.single-custom-column header {
  background-image: url(../img/facility/kv_facility.webp);
}

.single-custom-column .cmsArea {
  padding: 0;
}

.page-culture {
  /*+++++++++++++++++++++++++++++++++++++++++++
    index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-culture header {
  background-image: url("../img/facility/kv_facility.webp");
}
.page-culture section[id] {
  padding-top: 80px;
  margin-top: -80px;
}
.page-culture .cultureArea #section1 .box .columnBox {
  max-width: 648px;
  margin: 0 auto;
}

.page-access {
  /*+++++++++++++++++++++++++++++++++++++++++++
  	access
  +++++++++++++++++++++++++++++++++++++++++++ */
}
@media screen and (max-width: 767px) {
  .page-access .acc_1 {
    width: 60%;
    margin: 0 auto;
  }
}
.page-access .accessTable {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 10px;
  border: none;
  border-bottom: #313131 1px dotted;
}
.page-access .accessTable .trBorder {
  border-top: #313131 1px dotted;
}
.page-access .accessTable th {
  width: 152px;
  padding: 10px 40px;
  background: none;
  border: none;
  color: #000;
  font-size: 2.4rem;
  vertical-align: top;
  white-space: nowrap;
}
.page-access .accessTable td {
  padding: 3px 10px;
  border: none;
  font-size: 1.6rem;
  line-height: 1.2;
}
.page-access .accessTable td:nth-last-of-type(2) {
  width: 48px;
  font-size: 2.4rem;
}
.page-access .accessTable td:nth-last-of-type(1) {
  width: 100px;
  font-size: 1.8rem;
}
.page-access .accessTable td:nth-last-of-type(1) strong {
  font-size: 2.4rem;
  font-weight: 500;
}
.page-access .accessTable + p {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-access .accessTable th {
    width: auto;
    padding: 10px 10px;
    font-size: 4.8vw;
  }
  .page-access .accessTable td {
    padding: 3px 5px;
    font-size: 3.2vw;
  }
  .page-access .accessTable td:nth-last-of-type(2) {
    width: 24px;
  }
  .page-access .accessTable td:nth-last-of-type(1) {
    width: auto;
    font-size: 3.6vw;
    white-space: nowrap;
  }
  .page-access .accessTable td:nth-last-of-type(1) strong {
    font-size: 4.8vw;
  }
}
.page-access #article1,
.page-access #article2,
.page-access #article4 {
  margin-top: -80px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .page-access #article1,
  .page-access #article2,
  .page-access #article4 {
    margin-top: 0;
    padding-top: 60px;
  }
}

.page-infertility,
.page-formen {
  /*+++++++++++++++++++++++++++++++++++++++++++
    infertilityNav
  +++++++++++++++++++++++++++++++++++++++++++ */
  /*+++++++++++++++++++++++++++++++++++++++++++
    index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-infertility header,
.page-formen header {
  background-image: url("../img/infertility/kv_infertility.webp");
}
.page-infertility .infertilityNav,
.page-formen .infertilityNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 58px;
}
.page-infertility .infertilityNav a,
.page-formen .infertilityNav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 427px;
  background: #fdf4eb;
  text-decoration: none;
  -webkit-box-shadow: 3px 3px 0 rgba(93, 0, 55, 0.1);
          box-shadow: 3px 3px 0 rgba(93, 0, 55, 0.1);
}
.page-infertility .infertilityNav a.current, .page-infertility .infertilityNav a:hover,
.page-formen .infertilityNav a.current,
.page-formen .infertilityNav a:hover {
  -webkit-box-shadow: 1px 1px 2px rgba(93, 0, 55, 0.1);
          box-shadow: 1px 1px 2px rgba(93, 0, 55, 0.1);
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
.page-infertility .infertilityNav a.current img, .page-infertility .infertilityNav a:hover img,
.page-formen .infertilityNav a.current img,
.page-formen .infertilityNav a:hover img {
  opacity: 1;
}
.page-infertility .infertilityNav a.current,
.page-formen .infertilityNav a.current {
  pointer-events: none;
}
.page-infertility .infertilityNav a img,
.page-formen .infertilityNav a img {
  width: 86px;
  height: 86px;
}
.page-infertility .infertilityNav a strong,
.page-formen .infertilityNav a strong {
  font-size: 2.1rem;
}
.page-infertility .infertilityNav a i,
.page-formen .infertilityNav a i {
  margin: 0 15px 0 auto;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .page-infertility .infertilityNav,
  .page-formen .infertilityNav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-infertility .infertilityNav a,
  .page-formen .infertilityNav a {
    width: 100%;
    gap: 15px;
  }
  .page-infertility .infertilityNav a strong,
  .page-formen .infertilityNav a strong {
    font-size: 4.2vw;
  }
  .page-infertility .infertilityNav a i,
  .page-formen .infertilityNav a i {
    font-size: 5.6vw;
  }
}
.page-infertility .youtube,
.page-formen .youtube {
  margin: 50px auto;
  width: 560px;
  height: 315px;
}
@media screen and (max-width: 767px) {
  .page-infertility .youtube,
  .page-formen .youtube {
    width: 100%;
    height: auto;
  }
  .page-infertility .youtube iframe,
  .page-formen .youtube iframe {
    width: 100%;
    height: 50vw;
  }
}
.page-infertility .pc-ml20,
.page-formen .pc-ml20 {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .page-infertility .pc-ml20,
  .page-formen .pc-ml20 {
    margin-left: 0;
  }
}
.page-infertility .reset-mb,
.page-formen .reset-mb {
  margin-bottom: 0;
}
.page-infertility .ml20,
.page-formen .ml20 {
  margin-left: 20px;
}
.page-infertility .reset-gap,
.page-formen .reset-gap {
  gap: 0;
}
.page-infertility .underline,
.page-formen .underline {
  text-decoration: underline;
  text-decoration-color: #5d0037;
}
.page-infertility .wavy-underline,
.page-formen .wavy-underline {
  -webkit-text-decoration: underline wavy;
          text-decoration: underline wavy;
  text-decoration-color: #5d0037;
}

.lite-youtube-fallback {
  aspect-ratio: 16/9; /* matches YouTube player */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  padding: 1em;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* right-facing triangle "Play" icon */
.lite-youtube-fallback::before {
  display: block;
  content: "";
  border: solid transparent;
  border-width: 1.8em 0 1.8em 3em;
  border-left-color: red;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lite-youtube-fallback:hover::before {
  border-left-color: #fff;
}

.lite-youtube-fallback:focus {
  outline: 2px solid red;
}

/* ===============================================
  archive
=============================================== */
.archive-infertility-column header,
.single-infertility-column header,
.archive-custom-blog header,
.single-custom-blog header {
  background-image: url("../img/infertility-column/kv_infertility.webp");
}
.archive-infertility-column .profileArea,
.single-infertility-column .profileArea,
.archive-custom-blog .profileArea,
.single-custom-blog .profileArea {
  padding: 38px 30px;
  border-radius: 20px;
  background: #fff5eb;
}
.archive-infertility-column .profileArea h2,
.single-infertility-column .profileArea h2,
.archive-custom-blog .profileArea h2,
.single-custom-blog .profileArea h2 {
  font-size: 3.6rem;
  font-weight: 500;
}
.archive-infertility-column .profileArea h3,
.single-infertility-column .profileArea h3,
.archive-custom-blog .profileArea h3,
.single-custom-blog .profileArea h3 {
  padding: 0;
  background: none;
  font-size: 2.1rem;
}
.archive-infertility-column .profileArea hr,
.single-infertility-column .profileArea hr,
.archive-custom-blog .profileArea hr,
.single-custom-blog .profileArea hr {
  border-color: #5e0038;
  border-width: 2px;
}
.archive-infertility-column .profileArea .dlList_01,
.single-infertility-column .profileArea .dlList_01,
.archive-custom-blog .profileArea .dlList_01,
.single-custom-blog .profileArea .dlList_01 {
  margin: 0 0 10px;
}
.archive-infertility-column .profileArea .dlList_01 .dl,
.single-infertility-column .profileArea .dlList_01 .dl,
.archive-custom-blog .profileArea .dlList_01 .dl,
.single-custom-blog .profileArea .dlList_01 .dl {
  gap: 10px;
  padding: 3px 0;
}
.archive-infertility-column .profileArea .dlList_01 .dl dt,
.single-infertility-column .profileArea .dlList_01 .dl dt,
.archive-custom-blog .profileArea .dlList_01 .dl dt,
.single-custom-blog .profileArea .dlList_01 .dl dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .archive-infertility-column .profileArea,
  .single-infertility-column .profileArea,
  .archive-custom-blog .profileArea,
  .single-custom-blog .profileArea {
    padding: 15px 10px;
  }
  .archive-infertility-column .profileArea h2,
  .single-infertility-column .profileArea h2,
  .archive-custom-blog .profileArea h2,
  .single-custom-blog .profileArea h2 {
    font-size: 7.2vw;
  }
}
.archive-infertility-column .data,
.single-infertility-column .data,
.archive-custom-blog .data,
.single-custom-blog .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 14px;
}
.archive-infertility-column .data .category,
.single-infertility-column .data .category,
.archive-custom-blog .data .category,
.single-custom-blog .data .category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 80px;
  padding: 2px 4px;
  line-height: 1.2;
  background: #5e0038;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 3px;
}
.archive-infertility-column .data time,
.single-infertility-column .data time,
.archive-custom-blog .data time,
.single-custom-blog .data time {
  color: #919191;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .archive-infertility-column .data .category,
  .single-infertility-column .data .category,
  .archive-custom-blog .data .category,
  .single-custom-blog .data .category {
    min-width: 0;
    font-size: 2.8vw;
  }
  .archive-infertility-column .data time,
  .single-infertility-column .data time,
  .archive-custom-blog .data time,
  .single-custom-blog .data time {
    font-size: 3.2vw;
  }
}
.archive-infertility-column .infertility-columnArea .columnBox,
.single-infertility-column .infertility-columnArea .columnBox,
.archive-custom-blog .infertility-columnArea .columnBox,
.single-custom-blog .infertility-columnArea .columnBox {
  margin: 0 0 40px;
}
.archive-infertility-column .infertility-columnArea .columnItem,
.single-infertility-column .infertility-columnArea .columnItem,
.archive-custom-blog .infertility-columnArea .columnItem,
.single-custom-blog .infertility-columnArea .columnItem {
  border-radius: 14px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  overflow: hidden;
  border: transparent 2px solid;
}
.archive-infertility-column .infertility-columnArea .columnItem:hover,
.single-infertility-column .infertility-columnArea .columnItem:hover,
.archive-custom-blog .infertility-columnArea .columnItem:hover,
.single-custom-blog .infertility-columnArea .columnItem:hover {
  border-color: #5e0038;
}
.archive-infertility-column .infertility-columnArea .columnItem .thumb,
.single-infertility-column .infertility-columnArea .columnItem .thumb,
.archive-custom-blog .infertility-columnArea .columnItem .thumb,
.single-custom-blog .infertility-columnArea .columnItem .thumb {
  width: 340px;
  height: 223px;
}
.archive-infertility-column .infertility-columnArea .columnItem .thumb img,
.single-infertility-column .infertility-columnArea .columnItem .thumb img,
.archive-custom-blog .infertility-columnArea .columnItem .thumb img,
.single-custom-blog .infertility-columnArea .columnItem .thumb img {
  width: 340px;
  height: 223px;
  -o-object-fit: contain;
     object-fit: contain;
}
.archive-infertility-column .infertility-columnArea .columnItem .text,
.single-infertility-column .infertility-columnArea .columnItem .text,
.archive-custom-blog .infertility-columnArea .columnItem .text,
.single-custom-blog .infertility-columnArea .columnItem .text {
  padding: 10px 15px 20px;
}
.archive-infertility-column .infertility-columnArea .columnItem .text p,
.single-infertility-column .infertility-columnArea .columnItem .text p,
.archive-custom-blog .infertility-columnArea .columnItem .text p,
.single-custom-blog .infertility-columnArea .columnItem .text p {
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .archive-infertility-column .infertility-columnArea .columnItem .thumb,
  .single-infertility-column .infertility-columnArea .columnItem .thumb,
  .archive-custom-blog .infertility-columnArea .columnItem .thumb,
  .single-custom-blog .infertility-columnArea .columnItem .thumb {
    width: 100%;
    height: 25vw;
  }
  .archive-infertility-column .infertility-columnArea .columnItem .thumb img,
  .single-infertility-column .infertility-columnArea .columnItem .thumb img,
  .archive-custom-blog .infertility-columnArea .columnItem .thumb img,
  .single-custom-blog .infertility-columnArea .columnItem .thumb img {
    width: 100%;
    height: 25vw;
  }
  .archive-infertility-column .infertility-columnArea .columnItem .text,
  .single-infertility-column .infertility-columnArea .columnItem .text,
  .archive-custom-blog .infertility-columnArea .columnItem .text,
  .single-custom-blog .infertility-columnArea .columnItem .text {
    padding: 10px 7px;
  }
}
.archive-infertility-column .eyeCatch,
.single-infertility-column .eyeCatch,
.archive-custom-blog .eyeCatch,
.single-custom-blog .eyeCatch {
  margin: 0 0 20px;
  text-align: center;
}
.archive-infertility-column .author,
.single-infertility-column .author,
.archive-custom-blog .author,
.single-custom-blog .author {
  margin-top: 100px;
  padding: 35px 20px 30px;
  background: #fff5eb;
  position: relative;
}
.archive-infertility-column .author h2,
.single-infertility-column .author h2,
.archive-custom-blog .author h2,
.single-custom-blog .author h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 194px;
  height: 34px;
  margin: 0;
  background: #5e0038;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  position: absolute;
  top: -17px;
  left: 0;
}
.archive-infertility-column .author h3,
.single-infertility-column .author h3,
.archive-custom-blog .author h3,
.single-custom-blog .author h3 {
  margin: 0 0 15px;
  padding: 0;
  background: none;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .archive-infertility-column .author,
  .single-infertility-column .author,
  .archive-custom-blog .author,
  .single-custom-blog .author {
    margin-left: 26px;
    margin-right: 26px;
    padding: 30px 15px 20px;
  }
  .archive-infertility-column .author h2,
  .single-infertility-column .author h2,
  .archive-custom-blog .author h2,
  .single-custom-blog .author h2 {
    width: auto;
    height: auto;
    padding: 5px 10px;
    font-size: 3.4vw;
  }
  .archive-infertility-column .author h3,
  .single-infertility-column .author h3,
  .archive-custom-blog .author h3,
  .single-custom-blog .author h3 {
    font-size: 4.2vw;
  }
}

.single-infertility-column article {
  padding-bottom: 0;
}

.archive-custom-report,
.single-custom-report {
  /* LESS Document */
}
.archive-custom-report header,
.single-custom-report header {
  background-image: url("../img/report/kv_report.webp");
}
@media screen and (max-width: 767px) {
  .archive-custom-report header,
  .single-custom-report header {
    background-position: right 20% center;
  }
}
.archive-custom-report .data,
.single-custom-report .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 14px;
}
.archive-custom-report .data .category,
.single-custom-report .data .category {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 80px;
  padding: 2px 4px;
  line-height: 1.2;
  background: #5e0038;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 3px;
}
.archive-custom-report .data time,
.single-custom-report .data time {
  color: #919191;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .archive-custom-report .data .category,
  .single-custom-report .data .category {
    min-width: 0;
    font-size: 2.8vw;
  }
  .archive-custom-report .data time,
  .single-custom-report .data time {
    font-size: 3.2vw;
  }
}
.archive-custom-report .reportArea,
.single-custom-report .reportArea {
  padding: 40px 0;
}
.archive-custom-report .reportArea h2,
.single-custom-report .reportArea h2 {
  margin-bottom: 30px;
}
.archive-custom-report .reportArea .columnBox,
.single-custom-report .reportArea .columnBox {
  margin: 40px 0 50px;
  gap: 40px 0;
}
.archive-custom-report .reportArea .columnItem,
.single-custom-report .reportArea .columnItem {
  max-width: 340px;
  border-radius: 14px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  overflow: hidden;
  color: #000;
}
.archive-custom-report .reportArea .columnItem:hover,
.single-custom-report .reportArea .columnItem:hover {
  opacity: 0.7;
}
.archive-custom-report .reportArea .columnItem .thumb,
.single-custom-report .reportArea .columnItem .thumb {
  width: 340px;
  height: 223px;
}
.archive-custom-report .reportArea .columnItem .thumb img,
.single-custom-report .reportArea .columnItem .thumb img {
  width: 340px;
  height: 223px;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-custom-report .reportArea .columnItem .text,
.single-custom-report .reportArea .columnItem .text {
  padding: 10px 15px 20px;
}
.archive-custom-report .reportArea .columnItem .text p,
.single-custom-report .reportArea .columnItem .text p {
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .archive-custom-report .reportArea .columnItem .thumb,
  .single-custom-report .reportArea .columnItem .thumb {
    width: 100%;
    height: 25vw;
  }
  .archive-custom-report .reportArea .columnItem .thumb img,
  .single-custom-report .reportArea .columnItem .thumb img {
    width: 100%;
    height: 25vw;
  }
  .archive-custom-report .reportArea .columnItem .text,
  .single-custom-report .reportArea .columnItem .text {
    padding: 10px 7px;
  }
}
.archive-custom-report .cmsArea h2,
.single-custom-report .cmsArea h2 {
  color: #000;
}
.archive-custom-report .summary,
.single-custom-report .summary {
  margin: 0 0 10px;
  padding: 10px;
  background: #fff5eb;
  position: relative;
}
.archive-custom-report .summary h3,
.single-custom-report .summary h3 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0;
  padding: 8px 28px;
  background: #5e0038;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0;
  position: absolute;
  top: -25px;
  left: 0;
}
.archive-custom-report .summary p,
.single-custom-report .summary p {
  margin-bottom: 0;
}
.archive-custom-report .summary .dlList_01,
.single-custom-report .summary .dlList_01 {
  padding: 20px 0 0;
}
.archive-custom-report .summary .dlList_01 .dl,
.single-custom-report .summary .dlList_01 .dl {
  padding: 6px 0;
  border-bottom: #efddcd 1px solid;
}
.archive-custom-report .summary .dlList_01 .dl dt,
.archive-custom-report .summary .dlList_01 .dl p:first-of-type,
.single-custom-report .summary .dlList_01 .dl dt,
.single-custom-report .summary .dlList_01 .dl p:first-of-type {
  width: 82px;
  font-weight: bold;
  padding: 0 0 0 5px;
}
@media screen and (max-width: 767px) {
  .archive-custom-report .summary .dlList_01 .dl dt,
  .single-custom-report .summary .dlList_01 .dl dt {
    width: auto;
  }
}

.archive-custom-blog header,
.single-custom-blog header {
  background-image: url("../img/blog/kv_blog.webp");
}
.archive-custom-blog .blogArea,
.single-custom-blog .blogArea {
  padding-top: 40px;
}

.page-treatment header {
  background-image: url("../img/infertility/kv_infertility.webp");
}
.page-treatment .flowArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
.page-treatment .flowArea:nth-last-of-type(1) h3::after {
  content: none;
}
.page-treatment .flowArea .flowContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 134px;
  margin: 0 0 30px;
  padding: 0 0 30px;
}
.page-treatment .flowArea h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  padding: 0;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  background: #5e0038;
  font-size: 2rem;
  position: relative;
}
.page-treatment .flowArea h3 .num {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4.4rem;
}
.page-treatment .flowArea h3::after {
  content: "\f142";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #5e0038;
  font-size: 2.8rem;
  position: absolute;
  bottom: -38px;
  left: 48px;
}
.page-treatment .flowArea h5 {
  font-size: 1.9rem;
  color: #5e0038;
}
.page-treatment .flowArea hr {
  border-top: #ddd 2px dotted;
}
.page-treatment .flowArea .imageStep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  gap: 12px;
  margin: 0 0 30px;
}
.page-treatment .flowArea .imageStep > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-treatment .flowArea {
    gap: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-treatment .flowArea .flowContents {
    width: 100%;
    min-height: 0;
  }
  .page-treatment .flowArea h5 {
    font-size: 3.8vw;
  }
  .page-treatment .flowArea .imageStep {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-treatment .flowArea .imageStep > * {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(33% - 12px);
    font-size: 3vw;
  }
}

.page-download {
  /* LESS Document */
  /*+++++++++++++++++++++++++++++++++++++++++++
  	index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-download header {
  background-image: url("../img/infertility/kv_infertility.webp");
}
.page-download .ankerNav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: none;
}
.page-download .ankerNav a {
  max-width: none;
  padding: 0 20px;
}
.page-download article {
  padding-bottom: 80px;
}
.page-download article .btn_2 {
  margin: 0 0 10px;
  padding: 5px 30px;
}
.page-download article .box .box_heaed {
  max-width: none;
  color: #d92c15;
}
.page-download .text-border {
  text-decoration: underline;
}

.page-seminar {
  /* LESS Document */
}
.page-seminar header {
  background-image: url("../img/seminar/kv_seminar2.webp");
}
@media screen and (max-width: 767px) {
  .page-seminar header {
    background-position: right 20% center;
  }
}
.page-seminar main {
  padding-bottom: 0;
}
.page-seminar .seminarAboutArea h2 {
  margin-bottom: 25px;
  line-height: 1.5;
}
.page-seminar .seminarAboutArea h2::after {
  content: none;
}
.page-seminar .seminarAboutArea .seminarGuide {
  max-width: 800px;
  margin: 0 auto 58px;
  padding: 15px;
  border-radius: 10px;
  background: #fff5eb;
}
.page-seminar .seminarAboutArea .seminarGuide h3 {
  padding: 6px;
  background: #a38b77;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}
.page-seminar .seminarAboutArea .seminarGuide .dlList_01 {
  border-top: #efddcd 1px solid;
}
.page-seminar .seminarAboutArea .seminarGuide .dlList_01 .dl {
  gap: 18px;
  padding: 4px;
  border-bottom: #efddcd 1px solid;
}
.page-seminar .seminarAboutArea .seminarGuide .dlList_01 .dl dt {
  width: 115px;
  padding: 0 0 0 25px;
  font-weight: bold;
}
.page-seminar .seminarAboutArea .pamphletArea {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 0 0 30px;
  background: rgba(236, 109, 136, 0.1);
  border: #ec6d88 5px solid;
  border-radius: 10px;
  overflow: hidden;
}
.page-seminar .seminarAboutArea .pamphletArea strong {
  font-size: 2.4rem;
  color: #d90639;
}
.page-seminar .seminarAboutArea .pamphletArea p {
  max-width: 454px;
}
.page-seminar .seminarAboutArea .pamphletArea img {
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -5px;
     object-position: 0 -5px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .page-seminar .seminarAboutArea h2 {
    margin-bottom: 15px;
    text-align: left;
    font-size: 5.4vw;
  }
  .page-seminar .seminarAboutArea .seminarGuide h3 {
    font-size: 6.4vw;
  }
  .page-seminar .seminarAboutArea .seminarGuide .dlList_01 .dl dt {
    width: auto;
    padding: 0;
  }
  .page-seminar .seminarAboutArea .pamphletArea {
    padding: 10px;
    border-width: 3px;
  }
  .page-seminar .seminarAboutArea .pamphletArea strong {
    font-size: 4.6vw;
  }
  .page-seminar .seminarAboutArea .pamphletArea p {
    max-width: none;
  }
  .page-seminar .seminarAboutArea .pamphletArea img {
    width: 50vw;
    height: 48vw;
  }
}
.page-seminar .prof {
  gap: 80px;
  padding: 0 0 25px;
  margin: 0 0 30px;
}
.page-seminar .prof .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-seminar .prof .name h3 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0;
  background: none;
  color: #000;
  font-size: 2.8rem;
}
.page-seminar .prof .name h3 .kana {
  color: #a38b77;
  font-size: 1.7rem;
}
.page-seminar .prof .name p {
  font-size: 2rem;
  font-weight: bold;
}
.page-seminar .prof .dlList_01 {
  margin: 0 0 10px;
}
.page-seminar .prof .dlList_01 .dl {
  gap: 10px;
  padding: 3px 0;
}
.page-seminar .prof .dlList_01 .dl dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-seminar .prof {
    padding-bottom: 0;
  }
  .page-seminar .prof .name h3 {
    font-size: 5.6vw;
  }
  .page-seminar .prof .name p {
    font-size: 4vw;
  }
  .page-seminar .prof .flexImg {
    display: none;
  }
}
.page-seminar .applicationArea {
  padding-bottom: 60px;
}
.page-seminar .applicationArea .columnBox {
  margin: 60px 0 50px;
}
.page-seminar .applicationArea .columnBox .columnItem {
  max-width: 520px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0 18px 22px;
}
.page-seminar .applicationArea .columnBox .columnItem:nth-of-type(2n) h3 {
  background: #c28957;
}
.page-seminar .applicationArea .columnBox .columnItem:nth-of-type(2n) .dlList_01 .dl dt::before {
  color: #c28957;
}
.page-seminar .applicationArea .columnBox .columnItem h3 {
  margin: 0 -18px 18px;
  padding: 28px 10px;
  background: #d25f91;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
}
.page-seminar .applicationArea .columnBox .columnItem .dlList_01 {
  margin: 0 0 20px;
}
.page-seminar .applicationArea .columnBox .columnItem .dlList_01 .dl {
  padding: 0;
  gap: 16px;
}
.page-seminar .applicationArea .columnBox .columnItem .dlList_01 .dl dt {
  width: 90px;
  font-weight: bold;
}
.page-seminar .applicationArea .columnBox .columnItem .dlList_01 .dl dt::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #d25f91;
  font-size: 1.4rem;
  vertical-align: 2px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .page-seminar .applicationArea .columnBox {
    margin: 30px 0 0;
  }
  .page-seminar .applicationArea .columnBox .columnItem {
    max-width: none;
  }
  .page-seminar .applicationArea .columnBox .columnItem h3 {
    font-size: 4.2vw;
    padding: 15px 10px;
  }
  .page-seminar .applicationArea .columnBox .columnItem .dlList_01 .dl dt {
    width: auto;
    margin-top: 10px;
  }
  .page-seminar .applicationArea .columnBox .columnItem .dlList_01 .dl dt::before {
    font-size: 2.9vw;
  }
  .page-seminar .applicationArea .columnBox .columnItem .dlList_01 .dl dd {
    line-height: 1.6;
  }
}
.page-seminar .strong {
  font-size: 2.1rem;
  color: #5e0139;
  background: -webkit-gradient(linear, left top, right top, from(#fff6e8), color-stop(#fbe3d7), to(#ddd0e2)) no-repeat bottom 0px left 0/100% 10px;
  background: linear-gradient(to right, #fff6e8, #fbe3d7, #ddd0e2) no-repeat bottom 0px left 0/100% 10px;
}
@media screen and (max-width: 767px) {
  .page-seminar .strong {
    font-size: 4.2vw;
    background-size: 100% 2vw;
  }
}
.page-seminar .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 14px;
}
.page-seminar .data .category {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 80px;
  padding: 2px 4px;
  line-height: 1.2;
  background: #5e0038;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 3px;
}
.page-seminar .data time {
  color: #919191;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .page-seminar .data .category {
    min-width: 0;
    font-size: 2.8vw;
  }
  .page-seminar .data time {
    font-size: 3.2vw;
  }
}
.page-seminar .reportArea {
  padding: 40px 0 70px;
  background: #f6f6f6;
}
.page-seminar .reportArea .columnBox {
  margin: 50px 0 50px;
}
.page-seminar .reportArea .columnItem {
  max-width: 340px;
  border-radius: 14px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  overflow: hidden;
  color: #000;
}
.page-seminar .reportArea .columnItem:hover {
  opacity: 0.7;
}
.page-seminar .reportArea .columnItem .thumb {
  width: 340px;
  height: 223px;
}
.page-seminar .reportArea .columnItem .thumb img {
  width: 340px;
  height: 223px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-seminar .reportArea .columnItem .text {
  padding: 10px 15px 20px;
}
.page-seminar .reportArea .columnItem .text p {
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-seminar .reportArea .columnItem .thumb {
    width: 100%;
    height: 25vw;
  }
  .page-seminar .reportArea .columnItem .thumb img {
    width: 100%;
    height: 25vw;
  }
  .page-seminar .reportArea .columnItem .text {
    padding: 10px 7px;
  }
}

.page-privacy {
  /*+++++++++++++++++++++++++++++++++++++++++++
    index
  +++++++++++++++++++++++++++++++++++++++++++ */
}
.page-privacy article {
  padding-bottom: 60px;
}
.page-privacy article h2 {
  margin-bottom: 30px;
}

.page-form header {
  background-image: url(../img/seminar/kv_seminar.webp);
}
.page-form .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-form .block .radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.page-form .strong,
.page-keika-form .strong {
  font-weight: 700;
}
.page-form article,
.page-keika-form article {
  padding: 50px 0 !important;
  margin: 0 !important;
}
.page-form article h4,
.page-keika-form article h4 {
  padding: 15px 0 0;
}
.page-form .prof,
.page-keika-form .prof {
  gap: 80px;
  padding: 0 0 25px;
  margin: 0 0 30px;
  border-bottom: #eee 1px solid;
}
.page-form .prof .name,
.page-keika-form .prof .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-form .prof .name h3,
.page-keika-form .prof .name h3 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0;
  background: none;
  color: #000;
  font-size: 2.8rem;
}
.page-form .prof .name h3 .kana,
.page-keika-form .prof .name h3 .kana {
  color: #a38b77;
  font-size: 1.7rem;
}
.page-form .prof .name p,
.page-keika-form .prof .name p {
  font-size: 2rem;
  font-weight: bold;
}
.page-form .prof .dlList_01,
.page-keika-form .prof .dlList_01 {
  margin: 0 0 10px;
}
.page-form .prof .dlList_01 .dl,
.page-keika-form .prof .dlList_01 .dl {
  gap: 10px;
  padding: 3px 0;
}
.page-form .prof .dlList_01 .dl dt,
.page-keika-form .prof .dlList_01 .dl dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-form .prof .name h3,
  .page-keika-form .prof .name h3 {
    font-size: 5.6vw;
  }
  .page-form .prof .name p,
  .page-keika-form .prof .name p {
    font-size: 4vw;
  }
  .page-form .prof .flexImg,
  .page-keika-form .prof .flexImg {
    display: none;
  }
}
.page-form .columnBox > .box,
.page-keika-form .columnBox > .box {
  padding: 30px 15px;
}
.page-form .columnBox > .box .box_heaed,
.page-keika-form .columnBox > .box .box_heaed {
  margin-bottom: 20px;
}
.page-form .box,
.page-keika-form .box {
  margin: 0 0 50px;
}
.page-form .box dl,
.page-keika-form .box dl {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}
.page-form .box dl .dl,
.page-keika-form .box dl .dl {
  gap: 20px;
  padding: 5px;
}
.page-form .box dl .dl dt,
.page-keika-form .box dl .dl dt {
  width: 5em;
  text-align: right;
  font-weight: bold;
}
.page-form .box dl .dl dd,
.page-keika-form .box dl .dl dd {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-form .box,
  .page-keika-form .box {
    margin-bottom: 30px;
  }
  .page-form .box dl,
  .page-keika-form .box dl {
    max-width: none;
  }
  .page-form .box dl .dl dt,
  .page-keika-form .box dl .dl dt {
    width: auto;
    text-align: left;
  }
}
.page-form form em,
.page-keika-form form em {
  display: inline-block;
  width: 50px;
  padding: 4px 0;
  line-height: 1;
  background: #f33;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.page-form form em.notReq,
.page-keika-form form em.notReq {
  background: #0183b5;
}
.page-form form .dlList_01,
.page-keika-form form .dlList_01 {
  margin: 0 0 30px;
}
.page-form form .dlList_01 div,
.page-keika-form form .dlList_01 div {
  padding: 15px 0;
  border-bottom: #a38b77 1px dotted;
}
.page-form form .dlList_01 div dt,
.page-keika-form form .dlList_01 div dt {
  width: 25%;
  padding: 3px 10px;
  text-align: left;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-form form .dlList_01 div dt,
  .page-keika-form form .dlList_01 div dt {
    width: 100%;
    text-align: left;
    padding: 0 0 2px;
  }
}
.page-form input,
.page-keika-form input {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.page-form input[type=text], .page-form input[type=tel], .page-form input[type=email], .page-form input[type=number],
.page-keika-form input[type=text],
.page-keika-form input[type=tel],
.page-keika-form input[type=email],
.page-keika-form input[type=number] {
  padding: 3px 10px;
  border: #5e0038 2px solid;
  background: #fbf5ec;
}
.page-form input[type=number],
.page-keika-form input[type=number] {
  -moz-appearance: textfield;
}
.page-form input[type=number]::-webkit-outer-spin-button, .page-form input[type=number]::-webkit-inner-spin-button,
.page-keika-form input[type=number]::-webkit-outer-spin-button,
.page-keika-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.page-form input[type=submit],
.page-keika-form input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}
.page-form input[type=button],
.page-keika-form input[type=button] {
  -webkit-appearance: none;
  cursor: pointer;
}
.page-form textarea,
.page-form select,
.page-keika-form textarea,
.page-keika-form select {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 3px 10px;
  border: #5e0038 2px solid;
  background: #fbf5ec;
}
.page-form label,
.page-keika-form label {
  display: inline-block;
  cursor: pointer;
}
.page-form button,
.page-keika-form button {
  -webkit-appearance: none;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.page-form ::-webkit-input-placeholder,
.page-form ::-moz-placeholder,
.page-keika-form ::-webkit-input-placeholder,
.page-keika-form ::-moz-placeholder {
  color: #ddd;
}
.page-form .inputL,
.page-keika-form .inputL {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .page-form .inputL,
  .page-keika-form .inputL {
    width: 100%;
  }
}
.page-form .inputM,
.page-keika-form .inputM {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .page-form .inputM,
  .page-keika-form .inputM {
    width: 80%;
  }
}
.page-form .inputS,
.page-keika-form .inputS {
  width: 100px;
}
.page-form .inputSS,
.page-keika-form .inputSS {
  width: 60px;
}
.page-form .help,
.page-keika-form .help {
  color: #666;
  font-size: 92.8%;
  vertical-align: middle;
}
.page-form .submit,
.page-keika-form .submit {
  text-align: center;
  margin: 40px 0 0;
}
.page-form .submit .btn,
.page-keika-form .submit .btn {
  margin-top: 10px;
  padding: 5px 30px;
}
.page-form .submit .btn[name=submitBack],
.page-keika-form .submit .btn[name=submitBack] {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  background: #666;
}
@media screen and (max-width: 767px) {
  .page-form .submit,
  .page-keika-form .submit {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

/* ===============================================
  cf7
=============================================== */
.custom-error {
  color: red;
  font-size: 0.875em;
  margin-top: 4px;
  display: block;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-weight: 700;
  font-size: 1.7rem;
}

.wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

#custom-errors .custom-error-list {
  margin-bottom: 1em;
}
#custom-errors .custom-error-list li {
  font-weight: 700;
  color: #ff0000;
  line-height: 1.4;
}
#custom-errors .custom-error-list li:nth-of-type(n + 2) {
  margin-top: 10px;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.checkbox-group:nth-of-type(n + 2) {
  margin-top: 20px;
}
.checkbox-group label {
  display: inline-block;
}
.checkbox-group label p {
  line-height: 1.2;
  margin: 5px 10px;
}

.checkbox-group-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#is_alive_box .wpcf7-radio {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
#is_alive_box [data-class=wpcf7cf_group] {
  border-bottom: none;
}

.is_alive_box_textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: none !important;
  padding: 0 !important;
}

.radio input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #666;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.radio input[type=checkbox]::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  display: none;
  background-color: #5e0038;
}
.radio input[type=checkbox]:checked {
  border-color: #5e0038;
}
.radio input[type=checkbox]:checked::after {
  display: block;
}

.wpcf7-list-item {
  margin-left: 0;
}

.page-keika-form .wpcf7-list-item:nth-of-type(n + 2) {
  margin-left: 10px;
}

@-webkit-keyframes onAutoFillStart {}

@keyframes onAutoFillStart {}
input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

.single-post article {
  padding-bottom: 0;
}

.single_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 5vw, 60px);
  gap: 10px;
}
.single_pagination .single_prev a,
.single_pagination .single_next a {
  font-size: 1.4rem;
  background-color: #000;
  color: #fff;
  position: relative;
  display: inline-block;
  border: 1px solid #000;
}
.single_pagination .single_prev a::after,
.single_pagination .single_next a::after {
  position: absolute;
  content: "";
  top: 42%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single_pagination .single_prev a {
  padding: 10px 15px 10px 30px;
}
.single_pagination .single_prev a::after {
  left: 15px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.single_pagination .single_prev a:hover::after {
  left: 10px;
}
.single_pagination .single_next a {
  padding: 10px 30px 10px 15px;
}
.single_pagination .single_next a::after {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.single_pagination .single_next a:hover::after {
  right: 10px;
}

.lists a {
  font-size: 1.4rem;
  padding: 10px 15px;
  color: #000;
  border: 1px solid #000;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lists a:hover {
  color: #fff;
  background: #000;
}

/* ===============================================
  404
=============================================== */
.not-found {
  padding-top: clamp(80px, 25vw, 240px);
  padding-bottom: clamp(80px, 15vw, 160px);
}
@media (width < 600px) {
  .not-found {
    margin: 100px 0;
  }
}
.not-found__wrapper {
  text-align: center;
}
.not-found__head {
  margin-bottom: 40px;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: #5e0038;
}
.not-found__lead {
  margin-bottom: 40px;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #999;
}
.not-found__text {
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: #a8a8a8;
}
.not-found__btn a {
  display: inline-block;
  padding: 20px 40px;
  color: #999;
  background: #eee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.not-found__btn a:hover {
  background: #ddd;
}