@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=MuseoModerno:wght@100;200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.6);
    -moz-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
  }
  /*　------- ↓その他参考例　---------
  .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%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.5rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

li {
  list-style: none;
}

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

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

a:not([class]):active {
  color: #1a45b5;
}

a:not([class]):visited {
  color: #1a45b5;
}

/*すべての要素の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: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* 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;
  }
}
/*クリアフィックス*/
.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;
}
@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;
  }
}

.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;
  }
}

.base-anchor {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .base-anchor {
    margin-bottom: 20px;
  }
}
.base-anchor__item {
  border-left: 1px solid #dddddd;
  display: inline-block;
}
.base-anchor__item:last-child {
  border-right: 1px solid #dddddd;
}
.base-anchor__link {
  padding: 10px 70px;
  display: block;
  color: #000;
  font-size: 1.6rem;
}
@media screen and (min-width: 1025px) {
  .base-anchor__link:hover {
    color: #1a45b5;
    font-weight: bold;
  }
}
@media screen and (max-width: 1024px) {
  .base-anchor__link {
    padding: 10px 45px;
  }
}
@media screen and (max-width: 599px) {
  .base-anchor__link {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}
.base-anchor__link.active {
  color: #1a45b5;
  font-weight: bold;
  position: relative;
}
.base-anchor__link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1a45b5;
}

/*---------------------------------------
animation
----------------------------------------*/
@media screen and (min-width: 1025px) {
  .d0_1 {
    animation-delay: 0.1s;
  }
  .d0_2 {
    animation-delay: 0.2s;
  }
  .d0_3 {
    animation-delay: 0.3s;
  }
  .d0_4 {
    animation-delay: 0.4s;
  }
  .d0_5 {
    animation-delay: 0.5s;
  }
  .d0_6 {
    animation-delay: 0.6s;
  }
  .d0_7 {
    animation-delay: 0.7s;
  }
  .d0_8 {
    animation-delay: 0.8s;
  }
  .d0_9 {
    animation-delay: 0.9s;
  }
  .d1_0 {
    animation-delay: 1s;
  }
  .d1_1 {
    animation-delay: 1.1s;
  }
  .d1_2 {
    animation-delay: 1.2s;
  }
  .d1_3 {
    animation-delay: 1.3s;
  }
  .d1_4 {
    animation-delay: 1.4s;
  }
  .d1_5 {
    animation-delay: 1.5s;
  }
  .d1_6 {
    animation-delay: 1.6s;
  }
  .d1_7 {
    animation-delay: 1.7s;
  }
  .d1_8 {
    animation-delay: 1.8s;
  }
  .d1_9 {
    animation-delay: 1.9s;
  }
  .d2_0 {
    animation-delay: 2s;
  }
  .d2_1 {
    animation-delay: 2.1s;
  }
  .d2_2 {
    animation-delay: 2.2s;
  }
  .d2_3 {
    animation-delay: 2.3s;
  }
  .d2_4 {
    animation-delay: 2.4s;
  }
  .d2_5 {
    animation-delay: 2.5s;
  }
  .d2_6 {
    animation-delay: 2.6s;
  }
  .d2_7 {
    animation-delay: 2.7s;
  }
  .d2_8 {
    animation-delay: 2.8s;
  }
  .d2_9 {
    animation-delay: 2.9s;
  }
  .d3_0 {
    animation-delay: 3s;
  }
  .d3_5 {
    animation-delay: 3.5s;
  }
  .d4_0 {
    animation-delay: 4s;
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.breadcrumbs {
  display: flex;
  justify-content: flex-end;
  padding: 22px 22px 0;
}

.file-btn {
  width: 100%;
  padding: 23px 30px 23px 70px;
  border: 1px solid #ccc;
  background-color: #fff;
  line-height: 1.5;
  color: #000;
  display: block;
  background-image: url(../img/common/icon_links.png);
  background-size: 25px auto;
  background-position: 25px 48%;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .file-btn:hover {
    color: #1a45b5;
    background-color: #f8f9fb;
    border: 1px solid #a6bbe5;
  }
}
@media screen and (max-width: 1024px) {
  .file-btn {
    padding: 20px 30px 20px 64px;
    background-position: 23px 48%;
  }
}
@media screen and (max-width: 599px) {
  .file-btn {
    font-size: 1.4rem;
    padding: 15px 30px 15px 45px;
    background-size: 18px auto;
    background-position: 15px 48%;
  }
}
.file-btn::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  transform: rotate(45deg);
}
.file-btn.pdf {
  background-image: url(../img/common/icon_pdf.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  .file-btn.pdf {
    background-size: 18px auto;
  }
}
.file-btn.xlsx {
  background-image: url(../img/common/icon_elsx.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  .file-btn.xlsx {
    background-size: 18px auto;
  }
}
.file-btn.docx {
  background-image: url(../img/common/icon_word.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  .file-btn.docx {
    background-size: 18px auto;
  }
}

.base-btn {
  display: block;
  position: relative;
  border-radius: 100px;
  background-color: #1da7e1;
  margin: 0 auto;
  padding: 14px 25px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .base-btn {
    padding: 13px 20px;
  }
}
.base-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .base-btn:hover {
    background-color: #1a45b5;
    border-color: transparent;
    color: #fff;
  }
  .base-btn:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
.base-btn--blue {
  background-color: #1a45b5;
}
@media screen and (min-width: 1025px) {
  .base-btn--blue:hover {
    background-color: #1da7e1;
  }
}
.base-btn--back::after {
  left: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(225deg);
}
@media screen and (min-width: 1025px) {
  .base-btn--back:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(225deg);
  }
}

footer {
  background-color: #435f88;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 20px;
    padding-bottom: 125px;
  }
}
@media screen and (max-width: 834px) {
  footer {
    padding: 20px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 105px;
  }
}
footer .footer-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
}
@media screen and (max-width: 599px) {
  footer .footer-text {
    text-align: center;
    margin-bottom: 15px;
  }
}
footer .footer-list {
  max-width: 495px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer .footer-list {
    max-width: 370px;
  }
}
footer .footer-list li {
  width: calc((100% - 15px) / 2);
}
@media screen and (max-width: 1024px) {
  footer .footer-list li {
    width: calc((100% - 10px) / 2);
  }
}

/*ヘッダー*/
header {
  height: 100px;
  display: flex;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header {
    padding: 0 20px;
    height: 80px;
  }
}
@media screen and (max-width: 834px) {
  header {
    padding: 0 20px;
    height: 65px;
  }
}
@media screen and (max-width: 599px) {
  header {
    padding: 0 15px;
    height: 55px;
  }
}
header .header-logo {
  margin-left: -6px;
}
@media screen and (max-width: 1024px) {
  header .header-logo {
    width: 340px;
  }
}
@media screen and (max-width: 834px) {
  header .header-logo {
    width: 280px;
  }
}
@media screen and (max-width: 599px) {
  header .header-logo {
    width: 230px;
  }
}
header .header-item {
  display: flex;
  align-items: center;
}
header .header-item__tel {
  padding-right: 30px;
  border-right: 1px solid #b7d0d7;
  margin-top: 3px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  header .header-item__tel {
    padding-right: 20px;
    margin-top: 1px;
  }
}
@media screen and (max-width: 834px) {
  header .header-item__tel {
    padding-right: 15px;
  }
}
@media screen and (max-width: 599px) {
  header .header-item__tel {
    padding-right: 13px;
    border-right: none;
    margin-top: 0;
  }
}
header .header-item__tel__link {
  font-family: "Roboto", "sans-serif" !important;
  font-size: 3rem;
  font-weight: 600;
  color: #092c72;
  line-height: 1;
  padding-left: 49px;
  cursor: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .header-item__tel__link {
    font-size: 2.7rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 834px) {
  header .header-item__tel__link {
    font-size: 2.4rem;
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  header .header-item__tel__link {
    display: block;
    padding-left: 0;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 599px) {
  header .header-item__tel__link span {
    display: none;
  }
}
header .header-item__tel__link::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background-color: #092c72;
  border-radius: 50%;
  background-image: url(../img/common/icon_tel.svg);
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  header .header-item__tel__link::before {
    width: 30px;
    height: 30px;
    background-size: 14px auto;
    top: 1px;
  }
}
@media screen and (max-width: 834px) {
  header .header-item__tel__link::before {
    width: 25px;
    height: 25px;
    background-size: 12px auto;
    top: 2px;
  }
}
@media screen and (max-width: 599px) {
  header .header-item__tel__link::before {
    width: 25px;
    height: 25px;
    background-size: 12px auto;
    top: 0;
  }
}
header .header-item__insta {
  margin-left: 30px;
  width: 35px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  header .header-item__insta:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  header .header-item__insta {
    margin-left: 20px;
    width: 30px;
  }
}
@media screen and (max-width: 834px) {
  header .header-item__insta {
    margin-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  header .header-item__insta {
    width: 25px;
    margin-left: 0;
  }
}

.content {
  padding: 90px 50px 200px;
  display: flex;
  justify-content: center;
}
.content__inner {
  max-width: 1000px;
  width: 100%;
}

.pagetitle {
  background-image: url(../img/message/pagetitle-bg.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
}
.pagetitle__title {
  margin-left: 120px;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__prev, .pagination__next {
  display: block;
  position: relative;
  color: #444;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .pagination__prev, .pagination__next {
    font-size: 2rem;
    font-weight: 500;
  }
}
.pagination__prev:hover, .pagination__next:hover {
  opacity: 0.7;
}
.pagination__prev {
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    margin-right: 10px;
  }
}
.pagination__next {
  margin-left: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    margin-left: 10px;
  }
}
.pagination__num, .pagination__while {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
}
.pagination__num {
  background-color: #e3e3e3;
  color: #444;
  font-size: 1.6rem;
  line-height: 43px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.5rem;
    line-height: 40px;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #1a45b5;
  color: #fff;
}
.pagination__while {
  color: #444;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 43px;
}
@media screen and (max-width: 599px) {
  .pagination__while {
    width: 15px;
    font-size: 1.6rem;
  }
}

#nav-open {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #1a45b5;
  z-index: 100;
  border-radius: 5px;
}
@media screen and (min-width: 1025px) {
  #nav-open {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    top: 13px;
    right: 12px;
    width: 50px;
    height: 50px;
  }
}
#nav-open.active {
  background-color: rgba(255, 255, 255, 0.3);
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
}
#nav-open > span > span::before {
  top: -7px;
}
#nav-open > span > span::after {
  bottom: -7px;
}
#nav-open.active > span > span {
  background-color: transparent;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
}
#nav-open.active > span > span::before {
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  transform: rotate(-225deg);
}

#nav-content {
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  background-color: rgba(26, 69, 181, 0.95);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  #nav-content {
    display: none;
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}

/*--------------------------------------------------------
_tab
----------------------------------------------------------*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .tab-wrap {
    padding: 0;
  }
}

.tab-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 24.975%;
  padding: 15px;
  border-top: 3px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid transparent;
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  order: -1;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .tab-label {
    padding: 10px 5px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .tab-label {
    border-top: 2px solid transparent;
    padding: 5px 3px;
    font-size: 1.2rem;
  }
}

.tab-content {
  width: 100%;
  display: none;
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .tab-content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .tab-content {
    margin-top: 15px;
  }
}

.tab-switch:checked + .tab-label {
  border-bottom-color: transparent;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.tab-switch:checked + .tab-label.all {
  border-top-color: #1a45b5;
}
.tab-switch:checked + .tab-label.info {
  border-top-color: #ffad41;
}
.tab-switch:checked + .tab-label.yobou {
  border-top-color: #67ce7b;
}
.tab-switch:checked + .tab-label.check {
  border-top-color: #ff9c9c;
}

.tab-switch:checked + .tab-label + .tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

.base-table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.base-table thead th {
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #1a45b5;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .base-table thead th {
    padding: 10px;
    font-size: 14px;
  }
}
.base-table th {
  padding: 18px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #e5e9f3;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .base-table th {
    padding: 10px;
    font-size: 14px;
  }
}
.base-table td {
  padding: 18px;
  font-size: 15px;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .base-table td {
    padding: 10px;
    font-size: 14px;
  }
}

.ttl01 {
  margin-bottom: 30px;
  padding: 20px 0 20px 0;
  font-size: 25px;
  line-height: 1.2em;
  color: #444;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  position: relative;
  border-bottom: 5px solid #e2e2e2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .ttl01 {
    margin-bottom: 25px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .ttl01 {
    margin-bottom: 20px;
    padding: 10px 0 10px 0;
    border-bottom-width: 3px;
    font-size: 18px;
  }
}
.ttl01::before {
  content: "";
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 5px;
  background-color: #1a45b5;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .ttl01::before {
    bottom: -3px;
    width: 50px;
    height: 3px;
  }
}

.ttl02 {
  margin-bottom: 20px;
  padding: 20px 20px 20px 35px;
  font-size: 19px;
  line-height: 1.2em;
  color: #1a45b5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  background-color: #e5e9f3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ttl02 {
    margin-bottom: 20px;
    padding: 18px 20px 19px 35px;
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  .ttl02 {
    margin-bottom: 15px;
    padding: 12px 20px 13px;
    font-size: 14px;
  }
}
.ttl02::before {
  content: "";
  top: 0;
  left: 15px;
  width: 4px;
  height: 80%;
  background-color: #1a45b5;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .ttl02::before {
    left: 10px;
    width: 3px;
  }
}

#wysiwyg {
  /*デフォルトの処理*/
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*区切り線*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  #wysiwyg {
    font-size: 14px;
    line-height: 1.8;
  }
}
#wysiwyg a {
  color: #1a45b5;
  text-decoration: underline;
}
#wysiwyg a:hover {
  color: #1a45b5;
  text-decoration: none;
}
#wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
#wysiwyg .box {
  margin-bottom: 40px;
}
#wysiwyg .box:before, #wysiwyg .box:after {
  content: "";
  display: table;
}
#wysiwyg .box:after {
  clear: both;
}
@media screen and (max-width: 599px) {
  #wysiwyg .box {
    margin-bottom: 20px;
  }
}
#wysiwyg .title-line {
  margin-bottom: -5px;
  padding: 20px 0 20px 0;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 400;
  position: relative;
  border-bottom: 4px solid #e2e2e2;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-line {
    margin-bottom: -15px;
    font-size: 20px;
    padding: 20px 0 15px 0;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line {
    margin-bottom: -5px;
    padding: 10px 0 12px 0;
    border-bottom-width: 2px;
    font-size: 18px;
  }
}
#wysiwyg .title-line::before {
  content: "";
  bottom: -4px;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #1a45b5;
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line::before {
    bottom: -2px;
    width: 50px;
    height: 2px;
  }
}
#wysiwyg .title-obi {
  margin-bottom: -10px;
  padding: 20px 20px 20px 57px;
  font-size: 19px;
  line-height: 1.2em;
  font-weight: 400;
  background-color: #e7f1f2;
  background-image: url(../img/common/icon_flower.png);
  background-size: 33.5px auto;
  background-repeat: no-repeat;
  background-position: 15px 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi {
    padding: 18px 20px 19px 45px;
    font-size: 17px;
    margin-bottom: -20px;
    background-size: 25px auto;
    background-position: 13px 16px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi {
    margin-bottom: -10px;
    padding: 13px 20px 14px 39px;
    font-size: 16px;
    background-size: 22px auto;
    background-position: 11px 11px;
  }
}
#wysiwyg .title-obi02 {
  border-top: 1px dotted #adaeaf;
  border-bottom: 1px dotted #adaeaf;
  padding: 15px 15px 15px 25px;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi02 {
    margin-bottom: -15px;
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi02 {
    margin-bottom: -5px;
    padding: 14px 0 14px 20px;
    font-size: 15px;
  }
}
#wysiwyg .title-obi02::before {
  content: "";
  top: 18px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid #1a45b5;
  border-radius: 50%;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi02::before {
    top: 17px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi02::before {
    width: 13px;
    top: 15px;
    height: 13px;
    border-width: 3px;
  }
}
#wysiwyg .title-icon {
  margin-bottom: -35px;
  padding-left: 1.2em;
  font-size: 17px;
  line-height: 1.2em;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-icon {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon {
    margin-bottom: -5px;
    font-size: 15px;
    padding-left: 1.1em;
  }
}
#wysiwyg .title-icon::before {
  content: "";
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: #1a45b5;
  border-radius: 100px;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-icon::before {
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::before {
    top: 4px;
    left: 0;
    width: 8px;
    height: 8px;
  }
}
#wysiwyg .copy01 {
  margin-bottom: -15px;
  font-size: 20px;
  line-height: 1.5;
  color: #1a45b5;
  font-weight: bold;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .copy01 {
    margin-bottom: -25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy01 {
    margin-bottom: -5px;
    font-size: 15px;
  }
}
#wysiwyg .copy02 {
  margin-bottom: -15px;
  font-size: 22px;
  line-height: 1.5;
  color: #1a45b5;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .copy02 {
    margin-bottom: -25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy02 {
    margin-bottom: -5px;
    font-size: 16px;
  }
}
#wysiwyg .text {
  font-size: 15px;
  line-height: 2em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  #wysiwyg .text {
    font-size: 14px;
    line-height: 1.8em;
  }
}
#wysiwyg .text--mincho {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 300;
}
#wysiwyg .img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 33%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
#wysiwyg .img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 33%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
#wysiwyg .btn-wrapper {
  text-align: center;
}
#wysiwyg .btn-wrapper a {
  display: inline-block;
  position: relative;
  border-radius: 100px;
  background-color: #1da7e1;
  margin: 0 auto;
  padding: 14px 40px 14px 40px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper a {
    padding: 13px 30px;
  }
}
#wysiwyg .btn-wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper a::after {
    right: 15px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper a:hover {
    background-color: #1a45b5;
    border-color: transparent;
    color: #fff;
  }
  #wysiwyg .btn-wrapper a:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
#wysiwyg .btn-wrapper--back a::after {
  left: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(225deg);
}
@media screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper--back a:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(225deg);
  }
}
#wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#wysiwyg .photo-3::after {
  content: none;
}
#wysiwyg .photo-3 li {
  margin-left: 20px;
  width: calc((99.9% - 40px) / 3);
  text-align: center;
}
#wysiwyg .photo-3 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-3 li {
    display: block;
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }
  #wysiwyg .photo-3 li:first-child {
    margin-top: 0;
  }
}
#wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#wysiwyg .photo-2::after {
  content: none;
}
#wysiwyg .photo-2 li {
  margin-left: 20px;
  width: calc((99.9% - 20px) / 2);
  text-align: center;
}
#wysiwyg .photo-2 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-2 li {
    margin-left: 10px;
    width: calc((100% - 10px) / 2);
  }
}
#wysiwyg .photo-1 {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
#wysiwyg .caption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .caption {
    margin-top: 5px;
    font-size: 12px;
  }
}
#wysiwyg .list-wrapper {
  padding: 25px;
  background-color: #fff;
  border: 1px solid #ddd;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper li {
  width: 100%;
  margin-top: 10px;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
#wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper li::before {
  content: "";
  top: 7px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #1a45b5;
  position: absolute;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li {
    margin-top: 7px;
    font-size: 14px;
  }
  #wysiwyg .list-wrapper li::before {
    content: "";
    top: 6px;
    left: 0px;
    width: 6px;
    height: 6px;
  }
}
#wysiwyg .list-wrapper02 {
  counter-reset: num;
  padding: 25px;
  background-color: #e7f1f2;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper02 li {
  width: 100%;
  position: absolute;
  margin-top: 10px;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 li {
    margin-top: 7px;
    padding-left: 25px;
    font-size: 14px;
  }
}
#wysiwyg .list-wrapper02 li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper02 li::before {
  content: counter(num);
  counter-increment: num;
  top: -2px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #1a45b5;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 li::before {
    top: 0;
    left: 0px;
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
    line-height: 18px;
  }
}
#wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
#wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #1a45b5;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table thead th {
    padding: 10px;
    font-size: 13px;
  }
}
#wysiwyg .table th {
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #e7f1f2;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table th {
    padding: 10px;
    font-size: 13px;
  }
}
#wysiwyg .table td {
  padding: 15px;
  font-size: 15px;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table td {
    padding: 10px;
    font-size: 13px;
  }
}
#wysiwyg .youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
#wysiwyg .youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
#wysiwyg .youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#wysiwyg .line {
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .line {
    margin-bottom: -10px;
  }
}
#wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
#wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
#wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
#wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
#wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #000;
}
#wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #000;
}
#wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
#wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
#wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}
#wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
#wysiwyg blockquote {
  padding-left: 1em;
}
#wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
#wysiwyg hr {
  display: block;
}
#wysiwyg em {
  font-style: italic !important;
}
#wysiwyg strong {
  font-weight: bold !important;
}
#wysiwyg em strong, #wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

.text-base {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  color: #000;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  line-height: 1.9;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .text-base {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 834px) {
  .text-base {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 599px) {
  .text-base {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.text-base .tel {
  color: #000;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.main {
  padding: 0 30px 30px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .main {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .main {
    padding: 0 10px 10px;
  }
}
.main__inner {
  width: 100%;
  height: calc(100vh - 130px);
  background-image: url(../img/top/main_bg.webp);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .main__inner {
    height: 48vw;
    background-position: top right -80px;
  }
}
@media screen and (max-width: 1024px) {
  .main__inner {
    height: 480px;
    background-position: top right -100px;
  }
}
@media screen and (max-width: 834px) {
  .main__inner {
    height: 380px;
    background-position: top right -150px;
  }
}
@media screen and (max-width: 599px) {
  .main__inner {
    height: 120vw;
    background-image: url(../img/top/main_bg_sp.webp);
    background-position: bottom;
  }
}
.main__inner__main-copy {
  position: absolute;
  width: 57vw;
  left: 0;
  top: calc(50% - 11.5vw);
}
@media screen and (max-width: 1024px) {
  .main__inner__main-copy {
    width: 62vw;
    top: calc(50% - 12vw);
  }
}
@media screen and (max-width: 834px) {
  .main__inner__main-copy {
    width: 65vw;
    top: calc(50% - 12vw);
  }
}
@media screen and (max-width: 599px) {
  .main__inner__main-copy {
    width: 100%;
    top: 25px;
  }
}
.main__inner__time {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 30px 0 0 0;
  width: 600px;
  display: flex;
}
@media screen and (max-width: 1500px) {
  .main__inner__time {
    width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .main__inner__time {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 22px 20px 30px;
    position: relative;
    flex-wrap: wrap;
    top: 480px;
    box-shadow: 0 4px 6px -2px #e8f0f6;
  }
}
@media screen and (max-width: 834px) {
  .main__inner__time {
    width: calc(100% + 40px);
    margin-left: -20px;
    top: 380px;
  }
}
@media screen and (max-width: 599px) {
  .main__inner__time {
    width: calc(100% + 20px);
    margin-left: -10px;
    top: 120vw;
    padding: 17px 20px 20px;
    background-color: #fff;
  }
}
.main__inner__time__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  width: 85px;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  background-image: url(../img/top/icon_time.svg);
  background-position: top 20px center;
  background-size: 24px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1500px) {
  .main__inner__time__title {
    width: 70px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .main__inner__time__title {
    font-size: 1.8rem;
    background-size: 20px auto;
    background-position: center left;
    width: 100%;
    writing-mode: horizontal-tb;
    padding-top: 0;
    padding-left: 27px;
    text-align: left;
    justify-content: start;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .main__inner__time__title {
    padding-left: 27px;
    background-position: top 4px left;
    margin-bottom: 10px;
    font-size: 1.7rem;
  }
}
.main__inner__time__table {
  width: calc(100% - 85px);
}
@media screen and (max-width: 1500px) {
  .main__inner__time__table {
    width: calc(100% - 70px);
  }
}
@media screen and (max-width: 1024px) {
  .main__inner__time__table {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .main__inner__time__table {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .main__inner__time__table {
    width: 100%;
  }
}
.main__inner__time__table__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-size: 1.5rem;
  color: #6d8992;
  line-height: 1;
  font-weight: 400;
  margin-top: 18px;
}
@media screen and (max-width: 1024px) {
  .main__inner__time__table__text {
    font-size: 1.4rem;
    margin-top: 14px;
  }
}
@media screen and (max-width: 834px) {
  .main__inner__time__table__text {
    margin-top: 11px;
  }
}

.time-table {
  width: 100%;
  border-collapse: collapse;
}
.time-table thead th {
  padding: 12px 4px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #d8eef9;
  letter-spacing: 0.05em;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 1500px) {
  .time-table thead th {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .time-table thead th {
    padding: 8px 4px 9px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .time-table thead th {
    padding: 6px 1px 7px;
  }
}
@media screen and (max-width: 599px) {
  .time-table thead th {
    font-size: 1.3rem;
  }
}
.time-table tbody th {
  padding: 16px 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #000;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #d2dee2;
}
@media screen and (max-width: 1500px) {
  .time-table tbody th {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .time-table tbody th {
    padding: 11px 4px;
  }
}
@media screen and (max-width: 599px) {
  .time-table tbody th {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}
.time-table tbody td {
  padding: 16px 5px;
  font-size: 1.6rem;
  line-height: 1;
  color: #1da7e1;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #d2dee2;
}
@media screen and (max-width: 1500px) {
  .time-table tbody td {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .time-table tbody td {
    padding: 11px 4px;
  }
}
@media screen and (max-width: 599px) {
  .time-table tbody td {
    font-size: 1.3rem;
  }
}
.time-table tbody td.batu {
  color: #97abb3;
}

.top-about {
  padding: 100px 0 100px;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #dbf0fc 100%);
}
@media screen and (max-width: 1200px) {
  .top-about {
    padding: 90px 0 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 290px 0 65px;
  }
}
@media screen and (max-width: 834px) {
  .top-about {
    padding: 250px 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 265px 0 40px;
  }
}
@media screen and (max-width: 320px) {
  .top-about {
    padding: 270px 0 40px;
  }
}
.top-about::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top/about_bg.png);
  background-position: top 100px center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-about::before {
    background-position: top 70px center;
  }
}
@media screen and (max-width: 599px) {
  .top-about::before {
    background-position: top 60px center;
  }
}
.top-about__inner {
  padding: 0 50px;
  position: relative;
  z-index: 10;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner {
    padding: 0 30px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner {
    padding: 0 20px;
    margin-bottom: 35px;
  }
}
.top-about__inner .top-about-title {
  font-family: "Fira Sans", sans-serif !important;
  font-size: 9rem;
  text-align: center;
  font-weight: 600;
  color: #1a45b5;
  line-height: 1;
  padding-bottom: 40px;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-about__inner .top-about-title {
    font-size: 7rem;
    margin-bottom: 27px;
    padding-bottom: 33px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner .top-about-title {
    font-size: 6rem;
    margin-bottom: 22px;
    padding-bottom: 28px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner .top-about-title {
    font-size: 4rem;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}
.top-about__inner .top-about-title__ja {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  font-size: 2.8rem;
  color: #000;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner .top-about-title__ja {
    font-size: 2.4rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner .top-about-title__ja {
    font-size: 2.1rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner .top-about-title__ja {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-top: 5px;
  }
}
.top-about__inner .top-about-title::before, .top-about__inner .top-about-title::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .top-about__inner .top-about-title::before, .top-about__inner .top-about-title::after {
    width: 20px;
    height: 3px;
  }
}
.top-about__inner .top-about-title::before {
  background-color: #1a45b5;
  left: calc(50% - 30px);
}
@media screen and (max-width: 599px) {
  .top-about__inner .top-about-title::before {
    left: calc(50% - 20px);
  }
}
.top-about__inner .top-about-title::after {
  background-color: #e8ebf5;
  left: 50%;
}
@media screen and (max-width: 599px) {
  .top-about__inner .top-about-title::after {
    left: 50%;
  }
}
.top-about__inner__text {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.top-about__inner02 {
  padding: 0 50px;
  margin-bottom: 140px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02 {
    padding: 0 30px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner02 {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02 {
    padding: 0 20px;
    margin-bottom: 65px;
  }
}
.top-about__inner02::before {
  position: absolute;
  content: "";
  width: 77%;
  height: calc(100% - 50px);
  background: linear-gradient(to right, #dbeefb 40%, #d9f1fb 60%);
  right: 0;
  top: 110px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02::before {
    top: 90px;
    height: calc(100% - 50px);
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner02::before {
    top: 75px;
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02::before {
    top: 75px;
    height: calc(100% - 45px);
  }
}
.top-about__inner02__point {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.top-about__inner02__point__item {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item {
    flex-direction: column;
  }
}
.top-about__inner02__point__item.img-right {
  flex-direction: row-reverse;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02__point__item.img-right {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item.img-right {
    flex-direction: column;
    margin-top: 25px;
  }
}
.top-about__inner02__point__item__img {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item__img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.top-about__inner02__point__item__text-wrapper {
  width: calc(50% - 65px);
  margin-left: 65px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02__point__item__text-wrapper {
    width: calc(50% - 40px);
    margin-left: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner02__point__item__text-wrapper {
    width: calc(50% - 35px);
    margin-left: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item__text-wrapper {
    width: 100%;
    margin-left: 0;
  }
}
.top-about__inner02__point__item__text-wrapper.img-right {
  margin-right: 65px;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02__point__item__text-wrapper.img-right {
    margin-right: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner02__point__item__text-wrapper.img-right {
    margin-right: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item__text-wrapper.img-right {
    margin-right: 0;
  }
}
.top-about__inner02__point__item__text-wrapper .point-text {
  width: 187px;
  margin-bottom: 23px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02__point__item__text-wrapper .point-text {
    width: 150px;
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner02__point__item__text-wrapper .point-text {
    width: 120px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item__text-wrapper .point-text {
    width: 100px;
    margin-bottom: 10px;
  }
}
.top-about__inner02__point__item__text-wrapper .obi-title .text {
  display: inline-block; /* or block */
  background: linear-gradient(to right, #1a45b5 40%, #1385cc 60%);
  padding: 7px 15px 8px;
  font-style: normal;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02__point__item__text-wrapper .obi-title .text {
    font-size: 2.2rem;
    padding: 5px 12px 6px;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner02__point__item__text-wrapper .obi-title .text {
    font-size: 1.9rem;
    padding: 5px 12px 6px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item__text-wrapper .obi-title .text {
    font-size: 1.7rem;
    padding: 5px 12px 6px;
    margin-bottom: 15px;
  }
}
.top-about__inner02__point__item__text-wrapper .obi-title .text .ml {
  margin-left: -0.3em;
}
.top-about__inner02__point__item__text-wrapper .text-base {
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .top-about__inner02__point__item__text-wrapper .text-base {
    line-height: 1.7;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner02__point__item__text-wrapper .text-base {
    line-height: 1.6;
  }
}
.top-about__inner03 {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03 {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03 {
    padding: 0 20px;
  }
}
.top-about__inner03__list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-about__inner03__list__item {
  width: calc(50% - 20px);
  border-radius: 5px;
  background-color: #fff;
  /*--------------------------------------*/
  /*-------------------症状リスト-------------*/
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .top-about__inner03__list__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item {
    margin-bottom: 30px;
  }
}
.top-about__inner03__list__item .top-info-title {
  background-color: #1a45b5;
  height: 90px;
  padding: 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item .top-info-title {
    height: 80px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item .top-info-title {
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item .top-info-title {
    height: 60px;
    padding: 6px;
  }
}
.top-about__inner03__list__item .top-info-title .icon {
  width: 70px;
  height: 70px;
  background-color: #4570d7;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item .top-info-title .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item .top-info-title .icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item .top-info-title .icon {
    width: 48px;
    height: 48px;
  }
}
.top-about__inner03__list__item .top-info-title .icon img {
  width: 33px;
  height: auto;
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item .top-info-title .icon img {
    width: 27px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item .top-info-title .icon img {
    width: 26px;
  }
}
.top-about__inner03__list__item .top-info-title__ja {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  font-weight: 600;
  padding-left: 25px;
  padding-right: 20px;
  border-right: 1px solid #4570d7;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item .top-info-title__ja {
    font-size: 2.7rem;
    padding-left: 20px;
    padding-right: 17px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item .top-info-title__ja {
    font-size: 2.4rem;
    padding-left: 17px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item .top-info-title__ja {
    font-size: 2rem;
    padding-left: 15px;
    padding-right: 12px;
  }
}
.top-about__inner03__list__item .top-info-title__en {
  font-family: "Fira Sans", sans-serif !important;
  font-size: 1.8rem;
  color: #7c9ce8;
  line-height: 1;
  font-weight: 400;
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item .top-info-title__en {
    font-size: 1.7rem;
    padding-left: 17px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item .top-info-title__en {
    font-size: 1.5rem;
    padding-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item .top-info-title__en {
    font-size: 1.3rem;
    padding-left: 12px;
  }
}
.top-about__inner03__list__item__inner {
  background-color: #fff;
  padding: 37px 40px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner {
    padding: 27px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__inner {
    padding: 17px 20px;
  }
}
.top-about__inner03__list__item__inner .info-sub-title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 1.1;
  font-weight: 600;
  padding: 11px 20px 12px 38px;
  background-color: #eef6fb;
  position: relative;
  margin-bottom: 15px;
}
.top-about__inner03__list__item__inner .info-sub-title::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 15px;
  left: 12px;
  border: 5px solid #1a45b5;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner .info-sub-title {
    font-size: 2rem;
    padding: 10px 15px 11px 34px;
    margin-bottom: 13px;
  }
  .top-about__inner03__list__item__inner .info-sub-title::before {
    top: 13px;
    left: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__inner .info-sub-title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__inner .info-sub-title {
    font-size: 1.7rem;
    padding: 8px 10px 9px 28px;
    margin-bottom: 11px;
  }
  .top-about__inner03__list__item__inner .info-sub-title::before {
    width: 13px;
    height: 13px;
    border: 4px solid #1a45b5;
    top: 11px;
    left: 8px;
  }
}
.top-about__inner03__list__item__inner .text-base {
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner .text-base {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__inner .text-base {
    font-size: 1.6rem;
  }
}
.top-about__inner03__list__item__inner dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner dl {
    margin-top: 11px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__inner dl {
    margin-top: 9px;
    margin-bottom: 14px;
  }
}
.top-about__inner03__list__item__inner dl dt {
  width: 54px;
  height: 22px;
  background-color: #1a45b5;
  border-radius: 11px;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner dl dt {
    font-size: 1.4rem;
    width: 48px;
    margin-right: 7px;
  }
}
.top-about__inner03__list__item__inner dl dd {
  width: calc(100% - 66px);
  margin-top: -2px;
  margin-bottom: 5px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 600;
  color: #1a45b5;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner dl dd {
    font-size: 2rem;
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__inner dl dd {
    font-size: 1.8rem;
    width: calc(100% - 55px);
    margin-top: 1px;
  }
}
.top-about__inner03__list__item__inner dl dd span {
  margin-left: -0.3em;
  font-size: 1.7rem;
  margin-top: 2px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__inner dl dd span {
    font-size: 1.6rem;
    margin-top: 4px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__inner dl dd span {
    font-size: 1.4rem;
    margin-top: 0px;
    display: block;
    width: 100%;
    margin-left: -6px;
    margin-top: 2px;
  }
}
.top-about__inner03__list__item.symptoms {
  padding: 10px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item.symptoms {
    padding: 6px;
  }
}
.top-about__inner03__list__item.symptoms::before {
  position: absolute;
  content: "";
  width: 136px;
  height: 189px;
  background-image: url(../img/top/symptoms_ill.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 25px;
  bottom: 15px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item.symptoms::before {
    background-size: 70%;
    background-position: bottom right;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item.symptoms::before {
    display: none;
  }
}
.top-about__inner03__list__item__symptoms-title {
  background-color: #1da7e1;
  height: 80px;
  border-radius: 4px;
  position: relative;
  /*----------------------丸-------------*/
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__symptoms-title {
    height: 70px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__symptoms-title {
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-title {
    height: auto;
  }
}
.top-about__inner03__list__item__symptoms-title::before {
  position: absolute;
  content: "";
  width: 42px;
  height: 18px;
  background-color: #1da7e1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%); /* 上向き三角 */
  transform: rotate(180deg); /* 180度回転させて下向きに */
  left: calc(50% - 21px);
  bottom: -13px;
}
.top-about__inner03__list__item__symptoms-title .text {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 78px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__symptoms-title .text {
    font-size: 2.3rem;
    text-align: left;
    padding: 0 20px;
    line-height: 68px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__symptoms-title .text {
    font-size: 2.2rem;
    text-align: left;
    padding: 0 20px;
    line-height: 58px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-title .text {
    font-size: 1.9rem;
    text-align: left;
    padding: 13px 70px 15px 15px;
    line-height: 1.4;
  }
}
.top-about__inner03__list__item__symptoms-title span {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f4bd00;
  top: -25px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*-------------*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__symptoms-title span {
    width: 84px;
    height: 84px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__symptoms-title span {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-title span {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
    right: 8px;
    top: -20px;
  }
}
.top-about__inner03__list__item__symptoms-list {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__symptoms-list {
    padding: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__symptoms-list {
    padding: 14px 20px 14px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-list {
    padding: 10px 10px 7px;
  }
}
.top-about__inner03__list__item__symptoms-list__item {
  width: 100%;
  padding: 20px 0 20px 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-size: 2.1rem;
  line-height: 1.3;
  font-weight: 600;
  color: #000;
  position: relative;
  border-bottom: 1px dotted #c3d3dd;
}
.top-about__inner03__list__item__symptoms-list__item::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/top/check.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 24px;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__symptoms-list__item {
    font-size: 1.9rem;
    padding: 17px 0 17px 23px;
  }
  .top-about__inner03__list__item__symptoms-list__item::before {
    width: 16px;
    height: 16px;
    left: 0;
    top: 19px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__symptoms-list__item {
    font-size: 1.8rem;
    padding: 15px 0 15px 23px;
  }
  .top-about__inner03__list__item__symptoms-list__item::before {
    width: 16px;
    height: 16px;
    left: 0;
    top: 17px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-list__item {
    font-size: 1.6rem;
    padding: 12px 0 12px 21px;
  }
  .top-about__inner03__list__item__symptoms-list__item::before {
    width: 14px;
    height: 14px;
    left: 0;
    top: 14px;
  }
}
.top-about__inner03__list__item__symptoms-list__item.w20 {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-list__item.w20 {
    width: 100%;
  }
}
.top-about__inner03__list__item__symptoms-list__item.w80 {
  width: 80%;
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-list__item.w80 {
    width: 100%;
  }
}
.top-about__inner03__list__item__symptoms-list__item:last-child {
  padding: 20px 0 20px 28px;
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .top-about__inner03__list__item__symptoms-list__item:last-child {
    padding: 17px 0 17px 23px;
  }
}
@media screen and (max-width: 834px) {
  .top-about__inner03__list__item__symptoms-list__item:last-child {
    padding: 15px 0 15px 23px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner03__list__item__symptoms-list__item:last-child {
    padding: 12px 0 12px 21px;
  }
}

.top-feature {
  padding: 30px 30px 0;
  background: linear-gradient(to top, transparent 0%, #fff 50%, #dbf0fc 100%);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-feature {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-feature {
    padding: 10px 10px 0;
  }
}
.top-feature__wrapper {
  padding: 90px;
  background-image: url(../img/top/feature_bg.png);
  background-position: top;
  background-size: 100% auto;
  background-repeat: repeat;
}
@media screen and (max-width: 1500px) {
  .top-feature__wrapper {
    padding: 80px 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature__wrapper {
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__wrapper {
    padding: 20px;
  }
}
.top-feature__wrapper__inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .top-feature__wrapper__inner {
    justify-content: center;
  }
}
.top-feature__wrapper__inner__text-wpapper {
  width: 50%;
  padding-left: 80px;
}
@media screen and (max-width: 1600px) {
  .top-feature__wrapper__inner__text-wpapper {
    padding-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .top-feature__wrapper__inner__text-wpapper {
    width: 100%;
    padding-left: 0;
  }
}
.top-feature__wrapper__inner__text-wpapper .top-feature-title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 4rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.35;
  font-weight: 600;
  padding-bottom: 25px;
  border-bottom: 2px solid #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1300px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title {
    font-size: 3rem;
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title {
    font-size: 2.7rem;
    padding-bottom: 19px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title {
    font-size: 2.2rem;
    line-height: 1.3;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
}
.top-feature__wrapper__inner__text-wpapper .top-feature-title span {
  font-family: "Fira Sans", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  color: #c1ccf3;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title span {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__wrapper__inner__text-wpapper .top-feature-title span {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.top-feature__wrapper__inner__text-wpapper .text-base {
  color: #fff;
}
.top-feature__wrapper__inner__img {
  width: 42%;
  margin-left: 8%;
}
@media screen and (max-width: 1200px) {
  .top-feature__wrapper__inner__img {
    width: 60%;
    margin-left: 0;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature__wrapper__inner__img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__wrapper__inner__img {
    width: 70%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__wrapper__inner__img {
    width: 100%;
    margin-top: 20px;
  }
}

.top-message {
  padding: 220px 30px 100px;
  background: linear-gradient(to bottom, #fff 0%, #eef9fe 15%, #dbf0fc 100%);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-message {
    padding: 160px 20px 65px;
  }
}
@media screen and (max-width: 834px) {
  .top-message {
    padding: 135px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-message {
    padding: 95px 10px 30px;
    background: linear-gradient(to bottom, #fff 0%, #eef9fe 7%, #dbf0fc 100%);
  }
}
.top-message::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top/message_bg.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  top: -14vw;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-message::before {
    background-position: top 70px center;
    top: -150px;
  }
}
@media screen and (max-width: 599px) {
  .top-message::before {
    background-position: top 60px center;
    top: -90px;
  }
}
.top-message__wpapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 70px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper {
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper {
    padding: 35px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper {
    padding: 20px;
    box-shadow: #1385cc;
  }
}
.top-message__wpapper .top-message-title {
  position: absolute;
  width: 100%;
  top: -120px;
  left: 0;
  font-family: "Fira Sans", sans-serif !important;
  font-size: 9rem;
  text-align: center;
  font-weight: 600;
  color: #1a45b5;
  line-height: 1;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper .top-message-title {
    font-size: 7rem;
    margin-bottom: 27px;
    top: -95px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper .top-message-title {
    font-size: 6rem;
    margin-bottom: 22px;
    top: -80px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper .top-message-title {
    font-size: 4rem;
    margin-bottom: 18px;
    top: -60px;
  }
}
.top-message__wpapper .top-message-title__ja {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  font-size: 2.8rem;
  color: #000;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper .top-message-title__ja {
    font-size: 2.4rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper .top-message-title__ja {
    font-size: 2.1rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper .top-message-title__ja {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-top: 5px;
  }
}
.top-message__wpapper__inner01 {
  display: flex;
  margin-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner01 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 25px;
  }
}
.top-message__wpapper__inner01__text-wrapper {
  width: calc(100% - 420px);
  margin-right: 60px;
  margin-top: -8px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01__text-wrapper {
    width: calc(100% - 345px);
    margin-right: 45px;
    margin-top: -4px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner01__text-wrapper {
    width: calc(100% - 290px);
    margin-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner01__text-wrapper {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}
.top-message__wpapper__inner01__img-wrapper {
  width: 360px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01__img-wrapper {
    width: 300px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner01__img-wrapper {
    width: 260px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner01__img-wrapper {
    width: 240px;
    margin-top: 15px;
  }
}
.top-message__wpapper__inner01__img-wrapper__text {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01__img-wrapper__text {
    margin-top: 15px;
  }
}
.top-message__wpapper__inner01__img-wrapper__text .doctor {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  color: #1a45b5;
  padding: 4px 15px;
  border: 1px solid #1a45b5;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01__img-wrapper__text .doctor {
    font-size: 1.6rem;
    padding: 4px 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner01__img-wrapper__text .doctor {
    font-size: 1.5rem;
    padding: 4px 7px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner01__img-wrapper__text .doctor {
    font-size: 1.4rem;
    padding: 3px 7px;
  }
}
.top-message__wpapper__inner01__img-wrapper__text .name {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: #000;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-left: 14px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01__img-wrapper__text .name {
    font-size: 2.2rem;
    margin-left: 11px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner01__img-wrapper__text .name {
    font-size: 2rem;
    margin-left: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner01__img-wrapper__text .name {
    font-size: 1.8rem;
    margin-left: 8px;
  }
}
.top-message__wpapper__inner01__img-wrapper__text .name-en {
  font-family: "Fira Sans", sans-serif !important;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  color: #8eaad3;
  display: inline-block;
  margin-left: 12px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner01__img-wrapper__text .name-en {
    font-size: 1.6rem;
    margin-left: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner01__img-wrapper__text .name-en {
    font-size: 1.5rem;
    margin-left: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner01__img-wrapper__text .name-en {
    font-size: 1.4rem;
    margin-left: 8px;
  }
}
.top-message__wpapper__inner02 {
  background-color: #f6f8f9;
  padding: 40px 40px 40px 0;
  display: flex;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02 {
    padding: 30px 30px 30px 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner02 {
    padding: 25px 25px 25px 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02 {
    padding: 0 20px 20px 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.top-message__wpapper__inner02 .top-profile-title {
  width: 190px;
  margin-right: 35px;
  background: linear-gradient(to right, #1a45b5 0%, #1385cc 100%);
  font-family: "Fira Sans", sans-serif !important;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02 .top-profile-title {
    width: 160px;
    font-size: 2.5rem;
    margin-right: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner02 .top-profile-title {
    width: 130px;
    font-size: 2.2rem;
    margin-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02 .top-profile-title {
    width: 100%;
    font-size: 1.8rem;
    margin-right: 0;
    padding: 7px 10px;
    margin-bottom: 10px;
  }
}
.top-message__wpapper__inner02__text-wrapper {
  width: calc(100% - 225px);
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper {
    width: calc(100% - 190px);
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner02__text-wrapper {
    width: calc(100% - 155px);
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper {
    width: 100%;
  }
}
.top-message__wpapper__inner02__text-wrapper__content__list {
  padding: 19px 0;
  border-bottom: 1px solid #d2dce3;
}
.top-message__wpapper__inner02__text-wrapper__content__list:first-child {
  padding: 3px 0 19px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper__content__list:first-child {
    padding: 1px 0 17px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list:first-child {
    padding: 1px 0 13px;
  }
}
.top-message__wpapper__inner02__text-wrapper__content__list:last-child {
  padding: 19px 0 3px;
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper__content__list:last-child {
    padding: 17px 0 1px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list:last-child {
    padding: 13px 0 1px;
  }
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper__content__list {
    padding: 17px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list {
    padding: 13px 0;
  }
}
.top-message__wpapper__inner02__text-wrapper__content__list dl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl {
    flex-wrap: wrap;
  }
}
.top-message__wpapper__inner02__text-wrapper__content__list dl dt {
  width: 110px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #1a45b5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dt {
    font-size: 1.6rem;
    width: 95px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dt {
    font-size: 1.5rem;
    width: 95px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dt {
    width: 100%;
    margin-bottom: 6px;
  }
}
.top-message__wpapper__inner02__text-wrapper__content__list dl dd {
  width: calc(100% - 110px);
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd {
    width: calc(100% - 95px);
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd {
    width: 100%;
  }
}
.top-message__wpapper__inner02__text-wrapper__content__list dl dd ul {
  display: flex;
  flex-wrap: wrap;
}
.top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #000;
  letter-spacing: 0.05em;
  margin-right: 40px;
  margin-bottom: 10px;
}
.top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #a3c9e1;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li::before {
    top: 4px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li::before {
    width: 10px;
    height: 10px;
    top: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li {
    margin-right: 30px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li {
    font-size: 1.4rem;
    margin-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner02__text-wrapper__content__list dl dd ul li {
    margin-right: 0;
    width: 100%;
    margin-bottom: 3px;
    padding-left: 17px;
  }
}
.top-message__wpapper__inner03 {
  position: relative;
  display: flex;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03 {
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03 {
    flex-wrap: wrap;
    padding-top: 25px;
  }
}
.top-message__wpapper__inner03::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom, #0ea7d6 0%, #ccecf5 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  top: 0;
  left: -70px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03::before {
    left: -50px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03::before {
    left: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03::before {
    width: calc(100% + 40px);
    height: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
    left: -20px;
  }
}
.top-message__wpapper__inner03 .top-cooperation-title {
  position: relative;
  z-index: 10;
  width: 295px;
  margin-left: -35px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03 .top-cooperation-title {
    margin-left: -20px;
    width: 245px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03 .top-cooperation-title {
    margin-left: -10px;
    width: 215px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03 .top-cooperation-title {
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.top-message__wpapper__inner03 .top-cooperation-title .fukidashi {
  display: block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #1a45b5;
  line-height: 39px;
  text-align: center;
  font-weight: 700;
  width: 220px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  padding-bottom: 12px;
  padding-left: 5px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03 .top-cooperation-title .fukidashi {
    font-size: 1.7rem;
    width: 200px;
    height: 36px;
    line-height: 34px;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03 .top-cooperation-title .fukidashi {
    font-size: 1.6rem;
    width: 190px;
    height: 32px;
    line-height: 30px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03 .top-cooperation-title .fukidashi {
    font-size: 1.5rem;
    width: 170px;
    height: 29px;
    line-height: 27px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.top-message__wpapper__inner03 .top-cooperation-title .fukidashi::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 12px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #fff;
  bottom: -11px;
  left: 60px;
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03 .top-cooperation-title .fukidashi::before {
    bottom: -9px;
  }
}
.top-message__wpapper__inner03 .top-cooperation-title__ja {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.6rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03 .top-cooperation-title__ja {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03 .top-cooperation-title__ja {
    font-size: 2.7rem;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03 .top-cooperation-title__ja {
    font-size: 2.2rem;
    margin-bottom: 11px;
    width: 100%;
    text-align: center;
  }
}
.top-message__wpapper__inner03 .top-cooperation-title__en {
  font-family: "Fira Sans", sans-serif !important;
  font-size: 1.6rem;
  color: #a3d6eb;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03 .top-cooperation-title__en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03 .top-cooperation-title__en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03 .top-cooperation-title__en {
    font-size: 1.3rem;
  }
}
.top-message__wpapper__inner03__list {
  width: calc(100% - 260px);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03__list {
    width: calc(100% - 225px);
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03__list {
    width: calc(100% - 205px);
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03__list {
    width: 100%;
  }
}
.top-message__wpapper__inner03__list__item {
  padding: 30px 40px;
  background-color: #eaf7fb;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .top-message__wpapper__inner03__list__item {
    padding: 23px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-message__wpapper__inner03__list__item {
    padding: 21px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-message__wpapper__inner03__list__item {
    padding: 16px 20px;
  }
}
.top-message__wpapper__inner03__list__item:last-child {
  margin-bottom: 0;
}
.top-message__wpapper__inner03__list__item.text-base span {
  font-weight: 600;
}

.top-medical {
  padding: 30px 30px 0;
  background: linear-gradient(to top, transparent 0%, #fff 50%, #dbf0fc 100%);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-medical {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-medical {
    padding: 10px 10px 0;
  }
}
.top-medical__wrapper {
  padding: 110px;
  background: linear-gradient(to left, #26b4e0 0%, #4daaf2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.top-medical__wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top/medical_bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 55% auto;
  right: 0;
  bottom: 0;
}
.top-medical__wrapper::after {
  position: absolute;
  content: "";
  width: 324px;
  height: 333px;
  background-image: url(../img/top/medical_bg02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  right: -28px;
  top: 70px;
}
@media screen and (max-width: 1200px) {
  .top-medical__wrapper::after {
    display: none;
  }
}
@media screen and (max-width: 1500px) {
  .top-medical__wrapper {
    padding: 80px 70px;
  }
}
@media screen and (max-width: 1200px) {
  .top-medical__wrapper {
    flex-wrap: wrap;
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-medical__wrapper {
    padding: 30px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 834px) {
  .top-medical__wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-medical__wrapper {
    padding: 10px;
  }
}
.top-medical__wrapper__img {
  width: calc(50% - 110px);
  margin-right: 110px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1500px) {
  .top-medical__wrapper__img {
    margin-right: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .top-medical__wrapper__img {
    width: 100%;
    height: 35vw;
    margin-right: 0;
    overflow: hidden;
  }
}
.top-medical__wrapper__img img {
  width: 100%;
}
.top-medical__wrapper__text-wpapper {
  margin-top: -1vw;
  width: 50%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1600px) {
  .top-medical__wrapper__text-wpapper {
    padding-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .top-medical__wrapper__text-wpapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-medical__wrapper__text-wpapper {
    width: 100%;
    padding: 50px 20px 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-medical__wrapper__text-wpapper {
    width: 100%;
    padding: 40px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-medical__wrapper__text-wpapper {
    padding: 20px 10px 20px;
  }
}
.top-medical__wrapper__text-wpapper .top-medical-title {
  max-width: 600px;
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 4rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.35;
  font-weight: 600;
  padding-bottom: 25px;
  border-bottom: 2px solid #9dd1f3;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-medical__wrapper__text-wpapper .top-medical-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1300px) {
  .top-medical__wrapper__text-wpapper .top-medical-title {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-medical__wrapper__text-wpapper .top-medical-title {
    max-width: none;
  }
}
@media screen and (max-width: 1024px) {
  .top-medical__wrapper__text-wpapper .top-medical-title {
    font-size: 3rem;
    padding-bottom: 20px;
    margin-bottom: 28px;
    max-width: none;
  }
}
@media screen and (max-width: 834px) {
  .top-medical__wrapper__text-wpapper .top-medical-title {
    font-size: 2.7rem;
    padding-bottom: 19px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-medical__wrapper__text-wpapper .top-medical-title {
    font-size: 2.2rem;
    line-height: 1.3;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
}
.top-medical__wrapper__text-wpapper .top-medical-title span {
  font-family: "Fira Sans", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  color: #9dd1f3;
  line-height: 1;
  display: block;
  margin-bottom: 13px;
}
@media screen and (max-width: 1024px) {
  .top-medical__wrapper__text-wpapper .top-medical-title span {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-medical__wrapper__text-wpapper .top-medical-title span {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.top-medical__wrapper__text-wpapper .top-medical-title::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -2px;
  z-index: 11;
}
.top-medical__wrapper__text-wpapper .text-base {
  color: #fff;
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .top-medical__wrapper__text-wpapper .text-base {
    max-width: none;
  }
}

.top-access {
  padding: 100px 50px 105px;
  background: linear-gradient(to right, #dbeefb 30%, #fff 70%);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-access {
    padding: 70px 30px 75px;
  }
}
@media screen and (max-width: 834px) {
  .top-access {
    padding: 50px 30px 60px;
    background: linear-gradient(to bottom, #fff 0%, #dbf0fc 50%, #dbf0fc 100%);
  }
}
@media screen and (max-width: 599px) {
  .top-access {
    padding: 30px 20px 40px;
  }
}
.top-access::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
  left: 0;
  top: 0;
}
@media screen and (max-width: 834px) {
  .top-access::before {
    display: none;
  }
}
.top-access::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top/access_bg.png);
  background-size: 953px auto;
  background-position: bottom left;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .top-access::after {
    background-size: 80vw auto;
  }
}
.top-access__wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 834px) {
  .top-access__wrapper {
    flex-wrap: wrap;
  }
}
.top-access__wrapper__text-wrapper {
  width: calc(100% - 650px);
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper {
    width: calc(100% - 530px);
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper {
    width: 100%;
  }
}
.top-access__wrapper__text-wrapper .top-access-title {
  font-family: "Fira Sans", sans-serif !important;
  font-size: 9rem;
  font-weight: 600;
  color: #1a45b5;
  line-height: 1;
  margin-bottom: 25px;
  margin-top: -10px;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper .top-access-title {
    font-size: 7rem;
    margin-bottom: 25px;
    margin-top: -8px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper .top-access-title {
    font-size: 6rem;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper .top-access-title {
    font-size: 4rem;
    margin-bottom: 9px;
    text-align: center;
  }
}
.top-access__wrapper__text-wrapper .access-clinic-name {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.7rem;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper .access-clinic-name {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper .access-clinic-name {
    font-size: 1.9rem;
    margin-bottom: 6px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper .access-clinic-name {
    font-size: 1.6rem;
    margin-bottom: 6px;
    text-align: center;
  }
}
.top-access__wrapper__text-wrapper .text-base {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper .text-base {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper .text-base {
    margin-bottom: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper .text-base {
    text-align: center;
  }
}
.top-access__wrapper__text-wrapper .access-btn {
  display: block;
  max-width: 290px;
  width: 100%;
  border: 2px solid #1a45b5;
  box-sizing: border-box;
  border-radius: 60px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #1a45b5;
  line-height: 1;
  font-weight: 600;
  padding: 13px 30px 18px;
  background-color: #fff;
  position: relative;
  margin-bottom: 65px;
}
.top-access__wrapper__text-wrapper .access-btn::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 9px;
  background-image: url(../img/top/arrow.svg);
  background-position: center;
  background-size: 28px auto;
  background-repeat: no-repeat;
  right: 20px;
  top: calc(50% - 8px);
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper .access-btn {
    max-width: 260px;
    font-size: 1.6rem;
    padding: 13px 25px 17px;
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper .access-btn {
    max-width: 260px;
    font-size: 1.6rem;
    padding: 13px 45px 17px 20px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper .access-btn {
    max-width: 240px;
    font-size: 1.5rem;
    padding: 11px 18px 14px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.top-access__wrapper__text-wrapper__inner-box {
  padding: 30px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper__inner-box {
    padding: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box {
    padding: 15px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper__inner-box {
    padding: 12px;
  }
}
.top-access__wrapper__text-wrapper__inner-box li {
  margin-bottom: 14px;
}
.top-access__wrapper__text-wrapper__inner-box li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box li {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper__inner-box li {
    margin-bottom: 10px;
  }
}
.top-access__wrapper__text-wrapper__inner-box li dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper__inner-box li dl {
    padding-left: 45px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box li dl {
    padding-left: 37px;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper__inner-box li dl {
    padding-left: 34px;
  }
}
.top-access__wrapper__text-wrapper__inner-box li dl::before {
  position: absolute;
  content: "";
  width: 44px;
  height: 44px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper__inner-box li dl::before {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box li dl::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper__inner-box li dl::before {
    width: 27px;
    height: 27px;
  }
}
.top-access__wrapper__text-wrapper__inner-box li dl.train-list::before {
  background-image: url(../img/top/icon_train.svg);
}
.top-access__wrapper__text-wrapper__inner-box li dl.bus-list::before {
  background-image: url(../img/top/icon_bus.svg);
}
.top-access__wrapper__text-wrapper__inner-box li dt {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 40px;
  font-weight: 600;
  margin-right: 22px;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper__inner-box li dt {
    font-size: 1.9rem;
    line-height: 34px;
    margin-right: 17px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box li dt {
    font-size: 1.7rem;
    line-height: 29px;
    margin-right: 13px;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper__inner-box li dt {
    font-size: 1.5rem;
    line-height: 27px;
  }
}
.top-access__wrapper__text-wrapper__inner-box li dt.train-title {
  color: #1a45b5;
}
.top-access__wrapper__text-wrapper__inner-box li dt.bus-title {
  color: #1da7e1;
}
.top-access__wrapper__text-wrapper__inner-box li dd {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1;
  font-weight: 400;
  margin-top: 1px;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__text-wrapper__inner-box li dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box li dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__text-wrapper__inner-box li dd {
    font-size: 1.4rem;
  }
}
.top-access__wrapper__text-wrapper__inner-box li dd span {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__text-wrapper__inner-box li dd span {
    font-size: 1.9rem;
  }
}
.top-access__wrapper__text-wrapper__inner-box li dd.train-data span {
  color: #1a45b5;
}
.top-access__wrapper__text-wrapper__inner-box li dd.bus-data span {
  color: #1da7e1;
}
.top-access__wrapper__map {
  width: 650px;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .top-access__wrapper__map {
    width: 530px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-access__wrapper__map {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__map {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
.top-access__wrapper__map img {
  border: 7px solid #eaf0f4;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .top-access__wrapper__map img {
    border: 4px solid #eaf0f4;
  }
}

#top-floting-bnr {
  position: fixed;
  z-index: 50;
  right: 15px;
  bottom: 140px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  #top-floting-bnr {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    bottom: 0;
    right: 0;
    background-color: rgba(26, 34, 55, 0.6);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
}
@media screen and (max-width: 599px) {
  #top-floting-bnr {
    padding: 15px;
  }
}
#top-floting-bnr .btn {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding-top: 88px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  background: linear-gradient(45deg, #1da7e1 0%, #1a45b5 100%);
}
#top-floting-bnr .btn::after, #top-floting-bnr .btn::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: calc(50% - 15px);
  bottom: 20px;
}
#top-floting-bnr .btn::before {
  background-color: #fff;
}
#top-floting-bnr .btn::after {
  background-image: url(../img/common/arrow_gaibu.svg);
  background-position: center;
  background-size: 14px auto;
  background-repeat: no-repeat;
}
#top-floting-bnr .btn span {
  position: absolute;
  display: inline-block;
  top: 35px;
  left: calc(50% - 19px);
  width: 38px;
}
@media screen and (max-width: 1024px) {
  #top-floting-bnr .btn {
    width: 300px;
    height: 65px;
    line-height: 63px;
    font-size: 2rem;
    border-radius: 0;
    border: none;
    padding-top: 0;
  }
  #top-floting-bnr .btn::after, #top-floting-bnr .btn::before {
    width: 26px;
    height: 26px;
    left: auto;
    right: 30px;
    bottom: calc(50% - 13px);
  }
  #top-floting-bnr .btn::after {
    background-size: 12px auto;
  }
  #top-floting-bnr .btn span {
    width: 27px;
    top: 20px;
    left: 30px;
  }
}
@media screen and (max-width: 834px) {
  #top-floting-bnr .btn {
    width: 270px;
    height: 60px;
    line-height: 58px;
    font-size: 1.9rem;
  }
  #top-floting-bnr .btn::after, #top-floting-bnr .btn::before {
    width: 24px;
    height: 24px;
    right: 20px;
    bottom: calc(50% - 12px);
  }
  #top-floting-bnr .btn::after {
    background-size: 12px auto;
  }
  #top-floting-bnr .btn span {
    width: 25px;
    top: 19px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  #top-floting-bnr .btn {
    width: 270px;
    height: 55px;
    line-height: 52px;
    font-size: 1.8rem;
  }
  #top-floting-bnr .btn::after, #top-floting-bnr .btn::before {
    width: 22px;
    height: 22px;
    bottom: calc(50% - 11px);
  }
  #top-floting-bnr .btn::after {
    background-size: 11px auto;
  }
  #top-floting-bnr .btn span {
    width: 23px;
    top: 18px;
  }
}
@media screen and (min-width: 1025px) {
  #top-floting-bnr .btn:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */