@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=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
/* フォームのエラーのカラー */
/*赤*/
/* ブレイクポイント参考

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

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・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 {
  .tb, .tb834, .sp, .w320 {
    display: none !important;
  }
  body {
    width: 1500px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  .header-outside {
    position: absolute !important;
  }
  .header-nav {
    position: absolute !important;
  }
  .pagetop {
    display: none !important;
  }
  /*　------- ↓その他参考例　---------
  .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: 2;
  font-size: 1.7rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  /*任意でフォントサイズを指定*/
}
@media print, screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

/*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 {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*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;
  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,
::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 print, 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.2s;
}

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

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 65px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 60px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 60px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 1024px) {
  .mb120 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb120 {
    margin-bottom: 70px !important;
  }
}

/*マージントップ*/
.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

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

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 5px !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: 15px !important;
  }
}

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

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 20px !important;
  }
}

.mt35 {
  margin-top: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mt35 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt35 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

/*ネガティブマージンボトム*/
.mb-05 {
  margin-bottom: -5px !important;
}
@media screen and (max-width: 599px) {
  .mb-05 {
    margin-bottom: -5px !important;
  }
}

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

.mb-15 {
  margin-bottom: -15px !important;
}
@media screen and (max-width: 599px) {
  .mb-15 {
    margin-bottom: -10px !important;
  }
}

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

.mb-25 {
  margin-bottom: -25px !important;
}
@media screen and (max-width: 599px) {
  .mb-25 {
    margin-bottom: -20px !important;
  }
}

.mb-30 {
  margin-bottom: -30px !important;
}
@media screen and (max-width: 1024px) {
  .mb-30 {
    margin-bottom: -25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb-30 {
    margin-bottom: -20px !important;
  }
}

/*ネガティブマージントップ*/
.mt-05 {
  margin-top: -5px !important;
}
@media screen and (max-width: 599px) {
  .mt-05 {
    margin-top: -5px !important;
  }
}

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

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

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

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

.mt-30 {
  margin-top: -30px !important;
}
@media screen and (max-width: 1024px) {
  .mt-30 {
    margin-top: -25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt-30 {
    margin-top: -20px !important;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 20px 0;
}
@media screen and (max-width: 834px) {
  .breadcrumbs {
    padding: 12px 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs {
    padding: 8px 10px 0;
  }
}
.breadcrumbs li {
  position: relative;
  color: #000;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .breadcrumbs li {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs li {
    font-size: 1.2rem;
  }
}
.breadcrumbs li:not(:last-child) {
  padding-right: 35px;
}
@media screen and (max-width: 834px) {
  .breadcrumbs li:not(:last-child) {
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs li:not(:last-child) {
    padding-right: 25px;
  }
}
.breadcrumbs li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 14px;
}
@media screen and (max-width: 834px) {
  .breadcrumbs li:not(:last-child)::after {
    right: 12px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs li:not(:last-child)::after {
    right: 10px;
  }
}
.breadcrumbs li a {
  color: #0074b6;
  text-decoration: underline;
}
.breadcrumbs li a:hover {
  text-decoration: none;
}

.base-btn {
  display: block;
  position: relative;
  border-radius: 100px;
  background-color: #0063b6;
  margin: 0 auto;
  padding: 16px 25px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .base-btn {
    padding: 13px 20px;
  }
}
.base-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .base-btn:hover:hover {
    opacity: 0.8;
  }
}
.base-btn--pink {
  background-color: #f56969;
}
.base-btn--form {
  width: 100%;
  max-width: 270px;
}
@media screen and (max-width: 599px) {
  .base-btn--form {
    width: 80%;
  }
}
.base-btn--back::after {
  left: 20px;
  right: auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.base-btn--entry {
  font-size: 1.7rem;
  text-align: center;
  background-color: #ff9c00;
  border-radius: 0;
  padding: 22px 25px;
}
@media screen and (max-width: 599px) {
  .base-btn--entry {
    font-size: 1.6rem;
    padding: 18px 25px;
  }
}

.btn-file {
  position: relative;
  display: block;
  color: #222222;
  font-weight: 400;
  line-height: 1.15;
  background-position: left 18px center;
  background-repeat: no-repeat;
  background-size: 28px auto;
  border: 1px solid #bdcbd1;
  border-radius: 3px;
  padding: 25px 30px 25px 60px;
}
@media screen and (max-width: 834px) {
  .btn-file {
    background-position: left 13px center;
    background-size: 21px auto;
    padding: 20px 30px 20px 50px;
  }
}
.btn-file::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #757575;
  border-right: 2px solid #757575;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
.btn-file--pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.btn-file--word {
  background-image: url(../img/common/icon_word.svg);
}
.btn-file--excel {
  background-image: url(../img/common/icon_excel.svg);
}
@media print, screen and (min-width: 1025px) {
  .btn-file:hover:hover {
    color: #ffffff;
    background-color: #0074b6;
  }
  .btn-file:hover:hover::after {
    width: 9px;
    height: 9px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.entry-index-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  min-height: 130px;
  color: #222222;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #bdcbd1;
  border-radius: 3px;
  padding: 15px 15px 15px 25px;
  box-sizing: border-box;
  overflow: hidden;
}
@media print, screen and (max-width: 1200px) {
  .entry-index-btn {
    min-height: 110px;
    font-size: 1.7rem;
    padding: 10px 10px 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-btn {
    min-height: 80px;
    font-size: 1.5rem;
    padding: 10px 10px 10px 15px;
  }
}
.entry-index-btn::after {
  position: absolute;
  content: "";
  top: -108px;
  left: -82px;
  width: 216px;
  height: 216px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#daf0fb+0,eff8fc+100 */
  background: linear-gradient(to right, #daf0fb 0%, #eff8fc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.onkokai .entry-index-btn::after {
  background: #fdf0f0;
}
@media print, screen and (max-width: 1200px) {
  .entry-index-btn::after {
    top: -91px;
    left: -69px;
    width: 182px;
    height: 182px;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-btn::after {
    top: -66px;
    left: -50px;
    width: 132px;
    height: 132px;
  }
}
.entry-index-btn__arw {
  position: relative;
  display: inline-block;
  background-image: url(../img/common/arrow03.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 50px auto;
  padding: 3px 0 3px 65px;
  z-index: 2;
}
.onkokai .entry-index-btn__arw {
  background-image: url(../img/common/arrow04.svg);
}
@media print, screen and (max-width: 1200px) {
  .entry-index-btn__arw {
    background-size: 45px auto;
    padding: 3px 0 3px 60px;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-btn__arw {
    background-size: 40px auto;
    padding: 3px 0 3px 55px;
  }
}
@media print, screen and (min-width: 1025px) {
  .entry-index-btn:hover {
    color: #0074b6;
  }
  .onkokai .entry-index-btn:hover {
    color: #df4173;
  }
  .entry-index-btn:hover::after {
    width: 648px;
    height: 648px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}

.btn-wrapper {
  position: relative;
  text-align: center;
}
.btn-wrapper a {
  line-height: 1.2em;
}
@media screen and (max-width: 599px) {
  .btn-wrapper a {
    font-size: 1.4rem;
  }
}

.icon-link {
  position: relative;
  display: inline-block;
  color: #fff !important;
  text-decoration: none !important;
  background-color: #0074b6;
  border-radius: 56px;
  margin-bottom: 7px;
  padding: 12px 50px 12px 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.onkokai .icon-link {
  background-color: #df4173;
}
.icon-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -6px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media print, screen and (min-width: 1025px) {
  .icon-link:hover {
    opacity: 0.7;
  }
}

.file-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .file-btn-wrapper {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.file-btn-wrapper .btn-file {
  display: flex;
  align-items: center;
  width: calc((100% - 40px) / 3);
}
@media print, screen and (max-width: 1200px) {
  .file-btn-wrapper .btn-file {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .file-btn-wrapper .btn-file {
    width: 100%;
  }
}
.file-btn-wrapper.column1 .btn-file {
  width: 100%;
}
.file-btn-wrapper.column2 .btn-file {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1024px) {
  .file-btn-wrapper.column2 .btn-file {
    width: 100%;
  }
}
.file-btn-wrapper.column3 .btn-file {
  width: calc((100% - 40px) / 3);
}
@media print, screen and (max-width: 1200px) {
  .file-btn-wrapper.column3 .btn-file {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .file-btn-wrapper.column3 .btn-file {
    width: 100%;
  }
}

.btn-prev {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: #bbb;
  border-radius: 100px;
  padding: 16px 25px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .btn-prev {
    position: relative;
    padding: 13px 20px;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .btn-prev {
    margin: 20px auto 0;
  }
}
.btn-prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media print, screen and (min-width: 1025px) {
  .btn-prev:hover:hover {
    opacity: 0.8;
  }
}

.footer {
  padding: 60px 50px;
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 50px 20px;
  }
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-inner {
    display: block;
  }
}

.footer-logo {
  margin-bottom: 32px;
  display: block;
}
@media screen and (max-width: 599px) {
  .footer-logo {
    margin-bottom: 25px;
  }
}
.footer-logo img {
  width: 100%;
  max-width: 347px;
}
@media screen and (max-width: 599px) {
  .footer-logo img {
    max-width: 300px;
  }
}

.footer-block01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .footer-block01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.footer-text {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .footer-text {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}

.footer-tel span {
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #1f51a2;
  letter-spacing: -0.03em;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 21px auto;
  background-position: left 0 top 8px;
  padding-left: 30px;
  padding-bottom: 3px;
}

.footer-other-links {
  margin-bottom: 45px;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .footer-other-links {
    margin-bottom: 40px;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-other-links {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer-other-links > li {
  margin-left: 30px;
}
@media screen and (max-width: 599px) {
  .footer-other-links > li {
    margin-left: 0;
  }
}
.footer-other-links > li > a {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  padding-left: 16px;
}
@media print, screen and (min-width: 1025px) {
  .footer-other-links > li > a:hover {
    color: #0074b6;
    text-decoration: underline;
  }
}
.footer-other-links > li > a::before {
  content: "●";
  font-size: 1.1rem;
  color: #0074b6;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-bnr-hyoka {
  max-width: 210px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer-bnr-hyoka {
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-bnr-hyoka > a:hover {
    opacity: 0.8;
  }
}

.footer-copyright {
  text-align: center;
  padding: 17px;
  background-color: #112754;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 1200px) {
  .footer-copyright {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 599px) {
  .footer-copyright {
    font-size: 1rem;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 50;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    width: 70px;
    height: 70px;
    right: 10px;
    bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .pagetop {
    width: 60px;
    height: 60px;
  }
}
.pagetop button {
  background-color: inherit;
  padding: 0;
}

/*ヘッダー*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125px;
  z-index: 10;
}
@media print, screen and (max-width: 1200px) {
  .header {
    height: 80px;
    background-color: #fff;
    position: fixed;
    z-index: 100;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 70px;
  }
}

.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 420px;
  padding: 26px 50px 28px 20px;
  z-index: 10;
  border-bottom-right-radius: 40px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
}
@media print, screen and (max-width: 1400px) {
  .header-logo {
    width: calc(99.9% - 870px - 3%);
    padding: 1.9% 3.5% 1.9% 20px;
    margin-right: 3%;
  }
}
@media print, screen and (max-width: 1200px) {
  .header-logo {
    top: 12px;
    left: 20px;
    width: 293px;
    padding: 0;
    margin-right: 0;
    backdrop-filter: none;
    background-color: transparent;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    top: 12px;
    left: 12px;
    width: 160px;
  }
}
.header-logo__img01 {
  width: 100%;
  max-width: 340px;
}
@media print, screen and (max-width: 1400px) {
  .header-logo__img01 {
    max-width: 270px;
  }
}
@media print, screen and (max-width: 1200px) {
  .header-logo__img01 {
    display: none;
  }
}
.header-logo__img02 {
  display: none;
  width: 100%;
  max-width: 180px;
}
@media print, screen and (max-width: 1200px) {
  .header-logo__img02 {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__img02 {
    max-width: 148px;
  }
}
@media print, screen and (min-width: 1025px) {
  .header-logo > a:hover {
    opacity: 0.7;
  }
}
.header-logo > a img {
  width: 100%;
}

.header-outside {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  border-bottom-left-radius: 3px;
  overflow: hidden;
}
@media print, screen and (max-width: 1200px) {
  .header-outside {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header-outside {
    flex-wrap: wrap;
  }
}
@media print, screen and (max-width: 1200px) {
  .header-outside > li {
    width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .header-outside > li {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .header-outside > li:first-child {
    width: 50%;
  }
  .header-outside > li:last-child {
    width: 50%;
  }
}
.header-outside > li > a {
  display: block;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  background: linear-gradient(to right, rgba(71, 166, 1, 0.9) 0%, rgba(97, 197, 70, 0.9) 100%);
}
.header-outside > li > a > span {
  position: relative;
  padding: 8px 30px 8px 46px;
  display: inline-block;
}
.header-outside > li > a > span::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 14px;
  left: 18px;
  background-image: url(../img/common/icon_leaf.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
}
@media print, screen and (min-width: 1025px) {
  .header-outside > li > a:hover {
    opacity: 0.8;
  }
}
@media print, screen and (max-width: 1400px) {
  .header-outside > li > a {
    font-size: 1.5rem;
  }
  .header-outside > li > a > span {
    padding: 8px 25px 8px 42px;
  }
  .header-outside > li > a > span::before {
    top: 13px;
    left: 16px;
  }
}
@media print, screen and (max-width: 1200px) {
  .header-outside > li > a {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    text-align: center;
    height: 48px;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .header-outside > li > a > span {
    padding: 14px 16px 10px 33px;
  }
  .header-outside > li > a > span::before {
    top: 16px;
    left: 7px;
    width: 22px;
    height: 20px;
    background-size: 17px auto;
  }
}
@media screen and (max-width: 599px) {
  .header-outside > li > a {
    height: 48px;
    font-weight: 500;
  }
  .header-outside > li > a > span {
    padding: 14px 5px 0 35px;
  }
  .header-outside > li > a > span::before {
    top: 16px;
  }
}
.header-outside > li > a.header-outside-oncokai {
  background: linear-gradient(to right, rgba(255, 136, 157, 0.9) 0%, rgba(255, 147, 167, 0.9) 100%);
}
.header-outside > li > a.header-outside-oncokai > span::before {
  background-image: url(../img/common/icon_heart.png);
  background-size: 15px auto;
}
@media print, screen and (max-width: 1200px) {
  .header-outside > li > a.header-outside-oncokai > span::before {
    background-size: 17px auto;
  }
}
.header-outside > li > a.header-outside-nemunoki {
  background: linear-gradient(to right, rgba(24, 180, 231, 0.9) 0%, rgba(24, 190, 231, 0.9) 100%);
}
.header-outside > li > a.header-outside-nemunoki > span::before {
  background-image: url(../img/common/icon_home.png);
  background-size: 20px auto;
}
@media print, screen and (max-width: 1200px) {
  .header-outside > li > a.header-outside-nemunoki > span::before {
    background-size: 22px auto;
  }
}
@media screen and (max-width: 599px) {
  .header-outside > li > a.header-outside-nemunoki > span {
    padding-top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .header-outside > li > a.header-outside-nemunoki > span > span {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
  }
}
.header-outside > li > a.header-outside-taisanboku {
  background: linear-gradient(to right, rgba(255, 137, 33, 0.9) 0%, rgba(255, 160, 36, 0.9) 100%);
}
.header-outside > li > a.header-outside-taisanboku > span::before {
  background-image: url(../img/common/icon_home.png);
  background-size: 20px auto;
}
@media print, screen and (max-width: 1200px) {
  .header-outside > li > a.header-outside-taisanboku > span::before {
    background-size: 22px auto;
  }
}
@media screen and (max-width: 599px) {
  .header-outside > li > a.header-outside-taisanboku > span {
    padding-top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .header-outside > li > a.header-outside-taisanboku > span > span {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
  }
}

.header-nav {
  position: fixed;
  top: 60px;
  right: 15px;
  z-index: 10;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.662745098);
  border-radius: 200px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  height: 80px;
  align-items: center;
}
@media print, screen and (max-width: 1400px) {
  .header-nav {
    top: 50px;
    right: 15px;
  }
}
@media print, screen and (max-width: 1200px) {
  .header-nav {
    display: none;
  }
}

.header-nav-gnav {
  display: flex;
  justify-content: flex-end;
  padding: 0 15px 0 30px;
}
@media print, screen and (max-width: 1400px) {
  .header-nav-gnav {
    padding: 0 15px 0 15px;
  }
}
.header-nav-gnav > li > a {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #095ca2;
  font-weight: 500;
  padding: 0 12px;
  display: block;
  text-align: center;
  line-height: 1.2;
}
@media print, screen and (min-width: 1025px) {
  .header-nav-gnav > li > a:hover {
    opacity: 0.6;
  }
}
@media print, screen and (max-width: 1400px) {
  .header-nav-gnav > li > a {
    padding: 0 8px;
  }
}
.header-nav-gnav > li > a.home {
  height: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.header-nav-gnav > li > a.home img {
  width: 24px;
  height: auto;
}

.header-nav-recruit {
  height: 100%;
}
.header-nav-recruit > a {
  width: 132px;
  height: 100%;
  background-color: #00aee7;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 400;
  padding-top: 43px;
  background-image: url(../img/common/icon_recruit.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: left 47% top 15px;
}
@media print, screen and (min-width: 1025px) {
  .header-nav-recruit > a:hover {
    opacity: 0.7;
  }
}
@media print, screen and (max-width: 1400px) {
  .header-nav-recruit > a {
    width: 100px;
  }
}

.header-nav-access {
  height: 100%;
}
.header-nav-access > a {
  width: 132px;
  height: 100%;
  background-color: #123a8a;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 400;
  padding-right: 7px;
  padding-top: 43px;
  background-image: url(../img/common/icon_car.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: left 45% top 20px;
}
@media print, screen and (min-width: 1025px) {
  .header-nav-access > a:hover {
    opacity: 0.7;
  }
}

/*sp用*/
.header-nav-access-sp {
  display: none;
  position: absolute;
  top: 0;
  right: 80px;
  width: 80px;
  height: 80px;
}
@media print, screen and (max-width: 1200px) {
  .header-nav-access-sp {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .header-nav-access-sp {
    right: 70px;
    width: 70px;
    height: 70px;
  }
}
.header-nav-access-sp > a {
  width: 100%;
  height: 100%;
  background-color: #0063b6;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  padding-top: 46px;
  background-image: url(../img/common/icon_car.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  background-position: left 45% top 21px;
}
@media print, screen and (min-width: 1025px) {
  .header-nav-access-sp > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 599px) {
  .header-nav-access-sp > a {
    font-size: 1.3rem;
    padding-top: 39px;
    background-position: left 45% top 15px;
  }
}

/*スマホナビ*/
#nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 80px;
  width: 80px;
  padding: 0;
  cursor: pointer;
  background-color: #123a8a;
}
@media print, screen and (max-width: 1200px) {
  #nav-toggle {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle {
    height: 70px;
    width: 70px;
  }
}
#nav-toggle > div {
  position: absolute;
  top: 25px;
  left: 28px;
  width: 22px;
}
@media screen and (max-width: 599px) {
  #nav-toggle > div {
    top: 21px;
    left: 24px;
  }
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
  /* #nav-toggle close */
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 7px;
}
#nav-toggle .nav-toggle-menu {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  padding-top: 37px;
}
@media screen and (max-width: 599px) {
  #nav-toggle .nav-toggle-menu {
    font-size: 1.3rem;
    padding-top: 33px;
  }
}

#nav-toggle[aria-expanded=true] span:nth-child(1) {
  top: 3px;
  transform: rotate(45deg);
}
#nav-toggle[aria-expanded=true] span:nth-child(2) {
  top: 3px;
  transform: rotate(-45deg);
}

#nav-toggle {
  z-index: 1000;
}

.gloval-nav-contents {
  z-index: 999;
  padding: 50px 20px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-contents {
    padding: 0;
  }
}

#gloval-nav {
  overflow: auto;
  background-color: #dbf0fa;
  position: fixed;
  width: 100%;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  padding-left: 0;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: none;
}
@media print, screen and (max-width: 1200px) {
  #gloval-nav {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  #gloval-nav {
    top: 70px;
  }
}

.open #gloval-nav {
  transform: translateX(0);
}

.open #gloval-nav li {
  transform: translateX(0);
}

.gnav-sp-list {
  max-width: 600px;
  margin: 0 auto 50px;
  /*アコーディオン*/
}
.gnav-sp-list__item {
  border-bottom: 1px solid #bedce9;
  /*第二階層*/
  /*第三階層*/
}
.gnav-sp-list__item > a {
  display: block;
  padding: 18px 18px 18px 43px;
  text-decoration: none;
  color: #0074b6;
  font-size: 1.7rem;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
.gnav-sp-list__item > a::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 14px;
  width: 19px;
  height: 19px;
  background-color: #0063b6;
  border-radius: 100px;
}
.gnav-sp-list__item > a::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.gnav-sp-list__item > ul {
  list-style: none;
  padding: 0;
  display: none;
}
.gnav-sp-list__item > ul > li {
  border-bottom: 1px solid #a6d2e6;
}
.gnav-sp-list__item > ul > li:last-child {
  border-bottom: none;
}
.gnav-sp-list__item > ul > li > a {
  display: block;
  padding: 18px 20px 18px 51px;
  text-decoration: none;
  color: #0074b6;
  background-color: #c2e2f1;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  position: relative;
  line-height: 1.4;
}
.gnav-sp-list__item > ul > li > a::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 30px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #95c3d9;
  border-right: 2px solid #95c3d9;
  transform: rotate(45deg);
}
.gnav-sp-list__accordion {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: block;
  background-color: #c2e2f1;
}
.gnav-sp-list__accordion::before {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #0074b6;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
}
.gnav-sp-list__accordion::after {
  content: "";
  width: 2px;
  height: 18px;
  background-color: #0074b6;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -1px;
}
.gnav-sp-list__accordion[aria-expanded=true]::after {
  content: none;
}

.gnav-sp-bnrs {
  margin: 0 20px 15px;
}
.gnav-sp-bnrs > a {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

.gnav-sp-other-list {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gnav-sp-other-list > li {
  margin: 0 10px;
}
.gnav-sp-other-list > li > a {
  font-size: 1.4rem;
  color: #0074b6;
  text-decoration: underline;
  font-weight: 500;
}

.gnav-sp-contact {
  max-width: 600px;
  margin: 0 auto 40px;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px 20px;
}
@media screen and (max-width: 599px) {
  .gnav-sp-contact {
    margin: 0 20px 40px;
  }
}
.gnav-sp-contact__logo {
  width: 100%;
  max-width: 181px;
  margin: 0 auto 20px;
}
.gnav-sp-contact__address {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.gnav-sp-contact__address > dt {
  width: 70px;
  margin-bottom: 10px;
}
.gnav-sp-contact__address > dd {
  width: calc(100% - 70px);
  margin-bottom: 10px;
}
.gnav-sp-contact__tel > a {
  background-color: #e2f3fb;
  text-align: center;
  padding: 5px;
  display: block;
  border-radius: 200px;
}
.gnav-sp-contact__tel > a > span {
  font-size: 2.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #1f51a2;
  letter-spacing: -0.03em;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: left 0 top 8px;
  padding-left: 25px;
  padding-bottom: 3px;
}
.gnav-sp-contact__copy {
  margin-bottom: 80px;
  text-align: center;
  color: #0063b6;
  font-size: 1rem;
}

#side {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (min-width: 835px) {
  #side {
    width: 250px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 835px) and (max-width: 1024px) {
  #side {
    width: 200px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 834px) {
  #side {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 599px) {
  #side {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.side-category {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  background-color: #0063b6;
  padding: 22px 10px;
}
.onkokai .side-category {
  background-color: #fe83a9;
}
@media screen and (max-width: 1024px) {
  .side-category {
    padding: 17px 10px;
  }
}
.side-category__link {
  display: block;
  color: #ffffff;
  padding: 22px 10px;
  margin: -22px -10px;
}
@media screen and (max-width: 1024px) {
  .side-category__link {
    padding: 17px 10px;
    margin: -17px -10px;
  }
}
@media print, screen and (min-width: 1025px) {
  .side-category__link:hover {
    background-color: #14afdb;
  }
  .onkokai .side-category__link:hover {
    background-color: #f1769d;
  }
}

.side-nav__list > li {
  color: #222222;
  font-weight: 400;
  line-height: 1.15;
  border-bottom: 1px solid #cfdee4;
  padding: 22px 10px 22px 30px;
}
.onkokai .side-nav__list > li {
  border-bottom: 1px solid #ecd9de;
}
@media screen and (max-width: 1024px) {
  .side-nav__list > li {
    padding: 17px 10px 17px 27px;
  }
}
.side-nav__list__link {
  position: relative;
  display: block;
  color: #222222;
  padding: 22px 10px 22px 30px;
  margin: -22px -10px -22px -30px;
}
@media screen and (max-width: 1024px) {
  .side-nav__list__link {
    padding: 17px 10px 17px 27px;
    margin: -17px -10px -17px -27px;
  }
}
.side-nav__list__link::after {
  position: absolute;
  content: "";
  top: calc((100% - 9px) / 2);
  left: 7px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0063b6;
  border-right: 2px solid #0063b6;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.onkokai .side-nav__list__link::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fe83a9;
  border-right: 2px solid #fe83a9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .side-nav__list__link::after {
    top: calc((100% - 7px) / 2);
    width: 8px;
    height: 8px;
    border-top: 2px solid #0063b6;
    border-right: 2px solid #0063b6;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .onkokai .side-nav__list__link::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #fe83a9;
    border-right: 2px solid #fe83a9;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media print, screen and (min-width: 1025px) {
  .side-nav__list__link:hover {
    background-color: #e6f4f9;
  }
  .onkokai .side-nav__list__link:hover {
    background-color: #fdf0f0;
  }
}
.side-nav__list__link.active {
  background-color: #e6f4f9;
}
.onkokai .side-nav__list__link.active {
  background-color: #fdf0f0;
}

.side-nav-bnr {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .side-nav-bnr {
    margin: 50px 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .side-nav-bnr {
    margin: 40px 20px 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.side-nav-bnr > li {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .side-nav-bnr > li {
    max-width: 250px;
  }
}
@media screen and (max-width: 599px) {
  .side-nav-bnr > li {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 1025px) {
  .side-nav-bnr > li > a:hover {
    opacity: 0.8;
  }
}

html {
  scroll-padding-top: 150px;
}
@media screen and (max-width: 599px) {
  html {
    scroll-padding-top: 100px;
  }
}

.contents-wrapper {
  width: 100%;
  background-image: url(../img/common/bg_inpatient.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-bottom: 1px solid #dddddd;
  padding: 90px 50px 320px;
  word-break: break-all;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    padding: 70px 30px 220px;
  }
}
@media screen and (max-width: 834px) {
  .contents-wrapper {
    padding: 70px 30px 165px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper {
    padding: 40px 20px 110px;
  }
}
@media print, screen and (min-width: 835px) {
  .contents-wrapper--side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 834px) {
  .contents-wrapper--side {
    background: none;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 835px) {
  .contents-wrapper--side > main.contents-main {
    width: calc(99.9% - 250px - 50px);
  }
}
@media screen and (min-width: 835px) and (max-width: 1024px) {
  .contents-wrapper--side > main.contents-main {
    width: calc(99.9% - 200px - 30px);
  }
}
@media screen and (max-width: 834px) {
  .contents-wrapper--side > main.contents-main {
    position: relative;
    padding-bottom: 165px;
  }
  .contents-wrapper--side > main.contents-main::after {
    position: absolute;
    content: "";
    left: -30px;
    bottom: 0;
    width: calc(100% + 60px);
    height: 14.7vw;
    background-image: url(../img/common/bg_inpatient.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper--side > main.contents-main {
    padding-bottom: 110px;
  }
  .contents-wrapper--side > main.contents-main::after {
    left: -20px;
    width: calc(100% + 40px);
  }
}

.contents-main__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.entry-index-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 600px) {
  .entry-index-nav__list > li {
    width: 32.2333333333%;
    margin-right: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(n+4) {
    margin-top: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media print, screen and (min-width: 600px) and (max-width: 1200px) {
  .entry-index-nav__list > li {
    width: 49.15%;
  }
  .entry-index-nav__list > li:nth-child(n+3) {
    margin-top: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(3n) {
    margin-right: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-nav__list > li {
    width: 100%;
    margin-top: 10px;
  }
  .entry-index-nav__list > li:nth-child(1) {
    margin-top: 0;
  }
}

/* タグ※はきだしソースまま */
.entry-footer {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .entry-footer {
    margin-top: 30px;
  }
}

.entry-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.entry-tag-icon {
  color: #707070;
  font-weight: bold;
  line-height: 1.35;
  margin-top: 5px;
}

.entry-tag-item {
  line-height: 1;
  border: 1px solid #cccccc;
  border-radius: 3px;
  margin: 5px 0 0 10px;
}
.entry-tag-item > a {
  display: inline-block;
  color: #707070 !important;
  font-size: 1.4rem;
  padding: 2px 5px 3px;
}
.entry-tag-item > a:hover {
  color: #ffffff !important;
  background-color: #14afdb;
}

.tag-select-wrap {
  background-color: #e6f4f9;
  padding: 20px 30px;
}
@media screen and (max-width: 834px) {
  .tag-select-wrap {
    padding: 18px 25px;
  }
}
@media screen and (max-width: 599px) {
  .tag-select-wrap {
    padding: 15px 20px;
  }
}
.tag-select-wrap__header {
  font-size: 2rem;
}
@media screen and (max-width: 834px) {
  .tag-select-wrap__header {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .tag-select-wrap__header {
    font-size: 1.6rem;
  }
}

.tag-wrap__notfound {
  padding: 30px 5px 0;
}
@media screen and (max-width: 834px) {
  .tag-wrap__notfound {
    padding: 25px 5px 0;
  }
}
@media screen and (max-width: 599px) {
  .tag-wrap__notfound {
    padding: 20px 5px 0;
  }
}
.tag-wrap__list__item {
  word-break: break-all;
  border-bottom: 1px solid #cfdee4;
}
.tag-wrap__list__item > a {
  display: block;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 20px 0;
}
@media print, screen and (min-width: 1025px) {
  .tag-wrap__list__item > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
.tag-wrap__list__item__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item__title {
    font-size: 1.6rem;
  }
}
.tag-wrap__list__item__text {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item__text {
    font-size: 1.3rem;
    margin-top: 3px;
  }
}

.news-icon {
  display: inline-block;
  width: 120px;
  color: #0074b6;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  border: 1px solid #0074b6;
  border-radius: 30px;
  padding: 7px 5px 8px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .news-icon {
    width: 110px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .news-icon {
    width: 100px;
    font-size: 1.1rem;
    padding: 5px 5px 6px;
  }
}

.entry-new {
  color: #ff0000;
  font-family: "Jost", sans-serif;
  line-height: 1;
  margin-left: 1em;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry-new {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-new {
    font-size: 1.3rem;
  }
}

.not-found-box {
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.not-found-box__title {
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .not-found-box__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .not-found-box__title {
    font-size: 2rem;
  }
}
.not-found-box__text {
  margin-top: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .not-found-box__text {
    font-size: 1.4rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .not-found-box__text {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}
.not-found-box__btn-box {
  margin-top: 100px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .not-found-box__btn-box {
    margin-top: 70px;
  }
}
@media screen and (max-width: 599px) {
  .not-found-box__btn-box {
    margin-top: 40px;
  }
}
.not-found-box__btn-box__btn {
  max-width: 270px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.map-col-100pct {
  width: 100%;
}

.map-col-75pct {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .map-col-75pct {
    width: 100%;
  }
}

.map-col-50pct {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .map-col-50pct {
    width: 100%;
  }
}

.map-size-variable {
  width: 100% !important;
  height: 430px !important;
}
@media print, screen and (max-width: 1300px) {
  .map-size-variable {
    height: 387px !important;
  }
}
@media print, screen and (max-width: 1200px) {
  .map-size-variable {
    height: 344px !important;
  }
}
@media screen and (max-width: 1024px) {
  .map-size-variable {
    height: 301px !important;
  }
}
@media screen and (max-width: 320px) {
  .map-size-variable {
    height: 258px !important;
  }
}

.video-col-100pct {
  width: 100%;
}

.video-col-75pct {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .video-col-75pct {
    width: 100%;
  }
}

.video-col-50pct {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .video-col-50pct {
    width: 100%;
  }
}

.pagetitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 390px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .pagetitle {
    height: 320px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 240px;
  }
}
.pagetitle__title {
  position: relative;
  max-width: 572px;
  width: 100%;
  line-height: 1.15;
  text-align: center;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#15b3d9+0,139ce1+100 */
  background: linear-gradient(to right, #15b3d9 0%, #139ce1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding: 56px 20px 43px;
  word-break: break-all;
  z-index: 1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.onkokai .pagetitle__title {
  background: linear-gradient(to right, #ff9bae 0%, #fe83a9 100%);
}
@media screen and (max-width: 1024px) {
  .pagetitle__title {
    padding: 46px 20px 33px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__title {
    width: 70%;
    padding: 41px 15px 28px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    width: calc(100% - 80px);
    padding: 26px 10px 23px;
  }
}
@media screen and (max-width: 320px) {
  .pagetitle__title {
    width: calc(100% - 40px);
    padding: 21px 10px 18px;
  }
}
.pagetitle__title__jp {
  color: #ffffff;
  font-size: 4.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .pagetitle__title__jp {
    font-size: 3.44rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__jp {
    font-size: 2.58rem;
  }
}
@media screen and (max-width: 320px) {
  .pagetitle__title__jp {
    font-size: 2.15rem;
  }
}
.pagetitle__title__sub {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.pagetitle__title__sub--en {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
@media screen and (max-width: 834px) {
  .pagetitle__title__sub--en {
    font-size: 0.8rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__sub--en {
    font-size: 0.6rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 320px) {
  .pagetitle__title__sub--en {
    font-size: 0.5rem;
  }
}
.pagetitle__title__sub--jp {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
@media screen and (max-width: 834px) {
  .pagetitle__title__sub--jp {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__sub--jp {
    font-size: 1.2rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 320px) {
  .pagetitle__title__sub--jp {
    font-size: 1rem;
  }
}
.pagetitle__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagetitle__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination__list > li.now .pagination__link {
  color: #fff;
  background-color: #0074b6;
}
.pagination__link {
  display: block;
  width: 40px;
  height: 40px;
  color: #444;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  background-color: #ecf1f3;
  border-radius: 50%;
  margin-right: 5px;
  margin-left: 5px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .pagination__link {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 30px;
    margin-right: 3px;
    margin-left: 3px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pagination__link:hover {
    color: #fff;
    background-color: #0074b6;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
.pagination__prev, .pagination__next {
  display: block;
  position: relative;
  color: #444;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 40px;
  background-color: #ecf1f3;
  border-radius: 40px;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .pagination__prev, .pagination__next {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pagination__prev:hover, .pagination__next:hover {
    color: #fff;
    background-color: #0074b6;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
.pagination__prev {
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    margin-right: 7px;
  }
}
.pagination__next {
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    margin-left: 7px;
  }
}

.entry-container {
  margin-right: 0;
  margin-left: 0;
}

.table {
  width: 100%;
  border: 1px solid #bdcbd1;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.table .acms-cell-text-center {
  text-align: center;
}
.table .acms-cell-text-left {
  text-align: left;
}
.table .acms-cell-text-right {
  text-align: right;
}
.table.fixed {
  table-layout: fixed;
}
.table th.wd20, .table td.wd20 {
  width: 20%;
}
.table th.wd30, .table td.wd30 {
  width: 30%;
}
.table th {
  color: #fff;
  font-weight: normal;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #0074b6;
  border: 1px solid #bdcbd1;
  padding: 13px 10px;
}
.onkokai .table th {
  background-color: #df4173;
}
@media screen and (max-width: 599px) {
  .table th {
    padding: 7px 7px 7px;
  }
}
.table td {
  color: #222222;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #bdcbd1;
  padding: 15px 10px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .table td {
    padding: 10px;
  }
}
.table td.bg01 {
  background-color: #e6f4f9;
}
.onkokai .table td.bg01 {
  background-color: #fdf0f0;
}
@media screen and (max-width: 599px) {
  .table.sp-100 {
    display: block;
    width: 100%;
  }
  .table.sp-100 tbody {
    display: block;
    width: 100%;
  }
  .table.sp-100 tr {
    display: block;
    width: 100%;
  }
  .table.sp-100 th {
    display: block;
    width: 100%;
    border: none;
  }
  .table.sp-100 td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
  }
}

.table02 {
  width: 100%;
  border-top: 1px solid #cfdee4;
  border-collapse: collapse;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.table02 th {
  position: relative;
  color: #095ca2;
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.3;
  text-align: left;
  background-color: #e6f4f9;
  border-bottom: 1px solid #cfdee4;
  padding: 23px 30px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .table02 th {
    font-size: 1.6rem;
    padding: 18px 20px;
  }
}
@media screen and (max-width: 599px) {
  .table02 th {
    font-size: 1.5rem;
    padding: 13px 10px 13px 20px;
  }
}
@media screen and (max-width: 320px) {
  .table02 th {
    padding: 13px 10px 13px 15px;
  }
}
.table02 th::before {
  position: absolute;
  content: "";
  top: 33px;
  left: 0;
  width: 15px;
  height: 3px;
  background-color: #14afdb;
  border-radius: 0 3px 3px 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .table02 th::before {
    top: 28px;
    width: 13px;
  }
}
@media screen and (max-width: 599px) {
  .table02 th::before {
    top: 22px;
    width: 12px;
  }
}
@media screen and (max-width: 320px) {
  .table02 th::before {
    width: 10px;
  }
}
.table02 td {
  color: #222222;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75;
  border-bottom: 1px solid #cfdee4;
  padding: 20px 30px;
  word-break: break-all;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .table02 td {
    font-size: 1.5rem;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 599px) {
  .table02 td {
    padding: 10px 10px;
  }
}

.js-table-unit-scroll-hint {
  width: 100%;
  border: 1px solid #bdcbd1;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.js-table-unit-scroll-hint .acms-cell-text-center {
  text-align: center;
}
.js-table-unit-scroll-hint .acms-cell-text-left {
  text-align: left;
}
.js-table-unit-scroll-hint .acms-cell-text-right {
  text-align: right;
}
.js-table-unit-scroll-hint.fixed {
  table-layout: fixed;
}
.js-table-unit-scroll-hint th.wd20, .js-table-unit-scroll-hint td.wd20 {
  width: 20%;
}
.js-table-unit-scroll-hint th.wd30, .js-table-unit-scroll-hint td.wd30 {
  width: 30%;
}
.js-table-unit-scroll-hint th {
  color: #fff;
  font-weight: normal;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #0074b6;
  border: 1px solid #bdcbd1;
  padding: 13px 10px;
}
.onkokai .js-table-unit-scroll-hint th {
  background-color: #df4173;
}
@media screen and (max-width: 599px) {
  .js-table-unit-scroll-hint th {
    padding: 7px 7px 7px;
  }
}
.js-table-unit-scroll-hint td {
  color: #222222;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #bdcbd1;
  padding: 15px 10px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .js-table-unit-scroll-hint td {
    padding: 10px;
  }
}
.js-table-unit-scroll-hint td.bg01 {
  background-color: #e6f4f9;
}
.onkokai .js-table-unit-scroll-hint td.bg01 {
  background-color: #fdf0f0;
}
@media screen and (max-width: 599px) {
  .js-table-unit-scroll-hint.sp-100 {
    display: block;
    width: 100%;
  }
  .js-table-unit-scroll-hint.sp-100 tbody {
    display: block;
    width: 100%;
  }
  .js-table-unit-scroll-hint.sp-100 tr {
    display: block;
    width: 100%;
  }
  .js-table-unit-scroll-hint.sp-100 th {
    display: block;
    width: 100%;
    border: none;
  }
  .js-table-unit-scroll-hint.sp-100 td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
  }
}

.acms-table-scrollable {
  width: 100%;
  border: 1px solid #bdcbd1;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.acms-table-scrollable .acms-cell-text-center {
  text-align: center;
}
.acms-table-scrollable .acms-cell-text-left {
  text-align: left;
}
.acms-table-scrollable .acms-cell-text-right {
  text-align: right;
}
.acms-table-scrollable.fixed {
  table-layout: fixed;
}
.acms-table-scrollable th.wd20, .acms-table-scrollable td.wd20 {
  width: 20%;
}
.acms-table-scrollable th.wd30, .acms-table-scrollable td.wd30 {
  width: 30%;
}
.acms-table-scrollable th {
  color: #fff;
  font-weight: normal;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #0074b6;
  border: 1px solid #bdcbd1;
  padding: 13px 10px;
}
.onkokai .acms-table-scrollable th {
  background-color: #df4173;
}
@media screen and (max-width: 599px) {
  .acms-table-scrollable th {
    padding: 7px 7px 7px;
  }
}
.acms-table-scrollable td {
  color: #222222;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #bdcbd1;
  padding: 15px 10px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .acms-table-scrollable td {
    padding: 10px;
  }
}
.acms-table-scrollable td.bg01 {
  background-color: #e6f4f9;
}
.onkokai .acms-table-scrollable td.bg01 {
  background-color: #fdf0f0;
}
@media screen and (max-width: 599px) {
  .acms-table-scrollable.sp-100 {
    display: block;
    width: 100%;
  }
  .acms-table-scrollable.sp-100 tbody {
    display: block;
    width: 100%;
  }
  .acms-table-scrollable.sp-100 tr {
    display: block;
    width: 100%;
  }
  .acms-table-scrollable.sp-100 th {
    display: block;
    width: 100%;
    border: none;
  }
  .acms-table-scrollable.sp-100 td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
  }
}

.title-sec01 {
  position: relative;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px solid #cfdee4;
  padding: 4px 0 26px 34px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title-sec01 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .title-sec01 {
    font-size: 2.8rem;
    padding: 5px 0 21px 24px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01 {
    font-size: 2.2rem;
    padding: 6px 0 16px 15px;
    margin-bottom: 40px;
  }
}
.title-sec01::before, .title-sec01::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: calc(100% - 16px);
  border-radius: 2px;
}
@media screen and (max-width: 834px) {
  .title-sec01::before, .title-sec01::after {
    width: 3px;
    height: calc(100% - 12px);
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::before, .title-sec01::after {
    width: 2px;
    height: calc(100% - 8px);
  }
}
.title-sec01::before {
  left: 0;
  background-color: #0074b6;
}
.onkokai .title-sec01::before {
  background-color: #df4173;
}
.title-sec01::after {
  left: 6px;
  background-color: #14afdb;
}
.onkokai .title-sec01::after {
  background-color: #f1769d;
}
@media screen and (max-width: 834px) {
  .title-sec01::after {
    left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::after {
    left: 3px;
  }
}

.title-sec02 {
  position: relative;
  font-size: 3.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px solid #cfdee4;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .title-sec02 {
    font-size: 2.5rem;
    padding-bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02 {
    font-size: 2.1rem;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
}
.title-sec02::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 80px;
  height: 3px;
  background-color: #0074b6;
}
.onkokai .title-sec02::before {
  background-color: #df4173;
}
@media screen and (max-width: 834px) {
  .title-sec02::before {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02::before {
    bottom: -1px;
    width: 60px;
    height: 2px;
  }
}

.title-sec03 {
  position: relative;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  background-color: #e6f4f9;
  border-radius: 3px;
  padding: 12px 20px 12px 30px;
  margin-bottom: 30px;
}
.onkokai .title-sec03 {
  background-color: #fdf0f0;
}
@media screen and (max-width: 834px) {
  .title-sec03 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03 {
    font-size: 2rem;
    padding: 10px 15px 10px 22px;
    margin-bottom: 20px;
  }
}
.title-sec03::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 10px;
  width: 3px;
  height: calc(100% - 16px);
  background-color: #0074b6;
}
.onkokai .title-sec03::before {
  background-color: #df4173;
}
@media screen and (max-width: 834px) {
  .title-sec03::before {
    top: 7px;
    height: calc(100% - 14px);
  }
}
@media screen and (max-width: 599px) {
  .title-sec03::before {
    left: 8px;
    width: 2px;
  }
}

.title-sec04 {
  position: relative;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px solid #cfdee4;
  padding: 0 0 14px 35px;
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .title-sec04 {
    font-size: 2rem;
    padding: 0 0 13px 30px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04 {
    font-size: 1.9rem;
    padding: 0 0 12px 22px;
    margin-bottom: 20px;
  }
}
.title-sec04::before, .title-sec04::after {
  position: absolute;
  content: "";
  left: 0;
  width: 20px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 834px) {
  .title-sec04::before, .title-sec04::after {
    width: 18px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::before, .title-sec04::after {
    width: 15px;
    height: 2px;
  }
}
.title-sec04::before {
  top: 11px;
  background-color: #0074b6;
}
.onkokai .title-sec04::before {
  background-color: #df4173;
}
@media screen and (max-width: 834px) {
  .title-sec04::before {
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::before {
    top: 9px;
  }
}
.title-sec04::after {
  top: 16px;
  background-color: #14afdb;
}
.onkokai .title-sec04::after {
  background-color: #f1769d;
}
@media screen and (max-width: 834px) {
  .title-sec04::after {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::after {
    top: 12px;
  }
}

.title-sec05 {
  position: relative;
  font-size: 2.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  padding: 0 0 0 35px;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .title-sec05 {
    font-size: 1.9rem;
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05 {
    font-size: 1.8rem;
    padding: 0 0 0 22px;
    margin-bottom: 20px;
  }
}
.title-sec05::before, .title-sec05::after {
  position: absolute;
  content: "";
  border-radius: 1.5px;
}
.title-sec05::before {
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #14afdb;
}
.onkokai .title-sec05::before {
  background-color: #f1769d;
}
@media screen and (max-width: 834px) {
  .title-sec05::before {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05::before {
    width: 12px;
    height: 12px;
  }
}
.title-sec05::after {
  top: 14px;
  left: 11px;
  width: 12px;
  height: 12px;
  background-color: #0074b6;
}
.onkokai .title-sec05::after {
  background-color: #df4173;
}
@media screen and (max-width: 834px) {
  .title-sec05::after {
    top: 12px;
    left: 9px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05::after {
    top: 11px;
    left: 7px;
    width: 8px;
    height: 8px;
  }
}

.title-sec06 {
  position: relative;
  color: #ffffff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  background-color: #14afdb;
  border-radius: 3px;
  padding: 10px 20px 10px 30px;
  margin-bottom: 20px;
}
.onkokai .title-sec06 {
  background-color: #fe83a9;
}
@media screen and (max-width: 834px) {
  .title-sec06 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06 {
    font-size: 1.7rem;
    padding: 10px 15px 10px 22px;
    margin-bottom: 20px;
  }
}
.title-sec06::before {
  position: absolute;
  content: "";
  top: 21px;
  left: 0;
  width: 17px;
  height: 2px;
  background-color: #ffffff;
}
@media screen and (max-width: 834px) {
  .title-sec06::before {
    top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06::before {
    width: 13px;
  }
}

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

input[type=search] {
  border: 1px solid #ddd;
}

/* 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;
  border: 1px solid #e3e3e3;
  padding: 12px 18px 12px 18px;
  background-color: #f7f7f7;
  line-height: 1;
  width: 100%;
}
@media screen and (max-width: 599px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  select {
    padding: 10px;
  }
}
input[type=text].w01,
input[type=email].w01,
input[type=tel].w01,
textarea.w01,
select.w01 {
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  input[type=text].w01,
  input[type=email].w01,
  input[type=tel].w01,
  textarea.w01,
  select.w01 {
    max-width: 60%;
  }
}
@media screen and (max-width: 834px) {
  input[type=text].w01,
  input[type=email].w01,
  input[type=tel].w01,
  textarea.w01,
  select.w01 {
    max-width: 100%;
  }
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  vertical-align: middle;
  box-sizing: border-box;
  background-image: url(../img/common/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 10px 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 599px) {
  select {
    background-position: right 10px top 50%;
    background-size: 8px 6px;
  }
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/*-- radio ---*/
input[type=radio] {
  display: none;
}

label.radio {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.3;
}

input[type=radio] + label.radio {
  width: 100%;
  color: #010101;
}
input[type=radio] + label.radio span {
  display: inline-block;
  position: relative;
  padding-left: 28px;
}
input[type=radio] + label.radio span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: #e6e6e6;
  border-radius: 50%;
  margin: auto;
}
@media screen and (max-width: 599px) {
  input[type=radio] + label.radio span::before {
    width: 20px;
    height: 20px;
  }
}

input[type=radio]:checked + label.radio span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 14px;
  height: 14px;
  margin: auto;
  background-color: #1f51a2;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  input[type=radio]:checked + label.radio span::after {
    top: 0;
    width: 10px;
    height: 10px;
  }
}

/*-- checkbox ---*/
input[type=checkbox] {
  display: none;
}

label.checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1.3;
}

input[type=checkbox] + label.checkbox {
  color: #010101;
}
@media screen and (max-width: 599px) {
  input[type=checkbox] + label.checkbox {
    width: 100%;
  }
}
input[type=checkbox] + label.checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
input[type=checkbox] + label.checkbox span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #f4f4f4;
  border: 2px solid #ddd;
}
@media screen and (max-width: 599px) {
  input[type=checkbox] + label.checkbox span::before {
    width: 20px;
    height: 20px;
  }
}

input[type=checkbox]:checked + label.checkbox span::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 7px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #0074b6;
  border-bottom: 3px solid #0074b6;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  input[type=checkbox]:checked + label.checkbox span::after {
    left: 6px;
    width: 8px;
    height: 12px;
  }
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  z-index: auto;
  box-sizing: border-box;
  border-collapse: separate;
  border-top: 1px solid #cfdee4;
}
@media screen and (max-width: 599px) {
  .form-tbl {
    border-top: none;
  }
}
.form-tbl th,
.form-tbl td {
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .form-tbl th,
  .form-tbl td {
    display: block;
  }
}
.form-tbl__th {
  position: relative;
  text-align: left;
  width: 220px;
  color: #222222;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: top;
  border-bottom: 1px solid #cfdee4;
  padding: 34px 0;
}
@media screen and (max-width: 1024px) {
  .form-tbl__th {
    padding: 29px 0;
  }
}
@media screen and (max-width: 834px) {
  .form-tbl__th {
    width: 200px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl__th {
    width: 100%;
    background-color: #e6f4f9;
    border: none;
    padding: 10px;
  }
}
.form-tbl__th .form-must {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 36px;
  width: 48px;
  height: 22px;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: normal;
  text-align: center;
  background-color: #ef2323;
}
@media screen and (max-width: 1024px) {
  .form-tbl__th .form-must {
    top: 31px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl__th .form-must {
    top: 12px;
    right: 10px;
  }
}
.form-tbl__th label {
  cursor: auto;
}
.form-tbl__td {
  border-bottom: 1px solid #cfdee4;
  padding: 25px 0 25px 40px;
}
@media screen and (max-width: 1024px) {
  .form-tbl__td {
    padding: 20px 0 20px 40px;
  }
}
@media screen and (max-width: 834px) {
  .form-tbl__td {
    padding: 20px 0 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl__td {
    width: 100%;
    padding: 15px 0 25px;
    border-bottom: none;
  }
}
.form-tbl__td textarea {
  height: 20em;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .form-tbl__td textarea {
    height: 15em;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl__td textarea {
    height: 10em;
  }
}
.form-tbl--confirm .form-tbl__td {
  padding: 34px 0 34px 40px;
}
@media screen and (max-width: 1024px) {
  .form-tbl--confirm .form-tbl__td {
    padding: 29px 0 29px 40px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl--confirm .form-tbl__td {
    padding: 15px 0 25px;
  }
}

.visit-btn-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 8px;
}
.visit-btn-list > li {
  margin-right: 40px;
}
.visit-btn-list > li:last-child {
  margin-right: 0;
}

.form-agreement {
  color: #222222;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .form-agreement {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .form-agreement {
    font-size: 1.4rem;
  }
}
.form-agreement__text {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 22px;
}
@media screen and (max-width: 599px) {
  .form-agreement__text {
    font-size: 1.5rem;
    margin-bottom: 15px;
    word-break: break-all;
  }
}
.form-agreement__text a {
  color: #0074b6;
  text-decoration: underline;
}
.form-agreement__text a:hover {
  text-decoration: none;
}
.form-agreement input[type=checkbox] {
  display: none;
}
.form-agreement input[type=checkbox] + label {
  display: block;
  max-width: 500px;
  line-height: 1.5;
  background-color: #e6f4f9;
  padding: 24px 10px 22px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .form-agreement input[type=checkbox] + label {
    padding: 19px 10px 17px;
  }
}
@media screen and (max-width: 599px) {
  .form-agreement input[type=checkbox] + label {
    font-size: 1.5rem;
  }
}
.form-agreement input[type=checkbox] + label span {
  display: inline-block;
  position: relative;
  padding-left: 34px;
  padding-right: 6px;
  color: #000;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .form-agreement input[type=checkbox] + label span {
    font-size: 1.5rem;
  }
}
.form-agreement input[type=checkbox] + label span::before, .form-agreement input[type=checkbox] + label span::after {
  content: "";
  position: absolute;
}
.form-agreement input[type=checkbox] + label span::before {
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
}
.form-agreement input[type=checkbox]:checked + label span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 8px;
  height: 13px;
  border-right: 3px solid #1f51a2;
  border-bottom: 3px solid #1f51a2;
  transform: rotate(35deg);
}
@media screen and (max-width: 599px) {
  .form-agreement input[type=checkbox]:checked + label span::after {
    left: 6px;
    width: 8px;
    height: 12px;
  }
}

.form-error-box {
  color: #ef2323;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  background-color: #fff5f5;
  border: 2px solid #ef2323;
  padding: 25px;
}
@media screen and (max-width: 599px) {
  .form-error-box {
    font-size: 1.5rem;
  }
}

.form-error-text {
  color: #ef2323;
  margin-bottom: 2px;
}

.form-complete {
  background-color: #e6f4f9;
  padding: 60px 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .form-complete {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px 20px;
  }
}
.form-complete__copy {
  color: #0074b6;
  font-size: 2.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .form-complete__copy {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.form-complete__text {
  max-width: 660px;
  font-style: 1.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .form-complete__text {
    font-style: 1.5rem;
  }
}

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

.block-layout-column2 {
  float: left;
  margin: 0 10px;
  width: calc((100% - 40px) / 2);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .block-layout-column2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-column2 {
    width: 100%;
    margin: 0 0 30px;
  }
}

.block-layout-column3 {
  float: left;
  margin: 0 10px;
  width: calc((100% - 60px) / 3);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .block-layout-column3 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-column3 {
    width: 100%;
    margin: 0 0 30px;
  }
}

/*右1/3*/
.block-layout-right-1 {
  width: 30%;
  float: right;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .block-layout-right-1 {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-right-1--spmg-large {
    margin-bottom: 50px;
  }
}

/*左2/3*/
.block-layout-left-2 {
  width: 70%;
  padding-right: 40px;
  float: left;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .block-layout-left-2 {
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-left-2 {
    width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-left-2--spmg-large {
    margin-bottom: 50px;
  }
}

/*左1/3*/
.block-layout-left-1 {
  width: 30%;
  float: left;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .block-layout-left-1 {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-left-1--spmg-large {
    margin-bottom: 50px;
  }
}

/*右2/3*/
.block-layout-right-2 {
  width: 70%;
  padding-left: 40px;
  float: right;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .block-layout-right-2 {
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-right-2 {
    width: 100%;
    float: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .block-layout-right-2--spmg-large {
    margin-bottom: 50px;
  }
}

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

.box-bg01 {
  background-color: #e6f4f9;
  padding: 27px 30px;
  margin-bottom: 10px;
}
.onkokai .box-bg01 {
  background-color: #fdf0f0;
}
@media screen and (max-width: 599px) {
  .box-bg01 {
    padding: 18px 20px;
  }
}
.box-bg01 a {
  color: #006ea3;
  text-decoration: underline;
}
.onkokai .box-bg01 a {
  color: #df4173;
}
@media print, screen and (min-width: 1025px) {
  .box-bg01 a:hover {
    text-decoration: none;
  }
}

.box-bg02 {
  background-color: #fdf0f0;
  padding: 27px 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .box-bg02 {
    padding: 18px 20px;
  }
}
.box-bg02 a {
  color: #ed5151;
  text-decoration: underline;
}
.onkokai .box-bg02 a {
  color: #df4173;
}
@media print, screen and (min-width: 1025px) {
  .box-bg02 a:hover {
    text-decoration: none;
  }
}
.box-bg02 .list-wrapper li::before {
  background-color: #ed5151;
}

.text {
  word-break: break-all;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .text {
    line-height: 1.8;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.text-red {
  color: #e91414;
}

.text-link {
  color: #006ea3;
  text-decoration: underline;
}
.onkokai .text-link {
  color: #df4173;
}
@media print, screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

.copy-gothic {
  color: #0074b6;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}
.onkokai .copy-gothic {
  color: #df4173;
}
@media screen and (max-width: 1024px) {
  .copy-gothic {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

.copy-mincho {
  color: #0074b6;
  font-size: 2.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}
.onkokai .copy-mincho {
  color: #df4173;
}
@media screen and (max-width: 1024px) {
  .copy-mincho {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .copy-mincho {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

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

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

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

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .anchor-list {
    display: block;
  }
}
.anchor-list__item {
  display: flex;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .anchor-list__item {
    width: calc((99.9% - 40px) / 3);
    margin-bottom: 20px;
  }
  .anchor-list__item:not(:nth-child(3n)) {
    margin-right: 20px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .anchor-list__item {
    width: calc((99.9% - 15px) / 2);
    margin-bottom: 15px;
  }
  .anchor-list__item:not(:nth-child(2n)) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item {
    width: 100%;
  }
  .anchor-list__item:not(:last-child) {
    margin-bottom: 8px;
  }
}
.anchor-list__item > a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  color: #222222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  border: 1px solid #bdcbd1;
  border-radius: 3px;
  padding: 23px 20px 23px 20px;
}
@media screen and (max-width: 1024px) {
  .anchor-list__item > a {
    padding: 18px 15px 18px 15px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item > a {
    padding: 13px 10px 13px 10px;
  }
}
.anchor-list__item > a > span {
  position: relative;
  padding-left: 38px;
}
@media screen and (max-width: 834px) {
  .anchor-list__item > a > span {
    padding-left: 33px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item > a > span {
    padding-left: 28px;
  }
}
.anchor-list__item > a > span::before {
  position: absolute;
  content: "";
  top: calc((100% - 24px) / 2);
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #14afdb;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.onkokai .anchor-list__item > a > span::before {
  background-color: #fe83a9;
}
@media screen and (max-width: 1024px) {
  .anchor-list__item > a > span::before {
    top: calc((100% - 21px) / 2);
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item > a > span::before {
    top: calc((100% - 18px) / 2);
    width: 18px;
    height: 18px;
  }
}
.anchor-list__item > a > span::after {
  position: absolute;
  content: "";
  top: calc((100% - 10px) / 2);
  left: 8px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 1024px) {
  .anchor-list__item > a > span::after {
    top: calc((100% - 9px) / 2);
    left: 7px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item > a > span::after {
    top: calc((100% - 8px) / 2);
    left: 6px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media print, screen and (min-width: 1025px) {
  .anchor-list__item:hover a {
    color: #ffffff;
    background-color: #0074b6;
  }
  .onkokai .anchor-list__item:hover a {
    background-color: #fe83a9;
  }
}

.list-box {
  border: 1px solid #bdcbd1;
  padding: 27px 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .list-box {
    padding: 18px 20px;
  }
}

.list-wrapper {
  padding: 0 !important;
  list-style: none;
  margin-bottom: 10px;
}
.list-wrapper li {
  position: relative;
  line-height: 1.5;
  padding-left: 1.6em;
  margin-top: 10px;
  word-break: break-all;
  list-style: none !important;
}
.list-wrapper li:first-child {
  margin-top: 0;
}
.list-wrapper li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #14afdb;
  border-radius: 50%;
}
.onkokai .list-wrapper li::before {
  background-color: #fe83a9;
}
@media screen and (max-width: 599px) {
  .list-wrapper li {
    margin-top: 7px;
  }
}

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

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

.list-file {
  margin-bottom: 10px;
}
.list-file li {
  margin-top: 20px;
  padding: 6px 0 0 45px;
  min-height: 54px;
  line-height: 1.5em;
  background-size: 35px auto;
  background-repeat: no-repeat;
  background-position: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .list-file li {
    padding: 6px 0 0 32px;
    margin-top: 15px;
    padding-top: 0;
    min-height: 45px;
    line-height: 1.3em;
    background-size: 25px auto;
    background-position: 0 3px;
  }
}
.list-file li:first-child {
  margin-top: 0;
}
.list-file li.li-pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.list-file li.li-xls {
  background-image: url(../img/common/icon_excel.svg);
}
.list-file li.li-doc {
  background-image: url(../img/common/icon_word.svg);
}
.list-file li a {
  color: #0074b6;
}
.list-file li a:hover {
  color: #cccccc;
}
.list-file li p {
  font-size: 1.6rem;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .list-file li p {
    margin-top: 3px;
    font-size: 1.5rem;
  }
}
.list-file.column2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list-file.column2 > li {
  width: calc((100% - 30px) / 2);
  margin-left: 30px;
}
.list-file.column2 > li:nth-child(2) {
  margin-top: 0;
}
.list-file.column2 > li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .list-file.column2 > li {
    width: 100%;
    margin-left: 0;
  }
  .list-file.column2 > li:nth-child(2) {
    margin-top: 15px;
  }
}
.list-file.column3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list-file.column3 > li {
  width: calc((100% - 60px) / 3);
  margin-left: 30px;
}
.list-file.column3 > li:nth-child(2), .list-file.column3 > li:nth-child(3) {
  margin-top: 0;
}
.list-file.column3 > li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .list-file.column3 > li {
    width: calc((100% - 30px) / 2);
  }
  .list-file.column3 > li:nth-child(3) {
    margin-top: 15px;
  }
  .list-file.column3 > li:nth-child(3n+1) {
    margin-left: 30px;
  }
  .list-file.column3 > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .list-file.column3 > li {
    width: 100%;
    margin-left: 0;
  }
  .list-file.column3 > li:nth-child(2), .list-file.column3 > li:nth-child(3) {
    margin-top: 15px;
  }
}

.img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 38.2%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    text-align: center;
    display: block;
  }
}

.img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 38.2%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}

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

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

.photo-1 {
  max-width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.photo-2 {
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .photo-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .photo-2 {
    margin-bottom: 30px;
  }
}
.photo-2 li {
  list-style: none !important;
  text-align: center;
}
@media print, screen and (min-width: 835px) {
  .photo-2 li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .photo-2 li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .photo-2 li {
    width: 100%;
  }
}

.photo-3 {
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .photo-3 {
    margin-bottom: 30px;
  }
}
.photo-3 li {
  list-style: none !important;
  text-align: center;
  width: calc((100% - 50px) / 3);
}
.photo-3 li img {
  max-width: auto;
}
@media screen and (max-width: 599px) {
  .photo-3 li {
    width: 100%;
  }
}

.slider-photo__item img {
  width: 100%;
  border-radius: 3px;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  position: relative;
  height: 760px;
}
@media print, screen and (max-width: 1600px) {
  .top-main {
    height: 665px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main {
    height: auto;
  }
}
.top-main__slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-main__slide {
    height: 600px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__slide {
    height: 400px;
  }
}
.top-main__slide .slick-list {
  height: 100%;
}
.top-main__slide .slick-list .slick-track {
  height: 100%;
}
.top-main__slide .slick-slide > div {
  height: 100%;
}
.top-main__slide-item {
  height: 100%;
}
.top-main__slide-item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-main__slide-item img {
    object-position: center bottom;
  }
}
@media screen and (max-width: 599px) {
  .top-main__slide-item--01 img {
    object-position: left 70% top 100%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__slide-item--02 img {
    object-position: left 85% top 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__slide-item--02 img {
    object-position: left 70% top 100%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__slide-item--03 img {
    object-position: left 30% top 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__slide-item--03 img {
    object-position: left 60% top 100%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__slide-item--04 img {
    object-position: left 70% top 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__slide-item--04 img {
    object-position: left 70% top 100%;
  }
}
.top-main__text {
  position: absolute;
  top: 176px;
  right: 110px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  writing-mode: vertical-rl;
  font-size: 2rem;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 1024px) {
  .top-main__text {
    top: 180px;
    right: auto;
    left: 30px;
    writing-mode: horizontal-tb;
    color: #0063b6;
    font-weight: 500;
  }
}
@media screen and (max-width: 599px) {
  .top-main__text {
    top: 130px;
    left: 20px;
    font-size: 1.7rem;
    letter-spacing: 0;
  }
}
.top-main__menu {
  position: absolute;
  bottom: 100px;
  left: 70px;
}
@media print, screen and (max-width: 1600px) {
  .top-main__menu {
    left: 40px;
    bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__menu {
    position: relative;
    left: auto;
    bottom: auto;
  }
}
.top-main__hyoka {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 300px;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .top-main__hyoka {
    bottom: auto;
    top: 100px;
    max-width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__hyoka {
    top: 275px;
    right: 10px;
    max-width: 160px;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-main__hyoka > a:hover {
    opacity: 0.8;
  }
}

.top-main-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list {
    max-width: 460px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-list {
    padding: 30px 30px 50px;
    background-color: #fff;
    max-width: calc(100% - 60px);
    margin-left: 30px;
    margin-top: -100px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-list {
    margin-top: -50px;
    padding: 25px 20px 40px;
    max-width: calc(100% - 20px);
    margin-left: 10px;
    gap: 10px;
  }
}
.top-main-list > li {
  width: calc((100% - 20px) / 2);
  background: linear-gradient(210deg, #017bec 0%, #00a5e2 100%);
  transition: 0.2s;
  border-radius: 2px;
}
@media print, screen and (min-width: 1025px) {
  .top-main-list > li:hover {
    opacity: 0.95;
    transform: translateY(3px);
  }
}
@media screen and (max-width: 599px) {
  .top-main-list > li {
    width: calc((100% - 10px) / 2);
    border-radius: 3px;
  }
}
.top-main-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 96px 15px 70px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list > li > a {
    padding: 96px 15px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a {
    font-size: 1.7rem;
    font-weight: 500;
    padding: 70px 5px 50px;
  }
}
.top-main-list > li > a.gairai {
  background-image: url(../img/common/icon_gairai.svg);
  background-repeat: no-repeat;
  background-size: 47px auto;
  background-position: left 50% top 26px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a.gairai {
    background-size: 30px auto;
    background-position: left 50% top 23px;
  }
}
.top-main-list > li > a.nyuin {
  background-image: url(../img/common/icon_nyuin.svg);
  background-repeat: no-repeat;
  background-size: 58px auto;
  background-position: left 50% top 16px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a.nyuin {
    background-size: 36px auto;
    background-position: left 50% top 17px;
  }
}
.top-main-list > li > a.iryo {
  background-image: url(../img/common/icon_iryo.svg);
  background-repeat: no-repeat;
  background-size: 64px auto;
  background-position: left 50% top 22px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a.iryo {
    background-size: 40px auto;
    background-position: left 50% top 22px;
  }
}
.top-main-list > li > a.hospital {
  background-image: url(../img/common/icon_hospital.svg);
  background-repeat: no-repeat;
  background-size: 64px auto;
  background-position: left 50% top 29px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a.hospital {
    background-size: 40px auto;
    background-position: left 50% top 23px;
  }
}
.top-main-list > li > a.access {
  background-image: url(../img/common/icon_car2.svg);
  background-repeat: no-repeat;
  background-size: 65px auto;
  background-position: left 50% top 28px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a.access {
    background-size: 40px auto;
    background-position: left 50% top 27px;
  }
}
.top-main-list > li > a::before {
  content: "";
  width: 70px;
  height: 25px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -35px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a::before {
    bottom: 15px;
  }
}
.top-main-list > li > a::after {
  content: "";
  width: 18px;
  height: 10px;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  position: absolute;
  left: 50%;
  bottom: 32px;
  margin-left: -9px;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a::after {
    bottom: 22px;
  }
}
.top-main-list > li > a span {
  margin-top: 8px;
  display: block;
  font-size: 1rem;
  opacity: 0.28;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .top-main-list > li > a span {
    margin-top: 2px;
  }
}

.top-main-list2 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  max-width: 520px;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list2 {
    max-width: 460px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-list2 {
    margin: 20px auto 80px;
    max-width: calc(100% - 120px);
  }
}
@media screen and (max-width: 599px) {
  .top-main-list2 {
    margin: 25px auto 50px;
    max-width: calc(100% - 60px);
    flex-wrap: wrap;
    gap: 10px;
  }
}
.top-main-list2 > li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 599px) {
  .top-main-list2 > li {
    width: 100%;
  }
}
.top-main-list2__links {
  background: rgb(252, 172, 183);
  background: linear-gradient(127deg, rgb(252, 172, 183) 0%, rgb(251, 142, 158) 100%);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  height: 100%;
  position: relative;
}
@media print, screen and (min-width: 1025px) {
  .top-main-list2__links:hover {
    opacity: 0.95;
    transform: translateY(3px);
  }
}
.top-main-list2__links::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/arrow05.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-main-list2__links--sukoyaka {
  background: rgb(110, 198, 80);
  background: linear-gradient(127deg, rgb(110, 198, 80) 0%, rgb(86, 170, 20) 100%);
}
.top-main-list2__links--sukoyaka::before {
  background-image: url(../img/common/icon_target.svg);
  opacity: 0.5;
  background-size: 17px auto;
  background-position: center;
}
.top-main-list2__links-photo {
  width: 90px;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list2__links-photo {
    width: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-list2__links-photo {
    width: 90px;
  }
}
.top-main-list2__links-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-main-list2__links-text {
  width: calc(100% - 90px);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 12px;
  line-height: 1.3;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list2__links-text {
    width: calc(100% - 70px);
  }
}
@media screen and (max-width: 1024px) {
  .top-main-list2__links-text {
    width: calc(100% - 90px);
  }
}
@media screen and (max-width: 599px) {
  .top-main-list2__links-text {
    padding: 8px 12px;
  }
}
.top-main-list2__links-text > p {
  font-size: 1.8rem;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list2__links-text > p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-list2__links-text > p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-list2__links-text > p {
    font-size: 1.7rem;
  }
}
.top-main-list2__links-text > p > span {
  font-size: 1.4rem;
  display: block;
}
.top-main-list2__links-text--sukoyaka > p {
  font-size: 1.9rem;
}
@media print, screen and (max-width: 1600px) {
  .top-main-list2__links-text--sukoyaka > p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-list2__links-text--sukoyaka > p {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-list2__links-text--sukoyaka > p {
    font-size: 1.8rem;
  }
}

.top-about {
  padding: 102px 50px 140px;
  text-align: center;
  background-image: url(../img/top/about_img02.webp), url(../img/top/about_img01.webp), url(../img/top/about_bg.webp);
  background-size: 23% auto, 23% auto, cover;
  background-position: right 7% top 50%, left 7% top 50%, center;
  background-repeat: no-repeat;
}
@media print, screen and (max-width: 1400px) {
  .top-about {
    padding: 82px 20px 126px;
    background-position: right 3% top 50%, left 3% top 50%, center;
  }
}
@media screen and (max-width: 1024px) {
  .top-about {
    background-image: url(../img/top/about_img02.webp), url(../img/top/about_img01.webp), url(../img/top/about_sp_bg.webp);
    padding: 42px 50px 67%;
    background-size: 42% auto, 42% auto, cover;
    background-position: right 14% bottom 100px, left 14% bottom 100px, left 0 top 0;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 32px 20px 73%;
    background-size: 45% auto, 45% auto, cover;
    background-position: right 10% bottom 55px, left 10% bottom 55px, left 0 top 0;
  }
}
.top-about__copy {
  margin-top: 80px;
  margin-bottom: 45px;
  font-size: 2.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #0074b6;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1400px) {
  .top-about__copy {
    font-size: 2.7rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__copy {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__copy {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0;
  }
}
.top-about__copy::before {
  content: "ABOUT US";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  font-size: 14rem;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: 200;
  color: #f0f7fb;
  z-index: -1;
  text-align: center;
}
@media print, screen and (max-width: 1400px) {
  .top-about__copy::before {
    top: -90px;
    font-size: 13rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__copy::before {
    top: -70px;
    font-size: 11rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__copy::before {
    top: -30px;
    font-size: 6rem;
  }
}
.top-about__text {
  font-size: 1.8rem;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.3;
}
@media print, screen and (max-width: 1400px) {
  .top-about__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__text {
    font-size: 1.6rem;
    text-align: justify;
    line-height: 1.8;
  }
}

.top-news {
  padding: 100px 50px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 80px 50px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 60px 20px 50px;
  }
}
.top-news__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.top-news-block {
  position: relative;
  width: 100%;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .top-news-block {
    width: 100%;
  }
}
.top-news-block__title {
  margin-bottom: 35px;
  font-size: 3.5rem;
  color: #0074b6;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-news-block__title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-block__title {
    font-size: 3.1rem;
    margin-bottom: 26px;
  }
}
.top-news-block__title span {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  margin-left: 20px;
}

.top-news-bnrs {
  width: 100%;
}

.top-news-bnr-list {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .top-news-bnr-list {
    display: flex;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-bnr-list {
    flex-wrap: wrap;
    gap: 0;
    margin: 45px 10px 0;
  }
}
.top-news-bnr-list > li {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1024px) {
  .top-news-bnr-list > li {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-news-bnr-list > li {
    width: 100%;
    margin-bottom: 15px;
  }
}
.top-news-bnr-list > li > a {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  overflow: hidden;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.top-news-bnr-list > li > a::before {
  content: "";
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media print, screen and (min-width: 1025px) {
  .top-news-bnr-list > li > a:hover {
    opacity: 0.8;
  }
}
.top-news-bnr-list > li > a.family {
  background-image: url(../img/top/bnr_bg_family.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top-news-bnr-list > li > a.medical {
  background-image: url(../img/top/bnr_bg_medical.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top-news-bnr-list > li > a.staffblog {
  background-image: url(../img/top/bnr_bg_staffblog.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top-news-bnr-list > li > a.magazine {
  background-image: url(../img/top/bnr_bg_magazine.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top-news-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  position: absolute;
  top: -10px;
  right: 0;
  width: calc(100% - 265px);
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 1024px) {
  .top-news-tab {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-news-tab {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    top: auto;
    border-bottom: none;
    margin-bottom: 5px;
  }
}
.top-news-tab__item {
  height: 54px;
  color: #000000;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  font-size: 1.5rem;
  padding: 0 20px;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media print, screen and (min-width: 600px) {
  .top-news-tab__item {
    flex: 1;
  }
  .top-news-tab__item:nth-child(4) {
    flex: 2;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-news-tab__item:hover {
    background-color: #f7f7f7;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-tab__item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-tab__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 33.3333333333%;
    height: 46px;
    background-color: #f0f0f0;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .top-news-tab__item:nth-child(4), .top-news-tab__item:nth-child(5) {
    width: 50%;
  }
}
.top-news-tab__item[aria-selected=true] {
  border-left: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  border-top: 3px solid #0063b6;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-news-tab__item[aria-selected=true] {
    border: none;
    border-right: 2px solid #fff !important;
    border-bottom: 2px solid #fff !important;
  }
}
.top-news-tab__item[aria-selected=true]::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .top-news-tab__item[aria-selected=true] {
    background-color: #0063b6;
    border: none;
    color: #fff;
  }
  .top-news-tab__item[aria-selected=true]::before {
    content: none;
  }
  .top-news-tab__item[aria-selected=true]::after {
    content: "";
    margin-left: -2px;
    position: absolute;
    left: 50%;
    bottom: -14px;
    border-width: 7px 5px;
    border-style: solid;
    border-color: transparent;
    border-top-color: #0063b6;
  }
}

.top-news-content__no-news {
  margin-top: 20px;
  margin-bottom: 60px;
  background-color: #f7f7f7;
  padding: 30px;
  text-align: center;
}

.top-news-item {
  border-bottom: 1px solid #cfdee4;
}
.top-news-item > a {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  align-items: center;
}
@media print, screen and (min-width: 1025px) {
  .top-news-item > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
.top-news-item__date {
  width: 120px;
  font-size: 1.6rem;
  color: #929292;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-news-item__date {
    width: 110px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__date {
    width: 100px;
    letter-spacing: 0;
  }
}
.top-news-item__category {
  width: 120px;
  margin-right: 30px;
  border: 1px solid #0074b6;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  border-radius: 100px;
  text-align: center;
  color: #0074b6;
  padding: 3px;
}
@media screen and (max-width: 1024px) {
  .top-news-item__category {
    padding: 2px;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__category {
    letter-spacing: 0;
  }
}
.top-news-item__text {
  width: calc(100% - 270px);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #222;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-news-item__text {
    margin-top: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__text {
    margin-top: 5px;
  }
}

.top-news-btn {
  margin-top: 20px;
  text-align: right;
}
.top-news-btn > a {
  font-size: 1.6rem;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  position: relative;
  padding-left: 32px;
}
.top-news-btn > a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 23px;
  height: 23px;
  background-color: #0063b6;
  border-radius: 100px;
}
@media screen and (max-width: 599px) {
  .top-news-btn > a::before {
    top: 3px;
  }
}
.top-news-btn > a::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.top-news-btn > a span {
  border-bottom: 1px solid #222;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
}
@media print, screen and (min-width: 1025px) {
  .top-news-btn > a:hover span {
    border-bottom: none;
  }
}
@media screen and (max-width: 599px) {
  .top-news-btn > a {
    font-size: 1.5rem;
  }
}

.top-service {
  position: relative;
  padding-top: 100px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .top-service {
    display: block;
    padding-top: 250px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-service {
    padding-top: 200px;
    margin-bottom: 60px;
  }
}
.top-service::before {
  content: "";
  width: 70%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/top/service_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  border-top-right-radius: 40px;
  background-position: left 50% top 50%;
}
@media print, screen and (max-width: 1400px) {
  .top-service::before {
    background-position: left 50% top 50%;
  }
}
@media screen and (max-width: 1024px) {
  .top-service::before {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0;
    background-position: left 0 top 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-service::before {
    height: 300px;
    background-position: left 0 top 50%;
  }
}

.top-service-block {
  width: 100%;
  max-width: 900px;
  text-align: left;
  background-color: #fff;
  border-top-left-radius: 30px;
  padding: 120px 95px 0;
  overflow: hidden;
  background-image: url(../img/top/bg_service.png);
  background-repeat: no-repeat;
  background-position: right 0 top -5px;
  background-size: 720px auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
@media print, screen and (max-width: 1400px) {
  .top-service-block {
    max-width: 650px;
    padding: 110px 60px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-service-block {
    max-width: 100%;
    border-radius: 0;
    padding: 100px 50px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block {
    padding: 70px 20px 0;
  }
}
.top-service-block::before {
  content: "";
  width: 370px;
  height: 370px;
  border-radius: 50%;
  position: absolute;
  top: -180px;
  left: -125px;
  display: block;
  background: linear-gradient(210deg, #1497e2 0%, #16b9d7 100%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-service-block::before {
    top: -190px;
    left: -155px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block::before {
    width: 260px;
    height: 260px;
    top: -130px;
    left: -140px;
  }
}
.top-service-block::after {
  content: "SERVICE";
  color: #fff;
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 15rem;
  font-family: "Jost", sans-serif;
  font-weight: 200;
  line-height: 1;
  z-index: -2;
}
@media print, screen and (max-width: 1400px) {
  .top-service-block::after {
    font-size: 12rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-service-block::after {
    font-size: 10rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block::after {
    font-size: 6rem;
    top: 30px;
    right: 30px;
  }
}
.top-service-block__title {
  margin-bottom: 50px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #0074b6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .top-service-block__title {
    font-size: 2.7rem;
    margin-bottom: 35px;
  }
}
.top-service-block__title span {
  color: #fff;
}
.top-service-block__text {
  margin-bottom: 35px;
  font-weight: 400;
}

.top-service-links {
  max-width: 470px;
}
@media screen and (max-width: 1024px) {
  .top-service-links {
    max-width: 100%;
  }
}
.top-service-links > li {
  margin-bottom: 10px;
}
.top-service-links > li:last-child {
  margin-bottom: 0;
}
.top-service-links > li > a {
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #222;
  font-size: 1.8rem;
  display: block;
  background-color: #fff;
  background: linear-gradient(90deg, #daf0fb 0%, #eff8fc 100%);
  line-height: 1.4;
  padding: 16px 16px 16px 83px;
  border-radius: 3px;
  position: relative;
}
@media print, screen and (min-width: 1025px) {
  .top-service-links > li > a:hover {
    transform: translateX(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .top-service-links > li > a {
    padding: 17px 16px 18px 63px;
    font-size: 1.7rem;
  }
}
.top-service-links > li > a::before {
  content: "";
  width: 50px;
  height: 25px;
  border-radius: 100px;
  background: linear-gradient(90deg, #16b9d7 0%, #21a0e2 100%);
  position: absolute;
  left: 18px;
  top: 15px;
}
@media screen and (max-width: 599px) {
  .top-service-links > li > a::before {
    top: 17px;
    left: 13px;
    width: 40px;
  }
}
.top-service-links > li > a::after {
  content: "";
  width: 18px;
  height: 10px;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  position: absolute;
  left: 35px;
  top: 23px;
}
@media screen and (max-width: 599px) {
  .top-service-links > li > a::after {
    top: 25px;
    left: 25px;
  }
}

.top-self {
  margin-bottom: 95px;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .top-self {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-self {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}

.top-self-block {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 50px 90px;
  background-image: url(../img/top/bg_self.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 2px;
  text-align: center;
}
@media print, screen and (max-width: 1400px) {
  .top-self-block {
    padding: 80px 50px 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-self-block {
    padding: 70px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-self-block {
    padding: 50px 20px 50px;
  }
}
.top-self-block__title {
  margin-bottom: 12px;
  font-size: 3.3rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media print, screen and (max-width: 1400px) {
  .top-self-block__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-self-block__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-self-block__title {
    margin-bottom: 18px;
    font-size: 2.3rem;
    font-weight: 500;
  }
}
.top-self-block__title span {
  padding: 10px 20px 10px 60px;
  background-image: url(../img/common/icon_megane.svg);
  background-repeat: no-repeat;
  background-size: 41px auto;
  background-position: left 0 top 15px;
}
@media print, screen and (max-width: 1400px) {
  .top-self-block__title span {
    background-size: 37px auto;
    padding: 10px 20px 10px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-self-block__title span {
    padding: 15px 10px 10px 40px;
    background-size: 30px auto;
    background-position: left 0 top 17px;
  }
}
.top-self-block__text {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-self-block__text {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-self-block__text {
    line-height: 1.4;
  }
}

.top-self-list {
  max-width: 890px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-self-list {
    padding-top: 30px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-self-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.top-self-list > li {
  width: calc((100% - 76px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-self-list > li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-self-list > li {
    width: 100%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-self-list > li > a:hover {
    opacity: 0.8;
  }
}

.top-blog {
  margin-bottom: 100px;
  position: relative;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .top-blog {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-blog {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.top-blog__inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.top-blog__block01 {
  width: 330px;
}
@media screen and (max-width: 1024px) {
  .top-blog__block01 {
    width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .top-blog__block01 {
    width: 100%;
  }
}
.top-blog__block02 {
  width: calc(100% - 330px);
}
@media screen and (max-width: 1024px) {
  .top-blog__block02 {
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 599px) {
  .top-blog__block02 {
    width: 100%;
  }
}

.top-blog-title {
  margin-bottom: 35px;
  font-family: "Jost", sans-serif;
  font-size: 3.5rem;
  color: #0074b6;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .top-blog-title {
    margin-bottom: 25px;
    font-size: 3.1rem;
  }
}
.top-blog-title span {
  margin-top: 4px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
}

@media screen and (max-width: 599px) {
  .top-blog-list {
    margin-bottom: 20px;
  }
}
.top-blog-list > li {
  border-bottom: 1px solid #e0eaee;
}
.top-blog-list > li > a {
  display: block;
  padding: 16px 0;
  font-weight: 400;
  color: #222;
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .top-blog-list > li > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 1024px) {
  .top-blog-list > li > a {
    padding: 13px 0;
  }
}
.top-blog-list > li > a > dl {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-blog-list > li > a > dl {
    flex-wrap: wrap;
  }
}
.top-blog-list > li > a > dl > dt {
  width: 130px;
  color: #929292;
  font-size: 1.5rem;
  font-weight: 400;
  padding-top: 2px;
}
@media screen and (max-width: 1024px) {
  .top-blog-list > li > a > dl > dt {
    width: 100%;
  }
}
.top-blog-list > li > a > dl > dd {
  width: calc(100% - 130px);
}
@media screen and (max-width: 1024px) {
  .top-blog-list > li > a > dl > dd {
    width: 100%;
  }
}
.top-blog-list > li:first-child > a {
  padding-top: 5px;
}

.top-blog-other {
  position: absolute;
  top: 96px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .top-blog-other {
    position: relative;
    top: auto;
    width: 100%;
  }
}
.top-blog-other__btn {
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .top-blog-other__btn {
    margin-bottom: 30px;
    text-align: right;
  }
}
.top-blog-other__btn > a {
  font-size: 1.6rem;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  position: relative;
  padding-left: 32px;
}
.top-blog-other__btn > a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 23px;
  height: 23px;
  background-color: #0063b6;
  border-radius: 100px;
}
.top-blog-other__btn > a::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.top-blog-other__btn > a span {
  border-bottom: 1px solid #222;
  padding-bottom: 4px;
  letter-spacing: -0.1em;
}
@media print, screen and (min-width: 1025px) {
  .top-blog-other__btn > a:hover span {
    border-bottom: none;
  }
}

.top-blog-sns {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .top-blog-sns {
    justify-content: center;
  }
}
.top-blog-sns > li {
  margin-right: 8px;
}
.top-blog-sns > li > a {
  width: 60px;
  height: 60px;
  background-color: #ecf1f3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 1025px) {
  .top-blog-sns > li > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 599px) {
  .top-blog-sns > li > a {
    width: 50px;
    height: 50px;
  }
}

.top-onkokai {
  padding: 100px 50px;
  background-image: url(../img/top/onkokai_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .top-onkokai {
    padding: 70px 20px 65px;
  }
}
.top-onkokai__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-onkokai__inner {
    flex-wrap: wrap;
  }
}
.top-onkokai__block01 {
  width: 40%;
  padding-top: 90px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-onkokai__block01 {
    width: 100%;
    padding-top: 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai__block01 {
    margin-bottom: 40px;
  }
}
.top-onkokai__block02 {
  width: 60%;
  padding-left: 100px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-onkokai__block02 {
    width: 100%;
    padding-left: 0;
  }
}
.top-onkokai__title {
  font-size: 5.4rem;
  font-weight: 300;
  color: #f38383;
  line-height: 1.4;
  margin-bottom: 43px;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1400px) {
  .top-onkokai__title {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-onkokai__title {
    margin-bottom: 25px;
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai__title {
    margin-bottom: 20px;
    font-size: 3.5rem;
    font-weight: 400;
  }
}
.top-onkokai__title::before {
  content: "ONKOKAI";
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  font-size: 15rem;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: 200;
  color: #feeef2;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-onkokai__title::before {
    font-size: 12rem;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai__title::before {
    font-size: 6rem;
    top: -30px;
  }
}
.top-onkokai__text {
  margin-bottom: 40px;
  font-weight: 400;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .top-onkokai__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai__text {
    margin-bottom: 25px;
    line-height: 1.8;
  }
}
.top-onkokai__btn {
  max-width: 270px;
}

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

.top-onkokai-item {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1024px) {
  .top-onkokai-item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai-item {
    width: calc((100% - 10px) / 2);
  }
}
.top-onkokai-item > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px 40px 2px 2px;
  overflow: hidden;
  color: #fff;
}
@media print, screen and (min-width: 1025px) {
  .top-onkokai-item > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai-item > a {
    border-radius: 2px 20px 2px 2px;
  }
}
.top-onkokai-item__photo {
  width: 100%;
  height: 180px;
}
@media screen and (max-width: 599px) {
  .top-onkokai-item__photo {
    height: 90px;
  }
}
.top-onkokai-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-onkokai-item__title {
  background: linear-gradient(90deg, #44adeb 0%, #6ccddf 100%);
  padding: 16px 16px;
  font-size: min(1.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-onkokai-item__title {
    font-size: min(2.7vw, 2.1rem);
  }
}
@media screen and (max-width: 599px) {
  .top-onkokai-item__title {
    font-size: min(3.9vw, 1.9rem);
    padding: 12px 10px;
    font-weight: 500;
  }
}
.top-onkokai-item__title::before {
  content: "";
  width: 50px;
  height: 25px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 10px;
  bottom: 15px;
}
@media screen and (max-width: 599px) {
  .top-onkokai-item__title::before {
    content: none;
  }
}
.top-onkokai-item__title::after {
  content: "";
  width: 18px;
  height: 10px;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  position: absolute;
  right: 25px;
  bottom: 22px;
}
@media screen and (max-width: 599px) {
  .top-onkokai-item__title::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    bottom: auto;
    margin-top: -3px;
    background-image: none;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.3s;
  }
}
.top-onkokai-item__title span {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .top-onkokai-item__title span {
    font-size: 1.2rem;
  }
}

.top-recruit {
  padding: 180px 50px 166px;
  background-image: url(../img/top/recruit_bg.webp);
  background-size: cover;
  background-position: left 50% bottom 10%;
}
@media print, screen and (max-width: 1400px) {
  .top-recruit {
    background-position: left 70% bottom 10%;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit {
    padding: 120px 50px 15%;
    background-position: right 20% bottom -100px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #f8f4ef;
    background-image: url(../img/top/recruit_bg_sp.webp);
  }
}
@media screen and (max-width: 599px) {
  .top-recruit {
    padding: 65px 20px 13%;
    background-size: 100% auto;
    background-position: right 30% bottom -2px;
  }
}
.top-recruit__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.top-recruit-title {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 599px) {
  .top-recruit-title {
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
}
.top-recruit-title__title {
  font-size: 5.4rem;
  font-weight: 400;
  color: #0063b6;
  line-height: 1.4;
  margin-bottom: 43px;
  position: relative;
  z-index: 1;
  margin-right: 45px;
}
@media print, screen and (max-width: 1400px) {
  .top-recruit-title__title {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-title__title {
    font-size: 4.5rem;
    margin-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-title__title {
    font-size: 3.5rem;
    margin-right: 0;
    margin-bottom: 10px;
    font-weight: 400;
    width: 100%;
  }
}
.top-recruit-title__title::before {
  content: "RECRUIT";
  position: absolute;
  top: -90px;
  left: -15px;
  width: 100%;
  font-size: 15rem;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: 200;
  color: rgba(0, 99, 182, 0.08);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-recruit-title__title::before {
    font-size: 12rem;
    top: -60px;
    left: -5px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-title__title::before {
    font-size: 6rem;
    top: -30px;
    left: 0;
  }
}
.top-recruit-title__text {
  color: #0063b6;
  font-weight: 500;
}

.top-recruit-list {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .top-recruit-list {
    margin-bottom: 35px;
  }
}
.top-recruit-list > li {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .top-recruit-list > li {
    margin-bottom: 10px;
  }
}
.top-recruit-list > li > a {
  color: #0063b6;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 70px;
  position: relative;
  display: block;
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .top-recruit-list > li > a:hover {
    transform: translateX(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-list > li > a {
    padding-left: 50px;
  }
}
.top-recruit-list > li > a::before {
  content: "";
  width: 50px;
  height: 25px;
  border-radius: 100px;
  background-color: rgba(0, 99, 182, 0.8);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 599px) {
  .top-recruit-list > li > a::before {
    width: 40px;
  }
}
.top-recruit-list > li > a::after {
  content: "";
  width: 18px;
  height: 10px;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  position: absolute;
  left: 16px;
  top: 8px;
}
@media screen and (max-width: 599px) {
  .top-recruit-list > li > a::after {
    left: 12px;
  }
}

.top-recruit-other {
  max-width: 580px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 599px) {
  .top-recruit-other {
    flex-wrap: wrap;
    gap: 0;
    max-width: 200px;
  }
}
.top-recruit-other > li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 599px) {
  .top-recruit-other > li {
    width: 100%;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------
新着情報
----------------------------------------------------------*/
.news-info-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .news-info-tab {
    margin-left: -29px;
    margin-right: -29px;
  }
}
@media screen and (max-width: 599px) {
  .news-info-tab {
    margin-left: -19px;
    margin-right: -19px;
    margin-bottom: 30px;
  }
}
.news-info-tab__item {
  width: 20%;
}
.news-info-tab__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #222222;
  text-align: center;
  border-bottom: 1px solid #d7d7d7;
  padding: 12px 5px;
}
@media print, screen and (min-width: 1025px) {
  .news-info-tab__item a:hover {
    background-color: #f7f7f7;
  }
}
@media screen and (max-width: 834px) {
  .news-info-tab__item a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .news-info-tab__item a {
    font-size: 1.3rem;
    line-height: 1.3;
    padding: 10px 2px;
  }
}
.news-info-tab__item.active a {
  border-top: 3px solid #0063b6;
  border-right: 1px solid #d7d7d7;
  border-bottom: none;
  border-left: 1px solid #d7d7d7;
}
@media screen and (max-width: 599px) {
  .news-info-tab__item.active a {
    border-top-width: 2px;
  }
}

.news-info-item {
  word-break: break-all;
  border-bottom: 1px solid #cfdee4;
}
.news-info-item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}
@media print, screen and (min-width: 1025px) {
  .news-info-item > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
.news-info-item__date {
  width: 120px;
  color: #929292;
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .news-info-item__date {
    width: 105px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .news-info-item__date {
    width: 95px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.news-info-item__category {
  margin-right: 30px;
}
@media screen and (max-width: 834px) {
  .news-info-item__category {
    margin-right: 0;
  }
}
.news-info-item__text {
  width: calc(100% - 270px);
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .news-info-item__text {
    width: 100%;
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .news-info-item__text {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}

.entry-title-wrap {
  position: relative;
  border-bottom: 1px solid #cfdee4;
  padding: 4px 0 26px 34px;
  margin-bottom: 60px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .entry-title-wrap {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .entry-title-wrap {
    padding: 5px 0 21px 24px;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap {
    padding: 6px 0 16px 15px;
    margin-bottom: 40px;
  }
}
.entry-title-wrap::before, .entry-title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: calc(100% - 16px);
  border-radius: 2px;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap::before, .entry-title-wrap::after {
    width: 3px;
    height: calc(100% - 12px);
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap::before, .entry-title-wrap::after {
    width: 2px;
    height: calc(100% - 8px);
  }
}
.entry-title-wrap::before {
  left: 0;
  background-color: #0074b6;
}
.entry-title-wrap::after {
  left: 6px;
  background-color: #14afdb;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap::after {
    left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap::after {
    left: 3px;
  }
}
.entry-title-wrap__txt {
  margin-bottom: 5px;
}
.entry-title-wrap__txt__date {
  color: #929292;
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap__txt__date {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap__txt__date {
    font-size: 1.4rem;
  }
}
.entry-title-wrap__txt .news-icon {
  margin-left: 1em;
}
.entry-title-wrap__title {
  font-size: 3.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap__title {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap__title {
    font-size: 1.9rem;
  }
}

.news-info-btn-box {
  margin-top: 60px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.news-info-btn-box__btn {
  max-width: 270px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.news-info-btn-box__btn::after {
  left: 20px;
  right: auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*--------------------------------------------------------
採用情報
----------------------------------------------------------*/
.recruit-slider {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .recruit-slider {
    margin-top: 60px;
  }
}
.recruit-slider__slider-photo .slider-photo__item {
  width: 310px !important;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .recruit-slider__slider-photo .slider-photo__item {
    width: 279px !important;
    margin-right: 8px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-slider__slider-photo .slider-photo__item {
    width: 248px !important;
    margin-right: 6px;
  }
}

/*--------------------------------------------------------
募集要項
----------------------------------------------------------*/
.guideline-info-list > li {
  border-bottom: 1px solid #cfdee4;
}

.guideline-info-none {
  font-size: 1.6rem;
  line-height: 1;
  padding-top: 20px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .guideline-info-none {
    font-size: 1.5rem;
  }
}

.guideline-info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #222222;
  padding: 20px 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.guideline-info-box__form {
  width: 120px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-info-box__form {
    width: 100px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .guideline-info-box__form {
    width: 80px;
    font-size: 1.3rem;
  }
}
.guideline-info-box__body {
  width: calc(99.9% - 120px - 30px);
  margin-left: 30px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-info-box__body {
    width: calc(99.9% - 100px - 20px);
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-info-box__body {
    width: calc(99.9% - 80px - 10px);
    margin-left: 10px;
  }
}
.guideline-info-box__body__title {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .guideline-info-box__body__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .guideline-info-box__body__title {
    font-size: 1.6rem;
  }
}
.guideline-info-box__body__detail {
  font-size: 0;
  padding-top: 5px;
  margin-right: -5px;
}
.guideline-info-box__body__detail__item {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.15;
  background-color: #f4f4f4;
  border-radius: 30px;
  padding: 7px 20px 8px;
  margin-top: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 834px) {
  .guideline-info-box__body__detail__item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .guideline-info-box__body__detail__item {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .guideline-info-box:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}

.form-icon {
  color: #ffffff;
  line-height: 1;
  text-align: center;
  padding: 6px 5px 7px;
}
.form-icon--form01 {
  background-color: #0074b6;
}
.form-icon--form02 {
  background-color: #ffae00;
}

.guideline-title-wrap {
  position: relative;
  border-bottom: 1px solid #cfdee4;
  padding: 4px 0 12px 34px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-title-wrap {
    padding: 4px 0 10px 24px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-title-wrap {
    padding: 4px 0 8px 15px;
  }
}
.guideline-title-wrap::before, .guideline-title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: calc(100% - 14px);
  border-radius: 2px;
}
@media screen and (max-width: 834px) {
  .guideline-title-wrap::before, .guideline-title-wrap::after {
    width: 3px;
    height: calc(100% - 11px);
  }
}
@media screen and (max-width: 599px) {
  .guideline-title-wrap::before, .guideline-title-wrap::after {
    width: 2px;
    height: calc(100% - 8px);
  }
}
.guideline-title-wrap::before {
  left: 0;
  background-color: #0074b6;
}
.guideline-title-wrap::after {
  left: 6px;
  background-color: #14afdb;
}
@media screen and (max-width: 834px) {
  .guideline-title-wrap::after {
    left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-title-wrap::after {
    left: 3px;
  }
}
.guideline-title-wrap__txt {
  width: 120px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-title-wrap__txt {
    width: 100px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .guideline-title-wrap__txt {
    width: 80px;
    font-size: 1.1rem;
  }
}
.guideline-title-wrap__title {
  color: #222222;
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 8px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-title-wrap__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .guideline-title-wrap__title {
    font-size: 2.2rem;
  }
}

.guideline-info-txt {
  font-size: 0;
  padding-top: 10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.guideline-info-txt__item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.15;
  background-color: #f4f4f4;
  border-radius: 30px;
  padding: 7px 20px 8px;
  margin-top: 10px;
  margin-right: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-info-txt__item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .guideline-info-txt__item {
    font-size: 1.2rem;
  }
}

.guideline-detail-update {
  display: block;
  color: #222222;
  font-size: 1.6rem;
  line-height: 1;
  text-align: right;
  margin-bottom: 14px;
}
@media screen and (max-width: 834px) {
  .guideline-detail-update {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-detail-update {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .guideline-detail-table {
    display: block;
  }
}
.guideline-detail-table th {
  width: 230px;
}
@media screen and (max-width: 834px) {
  .guideline-detail-table th {
    width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-detail-table th {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .guideline-detail-table tbody {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .guideline-detail-table tr {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .guideline-detail-table td {
    display: block;
    padding: 10px 0;
  }
}

.guideline-entry-btn-box {
  background-color: #faf7e9;
  padding: 25px 30px;
}
@media screen and (max-width: 599px) {
  .guideline-entry-btn-box {
    padding: 15px 20px;
  }
}
.guideline-entry-btn-box__btn {
  max-width: 300px;
}

.guideline-contact-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #cfdee4;
  border-radius: 3px;
  padding: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .guideline-contact-box {
    padding: 8px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-contact-box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px;
  }
}
.guideline-contact-box__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  background-color: #0074b6;
  border-radius: 3px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .guideline-contact-box__head {
    width: 180px;
  }
}
@media screen and (max-width: 834px) {
  .guideline-contact-box__head {
    width: 160px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-contact-box__head {
    width: 100%;
    font-size: 1.5rem;
    padding: 5px 10px;
  }
}
.guideline-contact-box__body {
  width: calc(99.9% - 200px);
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 20px 20px 20px 30px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .guideline-contact-box__body {
    width: calc(99.9% - 180px);
  }
}
@media screen and (max-width: 834px) {
  .guideline-contact-box__body {
    width: calc(99.9% - 160px);
    padding: 16px 16px 16px 24px;
  }
}
@media screen and (max-width: 599px) {
  .guideline-contact-box__body {
    width: 100%;
    font-size: 1.5rem;
    padding: 20px 15px;
  }
}
.guideline-contact-box__body__address {
  margin-top: 0.4em;
}
.guideline-contact-box__body__tel {
  margin-top: 0.4em;
}
.guideline-contact-box__body__tel__link {
  color: #0074b6;
  font-weight: bold;
}
.guideline-contact-box__body__mail {
  margin-top: 0.4em;
}
.guideline-contact-box__body__mail__link {
  color: #0074b6;
  font-weight: bold;
}

.guideline-detail-btn-box {
  margin-top: 60px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.guideline-detail-btn-box__btn {
  max-width: 270px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.guideline-detail-btn-box__btn::after {
  left: 20px;
  right: auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*--------------------------------------------------------
エントリーフォーム
----------------------------------------------------------*/
.title-entry {
  position: relative;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 0 5px 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .title-entry {
    font-size: 2.4rem;
    padding: 2px 0 2px 20px;
  }
}
@media screen and (max-width: 599px) {
  .title-entry {
    font-size: 2rem;
    padding: 0 0 0 16px;
  }
}
.title-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 2px;
  background-color: #0074b6;
}
@media screen and (max-width: 834px) {
  .title-entry::before {
    width: 3px;
  }
}

.entry-casual {
  background-image: url(../img/entry/bg_entry.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  padding: 20px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .entry-casual {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 834px) {
  .entry-casual {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .entry-casual {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 45px;
  }
}
.entry-casual__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fefefe;
  border-radius: 3px;
  padding: 40px 40px 0;
}
@media screen and (max-width: 834px) {
  .entry-casual__inner {
    padding: 30px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .entry-casual__inner {
    padding: 30px 20px 0;
  }
}
.entry-casual__catch {
  color: #f89200;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .entry-casual__catch {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-casual__catch {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 320px) {
  .entry-casual__catch {
    font-size: 1.6rem;
  }
}
.entry-casual__read {
  color: #222222;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .entry-casual__read {
    font-size: 1.4rem;
  }
}
.entry-casual__img {
  margin-top: 20px;
}
.entry-casual__img img {
  max-width: 628px;
  width: 100%;
}

.entry-tel {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .entry-tel {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 834px) {
  .entry-tel {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .entry-tel {
    margin-bottom: 40px;
  }
}
.entry-tel__box {
  text-align: center;
  background-color: #e6f4f9;
  border-radius: 3px;
  padding: 20px;
}
.entry-tel__box__text {
  font-size: 1.7rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .entry-tel__box__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .entry-tel__box__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-tel__box__text {
    font-size: 1.4rem;
  }
}
.entry-tel__box__tel__link {
  display: inline-block;
  color: #1f51a2;
  font-size: 3.3rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
  background-image: url(../img/common/icon_tel.svg);
  background-position: left top 3px;
  background-repeat: no-repeat;
  background-size: 21px auto;
  padding-left: 30px;
}
@media screen and (max-width: 834px) {
  .entry-tel__box__tel__link {
    font-size: 3rem;
    background-size: 19px auto;
    padding-left: 28px;
  }
}
@media screen and (max-width: 599px) {
  .entry-tel__box__tel__link {
    font-size: 2.6rem;
    background-position: left top 2px;
    background-size: 16px auto;
    padding-left: 24px;
  }
}

.entry-form__send-btn {
  width: 100%;
  max-width: 270px;
}
@media screen and (max-width: 599px) {
  .entry-form__send-btn {
    width: 80%;
  }
}

/*--------------------------------------------------------
サイトマップ
----------------------------------------------------------*/
@media screen and (max-width: 834px) {
  .sitemap-top-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-top-title {
    margin-bottom: 0;
  }
}
.sitemap-top-title__link {
  display: inline-block;
  position: relative;
  color: #222222;
  padding-left: 40px;
}
@media screen and (max-width: 834px) {
  .sitemap-top-title__link {
    padding-left: 35px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-top-title__link {
    padding-left: 30px;
  }
}
.sitemap-top-title__link::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #0063b6;
  border-radius: 100px;
}
@media screen and (max-width: 834px) {
  .sitemap-top-title__link::before {
    top: 7px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-top-title__link::before {
    top: 5px;
    width: 20px;
    height: 20px;
  }
}
.sitemap-top-title__link::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 9px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .sitemap-top-title__link::after {
    top: 15px;
    left: 7px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-top-title__link::after {
    top: 12px;
    left: 5px;
    width: 7px;
    height: 7px;
  }
}
@media print, screen and (min-width: 1025px) {
  .sitemap-top-title__link:hover {
    color: #0074b6;
  }
}

.sitemap-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.sitemap-wrap .sitemap-category--lv2 {
  margin-top: 10px;
  margin-right: 1em;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .sitemap-wrap .sitemap-category--lv2 {
    width: calc((99.9% - 3em - 20px) / 4);
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(1), .sitemap-wrap .sitemap-category--lv2:nth-child(2), .sitemap-wrap .sitemap-category--lv2:nth-child(3), .sitemap-wrap .sitemap-category--lv2:nth-child(4) {
    margin-top: 20px;
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(4n) {
    margin-right: 10px;
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(4n+1) {
    margin-left: 10px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .sitemap-wrap .sitemap-category--lv2 {
    width: calc((99.9% - 2em - 20px) / 3);
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) and (max-width: 834px) {
  .sitemap-wrap .sitemap-category--lv2 {
    width: calc((99.9% - 2em - 10px) / 3);
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .sitemap-wrap .sitemap-category--lv2:nth-child(1), .sitemap-wrap .sitemap-category--lv2:nth-child(2), .sitemap-wrap .sitemap-category--lv2:nth-child(3) {
    margin-top: 20px;
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(3n) {
    margin-right: 10px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) and (max-width: 834px) {
  .sitemap-wrap .sitemap-category--lv2:nth-child(3n) {
    margin-right: 5px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .sitemap-wrap .sitemap-category--lv2:nth-child(3n+1) {
    margin-left: 10px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) and (max-width: 834px) {
  .sitemap-wrap .sitemap-category--lv2:nth-child(3n+1) {
    margin-left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-wrap .sitemap-category--lv2 {
    width: calc((99.9% - 1em - 10px) / 2);
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(1), .sitemap-wrap .sitemap-category--lv2:nth-child(2) {
    margin-top: 20px;
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(2n) {
    margin-right: 5px;
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(2n+1) {
    margin-left: 5px;
  }
}
@media screen and (max-width: 320px) {
  .sitemap-wrap .sitemap-category--lv2 {
    width: calc(100% - 10px);
    margin-right: 5px;
    margin-left: 5px;
  }
  .sitemap-wrap .sitemap-category--lv2:nth-child(2) {
    margin-top: 10px;
  }
}

.sitemap-category {
  width: 100%;
}
.sitemap-category__title {
  margin-top: 40px;
  margin-bottom: 0;
}
.sitemap-category__title__link {
  color: #222222;
}
.sitemap-category__title__link:hover {
  text-decoration: underline;
}
.sitemap-category__title-lv2 > a {
  position: relative;
  display: inline-block;
  color: #222222;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: underline;
  padding: 2px 0 2px 30px;
}
@media screen and (max-width: 834px) {
  .sitemap-category__title-lv2 > a {
    font-size: 1.5rem;
    padding: 2px 0 2px 26px;
  }
}
.sitemap-category__title-lv2 > a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #0063b6;
  border-radius: 100px;
}
@media screen and (max-width: 834px) {
  .sitemap-category__title-lv2 > a::before {
    top: 4px;
    width: 16px;
    height: 16px;
  }
}
.sitemap-category__title-lv2 > a::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .sitemap-category__title-lv2 > a::after {
    left: 5px;
    width: 5px;
    height: 5px;
  }
}
.sitemap-category__title-lv2 > a:hover {
  text-decoration: none;
}
.sitemap-category__entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 834px) {
  .sitemap-category__entry {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.sitemap-category__entry__item {
  margin-top: 10px;
  margin-right: 1em;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .sitemap-category__entry__item {
    width: calc((99.9% - 3em) / 4);
  }
  .sitemap-category__entry__item:nth-child(1), .sitemap-category__entry__item:nth-child(2), .sitemap-category__entry__item:nth-child(3), .sitemap-category__entry__item:nth-child(4) {
    margin-top: 20px;
  }
  .sitemap-category__entry__item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .sitemap-category__entry__item {
    width: calc((99.9% - 2em) / 3);
  }
  .sitemap-category__entry__item:nth-child(1), .sitemap-category__entry__item:nth-child(2), .sitemap-category__entry__item:nth-child(3) {
    margin-top: 20px;
  }
  .sitemap-category__entry__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-category__entry__item {
    width: calc((99.9% - 1em) / 2);
  }
  .sitemap-category__entry__item:nth-child(1), .sitemap-category__entry__item:nth-child(2) {
    margin-top: 20px;
  }
  .sitemap-category__entry__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 320px) {
  .sitemap-category__entry__item {
    width: 100%;
    margin-right: 0;
  }
  .sitemap-category__entry__item:nth-child(2) {
    margin-top: 10px;
  }
}
.sitemap-category__entry__item__link {
  position: relative;
  display: inline-block;
  color: #222222;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: underline;
  padding: 2px 0 2px 30px;
}
@media screen and (max-width: 834px) {
  .sitemap-category__entry__item__link {
    font-size: 1.5rem;
    padding: 2px 0 2px 26px;
  }
}
.sitemap-category__entry__item__link::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #0063b6;
  border-radius: 100px;
}
@media screen and (max-width: 834px) {
  .sitemap-category__entry__item__link::before {
    top: 4px;
    width: 16px;
    height: 16px;
  }
}
.sitemap-category__entry__item__link::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .sitemap-category__entry__item__link::after {
    left: 5px;
    width: 5px;
    height: 5px;
  }
}
.sitemap-category__entry__item__link:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */