@charset "UTF-8";
/*
* 1. Immediately jump any animation to the end point
* 2. Remove transitions & fixed background attachment
* See: https://github.com/mozdevs/cssremedy/issues/11
*/
@media (prefers-reduced-motion: reduce) {
  *,
::before,
::after {
    -webkit-animation-delay: -1ms !important;
            animation-delay: -1ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }
}
html.js.config-allow-motion:not(.js-scroll-effect-started) .inview {
  opacity: 0;
}

:root {
  --effect-duration: 0.8s;
  --effect-distance: 30px;
  --effect-distance-: calc(var(--effect-distance) * -1);
  --effect-delay-base: 0.5s;
  --effect-delay: 0.5s;
  --effect-timing-function: cubic-bezier(.19,1,.22,1);
  --effect-scaleDown-initial: 1.3;
  --effect-fadein-after-opacity: 1;
  --effect-clip-after-opacity: 1;
}

html.config-allow-motion .effect0 {
  --effect-delay: calc(var(--effect-delay-base) * 0);
}
html.config-allow-motion [class*=effect] {
  --effect-delay: calc(var(--effect-delay-base) * var(--effect-order));
  transition-delay: var(--effect-delay);
  transition-duration: var(--effect-duration);
  transition-timing-function: var(--effect-timing-function);
}
html.config-allow-motion [class*=effect].duration-slow {
  transition-duration: calc(var(--effect-duration) * 1.5);
}
html.config-allow-motion [class*=effect].duration-quick {
  transition-duration: calc(var(--effect-duration) * 0.75);
}
html.config-allow-motion [class*=effect].delay-slow {
  transition-delay: calc(var(--effect-delay) * 1.5);
}
html.config-allow-motion [class*=effect].delay-quick {
  transition-delay: calc(var(--effect-delay) * 0.75);
}
html.config-allow-motion [class*=effect]:is(.fadein, .fadeinUp, .fadeinDown, .fadeinLeft, .fadeinRight) {
  opacity: 0;
  transition-property: opacity, transform;
}
html.config-allow-motion [class*=effect]:is(.fadein, .fadeinUp, .fadeinDown, .fadeinLeft, .fadeinRight).js-fire {
  opacity: var(--effect-fadein-after-opacity);
  transform: none;
}
html.config-allow-motion [class*=effect].fadeinUp {
  transform: translate(0, var(--effect-distance));
}
html.config-allow-motion [class*=effect].fadeinUp.effect-100p {
  transform: translate(0, 100%);
}
html.config-allow-motion [class*=effect].fadeinDown {
  transform: translate(0, var(--effect-distance-));
}
html.config-allow-motion [class*=effect].fadeinDown.effect-100p {
  transform: translate(0, -100%);
}
html.config-allow-motion [class*=effect].fadeinLeft {
  transform: translate(var(--effect-distance), 0);
}
html.config-allow-motion [class*=effect].fadeinLeft.effect-100p {
  transform: translate(100%, 0);
}
html.config-allow-motion [class*=effect].fadeinLeft.effect-50p {
  transform: translate(50%, 0);
}
html.config-allow-motion [class*=effect].fadeinRight {
  transform: translate(var(--effect-distance-), 0);
}
html.config-allow-motion [class*=effect].fadeinRight.effect-100p {
  transform: translate(-100%, 0);
}
html.config-allow-motion [class*=effect].fadeinRight.effect-50p {
  transform: translate(-50%, 0);
}
html.config-allow-motion [class*=effect]:is(.fadein2) > *:not([class*=effect]) {
  opacity: 0;
  transition-duration: var(--effect-duration);
  transition-delay: var(--effect-delay);
  transition-timing-function: var(--effect-timing-function);
  will-change: opacity, translate;
}
html.config-allow-motion [class*=effect]:is(.fadein2).js-fire > *:not([class*=effect]) {
  opacity: var(--effect-fadein-after-opacity);
  transform: none !important;
}
html.config-allow-motion [class*=effect].fadein2 > *:not([class*=effect]) {
  transform: translate(0, var(--effect-distance));
}
html.config-allow-motion [class*=effect]:is(.clipLeft, .clipRight) {
  opacity: 0;
  will-change: clip-path, opacity;
}
html.config-allow-motion [class*=effect]:is(.clipLeft, .clipRight) img {
  will-change: clip-path;
  transition-duration: var(--effect-duration);
  transition-delay: var(--effect-delay);
  transition-timing-function: var(--effect-timing-function);
}
html.config-allow-motion [class*=effect]:is(.clipLeft, .clipRight).js-fire {
  opacity: var(--effect-clip-after-opacity);
}
html.config-allow-motion [class*=effect]:is(.clipLeft, .clipRight).js-fire img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}
html.config-allow-motion [class*=effect].clipLeft img {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
html.config-allow-motion [class*=effect].clipRight img {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
html.config-allow-motion [class*=effect]:is(.scaleUp, .scaleDown) {
  will-change: transform;
}
html.config-allow-motion [class*=effect]:is(.scaleUp, .scaleDown).js-fire {
  transform: scale(1);
}
html.config-allow-motion [class*=effect]:where(.scaleUp, .scaleDown) {
  display: block;
}
html.config-allow-motion [class*=effect].scaleUp {
  transform: scale(0);
}
html.config-allow-motion [class*=effect].scaleDown {
  transform: scale(var(--effect-scaleDown-initial));
}

/* SASS の function 機能 */
/**
【2020/9/12更新】

※pxで記述するものは、pxなしでも動作する。


strip-unit(30px)
  単位の除去

vh(30px, 1200px)
  第2引数を100vhとして、第1引数が何vh かを返す処理

addpx(30)
  単位なしの数値が入ったら px を付与

vwsp(100px)
  100px を vw に変換して返す（スマホ版デザインで算出）

vwpc(100px)
  100px を vw に変換して返す（パソコン版デザインで算出）

*/
/**
 * 単位なしの値には px を付与する
 */
/**
 * スマートフォン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require d.$design-width-sp
 */
/**
 * パソコン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require d.$design-width-pc
 */
/*
三角関数
https://codepen.io/NyX/pen/dYvymM
*/
/*
$pi: 3.14159265359;
$_precision: 10;

@function pow($base, $exp) {
  $value: $base;

  @if $exp>1 {
    @for $i from 2 through $exp {
      $value: $value * $base;
    }
  }

  @if $exp < 1 {
    @for $i from 0 through -$exp {
      $value: $value / $base;
    }
  }

  @return $value;
}

@function fact($num) {
  $fact: 1;

  @if $num>0 {
    @for $i from 1 through $num {
      $fact: $fact * $i;
    }
  }

  @return $fact;
}

@function _to_unitless_rad($angle) {
  @if unit($angle)=="deg" {
    $angle: $angle / 180deg * $pi;
  }

  @if unit($angle)=="rad" {
    $angle: $angle / 1rad;
  }

  @return $angle;
}

@function sin($angle) {
  $a: _to_unitless_rad($angle);
  $sin: $a;

  @for $n from 1 through $_precision {
    $sin: $sin + (pow(-1, $n) / fact(2 * $n + 1)) * pow($a, (2 * $n + 1));
  }

  @return $sin;
}

@function cos($angle) {
  $a: _to_unitless_rad($angle);
  $cos: 1;

  @for $n from 1 through $_precision {
    $cos: $cos + (pow(-1, $n) / fact(2*$n)) * pow($a, 2*$n);
  }

  @return $cos;
}

@function tan($angle) {
  @return sin($angle) / cos($angle);
}
*/
/*
_sitefont.scss で使用する、自前フォントを使うための mixin集
*/
/*
@function str-replace($substr, $newsubstr, $str, $all:false) {
  $pos: str-index($str, $substr);

  @while $pos !=null {
    $strlen: str-length($substr);
    $start: str-slice($str, 0, $pos - 1);
    $end: str-slice($str, $pos + $strlen);
    $str: $start + $newsubstr + $end;

    @if $all==true {
      $pos: str-index($str, $substr);
    }

    @else {
      $pos: null;
    }
  }

  @return $str;
}
*/
/**
 * z-index値の調整用
 */
/*
【2020/9/18更新】

※pxで記述するものは、pxなしでも動作する。

解説記事
https://kaminarimagazine.com/web/2017/12/12/sass%E3%81%A7%E3%82%88%E3%81%8F%E4%BD%BF%E3%81%A3%E3%81%A6%E3%81%84%E3%82%8Bmixin%E3%82%92%E7%B4%B9%E4%BB%8B%E3%81%97%E3%81%BE%E3%81%99/



==== 文字系 ====

@include font-rem(16px, 32px, 0.1px, true)
  Illustratorで自動生成されるCSSの値を3つ順に入れると rem + em ベースでの文字指定ができる。
  font-size, line-height, letter-spacing を px単位で打ち込む（単位は省略可）
  第4引数は letter-spacing & text-align:center の場合に位置がずれるのを修正するかどうか。

@include fonti(16px, 32px, 0.1px, true)
  font-remとほぼ同様だが、Illustratorでは文字の上に余白がなく位置調整がしづらいため、
  Webでも上に余白をなくしてしまえ！というmixin。ついでに下の余白もなくす。
  （下にはみ出す英字系フォントではズレが出ると思われる）

@include line-truncate
  1行から溢れたら ... と省略する

@include lines-truncate(3)
  指定行数から溢れたら ... と省略する



==== 段落系 ====

@include justify();
  両端揃えの設定がされる。IEも対応。

@include full-width();
  ブロックの幅をウィンドウ幅全体に変更する。
  ただしPCではスクロールバーの幅の関係でややあふれるため、祖先要素に overflow:hidden; が必要。



==== 画像系 ====
@include fix-aspect(300px, 200px, true)
  ブロックの縦横比を指定する処理。
  横幅、縦幅、子要素も同様にするかの順に指定。

@include object-fit(cover, center center);
  JavaScriptライブラリ Object Fit Images を用いて
  IE でも object-fit および object-fit-position が使用できるようになる。
  ただし別途 Object Fit Images を実行する必要があるので注意。
  （既定では class="ofi" を付与していると自動的に対象となる）

@include pseudo-img(30px, 30px, ../../images/item.jpg);
  疑似要素に画像を入れる場合に使う。
  疑似要素系は記述が多くて面倒なため。



==== レイアウト系 ====

@include dl-table($dt-width, $breakpoint: $width-sp)
  dl,dt,dd で2列の表を作るのを簡単にする。
  $dt-width を指定すると、残り幅を dd の幅に割り当てる。
  $breakpoint になると、1列の表に戻す。

@include flex-layout($padding)
  flexでよく使うマイナスマージンについての対応をする。
  display:flex とする要素の親要素（またはそれ以上）に対して使用し、
  flexとする要素には .container クラスを付与すること。
    @param $padding : 各要素と要素の間隔を指定(px,vw等)


==== メディアクエリ系 ====

@media screen and (max-width:768px){
  【 CSSを記述 】
}
  $width-sp の値を元に @media(max-width:768px) を作成する。
  ただの省略用。

@include max-width(1400px){
  【 CSSを記述 】
}
  任意のmax-widthでメディアクエリを書く省略形。



==== 入力フォーム系 ====

  input要素はtype属性により表示が全く異なるので、それらをまとめて設定するためのmixin。

@include form-text{
  【 CSSを記述 】
}
  text, email, number, password, tel, search, url, date, datetime, datetime-local, month, week

@include form-datetime{
  【 CSSを記述 】
}
  date, datetime, datetime-local, month, week

@include form-button{
  【 CSSを記述 】
}
  button要素と button, image, submit, reset


*/
/**
 * Illustrator の出力するCSSを rem ベース + em ベースに変換する
 * @param int $font-size      px単位での文字サイズ
 * @param int $line-height    px単位での行の高さ ※0にすると無視
 * @param int $letter-spacing px単位での字間 ※0にすると無視
 * @param bool $is_center     中央揃えで使用する際の調整をするか
 * @require $font-size-root
 * @example1 @font-rem(14px, 28px, 0.4px, true);
 * @example2 @font-rem(14, 28, 0.4, true);
 */
/**
 * Illustrator の出力するCSSを rem ベース + em ベースに変換し、
 * さらに line-height により生じる上下の余白を調整する（Illustrator に合わせる）
 *
 * @param int $font-size      px単位での文字サイズ
 * @param int $line-height    px単位での行の高さ ※0にすると無視
 * @param int $letter-spacing px単位での字間 ※0にすると無視
 * @param bool $is_center     中央揃えで使用する際の調整をするか
 * @require $font-size-root
 * @example1 @font-rem(14px, 28px, 0.4px, true);
 * @example2 @font-rem(14, 28, 0.4, true);
 * @see https://coliss.com/articles/build-websites/operation/css/simple-css-remove-top-space.html
 */
/**
 * 溢れたテキストは … にする。
 * 1行限定だが、ブラウザ依存なし。
 */
/**
 * 溢れたテキストを … にする。
 * 任意行指定可能だが、-webkit が使える環境限定。
 * @param int $lines  最大行数
 */
/**
 * 幅をウィンドウ幅すべての幅にする
 * ただしPC版ではスクロールバーも含めたサイズとなるため、親要素を overflow:hidden; にしておくこと。
 */
/**
 * 縦横比を強制する
 * @param int $width        ブロックの幅
 * @param int $height       ブロックの高さ
 * @param bool $isFixChild  子要素にも縦横比を強制するか（既定値は false）
 */
/**
 * 疑似要素に画像をはめ込む
 */
/**
 * スマホ表示時のメディアクエリ
 *  メリット: 記述が楽になった
 *  デメリット: タブ下にあるセレクタの表示が直感的にわかりにくくなった
 */
/**
 * max-width のメディアクエリを作成する
 *  @param : $max-width  最大幅  数値に単位がない場合は px を付与。既定値はスマホの幅
 */
/**
 * dl要素を2列の表として表示する際のmixin
 * @param $dt-width: dt要素の幅
 * @param $breakpoint: 1列にする際の幅　既定値はスマホの幅
 */
/**
 * flexでよく使うマイナスマージンについての対応をする。
 * display:flex とする要素の親要素（またはそれ以上）に対して使用し、
 * flexとする要素には .container クラスを付与すること。
 * @param $padding : 各要素と要素の間隔を指定
 */
/**
 * input要素のうちテキストボックス型にCSSをまとめて適用
 */
/**
 * input要素の日付関連のみCSSをまとめて適用
 */
/**
 * input要素およびbutton要素のみCSSをまとめて適用
 */
/*
JavaScriptが無効な場合に適用するCSSを記述する
ex)
  .caution{
    @include no-js(){
      color: red;
    }
  }
*/
/**
 * background-image で png と webp を振り分ける処理。
 * 引数は拡張子を記載しない。
 *  記述例) @include bgi("../images/hoge")
 * ../images/hoge.png と ../images/hoge.webp で振り分けるように動作する。
 */
/**
 * スライド処理する親要素に設定すると、JavaScript無効時でもレイアウト崩れがない状態とすることができる
 */
/**
 * ページロード時の最初の瞬間に表示されないようにする
 */
/**
 * ブロック背景に色を付与する。
 * 要親要素以上での overflow: hidden
 */
/**
 * 三角形生成
 * @ref https://qiita.com/manabuyasuda/items/be17291426890d9fb15b
 */
.tel-box, .tel-only-box {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1028px;
}
@media screen and (max-width: 768px) {
  .tel-box, .tel-only-box {
    padding-left: 0;
    padding-right: 0;
    width: 80vw;
  }
}

.bl-mainframe {
  --effect-duration: 0.8s;
  --effect-delay-base: 0.15s;
}

:where(.bl-footer) {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  z-index: 1;
}

.bl-footer {
  margin-top: var(--bl-footer-margin-top);
  color: #fff;
  overflow: hidden;
}
.bl-footer__bg {
  background: #142D41;
}
.bl-footer__cols {
  margin: auto;
}
.bl-footer__col.mod_dummy {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.bl-footer__title {
  margin: 17px 0 4px;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1;
  letter-spacing: 0.1em;
}
.bl-footer__title::before {
  content: "■";
  color: #009AB9;
}
.bl-footer__title .icon-outer {
  transform: translateY(-2px);
  font-size: 10px;
  display: inline-block;
}
.bl-footer__title .icon-outer::before {
  display: inline-block;
}
.bl-footer__link {
  padding: 13px 10px 13px 0;
  border-bottom: 1px solid #8996A0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bl-footer__link .text {
  font-size: 0.8125rem;
  --font-size: 13;
  line-height: 1.3076923077;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
}
.bl-footer__link .text:before, .bl-footer__link .text:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-footer__link .text:before {
  margin-top: -0.1538461538em;
}
.bl-footer__link .text:after {
  margin-bottom: -0.1538461538em;
}
.bl-footer__link .icon-arrow {
  color: #5A6C7A;
  font-size: 10px;
  transform: scale(0.7);
  transform-origin: center center;
}
.bl-footer__sns-icons {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bl-footer__sns-icons img {
  display: block;
}
.bl-footer__instagram {
  font-size: 21px;
}
.bl-footer__copyright {
  display: block;
  font-size: 0.6875rem;
  --font-size: 11;
  line-height: 1;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
}
@media (hover: hover) {
  .bl-footer__title, .bl-footer__link, .bl-footer__link .icon-arrow {
    transition: color 0.5s;
  }
  .bl-footer__title:hover, .bl-footer__title:hover .icon-arrow, .bl-footer__link:hover, .bl-footer__link:hover .icon-arrow {
    color: #009AB9;
  }
  .bl-footer__instagram {
    transition: color 0.5s;
  }
  .bl-footer__instagram:hover {
    color: #009AB9;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-footer {
    --bl-footer-margin-top: 190px;
  }
  .bl-footer__bg {
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 30px;
  }
  .bl-footer__cols {
    width: auto;
    margin-bottom: -1px;
    overflow: hidden;
    max-width: 1040px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    position: relative;
  }
  .bl-footer__cols::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #142D41;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .bl-footer__col {
    padding: 33px 15px 47px;
    width: 208px;
    position: relative;
  }
  .bl-footer__col::after {
    content: "";
    display: block;
    background: #374C5D;
    width: 300vw;
    height: 1px;
    position: absolute;
    left: -100vw;
    bottom: 0;
  }
  .bl-footer__copyright {
    padding: 64px 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .bl-footer {
    --bl-footer-margin-top: 20vw;
  }
  .bl-footer__cols {
    width: 80vw;
  }
  .bl-footer__col {
    padding-top: 11.25vw;
  }
  .bl-footer__col.mod_add-sp-border {
    margin-top: 11.25vw;
    position: relative;
  }
  .bl-footer__col.mod_add-sp-border::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #374C5D;
    position: absolute;
    top: 0;
    left: calc((100vw - 100%) / -2);
  }
  .bl-footer__title:first-of-type {
    margin-top: 0;
  }
  .bl-footer__sns-icons {
    margin-top: 39px;
    justify-content: center;
  }
  .bl-footer__sns-icons img {
    width: 30px;
    height: 30px;
  }
  .bl-footer__instagram {
    font-size: 30px;
  }
  .bl-footer__copyright {
    margin-top: 10.75vw;
    padding-bottom: 28.5vw;
  }
}

.bl-gotop {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: rotate(90deg);
  transform-origin: right top;
  transition: opacity 0.5s;
  opacity: 1;
}
.bl-gotop::before {
  content: "";
  display: block;
  background: #142D41;
  width: 44px;
  height: 1px;
}
.bl-gotop .text {
  padding-left: 6px;
  color: #142D41;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1;
  letter-spacing: 0.1em;
}
html.js.scroll-top .bl-gotop {
  opacity: 0;
}

@media (hover: hover) {
  .bl-gotop {
    transition: padding 0.25s, opacity 0.5s;
  }
  .bl-gotop::before {
    transition: background-color 0.25s, width 0.25s;
  }
  .bl-gotop .text {
    transition: color 0.25s;
  }
  .bl-gotop:hover {
    padding-right: 20px;
  }
  .bl-gotop:hover::before {
    width: 24px;
    background-color: #009AB9;
  }
  .bl-gotop:hover .text {
    color: #009AB9;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-gotop {
    bottom: 30px;
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .bl-gotop {
    bottom: 80px;
    right: 3.5vw;
  }
}

.bl-footnavi {
  padding: 11px 6px;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(90deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(0);
  transition: transform 0.5s;
}
html.js.scroll-top .bl-footnavi {
  transform: translateY(100%);
}

.bl-footnavi__link {
  margin: 0 5px;
  width: calc(50% - 10px);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #142D41;
  font-weight: 500;
  font-size: 0.8125rem;
  --font-size: 13;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl-footnavi__link img {
  display: block;
}
.bl-footnavi__link .icon-mail, .bl-footnavi__link .icon-line {
  margin-right: 3px;
  font-weight: 900;
}
.bl-footnavi__link .icon-mail {
  font-size: 15px;
}
.bl-footnavi__link .icon-onlineclinic {
  font-size: 18px;
}
.bl-footnavi__link .icon-image {
  height: 18px;
  width: auto;
}
.bl-footnavi__link.mod_mail {
  background: #CAA800;
}
.bl-footnavi__link.mod_line {
  background: #06C755;
}

:where(.c-enja) {
  color: var(--color-genre);
}
:where(.c-enja) .en, :where(.c-enja) .ja {
  display: block;
  text-align: center;
}
:where(.c-enja) .en {
  font-weight: 900;
  font-size: 2.5rem;
  --font-size: 40;
  line-height: 0.9;
  letter-spacing: 0.05em;
}
:where(.c-enja) .ja {
  margin-top: 5px;
  font-weight: 700;
  font-size: 1rem;
  --font-size: 16;
  line-height: 1;
  letter-spacing: 0.05em;
}
:where(.c-enja).mod_large .en {
  font-weight: 900;
  font-size: 106px;
  color: #fff;
}
:where(.c-enja).mod_menu-title .en, :where(.c-enja).mod_menu-title .ja {
  display: inline-block;
  text-align: left;
}
:where(.c-enja).mod_menu-title .en {
  font-size: 2.875rem;
  --font-size: 46;
  line-height: 1;
  letter-spacing: 0.05em;
}
:where(.c-enja).mod_menu-title .ja {
  margin: 0 0 0 8px;
  transform: translateY(-10px);
  font-size: 17px;
}
:where(.c-enja).mod_left .en, :where(.c-enja).mod_left .ja {
  text-align: left;
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-enja).mod_large .en {
    font-size: 77px;
  }
  :where(.c-enja).mod_large .ja {
    margin-top: 4px;
    font-size: 1.125rem;
    --font-size: 18;
    line-height: 1;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  :where(.c-enja).mod_large.mod_100 .en {
    font-size: 100px;
  }
}
@media print and (max-width: 1050px), screen and (min-width: 768.1px) and (max-width: 1050px) {
  :where(.c-enja).mod_large.mod_100.mod_other .en {
    font-size: 80px;
  }
}
@media print and (max-width: 880px), screen and (min-width: 768.1px) and (max-width: 880px) {
  :where(.c-enja).mod_large.mod_100.mod_other .en {
    font-size: 60px;
  }
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-enja).mod_large.mod_170 .en {
    margin-bottom: -0.0705882353em;
    font-size: 170px;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  :where(.c-enja).mod_large.mod_170 .ja {
    margin-top: 0;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 768.1px) and (max-width: 1150px) {
  :where(.c-enja).mod_large.mod_170 .en {
    font-size: 150px;
  }
}
@media print and (max-width: 1064px), screen and (min-width: 768.1px) and (max-width: 1064px) {
  :where(.c-enja).mod_large.mod_170 .en {
    font-size: 120px;
  }
}
@media print and (max-width: 900px), screen and (min-width: 768.1px) and (max-width: 900px) {
  :where(.c-enja).mod_large.mod_170 .en {
    font-size: 100px;
  }
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-enja).mod_large.mod_pc-left .en {
    text-indent: 0;
    margin-left: -0.0470588235em;
  }
  :where(.c-enja).mod_large.mod_pc-left .ja {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-enja).mod_pc-linear {
    white-space: nowrap;
  }
  :where(.c-enja).mod_pc-linear .en, :where(.c-enja).mod_pc-linear .ja {
    display: inline-block;
    text-align: left;
  }
  :where(.c-enja).mod_pc-linear .ja {
    margin: 0;
    transform: translateY(-5px);
  }
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-enja).mod_pc-left .en, :where(.c-enja).mod_pc-left .ja {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  :where(.c-enja) .en {
    font-size: 40px;
    letter-spacing: 2px;
  }
  :where(.c-enja) .ja {
    margin-top: 5px;
    font-size: 1rem;
    --font-size: 16;
    line-height: 1;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }
  :where(.c-enja).mod_menu-title .en {
    font-size: 43px;
  }
  :where(.c-enja).mod_menu-title .ja {
    margin: 12px 0 0;
    display: block;
    letter-spacing: 0.85px;
  }
  :where(.c-enja).mod_large .en {
    font-size: 52px;
    letter-spacing: 2.65px;
    text-indent: 2.65px;
    white-space: nowrap;
  }
  :where(.c-enja).mod_large .ja {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 0.9px;
    text-indent: 0.9px;
  }
  :where(.c-enja).mod_sp-left .en, :where(.c-enja).mod_sp-left .ja {
    text-align: left;
  }
}

:where(.c-blue-title, :where(.c-enja).mod_large .ja) {
  --height: 32px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-weight: 700;
  width: 221px;
  height: var(--height);
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
:where(.c-blue-title, :where(.c-enja).mod_large .ja)::before, :where(.c-blue-title, :where(.c-enja).mod_large .ja)::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
:where(.c-blue-title, :where(.c-enja).mod_large .ja)::before {
  z-index: -1;
  background: #009AB9;
  transform: skewX(-45deg) translateX(calc(var(--height) / -2));
}
:where(.c-blue-title, :where(.c-enja).mod_large .ja)::after {
  z-index: -2;
  background: #4CB8CE;
}
:where(.c-blue-title, :where(.c-enja).mod_large .ja).mod_left {
  margin-left: 0;
}

:where(.c-linelink) {
  --color: #142D41;
  --border: #142D41;
  --hover-color: #009AB9;
  --hover-border: #009AB9;
  font-weight: 700;
  color: var(--color);
  font-size: 1rem;
  --font-size: 16;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-end;
}
:where(.c-linelink)::before {
  content: "";
  margin-bottom: -2px;
  margin-right: 8px;
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--border);
  transform: translateY(-8px);
}
@media (hover: hover) {
  :where(.c-linelink) {
    transition: color 0.5s;
  }
  :where(.c-linelink)::before {
    transition: background-color 0.5s, width 0.5s;
  }
  :where(.c-linelink):hover {
    color: var(--hover-color);
  }
  :where(.c-linelink):hover::before {
    background-color: var(--hover-border);
    width: 30px;
  }
}

:where(.c-newsblock) {
  position: relative;
  background: #142D41;
}
:where(.c-newsblock) .date {
  font-weight: 500;
  color: #CAA800;
  font-size: 1rem;
  --font-size: 16;
  line-height: 1;
  letter-spacing: 0.1em;
}
:where(.c-newsblock) .title {
  font-weight: 500;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.4;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.05em;
  color: #fff;
}
:where(.c-newsblock) .title:before, :where(.c-newsblock) .title:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
:where(.c-newsblock) .title:before {
  margin-top: -0.2em;
}
:where(.c-newsblock) .title:after {
  margin-bottom: -0.2em;
}
:where(.c-newsblock) .icon-arrow-circle {
  font-size: 28px;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
:where(.c-newsblock) .icon-arrow-circle .path1 {
  color: transparent;
}
:where(.c-newsblock) .icon-arrow-circle .path2 {
  color: #fff;
}
@media (hover: hover) {
  :where(.c-newsblock) {
    transition: background-color 0.5s;
  }
  :where(.c-newsblock) .date, :where(.c-newsblock) .title {
    transition: color 0.5s;
  }
  :where(.c-newsblock) .icon-arrow-circle .path1, :where(.c-newsblock) .icon-arrow-circle .path2 {
    transition: color 0.5s;
  }
  :where(.c-newsblock):hover {
    background: #374C5D;
  }
  :where(.c-newsblock):hover .date {
    color: #CAA800;
  }
  :where(.c-newsblock):hover .icon-arrow-circle .path1 {
    color: #CAA800;
  }
  :where(.c-newsblock):hover .icon-arrow-circle .path2 {
    color: #fff;
  }
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-newsblock) {
    padding: 0 50px 0 38px;
    display: flex;
    align-items: center;
    height: 64px;
  }
  :where(.c-newsblock) .date {
    margin-right: 19px;
  }
  :where(.c-newsblock) .title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 3px;
  }
  :where(.c-newsblock) .icon-arrow-circle {
    right: 15px;
  }
}
@media screen and (max-width: 768px) {
  :where(.c-newsblock) {
    padding: 17px;
    display: block;
  }
  :where(.c-newsblock) .title {
    margin-top: 9px;
    padding-right: 1em;
    font-size: 0.875rem;
    --font-size: 14;
    line-height: 1.5714285714;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.05em;
  }
  :where(.c-newsblock) .title:before, :where(.c-newsblock) .title:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  :where(.c-newsblock) .title:before {
    margin-top: -0.2857142857em;
  }
  :where(.c-newsblock) .title:after {
    margin-bottom: -0.2857142857em;
  }
  :where(.c-newsblock) .icon-arrow-circle {
    right: 6px;
  }
}

:where(.c-catch) {
  font-weight: 700;
  font-size: 1.125rem;
  --font-size: 18;
  line-height: 1.5;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.025em;
}
:where(.c-catch):before, :where(.c-catch):after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
:where(.c-catch):before {
  margin-top: -0.25em;
}
:where(.c-catch):after {
  margin-bottom: -0.25em;
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-catch) {
    margin-top: 31px;
  }
}
@media screen and (max-width: 768px) {
  :where(.c-catch) {
    margin-top: 30px;
  }
}

:where(.c-read) {
  margin: 25px 0 40px;
  font-weight: 400;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
}
:where(.c-read):before, :where(.c-read):after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
:where(.c-read):before {
  margin-top: -0.4em;
}
:where(.c-read):after {
  margin-bottom: -0.4em;
}

:where(.c-blue-heading) {
  padding: 14px;
  padding-right: 48px;
  position: relative;
  background: #009AB9;
  overflow: hidden;
}
:where(.c-blue-heading) .text {
  font-weight: 700;
  font-size: 1.25rem;
  --font-size: 20;
  line-height: 1.3;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.05em;
  color: #fff;
}
:where(.c-blue-heading) .text:before, :where(.c-blue-heading) .text:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
:where(.c-blue-heading) .text:before {
  margin-top: -0.15em;
}
:where(.c-blue-heading) .text:after {
  margin-bottom: -0.15em;
}
:where(.c-blue-heading)::after {
  content: "";
  display: block;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  background: #4CB8CE;
  transform: skew(-45deg) translateX(50%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
:where(.c-blue-heading) small {
  font-size: 17px !important;
  display: inline-block;
  white-space: nowrap;
}

:where(.c-arrow-button) {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
:root {
  --c-arrow-button-circle-bg: #CAA800;
  --c-arrow-button-text: #142D41;
  --c-arrow-button-text-hover: #009AB9;
  --c-arrow-button-circle-arrow: #CAA800;
  --c-arrow-button-circle-arrow-hover: #fff;
}

:where(.c-arrow-button) .text {
  font-weight: 500;
  color: var(--c-arrow-button-text);
  font-size: 1rem;
  --font-size: 16;
  line-height: 1.375;
  letter-spacing: 0.025em;
}
:where(.c-arrow-button) .icon-arrow-circle {
  font-size: 28px;
}
:where(.c-arrow-button) .path1 {
  color: var(--c-arrow-button-circle-bg);
  transform: scale(0);
  display: inline-block;
}
:where(.c-arrow-button) .path2 {
  color: var(--c-arrow-button-circle-arrow);
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  :where(.c-arrow-button) .text {
    transition: color 0.25s;
  }
  :where(.c-arrow-button) .path1 {
    transition: transform 0.25s;
  }
  :where(.c-arrow-button) .path2 {
    transition: color 0.25s;
  }
  :where(.c-arrow-button):hover .text {
    color: var(--c-arrow-button-text-hover);
  }
  :where(.c-arrow-button):hover .path1 {
    transform: scale(1);
  }
  :where(.c-arrow-button):hover .path2 {
    color: var(--c-arrow-button-circle-arrow-hover);
  }
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-arrow-button) {
    padding: 0 16px 0 20px;
    width: 328px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :where(.c-arrow-button) {
    padding: 0 20px;
  }
}

.tel-box {
  margin: clamp(60px,10.5555555556vh,95px) auto 0;
}
.tel-box [class*=icon-] {
  font-weight: 700;
}
.tel-box .icon-mail, .tel-box .icon-onlineclinic {
  margin-bottom: -0.2em;
}
.tel-box .icon-mail {
  font-size: 21px;
}
.tel-box .icon-onlineclinic {
  font-size: 23px;
}
.tel-box .inner {
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
}
.tel-box .tel {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 35px;
  color: #fff;
}
.tel-box .tel img {
  display: block;
  margin-right: 2px;
}
.tel-box .link {
  display: flex;
  align-items: center;
  position: relative;
  width: 256px;
  padding: 10px 36px 10px 21px;
  height: 64px;
  transition: color 0.2s;
}
.tel-box .link .text {
  margin-left: 5px;
  font-weight: 500;
}
.tel-box .link .arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  z-index: 1;
  font-size: 12px;
}
.tel-box .link .arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: opacity 0.2s;
  background: #e1cf94;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tel-box .link:hover {
  color: #fff;
}
.tel-box .link:hover .arrow:before {
  opacity: 1;
}
.tel-box .link1 {
  background: #CAA800;
}
.tel-box .link1 .arrow::before {
  background: #CAA800;
}
.tel-box .link1:hover {
  color: #fff;
  background: #DFCB66;
}
.tel-box .link3 {
  background: rgba(6, 199, 85, 0.7);
}
.tel-box .link3 .arrow:before {
  background: #06C755;
}
.tel-box .link3:hover {
  color: #fff;
}
@media print, screen and (min-width: 768.1px) {
  .tel-box .inner {
    background: linear-gradient(-60.43deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
}
@media screen and (max-width: 768px) {
  .tel-box .inner {
    padding: 30px 15px 35px;
    display: block;
    background: linear-gradient(-45.29deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
  .tel-box .tel {
    font-size: 33px;
    justify-content: center;
  }
  .tel-box .link {
    margin: 20px auto 0;
  }
  .tel-box .link + .link {
    margin-top: 16px;
  }
}

.tel-only-box {
  color: #fff;
  text-align: center;
  margin: clamp(65px,8.3333333333vh,75px) auto 0;
}
.tel-only-box .inner {
  padding: 30px 15px;
}
.tel-only-box .tel-title {
  font-weight: 500;
  color: #CAA800;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.7333333333;
  letter-spacing: 0.0253333333em;
  word-break: keep-all;
}
.tel-only-box .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.tel-only-box .tel img {
  flex-shrink: 0;
  margin-right: 4px;
}
.tel-only-box .tel .nth {
  text-align: left;
  font-weight: 900;
  font-size: 26px;
}
.tel-only-box .border {
  max-width: 100%;
  width: 290px;
  height: 2px;
  background: #5A6C7A;
  margin: 15px auto 10px;
}
.tel-only-box .bottom-tel .nth {
  font-weight: 700;
  font-size: 20px;
}
.tel-only-box .sc-text {
  text-align: center;
}
.tel-only-box .sc-text a {
  color: #009AB9;
  text-decoration: underline;
}
@media print, screen and (min-width: 768.1px) {
  .tel-only-box .inner {
    background: linear-gradient(-60.43deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
}
@media screen and (max-width: 768px) {
  .tel-only-box .inner {
    background: linear-gradient(-45.29deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
}

:where(.c-image-filter) {
  position: relative;
  z-index: 10;
}
:where(.c-image-filter)::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -9;
  top: 0;
  left: 0;
  opacity: 0.45;
  background: #142D41;
}
:where(.c-image-filter) :is(picture, img) {
  position: relative;
  z-index: -10;
}

:where(.c-title-gradient) {
  padding: 0 9px;
  display: block;
  height: 38px;
  color: #CAA800;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-title-gradient) {
    font-size: 24px;
    letter-spacing: 1.2px;
    width: 320px;
    background: linear-gradient(110.9deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
}
@media screen and (max-width: 768px) {
  :where(.c-title-gradient) {
    font-size: 21px;
    letter-spacing: 1.05px;
    width: 100%;
    background: -webkit-linear-gradient(339.1deg, #07728d 0%, #0D5269 25%, #113B50 50%, #142D41 75%, #142d41 100%);
  }
}

:where(.c-full-gradient) .text {
  display: block;
  color: #CAA800;
  font-weight: 700;
}
@media print, screen and (min-width: 768.1px) {
  :where(.c-full-gradient) {
    padding: 18px 19px;
    background: linear-gradient(-85.57deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
  :where(.c-full-gradient) .text {
    font-size: 1.5rem;
    --font-size: 24;
    line-height: 1.1666666667;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.05em;
  }
  :where(.c-full-gradient) .text:before, :where(.c-full-gradient) .text:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  :where(.c-full-gradient) .text:before {
    margin-top: -0.0833333333em;
  }
  :where(.c-full-gradient) .text:after {
    margin-bottom: -0.0833333333em;
  }
}
@media screen and (max-width: 768px) {
  :where(.c-full-gradient) {
    padding: 15px 14px;
    background: linear-gradient(-79.11deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
  :where(.c-full-gradient) .text {
    font-size: 1.25rem;
    --font-size: 20;
    line-height: 1.2;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.05em;
  }
  :where(.c-full-gradient) .text:before, :where(.c-full-gradient) .text:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  :where(.c-full-gradient) .text:before {
    margin-top: -0.1em;
  }
  :where(.c-full-gradient) .text:after {
    margin-bottom: -0.1em;
  }
}
/*# sourceMappingURL=common.css.map */