@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;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=Overpass:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;600;700&display=swap");
/*テキスト色*/
body[id=""],
body:not([id=corporate]):not([id=medical]):not([id=care]) {
  --base-color: #1db8b0;
  --base-r-color: 29;
  --base-g-color: 184;
  --base-b-color: 176;
  --base-rgb-color: 29, 184, 176;
  --bg-color: #e4f4f3;
  --bg-r-color: 228;
  --bg-g-color: 244;
  --bg-b-color: 243;
  --bg-rgb-color: 228, 244, 243;
  --text-color: #124e54;
  --text-r-color: 18;
  --text-g-color: 78;
  --text-b-color: 84;
  --text-rgb-color: 18, 78, 84;
  --line-color: #c0d4d4;
  --line-r-color: 192;
  --line-g-color: 212;
  --line-b-color: 212;
  --line-rgb-color: 192, 212, 212;
}

#corporate {
  --base-color: #1db8b0;
  --base-r-color: 29;
  --base-g-color: 184;
  --base-b-color: 176;
  --base-rgb-color: 29, 184, 176;
  --bg-color: #e4f4f3;
  --bg-r-color: 228;
  --bg-g-color: 244;
  --bg-b-color: 243;
  --bg-rgb-color: 228, 244, 243;
  --text-color: #124e54;
  --text-r-color: 18;
  --text-g-color: 78;
  --text-b-color: 84;
  --text-rgb-color: 18, 78, 84;
  --line-color: #c0d4d4;
  --line-r-color: 192;
  --line-g-color: 212;
  --line-b-color: 212;
  --line-rgb-color: 192, 212, 212;
}

#medical {
  --base-color: #386ec3;
  --base-r-color: 56;
  --base-g-color: 110;
  --base-b-color: 195;
  --base-rgb-color: 56, 110, 195;
  --bg-color: #eff5fd;
  --bg-r-color: 239;
  --bg-g-color: 245;
  --bg-b-color: 253;
  --bg-rgb-color: 239, 245, 253;
  --text-color: #233354;
  --text-r-color: 35;
  --text-g-color: 51;
  --text-b-color: 84;
  --text-rgb-color: 35, 51, 84;
  --line-color: #c6dcf3;
  --line-r-color: 198;
  --line-g-color: 220;
  --line-b-color: 243;
  --line-rgb-color: 198, 220, 243;
}

#care {
  --base-color: #439564;
  --base-r-color: 67;
  --base-g-color: 149;
  --base-b-color: 100;
  --base-rgb-color: 67, 149, 100;
  --bg-color: #edfbf3;
  --bg-r-color: 237;
  --bg-g-color: 251;
  --bg-b-color: 243;
  --bg-rgb-color: 237, 251, 243;
  --text-color: #30493c;
  --text-r-color: 48;
  --text-g-color: 73;
  --text-b-color: 60;
  --text-rgb-color: 48, 73, 60;
  --line-color: #c0d4ca;
  --line-r-color: 192;
  --line-g-color: 212;
  --line-b-color: 202;
  --line-rgb-color: 192, 212, 202;
}

/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1200以上 */
@media screen and (max-width: 1200px) {
  .only1200 {
    display: none !important;
  }
}
/* タブレットipadpro・PC */
@media screen and (max-width: 1025px) {
  .tbpc1025 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット834・PC */
@media screen and (max-width: 834px) {
  .tb834pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレット834・SP */
@media screen and (min-width: 835px) {
  .tb834sp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットProのみ */
@media screen and (max-width: 769px), (min-width: 1025px) {
  .tb-pro {
    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;
  }
}
@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;
  }
}
/*--------------------------------------------------------

	リセット : 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%;
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
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;
  backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 5mm;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.2s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: var(--base-color);
  text-decoration: underline;
}

@media print, screen and (min-width: 1025px) {
  a:not([class]):hover {
    color: var(--base-color);
  }
}

a:not([class]):active {
  color: var(--base-color);
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/** Selection */
::-moz-selection {
  background-color: var(--base-color);
  /* Change as appropriate */
  color: #444;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: var(--base-color);
  /* 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;
}

/*body設定*/
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-image: url(../img/common/main_bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #363a41;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  text-rendering: optimizeSpeed;
  z-index: 0;
}
@media print, screen and (min-width: 1025px) {
  body {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.5rem;
    background-size: 110%;
  }
}
@media screen and (max-width: 599px) {
  body.top {
    background-size: 165%;
  }
}

body[id=""],
body:not([id=corporate]):not([id=medical]):not([id=care]) {
  background-image: none !important;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*クリアフィックス*/
.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;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.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;
  }
}

.header {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.site-logo {
  position: relative;
  max-width: 204px;
  margin-top: 45px;
  margin-left: 55px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .site-logo {
    max-width: 175px;
    margin-top: 20px;
    margin-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .site-logo {
    max-width: 138px;
    margin-top: 16px;
    margin-left: 11px;
  }
}
.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 {
  display: flex;
  gap: 9px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header-nav-wrapper {
    top: 10px;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav-wrapper {
    gap: 4px;
    top: 8px;
    right: 8px;
  }
}
.header-nav-wrapper__btn {
  display: block;
  width: 94px;
  height: 94px;
  padding: 63px 0 0;
  border-radius: 3px;
  background-color: #36b7ad;
  background-image: url(../img/common/icon_user.svg);
  background-position: center top 21px;
  background-repeat: no-repeat;
  background-size: 40px auto;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .header-nav-wrapper__btn {
    width: 75px;
    height: 75px;
    padding: 53px 0 0;
    background-position: center top 18px;
    background-size: 32px auto;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .header-nav-wrapper__btn {
    width: 58px;
    height: 58px;
    padding: 40px 0 0;
    background-size: 29px auto;
    background-position: center top 10px;
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .header-nav-wrapper__btn:hover {
    opacity: 0.8;
  }
}

.nav-btn {
  position: relative;
  width: 94px;
  height: 94px;
  padding-top: 50px;
  background-color: #233354;
  border-radius: 3px;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .nav-btn {
    width: 75px;
    height: 75px;
    padding-top: 47px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .nav-btn {
    width: 58px;
    height: 58px;
    padding-top: 34px;
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .nav-btn:hover::after {
    opacity: 0.7;
    transition: 0.3s ease-in-out;
  }
}
.nav-btn__menu {
  display: block;
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  width: 34px;
  height: 2px;
  background-color: #fff;
  margin: -1px auto 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .nav-btn__menu {
    width: 27px;
  }
}
@media screen and (max-width: 599px) {
  .nav-btn__menu {
    top: 42%;
    width: 24px;
  }
}
.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;
  transition: 0.3s ease-in-out;
}
.nav-btn__menu:before {
  margin-top: -10px;
}
@media screen and (max-width: 1024px) {
  .nav-btn__menu:before {
    margin-top: -8px;
  }
}
@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: 1024px) {
  .nav-btn__menu:after {
    margin-top: 6px;
  }
}
@media screen and (max-width: 599px) {
  .nav-btn__menu:after {
    margin-top: 5px;
  }
}
.nav-btn.close .nav-btn__menu {
  background-color: transparent;
}
.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);
}

.footer {
  border-top: 1px solid #dedfe2;
  background-color: #fff;
}
#corporate .footer {
  border-top: none;
}

.footer-wrapper01 {
  padding: 40px 40px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper01 {
    padding: 23px 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01 {
    padding: 32px 20px 28px;
  }
}
.footer-wrapper01__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper01__inner {
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01__inner {
    flex-direction: column;
  }
}
.footer-wrapper01__left {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 1300px) {
  .footer-wrapper01__left {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01__left {
    align-items: center;
  }
}
.footer-wrapper01__logo {
  position: relative;
  margin-right: 40px;
  padding-left: 20px;
  color: var(--text-color);
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.035em;
}
@media print, screen and (max-width: 1300px) {
  .footer-wrapper01__logo {
    padding-left: 11px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01__logo {
    padding-bottom: 10px;
    margin-bottom: 7px;
    font-size: 1.8rem;
    line-height: 1.4;
    padding-left: 0px;
    margin-right: 0px;
  }
}
.footer-wrapper01__logo::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 32px;
  margin: auto 0;
  background-color: var(--base-color);
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper01__logo::before {
    top: 3px;
    width: 3px;
    height: 26px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01__logo::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 28px;
  }
}
.footer-wrapper01__tel > a {
  position: relative;
  display: block;
  background-color: var(--bg-color);
  width: 260px;
  height: 56px;
  padding-left: 30px;
  border-radius: 50px;
  color: var(--base-color);
  font-size: 2.5rem;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  text-align: center;
  line-height: 56px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper01__tel > a {
    width: 250px;
    font-weight: 500;
  }
}
@media screen and (max-width: 834px) {
  .footer-wrapper01__tel > a {
    width: 200px;
    font-size: 2.1rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01__tel > a {
    height: 46px;
    padding-left: 15px;
    background-size: 20px auto;
    font-size: 2rem;
    line-height: 46px;
  }
}
.footer-wrapper01__tel > a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 30px;
  width: 24px;
  height: 28px;
  background-size: 100%;
  background-color: var(--base-color);
  -webkit-mask: url(../img/common/icon_phone.svg) no-repeat center/contain;
  mask: url(../img/common/icon_phone.svg) no-repeat center/contain;
}
@media screen and (max-width: 834px) {
  .footer-wrapper01__tel > a::before {
    top: 16px;
    left: 20px;
    width: 22px;
    height: 25px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper01__tel > a::before {
    width: 20px;
    top: 10px;
  }
}

.footer-info {
  display: flex;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1024px) {
  .footer-info {
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-info {
    align-items: center;
  }
}
.footer-info__address {
  margin-right: 1.5em;
  color: #50545d;
}
@media screen and (max-width: 1024px) {
  .footer-info__address {
    text-align: center;
  }
}
.footer-info__access {
  position: relative;
  margin-left: 20px;
  color: #2f69c1;
  text-decoration: underline;
}
.footer-info__access::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -20px;
  width: 15px;
  height: 20px;
  background-size: 100%;
  background-color: var(--base-color);
  -webkit-mask: url(../img/common/icon_pin.svg) no-repeat center/contain;
  mask: url(../img/common/icon_pin.svg) no-repeat center/contain;
}

.footer-wrapper02 {
  padding: 80px 40px 25px;
  background-color: #eef0f5;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02 {
    padding: 50px 17px 25px;
  }
}
.footer-wrapper02__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-wrapper02__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #cdd1da;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__head {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.footer-wrapper02__logo {
  max-width: 287px;
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__logo {
    max-width: 240px;
  }
}
@media print, screen and (max-width: 1200px) {
  .footer-wrapper02__menu {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__menu {
    display: none;
  }
}
.footer-wrapper02__body {
  padding: 30px 0 40px;
}
.footer-wrapper02__title {
  position: relative;
  margin-bottom: 25px;
  padding-left: 25px;
  color: #3c3f45;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__title {
    margin-bottom: 6px;
    padding-left: 21px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__title {
    font-size: 1.6rem;
  }
}
.footer-wrapper02__title::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 15px;
  height: 3px;
  background-color: #4dc6bc;
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__title::before {
    top: 13px;
  }
}
.footer-wrapper02__list {
  display: flex;
  border-left: 1px solid #cdcdcd;
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list {
    flex-direction: column;
    border-top: 1px solid #cdcdcd;
    border-left: none;
  }
}
.footer-wrapper02__list__item {
  flex: 1;
  gap: 5px;
  padding: 0 13px;
  border-right: 1px solid #cdcdcd;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__list__item {
    padding: 0 25px;
  }
}
@media screen and (max-width: 834px) {
  .footer-wrapper02__list__item {
    padding: 0 18px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list__item {
    border-right: none;
    border-bottom: 1px solid #cdcdcd;
    padding: 12px 0px;
  }
}
.footer-wrapper02__list__item__link {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__list__item__link {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list__item__link {
    gap: 5px;
    align-items: center;
    flex-direction: row;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-wrapper02__list__item__link:hover {
    opacity: 0.85;
  }
}
.footer-wrapper02__list__text {
  flex: 1;
  color: #3c3f45;
  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.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__list__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list__text {
    font-size: 1.7rem;
    letter-spacing: 0;
  }
}
.footer-wrapper02__list__text .mid {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__list__text .mid {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list__text .mid {
    font-size: 1.3rem;
  }
}
.footer-wrapper02__list__text .sml {
  font-size: 1.5rem;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__list__text .sml {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list__text .sml {
    font-size: 1.2rem;
  }
}
.footer-wrapper02__list__image {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper02__list__image {
    width: 100%;
    height: 75px;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__list__image {
    height: auto;
    width: 46%;
  }
}
.footer-wrapper02__list__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer-wrapper02__copy {
  color: #cdcdcd;
  font-size: 1.3rem;
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  text-align: right;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .footer-wrapper02__copy {
    text-align: center;
  }
}

.footer-nav__list {
  display: flex;
  justify-content: flex-end;
}
@media print, screen and (max-width: 1200px) {
  .footer-nav__list {
    justify-content: flex-start;
  }
}
.footer-nav__list__item:not(:last-child) {
  margin-right: 18px;
}
.footer-nav__list__item > a {
  padding-left: 17px;
  color: #3c3f45;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 1025px) {
  .footer-nav__list__item > a:hover {
    text-decoration: underline;
  }
}

.footer-copyright {
  color: #494949;
  font-size: 1.2rem;
  font-family: "Overpass", sans-serif;
  letter-spacing: 0.03em;
}

.pagetitle {
  position: relative;
  width: calc(100% - 110px);
  margin: 88px auto 14px;
  height: 360px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    width: 100%;
    height: auto;
    min-height: 30vw;
    margin: 98px auto 0px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 39vw;
    margin: 75px auto 0px;
  }
}
.pagetitle::before {
  content: "";
  position: absolute;
  bottom: -230px;
  left: -200px;
  width: 625px;
  min-height: 535px;
  background-image: url("../img/common/default/pagetitle_object.webp");
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .pagetitle::before {
    display: none;
  }
}

#default .pagetitle::before {
  background-image: url("../img/common/default/pagetitle_object.webp");
}

#corporate .pagetitle::before {
  background-image: url("../img/common/corporate/pagetitle_object.webp");
}

#medical .pagetitle::before {
  background-image: url("../img/common/medical/pagetitle_object.webp");
}

#care .pagetitle::before {
  background-image: url("../img/common/care/pagetitle_object.webp");
}

.pagetitle__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  min-width: 490px;
  height: 200px;
  margin: auto;
  padding: 1.5em 2em;
  background-image: url("../img/common/default/pagetitle_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  z-index: 2;
}
@media print, screen and (max-width: 1600px) {
  .pagetitle__title {
    min-width: 30%;
    height: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title {
    min-width: 36%;
    height: 15vw;
    left: 25px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__title {
    background-color: rgba(255, 255, 255, 0.5);
    top: 120px;
    bottom: auto;
    left: 16px;
    min-width: 43%;
    min-height: 18vw;
    height: auto;
    padding: 1em 2em;
    margin-right: 35px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    left: -14px;
    top: 70px;
    min-width: 60%;
    min-height: 19vw;
    margin-right: 18px;
    padding: 1em 0.8em 0.8em 1.5em;
  }
}
.pagetitle__title__jp {
  color: var(--text-color);
  font-size: 3.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media print, screen and (max-width: 1600px) {
  .pagetitle__title__jp {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__title__jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__jp {
    font-size: 4.8vw;
  }
}
.pagetitle__title__en {
  display: block;
  position: relative;
  padding-left: 40px;
  color: var(--base-color);
  font-size: 2rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media print, screen and (max-width: 1600px) {
  .pagetitle__title__en {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__en {
    padding-left: 20px;
    font-size: 2.9vw;
  }
}
.pagetitle__title__en::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--base-color);
}
@media screen and (max-width: 599px) {
  .pagetitle__title__en::before {
    width: 15px;
  }
}

#default .pagetitle__title {
  background-image: url("../img/common/default/pagetitle_bg.webp");
}

#corporate .pagetitle__title {
  background-image: url("../img/common/corporate/pagetitle_bg.webp");
}

#medical .pagetitle__title {
  background-image: url("../img/common/medical/pagetitle_bg.webp");
}

#care .pagetitle__title {
  background-image: url("../img/common/care/pagetitle_bg.webp");
}

.pagetitle__ph {
  overflow: hidden;
  position: absolute;
  right: 0;
  max-width: 1350px;
  width: calc(100% - 280px);
  height: 100%;
  border-radius: 8px;
  z-index: 1;
}
@media print, screen and (max-width: 1700px) {
  .pagetitle__ph {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__ph {
    right: 20px;
    width: 87%;
    height: 30vw;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__ph {
    right: 0;
    left: 0;
    width: calc(100% - 16px);
    height: 125px;
    margin: 0 auto;
    border-radius: 6px;
  }
}
.pagetitle__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-wrapper {
  padding: 0px 55px;
  background: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 28%);
}
@media print, screen and (max-width: 1300px) {
  .l-wrapper {
    padding: 0 3%;
  }
}
@media screen and (max-width: 1024px) {
  .l-wrapper {
    padding: 35px 25px 55px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 8%);
  }
}
@media screen and (max-width: 834px) {
  .l-wrapper {
    padding-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .l-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 4%);
    padding: 20px 15px 45px;
  }
}

.main-wrapper {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  margin: 30px 30px 0px;
  padding: 60px 65px;
  background-color: #fff;
  border-radius: 8px;
}
@media print, screen and (max-width: 1500px) {
  .main-wrapper {
    padding: 60px 3% 65px;
  }
}
@media screen and (max-width: 1024px) {
  .main-wrapper {
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
}
.main-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  left: -30px;
  width: calc(100% + 60px);
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .main-wrapper::before {
    display: none;
  }
}

.contents-wrapper {
  width: calc(100% - 275px);
  padding-bottom: 90px;
  padding-left: 65px;
}
@media print, screen and (max-width: 1400px) {
  .contents-wrapper {
    width: calc(100% - 260px);
    padding-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.contents-wrapper__inner {
  max-width: 920px;
  margin: 0 auto;
}

.side {
  position: relative;
  width: 275px;
  padding-right: 40px;
}
@media print, screen and (max-width: 1400px) {
  .side {
    width: 260px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .side {
    width: 100%;
    margin-top: 80px;
    padding-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .side {
    width: 100%;
    margin-top: 60px;
  }
}
.side::before {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  background: #D4E3F4;
  background: linear-gradient(90deg, rgba(212, 227, 244, 0) 24%, rgba(197, 228, 235, 0.35) 100%);
}
@media screen and (max-width: 1024px) {
  .side::before {
    display: none;
  }
}
#corporate .side::before {
  background: linear-gradient(90deg, rgba(212, 227, 244, 0) 24%, rgba(197, 228, 235, 0.35) 100%);
}
#medical .side::before {
  background: linear-gradient(90deg, rgba(212, 227, 244, 0) 24%, rgba(212, 227, 244, 0.35) 100%);
}
#care .side::before {
  background: linear-gradient(90deg, rgba(212, 227, 244, 0) 24%, rgba(206, 234, 226, 0.35) 100%);
}

.text-center {
  text-align: center;
}

.breadcrumbs {
  width: 100%;
  padding: 0px 60px 10px calc(480px + 8.7%);
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs-list {
  color: #191919;
  font-size: 1.5rem;
  text-align: right;
}
.breadcrumbs-list__item {
  display: inline;
}
.breadcrumbs-list__item a {
  position: relative;
  text-decoration: none;
}
.breadcrumbs-list__item a::after {
  content: ">";
  color: #bfbfbf;
  padding: 0 5px;
}
@media screen and (max-width: 599px) {
  .breadcrumbs-list__item a::after {
    padding: 0 0px 0px 5px;
  }
}

.title-main {
  position: relative;
  margin-bottom: 60px;
  padding-top: 12px;
  padding-bottom: 38px;
  border-bottom: 3px solid #e6e9ed;
  color: var(--text-color);
  font-size: 32px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  /*
  &:has(+ .title-block .title-sec02) {
      margin-bottom: 30px;

      @include mq(sp) {
          margin-bottom: 20px;
      }
  }*/
}
@media screen and (max-width: 1024px) {
  .title-main {
    padding-bottom: 11px;
    border-width: 2px;
    font-size: 26px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .title-main {
    font-size: 21px;
    padding-top: 0;
    padding-bottom: 10px;
    margin-bottom: 25px;
  }
}
.title-main::before {
  content: "";
  width: 100px;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: var(--base-color);
}
@media screen and (max-width: 1024px) {
  .title-main::before {
    height: 2px;
    bottom: -2px;
  }
}
@media screen and (max-width: 599px) {
  .title-main::before {
    width: 60px;
  }
}

.title-sec01 {
  position: relative;
  padding: 10px 0px 15px 17px;
  border-bottom: 1px solid #d6dde5;
  color: var(--text-color);
  font-size: 24px;
  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.02em;
}
@media screen and (max-width: 834px) {
  .title-sec01 {
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01 {
    font-size: 19px;
    padding-bottom: 10px;
    padding-left: 13px;
  }
}
.title-sec01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 32px;
  background-color: var(--base-color);
}
@media screen and (max-width: 834px) {
  .title-sec01::before {
    height: 30px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::before {
    height: 24px;
    width: 4px;
  }
}

.title-sec02 {
  color: var(--text-color);
  position: relative;
  padding-top: 8px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8e7e7;
  font-size: 22px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .title-sec02 {
    font-size: 19px;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02 {
    padding-top: 6px;
    font-size: 17px;
    padding-bottom: 10px;
  }
}
.title-sec02::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: var(--base-color);
}
@media screen and (max-width: 599px) {
  .title-sec02::before {
    width: 40px;
  }
}

.title-sec03 {
  position: relative;
  color: var(--text-color);
  font-size: 20px;
  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 dotted var(--base-color);
  padding: 5px 0 15px 30px;
}
@media screen and (max-width: 1024px) {
  .title-sec03 {
    font-size: 19px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03 {
    font-size: 17px;
    -webkit-text-stroke: 0;
    padding: 0 0 12px 22px;
  }
}
.title-sec03::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 18px;
  height: 4px;
  background-color: var(--base-color);
}
@media screen and (max-width: 599px) {
  .title-sec03::after {
    width: 14px;
    height: 3px;
    top: 10px;
  }
}

.title-sec04 {
  position: relative;
  color: var(--text-color);
  font-size: 20px;
  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 35px;
}
@media screen and (max-width: 1024px) {
  .title-sec04 {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04 {
    padding: 5px 0 5px 25px;
    font-size: 16px;
    line-height: 1.4;
  }
}
.title-sec04::before, .title-sec04::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .title-sec04::before, .title-sec04::after {
    top: 12px;
    width: 11px;
    height: 11px;
  }
}
.title-sec04::before {
  left: 11px;
  background-color: rgba(var(--base-rgb-color), 0.5);
}
@media screen and (max-width: 599px) {
  .title-sec04::before {
    left: 9px;
  }
}
.title-sec04::after {
  left: 0;
  background-color: var(--base-color);
}

.title-sec05 {
  position: relative;
  color: var(--text-color);
  font-size: 17px;
  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: var(--bg-color);
  padding: 15px 10px 15px 31px;
}
@media screen and (max-width: 1024px) {
  .title-sec05 {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05 {
    font-size: 15px;
    padding: 10px 10px 10px 25px;
  }
}
.title-sec05::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 5px;
  height: calc(100% - 26px);
  background-color: var(--base-color);
}
@media screen and (max-width: 599px) {
  .title-sec05::before {
    top: 9px;
    left: 12px;
    width: 3px;
    height: calc(100% - 18px);
  }
}

.title-sec06 {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.3;
  background-color: rgba(var(--base-rgb-color), 0.85);
  padding: 11px 10px 11px 29px;
}
@media screen and (max-width: 1024px) {
  .title-sec06 {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06 {
    font-size: 15px;
    padding: 10px 10px 10px 25px;
  }
}
.title-sec06::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 15px;
  width: 4px;
  height: calc(100% - 22px);
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 599px) {
  .title-sec06::before {
    top: 9px;
    left: 12px;
    width: 3px;
    height: calc(100% - 18px);
  }
}

.msg-sign__ttl {
  border-top: 1px dotted var(--base-color);
  padding-top: 15px;
  margin: 15px 0px -5px 35px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 15px;
  color: var(--base-color);
}
@media screen and (max-width: 599px) {
  .msg-sign__ttl {
    padding-top: 12px;
    margin: 12px 0px 0px 25px;
    font-size: 14px;
    line-height: 1.5;
  }
}
.msg-sign__ttl span {
  color: #363a41;
  margin-left: 20px;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .msg-sign__ttl span {
    margin-left: 0;
    display: block;
    font-size: 16px;
  }
}

/*各テンプレートを囲むbox【必須】*/
.box {
  margin-bottom: 25px;
  *zoom: 1;
}
.box:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 834px) {
  .box {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .box {
    margin-bottom: 15px;
  }
}
.box a {
  color: var(--base-color);
}
.box a:hover {
  text-decoration: none;
}
.box:has(> .copy-mincho):not(:has(+ .title-block)), .box:has(> .copy-gothic):not(:has(+ .title-block)) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .box:has(> .copy-mincho):not(:has(+ .title-block)), .box:has(> .copy-gothic):not(:has(+ .title-block)) {
    margin-bottom: 10px;
  }
}

/*youtube*/
.youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.youtube-wrapper--m {
  max-width: 600px;
}
.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 {
  /*デフォルトの処理*/
  word-break: break-all;
  /*以下テンプレート外*/
}
.block__wysiwyg a {
  color: var(--base-color);
  text-decoration: underline;
}
.block__wysiwyg a:hover {
  text-decoration: none;
}
.block__wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.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, .block__wysiwyg ol {
  list-style: none;
}
.block__wysiwyg ul:not([class]), .block__wysiwyg ol:not([class]) {
  padding-left: 1.5em;
}
.block__wysiwyg ul:not([class]) {
  list-style: initial;
}
.block__wysiwyg ol:not([class]) {
  list-style: 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;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 834px) {
  .pagination {
    margin-top: 45px;
  }
}
.pagination-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 58px;
  height: 58px;
  color: var(--base-color);
  font-size: 2rem;
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  background-color: var(--bg-color);
  border-radius: 50%;
  margin: 0 6px;
  padding-top: 3px;
}
@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: 40px;
    height: 40px;
    font-size: 1.6rem;
    margin: 0 3px;
  }
}
.pagination-item__number:hover, .pagination-item__number.active {
  color: #fff !important;
  background-color: var(--base-color);
  transition: 0.3s ease-in-out;
}
.pagination-item__prev, .pagination-item__next {
  position: relative;
  color: var(--base-color);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.pagination-item__prev::before, .pagination-item__next::before {
  position: absolute;
  content: "";
  top: 3px;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--base-color);
  border-right: 2px solid var(--base-color);
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .pagination-item__prev:hover, .pagination-item__next:hover {
    color: var(--base-color);
  }
}
.pagination-item__prev {
  margin-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  .pagination-item__prev {
    margin-right: 8px;
    padding-left: 12px;
  }
}
.pagination-item__prev::before {
  left: 0;
  transform: rotate(-135deg);
}
.pagination-item__next {
  margin-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 599px) {
  .pagination-item__next {
    margin-left: 8px;
    padding-right: 12px;
  }
}
.pagination-item__next::before {
  right: 0;
}

.gnav-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 98;
  overflow-x: hidden;
  overflow-y: auto;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
.gnav-modal::-webkit-scrollbar {
  display: none;
}
.gnav-modal::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/default/menu_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.gnav-modal__wrap {
  position: relative;
  margin: 150px auto 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .gnav-modal__wrap {
    margin: 150px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal__wrap {
    margin: 95px auto 0;
  }
}

#default .gnav-modal::before {
  background-image: url("../img/common/default/menu_bg.webp");
}

#corporate .gnav-modal::before {
  background-image: url("../img/common/corporate/menu_bg.webp");
}

#medical .gnav-modal::before {
  background-image: url("../img/common/medical/menu_bg.webp");
}

#care .gnav-modal::before {
  background-image: url("../img/common/care/menu_bg.webp");
}

.gnav-modal-logo {
  position: absolute;
  max-width: 204px;
  top: 45px;
  left: 55px;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-logo {
    max-width: 175px;
    top: 20px;
    left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-logo {
    max-width: 138px;
    top: 16px;
    left: 11px;
  }
}

.gnav-modal__contents__head {
  width: 100%;
  padding: 0 50px 60px;
}
@media screen and (max-width: 1024px) {
  .gnav-modal__contents__head {
    padding: 0 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal__contents__head {
    padding: 0 15px 30px;
  }
}
.gnav-modal__contents__head__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.gnav-modal__contents__footer {
  padding: 50px 50px 90px;
  background-color: rgba(var(--base-rgb-color), 0.07);
}
@media screen and (max-width: 1024px) {
  .gnav-modal__contents__footer {
    padding: 40px 30px 80px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal__contents__footer {
    padding: 25px 15px 80px;
  }
}
.gnav-modal__contents__footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.gnav-modal-head__ttl-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--base-color);
}
@media screen and (max-width: 834px) {
  .gnav-modal-head__ttl-wrapper {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-head__ttl-wrapper {
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
}
.gnav-modal-head__title {
  color: var(--text-color);
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-head__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-head__title {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-head__title {
    font-size: 1.8rem;
  }
}
.gnav-modal-head__title > span {
  display: block;
  position: relative;
  padding-left: 40px;
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-head__title > span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-head__title > span {
    padding-left: 35px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-head__title > span {
    padding-left: 25px;
    font-size: 1.2rem;
  }
}
.gnav-modal-head__title > span::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--base-color);
}
@media screen and (max-width: 834px) {
  .gnav-modal-head__title > span::before {
    top: 10px;
    width: 25px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-head__title > span::before {
    width: 20px;
  }
}
.gnav-modal-head__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 180px;
  height: 46px;
  border: 1px solid var(--base-color);
  border-radius: 50px;
  color: var(--base-color);
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-head__btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-head__btn {
    font-size: 1.5rem;
    width: 160px;
    height: 42px;
  }
}
.gnav-modal-head__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--base-color);
  border-right: 2px solid var(--base-color);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-head__btn:hover {
    background-color: var(--base-color);
    color: #fff;
  }
  .gnav-modal-head__btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.gnav-modal-footer__btn {
  display: block;
  position: relative;
  width: 254px;
  height: 48px;
  margin: 0 auto;
  border: 1px solid #39bbbd;
  color: #1eafaa;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 44px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-footer__btn {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-footer__btn {
    font-size: 1.6rem;
    width: 200px;
  }
}
.gnav-modal-footer__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #39bbbd;
  border-right: 2px solid #39bbbd;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-footer__btn:hover {
    background-color: #39bbbd;
    color: #fff;
  }
  .gnav-modal-footer__btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.gnav-modal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 27px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list {
    gap: 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list {
    margin-bottom: 20px;
  }
}
.gnav-modal-list__item {
  position: relative;
  width: calc((99.9% - 81px) / 4);
  border-bottom: 1px solid var(--line-color);
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list__item {
    width: calc((99.9% - 45px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item {
    width: 100%;
  }
}
.gnav-modal-list__item__link {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 20px 0 20px 35px;
  color: #2b2b2b;
  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;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list__item__link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__link {
    padding: 17px 0 17px 30px;
    font-size: 1.7rem;
  }
}
.gnav-modal-list__item__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__link::before {
    left: 7px;
  }
}
.gnav-modal-list__item__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  width: 20px;
  height: 20px;
  margin: auto 0;
  background-color: var(--base-color);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .gnav-modal-list__item__link::after {
    width: 18px;
    height: 18px;
  }
}
.gnav-modal-list__item__link:hover {
  color: var(--base-color);
}

.gnav-modal-info {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .gnav-modal-info {
    margin-top: 18px;
    flex-direction: column;
  }
}
.gnav-modal-info:has(.btn-line--rsv) {
  padding-right: 235px;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-info:has(.btn-line--rsv) {
    padding-right: 205px;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-info:has(.btn-line--rsv) {
    padding-bottom: 70px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-info:has(.btn-line--rsv) {
    padding-bottom: 0;
  }
}
.gnav-modal-info__address {
  position: relative;
  margin-right: 1em;
  padding-left: 23px;
  color: #50545d;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 834px) {
  .gnav-modal-info__address {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-info__address {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }
}
.gnav-modal-info__address::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: var(--base-color);
  -webkit-mask: url(../img/common/icon_pin.svg) no-repeat center/contain;
  mask: url(../img/common/icon_pin.svg) no-repeat center/contain;
}
@media screen and (max-width: 599px) {
  .gnav-modal-info__address::before {
    top: -2px;
  }
}
.gnav-modal-info__tel {
  position: relative;
  padding-left: 26px;
  color: var(--base-color);
  font-size: 2.5rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .gnav-modal-info__tel {
    font-size: 1.8rem;
    border: 1px solid var(--base-color);
    padding: 6px 22px 5px 34px;
    border-radius: 50px;
  }
}
.gnav-modal-info__tel::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 26px;
  background-size: 100%;
  background-color: var(--base-color);
  -webkit-mask: url(../img/common/icon_phone.svg) no-repeat center/contain;
  mask: url(../img/common/icon_phone.svg) no-repeat center/contain;
}
@media screen and (max-width: 599px) {
  .gnav-modal-info__tel::before {
    width: 20px;
    left: 11px;
  }
}
.gnav-modal-info .btn-line--rsv {
  position: absolute;
  right: 0;
  min-width: 220px;
  padding-left: 40px;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-info .btn-line--rsv {
    min-width: 185px;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-info .btn-line--rsv {
    width: 240px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-info .btn-line--rsv {
    width: 80%;
    margin-top: 18px;
    position: relative;
    padding: 13px 50px 13px 55px;
  }
}

.gnav-modal-list02 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .gnav-modal-list02 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gnav-modal-list02__title {
  position: relative;
  width: 95px;
  color: #386ec3;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.care .gnav-modal-list02__title {
  color: #439564;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list02__title {
    width: 85px;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-list02__title {
    width: auto;
    padding-left: 20px;
    font-size: 1.6rem;
    margin-bottom: 7px;
  }
  .gnav-modal-list02__title::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 15px;
    height: 3px;
    background-color: #386ec3;
  }
  .care .gnav-modal-list02__title::before {
    background-color: #439564;
  }
}
.gnav-modal-list02__body {
  flex: 1;
  padding-left: 20px;
  border-left: 3px solid #386ec3;
}
.care .gnav-modal-list02__body {
  border-left-color: #439564;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list02__body {
    padding-left: 10px;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-list02__body {
    padding-left: 0;
    border-left: none;
  }
}
.gnav-modal-list02__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 599px) {
  .gnav-modal-list02__nav {
    gap: 4px;
  }
}
.gnav-modal-list02__nav__item {
  width: calc((99.9% - 24px) / 4);
}
@media screen and (max-width: 834px) {
  .gnav-modal-list02__nav__item {
    width: calc((99.9% - 8px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .gnav-modal-list02__nav__item {
    width: 100%;
  }
}
.col3 .gnav-modal-list02__nav__item {
  width: calc((99.9% - 16px) / 3);
}
@media screen and (max-width: 834px) {
  .col3 .gnav-modal-list02__nav__item {
    width: calc((99.9% - 8px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .col3 .gnav-modal-list02__nav__item {
    width: 100%;
  }
}
.gnav-modal-list02__nav__link {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  min-height: 64px;
  padding: 15px 20px;
  background-color: #fff;
  color: #363a41;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .gnav-modal-list02__nav__link {
    padding: 14px;
    font-size: 1.5rem;
    letter-spacing: 0.025em;
    line-height: 1.3;
  }
}
@media screen and (max-width: 834px) {
  .gnav-modal-list02__nav__link {
    min-height: 56px;
  }
}
.gnav-modal-list02__nav__link::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border: 6px solid transparent;
  border-right-color: #386ec3;
  border-bottom-color: #386ec3;
}
.care .gnav-modal-list02__nav__link::after {
  border-right-color: #439564;
  border-bottom-color: #439564;
}
@media print, screen and (min-width: 1025px) {
  .gnav-modal-list02__nav__link:hover {
    color: #386ec3;
  }
  .care .gnav-modal-list02__nav__link:hover {
    color: #439564;
  }
}

.subnavi-list {
  position: relative;
  border-top: 1px solid var(--line-color);
}
.subnavi-list__item {
  border-bottom: 1px solid var(--line-color);
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .subnavi-list__item {
    font-size: 1.5rem;
  }
}
.subnavi-list__item__link {
  display: block;
  position: relative;
  color: #363a41;
  padding: 22px 18px 22px 10px;
}
@media screen and (max-width: 599px) {
  .subnavi-list__item__link {
    padding: 15px 18px 15px 10px;
  }
}
.subnavi-list__item__link::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--base-color);
  border-right: 2px solid var(--base-color);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .subnavi-list__item__link::before {
    top: 22px;
  }
}
.subnavi-list__item__link.active {
  color: var(--base-color);
  background-color: var(--bg-color);
}
@media print, screen and (min-width: 1025px) {
  .subnavi-list__item__link:hover {
    color: var(--base-color);
  }
}

.title-block {
  margin-bottom: 30px;
  *zoom: 1;
  /*&:has(.title-sec01):has(+ .title-block .title-sec02) {
      margin-bottom: 30px;

      @include mq(sp) {
          margin-bottom: 20px;
      }
  }*/
}
.title-block:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  .title-block {
    margin-bottom: 20px;
  }
}
.title-block:has(> .title-sec05), .title-block:has(> .title-sec06) {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .title-block:has(> .title-sec05), .title-block:has(> .title-sec06) {
    margin-bottom: 10px;
  }
}
.title-block:has(> .title-sec04):not(:has(+ .title-block)) {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .title-block:has(> .title-sec04):not(:has(+ .title-block)) {
    margin-bottom: 8px;
  }
}

.block-cms {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .block-cms {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms {
    margin-bottom: 15px;
  }
}
.block-cms a {
  color: var(--base-color);
}
.block-cms a:hover {
  text-decoration: none;
}
.block-cms .block__wysiwyg .box:last-child {
  margin-bottom: 0 !important;
}
.block-cms:has(+ .title-block) {
  margin-bottom: 35px;
  *zoom: 1;
}
.block-cms:has(+ .title-block):after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1024px) {
  .block-cms:has(+ .title-block) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms:has(+ .title-block) {
    margin-bottom: 25px;
  }
}
.block-cms:has(+ .title-block > .title-sec04) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .block-cms:has(+ .title-block > .title-sec04) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms:has(+ .title-block > .title-sec04) {
    margin-bottom: 10px;
  }
}
.block-cms:has(> .copy-mincho):not(:has(+ .title-block)) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .block-cms:has(> .copy-mincho):not(:has(+ .title-block)) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms:has(> .copy-mincho):not(:has(+ .title-block)) {
    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 {
  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: 12px;
  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: 31px;
  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: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.block-category__copy {
  margin-bottom: 15px;
  padding: 10px 10px 8px;
  background-color: var(--base-color);
  line-height: 1.4;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .block-category__copy {
    padding: 13px 10px 10px;
    font-size: 16px;
    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: var(--base-color);
  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;
  transform: rotate(45deg);
}

.greeting-credit {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 700;
}
.greeting-credit__sub {
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .greeting-credit__sub {
    font-size: 12px;
  }
}
.greeting-credit__main {
  font-size: 24px;
}
@media screen and (max-width: 599px) {
  .greeting-credit__main {
    font-size: 20px;
  }
}
.greeting-credit__main .f-s {
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .greeting-credit__main .f-s {
    font-size: 14px;
  }
}

.step-flow {
  position: relative;
  background-color: #f2f9e3;
  border-radius: 8px;
  padding: 0px 28px 28px 0px;
}
@media screen and (max-width: 834px) {
  .step-flow {
    padding: 0px 20px 20px 0px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow {
    padding: 0px 13px 13px 0px;
    border-radius: 5px;
  }
}
.step-flow::before {
  border-left: 10px dotted #b8d47a;
  content: "";
  height: calc(100% - 50px);
  width: 10px;
  left: 78px;
  position: absolute;
  top: 65px;
}
@media print, screen and (max-width: 1500px) {
  .step-flow::before {
    left: 38px;
    border-left: 8px dotted #b8d47a;
    width: 8px;
  }
}
@media screen and (max-width: 834px) {
  .step-flow::before {
    left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow::before {
    top: 45px;
    left: 16px;
    border-width: 7px;
  }
}
.step-flow::after {
  content: "";
  position: absolute;
  left: 55px;
  bottom: -23px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 28px 0 28px;
  border-color: #b8d47a transparent transparent transparent;
}
@media print, screen and (max-width: 1500px) {
  .step-flow::after {
    left: 16px;
    bottom: -18px;
    border-width: 16px 26px 0 26px;
  }
}
@media screen and (max-width: 834px) {
  .step-flow::after {
    left: 4px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow::after {
    bottom: -12px;
    left: -3px;
    border-width: 15px 24px 0 24px;
  }
}
.step-flow.end::before, .step-flow.end::after {
  display: none;
}
.step-flow__heading {
  display: inline-block;
  min-width: 180px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 22px;
  color: #fff;
  background-color: #8ebe29;
  margin-bottom: 7px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  line-height: 1.3;
  padding: 10px 25px;
}
@media screen and (max-width: 834px) {
  .step-flow__heading {
    font-size: 18px;
    padding: 8px 15px;
    min-width: 150px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__heading {
    font-size: 17px;
    min-width: 90px;
    margin-bottom: 0;
    padding: 6px 12px;
  }
}
.step-flow__list {
  margin-left: 140px;
}
@media print, screen and (max-width: 1500px) {
  .step-flow__list {
    margin-left: 85px;
  }
}
@media screen and (max-width: 834px) {
  .step-flow__list {
    margin-left: 55px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__list {
    margin-left: 40px;
  }
}
.step-flow__list__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 23px 34px 20px;
  margin-top: 12px;
  display: flex;
  container-type: inline-size;
  container-name: main;
}
@media screen and (max-width: 834px) {
  .step-flow__list__item {
    padding: 23px 25px 20px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__list__item {
    border-radius: 5px;
    margin-top: 8px;
    padding: 18px;
    flex-direction: column;
  }
}
.step-flow__list__box {
  flex: 1;
}
.step-flow__list__box__ttl {
  display: flex;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  align-items: center;
  line-height: 1.4;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  gap: 7px 0px;
}
@media screen and (max-width: 599px) {
  .step-flow__list__box__ttl {
    flex-direction: column;
    align-items: start;
    padding-bottom: 6px;
    margin-bottom: 12px;
    gap: 4px 0px;
  }
}
.step-flow__list__box__ttl:not(:has(+ .block__wysiwyg)) {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 5px;
}
.step-flow__list__box__ttl .tit {
  position: relative;
  font-size: 22px;
  color: #439564;
  padding-left: 23px;
}
@media screen and (max-width: 834px) {
  .step-flow__list__box__ttl .tit {
    font-size: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__list__box__ttl .tit {
    font-size: 17px;
    margin-bottom: 2px;
  }
}
.step-flow__list__box__ttl .tit::before {
  border: 5px solid #6fb18a;
  border-radius: 50px;
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  position: absolute;
  top: 8px;
}
@media screen and (max-width: 834px) {
  .step-flow__list__box__ttl .tit::before {
    height: 16px;
    width: 16px;
    border-width: 4px;
    top: 6px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__list__box__ttl .tit::before {
    top: 4px;
  }
}
.step-flow__list__box__ttl .sub {
  font-size: 18px;
  color: #75ab02;
  margin-left: 25px;
}
@media screen and (max-width: 834px) {
  .step-flow__list__box__ttl .sub {
    font-size: 16px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__list__box__ttl .sub {
    font-size: 14px;
  }
}
.step-flow__list__box .block__wysiwyg {
  line-height: 1.7;
}
.step-flow__list__ph {
  max-width: 260px;
  margin-left: 45px;
}
@media screen and (max-width: 1024px) {
  .step-flow__list__ph {
    margin-left: 25px;
  }
}
@media screen and (max-width: 834px) {
  .step-flow__list__ph {
    max-width: 200px;
  }
}
@media screen and (max-width: 599px) {
  .step-flow__list__ph {
    margin-top: 15px;
    width: 100%;
    max-width: inherit;
    margin-left: 0;
  }
}
@container main (max-width: 700px) {
  .step-flow__list__ph {
    margin-left: 25px;
  }
}

.img-right {
  margin: 0px 0 20px 30px;
  width: auto;
  max-width: 33%;
  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-left {
  margin: 0px 30px 20px 0;
  width: auto;
  max-width: 33%;
  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;
}

.text-right {
  width: calc(67% - 30px);
  float: right;
  text-align: left !important;
}
@media screen and (max-width: 599px) {
  .text-right {
    width: auto;
    float: none;
  }
}

.text-left {
  width: calc(67% - 30px);
  float: left;
  text-align: left !important;
}
@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% - 20px) / 3);
  text-align: center;
  float: left;
  margin-bottom: 15px;
}
.photo-3 li:not(:nth-child(3n)) {
  margin-right: 10px;
}
@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-2 {
  padding: 0 !important;
  list-style: none;
}
.photo-2 li {
  list-style: none !important;
  width: calc((100% - 10px) / 2);
  text-align: center;
  float: left;
  margin-bottom: 15px;
}
.photo-2 li:not(:nth-child(2n)) {
  margin-right: 10px;
}
@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-1 {
  width: 100%;
  text-align: center;
}
.photo-1.type02 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.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;
}
@media screen and (max-width: 599px) {
  .photo-auto li {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.text {
  word-break: break-all;
}
.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: var(--base-color);
  font-size: 22px;
  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: 21px;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic {
    font-size: 17px;
    font-weight: 500;
  }
}
.copy-gothic.big {
  font-size: 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .copy-gothic.big {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic.big {
    font-size: 25px;
    letter-spacing: -0.03em;
  }
}

.copy-mincho {
  color: var(--base-color);
  font-size: 24px;
  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: 22px;
  }
}
@media screen and (max-width: 599px) {
  .copy-mincho {
    font-size: 18px;
    font-weight: 500;
  }
}

.text-standard {
  word-break: break-all;
}

.caption {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  .caption {
    margin-top: 5px;
    font-size: 14px;
  }
}

.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;
  }
}

.en-break {
  word-break: break-all;
}

.text-red {
  color: #d00;
}

.list-wrapper {
  list-style: none;
  padding-left: 15px;
}
.list-wrapper li {
  list-style: none !important;
  margin-top: 10px;
  line-height: 1.5em;
  word-break: break-all;
  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;
}

ul.list-wrapper {
  padding-left: 0px;
}
ul.list-wrapper li {
  padding-left: 25px;
}
ul.list-wrapper li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 9px;
  height: 9px;
  background-color: var(--base-color);
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  ul.list-wrapper li::before {
    top: 6px;
  }
}
@media screen and (max-width: 599px) {
  ul.list-wrapper li::before {
    left: 2px;
    width: 7px;
    height: 7px;
  }
}

ol.list-wrapper {
  list-style: decimal;
}
@media screen and (max-width: 599px) {
  ol.list-wrapper li {
    padding-left: 0;
  }
}
ol.list-wrapper ul li {
  list-style: disc !important;
}
@media screen and (max-width: 599px) {
  ol.list-wrapper ul li {
    padding-left: 0;
  }
}

_:-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__item {
  margin-top: 10px;
  padding: 0px 0 0 42px;
  min-height: 35px;
  line-height: 1.5em;
  background-size: 30px 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__item {
    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__item:has(p) {
  margin-top: 20px;
  background-position: 0 0;
}
@media screen and (max-width: 599px) {
  .list-file__item:has(p) {
    margin-top: 15px;
  }
}
.list-file__item:first-child {
  margin-top: 0 !important;
}
.list-file__item.pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.list-file__item.xls {
  background-image: url(../img/common/icon_excel.svg);
}
.list-file__item.doc {
  background-image: url(../img/common/icon_word.svg);
}
.list-file__item.link {
  background-image: url(../img/common/icon_link.svg);
  background-size: 21px auto;
  background-position: 8px 0px;
}
.list-file__item a {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
.list-file__item a:hover {
  text-decoration: none;
}
.list-file__item p {
  margin-top: 3px;
  font-size: 15px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .list-file__item p {
    font-size: 14px;
  }
}

.list-file-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .list-file-btn {
    gap: 5px;
  }
}
.list-file-btn__item {
  width: calc((100% - 20px) / 3);
  position: relative;
  min-height: 62px;
}
@media screen and (max-width: 834px) {
  .list-file-btn__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .list-file-btn__item {
    width: 100%;
    min-height: 50px;
  }
}
.list-file-btn__item a {
  width: 100%;
  height: 100%;
  padding: 14px 40px 13px 54px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
  text-align: left;
  text-decoration: none;
  border: 1px solid #cacaca;
  border-radius: 3px;
  display: flex;
  align-items: center;
  color: var(--text-color);
}
@media screen and (max-width: 834px) {
  .list-file-btn__item a {
    font-size: 15px;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 599px) {
  .list-file-btn__item a {
    padding: 11px 36px 9px 44px;
    font-size: 14px;
    background-size: 16px auto;
    background-position: right 12px top 50%;
  }
}
.list-file-btn__item a::before {
  content: "";
  top: 50%;
  left: 15px;
  background-image: url(../img/common/icon_file.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 50%;
  width: 27px;
  height: 33px;
  transform: translateY(-52%);
  position: absolute;
}
@media screen and (max-width: 599px) {
  .list-file-btn__item a::before {
    left: 12px;
    width: 21.6px;
    height: 26.4px;
  }
}
.list-file-btn__item a::after {
  content: "";
  top: calc(50% - 5px);
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--base-color);
  border-right: 3px solid var(--base-color);
  transform: rotate(45deg);
  position: absolute;
}
@media screen and (max-width: 599px) {
  .list-file-btn__item a::after {
    top: calc(50% - 4px);
    right: 14px;
    width: 8px;
    height: 8px;
  }
}
@media print, screen and (min-width: 1025px) {
  .list-file-btn__item a:hover {
    border-color: var(--base-color);
  }
}
.list-file-btn__item.pdf a::before {
  background-image: url(../img/common/icon_pdf.svg);
}
.list-file-btn__item.word a::before {
  background-image: url(../img/common/icon_word.svg);
}
.list-file-btn__item.xls a::before {
  background-image: url(../img/common/icon_excel.svg);
}
.list-file-btn__item.link a::before {
  background-image: url(../img/common/icon_link.svg);
  left: 21px;
  width: 22px;
  height: 28px;
}
@media screen and (max-width: 599px) {
  .list-file-btn__item.link a::before {
    width: 17.6px;
    height: 30.4px;
  }
}
.list-file-btn:has(> :nth-child(1):last-child) li.download-list__item {
  width: auto;
  min-width: 260px;
}
.list-file-btn.column2 {
  gap: 12px;
}
@media screen and (max-width: 599px) {
  .list-file-btn.column2 {
    gap: 8px;
  }
}
.list-file-btn.column2 .list-file-btn__item {
  width: calc((100% - 12px) / 2);
}
@media screen and (max-width: 599px) {
  .list-file-btn.column2 .list-file-btn__item {
    width: 100%;
  }
}

.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;
  gap: 10px;
  background-color: transparent;
  padding-left: 0 !important;
}
@media screen and (max-width: 599px) {
  .page-nav {
    gap: 8px !important;
  }
}
.page-nav__item {
  width: calc((100% - 20px) / 3);
  list-style: none !important;
}
@media screen and (max-width: 599px) {
  .page-nav__item {
    width: 100% !important;
  }
}
.page-nav__item > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  height: 100%;
  padding: 13px 14px 13px 40px;
  border: 1px solid var(--base-color);
  font-size: 17px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 3px;
  color: var(--text-color);
}
@media screen and (max-width: 1024px) {
  .page-nav__item > a {
    font-size: 16px;
    min-height: 62px;
  }
}
@media screen and (max-width: 599px) {
  .page-nav__item > a {
    padding: 16px 10px 16px 36px;
    font-size: 15px;
    min-height: inherit;
  }
}
.page-nav__item > a::before, .page-nav__item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.page-nav__item > a::before {
  left: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .page-nav__item > a::before {
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
.page-nav__item > a::after {
  left: 10px;
  width: 22px;
  height: 22px;
  background-color: var(--base-color);
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .page-nav__item > a::after {
    width: 19px;
    height: 19px;
  }
}
@media print, screen and (min-width: 1025px) {
  .page-nav__item > a:hover {
    border-color: var(--base-color);
  }
}
.page-nav__item.active a {
  color: var(--base-color);
}
.page-nav.column2 {
  gap: 12px;
}
@media screen and (max-width: 599px) {
  .page-nav.column2 {
    gap: 8px;
  }
}
.page-nav.column2 .page-nav__item {
  width: calc((100% - 12px) / 2);
}
@media screen and (max-width: 599px) {
  .page-nav.column2 .page-nav__item {
    width: 100%;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .list-btn {
    gap: 7px;
  }
}
.list-btn__item {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 1024px) {
  .list-btn__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .list-btn__item {
    width: 100% !important;
  }
}
.list-btn__item__link {
  position: relative;
  display: block;
  width: 100%;
  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 var(--base-color);
  padding: 12px 20px;
  border-radius: 48px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .list-btn__item__link {
    padding: 10px 20px;
  }
}
.list-btn__item__link span {
  position: relative;
  display: block;
  padding: 0 0 0 29px;
}
.list-btn__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;
  transform: rotate(45deg);
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.list-btn__item__link span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--base-color);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .list-btn__item__link:hover {
    color: #ffffff !important;
    background-color: var(--base-color);
    transition: 0.3s ease-in-out;
  }
  .list-btn__item__link:hover span::before {
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--base-color);
    border-right: 1px solid var(--base-color);
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
  }
  .list-btn__item__link:hover span::after {
    background-color: #ffffff;
    transition: 0.3s ease-in-out;
  }
}
.list-btn:has(> :nth-child(1):last-child) li.list-btn__item {
  width: auto;
  min-width: 260px;
  min-width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 1024px) {
  .list-btn:has(> :nth-child(1):last-child) li.list-btn__item {
    min-width: auto;
  }
}

.box-bg01 {
  padding: 28px 34px;
  background-color: var(--bg-color);
}
@media screen and (max-width: 599px) {
  .box-bg01 {
    padding: 18px 20px;
  }
}
.box-bg01 .list-wrapper {
  margin-top: 0;
}
.box-bg01 .list-wrapper li::before {
  background-color: var(--base-color);
}

.box-bg02 {
  padding: 28px 34px;
  border: 1px solid #d0d0d0;
}
@media screen and (max-width: 599px) {
  .box-bg02 {
    padding: 18px 20px;
  }
}
.box-bg02 .list-wrapper {
  margin-top: 0;
}
.box-bg02 .list-wrapper li::before {
  background-color: var(--base-color);
}

.box-bg03 {
  padding: 28px 34px;
  background-color: #fef5f7;
}
@media screen and (max-width: 599px) {
  .box-bg03 {
    padding: 18px 20px;
  }
}
.box-bg03 .list-wrapper {
  margin-top: 0;
}
.box-bg03 .list-wrapper li::before {
  background-color: #e85959;
}

.color .box-bg01 {
  background-color: #222;
}
.color .box-bg02 {
  background-color: #333;
}
.color .box-bg03 {
  background-color: #333;
}

.index-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: var(--bg-color);
  padding: 35px 32px;
}
@media screen and (max-width: 599px) {
  .index-list {
    display: block;
    padding: 20px;
  }
}

.index-list__item {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 835px) {
  .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: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #363a41;
  font-size: 17px;
  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: 16px;
    padding: 20px 20px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .index-list__item a,
  .index-list__item span {
    font-size: 15px;
    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;
  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: var(--base-color);
  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;
  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: var(--base-color);
    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: var(--base-color);
    border-right-color: var(--base-color);
  }
}
.index-list__item.active a,
.index-list__item.active span {
  background-color: var(--base-color);
  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: var(--base-color);
  border-right-color: var(--base-color);
}

.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: var(--base-color);
  border: 1px solid #dadada;
}
@media screen and (max-width: 599px) {
  .table thead th {
    padding: 7px 5px 5px;
    font-size: 14px;
  }
}
.table th {
  padding: 15px 10px;
  line-height: 1.5em;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
  background-color: var(--bg-color);
  border: 1px solid #dadada;
}
@media screen and (max-width: 599px) {
  .table th {
    padding: 7px 7px 7px;
    font-size: 14px;
  }
}
.table td {
  padding: 15px;
  line-height: 1.5em;
  word-break: break-all;
  vertical-align: middle;
  border: 1px solid #dadada;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .table td {
    padding: 7px 7px 7px;
    font-size: 14px;
  }
}

@media screen and (max-width: 599px) {
  .tbl-sp-scroll table {
    width: 700px;
  }
}

.btn-wrapper {
  text-align: center;
}

.icon-link {
  position: relative;
  display: inline-block;
  color: var(--base-color) !important;
  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 var(--base-color);
  padding: 14px 45px 14px 30px;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .icon-link {
    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 var(--base-color);
  border-right: 2px solid var(--base-color);
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .icon-link:hover {
    color: #ffffff !important;
    background-color: var(--base-color);
    transition: 0.3s ease-in-out;
  }
  .icon-link:hover::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
  }
}

.icon-link__text {
  position: relative;
  display: inline-block;
  color: var(--base-color);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  padding-left: 28px;
  line-height: 1.5;
}
.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: var(--base-color);
  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);
  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 {
  position: relative;
  color: var(--base-color);
  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 var(--base-color);
  border-radius: 52px;
  padding: 13px 45px 13px 40px;
  min-width: 240px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .btn-line {
    padding: 13px 35px 13px 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 var(--base-color);
  border-right: 2px solid var(--base-color);
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .btn-line:hover {
    color: #ffffff !important;
    background-color: var(--base-color);
    transition: 0.3s ease-in-out;
  }
  .btn-line:hover::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    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;
  transform: rotate(-135deg);
}
@media print, screen and (min-width: 1025px) {
  .btn-line--back:hover::before {
    transform: rotate(-135deg);
  }
}
.btn-line--rsv {
  border: none;
  background-image: url(../img/common/icon_pc.svg);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: 18px center;
  background-color: #ea55a4;
  padding: 13px 30px 13px 50px !important;
  color: #fff;
}
.btn-line--rsv::before {
  border-color: #fff;
}
.btn-line--rsv:hover {
  opacity: 0.85;
}
.btn-line--rsv.type01 {
  min-width: 98%;
  margin-top: 8px !important;
  background-color: #f99a46;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .btn-line--rsv.type01 {
    width: 100% !important;
  }
}
.btn-line--rsv.type02 {
  min-width: 98%;
  margin-top: 8px !important;
  background-color: #eb61a9;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .btn-line--rsv.type02 {
    width: 100% !important;
  }
}
.btn-line--rsv.type03 {
  min-width: 98%;
  margin-top: 8px !important;
  background-color: #8dbc2e;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .btn-line--rsv.type03 {
    width: 100% !important;
  }
}
@media print, screen and (max-width: 1300px) {
  .btn-line--rsv span {
    font-size: 1.6rem;
  }
}

.btn-bg {
  position: relative;
  color: var(--base-color);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none !important;
  background-color: #233354;
  border-radius: 52px;
  color: #fff !important;
  padding: 22px 40px;
  min-width: 300px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .btn-bg {
    font-size: 16px;
    padding: 17px 35px;
    min-width: 250px;
  }
}
.btn-bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 16px;
  background-image: url(../img/common/arw01.svg);
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 1025px) {
  .btn-bg:hover {
    opacity: 0.85;
  }
}

.btn-insta02 {
  position: relative;
  display: block;
  margin: 0px auto 0px;
  max-width: 240px;
  font-family: "Overpass", sans-serif;
  color: #fff !important;
  background: #ED3A54;
  background: linear-gradient(100deg, rgb(237, 58, 84) 0%, rgb(187, 56, 164) 100%);
  border-radius: 4px;
  line-height: 1.2;
  padding: 20px 20px 16px 48px;
  letter-spacing: 0.02em;
  text-decoration: none !important;
}
.btn-insta02::before {
  background-image: url(../img/common/icon_insta.svg);
  content: "";
  height: 22px;
  width: 22px;
  left: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn-insta02::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.btn-insta02:hover {
  opacity: 0.85;
}

.anchor-list {
  display: flex;
  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;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 835px) 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: 835px) 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: #363a41;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  text-align: left;
  padding-left: 28px;
  vertical-align: top;
}
@media screen and (max-width: 834px) {
  .anchor-list__item a {
    font-size: 15px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item a {
    font-size: 14px;
    padding-left: 22px;
  }
}
.anchor-list__item a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--base-color);
  border-radius: 100%;
  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: var(--base-color);
  }
}
@media print, screen and (min-width: 835px) 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: 835px) 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: 835px) 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: 835px) 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: #363a41 !important;
    text-decoration: none;
  }
  .tel-link a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration {
  display: none;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.form-wrap {
  /* Form */
  /*-- radio ---*/
  /*-- checkbox ---*/
}
.form-wrap .w100 {
  width: 100px !important;
}
.form-wrap .w200 {
  width: 200px !important;
}
.form-wrap .form-must {
  position: absolute;
  right: 15px;
  background-color: #d00;
  display: inline-block;
  width: 42px;
  height: 22px;
  line-height: 22px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .form-wrap .form-must {
    right: 10px;
  }
}
.form-wrap .title-sec06 .form-must {
  position: relative;
  margin-left: 15px;
  right: auto;
}
.form-wrap input[type=text],
.form-wrap input[type=tel],
.form-wrap input[type=email],
.form-wrap textarea {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
  border: 1px solid #e3e3e3;
  padding: 8px 12px;
  background-color: #f7f7f7;
  line-height: 1;
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=text],
  .form-wrap input[type=tel],
  .form-wrap input[type=email],
  .form-wrap textarea {
    padding: 10px;
  }
}
.form-wrap input[type=text]:focus-visible,
.form-wrap input[type=tel]:focus-visible,
.form-wrap input[type=email]:focus-visible,
.form-wrap textarea:focus-visible {
  outline: 1px solid #aaa !important;
  outline-offset: -1px;
}
.form-wrap textarea {
  padding: 12px;
  height: 160px;
  max-width: 100%;
}
.form-wrap textarea:focus {
  outline: none;
}
.form-wrap select {
  padding-left: 15px;
  padding-right: 40px;
  width: 100%;
  border: 1px solid #e3e3e3;
  background-color: #f7f7f7;
  border-radius: 0px;
  height: 42px;
  font-size: 1.6rem;
  line-height: 44px;
  max-height: 100%;
  background-image: url(../img/common/select_arrow.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: right 14px top 50%;
  overflow: hidden;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
@media screen and (max-width: 834px) {
  .form-wrap select {
    padding-right: 25px;
    padding-left: 10px;
    background-size: 10px auto;
    background-position: right 10px top 50%;
  }
}
.form-wrap select:focus {
  outline: none;
}
.form-wrap select:focus-visible {
  outline: 1px solid #aaa !important;
  outline-offset: -1px;
}
.form-wrap button,
.form-wrap input[type=submit],
.form-wrap input[type=button],
.form-wrap input[type=radio],
.form-wrap input[type=checkbox],
.form-wrap label,
.form-wrap select {
  cursor: pointer;
}
.form-wrap input[type=radio] {
  display: none;
}
.form-wrap label.radio {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  line-height: 1.3;
}
.form-wrap input[type=radio] + label.radio {
  width: 100%;
}
.form-wrap input[type=radio] + label.radio span {
  display: inline-block;
  position: relative;
  padding-left: 40px;
}
.form-wrap input[type=radio] + label.radio span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #f7f7f7;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=radio] + label.radio span::before {
    width: 24px;
    height: 24px;
  }
}
.form-wrap input[type=radio]:checked + label.radio span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 15px;
  height: 15px;
  margin: auto;
  background-color: var(--base-color);
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=radio]:checked + label.radio span::after {
    top: 0;
    width: 10px;
    height: 10px;
  }
}
.form-wrap label.checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=checkbox] + label.checkbox {
    width: 100%;
  }
}
.form-wrap input[type=checkbox] + label.checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=checkbox] + label.checkbox span {
    padding-left: 28px;
  }
}
.form-wrap input[type=checkbox] + label.checkbox span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=checkbox] + label.checkbox span::before {
    width: 20px;
    height: 20px;
  }
}
.form-wrap input[type=checkbox]:checked + label.checkbox span::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 7px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #233354;
  border-bottom: 3px solid #233354;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .form-wrap input[type=checkbox]:checked + label.checkbox span::after {
    left: 6px;
    width: 8px;
    height: 12px;
  }
}
.form-wrap input[type=checkbox]:focus + label.checkbox span::before {
  border: 1px solid #aaa;
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  z-index: auto;
  box-sizing: border-box;
  border-collapse: separate;
  border-top: 1px solid #dddddd;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .form-tbl {
    border-top: none;
    margin-bottom: 10px;
  }
}
.form-tbl th,
.form-tbl td {
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .form-tbl th,
  .form-tbl td {
    display: block;
  }
}
.form-tbl__th {
  position: relative;
  text-align: left;
  width: 25%;
  color: var(--text-color);
  vertical-align: top;
  background-color: var(--bg-color);
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #fff;
  padding: 30px 65px 30px 20px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .form-tbl__th {
    width: 30%;
    padding: 25px 70px 25px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl__th {
    width: 100%;
    padding: 10px;
    border: none;
  }
}
.form-tbl__td {
  padding: 28px 0 28px 35px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 1024px) {
  .form-tbl__td {
    padding: 23px 0 23px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl__td {
    width: 100%;
    padding: 15px 0 25px;
    border-bottom: none;
  }
}

.form-birth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form-birth__text {
  margin-left: 10px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .form-birth__text {
    margin-left: 5px;
  }
}
.form-birth__select {
  width: 120px;
}
@media screen and (max-width: 834px) {
  .form-birth__select {
    width: 90px;
  }
}
@media screen and (max-width: 599px) {
  .form-birth__select {
    width: 80px;
  }
}
.form-birth__select select {
  width: 100%;
  box-sizing: border-box;
}
.form-birth__select02 {
  margin-left: 10px;
  width: 90px;
}
@media screen and (max-width: 834px) {
  .form-birth__select02 {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  .form-birth__select02 {
    width: 65px;
  }
}
.form-birth__select02 select {
  width: 100%;
  box-sizing: border-box;
}

.form-input-list02 {
  display: flex;
}
.form-input-list02 > li {
  width: 220px;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .form-input-list02 > li {
    width: calc((100% - 10px) / 2);
  }
}
.form-input-list02 > li:last-child {
  margin-right: 0px;
}

.form-add {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-add {
    margin-top: -15px;
    display: block;
  }
}
.form-add dt {
  margin-bottom: 0px;
  font-weight: bold;
  width: 6em;
  line-height: 1;
  transform: translateY(-0.4em);
  color: var(--text-color);
}
@media screen and (max-width: 599px) {
  .form-add dt {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
    transform: translateY(0);
  }
}
.form-add dd {
  width: calc(100% - 6em);
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .form-add dd {
    width: 100%;
  }
}

.form-agreement {
  text-align: center;
  line-height: 1.5;
}
.form-agreement__text {
  margin-bottom: 22px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .form-agreement__text {
    margin-bottom: 15px;
    word-break: break-all;
  }
}
.form-agreement__text a {
  color: #233354;
  text-decoration: underline;
}
.form-agreement__text a:hover {
  text-decoration: none;
}
.form-agreement input[type=checkbox] + label {
  display: block;
  padding: 18px 10px 16px;
  background-color: var(--bg-color);
  line-height: 1.5;
  cursor: pointer;
  transition: 0.5s;
}
.form-agreement input[type=checkbox] + label span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
}
.form-agreement input[type=checkbox] + label span::before, .form-agreement input[type=checkbox] + label span::after {
  content: "";
  position: absolute;
}
.form-agreement input[type=checkbox] + label span::before {
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--base-color);
}
.form-agreement input[type=checkbox]:checked + label span::after {
  top: 7px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: var(--base-color);
}

.form-error-box {
  padding: 25px 25px 22px;
  color: #d00;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  border: 1px solid #d00;
}
@media screen and (max-width: 599px) {
  .form-error-box {
    padding: 20px;
  }
}

.form-error-td input[type=text],
.form-error-td input[type=email],
.form-error-td input[type=tel] {
  background-color: #FFF8F8 !important;
  border: 1px solid #d00 !important;
}
.form-error-td input[type=text]:focus-visible,
.form-error-td input[type=email]:focus-visible,
.form-error-td input[type=tel]:focus-visible {
  outline: none !important;
}
.form-error-td input[type=checkbox] + label.checkbox span::before {
  background-color: #FFF8F8 !important;
  border: 1px solid #d00 !important;
}

.form-error-text {
  margin-bottom: 5px;
  color: #d00;
  font-weight: 600;
}

.form-complete {
  margin-bottom: 40px;
  padding: 60px 30px;
  background-color: var(--bg-color);
}
@media screen and (max-width: 599px) {
  .form-complete {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
}
.form-complete__copy {
  margin-bottom: 25px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: var(--base-color);
  font-size: 2.3rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .form-complete__copy {
    font-size: 1.8rem;
  }
}
.form-complete__text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .form-complete__text {
    text-align: justify;
  }
}

.form-btn-wrapper {
  position: relative;
  text-align: center;
}

.form-submit-btn {
  position: relative;
  display: block;
  margin: auto;
  padding: 26px 20px;
  width: 100%;
  max-width: 360px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  background-color: var(--base-color);
  border-radius: 3px;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .form-submit-btn {
    width: 80%;
    padding: 20px;
    font-size: 1.7rem;
  }
}
.form-submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media print, screen and (min-width: 1025px) {
  .form-submit-btn:hover {
    opacity: 0.8;
  }
}

.form-prev-btn {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  margin: auto;
  padding: 26px 20px 27px;
  width: 140px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
  background-color: #bbb;
  border-radius: 3px;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .form-prev-btn {
    position: inherit;
    margin-top: 20px;
    padding: 20px;
    font-size: 1.5rem;
  }
}
.form-prev-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
}
@media print, screen and (min-width: 1025px) {
  .form-prev-btn:hover {
    opacity: 0.8;
  }
}

.form-complete-btn {
  position: relative;
  display: block;
  margin: auto;
  padding: 26px 20px;
  width: 100%;
  max-width: 360px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  background-color: #233354;
  border-radius: 3px;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .form-complete-btn {
    width: 80%;
    padding: 20px;
    font-size: 1.7rem;
  }
}
.form-complete-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
}
@media print, screen and (min-width: 1025px) {
  .form-complete-btn:hover {
    opacity: 0.8;
  }
}

.inqury-type {
  background-color: var(--bg-color);
  padding: 20px 25px 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .inqury-type {
    padding: 20px 12px;
  }
}
.inqury-type__list {
  display: flex;
}
.inqury-type__list li {
  margin-right: 30px;
}
@media screen and (max-width: 599px) {
  .inqury-type__list li {
    margin-right: 15px;
  }
}
.inqury-type__list li input[type=checkbox] + label.checkbox span::before {
  border-color: var(--base-color);
  background-color: #fff;
}

.top-wrapper {
  width: 100%;
  overflow: hidden;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ▼▼▼ 法人TOP ▼▼▼ */
.top-corp-main {
  position: relative;
  width: 100%;
  height: 1035px;
  /*&::before {
      background-image: url(../img/top/main_bg.webp);
      background-repeat: no-repeat;
      background-position: center bottom;
      content: '';
      height: 1632px;
      width: 100%;
      left: 0;
      position: absolute;
      top: 0px;
      z-index: -1;
  }*/
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main {
    height: 60.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-corp-main {
    height: 70vw;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main {
    max-height: 810px;
    min-height: 675px;
    height: 183vw;
  }
}
.top-corp-main__ph {
  position: relative;
  z-index: 4;
}
.top-corp-main__ph div {
  position: absolute;
  opacity: 0;
  animation: fadein 1.5s forwards;
  transition: 0.3s;
}
.top-corp-main__ph div img {
  transition: 0.3s;
}
@media print, screen and (max-width: 1600px) {
  .top-corp-main__ph div img {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 1024px) {
  .top-corp-main__ph div img {
    transform: scale(1);
  }
}
.top-corp-main__ph .ph01 {
  top: 186px;
  left: 5.5%;
  animation-delay: 0.2s;
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main__ph .ph01 {
    top: 11vw;
    left: 4.5%;
    width: 25.7vw;
  }
}
@media print, screen and (max-width: 1600px) {
  .top-corp-main__ph .ph01 {
    left: 2.6%;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__ph .ph01 {
    top: 160px;
    left: 2.6%;
    max-width: 172px;
    width: 37.1vw;
  }
}
.top-corp-main__ph .ph02 {
  top: 55px;
  right: 11%;
  animation-delay: 0.7s;
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main__ph .ph02 {
    right: 10%;
    width: 37.1vw;
  }
}
@media print, screen and (max-width: 1600px) {
  .top-corp-main__ph .ph02 {
    right: 9%;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__ph .ph02 {
    top: 80px;
    right: -5.4%;
    max-width: 287px;
    width: 56.3vw;
  }
}
.top-corp-main__ph .ph03 {
  top: 800px;
  left: 14.5%;
  animation-delay: 1.2s;
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main__ph .ph03 {
    top: 47vw;
    left: 13.5%;
    width: 12.6vw;
  }
}
@media print, screen and (max-width: 1600px) {
  .top-corp-main__ph .ph03 {
    left: 12.5%;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__ph .ph03 {
    top: 460px;
    right: 5.4%;
    left: auto;
    max-width: 102px;
    width: 25.5vw;
  }
}
.top-corp-main__ph .ph04 {
  top: 628px;
  right: 4.5%;
  animation-delay: 1.7s;
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main__ph .ph04 {
    top: 37vw;
    right: 3.5%;
    width: 24.2vw;
  }
}
@media print, screen and (max-width: 1600px) {
  .top-corp-main__ph .ph04 {
    right: 2.5%;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__ph .ph04 {
    top: 280px;
    right: 5.4%;
    max-width: 207px;
    width: 43vw;
  }
}
.top-corp-main__catch {
  width: 470px;
  position: absolute;
  top: 525px;
  left: 0;
  right: 0;
  margin: 0px auto;
  animation: fadein 1.5s forwards;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #233354;
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main__catch {
    top: 30.9vw;
    width: 27.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-corp-main__catch {
    top: 32vw;
    width: 37.5vw;
  }
}
@media screen and (max-width: 834px) {
  .top-corp-main__catch {
    top: 34vw;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__catch {
    width: auto;
    top: 420px;
    margin: 0 20px;
  }
}
.top-corp-main__catch .catch-text {
  font-size: 5rem;
  line-height: 1.4;
  margin-bottom: 45px;
}
@media print, screen and (max-width: 1700px) {
  .top-corp-main__catch .catch-text {
    margin-bottom: 2.7vw;
    font-size: 2.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-corp-main__catch .catch-text {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__catch .catch-text {
    margin-bottom: 20px;
    font-size: 6.7vw;
  }
}
.top-corp-main__catch .lead-text {
  font-size: 1.9rem;
  line-height: 2;
}
@media print, screen and (max-width: 1500px) {
  .top-corp-main__catch .lead-text {
    font-size: 1.26vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-corp-main__catch .lead-text {
    font-size: 1.75vw;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-main__catch .lead-text {
    font-size: 4vw;
    text-align: justify;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-corp-news {
  position: relative;
  padding: 0px 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .top-corp-news {
    padding: 0 30px;
    margin-bottom: 95px;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-news {
    padding: 0 20px;
  }
}
.top-corp-news__inner {
  max-width: 930px;
  margin: 0 auto;
  display: flex;
  gap: 68px;
}
@media screen and (max-width: 1024px) {
  .top-corp-news__inner {
    max-width: none;
  }
}
@media screen and (max-width: 834px) {
  .top-corp-news__inner {
    gap: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-news__inner {
    flex-direction: column;
    gap: 0;
  }
}
.top-corp-news__ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-corp-news__ttl {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-news__ttl {
    margin-bottom: 15px;
  }
}
.top-corp-news__ttl__en {
  color: #233354;
  font-family: "Overpass", sans-serif;
  font-size: 5.1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .top-corp-news__ttl__en {
    font-size: 4.2rem;
    margin-bottom: 3px;
  }
}
.top-corp-news__ttl__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #233354;
  padding-left: 2px;
}
@media screen and (max-width: 1024px) {
  .top-corp-news__ttl__jp {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-news__ttl__jp {
    font-size: 1.6rem;
  }
}
.top-corp-news__more {
  margin-top: 40px;
  position: relative;
  width: 130px;
  display: block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #fff;
  background-color: #233354;
  border-radius: 50px;
  padding: 12px 25px 12px 12px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-corp-news__more {
    width: 115px;
    margin-top: 22px;
    padding: 8px 20px 8px 10px;
    font-size: 1.4rem;
  }
}
.top-corp-news__more::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .top-corp-news__more::after {
    right: 12px;
    border-width: 1px;
  }
}
.top-corp-news__more:hover {
  background-color: #233354;
  color: #fff;
}
@media print, screen and (min-width: 1025px) {
  .top-corp-news__more:hover::after {
    border-color: #fff;
  }
}
.top-corp-news .news-list__item__day {
  color: #386ec3;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.top-corp-news .news-list__item__title {
  color: #233354;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .top-corp-news .news-list__item__title {
    flex: auto;
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-corp-news .news-list__item__title {
    margin-top: 3px;
  }
}
.top-corp-news .news-list__item a {
  padding: 20px 0px;
}
@media screen and (max-width: 834px) {
  .top-corp-news .news-list__item a {
    flex-wrap: wrap;
    padding: 14px 0 18px;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-corp-news .news-list__item a:hover {
    background: rgba(194, 228, 243, 0.2);
  }
}

.top-group {
  position: relative;
  padding: 0px 0px 170px;
}
@media screen and (max-width: 1024px) {
  .top-group {
    padding: 0 0 120px;
  }
}
@media screen and (max-width: 834px) {
  .top-group {
    padding: 0 0 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-group {
    padding: 0px 0px 65px;
  }
}
.top-group__ttl {
  position: relative;
  font-family: "Jost", sans-serif;
  font-size: 13.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 100px;
  padding: 0px 40px;
  background: #BAD6F3;
  background: linear-gradient(100deg, rgb(186, 214, 243) 15%, rgb(181, 237, 210) 63%, rgb(205, 240, 193) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-group__ttl {
    font-size: 10vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-group__ttl {
    margin-bottom: 60px;
    padding: 0px 15px;
    font-size: 15vw;
  }
}
.top-group__inner {
  position: relative;
  padding: 0 40px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-group__inner {
    padding: 0 30px;
  }
}
.top-group__inner::before {
  content: "";
  position: absolute;
  height: 400px;
  width: calc(50% - 240px);
  background-repeat: no-repeat;
  background-size: 100% auto;
  top: 275px;
  z-index: 3;
}
@media print, screen and (max-width: 1300px) {
  .top-group__inner::before {
    width: 410px;
  }
}
.top-group__inner::after {
  content: "";
  height: 1410px;
  width: 100%;
  left: 0;
  position: absolute;
  top: -100px;
}
@media screen and (max-width: 834px) {
  .top-group__inner::after {
    top: -165px;
  }
}
.top-group__inner.medical::before {
  background-image: url(../img/top/corporate/medical_ph.webp);
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-group__inner.medical::before {
    display: none;
  }
}
.top-group__inner.medical::after {
  background-image: url(../img/top/corporate/bg02.webp);
  background-size: 100% auto;
}
.top-group__inner.care::after {
  background-image: url(../img/top/corporate/bg03.webp);
}
.top-group__inner.care::before {
  background-image: url(../img/top/corporate/care_ph.webp);
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-group__inner.care::before {
    display: none;
  }
}
.top-group__box {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1280px;
  margin: 0 auto 160px;
  z-index: 2;
}
@media print, screen and (max-width: 1700px) {
  .top-group__box {
    gap: 0 7.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-group__box {
    flex-direction: column;
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box {
    margin: 0 auto 60px;
  }
}
.care .top-group__box {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .care .top-group__box {
    flex-direction: column;
  }
}
.top-group__box::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 705px;
  width: 780px;
  position: absolute;
  top: 35px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-group__box::before {
    height: 420px;
  }
}
@media screen and (max-width: 834px) {
  .top-group__box::before {
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box::before {
    top: 20px;
    height: 122.9vw;
  }
}
.medical .top-group__box::before {
  background-image: url(../img/top/corporate/medical_bg.webp);
  left: -90px;
}
.care .top-group__box::before {
  background-image: url(../img/top/corporate/care_bg.webp);
  right: -90px;
}
.top-group__box__info {
  width: 386px;
}
@media screen and (max-width: 1024px) {
  .top-group__box__info {
    display: flex;
    gap: 0 5%;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box__info {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .top-group__box__info .group-content {
    flex: 1;
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-group__box__info .group-content {
    padding-left: 0;
  }
}
.top-group__box__info .group-ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-group__box__info .group-ttl {
    margin-bottom: 15px;
  }
}
.top-group__box__info .group-ttl__en {
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  font-size: 7rem;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .top-group__box__info .group-ttl__en {
    font-size: 5rem;
    line-height: 0.75;
  }
}
.medical .top-group__box__info .group-ttl__en {
  color: #386ec3;
}
.care .top-group__box__info .group-ttl__en {
  color: #439564;
}
.top-group__box__info .group-ttl__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.7rem;
  color: #233354;
}
@media screen and (max-width: 599px) {
  .top-group__box__info .group-ttl__jp {
    font-size: 1.8rem;
  }
}
.top-group__box__info .group-text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.9;
}
@media screen and (max-width: 599px) {
  .top-group__box__info .group-text {
    letter-spacing: 0.01em;
  }
}
.top-group__box__info .group-image {
  width: 45vw;
}
@media screen and (max-width: 599px) {
  .top-group__box__info .group-image {
    width: 86vw;
    margin-top: 25px;
  }
}
.medical .top-group__box__info .group-image {
  margin-right: -30px;
}
@media screen and (max-width: 599px) {
  .medical .top-group__box__info .group-image {
    margin-right: auto;
    margin-left: -30px;
  }
}
.care .top-group__box__info .group-image {
  margin-right: -30px;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .care .top-group__box__info .group-image {
    margin-left: auto;
  }
}
.top-group__box__list {
  flex: 1;
  max-width: 768px;
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .top-group__box__list {
    max-width: none;
    width: 100%;
    padding-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box__list {
    padding-top: 40px;
  }
}
.top-group__box__list .group-list {
  flex-wrap: wrap;
  display: flex;
  gap: 20px 45px;
}
@media screen and (max-width: 1024px) {
  .top-group__box__list .group-list {
    margin: 0 35px;
  }
}
@media screen and (max-width: 834px) {
  .top-group__box__list .group-list {
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list {
    gap: 18px 0;
  }
}
.top-group__box__list .group-list__item {
  width: calc((100% - 45px) / 2);
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__item {
    width: 100%;
  }
}
.top-group__box__list .group-list__item.wide {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media print, screen and (max-width: 1200px) {
  .top-group__box__list .group-list__item.wide {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__item.wide {
    flex-direction: column;
  }
}
.top-group__box__list .group-list__item.wide .group-list__ph {
  max-width: 360px;
  width: 100%;
  padding-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__item.wide .group-list__ph {
    max-width: none;
  }
}
.top-group__box__list .group-list__item.wide .group-list__box {
  flex: 1;
  padding-top: 5px;
}
.top-group__box__list .group-list__ph {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__ph {
    margin-bottom: 8px;
  }
}
.top-group__box__list .group-list__link {
  padding: 4px 40px 4px 0px;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  display: block;
  letter-spacing: 0.04em;
  color: #233354;
}
@media screen and (max-width: 1024px) {
  .top-group__box__list .group-list__link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link {
    font-size: 1.6rem;
    letter-spacing: 0.07em;
  }
}
.top-group__box__list .group-list__link span.s-txt {
  font-size: 1.8rem;
  margin-right: 8px;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link span.s-txt {
    font-size: 1.4rem;
  }
}
.top-group__box__list .group-list__link span.l-txt {
  font-size: 2.2rem;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link span.l-txt {
    font-size: 1.8rem;
  }
}
.top-group__box__list .group-list__link::before, .top-group__box__list .group-list__link::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  height: 36px;
  width: 36px;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link::before, .top-group__box__list .group-list__link::after {
    width: 33px;
    height: 33px;
  }
}
.top-group__box__list .group-list__link::before {
  border-radius: 50px;
}
.medical .top-group__box__list .group-list__link::before {
  background: #4C79BD;
  background: linear-gradient(129deg, rgb(76, 121, 189) 0%, rgb(95, 142, 206) 58%);
}
.care .top-group__box__list .group-list__link::before {
  background: #549D71;
  background: linear-gradient(129deg, rgb(84, 157, 113) 0%, rgb(112, 181, 122) 55%);
}
.top-group__box__list .group-list__link::after {
  background-image: url(../img/common/arw01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link::after {
    background-size: 11px auto;
  }
}
.medical .top-group__box__list .group-list__link:hover {
  color: #386ec3;
}
.care .top-group__box__list .group-list__link:hover {
  color: #439564;
}
.top-group__box__list .group-list__link__list {
  margin-top: 12px;
  border-top: 1px dotted #439564;
  padding-top: 20px;
  padding-left: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link__list {
    padding-top: 15px;
  }
}
.top-group__box__list .group-list__link__list li {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link__list li {
    font-size: 1.7rem;
  }
}
.top-group__box__list .group-list__link__list li a {
  padding-left: 25px;
  background-image: url(../img/common/arw01_green.svg);
  background-repeat: no-repeat;
  background-position: 0px 7px;
  background-size: 16px auto;
  color: #233354;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .top-group__box__list .group-list__link__list li a {
    padding-left: 22px;
    background-size: 14px auto;
  }
}
.care .top-group__box__list .group-list__link__list li a:hover {
  color: #439564;
}

.top-about {
  position: relative;
  padding: 0px 40px 125px;
  background-image: url(../img/top/corporate/about_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 0 30px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 0 20px 60px;
    background-position: top left -200px;
  }
}
.top-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 145px;
}
@media print, screen and (max-width: 1700px) {
  .top-about__inner {
    gap: 8.5vw;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner {
    flex-direction: column;
    gap: 0;
  }
}
.top-about__box {
  flex: 1;
}
.top-about__ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .top-about__ttl {
    margin-bottom: 35px;
  }
}
.top-about__ttl__en {
  font-family: "Overpass", sans-serif;
  font-size: 13rem;
  line-height: 1;
  background: #48D4CC;
  background: linear-gradient(131deg, rgb(72, 212, 204) 41%, rgb(109, 225, 216) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1300px) {
  .top-about__ttl__en {
    font-size: 10vw;
  }
}
@media screen and (max-width: 834px) {
  .top-about__ttl__en {
    font-size: 13vw;
  }
}
@media screen and (max-width: 599px) {
  .top-about__ttl__en {
    font-size: 7.2rem;
  }
}
.top-about__ttl__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  color: #233354;
}
@media screen and (max-width: 834px) {
  .top-about__ttl__jp {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__ttl__jp {
    font-size: 2.1rem;
  }
}
.top-about__catch {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 3.3rem;
  color: #15a498;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .top-about__catch {
    font-size: 2.2rem;
  }
}
.top-about__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.12em;
  margin-bottom: 45px;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .top-about__text {
    margin-bottom: 28px;
  }
}
.top-about__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 20px;
  border-left: 1px solid #afc2ce;
}
@media screen and (max-width: 599px) {
  .top-about__nav {
    flex-wrap: nowrap;
    gap: 0;
  }
}
.top-about__nav__item {
  border-right: 1px solid #afc2ce;
  flex-basis: auto;
  flex-grow: 1;
}
.top-about__nav__item__link {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #233354;
  display: block;
  padding: 16px 35px 16px 20px;
  text-align: center;
  background-image: url(../img/common/arw01_gb.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: right 20px center;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .top-about__nav__item__link {
    padding: 15px 30px 15px 10px;
    font-size: 1.7rem;
    background-size: 14px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-about__nav__item__link:hover {
    color: #62d0d7;
    background-position: right 15px center;
  }
}
.top-about__ph {
  margin-top: 125px;
  max-width: 600px;
  width: 100%;
}
@media print, screen and (max-width: 1700px) {
  .top-about__ph {
    width: 35.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__ph {
    margin-top: 80px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__ph {
    width: 100%;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .top-about__ph {
    margin: 50px auto 0;
  }
}

.top-recruit {
  position: relative;
  padding: 125px 40px 120px;
  background-color: #fff;
  background-image: url(../img/top/corporate/recruit_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 834px) {
  .top-recruit {
    padding: 80px 40px 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit {
    padding: 60px 20px 65px;
    background-size: 150% auto;
  }
}
.top-recruit__inner {
  max-width: 530px;
  text-align: left;
  margin-left: 920px;
}
@media print, screen and (max-width: 1700px) {
  .top-recruit__inner {
    margin-left: 54.1vw;
  }
}
@media screen and (max-width: 834px) {
  .top-recruit__inner {
    max-width: none;
    margin-left: 0;
  }
}
.top-recruit__ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .top-recruit__ttl {
    margin-bottom: 30px;
  }
}
.top-recruit__ttl__en {
  font-family: "Overpass", sans-serif;
  font-size: 13rem;
  line-height: 1;
  background: #77BDE7;
  background: linear-gradient(131deg, rgb(119, 189, 231) 41%, rgb(146, 212, 242) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -8px;
}
@media print, screen and (max-width: 1300px) {
  .top-recruit__ttl__en {
    font-size: 10vw;
  }
}
@media screen and (max-width: 834px) {
  .top-recruit__ttl__en {
    font-size: 13vw;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__ttl__en {
    font-size: 7.2rem;
  }
}
.top-recruit__ttl__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: #233354;
}
@media screen and (max-width: 834px) {
  .top-recruit__ttl__jp {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__ttl__jp {
    font-size: 2.1rem;
  }
}
.top-recruit__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.12em;
  margin-bottom: 65px;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .top-recruit__text {
    margin-bottom: 40px;
    letter-spacing: 0.02em;
  }
}
.top-recruit__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 20px;
}
@media screen and (max-width: 834px) {
  .top-recruit__nav {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__nav {
    gap: 0 15px;
  }
}
.top-recruit__nav__item {
  width: calc((100% - 20px) / 2);
  border-bottom: 1px solid #c0cdd5;
}
.top-recruit__nav__item:nth-child(1), .top-recruit__nav__item:nth-child(2) {
  border-top: 1px solid #c0cdd5;
}
.top-recruit__nav__item__link {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #233354;
  display: block;
  padding: 25px 0px;
  background-image: url(../img/common/arw01_blue.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: right 8px center;
}
@media screen and (max-width: 599px) {
  .top-recruit__nav__item__link {
    padding: 20px 0;
    background-size: 15px auto;
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-recruit__nav__item__link:hover {
    color: #61a8d3;
    background-position: right 3px center;
  }
}
.top-recruit__ph {
  position: absolute;
  top: 125px;
  left: 0;
  max-width: 820px;
  height: 560px;
  overflow: hidden;
}
@media print, screen and (max-width: 1700px) {
  .top-recruit__ph {
    width: 48.3vw;
  }
}
@media screen and (max-width: 834px) {
  .top-recruit__ph {
    position: static;
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__ph {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}
.top-recruit__ph img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/* ▼▼▼ 各クリニック＆施設TOP ▼▼▼ */
.top-main {
  position: relative;
  width: calc(100% - 110px);
  margin: 88px auto 85px;
  height: 580px;
  z-index: 0;
  transition: 0.3s;
}
@media print, screen and (max-width: 1500px) {
  .top-main {
    height: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main {
    width: calc(100% - 60px);
    margin: 70px auto 55px;
  }
}
@media screen and (max-width: 834px) {
  .top-main {
    margin: 105px auto 50px;
    width: calc(100% - 0px);
    height: 360px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    margin: 75px auto 35px;
    height: 215px;
  }
}
.top-main::before {
  content: "";
  position: absolute;
  bottom: -230px;
  left: -200px;
  width: 625px;
  height: 535px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-main::before {
    display: none;
  }
}
#medical .top-main::before {
  background-image: url("../img/common/medical/pagetitle_object.webp");
}
#care .top-main::before {
  background-image: url("../img/common/care/pagetitle_object.webp");
}

.top-main__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  min-width: 535px;
  height: 320px;
  margin: auto;
  padding: 1.5em 3em;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  z-index: 2;
}
@media print, screen and (max-width: 1600px) {
  .top-main__title {
    min-width: 36%;
    height: 20vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__title {
    left: 0;
    padding: 1em 2em;
    margin-right: 35px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__title {
    left: 15px;
    padding: 1em 1.5em;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title {
    line-height: 1.2;
    left: -14px;
    top: inherit;
    bottom: -20px;
    height: auto;
    min-height: 76px;
    width: auto;
    margin-right: 12%;
    padding: 0.8em 1em 0.8em 2em;
    align-items: start;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
#medical .top-main__title {
  background-image: url("../img/common/medical/pagetitle_bg.webp");
}
#care .top-main__title {
  background-image: url("../img/common/care/pagetitle_bg.webp");
}
.top-main__title__jp {
  color: var(--text-color);
  font-size: 4.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1600px) {
  .top-main__title__jp {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__title__jp {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title__jp {
    font-size: 5vw;
    margin-bottom: 3px;
  }
}
.top-main__title__sub {
  color: var(--text-color);
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-top: -2px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1600px) {
  .top-main__title__sub {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__title__sub {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title__sub {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
}
.top-main__title__en {
  display: block;
  position: relative;
  padding-left: 40px;
  color: var(--base-color);
  font-size: 2.3rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media print, screen and (max-width: 1600px) {
  .top-main__title__en {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__title__en {
    font-size: 2vw;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title__en {
    padding-left: 20px;
    font-size: 2.9vw;
  }
}
.top-main__title__en::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--base-color);
}
@media screen and (max-width: 599px) {
  .top-main__title__en::before {
    width: 15px;
  }
}

.top-main__ph {
  overflow: hidden;
  position: absolute;
  right: 0;
  max-width: 1350px;
  width: calc(100% - 280px);
  height: 100%;
  border-radius: 8px;
  z-index: 1;
}
@media print, screen and (max-width: 1700px) {
  .top-main__ph {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__ph {
    width: 80%;
    height: 100%;
  }
}
@media screen and (max-width: 834px) {
  .top-main__ph {
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main__ph {
    border-radius: 6px;
    right: 0;
    left: 0;
    width: calc(100% - 16px);
    margin: 0 auto;
  }
}
.top-main__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-contents {
  position: relative;
  padding: 0px 55px;
  background: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 28%);
}
@media screen and (max-width: 834px) {
  .top-contents {
    padding: 0px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-contents {
    padding: 0px 15px;
  }
}
#care .top-contents {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 15%, rgb(255, 255, 255) 80%);
}
.top-contents__inner {
  position: relative;
  max-width: 1200px;
  margin: 30px auto 0px;
  border-radius: 8px;
  padding-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .top-contents__inner {
    margin: 10px auto 0px;
  }
}
.top-contents__inner::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  left: -30px;
  width: calc(100% + 60px);
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-contents__inner::before {
    top: -25px;
    right: -25px;
    left: -25px;
    width: calc(100% + 50px);
  }
}
@media screen and (max-width: 599px) {
  .top-contents__inner::before {
    top: -8px;
    right: -8px;
    left: -8px;
    width: calc(100% + 16px);
    border-radius: 6px;
  }
}
.top-contents:has(.top-news):has(+ .top-original) .top-news {
  margin-bottom: 35px;
}

.top-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .top-nav {
    gap: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-nav {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-nav {
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 6px;
  }
}
.top-nav__item {
  position: relative;
  width: calc((100% - 60px) / 4);
  box-shadow: 0px 38px 33px -35px #e2e7ee;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-nav__item {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .top-nav__item {
    width: calc((100% - 12px) / 2);
  }
}
.top-nav__item:hover {
  box-shadow: none;
}
.top-nav__item__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px 60px;
  width: 100%;
  height: 240px;
  background-color: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .top-nav__item__link {
    height: 220px;
  }
}
@media screen and (max-width: 834px) {
  .top-nav__item__link {
    height: 190px;
    padding: 25px 15px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-nav__item__link {
    height: auto;
    padding: 0px 10px 30px;
  }
}
.top-nav__item__link::before, .top-nav__item__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.top-nav__item__link::before {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-nav__item__link::before {
    height: 30px;
    width: 30px;
    bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-nav__item__link::before {
    height: 22px;
    width: 22px;
    bottom: 8px;
  }
}
#medical .top-nav__item__link::before {
  background: #4C79BD;
  background: linear-gradient(90deg, rgb(76, 121, 189) 1%, rgb(95, 142, 206) 60%);
}
#care .top-nav__item__link::before {
  background: #439564;
  background: linear-gradient(90deg, rgb(67, 149, 100) 1%, rgb(103, 183, 135) 60%);
}
.top-nav__item__link::after {
  background-image: url(../img/common/arw01.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 10px;
  width: 12px;
  bottom: 33px;
}
@media screen and (max-width: 1024px) {
  .top-nav__item__link::after {
    height: 10px !important;
    width: 10px !important;
    bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-nav__item__link::after {
    bottom: 13px;
  }
}
.anchor .top-nav__item__link::after {
  transform: rotate(90deg);
  height: 14px;
  width: 14px;
}
@media screen and (max-width: 599px) {
  .anchor .top-nav__item__link::after {
    height: 12px;
    width: 12px;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-nav__item__link:hover {
    transform: translateY(3px);
  }
  .top-nav__item__link:hover .top-nav__item__text {
    color: var(--base-color) !important;
  }
}
.top-nav__item__icon {
  display: flex;
  align-items: end;
  min-height: 64px;
}
@media screen and (max-width: 1024px) {
  .top-nav__item__icon {
    scale: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .top-nav__item__icon {
    scale: 0.68;
    margin-bottom: -5px;
  }
}
.top-nav__item__text {
  margin-top: 10px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  text-align: center;
  color: var(--text-color);
  line-height: 1.6;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-nav__item__text {
    font-size: 2.2rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 834px) {
  .top-nav__item__text {
    margin-top: 5px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-nav__item__text {
    margin-top: 0;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.top-nav__item__text span {
  display: block;
  font-family: "Overpass", sans-serif;
  color: #87a9dc;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .top-nav__item__text span {
    font-size: 1.1rem;
  }
}
#medical .top-nav__item__text span {
  color: #87a9dc;
}
#care .top-nav__item__text span {
  color: #66b385;
}
.top-nav__item__text.stxt {
  font-size: 2.2rem;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .top-nav__item__text.stxt {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

.top-info {
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .top-info {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-info {
    margin-bottom: 50px;
  }
}
#care .top-info {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  #care .top-info {
    gap: 18px;
  }
}
@media screen and (max-width: 834px) {
  #care .top-info {
    align-items: start;
  }
}
@media screen and (max-width: 599px) {
  #care .top-info {
    flex-direction: column-reverse;
  }
}

.top-info__block {
  background-color: #eff5fd;
  border-radius: 6px;
  padding: 45px 50px 38px;
  display: flex;
  gap: 65px;
}
@media print, screen and (max-width: 1400px) {
  .top-info__block {
    gap: 50px;
    padding: 50px 45px 38px;
  }
}
@media print, screen and (max-width: 1200px) {
  .top-info__block {
    gap: 35px;
    padding: 40px 30px 32px;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__block {
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block {
    gap: 25px;
    padding: 40px 20px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block {
    flex-direction: column;
    padding: 28px 22px;
  }
}
#care .top-info__block {
  flex: 1;
  padding: 35px 35px 30px;
  gap: 35px;
  background-color: #e5f9ee;
}
@media print, screen and (max-width: 1200px) {
  #care .top-info__block {
    gap: 30px;
    padding: 30px 22px 25px !important;
  }
}
@media screen and (max-width: 834px) {
  #care .top-info__block {
    width: 100%;
    flex-direction: column;
    padding: 25px 22px 22px !important;
    gap: 20px;
  }
}
#care .top-info__block:not(:has(.top-info__block__schedule)) {
  padding: 22px 22px 18px !important;
}
#care .top-info__block:not(:has(.top-info__block__schedule)) .top-info__block__contact {
  width: 100% !important;
}
.top-info__block__schedule {
  display: flex;
  gap: 45px;
  flex: 1;
}
@media print, screen and (max-width: 1400px) {
  .top-info__block__schedule {
    gap: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__block__schedule {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__schedule {
    flex-direction: column;
    gap: 25px;
  }
}
.top-info__block__schedule__box:first-child {
  flex: 1.9;
}
@media print, screen and (max-width: 1300px) {
  .top-info__block__schedule__box:first-child {
    flex: 2;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__schedule__box:first-child {
    flex: 1.3;
  }
}
.top-info__block__schedule__box:last-child {
  flex: 1;
}
.top-info__block__schedule__box .ttl {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.1rem;
  color: var(--text-color);
  border-bottom: 2px solid #bcd5f7;
  margin-bottom: 22px;
  padding-bottom: 12px;
  line-height: 1.2;
}
@media screen and (max-width: 834px) {
  .top-info__block__schedule__box .ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__schedule__box .ttl {
    font-size: 1.8rem;
    margin-bottom: 13px;
  }
}
#care .top-info__block__schedule__box .ttl {
  border-color: #b9e1cb;
}
.top-info__block__schedule__box .ttl::before {
  background: var(--base-color);
  content: "";
  height: 2px;
  width: 40px;
  left: 0;
  position: absolute;
  bottom: -2px;
}
.top-info__block__schedule__box .time {
  color: var(--base-color);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-info__block__schedule__box .time {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__schedule__box .time {
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__schedule__box .time {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 0;
  }
}
.top-info__block__schedule__box .time span {
  font-size: 2.8rem;
  margin-top: -2px;
  margin-left: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-info__block__schedule__box .time span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__schedule__box .time span {
    margin-top: -5px;
    line-height: 1.1;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__schedule__box .time span {
    font-size: 2.4rem;
    letter-spacing: 0;
    margin-left: 8px;
  }
}
.top-info__block__schedule__box .time span.mr10 {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .top-info__block__schedule__box .time span.mr10 {
    margin-right: 2px;
  }
}
.top-info__block__schedule__box .holiday {
  margin-top: 10px;
  color: var(--base-color);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-info__block__schedule__box .holiday {
    font-size: 1.6rem;
  }
}
.top-info__block__schedule__box .atn-text {
  margin-top: 10px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.5rem;
  color: #363a41;
}
@media screen and (max-width: 834px) {
  .top-info__block__schedule__box .atn-text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__schedule__box .sec-icon {
    padding-top: 0;
  }
}
.top-info__block__schedule__box .sec-icon li {
  margin-top: 6px;
}
@media screen and (max-width: 599px) {
  .top-info__block__schedule__box .sec-icon li {
    display: inline-block;
  }
}
.top-info__block__schedule__box .sec-icon li span {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 50px;
  color: #fff;
  background-color: #6c99df;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-info__block__schedule__box .sec-icon li span {
    font-size: 1.4rem;
    padding: 6px 15px;
  }
}
.top-info__block__contact {
  text-align: center;
  width: 330px;
}
@media print, screen and (max-width: 1300px) {
  .top-info__block__contact {
    width: 270px !important;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact {
    width: 240px !important;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__contact {
    width: 220px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__contact {
    width: 100% !important;
  }
}
#care .top-info__block__contact {
  width: 290px;
}
@media screen and (max-width: 834px) {
  #care .top-info__block__contact {
    width: 100% !important;
  }
}
.top-info__block__contact__tel {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 20px 8px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact__tel {
    padding: 14px 14px 10px;
  }
}
.top-info__block__contact__tel__ttl {
  background-color: var(--base-color);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  text-align: center;
  padding: 7px;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact__tel__ttl {
    font-size: 1.5rem;
    padding: 5px;
  }
}
.top-info__block__contact__tel__num {
  font-family: "Jost", sans-serif;
  font-size: 3.3rem;
  text-align: center;
  color: var(--base-color);
  letter-spacing: -0.01em;
  background-image: url(../img/common/medical/icon_phone.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: 0px 11px;
  padding-left: 27px;
}
@media print, screen and (max-width: 1300px) {
  .top-info__block__contact__tel__num {
    font-size: 3rem;
    background-position: 0px 7px;
    background-size: 22px auto;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact__tel__num {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__contact__tel__num {
    font-size: 2.6rem;
    font-weight: 500;
    background-size: 24px auto;
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__contact__tel__num {
    font-size: 2.8rem;
    background-position: 0px 9px;
  }
}
#care .top-info__block__contact__tel__num {
  background-image: url(../img/common/care/icon_phone.svg);
}
.top-info__block__contact .time-text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: var(--text-color);
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact .time-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__contact .time-text {
    font-size: 1.4rem;
  }
}
.top-info__block__contact .btn-line {
  margin-top: 25px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact .btn-line {
    min-width: auto;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__contact .btn-line {
    margin-top: 20px;
    font-size: 1.6rem;
    padding: 13px 35px 13px 30px;
  }
}
.top-info__block__contact .btn-insta {
  position: relative;
  display: block;
  margin: 15px auto 0px;
  width: 170px;
  font-family: "Overpass", sans-serif;
  color: #fff;
  background: #ED3A54;
  background: linear-gradient(100deg, rgb(237, 58, 84) 0%, rgb(187, 56, 164) 100%);
  border-radius: 4px;
  line-height: 1.2;
  padding: 12px 20px 9px 35px;
  letter-spacing: 0.02em;
}
.top-info__block__contact .btn-insta::before {
  background-image: url(../img/common/icon_insta.svg);
  content: "";
  height: 22px;
  width: 22px;
  left: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-info__block__contact .btn-insta::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-info__block__contact .btn-insta:hover {
  opacity: 0.85;
}
.top-info__block__contact .btn-blog {
  position: relative;
  display: block;
  margin: 15px auto 0px;
  width: 170px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #fff;
  background: #98c33b;
  border-radius: 4px;
  line-height: 1.2;
  padding: 12px 20px 12px 35px;
  letter-spacing: 0.05em;
}
.top-info__block__contact .btn-blog.wide {
  width: 80%;
}
.top-info__block__contact .btn-blog::before {
  background-image: url(../img/common/icon_blog.svg);
  content: "";
  height: 22px;
  width: 22px;
  left: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-info__block__contact .btn-blog::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-info__block__contact .btn-blog:hover {
  opacity: 0.85;
}
.top-info__block__contact__bnr {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top-info__block__contact__bnr {
    gap: 5px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__block__contact__bnr {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .top-info__block__contact__bnr {
    flex-direction: row;
  }
}
.top-info__block__contact__bnr li {
  flex: 1;
}
.top-info__block__contact__bnr li .btn-blog, .top-info__block__contact__bnr li .btn-insta {
  margin: 0;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 9px;
}
@media screen and (max-width: 599px) {
  .top-info__block__contact__bnr li .btn-blog, .top-info__block__contact__bnr li .btn-insta {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.top-info__block__contact__bnr li .btn-blog::after, .top-info__block__contact__bnr li .btn-insta::after {
  right: 9px;
}
.top-info__block__contact__bnr li .btn-blog:before, .top-info__block__contact__bnr li .btn-insta:before {
  left: 6px;
}

.top-info__g1 {
  position: relative;
  width: 815px;
  position: relative;
  padding: 38px 350px 38px 40px;
  background-color: #f9f4d7;
  overflow: hidden;
  border-radius: 6px;
}
@media print, screen and (max-width: 1200px) {
  .top-info__g1 {
    padding: 32px 280px 32px 35px;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__g1 {
    width: 66%;
    padding: 30px 240px 25px 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__g1 {
    width: 61%;
    padding: 20px 25px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__g1 {
    width: 100%;
    padding: 20px 15px 55px 18px;
  }
}
.top-info__g1::before {
  background-image: url(../img/top/g1/info_ph.webp);
  background-size: cover;
  content: "";
  height: calc(100% - 50px);
  width: 320px;
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 25px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media print, screen and (max-width: 1200px) {
  .top-info__g1::before {
    width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__g1::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 834px) {
  .top-info__g1::before {
    top: auto;
    height: calc(100% - 130px);
    width: 180px;
    right: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__g1::before {
    width: 150px;
    height: calc(100% - 110px);
    right: 15px;
    bottom: 12px;
  }
}
.top-info__g1__catch {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ef8f1d;
  letter-spacing: 0.05em;
  padding-bottom: 18px;
  margin-bottom: 25px;
  border-bottom: 2px solid #f1de94;
}
@media print, screen and (max-width: 1200px) {
  .top-info__g1__catch {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__g1__catch {
    font-size: 2.2rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__g1__catch {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__g1__catch {
    padding-bottom: 12px;
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}
.top-info__g1__text {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .top-info__g1__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__g1__text {
    font-size: 1.5rem;
    margin-right: 170px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__g1__text {
    font-size: 1.4rem;
    margin-right: 120px;
  }
}
.top-info__g1__btn {
  width: 260px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px;
  border-top-left-radius: 8px;
  line-height: 1.3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.7rem;
  color: #fff;
  background-color: #ed9c3b;
}
@media screen and (max-width: 1024px) {
  .top-info__g1__btn {
    font-size: 1.6rem;
    width: 220px;
    padding: 13px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__g1__btn {
    font-size: 1.5rem;
    left: 0;
    right: auto;
    border-top-right-radius: 8px;
    border-top-left-radius: 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__g1__btn {
    width: 210px;
    padding: 13px;
  }
}
.top-info__g1__btn::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .top-info__g1__btn::after {
    right: 15px;
  }
}
.top-info__g1__btn:hover {
  opacity: 0.9;
}

.top-info__ren {
  width: 815px;
  position: relative;
  padding: 0px;
  background-color: #eef8d0;
  background-image: url(../img/top/ren/taiken_ph.webp);
  background-size: auto 100%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center right;
}
@media screen and (max-width: 1024px) {
  .top-info__ren {
    width: 66%;
  }
}
@media screen and (max-width: 834px) {
  .top-info__ren {
    width: 61%;
    border-radius: 6px;
    background-position: bottom right -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__ren {
    width: 100%;
    background-size: auto 74%;
  }
}
.top-info__ren__ttl {
  width: 430px;
  background-color: #91c645;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding: 19px 10px 19px 85px;
}
@media print, screen and (max-width: 1200px) {
  .top-info__ren__ttl {
    border-top-left-radius: 6px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__ren__ttl {
    width: 82%;
    padding: 12px 8px 12px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__ren__ttl {
    padding: 13px 5px 13px 65px;
    font-size: 2rem;
    width: 100%;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 0px;
  }
}
.top-info__ren__ttl .free {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 62px;
  border-radius: 50px;
  position: absolute;
  font-size: 1.7rem;
  background-color: #947ad5;
  top: -18px;
  left: 15px;
  padding: 8px;
}
@media screen and (max-width: 834px) {
  .top-info__ren__ttl .free {
    height: 58px;
    width: 58px;
    font-size: 1.6rem;
    left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__ren__ttl .free {
    height: 54px;
    width: 54px;
    top: -12px;
    left: 5px;
  }
}
.top-info__ren__ttl .ttl {
  letter-spacing: 0.05em;
}
.top-info__ren__ttl .ttl span {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  margin-left: 15px;
  padding: 1px 10px 2px;
  background-color: #f19a1d;
}
@media print, screen and (max-width: 1200px) {
  .top-info__ren__ttl .ttl span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__ren__ttl .ttl span {
    font-size: 1.4rem;
  }
}
.top-info__ren__box {
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  padding: 26px 200px 28px 45px;
}
@media screen and (max-width: 1024px) {
  .top-info__ren__box {
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__ren__box {
    padding: 15px 140px 15px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__ren__box {
    padding: 20px 65px 25px 15px;
  }
}
.top-info__ren__box .text {
  color: var(--text-color);
  margin-bottom: 7px;
}
@media screen and (max-width: 834px) {
  .top-info__ren__box .text {
    margin-bottom: 4px;
  }
}
.top-info__ren__box .catch {
  display: inline-block;
  position: relative;
  color: #ed8c24;
  padding: 0px 40px;
}
@media screen and (max-width: 834px) {
  .top-info__ren__box .catch {
    padding: 0px 20px;
  }
}
.top-info__ren__box .catch::before, .top-info__ren__box .catch::after {
  background: #ed8c24;
  content: "";
  height: 1px;
  width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 834px) {
  .top-info__ren__box .catch::before, .top-info__ren__box .catch::after {
    width: 15px;
  }
}
.top-info__ren__box .catch::before {
  left: 0;
}
.top-info__ren__box .catch::after {
  right: 0;
}

.top-info__nagomi {
  width: 410px;
  position: relative;
  padding: 15px;
  background: #f4d789;
  border-radius: 8px;
}
@media print, screen and (max-width: 1300px) {
  .top-info__nagomi {
    width: 32%;
    min-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__nagomi {
    width: 100%;
    min-width: auto;
    padding: 12px;
  }
}
.top-info__nagomi__taiken {
  background-color: #fff;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top-info__nagomi__taiken__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbf4e2;
  font-weight: 600;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.8rem;
  color: #595c5a;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding: 19px 5px 14px;
}
@media print, screen and (max-width: 1200px) {
  .top-info__nagomi__taiken__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__nagomi__taiken__ttl {
    font-size: 2.2rem;
    padding: 15px 5px 12px !important;
  }
}
.top-info__nagomi__taiken__ttl.wide {
  padding: 24px 5px;
}
.top-info__nagomi__taiken__ttl span {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #e67d20;
}
@media print, screen and (max-width: 1200px) {
  .top-info__nagomi__taiken__ttl span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__nagomi__taiken__ttl span {
    font-size: 1.4rem;
  }
}
.top-info__nagomi__taiken__box {
  padding: 13px 15px 18px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-info__nagomi__taiken__box .time {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  color: #ed863b;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  margin-bottom: 2px;
}
@media screen and (max-width: 599px) {
  .top-info__nagomi__taiken__box .time {
    font-size: 1.5rem;
  }
}
.top-info__nagomi__taiken__box .time span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  margin-left: 10px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .top-info__nagomi__taiken__box .time span {
    font-size: 2.4rem;
  }
}
.top-info__nagomi__taiken__box .note {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: var(--text-color);
}
@media print, screen and (max-width: 1300px) {
  .top-info__nagomi__taiken__box .note {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-info__nagomi__taiken__box .note {
    font-size: 1.4rem;
  }
}
.top-info__nagomi__taiken__box .btn {
  position: relative;
  display: block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
  background-color: #ed9c3b;
  max-width: 250px;
  margin: 12px auto 0px;
  padding: 12px 35px 12px 50px;
  line-height: 1.2;
  background-image: url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: 15px center;
}
@media screen and (max-width: 599px) {
  .top-info__nagomi__taiken__box .btn {
    font-size: 1.5rem;
  }
}
.top-info__nagomi__taiken__box .btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-info__nagomi__taiken__box .btn:hover {
  background-color: #ed823a;
}

.top-info__helper {
  width: 815px;
  position: relative;
  padding: 20px;
  background-color: #eef8d0;
  border-radius: 6px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-info__helper {
    width: 66%;
    padding: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper {
    width: 61%;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper {
    flex-direction: column;
    padding: 14px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__helper {
    width: 100%;
  }
}
.top-info__helper__ttl {
  width: 200px;
  height: 100%;
  background-color: #91c645;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top-info__helper__ttl {
    width: 160px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper__ttl {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
  }
}
.top-info__helper__ttl .ttl {
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-info__helper__ttl .ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper__ttl .ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-info__helper__ttl .ttl {
    font-size: 1.6rem;
  }
}
.top-info__helper__box {
  flex: 1;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  padding: 25px 30px;
}
@media screen and (max-width: 1024px) {
  .top-info__helper__box {
    padding: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper__box {
    padding: 10px 5px 5px;
  }
}
.top-info__helper__box .text {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 7px;
}
@media screen and (max-width: 834px) {
  .top-info__helper__box .text {
    font-size: 1.6rem;
    margin-bottom: 7px;
    line-height: 1.5;
  }
}
.top-info__helper__box .catch {
  position: relative;
  color: #ed8c24;
}
@media screen and (max-width: 834px) {
  .top-info__helper__box .catch {
    line-height: 1.5;
  }
}
.top-info__helper__box .check-list {
  padding-left: 15px;
}
@media screen and (max-width: 1024px) {
  .top-info__helper__box .check-list {
    padding-left: 5px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper__box .check-list {
    padding-left: 0;
    margin-bottom: 2px;
  }
}
.top-info__helper__box .check-list__item {
  position: relative;
  color: var(--text-color);
  font-size: 1.8rem;
  margin-top: 7px;
  padding-left: 36px;
}
@media screen and (max-width: 1024px) {
  .top-info__helper__box .check-list__item {
    padding-left: 32px;
  }
}
@media screen and (max-width: 834px) {
  .top-info__helper__box .check-list__item {
    font-size: 1.7rem;
    padding-left: 28px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .top-info__helper__box .check-list__item {
    font-size: 1.5rem;
  }
}
.top-info__helper__box .check-list__item::before {
  background-image: url(../img/common/icon_checkbox_green.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 22px;
  width: 22px;
  left: 0;
  position: absolute;
  top: 5px;
}
@media screen and (max-width: 834px) {
  .top-info__helper__box .check-list__item::before {
    height: 18px;
    width: 18px;
  }
}

.top-symptom {
  margin-top: 30px;
  padding: 20px;
  background-color: #d2f2f8;
  display: flex;
  border-radius: 5px;
  gap: 20px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-symptom {
    gap: 12px;
    padding: 15px;
    flex-direction: column;
  }
}
.top-symptom__ttl {
  position: relative;
  background-color: #26beda;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  width: 405px;
  padding: 24px 20px 24px 115px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-symptom__ttl {
    width: 270px;
    padding: 15px 25px 15px 95px;
  }
}
@media screen and (max-width: 834px) {
  .top-symptom__ttl {
    width: 100%;
    padding: 15px 60px 15px 60px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .top-symptom__ttl {
    align-items: center;
    flex-direction: column;
    padding: 15px 45px 15px 60px;
  }
}
.top-symptom__ttl .lead {
  width: 170px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 3px 10px;
  background-color: #fff;
  background-color: #f0c253;
  font-size: 1.7rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .top-symptom__ttl .lead {
    width: 120px;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 834px) {
  .top-symptom__ttl .lead {
    margin: 0px 10px 0px 0px;
    width: 110px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-symptom__ttl .lead {
    padding: 2px 10px;
    margin-bottom: 6px;
  }
}
.top-symptom__ttl .ttl {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-symptom__ttl .ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-symptom__ttl .ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-symptom__ttl .ttl {
    font-size: 1.7rem;
  }
}
.top-symptom__ttl::before {
  background-image: url(../img/top/wakahisa/illust01.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  content: "";
  height: 280px;
  width: 105px;
  left: 5px;
  position: absolute;
  bottom: -20px;
}
@media screen and (max-width: 1024px) {
  .top-symptom__ttl::before {
    width: 86px;
    height: 150px;
  }
}
@media screen and (max-width: 834px) {
  .top-symptom__ttl::before {
    width: 80px;
    height: 125px;
    bottom: -50px;
  }
}
@media screen and (max-width: 599px) {
  .top-symptom__ttl::before {
    width: 65px;
    height: 100px;
    left: -10px;
    bottom: 0;
  }
}
.top-symptom__ttl::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 18px;
  border-color: transparent transparent transparent #26beda;
}
@media screen and (max-width: 834px) {
  .top-symptom__ttl::after {
    border-style: solid;
    border-width: 12px 10px 0 10px;
    border-color: #26beda transparent transparent transparent;
    left: 0;
    right: 0;
    top: auto;
    bottom: -12px;
  }
}
.top-symptom__box {
  background-color: #fff;
  padding: 18px;
  border-radius: 5px;
  flex: 1;
}
@media screen and (max-width: 834px) {
  .top-symptom__box {
    padding: 14px;
  }
}
.top-symptom__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top-symptom__list {
    gap: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-symptom__list {
    gap: 8px;
  }
}
.top-symptom__list__item {
  position: relative;
  min-width: 210px;
  padding: 10px 35px 10px 50px;
  display: inline-block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
  font-size: 1.8rem;
  color: #0695b3;
  background-color: #e8f9fb;
  border-radius: 4px;
  background-image: url(../img/common/icon_checkbox_blue.svg);
  background-position: 14px center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-symptom__list__item {
    min-width: 160px;
    font-size: 1.6rem;
    padding: 10px 25px 10px 40px;
    background-size: 18px auto;
    background-position: 12px center;
  }
}
@media screen and (max-width: 599px) {
  .top-symptom__list__item {
    min-width: 110px;
    font-size: 1.5rem;
    padding: 7px 15px 7px 35px;
    background-position: 9px center;
  }
}

.top-news {
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    flex-direction: column;
    padding-bottom: 70px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1024px) {
  #care .top-news {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  #care .top-news {
    margin-bottom: 0px;
  }
}
.top-news__ttl {
  line-height: 1.2;
  width: 240px;
}
@media screen and (max-width: 834px) {
  .top-news__ttl {
    width: 170px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__ttl {
    line-height: 1;
    width: 100%;
    text-align: center;
  }
}
.top-news__ttl__en {
  font-family: "Overpass", sans-serif;
  font-size: 5.4rem;
  font-weight: 600;
  color: var(--base-color);
}
@media screen and (max-width: 834px) {
  .top-news__ttl__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__ttl__en {
    font-size: 4.2rem;
  }
}
.top-news__ttl__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .top-news__ttl__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__ttl__jp {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
.top-news__ttl .btn-line {
  min-width: 140px;
  font-size: 1.5rem;
  padding: 12px 25px 12px 15px;
  background-color: #233354;
  border: none;
  color: #fff;
}
.top-news__ttl .btn-line::before {
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-news__ttl .btn-line:hover {
  opacity: 0.85;
}
@media screen and (max-width: 834px) {
  .top-news__ttl .btn-line {
    min-width: 130px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__ttl .btn-line {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    width: 180px;
  }
}
.top-news__list {
  flex: 1;
}

.top-intro {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 55px 110px;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 1025px) {
  .top-intro {
    min-height: 520px;
  }
}
@media screen and (max-width: 1024px) {
  .top-intro {
    padding: 280px 55px 65px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro {
    padding: 250px 40px 65px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro {
    padding: 0px 20px 100px;
    margin-bottom: 40px;
    margin-top: 80px;
  }
}
.top-intro.clinic {
  padding-top: 115px;
}
@media screen and (max-width: 834px) {
  .top-intro.clinic {
    padding-top: 0px !important;
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-intro.clinic {
    margin-bottom: 60px !important;
  }
}
#medical .top-intro {
  background-image: url("../img/common/medical/top_about_bg.webp");
}
#care .top-intro {
  background-image: url("../img/common/care/top_about_bg.webp");
  margin-bottom: 95px;
}
@media print, screen and (min-width: 1025px) {
  #care .top-intro {
    min-height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  #care .top-intro {
    padding: 280px 55px 65px;
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 834px) {
  #care .top-intro {
    padding: 250px 40px 55px;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  #care .top-intro {
    padding: 0px 20px 100px;
    margin-bottom: 65px;
  }
}
.top-intro__inner {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
}

@media print, screen and (min-width: 1025px) {
  .top-intro__box {
    padding: 0px 0px 0px 590px;
  }
  .clinic .top-intro__box {
    padding: 0px 305px 0px 500px;
  }
}
@media screen and (max-width: 1024px) {
  .top-intro__box {
    padding-right: 380px;
    padding-left: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__box {
    padding-right: 250px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__box {
    padding-right: 0;
  }
}
.top-intro__box__catch {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.6rem;
  color: var(--base-color);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-intro__box__catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__box__catch {
    font-size: 2.7rem;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__box__catch {
    font-size: 2.2rem;
  }
}
.clinic .top-intro__box__catch {
  font-size: 3.7rem;
}
@media screen and (max-width: 1024px) {
  .clinic .top-intro__box__catch {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 834px) {
  .clinic .top-intro__box__catch {
    font-size: 2.9rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .clinic .top-intro__box__catch {
    font-size: 2.3rem;
  }
}
#care .top-intro__box__catch {
  font-size: 3.2rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  #care .top-intro__box__catch {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 834px) {
  #care .top-intro__box__catch {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  #care .top-intro__box__catch {
    font-size: 2rem;
  }
}
.top-intro__box__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: var(--text-color);
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .top-intro__box__text {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__box .btn-line {
    min-width: 180px;
  }
}
.top-intro__ph {
  position: absolute;
  z-index: 2;
}
.top-intro__ph.ph01 {
  width: 570px;
  left: -50px;
  top: -10px;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph.ph01 {
    width: 430px;
    left: 5px;
    top: -300px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph.ph01 {
    width: 400px;
    top: -270px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph.ph01 {
    position: relative;
    top: -30px;
    left: -5px;
    width: 330px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1024px) {
  #care .top-intro__ph.ph01 {
    width: 470px;
  }
}
@media screen and (max-width: 834px) {
  #care .top-intro__ph.ph01 {
    width: 400px;
  }
}
@media screen and (max-width: 599px) {
  #care .top-intro__ph.ph01 {
    top: -20px;
    width: 330px;
  }
}
.clinic .top-intro__ph.ph01 {
  width: 560px;
  top: -15px;
  left: -126px;
}
@media screen and (max-width: 1024px) {
  .clinic .top-intro__ph.ph01 {
    width: 420px;
    left: 5px;
    top: -300px;
  }
}
@media screen and (max-width: 834px) {
  .clinic .top-intro__ph.ph01 {
    width: 380px;
    top: -270px;
  }
}
@media screen and (max-width: 599px) {
  .clinic .top-intro__ph.ph01 {
    position: relative;
    top: -30px;
    left: -5px;
    width: 280px;
    margin-bottom: 15px;
  }
}
.top-intro__ph.ph01::before {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  width: 100%;
  left: -45px;
  position: absolute;
  top: -45px;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph.ph01::before {
    top: -25px;
    left: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph.ph01::before {
    top: -20px;
    left: -25px;
  }
}
#medical .top-intro__ph.ph01::before {
  background-image: url("../img/common/medical/top_intro_ph_bg.webp");
}
#care .top-intro__ph.ph01::before {
  background-image: url("../img/common/care/top_intro_ph_bg.webp");
}
.top-intro__ph.ph02 {
  width: 198px;
  top: -155px;
  right: -35px;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph.ph02 {
    top: -180px;
    right: 150px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph.ph02 {
    top: -130px;
    width: 160px;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph.ph02 {
    width: 100px;
    top: 80px;
    right: -10px;
  }
}
.top-intro__ph.ph03 {
  width: 250px;
  bottom: -170px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph.ph03 {
    width: 300px;
    right: -10px;
    bottom: -10px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph.ph03 {
    width: 260px;
    width: 260px;
    bottom: 50px;
    right: -50px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph.ph03 {
    width: 145px;
    right: 0px;
    bottom: -140px;
  }
}
#care .top-intro__ph.ph03 {
  width: 280px;
  bottom: -150px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  #care .top-intro__ph.ph03 {
    width: 300px;
    right: -10px;
    bottom: -10px;
  }
}
@media screen and (max-width: 834px) {
  #care .top-intro__ph.ph03 {
    width: 260px;
    width: 260px;
    bottom: 50px;
    right: -50px;
  }
}
@media screen and (max-width: 599px) {
  #care .top-intro__ph.ph03 {
    width: 170px;
    right: 0px;
    bottom: -135px;
  }
}
.clinic .top-intro__ph.ph03 {
  width: 340px;
  bottom: -65px;
  right: -95px;
}
@media screen and (max-width: 1024px) {
  .clinic .top-intro__ph.ph03 {
    width: 300px;
    right: -10px;
    bottom: -10px;
  }
}
@media screen and (max-width: 834px) {
  .clinic .top-intro__ph.ph03 {
    width: 260px;
    bottom: -100px;
    right: -25px;
  }
}
@media screen and (max-width: 599px) {
  .clinic .top-intro__ph.ph03 {
    width: 180px;
    position: absolute;
    bottom: -150px;
    right: 20px;
  }
}
.top-intro__ph img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-original {
  position: relative;
  padding: 70px 55px 140px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-original {
    padding: 75px 25px 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-original {
    padding: 60px 20px 80px;
  }
}
.top-original__inner {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
}
.top-original__inner::before, .top-original__inner::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 599px) {
  .top-original__inner::before, .top-original__inner::after {
    background-size: auto 100%;
  }
}
.top-original__inner::before {
  height: 650px;
  width: 650px;
  left: -225px;
  top: -70px;
}
@media screen and (max-width: 599px) {
  .top-original__inner::before {
    height: 350px;
    width: 350px;
    left: -170px;
    top: -50px;
  }
}
#medical .top-original__inner::before {
  background-image: url("../img/common/medical/top_activity_bg01.webp");
}
#care .top-original__inner::before {
  background-image: url("../img/common/care/top_activity_bg01.webp");
}
.top-original__inner::after {
  height: 650px;
  width: 460px;
  right: -170px;
  bottom: -130px;
}
@media screen and (max-width: 599px) {
  .top-original__inner::after {
    height: 425px;
    width: 330px;
    right: -100px;
    bottom: -60px;
  }
}
#medical .top-original__inner::after {
  background-image: url("../img/common/medical/top_activity_bg02.webp");
}
#care .top-original__inner::after {
  background-image: url("../img/common/care/top_activity_bg02.webp");
}
.top-original__ttl {
  position: relative;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-original__ttl {
    line-height: 1;
  }
}
.top-original__ttl__en {
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  font-size: 5.4rem;
  color: var(--base-color);
}
@media screen and (max-width: 834px) {
  .top-original__ttl__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ttl__en {
    font-size: 3.8rem;
    margin-bottom: 3px;
  }
}
.top-original__ttl__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text-color);
}
@media screen and (max-width: 834px) {
  .top-original__ttl__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ttl__jp {
    font-size: 1.7rem;
  }
}
.top-original__ttl02 {
  position: relative;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 35px;
  padding-bottom: 25px;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-original__ttl02 {
    line-height: 1;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ttl02 {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
.top-original__ttl02::before {
  background: #0497cd;
  content: "";
  height: 3px;
  width: 50px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .top-original__ttl02::before {
    height: 2px;
    width: 30px;
  }
}
.top-original__ttl02__en {
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: #386ec3;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .top-original__ttl02__en {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ttl02__en {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ttl02__en {
    font-size: 1.4rem;
  }
}
.top-original__ttl02__jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.6rem;
  font-weight: 500;
  color: #233354;
}
@media screen and (max-width: 1024px) {
  .top-original__ttl02__jp {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ttl02__jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ttl02__jp {
    font-size: 2.3rem;
  }
}
.top-original__catch {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .top-original__catch {
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__catch {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__catch {
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 0;
  }
}
#care .top-original__catch {
  color: #5ca638;
}
#medical .top-original__catch {
  color: #04a0cd;
}
.top-original__text {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  line-height: 2;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 60px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-original__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__text {
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .top-original__text {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.top-original__clinic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  gap: 35px;
}
@media screen and (max-width: 834px) {
  .top-original__clinic {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__clinic {
    flex-direction: column;
    gap: 20px;
    margin: 0px 15px;
  }
}
.top-original__clinic__item {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 834px) {
  .top-original__clinic__item {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-original__clinic__item {
    width: 100%;
    height: 190px;
    overflow: hidden;
  }
}
.top-original__clinic__item__link {
  display: block;
  position: relative;
  transition: 0.3s;
  height: 100%;
}
.top-original__clinic__item__link:hover {
  opacity: 0.85;
}
.top-original__clinic__item__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.top-original__clinic__item__overlay .tit {
  margin-top: 5px;
  text-align: center;
  padding: 12px 14px;
  line-height: 1.5;
  min-width: 260px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.7rem;
  color: #fff;
  background: #2F69C1;
  background: linear-gradient(90deg, rgba(47, 105, 193, 0.9) 0%, rgba(114, 155, 221, 0.9) 100%);
}
@media screen and (max-width: 1024px) {
  .top-original__clinic__item__overlay .tit {
    font-size: 2.2rem;
    min-width: auto;
    width: 75%;
    padding: 10px 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__clinic__item__overlay .tit {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__clinic__item__overlay .tit {
    width: 60%;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__clinic__item img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.top-original__ohashi {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  z-index: 1;
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  .top-original__ohashi {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ohashi {
    flex-direction: column;
    gap: 25px;
    margin: 0px 15px;
  }
}
.top-original__ohashi__item {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 834px) {
  .top-original__ohashi__item {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-original__ohashi__item {
    width: 100%;
  }
}
.top-original__ohashi__item__link .ttl {
  position: relative;
  text-align: center;
  padding: 16px 14px;
  line-height: 1.5;
  width: 80%;
  margin: -25px auto 25px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.5rem;
  color: #233354;
  background: #C2E6F0;
  background: linear-gradient(100deg, rgb(194, 230, 240) 0%, rgb(250, 253, 255) 26%, rgb(250, 253, 255) 77%, rgb(194, 230, 240) 100%);
}
@media screen and (max-width: 1024px) {
  .top-original__ohashi__item__link .ttl {
    font-size: 2rem;
    padding: 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ohashi__item__link .ttl {
    width: 85%;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ohashi__item__link .ttl {
    width: 70%;
    font-size: 1.8rem;
    margin-bottom: 12px;
    margin-top: -35px;
  }
}
.top-original__ohashi__item__link .ttl::before {
  background: #0497cd;
  content: "";
  height: 3px;
  width: 70px;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
}
.top-original__ohashi__item__link .text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  color: #233354;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .top-original__ohashi__item__link .text {
    letter-spacing: 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ohashi__item__link .text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.top-original__ohashi__item__link:hover {
  opacity: 0.85;
}
.top-original__hirao {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.top-original__hirao__list {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__list {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__hirao__list {
    margin-bottom: 25px;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__list {
    flex-direction: column;
  }
}
.top-original__hirao__list__item {
  width: calc((100% - 30px) / 2);
  border: 1px solid #2f69c1;
  border-radius: 8px;
  padding: 22px 22px 0px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__list__item {
    width: calc((100% - 20px) / 2);
    padding: 18px 18px 0px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__hirao__list__item {
    width: calc((100% - 15px) / 2);
    padding: 13px 13px 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__list__item {
    width: 100%;
  }
}
.top-original__hirao__list__item .ttl {
  position: relative;
  display: block;
  background-color: #2f69c1;
  background-image: url(../img/top/hirao/icon_checkbox.svg);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: 15px center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #fff;
  padding: 10px 45px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__list__item .ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__hirao__list__item .ttl {
    font-size: 1.8rem;
    background-size: 24px;
    background-position: 10px center;
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__list__item .ttl {
    padding: 8px 35px;
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}
.top-original__hirao__list__item .text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 0px 10px 20px 2px;
  overflow: hidden;
  letter-spacing: 0.08em;
  color: #233354;
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__list__item .text {
    padding: 0px 0px 20px 0px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__hirao__list__item .text {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__list__item .text {
    line-height: 1.6;
  }
}
.top-original__hirao__list__item .illust {
  float: right;
  width: 148px;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__list__item .illust {
    width: 120px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__hirao__list__item .illust {
    width: 100px;
  }
}
.top-original__hirao__btn {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .top-original__hirao__btn {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__btn {
    flex-direction: column;
    gap: 8px;
  }
}
.top-original__hirao__btn__item {
  flex: auto;
}
@media screen and (max-width: 834px) {
  .top-original__hirao__btn__item {
    flex: inherit;
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__btn__item {
    width: 100%;
  }
}
.top-original__hirao__btn__link {
  position: relative;
  display: block;
  background-color: #37badf;
  background-image: url(../img/top/hirao/icon_checkbox.svg);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: 18px center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  padding: 17px 40px 17px 48px;
  border-radius: 50px;
}
@media print, screen and (max-width: 1200px) {
  .top-original__hirao__btn__link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__btn__link {
    font-size: 1.7rem;
    background-size: 28px 28px;
    background-position: 12px center;
    padding: 17px 35px 17px 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__hirao__btn__link {
    background-size: 24px 24px;
    background-position: 18px center;
  }
}
@media screen and (max-width: 599px) {
  .top-original__hirao__btn__link {
    padding: 11px 40px;
    font-size: 1.6rem;
  }
}
.top-original__hirao__btn__link::before {
  background-image: url(../img/common/arw01.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  content: "";
  height: 17px;
  width: 20px;
  right: 18px;
  position: absolute;
  opacity: 0.6;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .top-original__hirao__btn__link::before {
    height: 12px;
    width: 14px;
    right: 16px;
  }
}
.top-original__hirao__btn__link:hover {
  opacity: 0.85;
}
.top-original__wakahisa {
  position: relative;
  z-index: 2;
}
.top-original__wakahisa__list {
  max-width: 1080px;
  margin: 0 auto;
}
.top-original__wakahisa__list__item {
  margin-bottom: 75px;
  display: flex;
  gap: 65px;
  flex-direction: row-reverse;
}
.top-original__wakahisa__list__item.reverse {
  flex-direction: row;
}
@media print, screen and (max-width: 1200px) {
  .top-original__wakahisa__list__item {
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__item {
    display: block;
    margin-bottom: 35px;
  }
}
.top-original__wakahisa__list__box {
  flex: 1;
  position: relative;
  padding: 0px 0px 10px;
  margin-right: 60px;
}
.reverse .top-original__wakahisa__list__box {
  margin-right: 0px;
  margin-left: 60px;
}
@media print, screen and (max-width: 1200px) {
  .top-original__wakahisa__list__box {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
}
@media screen and (max-width: 834px) {
  .top-original__wakahisa__list__box {
    padding-bottom: 0;
  }
}
.top-original__wakahisa__list__box::before {
  background: #eff5fd;
  content: "";
  height: 100%;
  width: calc(100% + 95px);
  right: 0;
  position: absolute;
  top: 30px;
  z-index: -1;
}
.reverse .top-original__wakahisa__list__box::before {
  right: auto;
  left: 0;
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__box::before {
    height: calc(100% + 50px);
  }
}
.top-original__wakahisa__list__num {
  text-align: right;
  margin-right: 30px;
  color: #04a0cd;
  font-family: "Overpass", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.top-original__wakahisa__list__num span {
  font-size: 3.6rem;
  margin-left: 5px;
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__num span {
    font-size: 3.2rem;
    margin-left: 2px;
  }
}
@media print, screen and (max-width: 1200px) {
  .top-original__wakahisa__list__num {
    margin-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__num {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.reverse .top-original__wakahisa__list__num {
  text-align: left;
  margin-right: 0px;
  margin-left: 35px;
}
@media print, screen and (max-width: 1200px) {
  .reverse .top-original__wakahisa__list__num {
    margin-left: 25px;
  }
}
.top-original__wakahisa__list__catch {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  padding: 10px 10px 10px 20px;
  background: #4B7ECA;
  background: linear-gradient(100deg, rgb(75, 126, 202) 32%, rgb(189, 209, 237) 100%);
  margin-bottom: 15px;
}
.reverse .top-original__wakahisa__list__catch {
  padding-left: 35px;
}
@media print, screen and (max-width: 1200px) {
  .reverse .top-original__wakahisa__list__catch {
    padding-left: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-original__wakahisa__list__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__wakahisa__list__catch {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__catch {
    font-size: 1.8rem;
    padding: 8px 8px 8px 12px;
    margin-bottom: 10px;
  }
}
.top-original__wakahisa__list__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  color: #233354;
  padding-right: 60px;
  letter-spacing: 0.08em;
}
.reverse .top-original__wakahisa__list__text {
  padding-right: 0px;
  padding-left: 35px;
}
@media print, screen and (max-width: 1200px) {
  .reverse .top-original__wakahisa__list__text {
    padding-left: 25px;
  }
}
@media print, screen and (max-width: 1200px) {
  .top-original__wakahisa__list__text {
    padding-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__text {
    margin-bottom: 20px;
  }
}
.top-original__wakahisa__list__ph {
  width: 396px;
}
@media screen and (max-width: 834px) {
  .top-original__wakahisa__list__ph {
    width: 300px;
    overflow: hidden;
  }
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__ph {
    width: calc(100% - 25px);
  }
}
@media screen and (max-width: 599px) {
  .reverse .top-original__wakahisa__list__ph {
    margin-left: 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__wakahisa__list__ph img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 7/5.5;
  }
}
@media screen and (max-width: 599px) {
  .top-original__wakahisa__list__ph img {
    aspect-ratio: 7/4;
  }
}
.top-original__g1 {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 50px;
  margin: 0px 30px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1 {
    margin: 0;
    padding: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1 {
    padding: 10px;
  }
}
.top-original__g1__illust {
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__illust {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1__illust {
    margin-bottom: 15px;
  }
}
.top-original__g1__feature {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature {
    flex-direction: column;
  }
}
.top-original__g1__feature.column02 {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature.column02 {
    margin-bottom: 15px;
  }
}
.top-original__g1__feature__box {
  position: relative;
  z-index: 0;
  flex: 1;
  border-radius: 5px;
  background-color: #f2f9e3;
  padding: 35px 32px 30px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature__box {
    padding: 30px 20px 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature__box {
    padding: 35px 25px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1__feature__box {
    padding: 25px 20px 20px !important;
  }
}
@media screen and (max-width: 834px) {
  .column03 .top-original__g1__feature__box {
    display: flex;
    gap: 25px;
    padding-top: 28px;
  }
}
@media screen and (max-width: 599px) {
  .column03 .top-original__g1__feature__box {
    flex-direction: column;
    gap: 15px;
  }
}
.top-original__g1__feature__box .inner01 {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature__box .inner01 {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature__box .inner01 {
    margin-top: 25px;
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1__feature__box .inner01 {
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature__box .inner02 {
    flex: 1;
  }
}
.top-original__g1__feature__box .ttl {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  color: #75ab02;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #75ab02;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature__box .ttl {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature__box .ttl {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1__feature__box .ttl {
    font-size: 1.8rem;
  }
}
.top-original__g1__feature__box .ttl span {
  position: relative;
}
.top-original__g1__feature__box .ttl span::before {
  background: #e0f1bc;
  content: "";
  height: 50px;
  width: 75px;
  border-radius: 50%;
  left: -50px;
  position: absolute;
  top: -12px;
  z-index: -1;
  transform: rotate(-25deg);
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature__box .ttl span::before {
    height: 45px;
    width: 65px;
    left: -30px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature__box .ttl span::before {
    height: 35px;
    width: 60px;
    top: -8px;
  }
}
.top-original__g1__feature__box .text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: var(--text-color);
  flex: 1;
  letter-spacing: 0.03em;
}
.top-original__g1__feature__box figure {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .top-original__g1__feature__box figure {
    width: 150px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__g1__feature__box figure {
    width: 38%;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1__feature__box figure {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-original__g1__feature__box figure img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
  }
}
.column03 .top-original__g1__feature__box figure {
  margin-top: 15px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .column03 .top-original__g1__feature__box figure {
    width: 43%;
  }
}
@media screen and (max-width: 599px) {
  .column03 .top-original__g1__feature__box figure {
    width: 100%;
  }
}
.top-original__nagomi {
  margin: 10px 30px 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 45px 62px;
  gap: 156px;
}
@media screen and (max-width: 1024px) {
  .top-original__nagomi {
    margin: 10px 0px 0px;
    padding: 40px 45px;
    gap: 90px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__nagomi {
    padding: 30px;
    gap: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__nagomi {
    flex-direction: column;
    padding: 15px;
    gap: 35px;
  }
}
.top-original__nagomi::before {
  background: #e8e8e8;
  content: "";
  height: calc(100% - 90px);
  width: 1px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .top-original__nagomi::before {
    height: calc(100% - 80px);
  }
}
@media screen and (max-width: 834px) {
  .top-original__nagomi::before {
    height: calc(100% - 60px);
  }
}
@media screen and (max-width: 599px) {
  .top-original__nagomi::before {
    display: none;
  }
}
.top-original__nagomi__item {
  width: calc((100% - 26px) / 2);
}
@media screen and (max-width: 599px) {
  .top-original__nagomi__item {
    width: 100%;
  }
}
.top-original__nagomi__item__ttl {
  background-color: #e7f9e5;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.6rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #30493c;
  padding: 21px 10px 18px;
}
@media screen and (max-width: 1024px) {
  .top-original__nagomi__item__ttl {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__nagomi__item__ttl {
    font-size: 1.9rem;
    padding: 18px 10px 15px;
    margin-bottom: 12px;
  }
}
.top-original__nagomi__item__ttl::before {
  background: #439564;
  content: "";
  height: 2px;
  width: 120px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 0px;
}
.top-original__nagomi__item__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  margin-bottom: 20px;
  color: #30493c;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .top-original__nagomi__item__text {
    margin-bottom: 20px;
  }
}
.top-original__ren {
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-original__ren {
    margin-top: 55px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren {
    margin-top: 35px;
  }
}
.top-original__ren__list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list {
    gap: 18px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ren__list {
    gap: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list {
    flex-direction: column;
    gap: 25px;
    margin: 0 10px;
  }
}
.top-original__ren__list__item {
  position: relative;
  flex: 1;
  border: 1px solid #d0d0d0;
  background: #fff;
}
.top-original__ren__list__ttl {
  position: relative;
  padding: 32px 25px 25px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__ttl {
    padding: 26px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__ttl {
    padding: 20px 20px 15px;
  }
}
.plan01 .top-original__ren__list__ttl {
  background-color: #f1f4fe;
}
.plan02 .top-original__ren__list__ttl {
  background-color: #fef3f9;
}
.plan03 .top-original__ren__list__ttl {
  background-color: #f0fdf9;
}
.top-original__ren__list__ttl .plan {
  line-height: 1.2;
  position: absolute;
  top: -18px;
  left: 15px;
  font-family: "Overpass", sans-serif;
  font-size: 2.3rem;
  color: #fff;
  padding: 12px 8px 6px;
  width: 110px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__ttl .plan {
    font-size: 2rem;
    padding: 9px 6px 5px;
    width: 90px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ren__list__ttl .plan {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__ttl .plan {
    width: 74px;
    top: -10px;
    left: 10px;
  }
}
.plan01 .top-original__ren__list__ttl .plan {
  background-color: #5874c6;
}
.plan02 .top-original__ren__list__ttl .plan {
  background-color: #df66a8;
}
.plan03 .top-original__ren__list__ttl .plan {
  background-color: #42a384;
}
.top-original__ren__list__ttl .catch {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__ttl .catch {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__ttl .catch {
    font-size: 1.7rem;
    padding-bottom: 3px;
  }
}
.plan01 .top-original__ren__list__ttl .catch {
  color: #5874c6;
}
.plan02 .top-original__ren__list__ttl .catch {
  color: #df66a8;
}
.plan03 .top-original__ren__list__ttl .catch {
  color: #42a384;
}
.top-original__ren__list__ttl .catch::before {
  border-bottom: 2px dotted #333;
  width: 100%;
  content: "";
  left: 0;
  position: absolute;
  bottom: 0;
}
.plan01 .top-original__ren__list__ttl .catch::before {
  border-color: #5874c6;
}
.plan02 .top-original__ren__list__ttl .catch::before {
  border-color: #df66a8;
}
.plan03 .top-original__ren__list__ttl .catch::before {
  border-color: #42a384;
}
.top-original__ren__list__ttl .course {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__ttl .course {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ren__list__ttl .course {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__ttl .course {
    font-size: 1.8rem;
  }
}
.plan01 .top-original__ren__list__ttl .course {
  color: #4965b5;
}
.plan02 .top-original__ren__list__ttl .course {
  color: #d84c98;
}
.plan03 .top-original__ren__list__ttl .course {
  color: #2c9875;
}
.top-original__ren__list__ttl .course span {
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__ttl .course span {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ren__list__ttl .course span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__ttl .course span {
    font-size: 2.4rem;
  }
}
.top-original__ren__list__box {
  padding: 20px 35px 85px;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__box {
    padding: 16px 20px 75px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__box {
    padding: 12px 15px 70px;
  }
}
.top-original__ren__list__box .text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #30493c;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__box .text {
    margin-bottom: 14px;
  }
}
.top-original__ren__list__box .target {
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 10px 10px 12px;
  margin-bottom: 12px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__box .target {
    font-size: 1.5rem;
    padding: 8px 10px 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__box .target {
    font-size: 1.4rem;
  }
}
.top-original__ren__list__box .detail-btn {
  position: absolute;
  display: block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #30493c;
  text-align: center;
  padding: 15px;
  line-height: 1.2;
  width: 80%;
  color: #fff;
  border-radius: 50px;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .top-original__ren__list__box .detail-btn {
    bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-original__ren__list__box .detail-btn {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .top-original__ren__list__box .detail-btn {
    width: 76%;
    padding: 13px;
  }
}
.plan01 .top-original__ren__list__box .detail-btn {
  background-color: #4965b5;
}
.plan02 .top-original__ren__list__box .detail-btn {
  background-color: #d84c98;
}
.plan03 .top-original__ren__list__box .detail-btn {
  background-color: #2c9875;
}
.top-original__ren__list__box .detail-btn:hover {
  opacity: 0.85;
}
.top-original__ren__list__box .detail-btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-original__free-area {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.icon-new {
  display: inline-block;
  color: #e9317b;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  margin-left: 1em;
}
@media screen and (max-width: 834px) {
  .icon-new {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .icon-new {
    font-size: 1.3rem;
  }
}

.news-list {
  position: relative;
  width: 100%;
  word-break: break-all;
  border-top: 1px solid #e3e2e2;
}
.news-list__item {
  position: relative;
  border-bottom: 1px solid #e3e2e2;
}
.news-list__item a {
  display: flex;
  position: relative;
  width: 100%;
  color: var(--text-color);
  line-height: 1.5;
  text-decoration: none;
  padding: 27px 0px;
  align-items: flex-start;
}
@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: var(--bg-color);
  }
}
.news-list__item__day {
  display: block;
  min-width: 100px;
  color: var(--base-color);
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 599px) {
  .news-list__item__day {
    width: 90px;
    line-height: 1.2;
  }
}
.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: 400;
  padding-left: 1em;
}
@media screen and (max-width: 834px) {
  .news-list__item__title {
    font-size: 1.6rem;
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 599px) {
  .news-list__item__title {
    flex: auto;
    width: 100%;
    font-size: 1.5rem;
    padding-left: 0;
    margin-top: 6px;
  }
}

.news-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 45px;
  padding: 25px 25px 40px 40px;
  background-color: var(--bg-color);
}
@media screen and (max-width: 1024px) {
  .news-ttl {
    padding: 34px 20px 38px 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl {
    margin-bottom: 25px;
    padding: 17px 10px 20px 18px;
  }
}
.news-ttl::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent var(--base-color);
  transform: rotate(-135deg);
}
.news-ttl__date {
  display: inline-block;
  color: var(--base-color);
  font-size: 1.6rem;
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .news-ttl__date {
    font-size: 1.4rem;
  }
}
.news-ttl__title {
  width: 100%;
  margin-top: 12px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .news-ttl__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl__title {
    margin-top: 7px;
    font-size: 1.7rem;
  }
}

.recruit-index__nav {
  display: flex;
  gap: 25px;
  margin: 40px 0px 70px;
}
@media screen and (max-width: 834px) {
  .recruit-index__nav {
    gap: 15px;
    margin: 30px 0px 50px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-index__nav {
    margin: 25px 25px 50px;
    flex-direction: column;
  }
}
.recruit-index__nav__item {
  flex: 1;
  text-align: center;
  background-color: #e4f4f3;
}
.recruit-index__nav__item__link {
  text-decoration: none !important;
}
.recruit-index__nav__item__link figure {
  background: #2dbeb9;
}
@media screen and (max-width: 599px) {
  .recruit-index__nav__item__link figure {
    height: 160px;
    overflow: hidden;
  }
}
.recruit-index__nav__item__link figure img {
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .recruit-index__nav__item__link figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.recruit-index__nav__item__link .text {
  position: relative;
  padding: 14px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 22px;
  color: #124e54;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .recruit-index__nav__item__link .text {
    padding: 12px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-index__nav__item__link .text {
    font-size: 17px;
  }
}
.recruit-index__nav__item__link .text::before, .recruit-index__nav__item__link .text::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  right: 12px;
  height: 34px;
  width: 34px;
}
@media screen and (max-width: 834px) {
  .recruit-index__nav__item__link .text::before, .recruit-index__nav__item__link .text::after {
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
.recruit-index__nav__item__link .text::before {
  border-radius: 50px;
  background: #2dbeb9;
  background: linear-gradient(129deg, rgb(45, 190, 185) 0%, rgb(105, 209, 205) 58%);
}
.recruit-index__nav__item__link .text::after {
  background-image: url(../img/common/arw01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
}
@media screen and (max-width: 599px) {
  .recruit-index__nav__item__link .text::after {
    background-size: 11px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .recruit-index__nav__item__link:hover figure img {
    opacity: 0.85;
  }
  .recruit-index__nav__item__link:hover .text {
    color: #1db8b0;
  }
}

.recruit-guideline {
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .recruit-guideline {
    margin-bottom: 25px;
  }
}
.recruit-guideline .icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  min-width: 80px;
  padding: 5px;
  line-height: 1.2;
  margin-right: 15px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .recruit-guideline .icon {
    font-size: 1.2rem;
    min-width: 65px;
    margin-right: 10px;
    letter-spacing: -0.03em;
    padding: 4px;
  }
}
.recruit-guideline .icon--01 {
  background-color: #de6b2c;
}
.recruit-guideline .icon--02 {
  background-color: #3a77cf;
}
.recruit-guideline .icon--03 {
  background-color: #43b067;
}
.recruit-guideline .icon--04 {
  background-color: #f09e00;
}
.recruit-guideline__ttl {
  position: relative;
  background-color: #e4f4f3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  line-height: 1.4;
  padding: 11px 11px 11px 35px;
  margin-bottom: 12px;
}
@media screen and (max-width: 834px) {
  .recruit-guideline__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .recruit-guideline__ttl {
    font-size: 1.7rem;
    padding: 10px 10px 10px 30px;
  }
}
.recruit-guideline__ttl::before {
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  position: absolute;
  top: 15px;
  left: 10px;
  border: 5px solid #73d3cf;
  border-radius: 50px;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__ttl::before {
    height: 16px;
    width: 16px;
  }
}
.recruit-guideline__list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .recruit-guideline__list {
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-guideline__list {
    gap: 7px;
  }
}
.recruit-guideline__list__item {
  width: calc((100% - 26px) / 2);
  min-height: 70px;
}
@media screen and (max-width: 834px) {
  .recruit-guideline__list__item {
    width: 100%;
    min-height: auto;
  }
}
.recruit-guideline__list__link {
  position: relative;
  display: flex;
  padding: 15px 35px 15px 20px;
  border-radius: 4px;
  border: 1px solid #d6dde5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.4;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 834px) {
  .recruit-guideline__list__link {
    padding: 18px 35px 18px 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-guideline__list__link {
    padding: 14px 30px 14px 12px;
    align-items: start;
  }
}
.recruit-guideline__list__link::before {
  background-color: #1db8b0;
  background-image: url(../img/common/arw01.svg);
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50px;
  right: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__list__link::before {
    height: 20px;
    width: 20px;
    background-size: 8px auto;
    right: 8px;
  }
}
.recruit-guideline__list__link .ttl {
  font-size: 1.7rem;
  color: #363a41;
  font-weight: 400;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__list__link .ttl {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .recruit-guideline__list__link:hover {
    border-color: #1db8b0;
  }
  .recruit-guideline__list__link:hover .ttl {
    color: #1db8b0;
  }
}
.recruit-guideline .no-recruit {
  margin-top: 20px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .recruit-guideline .no-recruit {
    margin-top: 15px;
  }
}
.recruit-guideline__branch {
  position: relative;
  color: #1db8b0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.9rem;
  padding-left: 24px;
  line-height: 1.4;
  margin-bottom: 14px;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__branch {
    font-size: 1.7rem;
    padding-left: 20px;
    margin-bottom: 10px;
  }
}
.recruit-guideline__branch::before {
  content: "";
  height: 17px;
  width: 17px;
  left: 0;
  position: absolute;
  top: 6px;
  border: 5px solid #1db8b0;
  border-radius: 50px;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__branch::before {
    height: 15px;
    width: 15px;
    border-width: 4px;
    top: 5px;
  }
}
.recruit-guideline__detail-ttl {
  position: relative;
  background-color: #e4f4f3;
  padding: 23px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: start;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__detail-ttl {
    flex-direction: column;
    padding: 12px 15px 15px 15px;
    gap: 5px;
    margin-bottom: 15px;
  }
}
.recruit-guideline__detail-ttl .ttl {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .recruit-guideline__detail-ttl .ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .recruit-guideline__detail-ttl .ttl {
    font-size: 1.7rem;
  }
}
.recruit-guideline__detail-ttl .icon {
  padding-top: 7px;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__detail-ttl .icon {
    padding-top: 5px;
  }
}
.recruit-guideline__tbl {
  width: 100%;
  border-top: 1px solid #dadada;
  border-collapse: collapse;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__tbl {
    display: block;
    width: 100%;
    border-top: none;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-guideline__tbl tbody, .recruit-guideline__tbl tr {
    display: block;
    width: 100%;
  }
}
.recruit-guideline__tbl th {
  width: 24%;
  padding: 20px 10px;
  line-height: 1.5em;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
  background-color: #e4f4f3;
  border-bottom: 1px solid #dadada;
  color: #124e54;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__tbl th {
    position: relative;
    padding: 7px 7px 6px 18px;
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
  .recruit-guideline__tbl th::before {
    background: #1db8b0;
    content: "";
    height: 16px;
    width: 3px;
    left: 8px;
    position: absolute;
    top: 10px;
  }
}
.recruit-guideline__tbl td {
  padding: 20px 0px 20px 25px;
  line-height: 1.5em;
  word-break: break-all;
  vertical-align: middle;
  border-bottom: 1px solid #dadada;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__tbl td {
    padding: 12px 5px 15px;
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.recruit-guideline__inquiry {
  margin-bottom: 45px;
  border: 1px solid #1db8b0;
  display: flex;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__inquiry {
    flex-direction: column;
    margin-bottom: 35px;
  }
}
.recruit-guideline__inquiry dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1db8b0;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.7rem;
  width: 24%;
  padding: 23px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__inquiry dt {
    width: 100%;
    padding: 8px;
    font-size: 1.5rem;
  }
}
.recruit-guideline__inquiry dd {
  flex: 1;
  padding: 23px 28px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .recruit-guideline__inquiry dd {
    padding: 18px;
  }
}

/*--------------------------------------------------------
404 error
----------------------------------------------------------*/
.error404 {
  margin: 0px auto 30px;
  max-width: 860px;
}
@media screen and (max-width: 1024px) {
  .error404 {
    max-width: 700px;
    padding: 15px 0px 0px;
  }
}
@media screen and (max-width: 834px) {
  .error404 {
    padding: 15px;
  }
}
@media screen and (max-width: 599px) {
  .error404 {
    padding: 0px 5px;
    margin-bottom: 20px;
  }
}
.error404__copy {
  position: relative;
  background-color: var(--bg-color);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.5rem;
  padding: 30px 20px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-color);
}
@media screen and (max-width: 1024px) {
  .error404__copy {
    font-weight: 500;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .error404__copy {
    font-size: 1.7rem;
    padding: 20px 10px;
    margin-bottom: 18px;
    line-height: 1.5;
  }
}
.error404__copy::before {
  background: var(--base-color);
  content: "";
  height: 3px;
  width: 60px;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .error404__copy::before {
    width: 40px;
    height: 2px;
  }
}
.error404__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .error404__text {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.8;
  }
}/*# sourceMappingURL=style.css.map */