@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;200;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&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=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1600以上 */
@media screen and (max-width: 1600px) {
  .only1600 {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1300以上 */
@media screen and (max-width: 1300px) {
  .only1300 {
    display: none !important;
  }
}
/* 1200以上 */
@media screen and (max-width: 1200px) {
  .only1200 {
    display: none !important;
  }
}
/* 1100以上 */
@media screen and (max-width: 1100px) {
  .only1100 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* justify-content: space-between; */
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

/*視差効果
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

.al-center {
  text-align: center;
}

.tel {
  color: inherit;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px !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;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 30px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.header-wrapper {
  position: fixed;
  width: 100%;
  height: 105px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    height: 90px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 66px;
    z-index: 99;
    transition: 0.3s;
  }
}
.header-wrapper.active {
  background-color: #fff;
}
.header-wrapper__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-wrapper__logo {
  width: 286px;
  margin-left: 35px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__logo {
    width: 240px;
    margin-left: 25px;
  }
}
@media screen and (max-width: 834px) {
  .header-wrapper__logo {
    width: 220px;
    margin-left: 17px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo {
    width: 170px;
    margin-left: 17px;
  }
}
.header-wrapper__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 95px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__right {
    margin-right: 85px;
  }
}
@media screen and (max-width: 834px) {
  .header-wrapper__right {
    margin-right: 5px;
  }
}
.header-wrapper__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 85px;
  width: 100%;
  height: 85px;
  padding-top: 42px;
  background-color: #29bad0;
  background-image: url(../img/top/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center top 19px;
  background-size: 32px auto;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__contact {
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 834px) {
  .header-wrapper__contact {
    width: 55px;
    height: 55px;
    padding-top: 30px;
    background-position: center top 12px;
    background-size: 22px auto;
    margin-right: 64px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__contact {
    margin-right: 56px;
  }
}
@media screen and (min-width: 1025px) {
  .header-wrapper__contact:hover {
    background-color: rgba(41, 186, 208, 0.7);
  }
}

.menu-btn {
  display: flex;
  justify-content: center;
  align-self: center;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 85px;
  height: 85px;
  background-color: #1760b2;
  border: none;
  transition: 0.5s;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: auto;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    top: 8px;
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 834px) {
  .menu-btn {
    right: 14px;
    top: 18px;
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn {
    top: 6px;
    right: 6px;
  }
}
.menu-btn__bar {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  margin: auto;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  .menu-btn__bar {
    width: 24px;
  }
}
.menu-btn__bar::before, .menu-btn__bar::after {
  content: "";
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: all 0.2s ease;
  left: 0;
  right: 0;
}
.menu-btn__bar::before {
  top: -11px;
}
@media screen and (max-width: 834px) {
  .menu-btn__bar::before {
    top: -9px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn__bar::before {
    top: -7px;
  }
}
.menu-btn__bar::after {
  bottom: -11px;
  width: 70%;
}
@media screen and (max-width: 834px) {
  .menu-btn__bar::after {
    bottom: -9px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn__bar::after {
    bottom: -7px;
  }
}
.menu-btn.active .menu-btn__bar {
  background-color: transparent;
}
.menu-btn.active .menu-btn__bar::before {
  top: 0;
  background-color: #fff !important;
}
.menu-btn.active .menu-btn__bar::after {
  bottom: 0;
  width: 100%;
  background-color: #fff !important;
}

.hamburger-menu {
  display: flex;
  justify-content: center;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.hamburger-menu__inner {
  visibility: hidden;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  top: 105px;
  left: 0;
  width: 100%;
  height: calc(100% - 105px);
  padding: 90px 20px 40px;
  opacity: 0;
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 50;
}
@media screen and (max-width: 1024px) {
  .hamburger-menu__inner {
    top: 90px;
    height: calc(100% - 90px);
  }
}
@media screen and (max-width: 834px) {
  .hamburger-menu__inner {
    padding: 75px 20px 60px;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__inner {
    top: 66px;
    padding: 15px 20px 60px;
    height: calc(100% - 66px);
  }
}
.hamburger-menu__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #1760b2, #059bbc, #1760b2);
  opacity: 0.9;
}
.hamburger-menu__inner.active {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
  visibility: visible;
  overflow-y: hidden;
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .hamburger-menu__inner.active {
    overflow-y: scroll !important;
  }
}
.hamburger-menu__wrap {
  position: relative;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.hamburger-menu__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .hamburger-menu__nav {
    gap: 0;
    margin-bottom: 40px;
  }
}
.hamburger-menu__nav__item {
  width: calc((99.9% - 60px) / 3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 599px) {
  .hamburger-menu__nav__item {
    width: 100%;
  }
}
.hamburger-menu__nav__link {
  display: block;
  position: relative;
  padding: 20px 10px;
  background-image: url(../img/top/arrow.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 28px auto;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .hamburger-menu__nav__link {
    padding: 15px 30px 15px 0;
    background-size: 20px auto;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__nav__link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .hamburger-menu__nav__link:hover {
    opacity: 0.8;
  }
}
.hamburger-menu__box {
  padding: 40px 20px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .hamburger-menu__box {
    padding: 15px;
  }
}
.hamburger-menu__box__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 810px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .hamburger-menu__box__inner {
    flex-direction: column;
  }
}
.hamburger-menu__box__btns {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  margin-right: 26px;
}
@media screen and (max-width: 834px) {
  .hamburger-menu__box__btns {
    gap: 0 15px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__box__btns {
    gap: 0 10px;
    margin-bottom: 12px;
  }
}
.hamburger-menu__box__btns__btn {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 260px;
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(to right, #29bad0, #1365b2);
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .hamburger-menu__box__btns__btn {
    max-width: 230px;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__box__btns__btn {
    font-size: 1.4rem;
  }
}
.hamburger-menu__box__btns__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 28px;
  height: 7px;
  margin: auto 0;
  background-image: url(../img/top/arrow.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .hamburger-menu__box__btns__btn::after {
    width: 26px;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__box__btns__btn::after {
    right: 10px;
    width: 20px;
    height: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .hamburger-menu__box__btns__btn:hover::after {
    right: 15px;
  }
}
.hamburger-menu__box__link {
  display: inline-block;
  margin-right: 17px;
  color: #175fb1;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .hamburger-menu__box__link {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__box__link {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .hamburger-menu__box__link:hover {
    opacity: 0.8;
  }
}
.hamburger-menu__box__sns {
  display: inline-flex;
  align-items: center;
  gap: 0 15px;
}
@media screen and (max-width: 1024px) {
  .hamburger-menu__box__sns {
    justify-content: center;
  }
}
.hamburger-menu__box__sns__item {
  width: 100%;
}
.hamburger-menu__box__sns__item.fb {
  max-width: 36px;
}
.hamburger-menu__box__sns__item.ig {
  max-width: 35px;
}
.hamburger-menu__box__sns__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .hamburger-menu__box__sns__link:hover {
    opacity: 0.8;
  }
}
.hamburger-menu__box__sns__link > img {
  width: 100%;
}

.footer {
  position: relative;
  padding: 120px 50px 70px;
  background-color: #edf9fa;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 70px 40px 60px;
  }
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 50px 20px 40px;
  }
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .footer-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.footer-left {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-left {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 834px) {
  .footer-left {
    flex-direction: column;
    align-items: center;
  }
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .footer-right {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.footer-logo {
  max-width: 296px;
  width: 100%;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #9bbcc0;
}
@media screen and (max-width: 1024px) {
  .footer-logo {
    max-width: 260px;
    margin-right: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 834px) {
  .footer-logo {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 20px;
    border-right: none;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-detail {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .footer-detail {
    margin-right: 0;
    text-align: center;
  }
}
.footer-detail__text {
  margin-bottom: 12px;
  color: #222;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .footer-detail__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .footer-detail__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-detail__text {
    font-size: 1.4rem;
  }
}
.footer-detail__text > a {
  color: inherit;
}
.footer-detail__link {
  margin-top: 6px;
  display: inline-block;
  color: #175fb1;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .footer-detail__link {
    margin-top: 15px;
  }
}

.footer-sns {
  display: inline-flex;
  align-items: center;
  gap: 0 15px;
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  .footer-sns {
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-sns {
    margin-left: 10px;
  }
}
.footer-sns__item {
  width: 100%;
}
.footer-sns__item.fb {
  max-width: 36px;
}
.footer-sns__item.ig {
  max-width: 35px;
}
.footer-sns__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer-sns__link:hover {
    opacity: 0.8;
  }
}
.footer-sns__link > img {
  width: 100%;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 260px;
  width: 100%;
  margin-left: auto;
  padding: 15px 20px;
  background: linear-gradient(to right, #29bad0, #1365b2);
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .footer-btn {
    max-width: 230px;
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer-btn {
    padding: 12px 20px;
    font-size: 1.5rem;
  }
}
.footer-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 28px;
  height: 7px;
  margin: auto 0;
  background-image: url(../img/top/arrow.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .footer-btn::after {
    width: 26px;
  }
}
@media screen and (max-width: 599px) {
  .footer-btn::after {
    right: 8px;
    width: 20px;
    height: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-btn:hover::after {
    right: 15px;
  }
}

.footer-copyright {
  padding: 20px;
  background-color: #edf9fa;
  border-top: 1px solid #97c3c8;
  color: #6f9fa5;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif !important;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .footer-copyright {
    padding: 20px 5px;
    font-size: 1.1rem;
  }
}

.main {
  overflow: clip;
}

.contents {
  padding: 60px 40px;
}
@media screen and (max-width: 834px) {
  .contents {
    padding: 60px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .contents {
    padding: 40px 15px;
  }
}
.contents__inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .js-scrollable table,
  .js-scrollable div {
    width: 800px;
  }
}
.js-scrollable.icon-top-position .scroll-hint-icon {
  top: 10%;
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  display: flex;
  padding: 12px 20px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: flex;
}
.breadcrumb__list__item {
  position: relative;
  font-size: 1.5rem;
  color: #777;
  letter-spacing: 0.06em;
}
.breadcrumb__list__item:not(:last-child) {
  padding-right: 35px;
}
.breadcrumb__list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}
.breadcrumb__list__link {
  color: #333;
}
@media screen and (min-width: 1025px) {
  .breadcrumb__list__link:hover {
    text-decoration: underline;
  }
}

.pagetitle {
  position: relative;
  height: 350px;
  background-image: url(../img/message/pagetitle-bg.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    height: 260px;
    padding: 0;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    height: 210px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 120px;
    background-position: right -20px center;
  }
}
.pagetitle__text {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 7%;
  padding-left: 30px;
}
@media screen and (max-width: 834px) {
  .pagetitle__text {
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text {
    padding-left: 18px;
    margin-left: 4.5%;
    flex-wrap: wrap;
  }
}
.pagetitle__text::before, .pagetitle__text::after {
  content: "";
  left: 0px;
  position: absolute;
  top: 5px;
  width: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .pagetitle__text::before, .pagetitle__text::after {
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text::before, .pagetitle__text::after {
    width: 4px;
    top: 1px;
  }
}
.pagetitle__text::after {
  background: #1760b2;
  height: 23px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media screen and (max-width: 834px) {
  .pagetitle__text::after {
    height: 18px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text::after {
    height: 22px;
  }
}
.pagetitle__text::before {
  background: #b5cce5;
  height: 46px;
}
@media screen and (max-width: 834px) {
  .pagetitle__text::before {
    height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text::before {
    height: 44px;
  }
}
.pagetitle__text__jp {
  font-size: 5rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1760b2;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .pagetitle__text__jp {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__text__jp {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text__jp {
    font-size: 2.4rem;
    width: 100%;
  }
}
.pagetitle__text__en {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #9bafc6;
  margin-left: 20px;
  padding-top: 8px;
}
@media screen and (max-width: 834px) {
  .pagetitle__text__en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text__en {
    font-size: 1.3rem;
    margin-left: 0;
    width: 100%;
    padding-top: 0;
    margin-top: 5px;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main-bg {
  background-color: #e6f6f8;
  background-image: url(../img/top/main_bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
}
@media screen and (max-width: 599px) {
  .top-main-bg {
    background-position: top 0.5% left 29%;
    background-size: 240% auto;
  }
}

.top-main {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  padding: 145px 0 19.7%;
}
@media screen and (max-width: 599px) {
  .top-main {
    flex-direction: column;
    padding: 115px 0 40px;
  }
}
.top-main::after {
  content: "";
  position: absolute;
  top: 37%;
  right: 0;
  max-width: 10%;
  width: 160px;
  height: 190px;
  background-image: url(../img/top/main_ph04.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 1700px) {
  .top-main::after {
    display: none;
  }
}
.top-main__catch {
  width: 35.5%;
  margin: 0 5%;
}
@media screen and (max-width: 599px) {
  .top-main__catch {
    width: calc(100% - 50px);
    margin: 0 0 40px;
  }
}
.top-main__image {
  flex: 1;
  position: relative;
  max-width: 800px;
  margin-right: 20px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-main__image {
    margin: 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__image {
    width: 73%;
    margin: 0 auto 35px 28px;
  }
}
.top-main__image::before, .top-main__image::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 5px;
}
.top-main__image::before {
  left: -60px;
  bottom: -140px;
  max-width: 32%;
  width: 250px;
  height: 250px;
  background-image: url(../img/top/main_ph02.webp);
}
@media screen and (max-width: 834px) {
  .top-main__image::before {
    bottom: -190px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__image::before {
    right: -50px;
    bottom: -40px;
    left: auto;
    width: 103px;
    height: 103px;
    max-width: none;
  }
}
.top-main__image::after {
  right: -90px;
  bottom: -265px;
  width: 360px;
  height: 220px;
  background-image: url(../img/top/main_ph03.webp);
}
@media screen and (max-width: 1600px) {
  .top-main__image::after {
    right: -2.1vw;
    bottom: -15.9vw;
    width: 22.5vw;
    height: 13.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__image::after {
    right: -50px;
    bottom: -17vw;
  }
}
@media screen and (max-width: 599px) {
  .top-main__image::after {
    display: none;
  }
}
.top-main__image > img {
  border-radius: 5px;
}

.top-intro {
  position: relative;
  padding: 0 50px;
  background-image: url(../img/top/round_bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-intro {
    padding: 0 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro {
    background-size: 120%;
    padding: 0 20px;
  }
}
.top-intro__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.top-intro__container {
  display: flex;
  position: relative;
  margin-bottom: 70px;
  z-index: 0;
}
@media screen and (max-width: 834px) {
  .top-intro__container {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
.top-intro__container::before, .top-intro__container::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-intro__container::before, .top-intro__container::after {
    background-size: 80%;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__container::before, .top-intro__container::after {
    background-size: 70%;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__container::before, .top-intro__container::after {
    background-size: 100%;
  }
}
.top-intro__container::before {
  top: -270px;
  left: -285px;
  width: 521px;
  height: 347px;
  background-image: url(../img/top/intro_bg01.png);
  background-position: right bottom;
}
@media screen and (max-width: 599px) {
  .top-intro__container::before {
    top: -140px;
    left: -105px;
    width: 294px;
    height: 201px;
  }
}
.top-intro__container::after {
  right: -260px;
  bottom: -140px;
  width: 587px;
  height: 391px;
  background-image: url(../img/top/intro_bg02.png);
  background-position: top left;
}
@media screen and (max-width: 599px) {
  .top-intro__container::after {
    right: -60px;
    bottom: -150px;
    width: 282px;
    height: 193px;
  }
}
.top-intro__image {
  width: 47.5%;
  margin-right: 5%;
}
@media screen and (max-width: 834px) {
  .top-intro__image {
    width: 100%;
    margin-right: 0;
  }
}
.top-intro__image > img {
  border-radius: 5px;
  box-shadow: 0 0 111px rgba(0, 0, 0, 0.1);
}
.top-intro__content {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .top-intro__content {
    margin-bottom: 25px;
  }
}
.top-intro__catch {
  margin-bottom: 20px;
  color: #1760b2;
  font-size: 4.3rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1300px) {
  .top-intro__catch {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__catch {
    margin-bottom: 15px;
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__catch {
    font-size: 2.5rem;
    letter-spacing: 0.045em;
  }
}
.top-intro__text {
  color: #222;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 2.2;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-intro__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__text {
    font-size: 1.5rem;
  }
}
.top-intro__list {
  counter-reset: num;
  display: flex;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .top-intro__list {
    gap: 0 3%;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__list {
    flex-wrap: wrap;
    gap: 0 12px;
  }
}
.top-intro__list__item {
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-intro__list__item:nth-child(1) {
    width: 100%;
  }
}
.top-intro__list__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 270px;
  height: 270px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 21px rgba(66, 114, 136, 0.17);
}
@media screen and (max-width: 1024px) {
  .top-intro__list__body {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__list__body {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__list__body {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(66, 114, 136, 0.17);
  }
}
.top-intro__list__body::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 11px;
  left: 5px;
  width: 50px;
  height: 29px;
  background-color: #1760b2;
  border-radius: 30px;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Roboto", sans-serif !important;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .top-intro__list__body::before {
    font-family: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__list__body::before {
    top: 8px;
    left: 0;
    width: 40px;
    height: 24px;
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif !important;
  }
}
.top-intro__list__icon {
  margin-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .top-intro__list__icon {
    margin-bottom: 13px;
  }
}
.item01 .top-intro__list__icon {
  max-width: 99px;
}
@media screen and (max-width: 834px) {
  .item01 .top-intro__list__icon {
    max-width: 69.3px;
  }
}
@media screen and (max-width: 599px) {
  .item01 .top-intro__list__icon {
    max-width: 59.4px;
  }
}
.item02 .top-intro__list__icon {
  max-width: 79px;
}
@media screen and (max-width: 834px) {
  .item02 .top-intro__list__icon {
    max-width: 55.3px;
  }
}
@media screen and (max-width: 599px) {
  .item02 .top-intro__list__icon {
    max-width: 47.4px;
  }
}
.item03 .top-intro__list__icon {
  max-width: 57px;
}
@media screen and (max-width: 834px) {
  .item03 .top-intro__list__icon {
    max-width: 39.9px;
  }
}
@media screen and (max-width: 599px) {
  .item03 .top-intro__list__icon {
    max-width: 34.2px;
  }
}
.top-intro__list__icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.top-intro__list__text {
  color: #222;
  font-size: 2.3rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 834px) {
  .top-intro__list__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__list__text {
    font-size: 1.7rem;
  }
}

.top-about {
  padding: 100px 50px 140px;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 80px 40px 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-about {
    padding: 40px 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 40px 20px;
  }
}
.top-about.hospital {
  padding-top: 120px;
  margin: 0 50px;
  background-image: url(../img/top/about_hospital_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .top-about.hospital {
    margin: 0;
    padding-top: 90px;
    border-radius: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-about.hospital {
    margin: 0;
  }
}
.top-about__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.top-about__container {
  display: flex;
  position: relative;
  margin-bottom: 55px;
}
@media screen and (max-width: 834px) {
  .top-about__container {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.hospital .top-about__container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .hospital .top-about__container {
    flex-direction: column;
  }
}
.top-about__content {
  width: 61.7%;
}
@media screen and (max-width: 834px) {
  .top-about__content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.hospital .top-about__content {
  width: 48.1%;
}
@media screen and (max-width: 1024px) {
  .hospital .top-about__content {
    width: 100%;
  }
}
.top-about__content__text {
  color: #222;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 2.2;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .top-about__content__text {
    font-size: 1.5rem;
  }
}
.hospital .top-about__content__text {
  color: #fff;
}
.top-about__content__access {
  display: flex;
  margin-top: 30px;
  padding: 35px 40px;
  background-color: #29bad0;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .top-about__content__access {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__content__access {
    flex-direction: column;
    margin-top: 30px;
    padding: 20px 25px 30px;
  }
}
.top-about__content__access__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 2.5rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-about__content__access__title {
    width: 130px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-about__content__access__title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
    padding-right: 0;
    padding-bottom: 8px;
    border-right: none;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
}
.top-about__content__access__text {
  flex: 1;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .top-about__content__access__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__content__access__text {
    font-size: 1.5rem;
  }
}
.top-about__image {
  position: relative;
  margin-left: 4%;
  flex: 1;
}
@media screen and (max-width: 599px) {
  .top-about__image {
    margin-left: 0;
  }
}
.hospital .top-about__image {
  margin-top: 10px;
  margin-right: 4%;
  margin-left: 0;
}
@media screen and (max-width: 834px) {
  .hospital .top-about__image {
    width: 85%;
    margin: 10px auto 0px;
  }
}
.hospital .top-about__image > img {
  border-radius: 5px;
}
.top-about__image__img {
  position: absolute;
  top: -80px;
  left: 0;
  max-width: 592px;
  width: calc(50vw - 19.5%);
}
@media screen and (max-width: 834px) {
  .top-about__image__img {
    width: 100%;
    position: initial;
  }
}
.top-about__data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .top-about__data {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__data {
    gap: 10px;
    justify-content: center;
  }
}
.top-about__data__item {
  position: relative;
  width: calc((99.9% - 66px) / 4);
  min-height: 280px;
  padding: 22px 0;
  border-radius: 5px;
  background-color: #edf7f8;
}
@media screen and (max-width: 1024px) {
  .top-about__data__item {
    min-height: 230px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 834px) {
  .top-about__data__item {
    width: calc((99.9% - 20px) / 3);
    min-height: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-about__data__item {
    width: calc((99.9% - 10px) / 2);
    padding: 10px 0 20px;
  }
}
.hospital .top-about__data__item {
  background-color: #fff;
}
.top-about__data__title {
  margin: 0 20px 28px;
  padding: 3px;
  background-color: #175fb1;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-about__data__title {
    margin: 0 15px 24px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-about__data__title {
    margin: 0 10px 15px;
    border-radius: 3px;
    font-size: 1.5rem;
  }
}
.top-about__data__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.top-about__data__note {
  position: absolute;
  right: 18px;
  bottom: 15px;
  -moz-columns: #757575;
       columns: #757575;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-about__data__note {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__data__note {
    bottom: 5px;
    right: 5px;
    font-size: 1.2rem;
  }
}
.top-about__button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 395px;
  margin: 0 auto;
  padding: 18px;
  background-image: url(../img/top/arrow.webp);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 16px auto;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .top-about__button {
    padding: 15px;
    font-size: 1.6rem;
  }
}

.top-greeting {
  position: relative;
  padding: 140px 50px 130px;
}
@media screen and (max-width: 1024px) {
  .top-greeting {
    padding: 100px 40px 90px;
  }
}
@media screen and (max-width: 834px) {
  .top-greeting {
    padding: 60px 30px 80px;
  }
}
.top-greeting::after {
  content: "MESSAGE";
  position: absolute;
  right: 6%;
  bottom: 20px;
  color: #29bad0;
  font-size: 12.5rem;
  font-family: "EB Garamond", serif !important;
  font-style: italic;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 0.05em;
  opacity: 0.2;
}
@media screen and (max-width: 1024px) {
  .top-greeting::after {
    bottom: 10px;
    font-size: 10vw;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting::after {
    font-size: 14vw;
  }
}
.top-greeting__wrap {
  display: flex;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .top-greeting__wrap {
    flex-direction: column;
  }
}
.top-greeting__wrap::before, .top-greeting__wrap::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-greeting__wrap::before, .top-greeting__wrap::after {
    background-size: 80%;
  }
}
@media screen and (max-width: 834px) {
  .top-greeting__wrap::before, .top-greeting__wrap::after {
    background-size: 70%;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting__wrap::before, .top-greeting__wrap::after {
    background-size: 60%;
  }
}
.top-greeting__wrap::before {
  top: -200px;
  left: -400px;
  width: 621px;
  height: 415px;
  background-image: url(../img/top/greeting_bg01.png);
  background-position: right bottom;
}
.top-greeting__wrap::after {
  top: -50px;
  right: -440px;
  width: 587px;
  height: 392px;
  background-image: url(../img/top/greeting_bg02.png);
  background-position: top left;
}
.top-greeting__prof {
  width: 25%;
  margin-top: 4px;
  margin-right: 6%;
}
@media screen and (max-width: 599px) {
  .top-greeting__prof {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.top-greeting__prof__img {
  margin-bottom: 23px;
}
@media screen and (max-width: 599px) {
  .top-greeting__prof__img {
    width: 60%;
    margin: 0 auto 20px;
  }
}
.top-greeting__prof__img > img {
  border-radius: 5px;
}
.top-greeting__prof__txt01 {
  margin-bottom: 4px;
  color: #222;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 834px) {
  .top-greeting__prof__txt01 {
    font-size: 1.6rem;
  }
}
.top-greeting__prof__txt02 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #175fb1;
  font-size: 2.8rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 834px) {
  .top-greeting__prof__txt02 {
    justify-content: center;
    font-size: 2.5rem;
  }
}
.top-greeting__prof__txt02 > span {
  display: inline-block;
  width: 48px;
  margin-right: 10px;
  padding: 1px 0;
  background-color: #175fb1;
  border-radius: 5px;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 834px) {
  .top-greeting__prof__txt02 > span {
    width: 40px;
    margin-right: 8px;
    border-radius: 3px;
    font-size: 1.4rem;
  }
}
.top-greeting__content {
  flex: 1;
}
.top-greeting__content__catch {
  margin-bottom: 25px;
  color: #fff;
  font-size: 3.5rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 834px) {
  .top-greeting__content__catch {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting__content__catch {
    font-size: 2.3rem;
    letter-spacing: 0;
  }
}
.top-greeting__content__catch > span {
  padding: 0 0 0 15px;
  background-color: #29bad0;
}
@media screen and (max-width: 834px) {
  .top-greeting__content__catch > span {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting__content__catch > span {
    padding: 0 0 0 6px;
  }
}
.top-greeting__content__text {
  color: #222;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: justify;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .top-greeting__content__text {
    font-size: 1.5rem;
  }
}

.top-feature {
  display: flex;
  position: relative;
  background: #e6f6f8;
}
@media screen and (max-width: 834px) {
  .top-feature {
    flex-direction: column;
  }
}
.top-feature__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  max-width: 420px;
  width: 100%;
  height: 100vh;
  padding-top: 140px;
  background-color: #175fb1;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .top-feature__title {
    max-width: 250px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__title {
    position: inherit;
    max-width: none;
    height: auto;
    padding: 40px 10px;
    writing-mode: inherit;
    text-align: center;
  }
}
.top-feature__title__en {
  margin-left: 28px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .top-feature__title__en {
    margin-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__title__en {
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.top-feature__title__jp {
  margin-top: -3px;
  color: #fff;
  font-size: 4.4rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-feature__title__jp {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__title__jp {
    font-size: 2.8rem;
  }
}
.top-feature__body {
  flex: 1;
  position: relative;
  margin-left: -60px;
  padding: 130px 2% 140px 0;
}
@media screen and (max-width: 1024px) {
  .top-feature__body {
    margin-left: -40px;
    padding: 110px 2% 120px 0;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__body {
    margin-left: 0;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__body {
    padding: 40px 20px;
  }
}
.top-feature__body__item {
  display: flex;
  align-items: center;
  max-width: 1270px;
}
@media screen and (max-width: 834px) {
  .top-feature__body__item {
    align-items: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__body__item {
    flex-direction: column-reverse;
  }
}
.top-feature__body__item:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .top-feature__body__item:not(:last-child) {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__body__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__body__item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.top-feature__body__image {
  width: 37%;
  margin-right: 4%;
}
@media screen and (max-width: 599px) {
  .top-feature__body__image {
    width: 100%;
    margin-right: 0;
  }
}
.top-feature__body__image > img {
  border-radius: 5px;
}
.top-feature__body__content {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .top-feature__body__content {
    margin-bottom: 25px;
  }
}
.top-feature__body__txt01 {
  margin-bottom: 20px;
  color: #94c93a;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-feature__body__txt01 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__body__txt01 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.top-feature__body__txt02 {
  margin-bottom: 20px;
  color: #1760b2;
  font-size: 3.3rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-feature__body__txt02 {
    margin-bottom: 15px;
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__body__txt02 {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
}
.top-feature__body__txt03 {
  color: #222;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: justify;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-feature__body__txt03 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__body__txt03 {
    font-size: 1.5rem;
  }
}

.top-schedule {
  padding: 120px 50px 130px;
}
@media screen and (max-width: 1024px) {
  .top-schedule {
    padding: 100px 40px 110px;
  }
}
@media screen and (max-width: 834px) {
  .top-schedule {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-schedule {
    padding: 50px 20px;
  }
}
.top-schedule__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.top-schedule__lead {
  margin-bottom: 40px;
  color: #2297ce;
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.75;
}
@media screen and (max-width: 834px) {
  .top-schedule__lead {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.top-schedule__inner {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 45px;
}
@media screen and (max-width: 1024px) {
  .top-schedule__inner {
    padding: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-schedule__inner {
    padding: 25px;
  }
}
.top-schedule__inner__item {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-schedule__inner__item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-schedule__inner__item {
    margin-bottom: 20px;
  }
}
.top-schedule__inner__item.mb00 {
  margin-bottom: 0;
}
.top-schedule__inner__item__title {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1;
  padding-left: 30px;
  position: relative;
  margin-bottom: 22px;
}
@media screen and (max-width: 1024px) {
  .top-schedule__inner__item__title {
    font-size: 1.7rem;
    margin-bottom: 19px;
    padding-left: 23px;
  }
}
@media screen and (max-width: 599px) {
  .top-schedule__inner__item__title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.top-schedule__inner__item__title::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  left: 0;
  top: 3px;
  border: 6px solid #175fb1;
}
@media screen and (max-width: 1024px) {
  .top-schedule__inner__item__title::before {
    width: 15px;
    height: 15px;
    border: 5px solid #175fb1;
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .top-schedule__inner__item__title::before {
    top: 2px;
  }
}

.top-message {
  margin: 0 50px;
  padding: 105px 70px 125px;
  background: linear-gradient(to right, #90e4e5, #4fd2d3, #29bad0);
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-message {
    margin: 0 40px;
    padding: 100px 40px 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-message {
    margin: 0;
    padding: 50px 35px;
    border-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-message {
    padding: 50px 20px;
  }
}
.top-message__wrap {
  max-width: 1560px;
  margin: 0 auto;
}
.top-message__list {
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 1024px) {
  .top-message__list {
    gap: 0 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__list {
    gap: 10px;
  }
}
.top-message__list__item {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .top-message__list__item {
    flex: auto;
    width: calc((99.9% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-message__list__item {
    width: calc((99.9% - 10px) / 2);
  }
}
.top-message__list__link {
  overflow: hidden;
  display: block;
  border-radius: 5px;
}
@media screen and (min-width: 1025px) {
  .top-message__list__link:hover {
    opacity: 0.8;
  }
}
.top-message__list__image {
  position: relative;
}
.top-message__list__image > span {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 158px;
  padding: 2px 10px;
  background-color: #97cc3a;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-message__list__image > span {
    padding: 1px 5px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-message__list__image > span {
    min-width: 125px;
    padding: 1px 5px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-message__list__image > span {
    font-size: 1.3rem;
  }
}
.top-message__list__body {
  padding: 25px 20px;
  background-color: #fff;
  background-image: url(../img/top/arrow_blue.webp);
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
  background-size: 28px auto;
}
@media screen and (max-width: 834px) {
  .top-message__list__body {
    padding: 12px 10px;
    background-size: 24px auto;
  }
}
.top-message__list__name {
  color: #222;
  font-size: 2.8rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-message__list__name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-message__list__name {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-message__list__name {
    font-size: 2rem;
  }
}

.top-lodging {
  padding: 120px 50px 135px;
  position: relative;
}
.top-lodging::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 500px);
  background: linear-gradient(180deg, #fff 0%, #edf9fa 100%);
  left: 0;
  bottom: 0;
  z-index: 0;
}
.top-lodging::after {
  position: absolute;
  content: "";
  width: 622px;
  height: 433px;
  background-image: url(../img/top/loading-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .top-lodging::after {
    background-size: 60% auto;
    right: -200px;
    top: -50px;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging::after {
    background-size: 40% auto;
    right: -280px;
    top: -130px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lodging {
    padding: 100px 40px 110px;
  }
}
@media screen and (max-width: 834px) {
  .top-lodging {
    padding: 50px 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging {
    padding: 50px 20px;
  }
}
.top-lodging .top-common-title {
  position: relative;
  z-index: 10;
}
.top-lodging__box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 834px) {
  .top-lodging__box {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging__box {
    padding: 20px;
  }
}
.top-lodging__box__head {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-lodging__box__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.top-lodging__box__head__image {
  position: relative;
  width: 47.8%;
  margin-right: 4.5%;
}
@media screen and (max-width: 1024px) {
  .top-lodging__box__head__image {
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head__image {
    width: 85%;
    margin: 0px auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging__box__head__image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.top-lodging__box__head__image > img {
  border-radius: 5px;
}
.top-lodging__box__head__image > span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -66px;
  left: -68px;
  width: 120px;
  height: 120px;
  background-color: #97cc3a;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-lodging__box__head__image > span {
    top: -50px;
    left: -52px;
    width: 100px;
    height: 100px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging__box__head__image > span {
    top: -40px;
    left: -32px;
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}
.top-lodging__box__head__content {
  flex: 1;
}
.top-lodging__box__head__title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #d4dee9;
  color: #175fb1;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-lodging__box__head__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head__title {
    font-size: 2rem;
    border-bottom-width: 2px;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging__box__head__title {
    font-size: 1.7rem;
    padding-bottom: 10px;
  }
}
.top-lodging__box__head__title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #175fb1;
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head__title::after {
    bottom: -2px;
    height: 2px;
  }
}
.top-lodging__box__head__table {
  width: 100%;
  margin-bottom: 25px;
  color: #222;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head__table {
    font-size: 1.4rem;
  }
}
.top-lodging__box__head__table th {
  padding-right: 0.5em;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head__table th {
    padding-right: 10px;
  }
}
.top-lodging__box__head__box {
  padding: 23px 32px;
  background-color: #f7f7f7;
  border-radius: 5px;
  color: #222;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 834px) {
  .top-lodging__box__head__box {
    padding: 20px;
    font-size: 1.5rem;
  }
}
.top-lodging__box__photos {
  display: flex;
  gap: 0 18px;
}
@media screen and (max-width: 1024px) {
  .top-lodging__box__photos {
    gap: 0 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-lodging__box__photos {
    gap: 0 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-lodging__box__photos {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.top-lodging__box__photos__item {
  width: calc((99.9% - 20px) / 2);
}
@media screen and (max-width: 599px) {
  .top-lodging__box__photos__item {
    width: calc((99.9% - 10px) / 2);
    flex-wrap: wrap;
  }
}
.top-lodging__box__photos__item > img {
  border-radius: 5px;
}
@media screen and (max-width: 834px) {
  .top-lodging__box__photos__item > img {
    border-radius: 3px;
  }
}

.top-salary {
  padding: 110px 50px 120px;
}
@media screen and (max-width: 1024px) {
  .top-salary {
    padding: 90px 40px 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-salary {
    padding: 50px 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-salary {
    padding: 50px 20px;
  }
}
.top-salary__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.top-salary__container {
  display: flex;
  align-items: baseline;
  gap: 0 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top-salary__container {
    gap: 0 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-salary__container {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 15px;
  }
}
.top-salary__title {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 834px) {
  .top-salary__title {
    margin-bottom: 30px;
    padding-left: 30px;
  }
}
.top-salary__title::before, .top-salary__title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 13px;
  height: 13px;
  margin: auto 0;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .top-salary__title::before, .top-salary__title::after {
    width: 10px;
    height: 10px;
  }
}
.top-salary__title::before {
  left: 0;
  background-color: #d6f0f3;
}
.top-salary__title::after {
  left: 10px;
  background-color: #29bad0;
}
.top-salary__title__jp {
  color: #222;
  font-size: 4.4rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-salary__title__jp {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-salary__title__jp {
    font-size: 2.4rem;
  }
}
.top-salary__title__en {
  margin-left: 15px;
  color: #9bafc6;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-salary__title__en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-salary__title__en {
    font-size: 1.4rem;
  }
}
.top-salary__table {
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .top-salary__table {
    margin-top: -1px;
  }
}
.top-salary__table th,
.top-salary__table td {
  border-top: 1px solid #d9dcd3;
  border-bottom: 1px solid #d9dcd3;
}
@media screen and (max-width: 1024px) {
  .top-salary__table th,
  .top-salary__table td {
    line-height: 1.4;
  }
}
.top-salary__table th {
  width: 210px;
  padding: 30px 10px;
  background-color: #175fb1;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-salary__table th {
    width: 25%;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-salary__table th {
    padding: 10px 5px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-salary__table th {
    letter-spacing: 0;
  }
}
.top-salary__table td {
  padding: 30px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-salary__table td {
    padding: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-salary__table td {
    padding: 10px;
    font-size: 1.5rem;
  }
}
.top-salary__table td > dl > div:not(:last-child) {
  margin-bottom: 8px;
}
.top-salary__table td > dl > div:nth-child(2) > dt {
  margin-bottom: 5px;
}
.top-salary__table td > dl > div:nth-child(2) > dt::before {
  border-color: #97cc3a;
}
.top-salary__table td > dl > div > dt {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}
.top-salary__table td > dl > div > dt::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 4px solid #2297ce;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .top-salary__table td > dl > div > dt::before {
    top: 5px;
    width: 14px;
    height: 14px;
  }
}
.top-salary__note {
  padding-left: 1em;
  color: #6a8587;
  font-size: 1.7rem;
  text-indent: -1em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .top-salary__note {
    font-size: 1.4rem;
  }
}

.top-gallery {
  position: relative;
}
.top-gallery .swiper-slide img {
  border-radius: 5px;
}
.top-gallery::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background-color: #edf9fa;
  left: 0;
  bottom: 0;
}

.top-common-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .top-common-title {
    margin-bottom: 20px;
  }
}
.top-common-title.white::after {
  background-color: #fff;
}
.top-common-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  margin: 0 auto;
  background-color: #175fb1;
  border-radius: 3px;
}
@media screen and (max-width: 834px) {
  .top-common-title::after {
    width: 40px;
  }
}
.top-common-title__en {
  margin-bottom: 13px;
  color: #9bafc6;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-common-title__en {
    font-size: 1.4rem;
  }
}
.white .top-common-title__en {
  color: #fff;
}
.top-common-title__jp {
  color: #222;
  font-size: 4.4rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .top-common-title__jp {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-common-title__jp {
    font-size: 2.8rem;
  }
}
.white .top-common-title__jp {
  color: #fff;
}

/*--------------------------------------------------------
message
----------------------------------------------------------*/
#message .main {
  padding-top: 115px;
}
@media screen and (max-width: 599px) {
  #message .main {
    padding-top: 65px;
  }
}

.message-block {
  margin-bottom: 120px;
}
@media screen and (max-width: 834px) {
  .message-block {
    margin-bottom: 85px;
  }
}
@media screen and (max-width: 599px) {
  .message-block {
    margin-bottom: 50px;
  }
}
.message-block:last-child {
  margin-bottom: 0;
}

.message-prof {
  background: #29BAD0;
  background: linear-gradient(34deg, rgb(41, 186, 208) 59%, rgb(144, 228, 229) 100%);
  border-radius: 10px;
  display: flex;
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .message-prof {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof {
    border-radius: 6px;
    margin-bottom: 25px;
  }
}
.message-prof__ph {
  display: block;
  width: 300px;
}
@media screen and (max-width: 834px) {
  .message-prof__ph {
    width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__ph {
    width: 38%;
  }
}
.message-prof__ph img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.message-prof__box {
  flex: 1;
  padding: 50px;
}
@media screen and (max-width: 834px) {
  .message-prof__box {
    padding: 34px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__box {
    padding: 15px;
  }
}
.message-prof__univ {
  color: #fff;
  background-color: #97cc3a;
  font-size: 1.7rem;
  font-family: "Shippori Mincho", serif !important;
  max-width: 164px;
  padding: 4px 10px;
  text-align: center;
  line-height: 1.4;
  border-radius: 5px;
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .message-prof__univ {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__univ {
    font-size: 1.3rem;
    margin-bottom: 7px;
    padding: 2px 10px 1px;
    max-width: 130px;
    border-radius: 3px;
  }
}
.message-prof__sign {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .message-prof__sign {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__sign {
    margin-bottom: 3px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.message-prof__sign__jp {
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .message-prof__sign__jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__sign__jp {
    font-size: 2.3rem;
  }
}
.message-prof__info {
  background-color: #fff;
  padding: 32px 35px 24px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .message-prof__info {
    padding: 22px 25px 14px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__info {
    flex-direction: column;
    padding: 12px 12px 5px;
  }
}
.message-prof__info dt {
  position: relative;
  width: 120px;
  font-weight: 600;
  font-size: 1.7rem;
  padding-left: 25px;
}
@media screen and (max-width: 834px) {
  .message-prof__info dt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__info dt {
    width: auto;
    flex: 1;
    font-size: 1.3rem;
    padding-left: 18px;
    margin-bottom: 3px;
  }
}
.message-prof__info dt::before, .message-prof__info dt::after {
  content: "";
  left: -4px;
  top: 6px;
  position: absolute;
  width: 16px;
  height: 8px;
  border: 5px solid;
  border-bottom: none;
  background: transparent;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
@media screen and (max-width: 599px) {
  .message-prof__info dt::before, .message-prof__info dt::after {
    width: 14px;
    height: 7px;
    border-width: 4px;
    top: 4px;
  }
}
.message-prof__info dt::before {
  left: 3px;
  transform: rotate(90deg);
  border-color: #a7dfe7;
}
@media screen and (max-width: 599px) {
  .message-prof__info dt::before {
    left: 2px;
  }
}
.message-prof__info dt::after {
  transform: rotate(-90deg);
  border-color: #29BAD0;
}
.message-prof__info dd {
  width: calc(100% - 120px);
  margin-bottom: 8px;
  font-size: 1.7rem;
}
@media screen and (max-width: 834px) {
  .message-prof__info dd {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 599px) {
  .message-prof__info dd {
    width: auto;
    flex: 1;
    font-size: 1.4rem;
  }
}

.message-faq__ttl {
  position: relative;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
  padding-left: 37px;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .message-faq__ttl {
    font-size: 2.1rem;
    letter-spacing: 0;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .message-faq__ttl {
    font-size: 1.7rem;
    padding-left: 26px;
    margin-bottom: 10px;
  }
}
.message-faq__ttl::before, .message-faq__ttl::after {
  content: "";
  height: 13px;
  width: 13px;
  left: 0;
  position: absolute;
  top: 13px;
  border-radius: 50px;
}
@media screen and (max-width: 834px) {
  .message-faq__ttl::before, .message-faq__ttl::after {
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .message-faq__ttl::before, .message-faq__ttl::after {
    height: 10px;
    width: 10px;
  }
}
.message-faq__ttl::before {
  background: #a7dfe7;
}
.message-faq__ttl::after {
  left: 11px;
  background: #29bad0;
}
@media screen and (max-width: 599px) {
  .message-faq__ttl::after {
    left: 8px;
  }
}
.message-faq__text {
  font-size: 1.7rem;
  background-color: #f6f6f6;
  padding: 40px;
  border-radius: 6px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .message-faq__text {
    margin-bottom: 35px;
    padding: 28px 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .message-faq__text {
    padding: 20px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */