@charset "UTF-8";
/**
	* clamp関数の文字列を返す
	*
	* @param {Number} $size-at-min-width - 最小画面幅での要素のサイズ (px|rem|emなど)
	* @param {Number} $size-at-max-width - 最大画面幅での要素のサイズ (px|rem|emなど)
	* @param {Number} $min-width [optional] - 最小画面幅 (デフォルト: $min-width-default)
	* @param {Number} $max-width [optional] - 最大画面幅 (デフォルト: $max-width-default)
	* @return {String} CSS clamp関数を含む計算式
	*
	* @description
	* 画面幅に応じて値が滑らかに変化するレスポンシブな値を生成します。
	* 例えば、フォントサイズやマージン、パディングなどの値を画面幅に応じて
	* 自動的に調整することができます。
	*
	* @example
	*   // フォントサイズを16pxから24pxまで可変させる
	*   font-size: clamp-calc(16px, 24px);
	*
	*   // マージンを2remから4remまで可変させる（画面幅768px～1200px）
	*   margin: clamp-calc(2rem, 4rem, 768px, 1200px);
	*
	* @note
	* - 引数の単位は一貫している必要はありません（px, rem等が混在可能）
	* - 内部で全ての値をpxに変換して計算を行います
	* - 返り値は入力された$size-at-min-widthと同じ単位で返されます
	* - 負の値（マイナスマージンなど）にも対応しています
	*
	* @implementation
	* 1. 入力値を全てpxに変換
	* 2. 線形の傾きを計算
	* 3. y軸との交点を計算
	* 4. 必要に応じて最小値と最大値を入れ替え
	* 5. 元の単位に変換して最終的なclamp関数を構築
*/
/**
	* 与えられた値をピクセル(px)単位に変換する関数
	*
	* @param {Number} $value - 変換したい値（rem または px）
	* @return {Number} 変換後のピクセル値
	*
	* @example
	*   convert-to-px(1.5rem)  // 24px ($base-font-size が 16px の場合)
	*   convert-to-px(20px)    // 20px (そのまま返される)
	*   convert-to-px(2em)     // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - rem単位の場合: $base-font-sizeを基準にしてpxに変換
	* - px単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
 */
/**
	* ピクセル(px)単位の値をrem単位に変換する関数
	*
	* @param {Number} $px-value - 変換したい値（px または rem）
	* @return {Number} 変換後のrem値
	*
	* @example
	*   convert-to-rem(16px)   // 1rem ($base-font-size が 16px の場合)
	*   convert-to-rem(24px)   // 1.5rem ($base-font-size が 16px の場合)
	*   convert-to-rem(1.5rem) // 1.5rem (そのまま返される)
	*   convert-to-rem(2em)    // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - px単位の場合: $base-font-sizeを基準にしてremに変換
	* - rem単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @note
	* - レスポンシブデザインに適したrem単位への変換に使用
	* - $base-font-size はグローバルで定義されている必要がある
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
 */
/*
	* 補助関数：小数点以下の指定した桁数で四捨五入する関数
*/
/*
	* 補助関数：累乗を計算する関数
	* 引数：$number 底となる数
	*      $exponent 指数（正の整数のみ対応）
 */
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #57493E;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 100px;
}
@media (max-width: 1250px) {
  :target {
    scroll-margin-top: 70px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1250px;
  padding: 0 25px;
  margin: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 1250px) {
  .wrapper {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 5%;
  }
}

.btn {
  position: relative;
  display: inline-block;
  max-width: 250px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: left;
  background-color: #F5BC31;
  line-height: 1.5;
  border-radius: 48px;
  padding: 22px 24px 22px 32px;
}
@media (max-width: 768px) {
  .btn {
    max-width: 220px;
    font-size: 14px;
    padding: 15px 30px 15px 20px;
  }
}

.btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 14px;
  background: url(../images/btn_arrowWhite.svg) no-repeat center center/contain;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .btn:hover {
    background-color: #F29033;
  }
}

@media (min-width: 768px) {
  .btn:hover::after {
    right: 19px;
  }
}

.text_link {
  display: inline-block;
}

.text_link::after {
  content: "";
  display: block;
  width: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  border-bottom: 1px solid #000;
  margin: auto;
}

@media (min-width: 768px) {
  .text_link:hover::after {
    width: 100%;
  }
}

.fw_bold {
  font-weight: 700;
}

.section_title_wrapper {
  position: relative;
  display: block;
}

.section_title {
  text-align: center;
}

.section_title.contents_left {
  text-align: left;
}
@media (max-width: 768px) {
  .section_title.contents_left {
    text-align: center;
  }
}

.section_title_ja {
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 150%;
}
@media (max-width: 768px) {
  .section_title_ja {
    font-size: 20px;
    line-height: 140%;
    margin-top: 5px;
  }
}

.section_title_en {
  color: #48B9ED;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 120%;
  letter-spacing: 0.1em;
  margin-top: 17px;
}

.section_deco_en {
  position: absolute;
  color: #F7F7F7;
  font-size: clamp(75px, 60.627px + 4.492vw, 128px);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0;
}

.body.is_open {
  overflow: hidden;
}

.deco_img {
  position: absolute;
}

/* Header
------------------------------ */
.header {
  position: absolute;
  width: 100%;
  height: 114px;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 1250px) {
  .header {
    position: fixed;
    height: 100px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0;
  }
}

.header.header_fixed {
  position: fixed;
  height: 100px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
    padding: 0;
  }
}

.customize-support .header {
  top: 32px;
}

.header_fixed {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 768px) {
  .header_inner {
    height: inherit;
    padding: 0 60px 0 0;
  }
}

.header > .wrapper {
  padding: 0 10px;
}

.header_logo {
  position: relative;
  width: 100%;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .header_logo {
    margin-inline: 0;
    height: inherit;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
  }
}

.logo_fixed{
	display: none;
}
.header_fixed .logo_fixed{
  display: block;
}
.header_fixed .logo_vertical{
  display: none;
}
@media (max-width: 1250px) {
  .logo_vertical{
    display: none;
  }
  .logo_fixed{
    display: block;
  }
}
.header_logo a {
  position: relative;
  display: block;
  /* max-width: clamp(250px, 216.373px + 10.508vw, 374px); */
  max-width: 200px;
  width: 100%;
  /* color: #57493E;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0.08em; */
  border-radius: 0 0 16px 16px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.14);
          box-shadow: 0 0 14px rgba(0, 0, 0, 0.14);
  /* padding: 28px 31px; */
  padding: 24px 32px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1250px) {
  .header_logo a {
    max-width: 294px;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 10px 0;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .header_logo a {
    /* font-size: 18px;
    padding: 21px 0; */
    max-width: 180px;
    padding: 5px 0;
  }
}

@media (min-width: 768px) {
  .header_logo a:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
}

.header_logo a span {
  position: relative;
  display: block;
  font-size: clamp(12px, 10.915px + 0.339vw, 16px);
  line-height: 100%;
  padding-bottom: 10px;
}
@media (max-width: 1250px) {
  .header_logo a span {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .header_logo a span {
    font-size: 12px;
  }
}

.header_fixed .header_logo a {
  max-width: unset;
  padding: 6px 0 14px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 768px) {
  .header_fixed .header_logo a {
    /* padding: 21px 0; */
    max-width: 180px;
  }
}

.header_fixed .header_logo a span {
  display: inline-block;
  padding-bottom: 0;
}

@media (max-width: 1250px) {
  .header_nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 clamp(20px, 15.932px + 1.271vw, 35px);
}

.header_fixed .header_lists {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header_list_link {
  display: inline-block;
  position: relative;
  color: #57493E;
  font-size: clamp(12px, 10.915px + 0.339vw, 16px);
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none;
}

.header_contact .btn_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 210px;
  color: #fff;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 700;
  letter-spacing: 0.013em;
  padding: 21px 31px 21px 32px;
  background-color: #F29033;
  border-radius: 48px;
  gap: 0 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header_contact .btn_contact::before {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 23px;
  background: url(../images/icon_mailWhite.svg) no-repeat center center/contain;
}

.header_contact .btn_contact::after {
  display: none;
}

@media (min-width: 768px) {
  .header_contact .btn_contact:hover {
    background-color: #A5CD4F;
  }
}

.header_fixed .header_contact .btn_contact {
  display: inline-block;
  max-width: unset;
  color: #57493E;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

@media (min-width: 768px) {
  .header_fixed .header_contact .btn_contact:hover {
    color: #F29033;
  }
}

.header_fixed .header_contact .btn_contact::before {
  display: none;
}

@media (min-width: 768px) {
  .header_list_link:hover {
    color: #F29033;
  }
}

@media (min-width: 768px) {
  .header_list_contact .header_list_link:hover {
    color: #fff;
    background-color: #48B9ED;
  }
}

.header_list_link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .header_list_link:hover::after {
    width: 100%;
  }
}

/* header_list_modal */
.header_list_modal_wrap {
  position: relative;
}

.header_list_modal_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 15px;
}

.header_list_modal {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 250px;
  background-color: rgba(70, 70, 70, 0.8);
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
}

.header_list_modal_item a {
  position: relative;
  display: block;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
}

.header_list_modal_item + .header_list_modal_item a {
  border-top: 1px solid #fff;
}

@media (min-width: 768px) {
  .header_list_modal_wrap:hover > .header_list_modal {
    -webkit-transform: scaleY(1) translateX(-50%);
            transform: scaleY(1) translateX(-50%);
  }
}

@media (min-width: 768px) {
  .header_list_modal_item a:hover {
    color: #464646;
    background-color: #fff;
  }
}

/* //header_list_modal */
.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #F29033;
}
@media (max-width: 1250px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1250px) {
  .header_fixed .header_hamburger {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header_fixed .header_hamburger {
    height: 60px;
  }
}

.header_hamburger.is_open {
  background-color: #A5CD4F;
}

.header_hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header_hamburger span:nth-of-type(1) {
  top: -10px;
}

.header_hamburger span:nth-of-type(2) {
  top: 0;
}

.header_hamburger span:nth-of-type(3) {
  top: 10px;
}

.header_hamburger.is_open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open span:nth-of-type(3) {
  top: -4px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_drawer {
  padding: 100px 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .header_drawer {
    padding: 60px 0;
  }
}

.header_fixed .header_drawer {
  padding-top: 90px;
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 20px 5% 0;
  height: 100%;
  overflow-y: scroll;
  background-color: #FFFADB;
}

.header_drawer_list {
  border-bottom: 1px solid #57493E;
}

.header_drawer_list_link {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  color: #57493E;
  font-size: clamp(18px, 1.33vw, 20px);
  font-weight: 500;
  line-height: 1;
}

.header_drawer_list_menus {
  padding-bottom: 10px;
}

.header_drawer_list_menu a {
  display: inline-block;
  line-height: 1;
  color: #000;
  padding: 12px 10px 0;
}

.bg_yellow_grade {
  padding-top: 135px;
  background: rgb(255, 242, 148);
  background: linear-gradient(-200deg, rgb(255, 242, 148) 0%, rgb(255, 196, 86) 100%);
}
@media (max-width: 1250px) {
  .bg_yellow_grade {
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .bg_yellow_grade {
    margin-top: 60px;
    padding-top: 24px;
  }
}

/* top - common
------------------------------ */
.top_section_title {
  text-align: center;
}

.top_section_title_ja {
  color: #57493E;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  line-height: 150%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .top_section_title_ja {
    font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  }
}

/* top - top_mw
------------------------------ */
.top_mw_inner {
  position: relative;
  line-height: 0;
  z-index: 1;
}

.top_mw_inner > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0 20px;
}
@media (max-width: 768px) {
  .top_mw_inner > .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_mw_catch {
  position: relative;
  max-width: clamp(250px, 185.458px + 20.169vw, 488px);
  width: 100%;
  margin-right: 24px;
}
@media (max-width: 1250px) {
  .top_mw_catch {
    max-width: clamp(180px, 147.458px + 10.169vw, 300px);
  }
}
@media (max-width: 768px) {
  .top_mw_catch {
    position: absolute;
    max-width: 243px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.top_mw_contents {
  position: relative;
  max-width: 560px;
  width: 100%;
}
@media (max-width: 768px) {
  .top_mw_contents {
    max-width: unset;
    margin: 0 auto;
  }
}

.top_mw_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
}
@media (max-width: 768px) {
  .top_mw_items {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px 0;
  }
}

.top_mw_item {
  position: relative;
  font-size: clamp(20px, 17.831px + 0.678vw, 28px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  line-height: 160%;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1250px) {
  .top_mw_item {
    font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  }
}
@media (max-width: 768px) {
  .top_mw_item {
    font-size: 18px;
    padding: 4px 8px 6px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.top_mw_item.color_orange {
  color: #F29033;
}

.top_mw_item.color_blue {
  color: #48B9ED;
}

.top_mw_item.color_green {
  color: #A5CD4F;
}

.top_mw_title_ja {
  position: relative;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
@media (max-width: 1250px) {
  .top_mw_title_ja {
    font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  }
}
@media (max-width: 768px) {
  .top_mw_title_ja {
    font-size: clamp(14px, 13.458px + 0.169vw, 16px);
    text-align: center;
    letter-spacing: 0.06em;
    margin-top: 110px;
  }
}

/* top - top_greeting
------------------------------ */
.top_greeting {
  margin-top: -42px;
}
@media (max-width: 1250px) {
  .top_greeting {
    margin-top: -10px;
  }
}
@media (max-width: 768px) {
  .top_greeting {
    margin-top: 24px;
  }
}

.top_greeting_text_img {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}

/* top - top_office
------------------------------ */
.top_office {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .top_office {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

.top_office_inner > .wrapper {
  padding: 80px 25px;
  background-color: #fff;
  border-radius: 24px;
}
@media (max-width: 1250px) {
  .top_office_inner > .wrapper {
    width: 96.5%;
  }
}
@media (max-width: 768px) {
  .top_office_inner > .wrapper {
    width: 90%;
    padding: 40px 5% 30px;
  }
}

.top_office_title_ja {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .top_office_title_ja {
    margin-top: 24px;
  }
}

.top_office_title_img {
  position: relative;
  max-width: 30px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top_office_title_img {
    max-width: 24px;
  }
}

.top_office_caption {
  position: relative;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .top_office_caption {
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.04em;
    margin-top: 16px;
  }
}

.top_office_lists {
  display: grid;
  gap: clamp(20px, 10.237px + 3.051vw, 56px);
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  padding: 0 clamp(20px, 10.508px + 2.966vw, 55px);
}
@media (max-width: 768px) {
  .top_office_lists {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 0;
    gap: 30px 0;
  }
}

.top_office_list_img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.top_office_list_content {
  position: relative;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top_office_list_content {
    margin-top: 16px;
  }
}

.top_office_list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10px;
}
@media (max-width: 1250px) {
  .top_office_list_title {
    -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;
    gap: 10px 0;
  }
}
@media (max-width: 768px) {
  .top_office_list_title {
    gap: 16px 0;
  }
}

.top_office_list_title_ja {
  position: relative;
  font-size: clamp(18px, 16.373px + 0.508vw, 22px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.14em;
}
@media (max-width: 1250px) {
  .top_office_list_title_ja {
    letter-spacing: 0.09em;
  }
}
@media (max-width: 768px) {
  .top_office_list_title_ja {
    font-size: 20px;
  }
}

.top_office_list_title_ja .s_txt {
  font-size: clamp(12px, 10.915px + 0.339vw, 16px);
}
@media (max-width: 768px) {
  .top_office_list_title_ja .s_txt {
    font-size: 12px;
  }
}

.top_office_list_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  white-space: nowrap;
}

.top_office_list_tags p {
  position: relative;
  color: #fff;
  font-size: clamp(12px, 10.915px + 0.339vw, 16px);
  line-height: 180%;
  letter-spacing: 0.08em;
  padding: 2px clamp(6px, 4.373px + 0.508vw, 12px);
  border-radius: 6px;
}

.top_office_list_tag_yellow {
  background-color: #F5BC31;
}

.top_office_list_tag_green {
  background-color: #A5CD4F;
}

.top_office_list_address {
  position: relative;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.1em;
  padding-top: 12px;
  margin-top: 16px;
  border-top: 0.5px solid #57493E;
}
@media (max-width: 768px) {
  .top_office_list_address {
    font-size: 14px;
    margin-top: 8px;
    padding-top: 8px;
  }
}

.top_office_list_btn {
  display: inline-block;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top_office_list_btn {
    margin-top: 16px;
  }
}

.top_office_list_btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
  letter-spacing: 0.06em;
  line-height: 140%;
  padding-bottom: 4px;
}

.top_office_list_btn a::before {
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #F5BC31;
  background-image: url(../images/btn_arrowWhite.svg);
  background-repeat: no-repeat;
  background-position: center left 21px;
  background-size: 10px auto;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .top_office_list_btn a:hover::before {
    background-color: #F29033;
  }
}

.top_office_list_btn a::after {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 84px;
  width: 100%;
  height: 1px;
  background-color: #F5BC31;
  right: 0;
  bottom: 12px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .top_office_list_btn a:hover::after {
    background-color: #F29033;
  }
}

/* top - top_contact
------------------------------ */
.top_contact {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .top_contact {
    margin-top: 60px;
  }
}

.top_contact_telbox {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_contact_telbox {
    margin-top: 40px;
  }
}

.section_telbox_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: clamp(500px, 440.339px + 18.644vw, 720px);
  width: 100%;
  color: #fff;
  margin: 0 auto;
  padding: 40px 0 46px;
  -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;
  border-radius: clamp(8px, 5.831px + 0.678vw, 16px);
  background-color: #A5CD4F;
}
@media (max-width: 768px) {
  .section_telbox_inner {
    padding: 24px 0 26px;
  }
}

.section_telbox_title {
  position: relative;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 400;
  line-height: 100%;
}

.section_telbox_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(26px, 21.661px + 1.356vw, 42px);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.08em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .section_telbox_num {
    margin-top: 16px;
  }
}

.section_telbox_num::before {
  content: "";
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  background: url(../images/icon_telWhite.svg) no-repeat center center/contain;
  top: 2px;
}
@media (max-width: 768px) {
  .section_telbox_num::before {
    width: 24px;
    height: 24px;
  }
}

.section_telbox_hour {
  position: relative;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .section_telbox_hour {
    margin-top: 8px;
  }
}

.top_contact_mail {
  position: relative;
  margin-top: clamp(60px, 43.729px + 5.085vw, 120px);
}

.top_contact_mail_title {
  position: relative;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.08em;
}

.top_contact_mail_cap {
  position: relative;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.08em;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .top_contact_mail_cap {
    line-height: 180%;
    margin-top: 24px;
  }
}

.top_contact_mail_inner {
  position: relative;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .top_contact_mail_inner {
    margin-top: 25px;
  }
}

.contact_form_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #57493E;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.08em;
  gap: 0 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_form_title:nth-child(n+2) {
  margin-top: clamp(24px, 21.831px + 0.678vw, 32px);
}

.contact_form_title_must {
  position: relative;
  color: #fff;
  font-size: clamp(12px, 11.458px + 0.169vw, 14px);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  background-color: #F29033;
}

.contact_form_input {
  position: relative;
  margin-top: 10px;
}

.contact_form_radio_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(18px, 15.831px + 0.678vw, 26px);
  padding: clamp(10px, 5.661px + 1.356vw, 26px) clamp(16px, 11.661px + 1.356vw, 32px);
  background-color: #FFFADB;
}
@media (max-width: 768px) {
  .contact_form_radio_buttons {
    padding: 16px 24px;
  }
}

.contact_form_radio_button label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #57493E;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.08em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  cursor: pointer;
}

.contact_form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact_form_radio_button input[type=radio]::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
  -webkit-transition: all ease-out 250ms;
  transition: all ease-out 250ms;
}

.contact_form_radio_button input[type=radio]:checked::before {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  background-color: #F29033;
}

.contact_form_input input[type=text], .contact_form_input input[type=email],
.contact_form_input input[type=tel], .contact_form_input textarea {
  max-width: 1250px;
  width: 100%;
  height: clamp(50px, 44.576px + 1.695vw, 70px);
  color: #57493E;
  line-height: 150%;
  letter-spacing: 0.08em;
  padding: 8px 15px;
  outline: none;
  background-color: #FFFADB;
}

.contact_form_input textarea {
  min-width: 100%;
  min-height: 240px;
}

.contact_form_privacy {
  position: relative;
  max-height: 256px;
  overflow: scroll;
  margin: clamp(25px, 20.932px + 1.271vw, 40px) auto 0;
  padding: clamp(24px, 17.492px + 2.034vw, 48px);
  background-color: #FFF2BC;
}

.contact_form_privacy_title {
  position: relative;
  color: #57493E;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  line-height: 100%;
  letter-spacing: 0.08em;
}

.contact_form_privacy_text {
  position: relative;
  color: #57493E;
  font-size: clamp(14px, 13.458px + 0.169vw, 16px);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.08em;
  margin-top: clamp(16px, 13.831px + 0.678vw, 24px);
}

form#mailformpro button.btn {
  display: block;
  margin: clamp(40px, 29.153px + 3.39vw, 80px) auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  text-align: left;
}

/* top - top_recruit
------------------------------ */
.top_recruit {
  margin-top: 120px;
  background-color: #48B9ED;
}

.top_recruit_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top_recruit_img {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .top_recruit_img {
    max-width: 70%;
    max-height: 450px;
    overflow: hidden;
  }
}

.top_recruit_contents {
  position: relative;
  display: block;
  max-width: 655px;
  width: 100%;
}

.top_recruit_deco_en {
  color: #F7F7F7;
  opacity: 0.07;
  top: -30px;
  right: -70px;
}

.top_recruit_subtitle {
  position: relative;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin-top: 15px;
}

.top_recruit_txt {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.top_recruit_link {
  margin-top: 50px;
}

/* top - top_aboutus
------------------------------ */
.top_aboutus {
  background-color: #E2E2E2;
}

.top_aboutus_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top_aboutus_title {
  color: #48B9ED;
}

.top_aboutus_img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .top_aboutus_img {
    max-width: 70%;
    max-height: 450px;
    overflow: hidden;
  }
}

.top_aboutus_contents {
  position: relative;
  display: block;
  max-width: 655px;
  width: 100%;
}

.top_aboutus_deco_en {
  color: #fff;
  opacity: 0.4;
  top: -40px;
  right: -56px;
}

.top_aboutus_subtitle {
  position: relative;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin-top: 15px;
}

.top_aboutus_txt {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.top_aboutus_link {
  margin-top: 65px;
}

/* sub
------------------------------ */
.section_maintitle_wrapper > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .section_maintitle_wrapper > .wrapper {
    max-height: 350px;
  }
}

.section_maintitle_img {
  width: 100vw;
  min-height: inherit;
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .section_maintitle_img {
    overflow: hidden;
  }
}

.section_maintitle_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 454px;
  width: 100%;
  min-height: inherit;
  -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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.section_maintitle_box::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #e1eefe;
  border-width: 350px 0px 0px 162px;
  top: 0;
  right: -162px;
}

.section_maintitle_inner_ja {
  position: relative;
  font-size: clamp(24px, 20.203px + 1.186vw, 38px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.07em;
}

.section_maintitle_inner_en {
  position: relative;
  color: #48B9ED;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.1em;
  margin-top: 11px;
}

.bread_crumb {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 26px 0;
  background-color: #D6F2F4;
}
@media (max-width: 768px) {
  .bread_crumb {
    padding: 15px 0;
  }
}

.breadcrumb_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 10px 10px;
  }
}

.bread_crumb a {
  color: #000;
}

@media (min-width: 768px) {
  .bread_crumb a:hover {
    color: #55CAD2;
  }
}

.breadcrumb_arrow {
  color: #55CAD2;
}

.sub_section {
  margin-top: 118px;
}
@media (max-width: 768px) {
  .sub_section {
    margin-top: 60px;
  }
}

.subsection_title {
  position: relative;
  font-size: clamp(26px, 2vw, 30px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.1em;
  line-height: 120%;
  border-bottom: 2px solid #DBD4CA;
  padding: 9px 0 14px 24px;
  background: url(../images/common/subsection_title_bg.png) no-repeat top left/39px auto;
}
@media (max-width: 768px) {
  .subsection_title {
    font-size: 20px;
  }
}

.subsection_title::after {
  content: "";
  position: absolute;
  display: block;
  max-width: 200px;
  width: 100%;
  height: 2px;
  background-color: #48B9ED;
  left: 0;
  bottom: -2px;
}
@media (max-width: 768px) {
  .subsection_title::after {
    max-width: 30%;
  }
}

.subsection_title_blue {
  position: relative;
  color: #55CAD2;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .subsection_title_blue {
    font-size: 18px;
  }
}

.subsection_title_point {
  position: relative;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 768px) {
  .subsection_title_point {
    font-size: 16px;
  }
}

.subsection_title_point::before {
  content: "●";
  color: #55CAD2;
}

.sub_section_telbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 49px 0 55px;
}
@media (max-width: 768px) {
  .sub_section_telbox {
    padding: 30px 5% 40px;
  }
}

.sub_section_telbox_deco01 {
  position: absolute;
  max-width: 141px;
  width: 100%;
  top: 44px;
  left: 59px;
}
@media (max-width: 768px) {
  .sub_section_telbox_deco01 {
    max-width: 70px;
    top: 20px;
    left: 25px;
  }
}

.sub_section_telbox_deco02 {
  position: absolute;
  max-width: 176px;
  width: 100%;
  top: 41px;
  right: 51px;
}
@media (max-width: 768px) {
  .sub_section_telbox_deco02 {
    max-width: 88px;
    top: 20px;
    right: 25px;
  }
}

.sub_section_telbox_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 43px 19px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sub_section_telbox_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 5% 19px;
  }
}

.sub_section_telbox_tel {
  color: #48B9ED;
  font-size: clamp(30px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 105%;
  margin-right: 34px;
  padding-top: 10px;
  padding: 10px 35px 0 0;
  border-right: 1px solid #48B9ED;
}
@media (max-width: 768px) {
  .sub_section_telbox_tel {
    font-size: 24px;
    margin: 0;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid #48B9ED;
  }
}

.sub_section_telbox_tel span {
  font-size: clamp(16px, 1.33vw, 20px);
}
@media (max-width: 768px) {
  .sub_section_telbox_tel span {
    font-size: 14px;
  }
}

.sub_section_telbox_hour {
  position: relative;
  line-height: 250%;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .sub_section_telbox_hour {
    line-height: 145%;
    margin-top: 10px;
  }
}

.sub_section table tr th,
.sub_section table tr td {
  line-height: 190%;
  letter-spacing: 0.05em;
  border-top: 1px solid #48B9ED;
  border-right: 1px solid #48B9ED;
  padding: 19px 23px 21px 30px;
}
@media (max-width: 768px) {
  .sub_section table tr th,
  .sub_section table tr td {
    padding: 15px 18px 16px;
    line-height: 155%;
  }
}

.sub_section table tr th:last-child,
.sub_section table tr td:last-child {
  border-right: 0;
}

.sub_section table tr:last-child td {
  border-bottom: 1px solid #48B9ED;
}

.sub_section table tr th {
  text-align: left;
  font-weight: 700;
  background-color: #E5F6F7;
}

.sub_section table tr td {
  padding: 27px 33px 32px 30px;
}
@media (max-width: 768px) {
  .sub_section table tr td {
    padding: 15px 18px 16px;
  }
}

.about_clinics_map {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .about_clinics_map {
    margin-top: 30px;
    max-height: 250px;
  }
}

@media (max-width: 768px) {
  .about_clinics_map iframe {
    height: 250px;
  }
}

.subsection_clinics_items {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .subsection_clinics_items {
    margin-top: 30px;
  }
}

.subsection_clinics_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

.subsection_clinics_item + .subsection_clinics_item {
  margin-top: 40px;
}

.subsection_clinics_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(20px, 2.67vw, 40px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F8F7F4;
}
@media (max-width: 768px) {
  .subsection_clinics_item_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    padding-bottom: 30px;
  }
}

.subsection_clinics_item_img {
  position: relative;
  max-width: clamp(250px, 22vw, 330px);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1250px) {
  .subsection_clinics_item_img {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .subsection_clinics_item_img {
    max-width: unset;
  }
}

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

.subsection_clinics_item_contents {
  position: relative;
  max-width: clamp(400px, 36vw, 540px);
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 1250px) {
  .subsection_clinics_item_contents {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .subsection_clinics_item_contents {
    max-width: unset;
    padding: 0 5%;
  }
}

.subsection_clinics_item_title {
  position: relative;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.07em;
  padding-bottom: 17px;
  border-bottom: 1px solid #48B9ED;
}
@media (max-width: 768px) {
  .subsection_clinics_item_title {
    font-size: 17px;
  }
}

.subsection_clinics_item_title span {
  position: relative;
  display: block;
  font-size: clamp(13px, 1.07vw, 16px);
  line-height: 120%;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}

.subsection_clinics_item_address {
  position: relative;
  font-size: clamp(14px, 1.07vw, 16px);
  line-height: 190%;
  letter-spacing: 0.038em;
  margin-top: 13px;
}

.subsection_clinics_item_btn {
  -ms-flex-preferred-size: clamp(200px, 17.33vw, 260px);
      flex-basis: clamp(200px, 17.33vw, 260px);
}
@media (max-width: 768px) {
  .subsection_clinics_item_btn {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1250px) {
  .subsection_clinics_item_btn .btn {
    font-size: 14px;
    max-width: 160px;
    padding: 14px 30px 11px 15px;
  }
}

.subsection_clinics_item_btn .btn span::after {
  right: -15px;
}

.subsection_link_items {
  display: grid;
  margin-top: 130px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px clamp(20px, 2.67vw, 40px);
}
@media (max-width: 768px) {
  .subsection_link_items {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}

.subsection_link_item .btn {
  max-width: 390px;
}

.subsection_column_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(20px, 2.67vw, 40px);
  margin-top: 40px;
}
@media (max-width: 768px) {
  .subsection_column_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    margin-top: 20px;
  }
}

.subsection_column_item {
  position: relative;
  max-width: 390px;
  width: 100%;
  background-color: #F8F7F4;
}
@media (max-width: 768px) {
  .subsection_column_item {
    margin: 0 auto;
  }
}

.subsection_column_item_inner {
  position: relative;
  padding: 30px 25px 40px;
}

.subsection_column_item_title {
  position: relative;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding-bottom: 14px;
  border-bottom: 1px solid #48B9ED;
}

.subsection_column_item_text {
  position: relative;
  min-height: 200px;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .subsection_column_item_text {
    min-height: unset;
  }
}

.subsection_column_item_btnlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 150px;
  margin-top: 26px;
  -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;
  gap: 20px 0;
}
@media (max-width: 768px) {
  .subsection_column_item_btnlist {
    min-height: auto;
  }
}

.subsection_column_item_btn {
  width: 100%;
}

.subsection_layout_column_temp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .subsection_layout_column_temp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}

.subsection_layout_column_temp_img {
  position: relative;
  max-width: clamp(282px, 23.47vw, 352px);
  width: 100%;
}
@media (max-width: 768px) {
  .subsection_layout_column_temp_img {
    max-width: 352px;
    margin: 0 auto;
  }
}

.subsection_layout_column_temp_contents {
  position: relative;
  max-width: 840px;
  width: 100%;
}

.subsection_layout_column_temp_contents p {
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0.05em;
}

.subsection_layout_column_temp_contents p + p {
  margin-top: 1.5em;
}

/* footer
------------------------------ */
.footer {
  border-top: 9px solid #F5BC31;
  margin-top: clamp(70px, 48.305px + 6.78vw, 150px);
  padding: 47px 0 56px;
}
@media (max-width: 1250px) {
  .footer {
    padding-bottom: 80px;
  }
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 768px) {
  .footer_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_logo {
  position: relative;
  max-width: 401px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer_logo {
    max-width: unset;
    text-align: center;
  }
}

.footer_logo a {
  color: #57493E;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.03em;
}

.footer_logo a span {
  position: relative;
  font-size: clamp(12px, 10.915px + 0.339vw, 16px);
  letter-spacing: 0.02em;
  margin-right: 5px;
}

.footer_info {
  position: relative;
  color: #57493E;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.08em;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer_info {
    text-align: center;
    margin-top: 20px;
  }
}

.footer_info_title {
  font-weight: 500;
}

.footer_copyright {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.013em;
  line-height: 120%;
  margin-top: 84px;
}
@media (max-width: 768px) {
  .footer_copyright {
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 22px;
  }
}

.footer_nav {
  max-width: 276px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer_nav {
    display: none;
  }
}

.footer_list {
  position: relative;
}

.footer_list_parent {
  position: relative;
}

.footer_list_parent + .footer_list_parent {
  margin-top: 24px;
}

.footer_list_parent a::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 14px;
  background: url(../images/arrow_rightGreen.svg) no-repeat center center/contain;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.footer_list_parent a {
  color: #57493E;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.08em;
  padding-left: 26px;
}

@media (min-width: 768px) {
  .footer_list a:hover {
    color: #A5CD4F;
  }
}

.footer_list_parent a:hover::before {
  left: 5px;
}

.footer_bnr_items {
  position: relative;
  margin-top: 89px;
}
@media (max-width: 768px) {
  .footer_bnr_items {
    margin-top: 40px;
  }
}

.footer_bnr_item a {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .footer_bnr_item a {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .footer_bnr_item a:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: -5px 0 8px rgba(0, 0, 0, 0.5);
          box-shadow: -5px 0 8px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 768px) {
  .foot_menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_tel {
  width: 50%;
}

.foot_menu_tel a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 145%;
  font-weight: 700;
  background-color: #908378;
  padding: 10px 0 20px;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 10px 0 20px;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 30px;
  bottom: 150px;
  width: 109px;
  height: 44px;
  background: url(../images/pagetop_Orange.svg) no-repeat center center/contain;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
@media (min-width: 768px) {
  .page_top:hover {
    opacity: 0.8;
    bottom: 35px;
  }
}

/* foot_menu
------------------------------ */
.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_tel a {
  position: relative;
}