@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@500;600;700&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;
  }
}
/* 1500以上 */
@media screen and (max-width: 1500px) {
  .only1500 {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1300以上 */
@media screen and (max-width: 1300px) {
  .only1300 {
    display: none !important;
  }
}
/* 1200以上 */
@media screen and (max-width: 1200px) {
  .only1200 {
    display: none !important;
  }
}
/* タブレット02以上 */
@media screen and (max-width: 834px) {
  .onlytb834 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    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;
  }
}
/* タブレット02のみ */
@media screen and (max-width: 599px), (min-width: 901px) {
  .tb834 {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print, screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*基本青色*/
/*基本のダーク青色*/
/*基本の水色背景色*/
/*--------------------------------------------------------

	リセット : 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%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #1e3142;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.9;
  font-size: 1.7rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  text-rendering: optimizeSpeed;
  z-index: 0;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 1.5rem;
  }
}

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

/*テーブル指定*/
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;
}

/*キーボード操作フォーカス*/
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 #444 !important;
}

/*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;
  backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 5mm;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.2s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #197cb4;
  text-decoration: underline;
}

/*すべての要素の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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -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;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #235885;
  /* Change as appropriate */
  color: #444;
  /* 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;
  }
}
body.wysiwyg {
  background: #fff !important;
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !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;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !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: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mlr-05 {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.ml-05 {
  margin-left: -0.5em;
}

/*フォントサイズ*/
.fz20 {
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 834px) {
  .fz20 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .fz20 {
    font-size: 1.8rem;
  }
}

.fz25 {
  font-size: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 834px) {
  .fz25 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .fz25 {
    font-size: 2.1rem;
  }
}

.fz30 {
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .fz30 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .fz30 {
    font-size: 2.3rem;
  }
}

.anchor {
  margin-top: -140px;
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .anchor {
    margin-top: -55px;
    padding-top: 55px;
  }
}

@media print {
  .tb, .tb834, .sp, .w320 {
    display: none !important;
  }
  body {
    width: 1400px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  .header {
    position: relative !important;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125px;
  z-index: 100;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 100px;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(7px);
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 74px;
  }
}

.site-logo {
  position: absolute;
  top: 35px;
  left: 30px;
  width: 284px;
}
.site-logo img {
  max-width: 284px;
}
.site-logo {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .site-logo {
    top: 23px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .site-logo {
    top: 0;
    left: 0;
    width: calc(100% - 135px);
    height: 74px;
    display: flex;
    align-items: center;
    padding-left: 8px;
  }
  .site-logo img {
    max-width: 200px;
  }
}
.site-logo__wrapper {
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .site-logo__wrapper:hover {
    opacity: 0.8;
  }
}
.site-logo__wrapper img {
  width: 100%;
}

.header-nav-wrapper {
  position: fixed;
  top: 25px;
  right: 230px;
  height: 70px;
}

.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(7px);
  height: 70px;
  padding: 0px 2vw;
  gap: 1.6vw;
}
@media print, screen and (max-width: 1400px) {
  .header-nav {
    padding: 0px 15px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 1200px) {
  .header-nav {
    display: none;
  }
}
.header-nav.shadow {
  box-shadow: 0 0 20px rgba(147, 201, 247, 0.5);
}
.header-nav__item {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  line-height: 1.2;
  height: 100%;
}
@media print, screen and (max-width: 1600px) {
  .header-nav__item {
    font-size: 1.6rem;
  }
}
.header-nav__item > a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #224564;
  letter-spacing: 0.02em;
  text-decoration: none;
  height: 100%;
  padding: 10px 0px;
}
@media print, screen and (min-width: 1025px) {
  .header-nav__item > a:hover {
    color: #197cb4;
  }
}
@media print, screen and (max-width: 1400px) {
  .header-nav__item > a {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
.header-nav__item > a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: 0 auto;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: #2E8EC5;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 51%, rgb(10, 91, 153) 100%);
}

.header-nav__btn {
  position: fixed;
  z-index: 110;
  top: 25px;
  right: 25px;
  display: flex;
  gap: 10px;
  height: 70px;
}
@media screen and (max-width: 1024px) {
  .header-nav__btn {
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__btn {
    right: 6px;
    top: 8px;
    height: 60px;
    gap: 5px;
  }
}
.header-nav__btn__item {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  padding: 43px 15px 14px;
  background-color: #16bfbd;
  background-image: url(../img/common/icon_calendar_white.svg);
  background-position: center top 13px;
  background-repeat: no-repeat;
  background-size: 22px auto;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .header-nav__btn__item {
    width: 60px;
    font-size: 1.1rem;
    padding: 42px 5px 5px;
    border-radius: 8px;
  }
}
@media print, screen and (min-width: 1025px) {
  .header-nav__btn__item:hover {
    opacity: 0.8;
  }
}

.header-tel-sp {
  position: absolute;
  right: 80px;
  width: 80px;
  height: 100%;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .header-tel-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .header-tel-sp {
    right: 60px;
    width: 60px;
  }
}
.header-tel-sp > a {
  display: block;
  height: 100%;
  padding-top: 46px;
  background-color: #eee;
  background-image: url(../img/common/icon_phone.svg);
  background-repeat: no-repeat;
  background-position: center top 15px;
  background-size: 28px auto;
  color: #197cb4;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .header-tel-sp > a {
    background-position: center top 12px;
    background-size: 26px auto;
    padding-top: 39px;
    font-size: 1.1rem;
  }
}

.nav-btn {
  position: relative;
  width: 90px;
  height: 100%;
  color: #ffffff;
  background-color: #235885;
  border: none;
  z-index: 200;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .nav-btn {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .nav-btn {
    width: 58px;
    border-radius: 8px;
  }
}
@media print, screen and (min-width: 1025px) {
  .nav-btn:hover::after {
    opacity: 0.7;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.nav-btn__menu {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 31.1%;
  height: 2px;
  background-color: #ffffff;
  margin: -1px auto 0;
  z-index: 1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.nav-btn__menu:before, .nav-btn__menu:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-btn__menu:before {
  margin-top: -10px;
}
@media screen and (max-width: 599px) {
  .nav-btn__menu:before {
    margin-top: -7px;
  }
}
.nav-btn__menu:after {
  margin-top: 8px;
}
@media screen and (max-width: 599px) {
  .nav-btn__menu:after {
    margin-top: 5px;
  }
}
.nav-btn.close .nav-btn__menu {
  background-color: transparent !important;
}
.nav-btn.close .nav-btn__menu:before {
  margin-top: 0;
  transform: rotate(-45deg);
}
.nav-btn.close .nav-btn__menu:after {
  margin-top: 0;
  transform: rotate(-135deg);
}

@media print, screen and (min-width: 1025px) {
  .top-scrollmenu {
    opacity: 0;
    -webkit-animation: fadeIn 0.3 ease-in 0.3s 1 forwards;
    animation: fadeIn 0.3s ease-in 0.3s 1 forwards;
    z-index: 10;
  }
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
.footer-wrapper01 {
  display: flex;
  justify-content: center;
  background-image: url(../img/common/f_bnr-bg.png);
  background-color: #e1f0ff;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer-wrapper01 {
    padding: 25px 20px;
  }
}
.footer-wrapper01 .footer-bnr {
  display: flex;
  gap: 15px;
  width: 520px;
}
@media screen and (max-width: 599px) {
  .footer-wrapper01 .footer-bnr {
    gap: 5px;
  }
}
.footer-wrapper01 .footer-bnr__item {
  box-shadow: 0 0 20px rgba(100, 156, 188, 0.1);
}
@media print, screen and (min-width: 1025px) {
  .footer-wrapper01 .footer-bnr__item:hover {
    opacity: 0.75;
  }
}

.footer-wrapper02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  max-width: 1130px;
  margin: 0 auto;
  padding: 60px 40px;
}
@media screen and (max-width: 834px) {
  .footer-wrapper02 {
    padding: 50px 30px 50px;
    gap: 35px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 45px 20px 30px;
    gap: 30px;
  }
}
.footer-wrapper02__left {
  flex: 1;
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__left {
    width: 100%;
  }
}
.footer-wrapper02__right {
  width: 530px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__right {
    width: 59%;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__right {
    width: 100%;
  }
}

.footer-info {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
  }
}
.footer-info__logo {
  width: 100%;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e8f2;
}
@media screen and (max-width: 834px) {
  .footer-info__logo {
    padding-top: 5px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-info__logo {
    text-align: center;
    padding-right: 0;
    padding-bottom: 18px;
  }
}
.footer-info__logo > a {
  display: inline-block;
  max-width: 284px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .footer-info__logo > a {
    max-width: 250px;
  }
}
.footer-info__logo > a img {
  width: 100%;
}
.footer-info__address {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #6a7d8e;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .footer-info__address {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-info__address {
    text-align: center;
  }
}
.footer-info__address > a {
  color: #494949;
  text-decoration: none;
}
.footer-info__tel {
  display: inline-block;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .footer-info__tel {
    text-align: center;
    max-width: 240px;
    margin: 0 auto 10px;
  }
}
.footer-info__tel__ttl {
  margin-bottom: 5px;
  padding: 7px 20px;
  border-radius: 50px;
  background-color: #197cb4;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .footer-info__tel__ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-info__tel__ttl {
    margin-bottom: 5px;
  }
}
.footer-info__tel__num {
  position: relative;
  font-size: 3.8rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  color: #224564;
  letter-spacing: 0;
  padding-left: 28px;
  line-height: 1.3;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 23px auto;
  background-position: 0 12px;
}
@media screen and (max-width: 834px) {
  .footer-info__tel__num {
    font-size: 3.3rem;
    background-size: 20px auto;
    padding-left: 22px;
  }
}
.footer-info__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 834px) {
  .footer-info__sns {
    margin-top: 10px;
    gap: 14px;
  }
}
@media screen and (max-width: 599px) {
  .footer-info__sns {
    margin-top: 0;
    justify-content: center;
  }
}
.footer-info__sns__item {
  display: block;
  width: 28px;
}
@media print, screen and (min-width: 1025px) {
  .footer-info__sns__item:hover {
    opacity: 0.7;
  }
}
.footer-info__hontai-link {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .footer-info__hontai-link {
    text-align: center;
  }
}
.footer-info__hontai-link > a {
  display: inline-block;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(106, 132, 145, 0.3);
  padding: 10px 30px 15px 20px;
}
@media print, screen and (min-width: 1025px) {
  .footer-info__hontai-link > a:hover {
    opacity: 0.8;
  }
}
.footer-info__hontai-link img {
  width: 100%;
  max-width: 180px;
}
@media screen and (max-width: 1024px) {
  .footer-info__hontai-link img {
    max-width: 160px;
  }
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 350px;
  position: relative;
  padding-top: 56.25%;
}
@media screen and (max-width: 834px) {
  .footer-map {
    height: 320px;
  }
}
@media screen and (max-width: 599px) {
  .footer-map {
    border-radius: 8px;
    height: 250px;
  }
}
.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-copyright {
  background-color: #1b7fb6;
  padding: 15px;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer-copyright {
    padding: 10px;
    letter-spacing: 0;
  }
}

.pagetitle {
  margin-top: 125px;
  position: relative;
  height: 260px;
  padding: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    margin-top: 100px;
    height: 220px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    height: 190px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    margin-top: 76px;
    height: 120px;
  }
}
.pagetitle-title {
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 2;
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 70px;
}
@media screen and (max-width: 1024px) {
  .pagetitle-title {
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-title {
    padding-left: 15px;
  }
}
.pagetitle-text {
  position: relative;
  min-width: 480px;
  min-height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 35px 25px 50px;
  background-color: #fff;
  border-radius: 10px;
  color: #224564;
  font-size: 3.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  line-height: 1.15;
}
@media screen and (max-width: 1024px) {
  .pagetitle-text {
    font-size: 3rem;
    min-width: 360px;
    min-height: 110px;
    padding-left: 35px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle-text {
    min-width: 300px;
    min-height: 96px;
    font-size: 2.6rem;
    padding-left: 25px;
    border-radius: 7px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-text {
    font-size: 1.9rem;
    min-width: 180px;
    min-height: auto;
    padding: 20px 15px;
    border-radius: 6px;
  }
}
.pagetitle-text::before {
  background: #2E8EC5;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 51%, rgb(10, 91, 153) 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 50px;
  height: 5px;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .pagetitle-text::before {
    left: 35px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle-text::before {
    left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-text::before {
    left: 15px;
    width: 35px;
    height: 4px;
  }
}
.pagetitle-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.pagetitle-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagetitle-img::before {
  background: rgba(0, 37, 104, 0.08);
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
}

.l-wrapper {
  position: relative;
  padding: 0 0px 100px;
}
@media print, screen and (max-width: 1600px) {
  .l-wrapper {
    padding: 0 0px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .l-wrapper {
    margin-top: 100px;
    padding: 0px;
  }
}
@media screen and (max-width: 599px) {
  .l-wrapper {
    margin-top: 74px;
  }
}

.main-wrapper {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main-wrapper {
    padding: 35px 40px 60px;
  }
}
@media screen and (max-width: 834px) {
  .main-wrapper {
    padding: 25px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .main-wrapper {
    padding: 25px 20px 40px;
  }
}
.main-wrapper--full {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .main-wrapper--full {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .main-wrapper--full {
    margin-bottom: 40px;
  }
}
.main-wrapper--full .contents-wrapper {
  width: 100%;
  padding-left: 0;
}
@media print, screen and (min-width: 1025px) {
  .main-wrapper--full .contents-wrapper .contents-wrapper__inner {
    max-width: 1080px;
  }
}

.contents-wrapper {
  flex: 1;
  position: relative;
  width: calc(100% - 300px);
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.contents-wrapper__inner {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .contents-wrapper__inner {
    max-width: 1140px;
    padding: 0 40px 0 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.side {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .side {
    width: 100%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .side {
    width: 100%;
    margin-top: 45px;
  }
}

.text-center {
  text-align: center;
}

#admin-show-preview {
  padding: 20px;
  top: 20px;
  right: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  background: #678;
  position: fixed;
  z-index: 3000;
}

@media screen and (max-width: 599px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs-list {
  width: 100%;
  padding: 10px 30px;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs-list {
    padding: 10px 40px;
  }
}
@media screen and (max-width: 834px) {
  .breadcrumbs-list {
    padding: 10px 30px;
  }
}
.breadcrumbs-list__item {
  color: #677a8b;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  display: inline;
}
@media screen and (max-width: 834px) {
  .breadcrumbs-list__item {
    font-size: 1.3rem;
  }
}
.breadcrumbs-list__item a {
  color: #677a8b;
  position: relative;
  text-decoration: none;
}
.breadcrumbs-list__item a::after {
  content: ">";
  color: #677a8b;
  padding: 0 5px;
}
@media screen and (max-width: 599px) {
  .breadcrumbs-list__item a::after {
    padding: 0 0px 0px 5px;
  }
}

.title-main, .title-sec01 {
  position: relative;
  color: #224564;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.07em;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .title-main, .title-sec01 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .title-main, .title-sec01 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .title-main, .title-sec01 {
    font-size: 2.3rem;
    padding-bottom: 15px;
  }
}
.title-main::before, .title-sec01::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100px;
  height: 4px;
  background-color: #197cb4;
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .title-main::before, .title-sec01::before {
    height: 3px;
    width: 60px;
  }
}

.title-main {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .title-main {
    margin-bottom: 25px;
  }
}
.title-main:has(+ .title-block .title-sec02) {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .title-main:has(+ .title-block .title-sec02) {
    margin-bottom: 20px;
  }
}

.title-sec02 {
  position: relative;
  color: #224564;
  font-size: 2.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 0 14px 26px;
}
@media screen and (max-width: 1024px) {
  .title-sec02 {
    font-size: 2.4rem;
    padding-left: 16px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02 {
    font-size: 2rem;
    -webkit-text-stroke: 0;
    padding: 4px 0 10px 14px;
  }
}
.title-sec02::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 0;
  width: 5px;
  height: 44px;
  background-color: #197cb4;
  border-radius: 2.5px;
}
@media screen and (max-width: 1024px) {
  .title-sec02::before {
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02::before {
    top: 6px;
    width: 4px;
    height: 26px;
  }
}

.title-sec03 {
  position: relative;
  color: #224564;
  font-size: 2.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 1px solid #e5e5e5;
  padding: 5px 0 17px 34px;
}
@media screen and (max-width: 1024px) {
  .title-sec03 {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03 {
    font-size: 1.8rem;
    padding: 0 0 12px 22px;
  }
}
.title-sec03::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #2E8EC5;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 51%, rgb(10, 91, 153) 100%);
}
@media screen and (max-width: 599px) {
  .title-sec03::after {
    width: 14px;
    height: 3px;
    top: 10px;
  }
}

.title-sec04 {
  position: relative;
  color: #224564;
  font-size: 2.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .title-sec04 {
    font-size: 1.9rem;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04 {
    font-size: 1.7rem;
    padding-bottom: 12px;
  }
}
.title-sec04::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 3px;
  background-color: #197cb4;
  border-radius: 1.5px;
}
@media screen and (max-width: 599px) {
  .title-sec04::before {
    width: 25px;
  }
}

.title-sec05 {
  position: relative;
  color: #224564;
  font-size: 2.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  padding: 8px 0 8px 30px;
}
@media screen and (max-width: 1024px) {
  .title-sec05 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05 {
    padding: 5px 0 5px 25px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.title-sec05::before, .title-sec05::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
}
@media screen and (max-width: 599px) {
  .title-sec05::before, .title-sec05::after {
    top: 8px;
    width: 18px;
    height: 18px;
  }
}
.title-sec05::before {
  background: #2E8EC5;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 51%, rgb(10, 91, 153) 100%);
}
.title-sec05::after {
  width: 8px;
  height: 8px;
  top: 18px;
  left: 6px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .title-sec05::after {
    top: 13px;
    left: 5px;
  }
}

.title-sec06 {
  position: relative;
  color: #224564;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  background-color: #eaf3f7;
  padding: 15px 10px 15px 32px;
  margin-bottom: -10px;
}
@media screen and (max-width: 1024px) {
  .title-sec06 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06 {
    font-size: 1.6rem;
    padding: 11px 10px 11px 25px;
  }
}
.title-sec06::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 15px;
  width: 4px;
  height: calc(100% - 26px);
  background-color: #197cb4;
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .title-sec06::before {
    top: 9px;
    left: 12px;
    width: 3px;
    height: calc(100% - 18px);
  }
}

/*各テンプレートを囲むbox【必須】*/
.box {
  margin-bottom: 40px;
}
.box:before, .box:after {
  content: "";
  display: table;
}
.box:after {
  clear: both;
}
@media screen and (max-width: 834px) {
  .box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .box {
    margin-bottom: 20px;
  }
}
.box a {
  color: #197cb4;
}
.box a:hover {
  text-decoration: none;
}

/*youtube*/
.youtube-wrapper {
  margin: 0 auto;
  width: 75%;
  max-width: 100%;
  position: relative;
}
.youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.block__wysiwyg {
  /*デフォルトの処理*/
  white-space: normal;
  overflow-wrap: break-word;
}
.block__wysiwyg a {
  color: #197cb4;
  text-decoration: underline;
}
.block__wysiwyg a:hover {
  text-decoration: none;
}
.block__wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.block__wysiwyg {
  /*以下テンプレート外*/
}
.block__wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.block__wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.block__wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.block__wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.block__wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.block__wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #000000;
}
.block__wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #000000;
}
.block__wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.block__wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.block__wysiwyg ul {
  padding-left: 1em;
}
.block__wysiwyg ul li {
  list-style: disc;
}
.block__wysiwyg ol {
  margin: 0;
  padding-left: 1em;
}
.block__wysiwyg ol li {
  list-style-type: decimal;
}
.block__wysiwyg blockquote {
  padding-left: 1em;
}
.block__wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.block__wysiwyg hr {
  display: block;
}
.block__wysiwyg em {
  font-style: italic !important;
}
.block__wysiwyg strong {
  font-weight: bold !important;
}
.block__wysiwyg em strong,
.block__wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}
.block__wysiwyg .pageindex-wrapper__item__nav {
  margin-top: 0;
}
.block__wysiwyg .pageindex-wrapper__item__nav__item {
  list-style: none;
}
.block__wysiwyg .pageindex-wrapper__item__nav__item a {
  text-decoration: none;
  color: #1e3142;
}
.block__wysiwyg .research-block-wrap {
  display: flex;
  background-color: #e6f2f8;
  border-radius: 10px;
  padding: 30px;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .block__wysiwyg .research-block-wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block__wysiwyg .research-block-wrap {
    border-radius: 5px;
    flex-wrap: wrap;
    gap: 40px;
    padding: 15px;
  }
}
.block__wysiwyg .research-block-list {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  width: 40%;
  box-shadow: 0 0 20px rgba(122, 173, 199, 0.2);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .block__wysiwyg .research-block-list {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block__wysiwyg .research-block-list {
    width: 100%;
  }
}
.block__wysiwyg .research-block-list::before {
  content: "";
  margin-top: -22px;
  position: absolute;
  top: 50%;
  right: -70px;
  border-width: 25px 25px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #197cb4;
}
@media screen and (max-width: 599px) {
  .block__wysiwyg .research-block-list::before {
    margin-top: 0;
    top: auto;
    right: auto;
    bottom: -54px;
    left: 50%;
    border-width: 22px 22px;
    border-left-color: transparent;
    border-top-color: #197cb4;
    margin-left: -22px;
  }
}
.block__wysiwyg .research-block-list:nth-child(2) {
  width: 60%;
}
@media screen and (max-width: 599px) {
  .block__wysiwyg .research-block-list:nth-child(2) {
    width: 100%;
  }
}
.block__wysiwyg .research-block-list:nth-child(2)::before {
  content: none;
}
.block__wysiwyg .research-block-list > li {
  margin-bottom: 8px;
  list-style: none;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 20px;
}
.block__wysiwyg .research-block-list > li:last-child {
  margin-bottom: 0;
}
.block__wysiwyg .research-block-list > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #197cb4;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .block__wysiwyg .research-block-list > li::before {
    left: 2px;
    width: 7px;
    height: 7px;
  }
}
.block__wysiwyg .research-block-notice {
  margin-top: 15px;
  text-align: right;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .block__wysiwyg .research-block-notice {
    text-align: left;
  }
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 834px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination-item__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 58px;
  height: 58px;
  color: #235885;
  font-size: 2rem;
  font-weight: 500;
  background-color: #eaf3f7;
  border-radius: 50%;
  margin: 0 6px;
}
@media screen and (max-width: 834px) {
  .pagination-item__number {
    width: 47px;
    height: 47px;
    font-size: 1.8rem;
    margin: 0 5px;
  }
}
@media screen and (max-width: 599px) {
  .pagination-item__number {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    margin: 0 4px;
  }
}
.pagination-item__number:hover, .pagination-item__number.active {
  color: #fff !important;
  background-color: #235885;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pagination-item__prev, .pagination-item__next {
  position: relative;
  color: #494949;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.pagination-item__prev::before, .pagination-item__next::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #235885;
  border-right: 2px solid #235885;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .pagination-item__prev:hover, .pagination-item__next:hover {
    color: #235885;
  }
}
.pagination-item__prev {
  margin-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  .pagination-item__prev {
    margin-right: 10px;
    padding-left: 10px;
  }
}
.pagination-item__prev::before {
  left: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.pagination-item__next {
  margin-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 599px) {
  .pagination-item__next {
    margin-left: 10px;
    padding-right: 10px;
  }
}
.pagination-item__next::before {
  right: 0;
}

#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  cursor: pointer;
}
#nav-close.active {
  display: block; /*カバーを表示*/
  opacity: 0.3;
}
@media screen and (max-width: 1024px) {
  #nav-close.active {
    display: none;
  }
}

.gnav-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/common/bg02.webp), url(../img/common/bg03.webp);
  background-repeat: no-repeat;
  background-size: 471px auto, cover;
  background-position: left 0 top 0, left 50% bottom 0;
  overflow-x: hidden;
  overflow-y: auto;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
.gnav-modal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 599px) {
  .gnav-modal {
    background-image: url(../img/common/bg03.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.gnav-modal__wrap {
  margin: 140px auto 130px;
  padding: 0 30px;
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal__wrap {
    margin: 130px auto 80px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal__wrap {
    margin: 100px auto 80px;
    padding: 0 15px;
  }
}
.gnav-modal__logo {
  position: absolute;
  top: 35px;
  left: 30px;
  width: 284px;
  transition: 0.2s;
}
.gnav-modal__logo img {
  width: 100%;
  max-width: 284px;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal__logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .gnav-modal__logo {
    top: 23px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal__logo {
    top: 0;
    left: 0;
    height: 80px;
    width: calc(100% - 140px);
    display: flex;
    align-items: center;
    padding-left: 10px;
  }
  .gnav-modal__logo img {
    max-width: 200px;
  }
}

.gnav-modal__contents {
  max-width: 1320px;
  margin: 0 auto auto;
  padding: 60px 40px 90px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 40px rgba(201, 235, 253, 0.4);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 1600px) {
  .gnav-modal__contents {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .gnav-modal__contents {
    gap: 60px;
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal__contents {
    padding: 20px 25px 50px;
    gap: 50px;
  }
}

.gnav-modal-list {
  width: calc(100% - 300px);
  padding-right: 40px;
  column-count: 3;
  column-gap: 40px;
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-list {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list {
    width: 100%;
    padding-right: 0;
    column-count: 2;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list {
    column-count: 1;
  }
}
.gnav-modal-list__item {
  break-inside: avoid;
  position: relative;
}
.gnav-modal-list__item__lv01 {
  margin-bottom: 20px;
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-list__item__lv01 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__lv01 {
    margin-bottom: 0;
  }
}
.gnav-modal-list__item__lv02 {
  margin-bottom: 20px;
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-list__item__lv02 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__lv02 {
    margin-bottom: 0;
  }
}
.gnav-modal-list__item__link {
  border-bottom: 1px solid #b7d5ec;
  position: relative;
  display: block;
  color: #3b5973;
  font-size: 2rem;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
  padding: 20px 30px 22px 0;
  background-image: url(../img/common/arw_blue2.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: right 5px top 50%;
}
.gnav-modal-list__item__link:hover {
  color: #235885;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-list__item__link:hover {
    opacity: 0.8;
    transform: translateX(4px);
  }
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-list__item__link {
    font-size: 1.8rem;
    padding: 20px 25px 18px 0;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__link {
    padding: 20px 25px 20px 0;
  }
}
.gnav-modal-list__item__link__plus {
  position: absolute;
  display: block;
  top: 13px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  display: none;
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__link__plus {
    top: 15px;
    width: 32px;
    height: 32px;
    display: block;
  }
}
.gnav-modal-list__item__link__plus::before, .gnav-modal-list__item__link__plus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.gnav-modal-list__item__link__plus::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 28px;
}
.gnav-modal-list__item__link__plus:hover {
  cursor: pointer;
}
.gnav-modal-list__item__link__plus.ac {
  background-color: #197cb4;
}
.gnav-modal-list__item__link__plus.ac::before, .gnav-modal-list__item__link__plus.ac::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 18px;
  width: 2px;
  height: 18px;
  background-color: #ffffff;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__link__plus.ac::before, .gnav-modal-list__item__link__plus.ac::after {
    right: 15px;
    height: 14px;
  }
}
.gnav-modal-list__item__link__plus.ac::after {
  transform: rotate(90deg);
  transition: 0.2;
}
.gnav-modal-list__item__link__plus.ac.active::before {
  transition: 0.2;
  display: none;
}
.gnav-modal-list__inner {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__inner {
    margin-top: 15px;
    padding-bottom: 20px;
  }
}
.gnav-modal-list__inner__item > a {
  display: block;
  text-decoration: none;
  color: #3b5973;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 10px 0 10px 22px;
  line-height: 1.3;
  position: relative;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-list__inner__item > a:hover {
    opacity: 0.8;
    transform: translateX(4px);
  }
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-list__inner__item > a {
    padding: 8px 0 8px 22px;
  }
}
.gnav-modal-list__inner__item > a::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 12px;
  height: 1px;
  background-color: #64b1cd;
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-list__inner__item > a::before {
    top: 18px;
  }
}

.gnav-modal-info {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-info {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.gnav-modal-guide {
  margin-bottom: 18px;
}
.gnav-modal-guide > a {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  background-color: #fff;
  background-image: url(../img/common/arw_white.svg), url(../img/common/modal_guide_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-size: 18px auto, cover;
  background-position: right 20px bottom 20px, center;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  line-height: 1.3;
  font-weight: 400;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-guide > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media print, screen and (max-width: 1500px) {
  .gnav-modal-guide > a {
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-guide > a {
    padding: 10px 20px;
    background-size: 16px auto, cover;
    background-position: right 15px bottom 15px, center;
    border-radius: 5px;
  }
}
.gnav-modal-guide__en {
  margin-bottom: 7px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}
.gnav-modal-guide__text {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .gnav-modal-guide__text {
    font-size: 2.2rem;
  }
}

.gnav-modal-reservation {
  margin-bottom: 35px;
}
.gnav-modal-reservation > a {
  background-color: #16bfbd;
  border-radius: 8px;
  min-height: 66px;
  padding: 10px 20px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-image: url(../img/common/icon_calendar_white.svg);
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-position: left 25px top 50%;
  font-size: 1.9rem;
  font-weight: 500;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-reservation > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-reservation > a {
    border-radius: 5px;
    font-size: 1.8rem;
  }
}

.gnav-modal-contact {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 10px 25px;
}
@media screen and (max-width: 599px) {
  .gnav-modal-contact {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
}
.gnav-modal-contact > dt {
  background-color: #1b7fb6;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 5px;
  border-radius: 100px;
  max-width: 240px;
  margin: 0 auto 12px;
  font-weight: 500;
}
.gnav-modal-contact > dd {
  text-align: center;
}
.gnav-modal-contact > dd > a {
  display: inline-block;
  text-decoration: none;
  font-family: "Hind", sans-serif;
  font-size: 3.8rem;
  color: #3b5973;
  line-height: 1;
  font-weight: 600;
  padding: 3px 5px 3px 25px;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: left 0 top 5px;
}
@media screen and (max-width: 599px) {
  .gnav-modal-contact > dd > a {
    text-decoration: underline;
  }
}

.subnavi-list__title {
  position: relative;
  margin-bottom: 1px;
}
.subnavi-list__title > a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  background-color: #197cb4;
  border-top-right-radius: 10px;
  padding: 24px 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .subnavi-list__title > a {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}
@media screen and (max-width: 834px) {
  .subnavi-list__title > a {
    font-size: 1.7rem;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .subnavi-list__title > a {
    font-size: 1.6rem;
    padding: 15px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
  }
}
.subnavi-list__title > a:hover {
  background-color: #235885;
  color: #fff;
}
.subnavi-list__item {
  border-bottom: 1px solid #cccccc;
}
.subnavi-list__item__link {
  display: block;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #1e3142;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 18px 10px 18px 52px;
}
@media screen and (max-width: 1024px) {
  .subnavi-list__item__link {
    padding-left: 45px;
  }
}
@media screen and (max-width: 834px) {
  .subnavi-list__item__link {
    padding: 15px 5px 15px 45px;
  }
}
@media screen and (max-width: 599px) {
  .subnavi-list__item__link {
    font-size: 1.4rem;
    padding: 14px 5px 14px 38px;
  }
}
.subnavi-list__item__link::after {
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: center center;
  background-color: #197cb4;
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50px;
  left: 20px;
  position: absolute;
  top: 20px;
}
@media screen and (max-width: 1024px) {
  .subnavi-list__item__link::after {
    left: 10px;
  }
}
@media screen and (max-width: 834px) {
  .subnavi-list__item__link::after {
    top: 17px;
  }
}
@media screen and (max-width: 599px) {
  .subnavi-list__item__link::after {
    height: 20px;
    width: 20px;
    top: 13px;
    left: 10px;
  }
}
.subnavi-list__item__link.active {
  background-color: #eaf3f7;
  color: #197cb4;
}
@media print, screen and (min-width: 1025px) {
  .subnavi-list__item__link:hover {
    color: #197cb4;
  }
}
.subnavi-list__secondary {
  border-top: 1px solid #dadada;
}
.subnavi-list__secondary__item {
  margin-left: 20px;
}
@media screen and (max-width: 599px) {
  .subnavi-list__secondary__item {
    margin-left: 28px;
  }
}
.subnavi-list__secondary__item:not(:last-child) {
  border-bottom: 1px solid #dadada;
}
.subnavi-list__secondary__link {
  display: block;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #1e3142;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 17px 18px 17px 20px;
}
@media screen and (max-width: 834px) {
  .subnavi-list__secondary__link {
    padding: 15px 5px 15px 16px;
  }
}
@media screen and (max-width: 599px) {
  .subnavi-list__secondary__link {
    font-size: 1.4rem;
    padding: 13px 5px 13px 20px;
  }
}
.subnavi-list__secondary__link::before {
  position: absolute;
  content: "";
  top: 24px;
  left: 7px;
  border-width: 4px 0 4px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #197cb4;
}
@media screen and (max-width: 599px) {
  .subnavi-list__secondary__link::before {
    top: 18px;
  }
}
.subnavi-list__secondary__link.active {
  color: #235885;
}
@media print, screen and (min-width: 1025px) {
  .subnavi-list__secondary__link:hover {
    color: #197cb4;
  }
}

.pagetitle-block {
  margin-bottom: 30px;
}
.pagetitle-block:before, .pagetitle-block:after {
  content: "";
  display: table;
}
.pagetitle-block:after {
  clear: both;
}
@media screen and (max-width: 1024px) {
  .pagetitle-block {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-block {
    margin-bottom: 15px;
  }
}

.title-block {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .title-block {
    margin-bottom: 15px;
  }
}
.title-block:has(> .title-sec01) {
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .title-block:has(> .title-sec01) {
    margin-bottom: 35px;
  }
}
.title-block:has(> .title-sec02) {
  margin-bottom: 32px;
}
@media screen and (max-width: 599px) {
  .title-block:has(> .title-sec02) {
    margin-bottom: 20px;
  }
}
.title-block:has(.title-sec01):has(+ .title-block .title-sec02) {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .title-block:has(.title-sec01):has(+ .title-block .title-sec02) {
    margin-bottom: 20px;
  }
}
.title-block:has(> .title-sec05):not(:has(+ .title-block)) {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .title-block:has(> .title-sec05):not(:has(+ .title-block)) {
    margin-bottom: 8px;
  }
}

.block-cms {
  margin-bottom: 40px;
}
.block-cms:before, .block-cms:after {
  content: "";
  display: table;
}
.block-cms:after {
  clear: both;
}
@media screen and (max-width: 1024px) {
  .block-cms {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms {
    margin-bottom: 25px;
  }
}
.block-cms a {
  color: #235885;
}
.block-cms a:hover {
  text-decoration: none;
}
.block-cms .block__wysiwyg .box:last-child {
  margin-bottom: 0 !important;
}
.block-cms:has(> .copy-mincho):not(:has(+ .title-block)), .block-cms:has(> .copy-gothic):not(:has(+ .title-block)) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .block-cms:has(> .copy-mincho):not(:has(+ .title-block)), .block-cms:has(> .copy-gothic):not(:has(+ .title-block)) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms:has(> .copy-mincho):not(:has(+ .title-block)), .block-cms:has(> .copy-gothic):not(:has(+ .title-block)) {
    margin-bottom: 10px;
  }
}
.block-cms:has(+ .title-block > .title-sec02) {
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .block-cms:has(+ .title-block > .title-sec02) {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms:has(+ .title-block > .title-sec02) {
    margin-bottom: 40px;
  }
}
.block-cms:has(+ .title-block > .title-sec05) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .block-cms:has(+ .title-block > .title-sec05) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms:has(+ .title-block > .title-sec05) {
    margin-bottom: 10px;
  }
}

.block-flow {
  display: flex;
}
@media screen and (max-width: 599px) {
  .block-flow {
    display: block;
  }
}
.block-flow .img-right {
  order: 2;
  float: none;
}
.block-flow .img-left {
  float: none;
}
.block-flow .text-left,
.block-flow .text-right {
  flex: 1;
  width: 100%;
  float: none;
}

.block-category {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e9e9e9;
  padding-top: 50px;
  padding-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .block-category {
    padding-top: 30px;
    display: block;
  }
}
.block-category__text-box {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .block-category__text-box {
    width: 100%;
  }
}
.block-category__photo {
  width: 46%;
  margin-left: 4%;
}
@media screen and (max-width: 599px) {
  .block-category__photo {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
.block-category__en {
  font-size: 1.2rem;
  color: var(--dark-color);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .block-category__en {
    line-height: 1;
    text-align: center;
  }
}
.block-category__ja {
  margin-bottom: 25px;
  color: var(--dark-color);
  font-size: 3.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .block-category__ja {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
.block-category__copy {
  margin-bottom: 15px;
  padding: 10px 10px 8px;
  background-color: #197cb4;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .block-category__copy {
    padding: 13px 10px 10px;
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
.block-category__links {
  width: 100%;
  margin-top: 30px;
  background-color: #f0f4f4;
  padding: 30px 40px 25px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .block-category__links {
    padding: 20px 30px 15px;
  }
}
@media screen and (max-width: 599px) {
  .block-category__links {
    margin-top: 20px;
    padding: 15px 20px 10px;
  }
}
.block-category__links li {
  margin-bottom: 5px;
  margin-right: 45px;
}
@media screen and (max-width: 599px) {
  .block-category__links li {
    margin-bottom: 3px;
  }
}
.block-category__links a {
  text-decoration: none;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  line-height: 1.3;
}
.block-category__links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #197cb4;
  display: block;
  border-radius: 50%;
}
.block-category__links a::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.block-rinen {
  background-color: #e3eeec;
  border-radius: 5px;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .block-rinen {
    display: block;
    padding: 30px 15px;
  }
}
.block-rinen__image {
  width: 100%;
  max-width: 264px;
}
@media screen and (max-width: 599px) {
  .block-rinen__image {
    margin: 0 auto 20px;
    max-width: 220px;
  }
}
.block-rinen__list {
  width: calc(100% - 264px);
  padding-left: 50px !important;
}
@media screen and (max-width: 599px) {
  .block-rinen__list {
    width: 100%;
    padding-left: 0 !important;
  }
}
.block-rinen__list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.block-rinen__list > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .block-rinen__list > li {
    margin-bottom: 15px;
  }
}
.block-rinen__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #197cb4;
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 1.8rem;
  padding-top: 12px;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .block-rinen__icon {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }
}
.block-rinen__icon--cl2 {
  background-color: #87b533;
}
.block-rinen__icon--cl3 {
  background-color: #d6616e;
}
.block-rinen__text {
  line-height: 1.4;
  width: calc(100% - 70px);
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.block-staff {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(130, 158, 182, 0.4);
  padding: 20px 20px 20px;
}
@media screen and (max-width: 599px) {
  .block-staff {
    padding: 15px 15px 15px;
  }
}
.block-staff__title {
  background-color: #eaf3f7;
  border-radius: 5px;
  padding: 20px 25px;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 599px) {
  .block-staff__title {
    padding: 20px 20px;
  }
}
.block-staff__title:has(.block-staff__title__more) {
  padding: 20px 120px 20px 25px;
}
@media screen and (max-width: 599px) {
  .block-staff__title:has(.block-staff__title__more) {
    padding: 20px 20px 40px;
  }
}
.block-staff__title__position {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .block-staff__title__position {
    font-size: 1.5rem;
  }
}
.block-staff__title__name {
  font-size: 2.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .block-staff__title__name {
    font-size: 2.3rem;
  }
}
.block-staff__title__name span {
  font-size: 1.3rem;
  color: #8ea3b6;
  margin-left: 15px;
}
@media screen and (max-width: 599px) {
  .block-staff__title__name span {
    margin-top: 7px;
    display: block;
    margin-left: 0;
  }
}
.block-staff__title__more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #235885;
  display: block;
  color: #fff;
  border-radius: 200px;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 5px 30px 6px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 9px auto;
}
@media print, screen and (min-width: 1025px) {
  .block-staff__title__more:hover {
    opacity: 0.8;
  }
}
.block-staff__shikaku {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .block-staff__shikaku {
    flex-wrap: wrap;
  }
}
.block-staff__shikaku > dt {
  width: 160px;
  background: #4BA0BC;
  background: linear-gradient(90deg, rgb(75, 160, 188) 0%, rgb(46, 142, 197) 100%);
  border-radius: 3px;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .block-staff__shikaku > dt {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .block-staff__shikaku > dt {
    width: 100%;
  }
}
.block-staff__shikaku > dd {
  width: calc(100% - 160px);
  padding-left: 40px;
}
@media screen and (max-width: 1024px) {
  .block-staff__shikaku > dd {
    width: 100%;
    padding-left: 0;
  }
}
.block-staff__shikaku__list > li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .block-staff__shikaku__list > li {
    font-size: 1.5rem;
  }
}
.block-staff__shikaku__list > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #197cb4;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .block-staff__shikaku__list > li::before {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .block-staff__shikaku__list > li::before {
    left: 2px;
    width: 7px;
    height: 7px;
  }
}
.block-staff__shikaku__list.column2 {
  column-count: 2;
  column-gap: 40px;
}
@media screen and (max-width: 599px) {
  .block-staff__shikaku__list.column2 {
    column-count: 1;
  }
}
.block-staff__shikaku__list.column2 > li {
  break-inside: avoid;
}

.about-message-block {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 90px 9%;
}
@media screen and (max-width: 1024px) {
  .about-message-block {
    padding: 60px 50px;
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .about-message-block {
    height: 230px;
    padding: 30px 15px;
  }
}
.about-message-block__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-message-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 599px) {
  .about-message-block__photo img {
    object-position: left 40% top 50%;
  }
}
.about-message-block__copy {
  font-size: 3.2rem;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .about-message-block__copy {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .about-message-block__copy {
    margin-bottom: 20px;
    font-size: min(5vw, 1.8rem);
    line-height: 1.6;
  }
}
.about-message-block__detail {
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
.about-message-block__detail__position {
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .about-message-block__detail__position {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
}
.about-message-block__detail__name {
  font-size: 3.6rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .about-message-block__detail__name {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .about-message-block__detail__name {
    font-size: 2.3rem;
    margin-bottom: 2px;
  }
}
.about-message-block__detail__en {
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .about-message-block__detail__en {
    font-size: 1.1rem;
  }
}

.recruit-comeon-main {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  min-height: 500px;
}
@media screen and (max-width: 1024px) {
  .recruit-comeon-main {
    min-height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-comeon-main {
    flex-wrap: wrap;
  }
}
.recruit-comeon-main__textbox {
  width: 54%;
  background: #55ADD6;
  background: linear-gradient(90deg, rgb(85, 173, 214) 0%, rgb(138, 166, 218) 100%);
  position: relative;
  z-index: 1;
  padding: 65px 60px;
}
@media print, screen and (max-width: 1400px) {
  .recruit-comeon-main__textbox {
    width: 62%;
    padding: 60px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-comeon-main__textbox {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-comeon-main__textbox {
    width: 100%;
    padding: 40px 20px;
  }
}
.recruit-comeon-main__textbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/noise.png);
  z-index: -1;
}
.recruit-comeon-main__img {
  width: 46%;
}
@media print, screen and (max-width: 1400px) {
  .recruit-comeon-main__img {
    width: 38%;
  }
}
@media screen and (max-width: 599px) {
  .recruit-comeon-main__img {
    width: 100%;
    position: relative;
  }
  .recruit-comeon-main__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.recruit-comeon-main__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recruit-comeon-main__copy {
  margin-bottom: 28px;
}
@media screen and (max-width: 1024px) {
  .recruit-comeon-main__copy img {
    width: 100%;
    max-width: 330px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-comeon-main__copy {
    margin-bottom: 20px;
  }
  .recruit-comeon-main__copy img {
    max-width: 250px;
  }
}
.recruit-comeon-main__catch {
  margin-bottom: 28px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .recruit-comeon-main__catch {
    font-size: 2.7rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-comeon-main__catch {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}
.recruit-comeon-main__text {
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
}

.img-right {
  margin: 0px 0 20px 40px;
  width: auto;
  max-width: 40%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-right {
    margin: 0 auto 20px auto !important;
    width: auto;
    max-width: 100%;
    float: none;
    text-align: center;
    display: block;
  }
}
.block-flow .img-right {
  margin-bottom: 0;
}
.img-right img {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .img-right img {
    border-radius: 6px;
  }
}

.img-left {
  margin: 0px 40px 20px 0;
  width: auto;
  max-width: 40%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-left {
    margin: 0 auto 20px auto !important;
    width: auto;
    max-width: 100%;
    float: none;
    text-align: center;
    display: block;
  }
}
.block-flow .img-left {
  margin-bottom: 0;
}
.img-left img {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .img-left img {
    border-radius: 6px;
  }
}

.text-right {
  width: calc(60% - 40px);
  float: right;
}
@media screen and (max-width: 599px) {
  .text-right {
    width: auto;
    float: none;
  }
}

.text-left {
  width: calc(60% - 40px);
  float: left;
}
@media screen and (max-width: 599px) {
  .text-left {
    width: auto;
    float: none;
  }
}

.photo-3 {
  padding: 0 !important;
  list-style: none;
}
.photo-3 li {
  list-style: none !important;
  width: calc((99.9% - 30px) / 3);
  text-align: center;
  float: left;
  margin-bottom: 15px;
}
.photo-3 li:not(:nth-child(3n)) {
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .photo-3 li {
    width: calc((99.9% - 10px) / 3);
    margin-bottom: 10px;
  }
  .photo-3 li:not(:nth-child(3n)) {
    margin-right: 5px;
  }
}
.photo-3 li img {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .photo-3 li img {
    border-radius: 6px;
  }
}

.photo-2 {
  padding: 0 !important;
  list-style: none;
}
.photo-2 li {
  list-style: none !important;
  width: calc((100% - 20px) / 2);
  text-align: center;
  float: left;
  margin-bottom: 20px;
}
.photo-2 li:not(:nth-child(2n)) {
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  .photo-2 li {
    width: calc((100% - 5px) / 2);
    margin-bottom: 10px;
  }
  .photo-2 li:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}
.photo-2 li img {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .photo-2 li img {
    border-radius: 6px;
  }
}

.photo-1 {
  width: 100%;
  text-align: center;
}
.photo-1.type02 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.photo-1 img {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .photo-1 img {
    border-radius: 6px;
  }
}

.photo-column2 {
  display: flex;
  flex-wrap: wrap;
}
.photo-column2__item {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .photo-column2__item {
    width: 100%;
  }
}

.photo-auto {
  padding: 0 !important;
  list-style: none;
  display: flex;
  justify-content: center;
  margin-right: -10px;
}
@media screen and (max-width: 599px) {
  .photo-auto {
    display: block;
    margin-right: 0;
  }
}
.photo-auto li {
  list-style: none !important;
  text-align: center;
  margin-bottom: 15px;
  margin-right: 10px;
}
.photo-auto li img {
  max-width: auto;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .photo-auto li img {
    border-radius: 6px;
  }
}
@media screen and (max-width: 599px) {
  .photo-auto li {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.text {
  white-space: normal;
  overflow-wrap: break-word;
}
.text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 300;
}

.copy-gothic {
  color: #197cb4;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .copy-gothic {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic {
    font-size: 1.7rem;
    font-weight: 500;
  }
}

.copy-mincho {
  color: #197cb4;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .copy-mincho {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-mincho {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.text-standard {
  white-space: normal;
  overflow-wrap: break-word;
}

.caption {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  .caption {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

.text-3column {
  padding: 0 !important;
}
.text-3column > li {
  margin-left: 30px;
  width: calc((99.9% - 60px) / 3);
  float: left;
  list-style: none !important;
}
.text-3column > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 834px) {
  .text-3column > li {
    margin-top: 15px;
    margin-left: 0;
    width: 100%;
    float: none;
  }
  .text-3column > li:first-child {
    margin-top: 0;
  }
}

.text-2column {
  padding: 0 !important;
}
.text-2column > li {
  width: calc(50% - 15px);
  float: right;
  list-style: none !important;
}
.text-2column > li:first-child {
  float: left;
}
@media screen and (max-width: 599px) {
  .text-2column > li {
    margin-top: 15px;
    width: 100%;
    float: none;
  }
  .text-2column > li:first-child {
    float: none;
    margin-top: 0;
  }
}

.text-red {
  color: #d00;
}

.list-box {
  padding: 27px 30px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 599px) {
  .list-box {
    padding: 18px 20px;
  }
}

.list-box__cl02 {
  display: flex;
  flex-wrap: wrap;
}
.list-box__cl02__left {
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
}
.list-box__cl02__right {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1024px) {
  .list-box__cl02__left {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .list-box__cl02__right {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .list-box__cl02__left {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .list-box__cl02__right {
    width: 100%;
  }
}

.list-wrapper {
  padding: 0 !important;
  list-style: none;
}
.list-wrapper li {
  list-style: none !important;
  margin-top: 10px;
  padding-left: 25px;
  line-height: 1.5em;
  white-space: normal;
  overflow-wrap: break-word;
  position: relative;
}
@media screen and (max-width: 599px) {
  .list-wrapper li {
    margin-top: 7px;
    padding-left: 18px;
  }
}
.list-wrapper li:first-child {
  margin-top: 0;
}
.list-wrapper li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #197cb4;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .list-wrapper li::before {
    left: 2px;
    width: 7px;
    height: 7px;
  }
}
.list-wrapper.column2 {
  margin-top: -5px;
  column-count: 2;
  column-gap: 40px;
}
@media screen and (max-width: 599px) {
  .list-wrapper.column2 {
    column-count: 1;
    column-gap: 0;
  }
}
.list-wrapper.column2 > li {
  break-inside: avoid-column;
}
@media screen and (max-width: 599px) {
  .list-wrapper.column2 > li {
    margin-top: 15px;
  }
}
.list-wrapper.column2 > li:first-child {
  margin-top: 0;
}
.list-wrapper.column3 {
  margin-top: -5px;
  column-count: 3;
  column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .list-wrapper.column3 {
    column-gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .list-wrapper.column3 {
    column-count: 1;
    column-gap: 0;
  }
}
.list-wrapper.column3 > li {
  break-inside: avoid-column;
}
@media screen and (max-width: 834px) {
  .list-wrapper.column3 > li {
    margin-top: 15px;
  }
}
.list-wrapper.column3 > li:first-child {
  margin-top: 0;
}

.gyouseki > ul > li {
  margin-top: 0;
  border-bottom: 1px solid #dadada;
  padding: 20px 0 20px 25px;
}
.gyouseki > ul > li:first-child {
  border-top: 1px solid #dadada;
}
@media screen and (max-width: 599px) {
  .gyouseki > ul > li {
    margin-top: 0;
    padding: 15px 0 15px 18px;
  }
}
.gyouseki > ul > li::before {
  top: 28px;
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  .gyouseki > ul > li::before {
    top: 22px;
  }
}

ol.list-wrapper {
  padding: 0 !important;
  list-style: none;
}
ol.list-wrapper li {
  list-style: none;
  margin-top: 10px;
  margin-left: 1.2em;
  padding-left: 0;
  line-height: 1.5em;
  list-style-type: decimal !important;
  list-style-position: outside !important;
  list-style: none;
  white-space: normal;
  overflow-wrap: break-word;
  position: relative;
}
ol.list-wrapper li:first-child {
  margin-top: 0;
}
ol.list-wrapper li::before {
  display: none;
}
@media screen and (max-width: 599px) {
  ol.list-wrapper li {
    margin-top: 7px;
  }
}
ol.list-wrapper--box-none {
  padding: 0;
  background-color: transparent;
}

_:-ms-input-placeholder .list-file,
:root .list-file {
  display: flex;
  flex-wrap: wrap;
}
_:-ms-input-placeholder .list-file li,
:root .list-file li {
  width: 100%;
}

.list-file li {
  margin-top: 12px;
  padding: 0px 0 0 45px;
  min-height: 42px;
  line-height: 1.5em;
  background-size: 35px auto;
  background-repeat: no-repeat;
  background-position: 0 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .list-file li {
    padding: 0px 0 0 32px;
    padding-top: 0;
    min-height: 29px;
    line-height: 1.3em;
    background-size: 25px auto;
    background-position: 0 0px;
  }
}
.list-file li:has(p) {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .list-file li:has(p) {
    margin-top: 15px;
  }
}
.list-file li:first-child {
  margin-top: 0 !important;
}
.list-file li.li-pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.list-file li.li-xls {
  background-image: url(../img/common/icon_excel.svg);
}
.list-file li.li-doc {
  background-image: url(../img/common/icon_word.svg);
}
.list-file li a {
  color: #235885;
}
.list-file li a:hover {
  text-decoration: none;
}
.list-file li p {
  margin-top: 3px;
  font-size: 1.6rem;
  white-space: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 599px) {
  .list-file li p {
    font-size: 1.5rem;
  }
}
.list-file.column2 {
  display: flex;
  flex-wrap: wrap;
}
.list-file.column2 > li {
  width: calc((100% - 30px) / 2);
  margin-left: 30px;
}
.list-file.column2 > li:nth-child(2) {
  margin-top: 0;
}
.list-file.column2 > li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .list-file.column2 > li {
    width: 100%;
    margin-left: 0;
  }
  .list-file.column2 > li:nth-child(2) {
    margin-top: 15px;
  }
}
.list-file.column3 {
  display: flex;
  flex-wrap: wrap;
}
.list-file.column3 > li {
  width: calc((100% - 60px) / 3);
  margin-left: 30px;
}
.list-file.column3 > li:nth-child(2), .list-file.column3 > li:nth-child(3) {
  margin-top: 0;
}
.list-file.column3 > li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .list-file.column3 > li {
    width: calc((100% - 30px) / 2);
  }
  .list-file.column3 > li:nth-child(3) {
    margin-top: 15px;
  }
  .list-file.column3 > li:nth-child(3n+1) {
    margin-left: 30px;
  }
  .list-file.column3 > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .list-file.column3 > li {
    width: 100%;
    margin-left: 0;
  }
  .list-file.column3 > li:nth-child(2), .list-file.column3 > li:nth-child(3) {
    margin-top: 15px;
  }
}

.attention-list {
  margin-bottom: 30px;
}
.attention-list > li {
  margin-bottom: 5px;
  color: #d00;
  line-height: 1.4;
}
.attention-list > li:last-child {
  margin-bottom: 0 !important;
}
.attention-list > li a {
  color: #d00 !important;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
}
@media screen and (max-width: 599px) {
  .page-nav {
    display: block;
  }
}
.page-nav.type02 {
  background-color: #eaf3f7;
  padding: 35px 32px !important;
}
@media screen and (max-width: 599px) {
  .page-nav.type02 {
    padding: 20px !important;
  }
}
.page-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: calc((100% - 30px) / 3);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  border: 1px solid #197cb4;
  margin-bottom: 10px;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.page-nav__item:not(:nth-child(3n)) {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .page-nav__item {
    width: calc((100% - 15px) / 3);
    margin-bottom: 5px;
  }
  .page-nav__item:not(:nth-child(3n)) {
    margin-right: 5px;
  }
}
@media screen and (max-width: 599px) {
  .page-nav__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .page-nav__item:not(:nth-child(3n)) {
    margin-right: 0px;
  }
}
.type02 .page-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 0px solid #197cb4;
  margin-right: 0;
  margin-bottom: 0px;
  border-radius: 0px;
}
@media print, screen and (min-width: 600px) {
  .type02 .page-nav__item {
    width: calc((100% - 16px) / 2);
  }
  .type02 .page-nav__item:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .type02 .page-nav__item:not(:nth-of-type(-n+2)) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .type02 .page-nav__item {
    width: 100%;
  }
  .type02 .page-nav__item:not(:last-child) {
    margin-bottom: 5px;
  }
}
.page-nav__item a,
.page-nav__item span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #1e3142;
  line-height: 1.4;
  text-decoration: none;
  padding: 20px 25px 20px 46px;
}
@media screen and (max-width: 1024px) {
  .page-nav__item a,
  .page-nav__item span {
    padding: 10px 10px 10px 46px;
  }
}
@media screen and (max-width: 599px) {
  .page-nav__item a,
  .page-nav__item span {
    font-size: 1.5rem;
    padding: 12px 12px 12px 46px;
  }
}
.type02 .page-nav__item a,
.type02 .page-nav__item span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  color: #1e3142;
  font-size: 1.7rem;
  line-height: 1.2;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 23px 20px 23px 50px;
}
@media screen and (max-width: 1024px) {
  .type02 .page-nav__item a,
  .type02 .page-nav__item span {
    font-size: 1.6rem;
    padding: 20px 20px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .type02 .page-nav__item a,
  .type02 .page-nav__item span {
    font-size: 1.5rem;
    padding: 14px 20px 14px 35px;
  }
}
.page-nav__item a::before, .page-nav__item a::after,
.page-nav__item span::before,
.page-nav__item span::after {
  content: "";
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.type02 .page-nav__item a::before, .type02 .page-nav__item a::after,
.type02 .page-nav__item span::before,
.type02 .page-nav__item span::after {
  border-top: 0px solid #fff;
  border-right: 0px solid #fff;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
}
.page-nav__item a::before,
.page-nav__item span::before {
  top: calc(50% - 10px);
  left: 15px;
  width: 20px;
  height: 20px;
  background-color: #197cb4;
  border-radius: 100%;
}
.type02 .page-nav__item a::before,
.type02 .page-nav__item span::before {
  display: inline-block;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: auto;
  background-color: #197cb4;
}
@media screen and (max-width: 599px) {
  .type02 .page-nav__item a::before,
  .type02 .page-nav__item span::before {
    left: 10px;
  }
}
.page-nav__item a::after,
.page-nav__item span::after {
  top: calc(50% - 3px);
  left: 22px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.type02 .page-nav__item a::after,
.type02 .page-nav__item span::after {
  display: inline-block;
  top: 0;
  left: 25px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .type02 .page-nav__item a::after,
  .type02 .page-nav__item span::after {
    left: 15px;
  }
}
@media print, screen and (min-width: 1025px) {
  .page-nav__item a:hover,
  .page-nav__item span:hover {
    background-color: #197cb4;
    color: #fff;
  }
  .page-nav__item a:hover::before,
  .page-nav__item span:hover::before {
    background-color: #fff;
  }
  .page-nav__item a:hover::after,
  .page-nav__item span:hover::after {
    border-top-color: #197cb4;
    border-right-color: #197cb4;
  }
}
.page-nav__item.active a,
.page-nav__item.active span {
  background-color: #197cb4;
  color: #fff;
}
.page-nav__item.active a::before,
.page-nav__item.active span::before {
  background-color: #fff;
}
.page-nav__item.active a::after,
.page-nav__item.active span::after {
  border-top-color: #197cb4;
  border-right-color: #197cb4;
}

.news-list {
  position: relative;
  width: 100%;
  margin-top: -20px;
  white-space: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 599px) {
  .news-list {
    margin-top: -10px;
  }
}
.news-list__item {
  position: relative;
  border-bottom: 1px solid #e3e4e4;
}
.news-list__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  color: #494949;
  line-height: 1.5;
  text-decoration: none;
  padding: 27px 0px;
}
@media screen and (max-width: 834px) {
  .news-list__item a {
    padding: 22px 0px;
  }
}
@media screen and (max-width: 599px) {
  .news-list__item a {
    flex-wrap: wrap;
    padding: 17px 0px;
  }
}
@media print, screen and (min-width: 1025px) {
  .news-list__item a:hover {
    background-color: #eaf3f7;
  }
}
.news-list__item__day {
  display: block;
  width: 120px;
  color: #d87e8a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .news-list__item__day {
    width: 115px;
  }
}
.news-list__item__title {
  flex: 1;
  display: block;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  padding-left: 1em;
}
@media screen and (max-width: 834px) {
  .news-list__item__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__item__title {
    flex: auto;
    width: 100%;
    font-size: 1.5rem;
    padding-left: 0;
    margin-top: 8px;
  }
}
.news-list--top {
  border-top: 1px solid #e3e4e4;
  margin-top: 0 !important;
}
@media screen and (max-width: 834px) {
  .news-list--top .news-list__item a {
    flex-wrap: wrap;
    padding: 17px 0px;
  }
}
@media screen and (max-width: 834px) {
  .news-list--top .news-list__item__title {
    flex: auto;
    width: 100%;
    padding-left: 0;
    margin-top: 8px;
  }
}

.icon, .icon-recruit, .icon-medical, .icon-info {
  display: block;
  width: 104px;
  height: 28px;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .icon, .icon-recruit, .icon-medical, .icon-info {
    width: 90px;
    font-size: 1.2rem;
    height: 24px;
    line-height: 24px;
  }
}
.icon-info {
  background-color: #cf5ea6;
}
.icon-medical {
  letter-spacing: -0.02em;
  background-color: #2fa1d0;
}
.icon-recruit {
  background-color: #59aa83;
}

.icon-new {
  display: inline-block;
  color: #e9317b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 1em;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .icon-new {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .icon-new {
    font-size: 1.3rem;
  }
}

.box-bg01, .box-bg02, .box-bg03 {
  padding: 34px 38px;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .box-bg01, .box-bg02, .box-bg03 {
    padding: 20px;
  }
}
.box-bg01 .list-wrapper li::before, .box-bg02 .list-wrapper li::before, .box-bg03 .list-wrapper li::before {
  background-color: #197cb4;
}

.box-bg01 {
  background-color: #eaf3f7;
}

.box-bg02 {
  background-color: #f3f3f3;
}

.box-bg03 {
  background-color: #fdf4f7;
}
.box-bg03 .list-wrapper li::before {
  background-color: #d83a5e;
}

.index-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #eaf3f7;
  padding: 35px 32px;
}
@media screen and (max-width: 599px) {
  .index-list {
    display: block;
    padding: 20px;
  }
}

.index-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 600px) {
  .index-list__item {
    width: calc((100% - 16px) / 2);
  }
  .index-list__item:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .index-list__item:not(:nth-of-type(-n+2)) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .index-list__item {
    width: 100%;
  }
  .index-list__item:not(:last-child) {
    margin-bottom: 5px;
  }
}
.index-list__item a,
.index-list__item span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #1e3142;
  font-size: 1.7rem;
  line-height: 1.2;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 23px 20px 23px 50px;
}
@media screen and (max-width: 1024px) {
  .index-list__item a,
  .index-list__item span {
    font-size: 1.6rem;
    padding: 20px 20px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .index-list__item a,
  .index-list__item span {
    font-size: 1.5rem;
    padding: 14px 20px 14px 35px;
  }
}
.index-list__item a::before, .index-list__item a::after,
.index-list__item span::before,
.index-list__item span::after {
  content: "";
  position: absolute;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  border-top: 0px solid #fff;
  border-right: 0px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.index-list__item a::before,
.index-list__item span::before {
  display: inline-block;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background-color: #197cb4;
  border-radius: 50%;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .index-list__item a::before,
  .index-list__item span::before {
    left: 10px;
  }
}
.index-list__item a::after,
.index-list__item span::after {
  display: inline-block;
  top: 0;
  left: 25px;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: auto;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .index-list__item a::after,
  .index-list__item span::after {
    left: 15px;
  }
}
@media print, screen and (min-width: 1025px) {
  .index-list__item a:hover,
  .index-list__item span:hover {
    background-color: #197cb4;
    color: #fff;
  }
  .index-list__item a:hover::before,
  .index-list__item span:hover::before {
    background-color: #fff;
  }
  .index-list__item a:hover::after,
  .index-list__item span:hover::after {
    border-top-color: #197cb4;
    border-right-color: #197cb4;
  }
}
.index-list__item.active a,
.index-list__item.active span {
  background-color: #197cb4;
  color: #fff;
}
.index-list__item.active a::before,
.index-list__item.active span::before {
  background-color: #fff;
}
.index-list__item.active a::after,
.index-list__item.active span::after {
  border-top-color: #197cb4;
  border-right-color: #197cb4;
}

.table {
  width: 100%;
  border: 1px solid #dadada;
  border-collapse: collapse;
}
.table thead th {
  padding: 10px 10px;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #235885;
  border: 1px solid #dadada;
}
@media screen and (max-width: 599px) {
  .table thead th {
    padding: 7px 5px 5px;
    font-size: 1.3rem;
  }
}
.table th {
  padding: 15px 10px;
  line-height: 1.5em;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
  background-color: #eaf3f7;
  border: 1px solid #dadada;
}
@media screen and (max-width: 599px) {
  .table th {
    padding: 7px 7px 7px;
    font-size: 1.3rem;
  }
}
.table td {
  padding: 15px;
  line-height: 1.5em;
  vertical-align: middle;
  border: 1px solid #dadada;
  white-space: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 599px) {
  .table td {
    padding: 7px 7px 7px;
    font-size: 1.3rem;
  }
}
.table .table-subtext {
  font-size: 1.4rem;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .table .table-subtext {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 599px) {
  .tbl-sp-scroll table {
    width: 700px;
  }
}

.btn-wrapper {
  text-align: center;
}

.btn-blank {
  display: inline-block;
  color: #235885;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  background-image: url(../img/common/icon_blank.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  border: 1px solid #235885;
  padding: 7px 41px 7px 15px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-blank:hover {
  color: #ffffff;
  background-image: url(../img/common/icon_blank_white.svg);
  background-color: #235885;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.icon-link {
  position: relative;
  display: inline-block;
  color: #504947 !important;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none !important;
  border: 1px solid #197cb4;
  padding: 14px 63px 14px 55px;
  margin-bottom: 5px;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .icon-link {
    font-size: 1.4rem;
    padding: 14px 53px 14px 45px;
  }
}
.icon-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #197cb4;
  border-right: 2px solid #197cb4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .icon-link:hover {
    color: #ffffff !important;
    background-color: #197cb4;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .icon-link:hover::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.icon-link__text {
  position: relative;
  display: inline-block;
  color: #235885;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  padding-left: 30px;
}
.icon-link__text::before, .icon-link__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}
.icon-link__text::before {
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: #197cb4;
  border-radius: 100%;
}
@media screen and (max-width: 599px) {
  .icon-link__text::before {
    top: 1px;
  }
}
.icon-link__text::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .icon-link__text::after {
    top: 8px;
  }
}
.icon-link__text:hover {
  text-decoration: none !important;
}

.btn-line {
  display: inline-block;
  position: relative;
  width: 100%;
  color: #235885;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  border: 1px solid #235885;
  border-radius: 52px;
  padding: 15px 45px 15px 40px;
}
@media screen and (max-width: 599px) {
  .btn-line {
    font-size: 1.5rem;
    padding: 15px 35px 15px 30px;
  }
}
.btn-line::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #235885;
  border-right: 2px solid #235885;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .btn-line:hover {
    color: #ffffff !important;
    background-color: #235885;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .btn-line:hover::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.btn-line--back {
  padding: 15px 40px 15px 45px;
}
@media screen and (max-width: 599px) {
  .btn-line--back {
    padding: 15px 30px 15px 35px;
  }
}
.btn-line--back::before {
  right: auto;
  left: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media print, screen and (min-width: 1025px) {
  .btn-line--back:hover::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

.btn-base {
  width: 100%;
  margin: 0 auto;
  display: block;
  background-color: #197cb4;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 200px;
  padding: 14px 35px 16px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: right 20px top 50%;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .btn-base:hover {
    color: #fff;
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .btn-base {
    background-size: 13px auto;
    background-position: right 15px top 50%;
  }
}

.pageindex-wrapper__item__nav {
  display: flex;
  flex-wrap: wrap;
}
.pageindex-wrapper__item__nav__item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 7px;
}
.pageindex-wrapper__item__nav__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .pageindex-wrapper__item__nav__item {
    width: calc((100% - 20px) / 2);
  }
  .pageindex-wrapper__item__nav__item:nth-child(3n) {
    margin-right: 20px;
  }
  .pageindex-wrapper__item__nav__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-wrapper__item__nav__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .pageindex-wrapper__item__nav__item:nth-child(3n) {
    margin-right: 0;
  }
}
.pageindex-wrapper__item__nav__item__link {
  position: relative;
  display: block;
  width: 100%;
  color: #1e3142 !important;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.5;
  text-decoration: none !important;
  background-color: #fff;
  border: 1px solid #197cb4;
  padding: 12px 20px;
  margin-bottom: 5px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.type02 .pageindex-wrapper__item__nav__item__link {
  border: 1px solid #197cb4;
}
.pageindex-wrapper__item__nav__item__link span {
  position: relative;
  display: block;
  padding: 0 0 0 29px;
}
.pageindex-wrapper__item__nav__item__link span::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 7px;
  top: 12px;
  margin-top: -3px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pageindex-wrapper__item__nav__item__link span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #197cb4;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.type02 .pageindex-wrapper__item__nav__item__link span::after {
  background-color: #197cb4;
}
@media print, screen and (min-width: 1025px) {
  .pageindex-wrapper__item__nav__item__link:hover {
    color: #ffffff !important;
    background-color: #197cb4;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .pageindex-wrapper__item__nav__item__link:hover span::before {
    width: 5px;
    height: 5px;
    border-top: 1px solid #197cb4;
    border-right: 1px solid #197cb4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .pageindex-wrapper__item__nav__item__link:hover span::after {
    background-color: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .type02 .pageindex-wrapper__item__nav__item__link:hover {
    background-color: #197cb4;
  }
  .type02 .pageindex-wrapper__item__nav__item__link:hover span::before {
    width: 5px;
    height: 5px;
    border-top: 1px solid #197cb4;
    border-right: 1px solid #197cb4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 25px !important;
}
@media screen and (max-width: 599px) {
  .anchor-list {
    padding: 20px !important;
  }
}
.anchor-list__item {
  display: block;
  position: relative;
  margin-right: 10px;
  margin-top: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .anchor-list__item {
    width: calc((100% - 30px) / 4);
  }
  .anchor-list__item:nth-child(1), .anchor-list__item:nth-child(2), .anchor-list__item:nth-child(3), .anchor-list__item:nth-child(4) {
    margin-top: 0;
  }
  .anchor-list__item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .anchor-list__item {
    width: calc((100% - 20px) / 3);
  }
  .anchor-list__item:nth-child(1), .anchor-list__item:nth-child(2), .anchor-list__item:nth-child(3) {
    margin-top: 0;
  }
  .anchor-list__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item {
    width: calc((100% - 10px) / 2);
  }
  .anchor-list__item:nth-child(1), .anchor-list__item:nth-child(2) {
    margin-top: 0;
  }
  .anchor-list__item:nth-child(2n) {
    margin-right: 0;
  }
}
.anchor-list__item a {
  position: relative;
  display: inline-block;
  color: #1e3142;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  text-align: left;
  padding-left: 28px;
}
@media screen and (max-width: 834px) {
  .anchor-list__item a {
    font-size: 1.5rem;
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item a {
    font-size: 1.4rem;
    padding-left: 22px;
  }
}
.anchor-list__item a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #197cb4;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .anchor-list__item a::before {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item a::before {
    width: 16px;
    height: 16px;
  }
}
.anchor-list__item a::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  transform: rotate(135deg);
}
@media screen and (max-width: 834px) {
  .anchor-list__item a::after {
    width: 7px;
    height: 7px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item a::after {
    left: 5px;
    width: 6px;
    height: 6px;
  }
}
@media print, screen and (min-width: 1025px) {
  .anchor-list__item:hover a {
    color: #235885;
  }
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .anchor-list.cl02 .anchor-list__item {
    width: calc((100% - 10px) / 2);
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(3), .anchor-list.cl02 .anchor-list__item:nth-child(4) {
    margin-top: 10px;
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(4n) {
    margin-right: 10px;
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .anchor-list.cl02 .anchor-list__item {
    width: calc((100% - 10px) / 2);
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(3) {
    margin-top: 10px;
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(3n) {
    margin-right: 10px;
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.cl02 .anchor-list__item {
    width: 100%;
    margin-right: 0;
  }
  .anchor-list.cl02 .anchor-list__item:nth-child(2) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .anchor-list.cl03 .anchor-list__item {
    width: calc((100% - 20px) / 3);
  }
  .anchor-list.cl03 .anchor-list__item:nth-child(4) {
    margin-top: 10px;
  }
  .anchor-list.cl03 .anchor-list__item:nth-child(4n) {
    margin-right: 10px;
  }
  .anchor-list.cl03 .anchor-list__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.cl03 .anchor-list__item {
    width: 100%;
    margin-right: 0;
  }
  .anchor-list.cl03 .anchor-list__item:nth-child(2) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .anchor-list.cl05 .anchor-list__item {
    width: calc((100% - 40px) / 5);
  }
  .anchor-list.cl05 .anchor-list__item:nth-child(5) {
    margin-top: 0;
  }
  .anchor-list.cl05 .anchor-list__item:nth-child(4n) {
    margin-right: 10px;
  }
  .anchor-list.cl05 .anchor-list__item:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.cl05 .anchor-list__item {
    width: 100%;
    margin-right: 0;
  }
  .anchor-list.cl05 .anchor-list__item:nth-child(2) {
    margin-top: 10px;
  }
}

@media print, screen and (min-width: 1025px) {
  .bnr-hover a:hover {
    opacity: 0.8;
  }
}

.tel-link {
  color: var(--dark-color) !important;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .tel-link {
    color: #1e3142 !important;
    text-decoration: none;
  }
  .tel-link a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main-slider {
  height: 800px;
  background-image: url(../img/top/bg02.webp), url(../img/top/bg03.webp);
  background-repeat: no-repeat;
  background-size: 479px auto, cover;
  background-position: left 0 bottom 50px, left 50% bottom 0;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider {
    height: 620px;
    background-size: 400px auto, cover;
    background-position: left 0 bottom 0, left 50% bottom 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider {
    height: 530px;
    background-size: 300px auto, cover;
    background-position: left 0 bottom 80px, left 50% bottom 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider {
    height: 660px;
    background-size: 250px auto, cover;
    background-position: right -100px top 70px, left 50% bottom 0;
  }
}
.top-main-slider .slick-list {
  height: 100%;
}
.top-main-slider .slick-list .slick-track {
  height: 100%;
}
.top-main-slider .slick-list .slick-slide {
  width: 100%;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein_left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.top-main-slider__item01 {
  position: relative;
}
.top-main-slider__item01__photo01 {
  position: absolute;
  left: 7%;
  bottom: 0;
  width: 40%;
  max-width: 630px;
  opacity: 0;
}
.is-animate .top-main-slider__item01__photo01 {
  animation: zoomIn 1s ease 0.5s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item01__photo01 {
    left: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item01__photo01 {
    bottom: 10%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item01__photo01 {
    width: 68%;
    bottom: auto;
    top: 34%;
    left: 8%;
  }
}
.top-main-slider__item01__photo02 {
  position: absolute;
  width: 24%;
  right: 8%;
  bottom: 10px;
  width: 40%;
  max-width: 520px;
  opacity: 0;
}
.is-animate .top-main-slider__item01__photo02 {
  animation: zoomIn 1s ease 0.8s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item01__photo02 {
    width: 30%;
    right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item01__photo02 {
    width: 32%;
    bottom: 12%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item01__photo02 {
    width: 55%;
    right: 10%;
    max-width: 270px;
    bottom: 12%;
  }
}
.top-main-slider__item01__photo03 {
  position: absolute;
  width: 15%;
  right: 40%;
  top: 23%;
  width: 25%;
  max-width: 430px;
  opacity: 0;
}
.is-animate .top-main-slider__item01__photo03 {
  animation: zoomIn 1s ease 1.2s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item01__photo03 {
    top: 25%;
    width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item01__photo03 {
    width: 27%;
    top: 28%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item01__photo03 {
    right: 7%;
    max-width: 230px;
    width: 50%;
    top: 17%;
  }
}
.top-main-slider__item02__text01 {
  position: absolute;
  top: 36%;
  left: 10%;
  width: 46%;
  max-width: 671px;
  opacity: 0;
}
.is-animate .top-main-slider__item02__text01 {
  animation: fadein_left 1s ease 1.5s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item02__text01 {
    top: 36%;
    left: 9%;
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item02__text01 {
    top: 35%;
    left: 6%;
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item02__text01 {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    padding: 370px 20px 0;
  }
}
.top-main-slider__item02__text01__img {
  margin-bottom: 50px;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item02__text01__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item02__text01__img {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item02__text01__img {
    width: 100%;
    max-width: 300px;
  }
}
.top-main-slider__item02__text01__en {
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item02__text01__en {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item02__text01__en {
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item02__text01__en {
    display: none;
  }
}
.top-main-slider__item02__text01__ja {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item02__text01__ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item02__text01__ja {
    font-size: 1.5rem;
  }
}
.top-main-slider__item02__earth {
  position: absolute;
  top: 20%;
  right: 9.5%;
  width: 31.2%;
  max-width: 571px;
  text-align: center;
  opacity: 0;
  transform-origin: center center;
}
.is-animate .top-main-slider__item02__earth {
  animation: zoomIn 1s ease 0s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item02__earth {
    width: 33%;
    top: 20%;
    right: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item02__earth {
    width: 36%;
    top: 26%;
    right: 5%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item02__earth {
    width: 100%;
    max-width: 240px;
    top: 110px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.top-main-slider__item02__earth__line {
  position: absolute;
  top: 19.5%;
  left: 12.6%;
  width: 70%;
  z-index: 1;
}
.top-main-slider__item02__earth__line svg .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5px;
  stroke-dasharray: 600;
  stroke-dashoffset: -600;
}
.is-animate .top-main-slider__item02__earth__line svg .line {
  animation: draw-line 3.5s ease-out forwards;
}
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}
.top-main-slider__item03__text01 {
  position: absolute;
  top: 44%;
  left: 10%;
  width: 42%;
  text-align: center;
  max-width: 651px;
  opacity: 0;
}
.is-animate .top-main-slider__item03__text01 {
  animation: fadein_left 1s ease 1.5s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item03__text01 {
    width: 40%;
    left: 8%;
    top: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item03__text01 {
    left: 40px;
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item03__text01 {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    padding: 420px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item03__text01__copy {
    color: #197cb4;
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item03__text01__en {
    font-size: 1.2rem;
    font-family: "Roboto", sans-serif;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item03__text01__en {
    display: none;
  }
}
.top-main-slider__item03__earth {
  position: absolute;
  top: 20%;
  right: 9.5%;
  width: 31.2%;
  max-width: 571px;
  text-align: center;
  transform-origin: center center;
  opacity: 0.6;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item03__earth {
    width: 33%;
    top: 20%;
    right: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item03__earth {
    width: 36%;
    top: 26%;
    right: 5%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item03__earth {
    width: 100%;
    max-width: 240px;
    top: 110px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.top-main-slider__item03__earth__line {
  position: absolute;
  top: 19.5%;
  left: 12.6%;
  width: 70%;
  z-index: 1;
  transition: 0.3s;
  opacity: 0.5;
}
.top-main-slider__item03__earth__line svg .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5px;
}
.top-main-slider__item03__circle {
  position: absolute;
  top: 19.7%;
  right: 9.2%;
  width: 31.2%;
  max-width: 600px;
  text-align: center;
  opacity: 0;
  transform-origin: center center;
  z-index: 1;
}
.is-animate .top-main-slider__item03__circle {
  animation: zoomIn 2s ease 0s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item03__circle {
    width: 33%;
    top: 19.7%;
    right: 9.6%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item03__circle {
    width: 36%;
    top: 25%;
    right: 4.6%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item03__circle {
    width: 100%;
    max-width: 280px;
    top: 90px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.top-main-slider__item04__text01 {
  position: absolute;
  top: 36%;
  left: 10%;
  width: 46%;
  max-width: 671px;
  opacity: 0;
}
.is-animate .top-main-slider__item04__text01 {
  animation: fadein_left 1.5s ease 0s alternate forwards;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item04__text01 {
    top: 36%;
    left: 9%;
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item04__text01 {
    top: 35%;
    left: 6%;
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item04__text01 {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    padding: 390px 20px 0;
  }
}
.top-main-slider__item04__text01__img {
  margin-bottom: 50px;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item04__text01__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item04__text01__img {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item04__text01__img {
    width: 100%;
    max-width: 300px;
  }
}
.top-main-slider__item04__text01__en {
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item04__text01__en {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item04__text01__en {
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item04__text01__en {
    display: none;
  }
}
.top-main-slider__item04__text01__ja {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item04__text01__ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item04__text01__ja {
    font-size: 1.5rem;
  }
}
.top-main-slider__item04__earth {
  position: absolute;
  top: 20%;
  right: 9.5%;
  width: 31.2%;
  max-width: 571px;
  text-align: center;
  transform-origin: center center;
}
@media print, screen and (max-width: 1500px) {
  .top-main-slider__item04__earth {
    width: 33%;
    top: 20%;
    right: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item04__earth {
    width: 36%;
    top: 26%;
    right: 5%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item04__earth {
    width: 100%;
    max-width: 240px;
    top: 110px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.top-main-slider__item04__earth__line {
  position: absolute;
  top: 19.5%;
  left: 12.6%;
  width: 70%;
  z-index: 1;
}
.top-main-slider__item04__earth__line svg .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5px;
}

.top-lead {
  background-color: #e2eefd;
  padding: 120px 0 250px;
  background-image: url(../img/top/lead_bg2.png), url(../img/top/lead_bg.png), url(../img/common/noise.png);
  background-repeat: repeat-x, repeat-x, repeat;
  background-position: right bottom, left top, left top;
}
@media print, screen and (max-width: 1500px) {
  .top-lead {
    padding: 60px 0 140px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead {
    margin-top: -40px;
    padding: 0 0 60px;
  }
}

.top-lead-head {
  margin-bottom: 180px;
  padding: 0 30px;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-head {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-head {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-head {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.top-lead-head__title {
  margin-bottom: 55px;
  padding-top: 56px;
  color: #197cb4;
  font-size: 4.7rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-head__title {
    font-size: 4.2rem;
    padding-top: 50px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-head__title {
    padding-top: 40px;
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-head__title {
    padding-top: 30px;
    font-size: 2.9rem;
    margin-bottom: 30px;
  }
}
.top-lead-head__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 5px;
  display: block;
  border-radius: 10px;
  background: #56AFBA;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 50%, rgb(10, 91, 153) 100%);
}
.top-lead-head__text {
  margin-bottom: 30px;
  font-size: 1.7rem;
  line-height: 2.2;
  font-weight: 400;
  text-align: center;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-head__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-head__text {
    line-height: 2;
    text-align: justify;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-head__text {
    font-size: 1.7;
    margin-bottom: 20px;
  }
}

.top-lead-point {
  max-width: 1580px;
  margin: 0 auto;
  display: flex;
  gap: 38px;
  padding: 0 30px;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-point {
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-point {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point {
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 60px;
  }
}

.top-lead-point-item {
  width: calc((100% - 76px) / 3);
  background-color: #fff;
  border-radius: 10px;
  padding: 55px 50px;
  box-shadow: 0 0 20px rgba(147, 201, 247, 0.4);
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-point-item {
    width: calc((100% - 50px) / 3);
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item {
    width: calc((100% - 40px) / 3);
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item {
    width: 100%;
    padding: 30px 20px;
  }
}
.top-lead-point-item::before {
  content: "";
  margin-left: -70px;
  position: absolute;
  top: -120px;
  left: 50%;
  width: 150px;
  height: 943px;
  background-image: url(../img/top/hashira.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.9;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-point-item::before {
    top: -100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item::before {
    top: -70px;
    width: 90px;
    margin-left: -45px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item::before {
    top: -40px;
    width: 70px;
    margin-left: -35px;
  }
}
.top-lead-point-item__photo {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item__photo {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item__photo {
    margin-bottom: 20px;
  }
}
.top-lead-point-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-lead-point-item__catch {
  margin-bottom: 15px;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  position: relative;
  padding: 3px 0 0 100px;
  color: #224564;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-point-item__catch {
    font-size: min(2vw, 2.4rem);
    padding: 1px 0 0 85px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item__catch {
    padding: 40px 0 0;
    text-align: center;
    font-size: min(2.5vw, 2.4rem);
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item__catch {
    text-align: left;
    padding: 3px 0 0 70px;
    font-size: 2rem;
  }
}
.top-lead-point-item__catch__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #4BA0BC;
  background: linear-gradient(339deg, rgb(75, 160, 188) 0%, rgb(46, 142, 197) 100%);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  border-radius: 200px;
  padding-top: 17px;
}
@media print, screen and (max-width: 1400px) {
  .top-lead-point-item__catch__number {
    width: 70px;
    height: 70px;
    font-size: 3.1rem;
    padding-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item__catch__number {
    width: 100%;
    height: 30px;
    padding-top: 1px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item__catch__number {
    width: 60px;
    height: 60px;
    font-size: 2.6rem;
    padding-top: 12px;
  }
}
.top-lead-point-item__text {
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item__text {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item__text {
    line-height: 1.7;
    margin-bottom: 15px;
  }
}
.top-lead-point-item__btn > a {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  display: block;
  background-color: #197cb4;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 200px;
  padding: 14px 30px 16px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: right 20px top 50%;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .top-lead-point-item__btn > a:hover {
    color: #fff;
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .top-lead-point-item__btn > a {
    line-height: 1.3;
    font-size: min(1.6vw, 1.7rem);
    padding: 14px 24px 16px 20px;
    background-size: 12px auto;
    background-position: right 9px top 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-lead-point-item__btn > a {
    font-size: 1.5rem;
    padding: 14px 35px 16px 35px;
    background-position: right 20px top 50%;
  }
}

.top-zyushin {
  margin-top: -70px;
  background-image: url(../img/top/zyushin.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 65px 30px;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1400px) {
  .top-zyushin {
    margin-top: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-zyushin {
    margin-top: 0;
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin {
    padding: 40px 20px;
  }
}

.top-zyushin-block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-block {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-block {
    padding: 35px 15px;
  }
}

.top-zyushin-item01 {
  width: calc(100% - 250px);
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item01 {
    width: 100%;
  }
}
.top-zyushin-item01__title {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  text-align: center;
  color: #224564;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item01__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
.top-zyushin-item01__title span {
  background-image: url(../img/common/icon_shinryo.svg);
  background-repeat: no-repeat;
  background-size: 30px auto;
  padding: 0 0 0 40px;
  background-position: left 0 top 7px;
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__title span {
    padding: 2px 0 2px 40px;
  }
}
.top-zyushin-item01__text {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__text {
    line-height: 1.4;
  }
}
.top-zyushin-item01__contact {
  background-color: #e6f2f8;
  border-radius: 10px;
  display: flex;
  padding: 25px 40px;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact {
    flex-wrap: wrap;
    padding: 20px 15px;
  }
}
.top-zyushin-item01__contact__telbox {
  width: calc(55% - 20px);
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact__telbox {
    width: 100%;
    text-align: center;
  }
}
.top-zyushin-item01__contact__telbox__tel {
  margin-top: 5px;
  color: #3b5973;
  font-family: "Hind", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1;
  display: block;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: left 5px top 1px;
  padding: 0 0 0 34px;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item01__contact__telbox__tel {
    font-size: 3.5rem;
    background-size: 20px auto;
    padding: 0 0 0 32px;
    background-position: left 5px top 2px;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact__telbox__tel {
    display: inline-block;
    font-size: min(9vw, 3.4rem);
    background-size: 9% auto;
    background-position: left 5px top 1px;
  }
}
.top-zyushin-item01__contact__telbox__time {
  font-size: 1.6rem;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact__telbox__time {
    font-size: 1.5rem;
  }
}
.top-zyushin-item01__contact__reserve {
  width: 45%;
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact__reserve {
    width: 100%;
  }
}
.top-zyushin-item01__contact__reserve > a {
  width: 100%;
  height: 100%;
  background-color: #16bfbd;
  display: flex;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 20px top 50%;
}
@media print, screen and (min-width: 1025px) {
  .top-zyushin-item01__contact__reserve > a:hover {
    color: #fff;
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact__reserve > a {
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 200px;
  }
}
.top-zyushin-item01__contact__reserve > a span {
  background-image: url(../img/common/icon_calendar.svg);
  background-repeat: no-repeat;
  padding: 0 20px 0 30px;
  background-size: 20px auto;
}
@media screen and (max-width: 599px) {
  .top-zyushin-item01__contact__reserve > a span {
    padding: 2px 20px 2px 30px;
  }
}

.top-zyushin-item02 {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item02 {
    width: 100%;
  }
}
.top-zyushin-item02 > a {
  width: 100%;
  height: 100%;
  background-image: url(../img/top/medical_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  padding: 26px 0 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item02 > a {
    height: 100px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-item02 > a {
    height: 130px;
    font-size: 2.1rem;
    padding: 10px 0 0;
  }
}
.top-zyushin-item02 > a::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  margin-left: -22px;
  width: 45px;
  height: 40px;
  background-image: url(../img/common/icon_medical.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item02 > a::before {
    top: 17px;
    width: 30px;
    height: 30px;
    margin-left: -15px;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-item02 > a::before {
    top: 22px;
  }
}
.top-zyushin-item02 > a::after {
  content: "";
  width: 50px;
  height: 24px;
  background-color: #235885;
  border-radius: 20px;
  position: absolute;
  bottom: 22px;
  left: 50%;
  margin-left: -25px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top-zyushin-item02 > a::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 20px;
    margin-top: -12px;
  }
}
@media screen and (max-width: 599px) {
  .top-zyushin-item02 > a::after {
    top: auto;
    bottom: 10px;
    left: 50%;
    right: auto;
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-zyushin-item02 > a:hover {
    opacity: 0.8;
    color: #fff;
    transform: translateY(2px);
  }
}

.top-achieve {
  padding: 120px 50px;
  background-image: url(../img/top/achieve_bg02.webp), url(../img/top/achieve_bg01.webp);
  background-repeat: no-repeat;
  background-position: right 20px top 20px, left 30px bottom 50px;
}
@media print, screen and (max-width: 1400px) {
  .top-achieve {
    background-size: 140px auto, 250px auto;
    padding: 110px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-achieve {
    padding: 60px 30px 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve {
    padding: 50px 20px 60px;
  }
}

.top-achieve-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-achieve-inner {
    flex-wrap: wrap;
  }
}

.top-achieve-title {
  width: 315px;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-achieve-title {
    width: 100%;
    text-align: center;
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-title {
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
.top-achieve-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 5px;
  border-radius: 20px;
  background: #56AFBA;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 50%, rgb(10, 91, 153) 100%);
}
@media screen and (max-width: 1024px) {
  .top-achieve-title::before {
    left: 50%;
    margin-left: -25px;
  }
}
.top-achieve-title__en {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-achieve-title__en {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-title__en {
    font-size: 1.1rem;
  }
}
.top-achieve-title__title {
  font-size: 4.3rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-achieve-title__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-title__title {
    font-size: 3rem;
  }
}
.top-achieve-title__title > span {
  font-size: 3.4rem;
}

.top-achieve-list {
  width: calc(100% - 315px);
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .top-achieve-list {
    width: 100%;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-list {
    gap: 20px;
  }
}

.top-achieve-item {
  width: calc((100% - 25px) / 2);
}
@media screen and (max-width: 1024px) {
  .top-achieve-item {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-item {
    width: 100%;
  }
}
.top-achieve-item > a {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(122, 173, 199, 0.4);
  overflow: hidden;
  display: flex;
  text-decoration: none;
  position: relative;
}
.top-achieve-item > a::before {
  content: "";
  border-top-left-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #4BA0BC;
  background: linear-gradient(339deg, rgb(75, 160, 188) 0%, rgb(46, 142, 197) 100%);
}
@media screen and (max-width: 1024px) {
  .top-achieve-item > a::before {
    width: 30px;
    height: 30px;
  }
}
.top-achieve-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top-achieve-item > a::after {
    width: 30px;
    height: 30px;
    background-size: 10px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-achieve-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.top-achieve-item__img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .top-achieve-item__img {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-item__img {
    width: 120px;
  }
}
.top-achieve-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-achieve-item__dl {
  display: flex;
  align-items: center;
  padding: 20px 30px 30px;
}
@media screen and (max-width: 1024px) {
  .top-achieve-item__dl {
    padding: 20px 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-achieve-item__dl {
    padding: 20px 20px 20px;
  }
}
.top-achieve-item__dl > div > dt {
  margin-bottom: 14px;
  font-size: 2.6rem;
  color: #224564;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-achieve-item__dl > div > dt {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
}
.top-achieve-item__dl > div > dd {
  line-height: 1.4;
  color: #6f808f;
}
@media screen and (max-width: 599px) {
  .top-achieve-item__dl > div > dd {
    font-size: 1.3rem;
  }
}

.top-disease {
  background-image: url(../img/common/noise.png), url(../img/top/guide_bg.webp);
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-position: center;
  padding: 70px 30px;
}
@media screen and (max-width: 1024px) {
  .top-disease {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-disease {
    padding: 50px 20px;
  }
}

.top-disease-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.top-disease-title {
  margin-bottom: 27px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-disease-title {
    margin-bottom: 17px;
  }
}
.top-disease-title__en {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: block;
  line-height: 1.3;
  margin-bottom: 10px;
}
.top-disease-title__ja {
  font-size: 4.3rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-disease-title__ja {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-disease-title__ja {
    font-size: 3rem;
  }
}

.top-disease-copy {
  text-align: center;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .top-disease-copy {
    margin-bottom: 30px;
  }
}

.top-disease-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-disease-list {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.top-disease-list > li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-disease-list > li {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-disease-list > li {
    width: 100%;
  }
}
.top-disease-list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  color: #224564;
  text-align: center;
  background-color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 35px;
  min-height: 80px;
  box-shadow: 0 0 15px rgba(72, 150, 194, 0.3);
  background-image: url(../img/common/arw_blue.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 20px top 50%;
}
@media print, screen and (min-width: 1025px) {
  .top-disease-list > li > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .top-disease-list > li > a {
    border-radius: 5px;
    font-size: 1.7rem;
    min-height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-disease-list > li > a {
    min-height: 56px;
    font-size: 1.6rem;
    background-position: right 15px top 50%;
  }
}

.top-disease-btn > a {
  max-width: 290px;
}

.top-message {
  padding: 70px 30px 70px;
}
@media screen and (max-width: 1024px) {
  .top-message {
    padding: 60px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-message {
    padding: 50px 20px 50px;
  }
}

.top-message-inner {
  max-width: 1580px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-message-inner {
    flex-wrap: wrap;
  }
}

.top-message-head {
  width: 290px;
}
@media screen and (max-width: 1024px) {
  .top-message-head {
    width: 100%;
  }
}

.top-message-title {
  padding-top: 50px;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-message-title {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-message-title {
    padding-top: 30px;
    margin-bottom: 15px;
  }
}
.top-message-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 5px;
  border-radius: 20px;
  background: #56AFBA;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 50%, rgb(10, 91, 153) 100%);
}
@media screen and (max-width: 1024px) {
  .top-message-title::before {
    left: 50%;
    margin-left: -25px;
  }
}
.top-message-title__en {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-message-title__en {
    margin-bottom: 5px;
  }
}
.top-message-title__title {
  font-size: 4.3rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-message-title__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-message-title__title {
    font-size: 3rem;
  }
}
.top-message-title__title > span {
  font-size: 3.4rem;
}

.top-message-text {
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .top-message-text {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-message-text {
    line-height: 1.5;
  }
}

.top-message-data {
  width: calc(100% - 290px);
}
@media screen and (max-width: 1024px) {
  .top-message-data {
    width: 100%;
  }
}

.top-message-list {
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 1024px) {
  .top-message-list {
    gap: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-message-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.top-message-item {
  width: calc((100% - 30px) / 2);
  height: 430px;
  position: relative;
}
@media print, screen and (max-width: 1400px) {
  .top-message-item {
    height: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .top-message-item {
    width: calc((100% - 20px) / 2);
    height: 270px;
  }
}
@media screen and (max-width: 599px) {
  .top-message-item {
    width: 100%;
    height: 220px;
  }
}
.top-message-item > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  position: relative;
}
.top-message-item > a::before {
  content: "";
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #4BA0BC;
  background: linear-gradient(339deg, rgb(75, 160, 188) 0%, rgb(46, 142, 197) 100%);
}
@media screen and (max-width: 1024px) {
  .top-message-item > a::before {
    width: 40px;
    height: 40px;
  }
}
.top-message-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top-message-item > a::after {
    width: 40px;
    height: 40px;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-message-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.top-message-item__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}
.top-message-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-message-item__text-box {
  position: absolute;
  left: 35px;
  bottom: 55px;
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-message-item__text-box {
    left: 20px;
    bottom: 20px;
  }
}
.top-message-item__text-box__class {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .top-message-item__text-box__class {
    margin-bottom: 5px;
    font-size: 1.5rem;
  }
}
.top-message-item__text-box__name {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 3.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-message-item__text-box__name {
    margin-bottom: 10px;
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-message-item__text-box__name {
    font-size: 2.6rem;
  }
}
.top-message-item__text-box__en {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
}

/* ********************
Disease
********************* */
.disease-title-area__title {
  line-height: 1.3;
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  padding-bottom: 25px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .disease-title-area__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .disease-title-area__title {
    font-size: 2.7rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
}
.disease-title-area__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 5px;
  border-radius: 20px;
  background: #56AFBA;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 50%, rgb(10, 91, 153) 100%);
}
@media screen and (max-width: 599px) {
  .disease-title-area__title::before {
    height: 4px;
  }
}
.disease-title-area__title span {
  display: block;
  font-size: 1.2rem;
  color: #1e3142;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .disease-title-area__title span {
    margin-bottom: 10px;
  }
}
.disease-title-area__text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .disease-title-area__text {
    text-align: left;
    margin-bottom: 40px;
  }
}

.disease-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .disease-search {
    flex-wrap: wrap;
  }
}
.disease-search__label {
  color: #1e3142;
  font-weight: 500;
  font-size: 1.9rem;
  margin-right: 20px;
  padding: 3px 0 3px 30px;
  background-image: url(../img/common/search.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: left 0 top 3px;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .disease-search__label {
    width: 100%;
    font-size: 1.7rem;
    background-size: 22px auto;
  }
}
.disease-search__data {
  display: flex;
  gap: 8px;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .disease-search__data {
    max-width: 100%;
  }
}
.disease-search__input {
  flex: 1;
  width: 100%;
  padding: 14px 20px;
  border-radius: 5px;
  border: none;
  background: #eaf3f7;
  font-size: 16px;
  outline: none;
}
.disease-search__input::placeholder {
  color: #8a9aa8;
}
.disease-search__input:focus {
  outline: none !important;
  background-color: #e1eff5;
}
.disease-search__input::-webkit-search-decoration, .disease-search__input::-webkit-search-cancel-button {
  cursor: pointer;
}
.disease-search__button {
  padding: 14px 30px;
  border: none;
  border-radius: 5px;
  background: #197cb4;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}
@media print, screen and (min-width: 1025px) {
  .disease-search__button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .disease-search__button {
    width: 60px;
    padding: 10px;
  }
}

.disease-block {
  background-color: #79b8dc;
  padding: 45px 50px 50px;
  border-radius: 10px;
  background-image: url(../img/common/noise.png);
}
@media print, screen and (max-width: 1400px) {
  .disease-block {
    padding: 45px 40px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .disease-block {
    padding: 45px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .disease-block {
    padding: 30px 20px 30px;
  }
}
.disease-block__title {
  text-align: center;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .disease-block__title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}
.disease-block__result {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  padding-bottom: 14px;
  margin-bottom: 28px;
  font-size: 1.7rem;
}
@media screen and (max-width: 599px) {
  .disease-block__result {
    padding-bottom: 11px;
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
}

.disease-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px;
}
@media screen and (max-width: 1024px) {
  .disease-list {
    gap: 10px;
  }
}
.disease-list > li {
  width: calc((100% - 15px) / 2);
}
@media screen and (max-width: 1024px) {
  .disease-list > li {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .disease-list > li {
    width: 100%;
  }
}
.disease-list > li > a {
  background-color: #fff;
  height: 100%;
  border-radius: 10px;
  line-height: 1.3;
  text-align: center;
  font-size: 1.8rem;
  color: #1e3142;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(72, 150, 194, 0.3);
  padding: 15px 50px 15px 40px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/common/arw_blue.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 25px top 50%;
}
@media print, screen and (min-width: 1025px) {
  .disease-list > li > a:hover {
    opacity: 0.8;
    color: #197cb4;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .disease-list > li > a {
    font-size: 1.7rem;
    min-height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .disease-list > li > a {
    border-radius: 5px;
    font-size: 1.6rem;
    min-height: 60px;
    padding: 15px 30px 15px 20px;
    background-position: right 10px top 50%;
  }
}

/* ********************
Disease detail
********************* */
.disease-detail-title {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .disease-detail-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .disease-detail-title {
    margin-bottom: 40px;
  }
}
.disease-detail-title__title {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.3;
  padding-top: 45px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .disease-detail-title__title {
    padding-top: 35px;
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .disease-detail-title__title {
    font-size: 2.4rem;
    padding-top: 30px;
  }
}
.disease-detail-title__title::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  border-radius: 20px;
  background: #56AFBA;
  background: linear-gradient(90deg, rgb(86, 175, 186) 0%, rgb(46, 142, 197) 50%, rgb(10, 91, 153) 100%);
}
@media screen and (max-width: 599px) {
  .disease-detail-title__title::before {
    height: 4px;
  }
}/*# sourceMappingURL=style.css.map */