@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .tbpc02 {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* justify-content: space-between; */
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
    color: inherit;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #191a1b;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
    line-height: 1.8;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: #08a6c2;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 15px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 20px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt05 {
  margin-top: 5px !important;
}
@media screen and (max-width: 599px) {
  .mt05 {
    margin-top: 5px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 92px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 50;
  align-items: center;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 64px;
  }
}
@media screen and (min-width: 1025px) {
  #top .header {
    padding-top: 25px;
    background-color: transparent;
    -webkit-backdrop-filter: inherit;
            backdrop-filter: inherit;
  }
}
@media screen and (min-width: 1025px) {
  #top .is-show .header {
    padding-top: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 334px;
  margin-left: 25px;
  margin-right: 20px;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: 310px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    margin-left: 12px;
    max-width: 250px;
  }
}
@media screen and (min-width: 1025px) {
  #top .header-logo {
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) {
  #top .is-show .header-logo {
    opacity: 1 !important;
  }
}
.header-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .header-logo a:hover {
    opacity: 0.8;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 15px;
  justify-content: flex-end;
  flex: 1;
}
@media screen and (max-width: 1100px) {
  .header-nav {
    display: none;
  }
}
.header-nav__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-nav__menu__item {
  position: relative;
}
.header-nav__menu__link {
  display: block;
  position: relative;
  margin-right: 35px;
  font-size: 1.7rem;
  color: #191a1b;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .header-nav__menu__link:hover {
    color: #2c51a6;
  }
}
.header-nav__menu__link.active {
  color: #2c51a6;
}
.header-nav__menu__link.active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  width: 5px;
  height: 5px;
  margin: 0 auto;
  background-color: #2c51a6;
  border-radius: 50%;
}
.header-nav__btns {
  display: none;
}
@media screen and (max-width: 599px) {
  .header-nav__btns {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
  }
}
.header-nav__btn {
  display: block;
  position: relative;
  border-radius: 50px;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  line-height: 1.4;
  height: 44px;
}
@media screen and (max-width: 1024px) {
  .header-nav__btn {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-width: auto !important;
    border-radius: 0 !important;
    margin: 0px !important;
    height: 45px;
    padding: 8px 5px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__btn:hover {
    opacity: 0.85;
  }
}
.header-nav__btn.media {
  min-width: 234px;
  background-color: #2c51a6;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .header-nav__btn.media {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__btn.inquiry {
    background-color: #353f80;
    background-image: url(../img/common/icon_mail_white.svg);
    background-repeat: no-repeat;
    background-size: 18px auto;
    background-position: 17px center;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif !important;
    font-weight: 500;
    padding-left: 20px;
  }
}
.header-nav__btn.tel {
  padding-left: 25px;
  min-width: 190px;
  border-radius: 50px;
  background-color: #f37546;
  font-size: 2rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  background-image: url(../img/common/icon_phone_white.svg);
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 18px auto;
  margin-left: 6px;
}
@media screen and (max-width: 599px) {
  .header-nav__btn.tel {
    font-size: 1.9rem;
  }
}

.menu-btn {
  display: none;
  justify-content: center;
  align-self: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 85px;
  height: 90px;
  padding: 58px 0 0;
  background-color: #2c51a6;
  transition: 0.5s;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: auto;
  z-index: 60;
}
@media screen and (max-width: 1100px) {
  .menu-btn {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    width: 75px;
    height: 80px;
    padding: 52px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn {
    width: 64px;
    height: 64px;
    padding: 42px 0 0;
  }
}
.menu-btn__bar {
  margin: auto;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .menu-btn__bar {
    top: -18px;
    width: 35px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn__bar {
    top: -14px;
    width: 30px;
  }
}
.menu-btn__bar::before, .menu-btn__bar::after {
  content: "";
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
  left: 0;
  right: 0;
}
.on .menu-btn__bar::before, .on .menu-btn__bar::after {
  background-color: #faf8f4;
}
.menu-btn__bar::before {
  top: -11px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .menu-btn__bar::before {
    top: -8px;
  }
}
.menu-btn__bar::after {
  bottom: -11px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .menu-btn__bar::after {
    bottom: -8px;
  }
}
.menu-btn__text {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-align: left;
  line-height: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  .menu-btn__text {
    font-size: 1.2rem;
  }
}
.menu-btn.active .menu-btn__bar {
  background-color: transparent;
}
.menu-btn.active .menu-btn__bar::before {
  top: 0;
  transform: rotate(-25deg);
}
.menu-btn.active .menu-btn__bar::after {
  bottom: 0;
  width: 100%;
  transform: rotate(25deg);
}

.hamburger-menu {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 36%;
  height: 100vh;
  pointer-events: none;
  z-index: 11;
}
@media screen and (max-width: 834px) {
  .hamburger-menu {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu {
    width: 100%;
  }
}
.hamburger-menu__inner {
  visibility: hidden;
  overflow: auto;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 95px 5% 50px;
  background-color: #2c51a6;
  opacity: 0;
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 50;
}
.hamburger-menu__inner.active {
  visibility: visible;
  opacity: 1;
}

#hamburger-overlay {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  z-index: 10;
  transition: 0.3s;
}
#hamburger-overlay.active {
  opacity: 0.7;
}

.hamburger-logo {
  position: absolute;
  top: 16px;
  left: 12px;
  width: 220px;
}
@media screen and (max-width: 375px) {
  .hamburger-logo {
    top: 17px;
    width: 250px;
  }
}

.hamburger-nav {
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hamburger-nav__item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hamburger-nav__link {
  position: relative;
  display: block;
  padding: 22px 15px;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.025em;
}
.hamburger-nav__link::before {
  background: #274096;
  border-radius: 50px;
  content: "";
  height: 22px;
  width: 22px;
  right: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.hamburger-nav__link::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.hamburger-btns {
  margin-bottom: 25px;
}
.hamburger-btns__item {
  margin-bottom: 10px;
}
.hamburger-btns__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 14px 25px 14px 58px;
  background-repeat: no-repeat;
  border-radius: 2px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .hamburger-btns__link {
    font-size: 4.4vw;
  }
}
.hamburger-btns__link.media {
  background-color: #2281ce;
  background-image: url(../img/common/icon_media_white.svg);
  background-position: center left 17px;
  background-size: 38px auto;
}
.hamburger-btns__link.medical {
  background-color: #3baad3;
  background-image: url(../img/common/icon_medical_white.svg);
  background-position: center left 14px;
  background-size: 38px auto;
}

.hamburger-bnr {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
.hamburger-bnr__item {
  width: calc((100% - 8px) / 2);
}
.hamburger-bnr__item:not(:last-child) {
  margin-bottom: 13px;
}
.hamburger-bnr__link {
  padding: 11px 6px 11px 24px;
  text-align: center;
  display: block;
  border-radius: 50px;
  font-size: 1.5rem;
  color: #fff;
}
.hamburger-bnr__link.tel {
  background-color: #f37546;
  background-image: url(../img/common/icon_phone_white.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 14px center;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
}
.hamburger-bnr__link.contact {
  background-color: #353f80;
  background-image: url(../img/common/icon_mail_white.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 17px center;
  font-family: "Noto Sans JP", sans-serif !important;
}

.hamburger-sub-nav {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 40px;
}
.hamburger-sub-nav__link {
  position: relative;
  padding-left: 15px;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.hamburger-sub-nav__link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 7px;
  height: 8px;
  border: 4px solid transparent;
  border-left: 7px solid #1cade2;
  border-right: none;
}

.footer {
  position: relative;
  background-color: #2c51a6;
  z-index: 0;
  padding: 91px 3% 35px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 70px 3% 25px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 60px 3% 60px;
  }
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-detail {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .footer-detail {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-detail {
    margin-bottom: 20px;
  }
}
.footer-detail__logo {
  width: 355px;
}
@media screen and (max-width: 599px) {
  .footer-detail__logo {
    max-width: 253px;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.footer-copy {
  color: #acb6d6;
  font-size: 1.4rem;
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .footer-copy {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 834px) {
  .footer-copy {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-copy {
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0;
    opacity: 0.8;
  }
}

.footer-nav {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-nav {
    margin-bottom: 30px;
  }
}
.footer-nav__link {
  position: relative;
  padding-left: 20px;
  color: #d0d5e7;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .footer-nav__link {
    font-size: 1.3rem;
    padding-left: 16px;
  }
}
.footer-nav__link::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #d2defa;
  border-bottom: 2px solid #d2defa;
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .footer-nav__link::after {
    width: 7px;
    height: 7px;
  }
}
.footer-nav__link::before {
  border-bottom: 1px solid rgba(210, 222, 250, 0.85);
  content: "";
  height: 1px;
  width: calc(100% - 20px);
  right: 0;
  position: absolute;
  bottom: -3px;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .footer-nav__link::before {
    width: calc(100% - 18px);
    bottom: -2px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-nav__link:hover {
    opacity: 0.8;
  }
  .footer-nav__link:hover::before {
    opacity: 0;
  }
}

.main {
  overflow: hidden;
}

.contents {
  margin: 0 4.5%;
}
@media screen and (max-width: 1024px) {
  .contents {
    margin: 0 4%;
  }
}

.contents-inner {
  max-width: 1100px;
  margin: 80px auto 110px;
}
@media screen and (max-width: 1024px) {
  .contents-inner {
    margin: 55px auto 60px;
  }
}
@media screen and (max-width: 834px) {
  .contents-inner {
    margin: 40px auto 60px;
  }
}
.contents-inner.report-index {
  max-width: 1535px;
}
@media screen and (max-width: 599px) {
  .contents-inner.report-index {
    padding: 0px 10px;
  }
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 380px;
  background-image: url(../img/common/pagetitle_illust.webp), url(../img/common/main_bg02.webp), url(../img/common/main_bg.webp);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 755px auto, 910px auto, cover;
  background-position: right 400px bottom -35px, left bottom, 0 0;
  padding: 92px 0px 0px;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    min-height: 270px;
    background-size: 550px auto, 420px auto, cover;
    background-position: right 30px bottom -5px, left bottom, 0 0;
    padding-top: 80px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    background-size: 470px auto, 420px auto, cover;
    background-position: right -40px bottom 25px, left bottom, 0 0;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    min-height: 180px;
    background-size: 260px auto, 320px auto, cover;
    background-position: right -40px bottom 25px, left bottom, 0 0;
    padding-top: 64px;
  }
}
.pagetitle::after {
  background-image: url(../img/common/fukuoka.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 248px;
  width: 467px;
  right: 0;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .pagetitle::after {
    height: 180px;
    width: 360px;
    bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle::after {
    height: 100px;
    width: 180px;
    bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle::before {
    background: #3058B2;
    background: linear-gradient(90deg, rgb(48, 88, 178) 0%, rgb(49, 182, 244) 100%);
    content: "";
    height: 18px;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: 0px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle::before {
    height: 10px;
  }
}
.pagetitle__content {
  margin: 0px 0px 20px 4.5%;
}
@media screen and (max-width: 599px) {
  .pagetitle__content {
    margin: 0px 0px 5px 4.5%;
  }
}
.pagetitle__en {
  color: #1cade2;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .pagetitle__en {
    font-size: 2rem;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__en {
    font-size: 1.4rem;
  }
}
.pagetitle__jp {
  font-size: 4.3rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .pagetitle__jp {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__jp {
    font-size: 2.3rem;
  }
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  position: relative;
  padding: 12px 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb::before {
  background: #3058B2;
  background: linear-gradient(90deg, rgb(48, 88, 178) 30%, rgb(49, 182, 244) 100%);
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.breadcrumb.hospital {
  padding: 5px 20px 25px;
}
.breadcrumb.hospital::before {
  width: calc(50% + 600px);
}
@media screen and (max-width: 1024px) {
  .breadcrumb.hospital::before {
    width: 100vw;
  }
}
.breadcrumb__list {
  display: flex;
  max-width: calc(100% + 40px - 9%);
  margin: 0 auto;
}
.breadcrumb__list__item {
  position: relative;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #c1cfee;
}
.breadcrumb__list__item:not(:last-child) {
  padding-right: 20px;
}
.breadcrumb__list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 8px;
  display: block;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #c1cfee;
  border-right: 1px solid #c1cfee;
  transform: rotate(45deg);
}
.breadcrumb__list__link {
  color: #c1cfee;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .breadcrumb__list__link:hover {
    text-decoration: none;
  }
}

/*--------------------------------------------------------
_wysiwyg
----------------------------------------------------------*/
.wysiwyg {
  /*デフォルトの処理*/
  margin-bottom: 60px;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  .wysiwyg {
    margin-bottom: 45px;
  }
}
.wysiwyg a {
  color: #2c51a6;
  text-decoration: underline;
}
.wysiwyg a:hover {
  color: #2c51a6;
  text-decoration: none;
}
.wysiwyg img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.wysiwyg .box {
  margin-bottom: 35px;
}
.wysiwyg .box:before, .wysiwyg .box:after {
  content: "";
  display: table;
}
.wysiwyg .box:after {
  clear: both;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box {
    margin-bottom: 25px;
  }
}
.wysiwyg .box:has(> .ttl02), .wysiwyg .box:has(> .ttl03) {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .ttl02), .wysiwyg .box:has(> .ttl03) {
    margin-bottom: 18px;
  }
}
.wysiwyg .box:has(> .copy01), .wysiwyg .box:has(> .copy02) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .copy01), .wysiwyg .box:has(> .copy02) {
    margin-bottom: 8px;
  }
}
.wysiwyg .ttl01 {
  position: relative;
  padding: 5px 0px 12px 23px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 2px solid #e4e8ed;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl01 {
    font-size: 2.3rem;
    padding-left: 18px;
  }
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl01 {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01 {
    font-size: 1.9rem;
    padding-left: 15px;
  }
}
.wysiwyg .ttl01::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 34px;
  background-color: #2c51a6;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl01::before {
    height: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01::before {
    width: 6px;
    height: 26px;
  }
}
.wysiwyg .ttl02 {
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-left: 36px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl02 {
    font-size: 2.1rem;
    padding-left: 32px;
  }
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02 {
    font-size: 1.8rem;
    padding-left: 28px;
  }
}
.wysiwyg .ttl02::before, .wysiwyg .ttl02::after {
  position: absolute;
  content: "";
  top: 14px;
  height: 12px;
  width: 12px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02::before, .wysiwyg .ttl02::after {
    top: 9px;
    width: 10px;
    height: 10px;
  }
}
.wysiwyg .ttl02::before {
  background-color: #2c51a6;
  left: 0px;
}
.wysiwyg .ttl02::after {
  background-color: #1cade2;
  left: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  left: 10px;
}
.wysiwyg .ttl03 {
  position: relative;
  padding: 8px 20px 8px 25px;
  background-color: #2c51a6;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl03 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl03 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03 {
    padding: 6px 20px 6px 20px;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }
}
.wysiwyg .ttl03::before {
  content: "";
  height: calc(100% - 20px);
  width: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  left: 13px;
  position: absolute;
  top: 10px;
  bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl03::before {
    left: 10px;
  }
}
.wysiwyg .copy01 {
  font-size: 2.4rem;
  line-height: 1.7;
  color: #1cade2;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 834px) {
  .wysiwyg .copy01 {
    line-height: 1.5;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy01 {
    font-size: 1.8rem;
  }
}
.wysiwyg .copy02 {
  font-size: 2.6rem;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #2c51a6;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 834px) {
  .wysiwyg .copy02 {
    line-height: 1.5;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy02 {
    font-size: 2rem;
  }
}
.wysiwyg .text {
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.wysiwyg .text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 500;
}
.wysiwyg .img-right {
  margin: 4px 0 20px 4%;
  width: auto;
  max-width: 36.5%;
  float: right;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right {
    margin: 0 auto 18px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .img-left {
  margin: 7px 4% 20px 0;
  width: auto;
  max-width: 36.5%;
  float: left;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left {
    margin: 0 auto 18px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .btn-wrapper {
  text-align: center;
}
.wysiwyg .btn-wrapper a {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 10px 50px;
  background-color: #2c51a6;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper a {
    padding: 8px 35px;
    background-position: center right 10px;
    background-size: 19px auto;
    font-size: 1.4rem;
  }
}
.wysiwyg .btn-wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .wysiwyg .btn-wrapper a:hover {
    background-color: #000;
  }
  .wysiwyg .btn-wrapper a:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}
.wysiwyg .photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-3 {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 {
    gap: 8px;
  }
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-3 li img {
  width: 100%;
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 {
    gap: 8px;
  }
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-2 li img {
  width: 100%;
}
.wysiwyg .photo-1 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .caption {
  display: block;
  margin-top: 10px;
  color: #191a1b;
  font-size: 1.5rem;
  line-height: 1.3em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .caption {
    margin-top: 5px;
    font-size: 1.3rem;
  }
}
.wysiwyg .list-wrapper {
  padding: 28px 30px;
  background-color: #f7f7f7;
  list-style: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper {
    padding: 16px;
  }
}
.wysiwyg .list-wrapper li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: #191a1b;
  line-height: 1.5em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li {
    margin-top: 7px;
    padding-left: 15px;
  }
}
.wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
.wysiwyg .list-wrapper li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  width: 7px;
  height: 7px;
  background-color: #2c51a6;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li::before {
    width: 6px;
    height: 6px;
  }
}
.wysiwyg .table {
  width: 100%;
  border: 1px solid #EBDFD8;
  border-collapse: collapse;
}
.wysiwyg .table thead th {
  padding: 10px;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #2c51a6;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table thead th {
    padding: 8px 5px 6px;
    font-size: 1.3rem;
  }
}
.wysiwyg .table th {
  padding: 15px;
  color: #191a1b;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table th {
    padding: 8px 5px 6px;
    font-size: 1.3rem;
  }
}
.wysiwyg .table td {
  padding: 15px;
  font-size: 1.5rem;
  line-height: 1.3em;
  vertical-align: middle;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table td {
    padding: 8px 5px 6px;
    font-size: 1.3rem;
  }
}
.wysiwyg .youtube-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.wysiwyg .youtube-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul {
  padding-left: 25px;
  list-style-type: disc;
}
.wysiwyg ol {
  margin: 1em 0;
  padding-left: 25px;
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

/*--------------------------------------------------------
_pagination
----------------------------------------------------------*/
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .pagination__list {
    margin-top: 40px;
  }
}
.pagination__list__number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 6px;
  padding-top: 4px;
  background-color: #ebf2f9;
  border-radius: 50%;
  color: #2c51a6;
  font-size: 2rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .pagination__list__number {
    width: 44px;
    height: 44px;
    margin: 0 3px;
    font-size: 1.6rem;
  }
}
.pagination__list__number:hover, .pagination__list__number.active {
  background-color: #2c51a6;
  color: #fff !important;
  transition: 0.3s;
}
.pagination__list__number::before, .pagination__list__number::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  margin: auto;
}
.pagination__list__prev, .pagination__list__next {
  display: block;
  position: relative;
  color: #2c51a6;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .pagination__list__prev, .pagination__list__next {
    width: 12px;
    height: 12px;
  }
}
.pagination__list__prev::before, .pagination__list__next::before {
  content: "";
  position: absolute;
  top: 9px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #2c51a6;
  border-right: 2px solid #2c51a6;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .pagination__list__prev::before, .pagination__list__next::before {
    top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .pagination__list__prev:hover, .pagination__list__next:hover {
    opacity: 0.8;
  }
}
.pagination__list__prev {
  margin-right: 20px;
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  .pagination__list__prev {
    margin-right: 10px;
    padding-left: 0;
  }
}
.pagination__list__prev::before {
  left: 0;
  transform: rotate(225deg);
}
.pagination__list__next {
  margin-left: 20px;
  padding-right: 15px;
}
@media screen and (max-width: 599px) {
  .pagination__list__next {
    margin-left: 10px;
    padding-right: 0;
  }
}
.pagination__list__next::before {
  right: 0;
}

/*--------------------------------------------------------
side
----------------------------------------------------------*/
.side-title {
  position: relative;
  margin-bottom: 38px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ebebeb;
  color: #376093;
  font-size: 2rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .side-title {
    margin-top: 90px;
  }
}
@media screen and (max-width: 599px) {
  .side-title {
    margin-top: 60px;
    margin-bottom: 22px;
    padding-bottom: 13px;
    font-size: 1.8rem;
  }
}
.side-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #376093;
}
.side-title > a {
  display: block;
  position: relative;
  padding-right: 25px;
  color: inherit;
}
.side-title > a::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 22px;
  height: 22px;
  background-color: #376093;
  background-image: url(../img/common/arrow.png);
  background-size: 12px auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .side-title > a::after {
    background-size: 10px auto;
  }
}
@media screen and (min-width: 1025px) {
  .side-title > a:hover {
    color: #1cade2;
  }
  .side-title > a:hover::after {
    background-color: #08a6c2;
  }
}

.side-nav {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .side-nav {
    margin-bottom: 0;
  }
}
.side-nav__item:not(:last-child) {
  margin-bottom: 22px;
}
@media screen and (max-width: 599px) {
  .side-nav__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.side-nav__link {
  display: block;
  position: relative;
  padding-left: 28px;
  color: #30444d;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .side-nav__link {
    font-size: 1.5rem;
  }
}
.side-nav__link::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 19px;
  height: 19px;
  border: 2px solid #376093;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .side-nav__link::before {
    top: 1px;
  }
}
.side-nav__link::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #376093;
  border-right: 2px solid #376093;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .side-nav__link::after {
    top: 8px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #376093;
    border-right: 2px solid #376093;
    transform: rotate(45deg);
  }
}
.side-nav__link.active {
  color: #08a6c2;
}
.side-nav__link.active::before {
  border-color: #08a6c2;
}
.side-nav__link.active::after {
  border-top-color: #08a6c2;
  border-right-color: #08a6c2;
}
@media screen and (min-width: 1025px) {
  .side-nav__link:hover {
    color: #08a6c2;
  }
  .side-nav__link:hover::before {
    border-color: #08a6c2;
  }
  .side-nav__link:hover::after {
    border-top-color: #08a6c2;
    border-right-color: #08a6c2;
  }
}
.side-nav__link .link {
  width: 16px;
  margin-left: 7px;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .side-bnr {
    display: none;
  }
}
.side-bnr__item:not(:last-child) {
  margin-bottom: 12px;
}
.side-bnr__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .side-bnr__link:hover {
    opacity: 0.8;
  }
}

.btn-wrapper {
  text-align: center;
}

.btn-base {
  position: relative;
  display: block;
  max-width: 280px;
  margin: 20px auto 0px;
  padding: 15px;
  background-color: #2c51a6;
  border-radius: 50px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
.btn-base::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .btn-base {
    padding: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    opacity: 0.85;
  }
}

.back-btn {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .back-btn {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .back-btn {
    margin-top: 30px;
    padding: 18px;
  }
}
.back-btn__link {
  display: inline-block;
  position: relative;
  color: #2c51a6;
  font-family: "Noto Sans JP", sans-serif !important;
  padding: 10px 55px 10px 60px;
  background-color: #ebf2f9;
  border-radius: 50px;
}
@media screen and (max-width: 599px) {
  .back-btn__link {
    font-size: 1.4rem;
  }
}
.back-btn__link::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  left: 22px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2c51a6;
  border-right: 2px solid #2c51a6;
  transform: rotate(225deg);
}
@media screen and (max-width: 599px) {
  .back-btn__link::after {
    width: 9px;
    height: 9px;
    border-top: 2px solid #2c51a6;
    border-right: 2px solid #2c51a6;
    transform: rotate(225deg);
  }
}
.back-btn__link:hover {
  background-color: #2c51a6;
  color: #fff;
}
.back-btn__link:hover::after {
  border-color: #fff;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.sec-ttl01 {
  position: relative;
  margin-bottom: 45px;
  padding: 0 0 15px 18px;
  border-bottom: 3px solid #ebebeb;
  border-radius: 2px 0 0 0;
  color: #30444d;
  font-size: 2.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .sec-ttl01 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .sec-ttl01 {
    margin-bottom: 20px;
    padding: 0 0 12px 16px;
    font-size: 2.1rem;
  }
}
.sec-ttl01::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 5px;
  height: calc(100% - 18px);
  background-color: #376093;
  border-radius: 3px;
}
@media screen and (max-width: 599px) {
  .sec-ttl01::before {
    width: 4px;
    height: calc(100% - 16px);
  }
}

.sec-ttl02 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 40px;
  color: #30444d;
  font-size: 2.1rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .sec-ttl02 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .sec-ttl02 {
    margin-bottom: 20px;
    padding-left: 35px;
    font-size: 1.8rem;
  }
}
.sec-ttl02::before, .sec-ttl02::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .sec-ttl02::before, .sec-ttl02::after {
    top: 4px;
    width: 17px;
    height: 17px;
  }
}
.sec-ttl02::before {
  left: 0;
  background-color: #376093;
  z-index: 1;
}
.sec-ttl02::after {
  left: 10px;
  background-color: #67cbec;
}
.sec-ttl02 .small {
  font-size: 1.6rem;
}

.sec-ttl03 {
  position: relative;
  margin-bottom: 30px;
  padding: 12px 12px 12px 45px;
  background-color: #eff6f8;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .sec-ttl03 {
    margin-bottom: 20px;
    padding: 10px 10px 10px 34px;
    font-size: 1.6rem;
  }
}
.sec-ttl03::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 17px;
  height: 4px;
  margin: auto 0;
  background-color: #2c51a6;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .sec-ttl03::before {
    left: 11px;
    width: 14px;
    height: 3px;
  }
}
.sec-ttl03.has-link > a {
  display: inline-block;
  position: absolute;
  top: 17px;
  right: 20px;
  border-bottom: 1px solid #1275b4;
  color: #1c83c4;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .sec-ttl03.has-link > a {
    top: 14px;
    right: 15px;
    font-size: 1.3rem;
  }
}
.sec-ttl03.has-link > a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -23px;
  width: 16px;
  height: 22px;
  background-image: url(../img/common/icon_pin_blue.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .sec-ttl03.has-link > a::before {
    top: -2px;
    left: -21px;
    width: 14px;
    height: 20px;
  }
}

.sec-ttl04 {
  position: relative;
  margin-bottom: 17px;
  padding: 15px 12px 11px 30px;
  background-color: #eff5f7;
  border-radius: 4px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .sec-ttl04 {
    margin-bottom: 20px;
    padding: 10px 10px 10px 25px;
    font-size: 1.6rem;
  }
}
.sec-ttl04::before, .sec-ttl04::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 3px;
  margin: auto 0;
}
@media screen and (max-width: 599px) {
  .sec-ttl04::before, .sec-ttl04::after {
    left: 12px;
  }
}
.sec-ttl04::before {
  height: 20px;
  background-color: #67cbec;
}
.sec-ttl04::after {
  top: -10px;
  height: 10px;
  background-color: #2c51a6;
}

.sec-ttl05 {
  position: relative;
  margin-bottom: 30px;
  padding: 10px 10px 8px 32px;
  background-color: #1275b4;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .sec-ttl05 {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-ttl05 {
    margin-bottom: 15px;
    padding: 10px 10px 8px 28px;
    font-size: 1.6rem;
  }
}
.sec-ttl05::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  width: 4px;
  height: calc(100% - 27px);
  margin: auto 0;
  background-color: #8fdaf3;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .sec-ttl05::before {
    left: 14px;
  }
}

.sec-ttl06 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 23px;
  color: #2c51a6;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .sec-ttl06 {
    font-size: 1.6rem;
  }
}
.sec-ttl06::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 5px solid #9dc8e0;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .sec-ttl06::before {
    top: 3px;
    width: 16px;
    height: 16px;
  }
}

.sec-ttl07 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 4px;
  padding-left: 15px;
  border-bottom: 1px dotted #ababad;
  color: #30444d;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .sec-ttl07 {
    margin-bottom: 15px;
    padding-left: 13px;
    font-size: 1.6rem;
  }
}
.sec-ttl07::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 5px;
  height: calc(100% - 13px);
  background-color: #376093;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .sec-ttl07::before {
    width: 4px;
    height: calc(100% - 12px);
  }
}

/*--------------------------------------------------------
text
----------------------------------------------------------*/
.text-body {
  padding-right: 6%;
}
@media screen and (max-width: 599px) {
  .text-body {
    padding-right: 0;
  }
}

.text-base {
  color: #191a1b;
  text-align: justify;
}

.text-bold {
  font-weight: bold;
}

.text-kome {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.text-l {
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .text-l {
    font-size: 1.6rem;
  }
}

.text-caution {
  text-indent: -1em;
  padding-left: 1em;
}

.outline-text-right {
  color: #191a1b;
  text-align: right;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .outline-text-right {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .outline-text-right {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------
_tab
----------------------------------------------------------*/
.tabs {
  position: relative;
}

.tablist {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 500px;
  width: 100%;
  border: none;
  border-radius: 4px;
}
@media screen and (max-width: 1300px) {
  .tablist {
    max-width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .tablist {
    max-width: 400px;
    border-radius: 4px 4px 0 0;
  }
}

button[role=tab] {
  flex: 1;
  margin: 0;
  padding: 16px 0 15px;
  background-color: #f4f5f6;
  color: #374151;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  button[role=tab] {
    padding: 14px 0 13px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  button[role=tab] {
    font-size: 1.3rem;
  }
}
button[role=tab]:not(:last-child) {
  border-right: 1px solid #d7d7d7;
}
button[role=tab][aria-selected=true] {
  background-color: #1c83c4;
  color: #fff;
}

/* =====================================================

_form

===================================================== */
/*　全体共通　*/
input,
button,
textarea,
input[type=text],
input[type=search],
input[type=tel],
input[type=email],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
select:focus {
  outline: none !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #a1a1a1;
}
input::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder {
  color: #a1a1a1;
  opacity: 1;
}
input:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #a1a1a1 !important;
}

textarea {
  resize: vertical;
}

input[type=radio],
input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

input[type=submit],
input[type=button],
label,
button {
  cursor: pointer;
}

/*--リセット ここまで--*/
/* ************************************************************
共通フォームスタイル▼▼▼▼▼▼
・お問い合わせ
・来店予約
・資料請求
**************************************************************/
/*共通処理*/
#inquiry input,
#inquiry textarea,
#inquiry select {
  width: 100%;
  background-color: #f0f0f0;
  padding: 8px 10px;
  resize: vertical;
  box-sizing: border-box;
  border-radius: 2px;
  /* Edge */
}
#inquiry input::-moz-placeholder, #inquiry textarea::-moz-placeholder, #inquiry select::-moz-placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#inquiry input::placeholder,
#inquiry textarea::placeholder,
#inquiry select::placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#inquiry input::-ms-input-placeholder,
#inquiry textarea::-ms-input-placeholder,
#inquiry select::-ms-input-placeholder {
  color: #a1a1a1;
}
#inquiry input:focus,
#inquiry textarea:focus,
#inquiry select:focus {
  outline: none !important;
  box-shadow: none;
}
#inquiry select {
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 14px auto;
  padding-right: 28px;
}
#inquiry select::-ms-expand {
  display: none;
}

.form-tbl-wd220 {
  display: flex;
  align-items: center;
}
.form-tbl-wd220 input {
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd220 input {
    width: 100%;
  }
}
.form-tbl-wd220 span {
  margin-left: 10px;
  display: inline-block;
}

.form-flow {
  margin-bottom: 50px;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .form-flow {
    margin-bottom: 30px;
  }
}
.form-flow > li {
  width: calc((100% - 50px) / 3);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 10px 20px 10px 10px;
  color: #7c7c7c;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-flow > li {
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-flow > li {
    font-size: 1.4rem;
  }
}
.form-flow > li::before {
  content: "";
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: -30px;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 10px;
  border-left-color: #2c51a6;
}
.form-flow > li.active {
  background-color: #1cade2;
  border: 1px solid #1cade2;
  color: #fff;
}
.form-flow > li:last-child::before {
  content: none;
}

.form-head {
  background-color: #ebf2f9;
  border-radius: 6px;
  margin-bottom: 50px;
  padding: 25px;
}
@media screen and (max-width: 599px) {
  .form-head {
    padding: 20px;
    margin-bottom: 35px;
  }
}
.form-head > dt {
  margin-bottom: 15px;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  padding: 1px 0 1px 16px;
}
@media screen and (max-width: 599px) {
  .form-head > dt {
    font-size: 1.7rem;
  }
}
.form-head > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #2c51a6;
  border-radius: 10px;
}
.form-head > dd {
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 22px 22px 22px 22px;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .form-head > dd {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.form-head__text {
  position: relative;
  padding-left: 20px;
  display: block;
  margin-bottom: 10px;
}
.form-head__text:last-of-type {
  margin-bottom: 0;
}
.form-head__text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #2c51a6;
}
.form-head__text .dlt {
  background-color: #fff;
  background-color: #ddd;
  font-size: 1.3rem;
  padding: 3px 10px;
  border-radius: 3px;
  margin-left: 10px;
  cursor: pointer;
  color: #555;
  display: inline-block;
}
.form-head__text .dlt:hover {
  opacity: 0.8;
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .form-tbl {
    margin-bottom: 0;
    border-top: none;
  }
}
.form-tbl th {
  font-family: "Noto Sans JP", sans-serif !important;
  width: 300px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 30px 10px 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: top;
  line-height: 1.3;
  padding-left: 18px;
}
@media screen and (max-width: 1024px) {
  .form-tbl th {
    width: 100%;
    display: block;
    line-height: 1.3;
    padding: 4px 0 13px 16px;
    border-radius: 3px;
    position: relative;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl th {
    font-size: 1.7rem;
  }
}
.form-tbl th::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 4px;
  height: 25px;
  background-color: #2c51a6;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .form-tbl th::before {
    top: 0;
    height: calc(100% - 8px);
  }
}
.form-tbl td {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 1024px) {
  .form-tbl td {
    display: block;
    border-bottom: none;
    padding: 20px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl td {
    padding: 20px 0 35px;
  }
}
.form-tbl--conf th {
  font-size: 1.6rem;
  line-height: 1.4;
}
.form-tbl--conf td {
  word-break: break-all;
  line-height: 1.4;
  font-weight: 400;
}

/*共通必須項目*/
.form-must {
  margin-left: 12px;
  padding: 2px 12px 3px;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: 3px;
  background-color: #ec3d3d;
  color: #fff;
  display: inline-block;
  vertical-align: text-bottom;
}
.form-must--mgnone {
  margin: 0;
}

/*共通ラジオボタン リスト*/
.form-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio-list > li {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 7px;
}
.form-radio-list > li:last-child {
  margin-bottom: 0;
}
.form-radio-list > li input[type=radio] {
  display: none;
}
.form-radio-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label {
    line-height: 1.5;
    padding-top: 2px;
  }
}
.form-radio-list > li label:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 26px;
  height: 26px;
  background: #e4e4e4;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label:before {
    top: 0;
  }
}
.form-radio-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: #2c51a6;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li input[type=radio]:checked + label:after {
    top: 14px;
  }
}

/*住所*/
.form-address-list > li {
  margin-bottom: 14px;
}
.form-address-list > li:last-child {
  margin-bottom: 0;
}
.form-address-list__select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__select {
    flex-wrap: wrap;
  }
}
.form-address-list__select span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__select span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__select select {
  width: calc(100% - 170px) !important;
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-address-list__select select {
    width: 100% !important;
    max-width: 100%;
  }
}
.form-address-list__text {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__text {
    flex-wrap: wrap;
  }
}
.form-address-list__text span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__text span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__text input {
  width: calc(100% - 170px) !important;
}
@media screen and (max-width: 599px) {
  .form-address-list__text input {
    width: 100% !important;
    max-width: 100%;
  }
}

/*お名前/フリガナ*/
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.form-name-list > li {
  display: flex;
  align-items: center;
}
.form-name-list > li input {
  max-width: 220px !important;
}
.form-name-list > li span {
  margin-right: 5px;
  display: block;
  width: 50px;
  text-align: center;
}

.form-address-post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.form-address-post input {
  max-width: 220px !important;
}
@media screen and (max-width: 599px) {
  .form-address-post input {
    max-width: 200px !important;
  }
}
.form-address-post button {
  width: 150px;
  background-color: #597cbd;
  border-radius: 5px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.2;
  padding: 10px;
  height: 42px;
}
@media screen and (min-width: 1025px) {
  .form-address-post button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .form-address-post button {
    width: 110px;
    padding: 15px 5px;
    font-size: 1.5rem;
  }
}

.form-notice-text {
  font-size: 1.4rem;
  color: #e82a2a;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

.form-privacy-text {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .form-privacy-text {
    margin-bottom: 25px;
  }
}
.form-privacy-text a {
  color: #2c51a6;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-privacy-text a:hover {
    text-decoration: none;
  }
}

/*希望日時*/
.form-time-kibou {
  margin-bottom: 30px;
}
.form-time-kibou:last-of-type {
  margin-bottom: 0;
}
.form-time-kibou > dt {
  margin-bottom: 14px;
  line-height: 1.3;
  padding: 3px 0 3px 17px;
  position: relative;
}
.form-time-kibou > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #2c51a6;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .form-time-kibou > dt {
    background-color: #1cade2;
    border-radius: 5px;
    padding: 10px 10px 11px 22px;
  }
  .form-time-kibou > dt::before {
    width: 15px;
    height: 4px;
    top: 19px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.form-time-kibou__date {
  margin-bottom: 10px;
  display: flex;
}
.form-time-kibou__date input {
  max-width: 220px !important;
}
.form-time-kibou__date .ui-datepicker-trigger {
  width: 50px;
  margin-left: 5px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .form-time-kibou__date .ui-datepicker-trigger:hover {
    opacity: 0.8;
  }
}
.form-time-kibou__time {
  display: flex;
  align-items: center;
}
.form-time-kibou__time > span {
  width: 70px;
}
.form-time-kibou__time select {
  max-width: 220px !important;
}

.form-btn {
  margin: 0 auto;
  display: block;
  position: relative;
}
.form-btn input[type=submit] {
  max-width: 270px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1cade2 !important;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  transition: 0.2s;
  background-image: url(../img/common/icon_form_arrow.png);
  background-size: 17px auto;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn input[type=submit]:hover {
    transform: translateY(2px);
  }
}
.form-btn__corrected {
  width: 210px;
  margin: 20px auto 0;
  padding: 14px 17px;
  background-color: #818181;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
  display: block;
  border-radius: 6px;
  transition: 0.2s;
  line-height: 1.3;
  background-image: url(../img/common/icon_form_arrow2.png);
  background-size: 17px auto;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn__corrected:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .form-btn__corrected {
    position: relative;
    margin: 15px auto 0;
    padding: 15px;
  }
}
.form-error {
  margin-bottom: 50px;
  padding: 26px;
  color: #e82a2a;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  border-radius: 4px;
  background-color: #fee9e9;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-error {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .form-error {
    margin-bottom: 20px;
    padding: 15px;
  }
}

.form-error-text {
  margin-bottom: 10px;
  color: #e82a2a;
  line-height: 1.3;
}

.form-send {
  margin-bottom: 35px;
  background-color: #ebf2f9;
  border-radius: 6px;
  text-align: center;
  padding: 70px 20px;
}
@media screen and (max-width: 1024px) {
  .form-send {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-send {
    padding: 40px 20px;
    margin-bottom: 25px;
  }
}
.form-send > dt {
  font-size: 2.7rem;
  color: #2c51a6;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .form-send > dt {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.form-send-btn {
  max-width: 210px;
  margin: 0 auto;
}

/*--------------------------------------------------------
list
----------------------------------------------------------*/
.list-disc > li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .list-disc > li {
    padding-left: 19px;
  }
}
.list-disc > li:not(:last-child) {
  margin-bottom: 5px;
}
.list-disc > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3baad3;
}
@media screen and (max-width: 599px) {
  .list-disc > li::before {
    top: 7px;
  }
}
.list-disc.dark > li::before {
  background-color: #376093;
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-tab {
  display: flex;
  justify-content: center;
  background-color: #ebf2f9;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .news-tab {
    margin-bottom: 15px;
  }
}
.news-tab__list {
  position: relative;
  display: flex;
  width: 480px;
}
@media screen and (max-width: 834px) {
  .news-tab__list {
    width: 380px;
  }
}
@media screen and (max-width: 599px) {
  .news-tab__list {
    width: 100%;
  }
}
.news-tab__list::before {
  border-right: 1px solid #d2dde8;
  content: "";
  height: calc(100% - 24px);
  width: 1px;
  right: 0;
  position: absolute;
  top: 12px;
  bottom: 12px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .news-tab__list::before {
    border-right: none;
  }
}
.news-tab__list__item {
  position: relative;
  width: -webkit-calc(100% / 3);
  width: 33.3333333333%;
}
.news-tab__list__item::before {
  border-right: 1px solid #d2dde8;
  content: "";
  height: calc(100% - 26px);
  width: 1px;
  left: 0;
  position: absolute;
  top: 13px;
  bottom: 13px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .news-tab__list__item:first-child::before {
    border-right: none;
  }
}
.news-tab__list__link {
  position: relative;
  text-align: center;
  display: block;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.3;
  color: #191a1b;
  padding: 20px 10px;
  width: 100%;
  max-width: 160px;
}
@media screen and (max-width: 1024px) {
  .news-tab__list__link {
    padding: 17px 10px;
  }
}
@media screen and (max-width: 834px) {
  .news-tab__list__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .news-tab__list__link {
    font-size: 1.4rem;
    padding: 14px 10px;
  }
}
@media screen and (min-width: 1025px) {
  .news-tab__list__link:hover {
    color: #2c51a6;
  }
}
.news-tab__list__link.active {
  color: #2c51a6;
}
.news-tab__list__link.active::before {
  background: #2c51a6;
  content: "";
  height: 3px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}

.news-list__item {
  border-bottom: 1px solid #d8dce2;
}
.news-list__link {
  display: flex;
  position: relative;
  padding: 28px 0;
}
@media screen and (max-width: 1024px) {
  .news-list__link {
    padding: 22px 30px 22px 0;
  }
}
@media screen and (max-width: 599px) {
  .news-list__link {
    flex-wrap: wrap;
    padding: 16px 25px 16px 0;
  }
}
.news-list__link:hover {
  background-color: #f7fafd;
}
@media screen and (min-width: 1025px) {
  .news-list__link:hover .news-list__title {
    color: #1c83c4;
  }
}
.news-list__date {
  width: 100px;
  margin-top: 5px;
  color: #2c51a6;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .news-list__date {
    width: auto;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.3rem;
  }
}
.news-list__category {
  width: 105px;
  height: 24px;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
}
@media screen and (max-width: 599px) {
  .news-list__category {
    width: 80px;
    height: 20px;
    font-size: 1.1rem;
    line-height: 20px;
  }
}
.news-list__category.event {
  background-color: #24a2dd;
}
.news-list__category.info {
  background-color: #326bc0;
}
.news-list__title {
  flex: 1;
  padding-left: 24px;
  color: #374151;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .news-list__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__title {
    flex: auto;
    width: 100%;
    margin-top: 5px;
    padding-left: 0;
  }
}

.icon-new {
  display: inline-block;
  margin-left: 15px;
  color: #e44a60;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .icon-new {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .icon-new {
    margin-left: 10px;
  }
}

.news-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 45px;
  padding: 34px 35px 48px;
  background-color: #ebf2f9;
}
@media screen and (max-width: 1024px) {
  .news-ttl {
    padding: 34px 25px 38px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl {
    margin-bottom: 25px;
    padding: 17px 10px 20px 18px;
  }
}
.news-ttl::before, .news-ttl::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 5px;
}
@media screen and (max-width: 599px) {
  .news-ttl::before, .news-ttl::after {
    width: 4px;
  }
}
.news-ttl::before {
  height: 100%;
  background-color: #1cade2;
}
.news-ttl::after {
  height: 50%;
  background-color: #2c51a6;
}
.news-ttl__date {
  display: inline-block;
  color: #2c51a6;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .news-ttl__date {
    font-size: 1.4rem;
  }
}
.news-ttl__title {
  width: 100%;
  margin-top: 24px;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .news-ttl__title {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .news-ttl__title {
    margin-top: 15px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl__title {
    margin-top: 7px;
    font-size: 1.7rem;
  }
}
.news-ttl .news-list__category {
  margin-top: -3px;
}
.news-ttl .icon-new {
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .news-ttl .icon-new {
    margin-left: 6px;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  position: relative;
  height: 670px;
  background-image: url(../img/common/main_bg02.webp), url(../img/common/main_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-size: 910px auto, cover;
  background-position: 0 0, 0 0;
  padding: 70px 40px 0px;
}
@media screen and (max-width: 1024px) {
  .top-main {
    height: 550px;
    background-size: 650px auto, cover;
  }
}
@media screen and (max-width: 834px) {
  .top-main {
    height: 500px;
    padding: 70px 30px 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    padding: 64px 20px 0px;
    height: 600px;
    background-size: 450px auto, cover;
  }
}
.top-main::before {
  background-image: url(../img/common/fukuoka.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 248px;
  width: 467px;
  right: 0;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .top-main::before {
    height: 220px;
    width: 350px;
  }
}
@media screen and (max-width: 834px) {
  .top-main::before {
    height: 180px;
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-main::before {
    height: 120px;
    width: 180px;
  }
}
.top-main__inner {
  position: relative;
  max-width: 1532px;
  margin: 0 auto;
  height: 100%;
}
.top-main__info {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 1500px) {
  .top-main__info {
    top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__info {
    top: 40px;
  }
}
.top-main__logo {
  width: 550px;
  transition: 0.3s;
  margin-bottom: 30px;
}
@media screen and (max-width: 1700px) {
  .top-main__logo {
    width: 520px;
  }
}
@media screen and (max-width: 1500px) {
  .top-main__logo {
    width: 468px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__logo {
    max-width: 400px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__logo {
    max-width: 350px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__logo {
    max-width: 270px;
  }
}
.top-main__logo img {
  width: 100%;
  height: auto;
}
.top-main__logo__jp {
  margin-top: 25px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #2c51a6;
  font-size: 2.9rem;
  font-weight: 600;
  padding-left: 62px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1700px) {
  .top-main__logo__jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__logo__jp {
    font-size: 2.5rem;
    padding-left: 50px;
    margin-top: 18px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__logo__jp {
    font-size: 2.1rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__logo__jp {
    margin-top: 10px;
    font-size: 1.8rem;
    padding-left: 25px;
  }
}
.top-main__logo__jp::before {
  background: #2c51a6;
  content: "";
  height: 1px;
  width: 44px;
  left: 0;
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .top-main__logo__jp::before {
    width: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__logo__jp::before {
    width: 32px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__logo__jp::before {
    width: 20px;
  }
}
.top-main__catch {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #1d253c;
  line-height: 1.4;
}
.top-main__catch__copy {
  font-size: 4.9rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1500px) {
  .top-main__catch__copy {
    font-size: 3vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__catch__copy {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__catch__copy {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch__copy {
    font-size: 2.2rem;
    margin-bottom: 5px;
  }
}
.top-main__catch__lead {
  font-size: 2.2rem;
}
@media screen and (max-width: 1500px) {
  .top-main__catch__lead {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 834px) {
  .top-main__catch__lead {
    font-size: 1.4rem;
  }
}
.top-main__image {
  position: absolute;
  left: 650px;
  bottom: -25px;
  z-index: 9;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 1700px) {
  .top-main__image {
    left: 610px;
  }
}
@media screen and (max-width: 1600px) {
  .top-main__image {
    left: 560px;
  }
}
@media screen and (max-width: 1500px) {
  .top-main__image {
    right: 0;
    left: inherit;
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__image {
    right: -100px;
    bottom: -10px;
    width: 70%;
  }
}
@media screen and (max-width: 834px) {
  .top-main__image {
    right: -150px;
    width: 75%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__image {
    right: auto;
    left: 0px;
    width: 100%;
    bottom: -10px;
  }
}

.top-report {
  position: relative;
  padding: 75px 40px;
  background-color: #ebf2f9;
  margin-bottom: 105px;
}
@media screen and (max-width: 1024px) {
  .top-report {
    padding: 60px 40px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 834px) {
  .top-report {
    padding: 45px 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-report {
    padding: 35px 25px;
    margin-bottom: 50px;
  }
}
.top-report::before {
  background: #3058B2;
  background: linear-gradient(90deg, rgb(48, 88, 178) 30%, rgb(49, 182, 244) 100%);
  content: "";
  height: 380px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 834px) {
  .top-report::before {
    height: 280px;
  }
}
@media screen and (max-width: 599px) {
  .top-report::before {
    height: 200px;
  }
}
.top-report__inner {
  position: relative;
  max-width: 1535px;
  margin: 0 auto;
}
.top-report__title {
  margin-bottom: 55px;
  text-align: center;
  color: #fff;
  padding-top: 67px;
  background-image: url(../img/common/icon_report_white.svg);
  background-repeat: no-repeat;
  background-size: 52px auto;
  background-position: center 0;
}
@media screen and (max-width: 1024px) {
  .top-report__title {
    background-size: 46px auto;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 834px) {
  .top-report__title {
    padding-top: 48px;
    background-size: 40px auto;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-report__title {
    margin-bottom: 25px;
  }
}
.top-report__title__en {
  font-family: "Jost", sans-serif;
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-report__title__en {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-report__title__en {
    font-size: 3.8rem;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 599px) {
  .top-report__title__en {
    font-size: 3rem;
    margin-bottom: 4px;
  }
}
.top-report__title__jp {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-report__title__jp {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-report__title__jp {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-report__title__jp {
    font-size: 1.5rem;
  }
}
.top-report .report-list {
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .top-report .report-list {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-report .report-list {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-report .report-list {
    margin-bottom: 30px;
  }
}
.top-report .report-list__item {
  background-color: #fff;
}
.top-report .report-list__link:hover {
  background-color: #f7fafd;
}
.top-report .btn-base {
  max-width: 240px;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .top-report .btn-base {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-report .btn-base {
    font-size: 1.4rem;
  }
}

.top-news {
  padding: 0px 40px;
  margin-bottom: 125px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 0px 30px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 834px) {
  .top-news {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 0px 20px;
    margin-bottom: 55px;
  }
}
.top-news__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .top-news__inner {
    flex-direction: column;
  }
}
.top-news__left {
  width: 190px;
  padding-right: 20px;
}
@media screen and (max-width: 834px) {
  .top-news__left {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0;
  }
}
.top-news__right {
  width: calc(100% - 240px);
}
@media screen and (max-width: 834px) {
  .top-news__right {
    width: 100%;
  }
}
.top-news__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-news__title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title {
    margin-bottom: 15px;
  }
}
.top-news__title__en {
  color: #2c51a6;
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .top-news__title__en {
    font-size: 4.8em;
  }
}
@media screen and (max-width: 834px) {
  .top-news__title__en {
    font-size: 4.6rem;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title__en {
    font-size: 3.9rem;
    margin-bottom: 3px;
  }
}
.top-news__title__jp {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-news__title__jp {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-news__title__jp {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title__jp {
    font-size: 1.5rem;
  }
}
.top-news__more {
  position: relative;
  width: 140px;
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #2c51a6;
  border: 1px solid #2c51a6;
  border-radius: 50px;
  padding: 10px 25px 10px 12px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .top-news__more {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__more {
    font-size: 1.4rem;
    width: 115px;
    padding: 8px 20px 8px 10px;
  }
}
.top-news__more::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #2c51a6;
  border-bottom: 2px solid #2c51a6;
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .top-news__more::after {
    right: 12px;
    border-width: 1px;
  }
}
.top-news__more:hover {
  background-color: #2c51a6;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .top-news__more:hover::after {
    border-color: #fff;
  }
}
.top-news .news-list {
  border-top: 1px solid #d8dce2;
}
.top-news .news-list__link {
  padding: 25x 0;
}
@media screen and (max-width: 599px) {
  .top-news .news-list__link {
    padding: 15px 0;
  }
}
.top-news .news-list__link::before, .top-news .news-list__link::after {
  content: "";
  display: none;
}

.top-link {
  padding: 0 40px;
  margin-bottom: 85px;
}
@media screen and (max-width: 1024px) {
  .top-link {
    padding: 0 30px;
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-link {
    padding: 0 20px;
    margin-bottom: 45px;
  }
}
.top-link__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .top-link__inner {
    flex-direction: column;
    gap: 12px;
  }
}
.top-link__media {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .top-link__media {
    width: 26%;
  }
}
@media screen and (max-width: 599px) {
  .top-link__media {
    width: 100%;
  }
}
.top-link__media__link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background-color: #2275d1;
  border-radius: 10px;
  padding: 120px 20px 115px;
  background-image: url(../img/common/icon_media_white.svg);
  background-repeat: no-repeat;
  background-size: 68px auto;
  background-position: center 30px;
}
@media screen and (max-width: 1024px) {
  .top-link__media__link {
    padding: 110px 20px 85px;
  }
}
@media screen and (max-width: 834px) {
  .top-link__media__link {
    font-size: 1.9rem;
    background-size: 50px auto;
    padding: 90px 20px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__media__link {
    font-size: 1.7rem;
    padding: 25px 30px 25px 50px;
    background-size: 36px auto;
    background-position: 20px center;
    border-radius: 7px;
  }
}
.top-link__media__link::before {
  background-image: url(../img/common/arw_blue02.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-color: rgba(255, 255, 255, 0.9);
  background-position: center center;
  border-radius: 50px;
  content: "";
  height: 60px;
  width: 60px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-link__media__link::before {
    height: 38px;
    width: 38px;
    bottom: 30px;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 834px) {
  .top-link__media__link::before {
    height: 32px;
    width: 32px;
    background-size: 15px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-link__media__link::before {
    background-size: 12px auto;
    height: 22px;
    width: 22px;
    margin: auto;
    left: auto;
    right: 15px;
    top: 0;
    bottom: 0;
  }
}
.top-link__medical {
  width: calc(70% - 15px);
  background-color: #ddf1f8;
  border-radius: 10px;
  padding: 30px 43px;
}
@media screen and (max-width: 1024px) {
  .top-link__medical {
    width: calc(76% - 15px);
    padding: 25px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-link__medical {
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical {
    width: 100%;
    border-radius: 7px;
    padding: 25px 20px 20px;
  }
}
.top-link__medical__ttl {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 2.4rem;
  color: #0a95c9;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .top-link__medical__ttl {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__ttl {
    font-size: 1.8rem;
  }
}
.top-link__medical__ttl span {
  display: inline-block;
  padding: 14px 10px 0px 60px;
  background-image: url(../img/common/icon_medical_blue.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 48px auto;
}
@media screen and (max-width: 834px) {
  .top-link__medical__ttl span {
    padding-top: 16px;
    background-size: 43px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__ttl span {
    line-height: 1.3;
    background-size: 38px auto;
    padding-top: 0;
    padding-left: 50px;
    background-position: center left;
  }
}
.top-link__medical__list {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 834px) {
  .top-link__medical__list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list {
    flex-direction: column;
    gap: 6px;
  }
}
.top-link__medical__list__item {
  width: calc((100% - 15px) / 2);
}
@media screen and (max-width: 834px) {
  .top-link__medical__list__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list__item {
    width: 100%;
  }
}
.top-link__medical__list__link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  background-color: #1cade2;
  padding: 20px 20px 35px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .top-link__medical__list__link {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-link__medical__list__link {
    padding: 15px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list__link {
    font-size: 1.6rem;
    padding: 10px 30px 10px 15px;
    min-height: 70px;
  }
}
.top-link__medical__list__link span {
  display: inline-block;
  padding-top: 45px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .top-link__medical__list__link span {
    padding-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list__link span {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 44px;
  }
}
.top-link__medical__list__link.hosp span {
  background-image: url(../img/common/icon_hosp_white.svg);
  background-position: top center;
  background-size: 44px auto;
}
@media screen and (max-width: 834px) {
  .top-link__medical__list__link.hosp span {
    background-size: 38px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list__link.hosp span {
    background-size: 30px auto;
    background-position: center left;
  }
}
.top-link__medical__list__link.shisetsu span {
  background-image: url(../img/common/icon_shisetsu_white.svg);
  background-position: top center;
  background-size: 46px auto;
}
@media screen and (max-width: 834px) {
  .top-link__medical__list__link.shisetsu span {
    background-size: 40px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list__link.shisetsu span {
    background-size: 32px auto;
    background-position: center left;
  }
}
.top-link__medical__list__link::before {
  background-image: url(../img/common/arw_l-blue.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-color: rgba(255, 255, 255, 0.9);
  background-position: center center;
  border-radius: 50px;
  content: "";
  height: 40px;
  width: 40px;
  right: 20px;
  margin: auto;
  position: absolute;
  bottom: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .top-link__medical__list__link::before {
    height: 32px;
    width: 32px;
    right: 12px;
    background-size: 16px auto;
  }
}
@media screen and (max-width: 834px) {
  .top-link__medical__list__link::before {
    height: 28px;
    width: 28px;
    background-size: 14px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-link__medical__list__link::before {
    height: 22px;
    width: 22px;
    right: 12px;
    background-size: 11px auto;
  }
}

/*--------------------------------------------------------
report
----------------------------------------------------------*/
.report-list {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1500px) {
  .report-list {
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .report-list {
    flex-direction: column;
    gap: 20px;
  }
}
.report-list__item {
  background-color: #ebf2f9;
  width: calc((100% - 132px) / 4);
}
@media screen and (max-width: 1500px) {
  .report-list__item {
    width: calc((100% - 75px) / 4);
  }
}
@media screen and (max-width: 1024px) {
  .report-list__item {
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .report-list__item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .report-list__item {
    width: 100%;
  }
}
.report-list__link {
  display: block;
  height: 100%;
}
.report-list__link:hover {
  background-color: #e4eef8;
}
.report-list__link:hover .report-list__ph img {
  opacity: 0.8;
}
.report-list__link:hover .report-list__title {
  color: #2c51a6;
}
.report-list__link:hover .report-list__text {
  opacity: 0.8;
}
.report-list__ph {
  aspect-ratio: 35/24;
  overflow: hidden;
  background-color: #2c51a6;
}
.report-list__ph img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}
.report-list__box {
  padding: 22px 22px 25px;
}
@media screen and (max-width: 834px) {
  .report-list__box {
    padding: 15px 18px 20px;
  }
}
.report-list__area {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  color: rgba(44, 81, 166, 0.8);
  border: 1px solid #2c51a6;
  border-radius: 50px;
  line-height: 1.4;
  display: inline-block;
  padding: 3px 12px;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .report-list__area {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .report-list__area {
    font-size: 1.2rem;
  }
}
.report-list__title {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #191a1b;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: 0.3s;
}
.report-list__title .corp {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 3px;
}
@media screen and (max-width: 834px) {
  .report-list__title .corp {
    font-size: 1.4rem;
  }
}
.report-list__title .name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .report-list__title .name {
    font-size: 1.9rem;
  }
}
.report-list__text {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6c6c6c;
  line-height: 1.6;
  letter-spacing: 0.08em;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .report-list__text {
    font-size: 1.4rem;
  }
}

/*--------------------------
病院TOP配下
----------------------------*/
.hospital-main {
  display: flex;
  position: relative;
  background-image: url(../img/common/main_bg02.webp), url(../img/common/main_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-size: 750px auto, cover;
  background-position: top bottom, 0 0;
}
@media screen and (max-width: 1024px) {
  .hospital-main {
    background-size: 420px auto, cover;
    background-position: left bottom, 0 0;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main {
    background-size: 320px auto, cover;
    display: block;
  }
}
.hospital-main--top {
  min-height: 675px;
  padding-top: 134px;
}
@media screen and (max-width: 1024px) {
  .hospital-main--top {
    min-height: 500px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main--top {
    padding-top: 64px;
  }
}
.hospital-main--base {
  min-height: 425px;
  padding-top: 92px;
}
@media screen and (max-width: 1024px) {
  .hospital-main--base {
    padding-top: 80px;
    min-height: 340px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main--base {
    padding-top: 0px;
    min-height: inherit;
  }
}
.hospital-main__image {
  position: absolute;
  right: 4.5%;
  height: 540px;
  z-index: 2;
  width: calc(95.5% - 650px);
}
@media screen and (max-width: 1700px) {
  .hospital-main__image {
    width: 58%;
    margin-left: 39.7%;
    right: 2.3%;
  }
}
@media screen and (max-width: 1600px) {
  .hospital-main__image {
    height: 520px;
  }
}
@media screen and (max-width: 1024px) {
  .hospital-main__image {
    height: 360px;
    width: 58%;
    right: 0;
    top: 110px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__image {
    position: relative;
    top: 0;
    height: 330px;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__image {
    height: 190px;
  }
}
.hospital-main--base .hospital-main__image {
  height: 415px;
  right: 0;
  top: 0;
  width: calc(100% - 650px);
}
@media screen and (max-width: 1700px) {
  .hospital-main--base .hospital-main__image {
    width: 58%;
    margin-left: 42%;
  }
}
@media screen and (max-width: 1024px) {
  .hospital-main--base .hospital-main__image {
    height: 300px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main--base .hospital-main__image {
    height: 200px;
    width: 100%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main--base .hospital-main__image {
    height: 150px;
  }
}
.hospital-main__image__slider {
  width: 100%;
  height: 100%;
}
.hospital-main__image__slider .slick-list {
  height: 100%;
  overflow: hidden;
}
.hospital-main__image__slider .slick-track {
  height: 100%;
}
.hospital-main__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
@media screen and (max-width: 599px) {
  .hospital-main__image img {
    position: relative;
  }
}
.hospital-main__contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
.hospital-main__title {
  max-width: 650px;
  margin-bottom: 20px;
  padding: 45px 35px 30px 4.5%;
  margin-right: calc(95.5% - 650px);
}
@media screen and (max-width: 1700px) {
  .hospital-main__title {
    max-width: inherit;
    margin-right: 60.3%;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .hospital-main__title {
    padding: 45px 20px 20px 3%;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__title {
    max-width: inherit;
    width: 100%;
    margin-bottom: 0;
    padding: 20px 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__title {
    padding: 18px 15px !important;
  }
}
.hospital-main--base .hospital-main__title {
  padding-top: 20px;
  margin-right: calc(100% - 650px);
}
@media screen and (max-width: 1700px) {
  .hospital-main--base .hospital-main__title {
    margin-right: 58%;
  }
}
.hospital-main__title__corp {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media screen and (max-width: 1400px) {
  .hospital-main__title__corp {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__title__corp {
    font-size: 1.7rem;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__title__corp {
    font-size: 1.5rem;
  }
}
.hospital-main__title__name {
  font-size: 4.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .hospital-main__title__name {
    font-size: 3.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .hospital-main__title__name {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__title__name {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__title__name {
    font-size: 2.2rem;
  }
}
.hospital-main__title__catch {
  color: #2c51a6;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-top: 26px;
}
@media screen and (max-width: 1024px) {
  .hospital-main__title__catch {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__title__catch {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__title__catch {
    font-size: 1.5rem;
  }
}
.hospital-main__info {
  position: relative;
  padding: 40px 35px 40px 4.5%;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .hospital-main__info {
    padding-left: 3%;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__info {
    padding: 30px 30px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__info {
    padding: 20px 15px;
  }
}
.hospital-main--base .hospital-main__info {
  padding-top: 32px;
  padding-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .hospital-main--base .hospital-main__info {
    padding-top: 28px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main--base .hospital-main__info {
    padding: 12px 30px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main--base .hospital-main__info {
    padding: 10px 15px;
  }
}
.hospital-main__info::before {
  background: #3058B2;
  background: linear-gradient(90deg, rgb(48, 88, 178) 30%, rgb(49, 182, 244) 100%);
  content: "";
  height: 100%;
  width: calc(50% + 600px);
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .hospital-main__info::before {
    width: 100vw;
  }
}
.hospital-main__info__ad {
  position: relative;
  margin-bottom: 20px;
  max-width: calc(650px - 4.5%);
  color: #fff !important;
  background-image: url(../img/common/icon_pin.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  padding-left: 25px;
  padding-right: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 1700px) {
  .hospital-main__info__ad {
    max-width: calc(37.5% + 25px);
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__info__ad {
    max-width: inherit !important;
    font-size: 1.4rem;
    background-size: 13px auto;
    padding-left: 18px;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__info__ad {
    font-size: 1.3rem;
  }
}
.hospital-main--base .hospital-main__info__ad {
  margin-bottom: 0px;
}
.hospital-main__info__ad a.map {
  background-color: #1cade2;
  font-family: "Overpass", sans-serif;
  font-family: 1.3rem;
  line-height: 1;
  color: #fff;
  padding: 3px 12px 0px 12px;
  border-radius: 50px;
  margin-left: 13px;
}
@media screen and (max-width: 834px) {
  .hospital-main__info__ad a.map {
    font-size: 1.3rem;
    margin-left: 8px;
  }
}
.hospital-main__info__ad a.map:hover {
  opacity: 0.8;
}
.hospital-main__info__btn {
  display: flex;
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  max-width: 400px;
  gap: 7px;
}
@media screen and (max-width: 1300px) {
  .hospital-main__info__btn {
    max-width: 355px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-main__info__btn {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}
.hospital-main__info__btn__item {
  width: calc((100% - 7px) / 2);
}
.hospital-main__info__btn__link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 5px;
  color: #fff !important;
  border: 1px solid rgba(235, 242, 249, 0.6);
  width: 100%;
  min-height: 46px;
}
@media screen and (max-width: 834px) {
  .hospital-main__info__btn__link {
    min-height: 42px;
  }
}
.hospital-main__info__btn__link span {
  vertical-align: bottom;
  background-repeat: no-repeat;
}
.hospital-main__info__btn__link.site span {
  padding: 0px 20px;
  background-image: url(../img/common/icon_blank_white.svg);
  background-size: 14px auto;
  background-position: center right;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .hospital-main__info__btn__link.site span {
    background-size: 12px auto;
  }
}
.hospital-main__info__btn__link.site:hover {
  background-color: rgba(235, 242, 249, 0.2);
}
@media screen and (min-width: 1025px) {
  .hospital-main__info__btn__link.tel {
    pointer-events: none;
  }
}
.hospital-main__info__btn__link.tel span {
  font-family: "Overpass", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  padding-left: 18px;
  padding-top: 3px;
  letter-spacing: -0.01em;
  background-image: url(../img/common/icon_phone_white.svg);
  background-size: 15px auto;
  background-position: 0px 2px;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .hospital-main__info__btn__link.tel span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__info__btn__link.tel span {
    font-size: 1.6rem;
    background-size: 13px auto;
  }
}
.hospital-main__info__inquiry {
  position: relative;
  line-height: 1.3;
  font-size: 1.5rem;
  color: #fff !important;
  margin-left: 25px;
}
@media screen and (max-width: 834px) {
  .hospital-main__info__inquiry {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-main__info__inquiry {
    font-size: 1.3rem;
  }
}
.hospital-main__info__inquiry::before {
  content: "";
  height: 14px;
  width: 17px;
  left: -25px;
  position: absolute;
  top: 5px;
  background-image: url(../img/common/icon_mail_white.svg);
  background-repeat: no-repeat;
  background-size: 17px auto;
}
.hospital-main__info__inquiry::after {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: -5px;
}
.hospital-main__info__inquiry:hover {
  opacity: 0.8;
}

.hospital-tab {
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .hospital-tab {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-tab {
    margin-bottom: 40px;
  }
}
.hospital-tab__list {
  width: 100%;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.hospital-tab__list__item {
  width: calc((100% - 6px) / 4);
  min-height: 64px;
}
@media screen and (max-width: 834px) {
  .hospital-tab__list__item {
    min-height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-tab__list__item {
    min-height: 50px;
    width: calc((100% - 6px) / 2) !important;
  }
}
.hospital-tab__list:has(> li:nth-child(2)) li.hospital-tab__list__item {
  width: calc((100% - 2px) / 2);
}
.hospital-tab__list:has(> li:nth-child(3)) li.hospital-tab__list__item {
  width: calc((100% - 4px) / 3);
}
.hospital-tab__list:has(> li:nth-child(4)) li.hospital-tab__list__item {
  width: calc((100% - 6px) / 4);
}
.hospital-tab__list__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191a1b;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.2;
  padding: 7px 28px;
  text-align: center;
  height: 100%;
  background-color: #ebf2f9;
}
@media screen and (max-width: 1400px) {
  .hospital-tab__list__link {
    padding: 7px 28px 7px 15px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-tab__list__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-tab__list__link {
    font-size: 1.4rem;
  }
}
.hospital-tab__list__link::before {
  background-image: url(../img/common/arw_blue.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 14px;
  width: 16px;
  right: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 834px) {
  .hospital-tab__list__link::before {
    right: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .hospital-tab__list__link:hover {
    background-color: #2c51a6;
    color: #fff;
  }
  .hospital-tab__list__link:hover::before {
    background-image: url(../img/common/arw_white.svg);
  }
}
.hospital-tab__list__link.active {
  background-color: #2c51a6;
  color: #fff;
}
.hospital-tab__list__link.active::before {
  background-image: url(../img/common/arw_white.svg);
  transform: rotate(90deg);
  right: 18px;
}
@media screen and (max-width: 834px) {
  .hospital-tab__list__link.active::before {
    right: 13px;
  }
}

.hospital-heading {
  margin-bottom: 55px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .hospital-heading {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-heading {
    margin-bottom: 30px;
  }
}
.hospital-heading__ttl {
  position: relative;
  font-size: 3rem;
  padding: 14px 0px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  margin-bottom: 25px;
  color: #1d253c;
}
@media screen and (max-width: 599px) {
  .hospital-heading__ttl {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }
}
.hospital-heading__ttl::before {
  background: #1cade2;
  border-radius: 50px;
  content: "";
  height: 4px;
  width: 46px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
}
.hospital-heading__lead {
  color: #2c51a6;
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .hospital-heading__lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-heading__lead {
    font-size: 1.7rem;
    padding: 0px 10px;
    line-height: 1.6;
  }
}

.hospital-outline {
  margin-top: 70px;
  background-color: #ebf2f9;
  padding: 55px 60px;
}
@media screen and (max-width: 1024px) {
  .hospital-outline {
    padding: 42px 30px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-outline {
    padding: 30px 15px 25px;
  }
}
.hospital-outline__inner {
  background-color: #fff;
  padding: 50px 55px 45px;
}
@media screen and (max-width: 1024px) {
  .hospital-outline__inner {
    padding: 40px 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-outline__inner {
    padding: 25px 20px 15px;
  }
}
.hospital-outline__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.7rem;
  color: #2c51a6;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
  padding-top: 45px;
  background-image: url(../img/common/icon_hosp_blue.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 44px auto;
}
@media screen and (max-width: 599px) {
  .hospital-outline__title {
    font-size: 1.9rem;
    background-size: 36px auto;
    padding-top: 35px;
    margin-bottom: 16px;
  }
}
.hospital-outline__name {
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
  margin-bottom: 22px;
  padding-left: 19px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .hospital-outline__name {
    font-size: 1.7rem;
    letter-spacing: 0;
    padding-left: 12px;
    margin-bottom: 15px;
  }
}
.hospital-outline__name::before {
  background: #2c51a6;
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  left: 0;
  position: absolute;
  top: 3px;
}
@media screen and (max-width: 599px) {
  .hospital-outline__name::before {
    top: 4px;
    width: 4px;
  }
}
.hospital-outline__tbl {
  width: 100%;
}
.hospital-outline__tbl th,
.hospital-outline__tbl td {
  padding: 20px 12px;
  border-top: 1px solid #dfe0e2;
  color: #191a1b;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .hospital-outline__tbl th,
  .hospital-outline__tbl td {
    padding: 20px 5px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-outline__tbl th,
  .hospital-outline__tbl td {
    display: block;
    width: 100% !important;
    padding: 10px 0px;
    font-size: 1.4rem;
  }
}
.hospital-outline__tbl th {
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #2c51a6;
  width: 195px;
  text-align: left;
  padding-left: 0;
}
@media screen and (max-width: 834px) {
  .hospital-outline__tbl th {
    width: 130px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-outline__tbl th {
    border-top: none;
    width: 95px;
    padding: 5px 0px 5px 12px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-outline__tbl th::before {
    background: #2c51a6;
    content: "";
    height: 7px;
    width: 7px;
    left: 0;
    position: absolute;
    top: 14px;
  }
}
.hospital-outline__btn {
  display: block;
  max-width: 280px;
  margin: 20px auto 0px;
}
@media screen and (max-width: 599px) {
  .hospital-outline__btn {
    margin-top: 15px;
  }
}
.hospital-outline__btn .btn-base {
  padding-right: 15px;
  font-size: 1.5rem;
  background-color: #1cade2;
}
@media screen and (max-width: 599px) {
  .hospital-outline__btn .btn-base {
    font-size: 1.4rem;
  }
}
.hospital-outline__btn .btn-base::after {
  display: none;
}
.hospital-outline__btn .btn-base span {
  padding-left: 26px;
  background-image: url(../img/common/icon_mail_white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0px 4px;
}
.hospital-outline__map {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  .hospital-outline__map {
    margin-top: 30px;
  }
}
.hospital-outline__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 599px) {
  .hospital-outline__map iframe {
    aspect-ratio: 4/5;
  }
}

.hospital-doctor {
  background-color: #ebf2f9;
  padding: 50px;
  margin-bottom: 65px;
}
@media screen and (max-width: 834px) {
  .hospital-doctor {
    padding: 45px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-doctor {
    padding: 35px 22px;
    margin-bottom: 35px;
  }
}
.hospital-doctor__box {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .hospital-doctor__box {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box {
    gap: 18px;
  }
}
.hospital-doctor__box__ph {
  width: 300px;
}
@media screen and (max-width: 834px) {
  .hospital-doctor__box__ph {
    width: 270px;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__ph {
    width: 78%;
  }
}
.hospital-doctor__box__ph img {
  max-width: 100%;
}
.hospital-doctor__box__info {
  flex: 1;
}
.hospital-doctor__box__info .doctor-name {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  padding: 12px 5px 12px 25px;
  line-height: 1.4;
  margin-bottom: 35px;
  border-bottom: 1px solid #ced5dc;
  color: #1d253c;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-name {
    padding-left: 16px;
    margin-bottom: 20px;
  }
}
.hospital-doctor__box__info .doctor-name::before, .hospital-doctor__box__info .doctor-name::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: calc(100% - 20px);
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-name::before, .hospital-doctor__box__info .doctor-name::after {
    width: 4px;
  }
}
.hospital-doctor__box__info .doctor-name::before {
  background: #1cade2;
}
.hospital-doctor__box__info .doctor-name::after {
  background: #2c51a6;
  height: calc(50% - 8px);
}
.hospital-doctor__box__info .doctor-name__position {
  padding-top: 2px;
  font-size: 1.8rem;
  margin-right: 14px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-name__position {
    width: 100%;
    font-size: 1.4rem;
    margin-right: 5px;
    margin-right: 10px;
  }
}
.hospital-doctor__box__info .doctor-name__sign {
  font-size: 2.6rem;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-name__sign {
    font-size: 2.2rem;
  }
}
.hospital-doctor__box__info .doctor-name__kana {
  padding-top: 2px;
  font-size: 1.7rem;
  color: #5a6072;
  margin-left: 16px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-name__kana {
    margin-left: 10px;
    font-size: 1.4rem;
  }
}
.hospital-doctor__box__info .doctor-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}
.hospital-doctor__box__info .doctor-list dt {
  position: relative;
  width: 160px;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #2c51a6;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-list dt {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}
.hospital-doctor__box__info .doctor-list dt::before {
  background: #2c51a6;
  content: "";
  height: 3px;
  width: 12px;
  left: 0;
  position: absolute;
  top: 12px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-list dt::before {
    top: 10px;
  }
}
.hospital-doctor__box__info .doctor-list dd {
  width: calc(100% - 160px);
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__box__info .doctor-list dd {
    width: 100%;
  }
}
.hospital-doctor__prof {
  margin-top: 30px;
}
@media screen and (max-width: 834px) {
  .hospital-doctor__prof {
    margin-top: 20px;
  }
}
.hospital-doctor__prof__ttl {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  color: #1cade2;
  margin-bottom: -20px;
  margin-left: 30px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__prof__ttl {
    margin-left: 20px;
  }
}
.hospital-doctor__prof__text {
  background-color: #fff;
  padding: 35px 30px 30px;
}
@media screen and (max-width: 599px) {
  .hospital-doctor__prof__text {
    padding: 30px 20px 20px;
  }
}

.hospital-contact {
  background-color: #ebf2f9;
  padding: 50px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .hospital-contact {
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .hospital-contact {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-contact {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-contact {
    padding: 30px;
    gap: 10px;
  }
}
.hospital-contact__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  padding: 15px 35px 15px 0px;
  border-right: 1px solid #cfdae4;
}
@media screen and (max-width: 1200px) {
  .hospital-contact__title {
    padding-right: 25px;
  }
}
@media screen and (max-width: 834px) {
  .hospital-contact__title {
    border-right: none;
    border-bottom: 1px solid #cfdae4;
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .hospital-contact__title {
    font-weight: 500;
  }
}
.hospital-contact__title__corp {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .hospital-contact__title__corp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-contact__title__corp {
    font-size: 1.5rem;
  }
}
.hospital-contact__title__name {
  font-size: 2.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .hospital-contact__title__name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .hospital-contact__title__name {
    font-size: 2rem;
  }
}
.hospital-contact__box {
  flex: 1;
  padding: 15px 0px;
}
@media screen and (max-width: 834px) {
  .hospital-contact__box {
    padding-bottom: 0;
  }
}
.hospital-contact__box__ad {
  position: relative;
  margin-bottom: 20px;
  max-width: 650px;
  background-image: url(../img/common/icon_pin_blue.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  padding-left: 25px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .hospital-contact__box__ad {
    font-size: 1.3rem;
    background-size: 13px auto;
    padding-left: 18px;
  }
}
.hospital-contact__box__ad a.map {
  background-color: #1cade2;
  font-family: "Overpass", sans-serif;
  font-family: 1.3rem;
  line-height: 1;
  color: #fff;
  padding: 3px 12px 0px 12px;
  border-radius: 50px;
  margin-left: 13px;
}
.hospital-contact__box__ad a.map:hover {
  opacity: 0.8;
}
@media screen and (max-width: 599px) {
  .hospital-contact__box__ad a.map {
    font-size: 1.3rem;
    margin-left: 8px;
  }
}
.hospital-contact__box__btn {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .hospital-contact__box__btn__item {
    flex-direction: column;
    width: 100%;
    gap: 7px;
  }
}
.hospital-contact__box__btn__link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  color: #2c51a6 !important;
  border: 1px solid #7891c7;
  width: 100%;
  min-height: 52px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .hospital-contact__box__btn__link {
    padding: 5px 12px;
  }
}
@media screen and (max-width: 599px) {
  .hospital-contact__box__btn__link {
    min-height: 46px;
    font-weight: 500;
  }
}
.hospital-contact__box__btn__link span {
  vertical-align: bottom;
  background-repeat: no-repeat;
}
.hospital-contact__box__btn__link.site span {
  padding: 0px 20px 0px 6px;
  background-image: url(../img/common/icon_blank_blue.svg);
  background-size: 14px auto;
  background-position: center right;
  line-height: 1.2;
}
.hospital-contact__box__btn__link.site:hover {
  background-color: rgba(44, 81, 166, 0.8);
  color: #fff !important;
}
@media screen and (min-width: 1025px) {
  .hospital-contact__box__btn__link.tel {
    pointer-events: none;
  }
}
.hospital-contact__box__btn__link.tel span {
  font-family: "Overpass", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  padding-left: 18px;
  padding-top: 3px;
  letter-spacing: -0.03em;
  background-image: url(../img/common/icon_phone_blue.svg);
  background-size: 15px auto;
  background-position: 0px 2px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .hospital-contact__box__btn__link.tel span {
    padding-top: 0;
  }
}
.hospital-contact__box__btn__link.inquiry {
  background-color: #1cade2;
  border: none;
  color: #fff !important;
}
.hospital-contact__box__btn__link.inquiry span {
  padding: 0px 8px 0px 25px;
  padding-top: 3px;
  letter-spacing: -0.01em;
  background-image: url(../img/common/icon_mail_white.svg);
  background-size: 18px auto;
  background-position: 0px 6px;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .hospital-contact__box__btn__link.inquiry span {
    padding-top: 0;
    background-position: 0px 3px;
  }
}
.hospital-contact__box__btn__link.inquiry:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------
sitemap
----------------------------------------------------------*/
.sitemap-title {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sitemap-title {
    height: 50px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-title {
    height: 40px;
    margin-bottom: 20px;
  }
}
.sitemap-title:last-child {
  margin-bottom: 0;
}
.sitemap-title__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #eff6f8;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: #2c51a6;
  padding-left: 63px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .sitemap-title__link {
    font-size: 1.8rem;
    padding-left: 48px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-title__link {
    font-size: 1.6rem;
    padding-left: 41px;
  }
}
.sitemap-title__link::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background-color: #2c51a6;
  background-image: url(../img/common/arrow.png);
  background-size: 12px auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  left: 20px;
  top: calc(50% - 14px);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .sitemap-title__link::before {
    width: 24px;
    height: 24px;
    left: 15px;
    top: calc(50% - 12px);
  }
}
@media screen and (max-width: 599px) {
  .sitemap-title__link::before {
    width: 21px;
    height: 21px;
    background-size: 10px auto;
    left: 12px;
    top: calc(50% - 11px);
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-title__link:hover {
    color: #1cade2;
  }
  .sitemap-title__link:hover::before {
    background-color: #1cade2;
  }
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list {
    margin-top: 0;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    margin-top: -2px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list {
    margin-top: -2px;
    margin-bottom: 15px;
  }
}
.sitemap-list__item {
  line-height: 1;
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__item {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item {
    margin-bottom: 12px;
  }
}
.sitemap-list__item.w04 {
  width: 25%;
}
@media screen and (max-width: 834px) {
  .sitemap-list__item.w04 {
    width: 100%;
  }
}
.sitemap-list__item.w50 {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .sitemap-list__item.w50 {
    width: 100%;
  }
}
.sitemap-list__item__link {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
  color: #2c51a6;
  padding-left: 27px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item__link {
    font-size: 1.6rem;
    padding-left: 26px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__link {
    font-size: 1.5rem;
    padding-left: 25px;
  }
}
.sitemap-list__item__link::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  border: 2px solid #2c51a6;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item__link::before {
    top: 1px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__link::before {
    top: 0;
  }
}
.sitemap-list__item__link::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2c51a6;
  border-right: 2px solid #2c51a6;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item__link::after {
    top: 8px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #2c51a6;
    border-right: 2px solid #2c51a6;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__link::after {
    top: 7px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #2c51a6;
    border-right: 2px solid #2c51a6;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__item__link:hover {
    color: #1cade2;
  }
  .sitemap-list__item__link:hover::before {
    border: 2px solid #1cade2;
  }
  .sitemap-list__item__link:hover::after {
    width: 6px;
    height: 6px;
    border-top: 2px solid #1cade2;
    border-right: 2px solid #1cade2;
    transform: rotate(45deg);
  }
}

/*--------------------------------------------------------
privacy
----------------------------------------------------------*/
.privacy-section:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .privacy-section:not(:last-child) {
    margin-bottom: 30px;
  }
}

.privacy-ttl {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.5rem;
  color: #191a1b;
  font-weight: 500;
  border-bottom: 2px solid #e4e8ed;
}
@media screen and (max-width: 1024px) {
  .privacy-ttl {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 834px) {
  .privacy-ttl {
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .privacy-ttl {
    margin-bottom: 15px;
    padding-bottom: 6px;
    font-size: 1.9rem;
  }
}
.privacy-ttl::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 98px;
  height: 2px;
  background-color: #2c51a6;
}
@media screen and (max-width: 834px) {
  .privacy-ttl::before {
    width: 76px;
  }
}

.privacy-box {
  padding: 20px 25px;
  background-color: #ebf2f9;
}
@media screen and (max-width: 599px) {
  .privacy-box {
    padding: 15px 20px;
  }
}

.privacy-list {
  padding: 20px 25px;
  background-color: #ebf2f9;
}
@media screen and (max-width: 599px) {
  .privacy-list {
    padding: 15px 20px;
  }
}
.privacy-list > dt {
  position: relative;
  margin-bottom: 3px;
  padding-left: 12px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .privacy-list > dt {
    padding-left: 12px;
    font-size: 1.6rem;
  }
}
.privacy-list > dt::before, .privacy-list > dt::after {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
}
.privacy-list > dt::before {
  top: 8px;
  height: 16px;
  background-color: #2c51a6;
}
@media screen and (max-width: 1024px) {
  .privacy-list > dt::before {
    top: 6px;
    height: 14px;
  }
}
.privacy-list > dt::after {
  top: 16px;
  height: 8px;
  background-color: #1cade2;
}
@media screen and (max-width: 1024px) {
  .privacy-list > dt::after {
    top: 14px;
    height: 7px;
  }
}/*# sourceMappingURL=style.css.map */