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

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

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px) {
  .tb {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px) {
  .tb02 {
    display: none !important;
  }
}
@media screen and (min-width: 835px) {
  .tb02 {
    display: none !important;
  }
}
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

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

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

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

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

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

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

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

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

/*すべての要素の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: #3b5bbe;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
    color: #333;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 2;
  font-size: 1.8rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

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

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

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

.al-left {
  text-align: left;
}

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

.al-right {
  text-align: right;
}

.tel {
  color: inherit;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  display: grid;
  grid-template-columns: 2fr 5fr 200px;
  gap: 40px;
  padding: 0px 0 30px 26px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background-color: #fff;
  z-index: 5;
}
@media screen and (max-width: 1500px) {
  .header {
    grid-template-columns: 2.5fr 5fr 110px;
    gap: 20px;
    padding: 0px 0 30px 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header {
    grid-template-columns: 2fr 5fr 110px;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    grid-template-columns: 1fr 110px 110px;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
    padding: 0 0 0px 14px;
    grid-template-columns: 1fr 60px 60px;
  }
}

.siteid {
  margin-top: 26px;
  max-width: 100%;
}
@media screen and (max-width: 1500px) {
  .siteid {
    margin-top: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .siteid {
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .siteid {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .siteid {
    max-width: 200px;
    margin-top: 12px;
  }
}

.gnav {
  height: 100%;
  padding-bottom: 14px;
}
@media screen and (max-width: 1200px) {
  .gnav {
    display: none;
  }
}

.gnav-list {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.gnav-list__item {
  margin-left: 2em;
}
.gnav-list__item a {
  color: #333;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .gnav-list__item a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1300px) {
  .gnav-list__item a {
    font-size: 1.5rem;
  }
}
.gnav-list__item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -12px;
  margin: auto;
  background-color: #526ec3;
  width: 0%;
  height: 2px;
  transition: 0.3s;
}
.gnav-list__item a.active::before {
  width: 100% !important;
}
.gnav-list__item a:hover::before {
  width: 100%;
}

.h-contact-btn {
  background-color: #07a0f8;
  width: 200px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1500px) {
  .h-contact-btn {
    width: 110px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .h-contact-btn {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .h-contact-btn .h-contact-btn__text {
    display: none;
  }
}
.h-contact-btn .h-contact-btn__icon {
  padding-left: 34px;
  position: relative;
  width: auto;
}
@media screen and (max-width: 1500px) {
  .h-contact-btn .h-contact-btn__icon {
    padding-top: 30px;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .h-contact-btn .h-contact-btn__icon {
    width: 23px;
    height: 19px;
  }
}
.h-contact-btn .h-contact-btn__icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/icon-mail.svg);
  background-size: 23px 19px;
  width: 23px;
  height: 19px;
}
@media screen and (max-width: 1500px) {
  .h-contact-btn .h-contact-btn__icon::before {
    bottom: auto;
    right: 0;
  }
}
.h-contact-btn:hover {
  background-color: #057bc0;
  color: #fff;
}

.h-menu-btn {
  display: none;
}
@media screen and (max-width: 1200px) {
  .h-menu-btn {
    width: 110px;
    height: 88px;
    background-color: #0a2987;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif !important;
    font-weight: 500;
    font-size: 1.4rem;
    position: relative;
    padding-top: 30px;
    z-index: 10;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  .h-menu-btn {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1200px) {
  .h-menu-btn__icon {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    display: block;
    top: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  .h-menu-btn__icon {
    top: 24px;
    width: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .h-menu-btn__icon::before, .h-menu-btn__icon::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }
  .h-menu-btn__icon::before {
    top: -8px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  .h-menu-btn__icon::before {
    top: -6px;
  }
}
@media screen and (max-width: 1200px) {
  .h-menu-btn__icon::after {
    top: 8px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  .h-menu-btn__icon::after {
    top: 6px;
  }
}
@media screen and (max-width: 1200px) {
  .h-menu-btn.open .h-menu-btn__icon {
    height: 0;
  }
  .h-menu-btn.open .h-menu-btn__icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  .h-menu-btn.open .h-menu-btn__icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
}

/* オーバーレイ */
#h-menu-close-overlay {
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

#h-menu-close-overlay.open {
  right: 0;
  opacity: 0.5;
}

.no-scroll {
  overflow: hidden;
}

#h-menu {
  display: none;
}
@media screen and (max-width: 1200px) {
  #h-menu {
    display: block;
    position: fixed;
    top: 0px;
    right: -120%;
    transition: all 0.6s;
    width: 60vw;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    padding-top: 88px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  #h-menu {
    padding-top: 60px;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  #h-menu.open {
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  #h-menu {
    width: 100%;
  }
}

.h-menu__inner {
  width: 100%;
  height: 100%;
  margin: 0px auto 10vw;
  border-top: 1px solid #3b5bbe;
  overflow: scroll;
  padding-bottom: 100px;
}

.h-menu__list__item {
  border-bottom: 1px solid #3b5bbe;
  position: relative;
}
.h-menu__list__item:has(.h-menu__acc) .h-menu__list__link::before, .h-menu__list__item:has(.h-menu__acc) .h-menu__list__link::after {
  display: none;
}
.h-menu__list__link {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  display: block;
  padding: 15px;
  position: relative;
  font-size: 1.6rem;
  color: #333;
}
.h-menu__list__link::before, .h-menu__list__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.h-menu__list__link::before {
  width: 15px;
  height: 15px;
  background-color: #526ec3;
  border-radius: 50%;
  right: 15px;
}
.h-menu__list__link::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 20px;
}

.h-menu__acc {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 10px;
  margin: auto;
}
.h-menu__acc::before, .h-menu__acc::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  background-color: #3b5bbe;
  transition: 0.3s;
}
.h-menu__acc::after {
  transform: rotate(90deg);
}
.h-menu__acc.active::after {
  transform: rotate(0deg);
}

.h-menu__lv02 {
  padding: 0 30px 10px;
  margin-top: -10px;
  display: none;
}
.h-menu__lv02__item {
  margin-bottom: 5px;
}
.h-menu__lv02__link {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
  padding-left: 14px;
  color: #333;
}
.h-menu__lv02__link::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid #3b5bbe;
  border-right: 0;
}

.h-menu__contact {
  background-color: #07a0f8;
  max-width: 280px;
  width: 100%;
  margin: 40px auto;
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  padding: 10px 10px 10px 10px;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .h-menu__contact {
    max-width: 90%;
    margin: 20px auto;
  }
}
.h-menu__contact .icon {
  position: relative;
  padding-left: 30px;
  background-image: url(../img/common/icon-mail.svg);
  background-repeat: no-repeat;
  background-position: left 0 top 6px;
  background-size: 20px 16px;
}

.f-bnr01 {
  background-color: #526ec3;
  padding: 36px 60px 26px;
}
@media screen and (max-width: 1024px) {
  .f-bnr01 {
    padding: 30px 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .f-bnr01 {
    padding: 20px 20px 10px;
  }
}

.f-bnr01__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.f-bnr01__list__item {
  margin: 0 5px 10px;
}
.f-bnr01__list__link {
  display: block;
  background-color: #fff;
  padding: 16px 30px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  color: #020202 !important;
}
@media screen and (max-width: 1024px) {
  .f-bnr01__list__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .f-bnr01__list__link {
    font-size: 1.5rem;
    padding: 10px 20px 10px 10px;
  }
}
.f-bnr01__list__link .icon {
  padding: 0 0 0 30px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .f-bnr01__list__link .icon {
    padding-left: 24px;
  }
}
.f-bnr01__list__link .icon::before, .f-bnr01__list__link .icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.f-bnr01__list__link .icon::before {
  background-color: #526ec3;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 599px) {
  .f-bnr01__list__link .icon::before {
    width: 16px;
    height: 16px;
    top: 2px;
  }
}
.f-bnr01__list__link .icon::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  left: 6px;
}
@media screen and (max-width: 599px) {
  .f-bnr01__list__link .icon::after {
    top: 2px;
    left: 5px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.f-bnr01__list__link:hover {
  background-color: #e8ecf6;
}

.f-bnr02 {
  background-color: #0a2987;
  padding: 36px 60px 26px;
}
@media screen and (max-width: 1024px) {
  .f-bnr02 {
    padding: 30px 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .f-bnr02 {
    padding: 20px 20px 10px;
  }
}

.f-bnr02__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.f-bnr02__list__item {
  width: 285px;
  margin: 0 10px 20px;
}
@media screen and (max-width: 1024px) {
  .f-bnr02__list__item {
    margin: 0 5px 10px;
  }
}
@media screen and (max-width: 599px) {
  .f-bnr02__list__item {
    width: calc((100% - 10px) / 2);
    margin: 0 0 10px;
  }
  .f-bnr02__list__item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}
.f-bnr02__list__link {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .f-bnr02__list__link {
    height: 52px;
  }
}
.f-bnr02__list__link:hover {
  background-color: #e8ecf6;
}
.f-bnr02__list__link img {
  mix-blend-mode: multiply;
}
.f-bnr02__list__link.naishikyo img {
  width: 232px;
}
.f-bnr02__list__link.syokaki img {
  width: 192px;
}
@media screen and (max-width: 599px) {
  .f-bnr02__list__link.syokaki img {
    width: 126px;
  }
}
.f-bnr02__list__link.syokakigeka img {
  width: 214px;
}
.f-bnr02__list__link.syokaki-geka img {
  width: 248px;
}

.footer {
  padding: 50px 60px;
  width: 100%;
  background-image: url(../img/common/footer-img.webp);
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  background-size: auto 100%;
  position: relative;
  z-index: auto;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    background-image: none;
    padding: 30px;
  }
}
.footer::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(to right, rgba(218, 224, 242, 0) 0%, rgba(218, 224, 242, 0) 35%, rgb(218, 224, 242) 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .footer::before {
    display: none;
  }
}

.f-siteid {
  max-width: 434px;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .f-siteid {
    max-width: 280px;
    margin: 0 auto 15px;
  }
}

.f-wrap {
  margin-left: 60px;
}
@media screen and (max-width: 599px) {
  .f-wrap {
    margin-left: 0;
    font-size: 1.4rem;
  }
}

.f-address {
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .f-address {
    margin-bottom: 10px;
  }
}

.f-contact {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .f-contact__item {
    line-height: 1.4;
  }
}
.f-contact__item:not(:last-child) {
  margin-bottom: 2px;
}
@media screen and (max-width: 599px) {
  .f-contact__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .f-contact__item a {
    text-decoration: underline;
  }
}

.copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 599px) {
  .copyright {
    text-align: center;
  }
}

.pagetop {
  width: 50px;
  position: fixed;
  bottom: 5vw;
  right: 26px;
}

.side-nav__list__title {
  border-bottom: 2px solid #3b5bbe;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .side-nav__list__title {
    font-size: 1.8rem;
  }
}
.side-nav__list__title a {
  color: #333;
  display: block;
  padding: 10px 10px 24px 30px;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 599px) {
  .side-nav__list__title a {
    padding: 0 10px 14px 24px;
  }
}
.side-nav__list__title a::before, .side-nav__list__title a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 22px;
  left: 0;
  margin: auto;
  width: 9px;
  height: 8px;
}
@media screen and (max-width: 599px) {
  .side-nav__list__title a::before, .side-nav__list__title a::after {
    width: 7px;
    height: 5px;
    top: 12px;
  }
}
.side-nav__list__title a::before {
  background-color: #0a2987;
}
.side-nav__list__title a::after {
  background-color: #3b5bbe;
  left: 9px;
}
@media screen and (max-width: 599px) {
  .side-nav__list__title a::after {
    left: 7px;
  }
}
.side-nav__list__item a {
  display: block;
  padding: 24px 20px 24px 38px;
  line-height: 1.4;
  border-bottom: 1px solid #cdd0d9;
  font-size: 1.7rem;
  color: #333 !important;
  position: relative;
}
@media screen and (max-width: 599px) {
  .side-nav__list__item a {
    padding: 16px 10px 16px 28px;
  }
}
.side-nav__list__item a::before, .side-nav__list__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin: auto;
}
.side-nav__list__item a::before {
  background-color: #526ec3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 26px;
  left: 10px;
}
@media screen and (max-width: 599px) {
  .side-nav__list__item a::before {
    width: 15px;
    height: 15px;
    left: 2px;
    top: 20px;
  }
}
.side-nav__list__item a::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  top: 32px;
  left: 15px;
}
@media screen and (max-width: 599px) {
  .side-nav__list__item a::after {
    width: 5px;
    height: 5px;
    top: 26px;
    left: 6px;
  }
}
.side-nav__list__item a:hover {
  background-color: #e8ecf6;
}
.side-nav__list__item a.active {
  background-color: #e8ecf6;
}

.contents-wrap {
  max-width: 1440px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto 160px;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 280px;
}
@media screen and (max-width: 1200px) {
  .contents-wrap {
    gap: 50px;
    grid-template-columns: 1fr 240px;
  }
}
@media screen and (max-width: 1024px) {
  .contents-wrap {
    display: block;
    max-width: auto;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrap {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 1024px) {
  .main {
    margin-bottom: 60px;
  }
}

/*--------------------------------------------------------
menu-title
----------------------------------------------------------*/
.menu-title {
  background-color: #3b5bbe;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 0 5.729vw;
  z-index: auto;
  margin-top: 110px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) {
  .menu-title {
    height: 240px;
  }
}
@media screen and (max-width: 1200px) {
  .menu-title {
    height: 220px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .menu-title {
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .menu-title {
    height: 100px;
    margin-top: 60px;
  }
}
.menu-title::before, .menu-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
}
.menu-title::before {
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 100% 0%, 24% 100%, 0% 100%);
  width: 27.2395vw;
  height: 100%;
  background-color: #e3e9fb;
  mix-blend-mode: multiply;
}
.menu-title::after {
  right: 0;
  bottom: 0;
  background-image: url(../img/common/menu-title-img.webp);
  background-size: 558px 264px;
  width: 558px;
  height: 264px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1500px) {
  .menu-title::after {
    background-size: 446.4px 211.2px;
    width: 446.4px;
    height: 211.2px;
  }
}
@media screen and (max-width: 1200px) {
  .menu-title::after {
    background-size: 390.6px 184.8px;
    width: 390.6px;
    height: 184.8px;
  }
}
@media screen and (max-width: 1024px) {
  .menu-title::after {
    background-size: 306.9px 145.2px;
    width: 306.9px;
    height: 145.2px;
  }
}
@media screen and (max-width: 599px) {
  .menu-title::after {
    background-size: 156.24px 73.92px;
    width: 156.24px;
    height: 73.92px;
  }
}

.menu-title__wrap {
  z-index: 1;
}

.menu-title__jp {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
  margin-bottom: 10px;
}
@media screen and (max-width: 1500px) {
  .menu-title__jp {
    font-size: 3.6rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .menu-title__jp {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .menu-title__jp {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.menu-title__en {
  color: rgba(255, 255, 255, 0.4);
  font-size: 2rem;
  font-weight: 500;
  font-family: "Barlow", sans-serif !important;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1500px) {
  .menu-title__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .menu-title__en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .menu-title__en {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  width: 100%;
  margin: 0px auto 84px;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .breadcrumb {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb {
    padding: 0 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    justify-content: flex-start;
  }
}
.breadcrumb-item {
  position: relative;
}
.breadcrumb-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 14px;
  right: 10px;
  margin: auto;
  width: 0;
  height: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #3b5bbe;
  border-right: 1px solid #3b5bbe;
  transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .breadcrumb-item::before {
    font-size: 1.6rem;
    top: 11px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb-item::before {
    font-size: 1.4rem;
    width: 6px;
    height: 6px;
    top: 5px;
  }
}
.breadcrumb-item:last-child::before {
  content: none;
}
.breadcrumb-item a {
  padding-right: 26px;
}

/*--------------------------------------------------------
_pagination
----------------------------------------------------------*/
.pagination {
  margin: 60px auto 0;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin: 30px auto 0;
  }
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pagination__prev, .pagination__next {
  vertical-align: middle;
  font-weight: 500;
  color: #333;
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
}
.pagination__prev::before, .pagination__next::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #3b5bbe;
  border-right: 2px solid #3b5bbe;
}
.pagination__prev {
  margin-right: 10px;
  padding-left: 25px;
}
.pagination__prev::before {
  transform: rotate(225deg);
  left: 0;
}
@media screen and (min-width: 1025px) {
  .pagination__prev:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    display: none;
  }
}
.pagination__next {
  margin-left: 10px;
  padding-right: 25px;
}
.pagination__next::before {
  transform: rotate(45deg);
  right: 0;
}
@media screen and (min-width: 1025px) {
  .pagination__next:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagination__next {
    display: none;
  }
}
.pagination__num {
  display: flex;
  width: 50px;
  height: 50px;
  border: 1px solid #3b5bbe;
  color: #333;
  font-size: 2rem;
  border-radius: 50%;
  font-family: "Barlow", sans-serif !important;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #3b5bbe;
  color: #fff;
}
.pagination .current {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: #3b5bbe;
  border: 1px solid #3b5bbe;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pagination .current {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------
pagenav
----------------------------------------------------------*/
.pagenav {
  position: relative;
}
@media screen and (max-width: 599px) {
  .pagenav {
    margin-top: 70px;
  }
}
.pagenav .prev {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .pagenav .prev {
    top: -38px;
  }
}
.pagenav .prev > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #3b5bbe;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-left: 4px;
}
@media screen and (min-width: 1025px) {
  .pagenav .prev > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .prev > a {
    height: 36px;
  }
}
.pagenav .prev > a::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 599px) {
  .pagenav .prev > a::after {
    top: 15px;
  }
}
.pagenav .prev.non {
  display: none;
}
.pagenav .next {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .pagenav .next {
    top: -38px;
  }
}
.pagenav .next > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #3b5bbe;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-right: 4px;
}
@media screen and (min-width: 1025px) {
  .pagenav .next > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .next > a {
    height: 36px;
  }
}
.pagenav .next > a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .pagenav .next > a::after {
    top: 15px;
  }
}
.pagenav .next.non {
  display: none;
}
.pagenav .num {
  padding: 5px 110px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pagenav .num {
    padding: 15px 0 0;
  }
}
.pagenav .num > ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.pagenav .num > ul > li {
  margin: 0 5px;
}
@media screen and (max-width: 599px) {
  .pagenav .num > ul > li {
    margin: 0 3px;
  }
}
.pagenav .num > ul > li > a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  padding-top: 3px;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .pagenav .num > ul > li > a:hover {
    background-color: #3b5bbe;
    color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .num > ul > li > a {
    width: 36px;
    height: 36px;
  }
}
.pagenav .num > ul > li.current > a {
  background-color: #3b5bbe;
  color: #fff;
}
.pagenav .num > ul > li.borderNon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.base-title01 {
  border-top: 5px solid #3b5bbe;
  border-bottom: 2px solid #cdd0d9;
  line-height: 1.4;
  padding: 40px 10px;
  margin-bottom: 40px;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .base-title01 {
    border-top: 4px solid #3b5bbe;
    font-size: 2.4rem;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01 {
    font-size: 1.8rem;
    padding: 20px 2px;
    border-top: 3px solid #3b5bbe;
    border-bottom: 1px solid #cdd0d9;
    margin-bottom: 25px;
  }
}

.base-title02 {
  margin-bottom: 35px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 1024px) {
  .base-title02 {
    font-size: 2.2rem;
    padding-left: 36px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-title02 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding-left: 24px;
  }
}
.base-title02::before, .base-title02::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0;
  margin: auto;
  width: 11px;
  height: 8px;
}
@media screen and (max-width: 1024px) {
  .base-title02::before, .base-title02::after {
    width: 9px;
    height: 7px;
  }
}
@media screen and (max-width: 599px) {
  .base-title02::before, .base-title02::after {
    top: 12px;
    width: 7px;
    height: 5px;
  }
}
.base-title02::before {
  background-color: #0a2987;
}
.base-title02::after {
  background-color: #3b5bbe;
  left: 11px;
}
@media screen and (max-width: 1024px) {
  .base-title02::after {
    left: 9px;
  }
}
@media screen and (max-width: 599px) {
  .base-title02::after {
    left: 7px;
  }
}
.base-title02.line {
  padding-bottom: 22px;
  border-bottom: 1px solid #cdd0d9;
}
@media screen and (max-width: 1024px) {
  .base-title02.line {
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .base-title02.line {
    padding-bottom: 12px;
  }
}

.base-title03 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding: 12px 10px 14px 30px;
  background-color: #e8ecf6;
  /*色違い*/
}
@media screen and (max-width: 1024px) {
  .base-title03 {
    font-size: 2rem;
    padding: 8px 10px 10px 28px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03 {
    font-size: 1.6rem;
    padding: 6px 10px 8px 24px;
    margin-bottom: 20px;
  }
}
.base-title03::before, .base-title03::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-title03::before {
  background-color: #3b5bbe;
  width: 18px;
  height: 5px;
}
@media screen and (max-width: 1024px) {
  .base-title03::before {
    width: 16px;
    height: 4px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03::before {
    width: 10px;
  }
}
.base-title03.line {
  background-color: #657fd1;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .base-title03.line {
    padding-top: 6px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03.line {
    padding-top: 4px;
    padding-bottom: 6px;
  }
}
.base-title03.line::before {
  background-color: #fff;
}

.base-title04 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0px 10px 0px 28px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .base-title04 {
    font-size: 1.8rem;
    padding-left: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04 {
    font-size: 1.6rem;
    padding-left: 20px;
    margin-bottom: 16px;
  }
}
.base-title04::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-color: #3b5bbe;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .base-title04::before {
    width: 10px;
    height: 10px;
    top: 13px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04::before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
}
.base-title04.line {
  border-bottom: 1px solid #cdd0d9;
  padding-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .base-title04.line {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04.line {
    padding-bottom: 8px;
  }
}

.base-title05 {
  color: #3b5bbe;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .base-title05 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title05 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.base-title05.line {
  border-bottom: 1px solid #3b5bbe;
  padding-bottom: 10px;
}

.base-title06 {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  background-color: #e8ecf6;
  padding: 10px 10px 10px 40px;
  position: relative;
  /*色違い*/
}
@media screen and (max-width: 1024px) {
  .base-title06 {
    padding: 8px 10px 8px 40px;
  }
}
@media screen and (max-width: 599px) {
  .base-title06 {
    padding: 4px 10px 4px 30px;
    font-size: 1.5rem;
  }
}
.base-title06::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 22px;
  left: 16px;
  width: 9px;
  height: 9px;
  background-color: #3b5bbe;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .base-title06::before {
    top: 18px;
  }
}
@media screen and (max-width: 599px) {
  .base-title06::before {
    top: 12px;
    left: 10px;
    font-size: 1.5rem;
  }
}
.base-title06.line {
  background-color: #657fd1;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .base-title06.line {
    padding: 4px 10px 4px 30px;
  }
}
.base-title06.line::before {
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .base-title06.line::before {
    top: 12px;
  }
}

.test01 {
  background-color: #444;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 5px 20px;
}

.test02 {
  background-color: #ddd;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 0px 20px;
}

/*--------------------------------------------------------
text
----------------------------------------------------------*/
.text-base-link {
  color: #222;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .text-base-link:hover {
    text-decoration: none;
  }
}

.text-copy01 {
  font-family: "Noto Sans JP", sans-serif !important;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3b5bbe;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .text-copy01 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .text-copy01 {
    font-size: 1.8rem;
  }
}

.text-copy02 {
  margin-bottom: 25px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  color: #3b5bbe;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .text-copy02 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .text-copy02 {
    font-size: 1.9rem;
  }
}

.text-base-box {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .text-base-box {
    gap: 15px;
  }
}
.text-base-box.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .text-base-box.cl02 {
    grid-template-columns: 1fr;
  }
}
.text-base-box.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .text-base-box.cl03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.text-base-box--base {
  background-color: #f3f6fd;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--base {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--base {
    padding: 15px 20px;
  }
}
.text-base-box--gray {
  background-color: #f3f3f3;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--gray {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--gray {
    padding: 15px 20px;
  }
}
.text-base-box--pink {
  background-color: #fbf2f2;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--pink {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--pink {
    padding: 15px 20px;
  }
}
.text-base-box--border {
  padding: 30px 35px;
  border: 1px solid #cdd0d9;
}
@media screen and (max-width: 1024px) {
  .text-base-box--border {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--border {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------
button
----------------------------------------------------------*/
.base-btn {
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #526ec3;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 14px 50px 15px 30px;
  min-width: 280px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .base-btn {
    min-width: 240px;
    padding: 14px 36px 15px 10px;
  }
}
.base-btn::before, .base-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base-btn::before {
  width: 18px;
  height: 18px;
  background-color: #fff;
  right: 20px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .base-btn::before {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}
.base-btn::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid #3b5bbe;
  border-right: 1px solid #3b5bbe;
  transform: rotate(45deg);
  right: 27px;
}
@media screen and (max-width: 599px) {
  .base-btn::after {
    right: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .base-btn:hover {
    background-color: #0a2987;
    color: #fff;
  }
}
.base-btn--border {
  border: 2px solid #526ec3;
  background-color: #fff;
  color: #333;
}
.base-btn--border::before {
  background-color: #526ec3;
}
.base-btn--border::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.base-btn.prev::before {
  right: auto;
  left: 20px;
}
.base-btn.prev::after {
  right: auto;
  left: 27px;
  transform: rotate(225deg);
}

.index-btn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .index-btn-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.index-btn-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .index-btn-list.cl03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index-btn-list > li > a {
  border: 1px solid #d4d4d4;
  display: block;
  color: #000;
  line-height: 1.3;
  padding: 20px 20px 20px 50px;
  position: relative;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .index-btn-list > li > a {
    padding: 16px 12px 16px 36px;
  }
}
.index-btn-list > li > a::before, .index-btn-list > li > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.index-btn-list > li > a::before {
  left: 15px;
  width: 18px;
  height: 18px;
  background-color: #3b5bbe;
  border-radius: 200px;
}
@media screen and (max-width: 599px) {
  .index-btn-list > li > a::before {
    width: 15px;
    height: 15px;
    left: 10px;
  }
}
.index-btn-list > li > a::after {
  left: 20px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 599px) {
  .index-btn-list > li > a::after {
    width: 5px;
    height: 5px;
    left: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .index-btn-list > li > a:hover {
    background-color: #e8ecf6;
  }
}

.base-btn-list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .base-btn-list {
    gap: 10px;
  }
}
.base-btn-list.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .base-btn-list.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-btn-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .base-btn-list.cl03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.base-btn-list:not(.cl02):not(.cl03) .base-btn-list__item a {
  width: auto;
  min-width: 260px;
  display: inline-block;
}
.base-btn-list.position-left {
  justify-items: left;
}
.base-btn-list.position-center {
  justify-items: center;
}
.base-btn-list.position-right {
  justify-items: right;
}
.base-btn-list__item a {
  background-color: #526ec3;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 18px 60px 20px 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 599px) {
  .base-btn-list__item a {
    min-width: auto;
    padding: 14px 32px 15px 10px;
  }
}
.base-btn-list__item a::before, .base-btn-list__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base-btn-list__item a::before {
  width: 18px;
  height: 18px;
  background-color: #fff;
  right: 20px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .base-btn-list__item a::before {
    right: 10px;
    width: 15px;
    height: 15px;
  }
}
.base-btn-list__item a::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid #3b5bbe;
  border-right: 1px solid #3b5bbe;
  transform: rotate(45deg);
  right: 27px;
}
@media screen and (max-width: 599px) {
  .base-btn-list__item a::after {
    right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .base-btn-list__item a:hover {
    background-color: #0a2987;
    color: #fff;
  }
}
.base-btn-list--border a {
  border: 2px solid #526ec3;
  background-color: #fff;
  color: #333;
}
.base-btn-list--border a::before {
  background-color: #526ec3;
}
.base-btn-list--border a::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.column-table {
  margin-bottom: 40px;
}

.entry-container {
  margin: 0;
}

.base-table01,
.js-table-unit-scroll-hint {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-collapse: collapse;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .base-table01,
  .js-table-unit-scroll-hint {
    font-size: 1.5rem;
  }
}
.base-table01 th, .base-table01 td,
.js-table-unit-scroll-hint th,
.js-table-unit-scroll-hint td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d4d4d4;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .base-table01 th, .base-table01 td,
  .js-table-unit-scroll-hint th,
  .js-table-unit-scroll-hint td {
    padding: 10px;
  }
}
.base-table01 th.acms-cell-text-left, .base-table01 td.acms-cell-text-left,
.js-table-unit-scroll-hint th.acms-cell-text-left,
.js-table-unit-scroll-hint td.acms-cell-text-left {
  text-align: left !important;
}
.base-table01 th.acms-cell-text-center, .base-table01 td.acms-cell-text-center,
.js-table-unit-scroll-hint th.acms-cell-text-center,
.js-table-unit-scroll-hint td.acms-cell-text-center {
  text-align: center !important;
}
.base-table01 th.acms-cell-text-right, .base-table01 td.acms-cell-text-right,
.js-table-unit-scroll-hint th.acms-cell-text-right,
.js-table-unit-scroll-hint td.acms-cell-text-right {
  text-align: right !important;
}
.base-table01 th.bg-color01, .base-table01 td.bg-color01,
.js-table-unit-scroll-hint th.bg-color01,
.js-table-unit-scroll-hint td.bg-color01 {
  background-color: #3b5bbe;
  color: #fff;
}
.base-table01 th.bg-color01--nowrap, .base-table01 td.bg-color01--nowrap,
.js-table-unit-scroll-hint th.bg-color01--nowrap,
.js-table-unit-scroll-hint td.bg-color01--nowrap {
  white-space: nowrap;
}
.base-table01 th.bg-color02, .base-table01 td.bg-color02,
.js-table-unit-scroll-hint th.bg-color02,
.js-table-unit-scroll-hint td.bg-color02 {
  background-color: #f3f6fd;
}
.base-table01 th.bg-color02--nowrap, .base-table01 td.bg-color02--nowrap,
.js-table-unit-scroll-hint th.bg-color02--nowrap,
.js-table-unit-scroll-hint td.bg-color02--nowrap {
  white-space: nowrap;
}
.base-table01 th.nowrap, .base-table01 td.nowrap,
.js-table-unit-scroll-hint th.nowrap,
.js-table-unit-scroll-hint td.nowrap {
  white-space: nowrap;
}
.base-table01--th-wd30 th,
.js-table-unit-scroll-hint--th-wd30 th {
  width: 30%;
}
.base-table01--th-wd20 th,
.js-table-unit-scroll-hint--th-wd20 th {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .base-table01--sp-small th, .base-table01--sp-small td,
  .js-table-unit-scroll-hint--sp-small th,
  .js-table-unit-scroll-hint--sp-small td {
    font-size: 1.3rem;
    padding: 10px 5px;
  }
}

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

.base-list01 {
  margin-bottom: 40px;
}
.base-list01 > li {
  margin-bottom: 12px;
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.3;
}
.base-list01 > li:last-child {
  margin-bottom: 0;
}
.base-list01 > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #3b5bbe;
  border-radius: 50%;
}
.base-list01--base {
  background-color: #f3f6fd;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .base-list01--base {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01--base {
    padding: 15px 20px;
  }
}
.base-list01--pink {
  background-color: #fbf2f2;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .base-list01--pink {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01--pink {
    padding: 15px 20px;
  }
}
.base-list01--pink > li::before {
  background-color: #e2636f !important;
}

.base-number-list01 {
  list-style: none;
  border-radius: 6px;
  counter-reset: num;
  margin-bottom: 40px;
  padding: 0 10px;
}
.base-number-list01 > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.base-number-list01 > li:last-child {
  margin-bottom: 0;
}
.base-number-list01 > li::before {
  content: counter(num) "．";
  counter-increment: num;
  top: 0px;
  left: 0;
  font-size: 1.7rem;
  position: absolute;
}
.base-number-list01--base {
  background-color: #f3f6fd;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .base-number-list01--base {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01--base {
    padding: 15px 20px;
  }
}
.base-number-list01--pink {
  background-color: #fbf2f2;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .base-number-list01--pink {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01--pink {
    padding: 15px 20px;
  }
}

.base-link-list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px 20px;
}
.base-link-list > li > a {
  color: #222;
  display: inline-block;
  text-decoration: underline;
  position: relative;
  padding: 0 0 0 26px;
}
.base-link-list > li > a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 200px;
  background-color: #526ec3;
}
@media screen and (max-width: 1024px) {
  .base-link-list > li > a::before {
    width: 15px;
    height: 15px;
    top: 8px;
  }
}
.base-link-list > li > a::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: block;
}
@media screen and (max-width: 1024px) {
  .base-link-list > li > a::after {
    top: 13px;
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .base-link-list > li > a:hover {
    text-decoration: none;
    transform: translateX(2px);
  }
}
.base-link-list.cl02 {
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 599px) {
  .base-link-list.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-link-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 599px) {
  .base-link-list.cl03 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.base-file-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-file-list {
    gap: 15px;
  }
}
.base-file-list.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .base-file-list.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-file-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .base-file-list.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .base-file-list {
    gap: 10px;
  }
}
.base-file-list > li > a {
  display: block;
  border: 1px solid #d4d4d4;
  color: #222;
  line-height: 1.3;
  padding: 22px 50px 22px 55px;
  position: relative;
  background-position: left 20px top 50%;
  background-repeat: no-repeat;
  background-size: 23px auto;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 0;
}
@media screen and (max-width: 1024px) {
  .base-file-list > li > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .base-file-list > li > a {
    padding: 20px 40px 20px 55px;
    font-size: 1.5rem;
  }
}
.base-file-list > li > a::before, .base-file-list > li > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base-file-list > li > a::before {
  background-color: #526ec3;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  right: 16px;
}
.base-file-list > li > a::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 23px;
}
@media screen and (min-width: 1025px) {
  .base-file-list > li > a:hover {
    background-color: #e8ecf6;
  }
}
.base-file-list > li > a.pdf {
  background-image: url(../img/common/icon-pdf.svg);
}
.base-file-list > li > a.word {
  background-image: url(../img/common/icon-word.svg);
}
.base-file-list > li > a.xls {
  background-image: url(../img/common/icon-xls.svg);
}
.base-file-list > li > a.ppt {
  background-image: url(../img/common/icon-ppt.svg);
}

.dl-list01 {
  margin-bottom: 40px;
}
.dl-list01 dt {
  font-weight: bold;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .dl-list01 dt {
    margin-bottom: 3px;
  }
}
.dl-list01 dt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: #3b5bbe;
  border-radius: 50%;
}
.dl-list01 dd {
  padding-left: 20px;
  margin-bottom: 16px;
}
.dl-list01--base {
  background-color: #f3f6fd;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .dl-list01--base {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01--base {
    padding: 15px 20px;
  }
}
.dl-list01--pink {
  background-color: #fbf2f2;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 1024px) {
  .dl-list01--pink {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01--pink {
    padding: 15px 20px;
  }
}
.dl-list01--pink dt::before {
  background-color: #e2636f;
}

.file-list-text {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
}
@media screen and (max-width: 599px) {
  .file-list-text {
    gap: 10px 20px;
  }
}
.file-list-text.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .file-list-text.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.file-list-text.cl02 .file-list-text__item {
  margin-bottom: 0;
}
.file-list-text.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .file-list-text.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.file-list-text.cl03 .file-list-text__item {
  margin-bottom: 0;
}
.file-list-text__item {
  padding: 0 0 10px 0px;
  font-size: 1.6rem;
  line-height: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .file-list-text__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .file-list-text__item {
    padding: 0px 0 10px 0px;
    padding-top: 0;
    line-height: 1.3em;
    font-size: 1.5rem;
  }
}
.file-list-text__item a {
  padding: 0px 0 0px 30px;
  color: #3b5bbe;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: 0 1px;
  display: block;
  position: relative;
}
.file-list-text__item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  background-size: 20px 24px;
  width: 20px;
  height: 24px;
}
@media screen and (max-width: 599px) {
  .file-list-text__item a::before {
    top: -2px;
  }
}
.file-list-text__item a:hover {
  color: #a566d4;
}
.file-list-text__item.pdf a::before {
  background-image: url(../img/common/icon-pdf.svg);
}
.file-list-text__item.xls a::before {
  background-image: url(../img/common/icon-xls.svg);
}
.file-list-text__item.doc a::before {
  background-image: url(../img/common/icon-word.svg);
}
.file-list-text__item.ppt a::before {
  background-image: url(../img/common/icon-ppt.svg);
}
.file-list-text__item p {
  font-size: 1.6rem;
  text-align: justify;
  padding-left: 30px;
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .file-list-text__item p {
    font-size: 1.4rem;
  }
}

.anchor-list {
  background-color: #e8ecf6;
  padding: 20px 30px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .anchor-list {
    padding: 15px 20px;
  }
}
.anchor-list.cl03, .anchor-list.cl04, .anchor-list.cl05 {
  display: grid;
  gap: 10px 20px;
}
.anchor-list.cl03 li, .anchor-list.cl04 li, .anchor-list.cl05 li {
  margin: 0 !important;
}
.anchor-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .anchor-list.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.anchor-list.cl04 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 599px) {
  .anchor-list.cl04 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.anchor-list.cl05 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .anchor-list.cl05 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.cl05 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.anchor-list.cl05 li {
  margin: 0 !important;
}
.anchor-list > li {
  margin: 0 20px 10px 0;
}
.anchor-list > li > a {
  display: inline-block;
  padding: 0 0 0 28px;
  position: relative;
  color: #000 !important;
  text-decoration: none !important;
  line-height: 1.3;
}
.anchor-list > li > a::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #3b5bbe;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .anchor-list > li > a::before {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list > li > a::before {
    width: 15px;
    height: 15px;
  }
}
.anchor-list > li > a::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .anchor-list > li > a::after {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list > li > a::after {
    left: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .anchor-list > li > a:hover {
    color: #3b5bbe !important;
  }
}

/*--------------------------------------------------------
common
----------------------------------------------------------*/
.common-contact {
  background-color: #c6e3de;
  border-radius: 15px;
  padding: 35px 35px 45px;
}
@media screen and (max-width: 1024px) {
  .common-contact {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact {
    border-radius: 10px;
    padding: 15px 20px 20px;
  }
}
.common-contact__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .common-contact__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.common-contact__title span {
  color: #08a189;
}
.common-contact__box {
  max-width: 800px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 6px rgba(140, 199, 189, 0.25);
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .common-contact__box {
    border-radius: 10px;
  }
}
.common-contact__box__upper-parts01 {
  background-color: #fff;
  padding: 35px 30px 30px;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01 {
    padding: 30px 30px 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01 {
    padding: 20px 20px 20px;
  }
}
.common-contact__box__upper-parts01__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 655px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__upper-parts01__inner {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner {
    gap: 15px;
  }
}
.common-contact__box__upper-parts01__inner__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01__inner__logo {
    width: 230px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner__logo {
    width: 250px;
  }
}
.common-contact__box__upper-parts01__inner__address {
  width: calc(100% - 330px);
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01__inner__address {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner__address {
    width: 100%;
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts01 {
  background-color: #f2f2f2;
  padding: 30px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01 {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01 {
    padding: 20px;
  }
}
.common-contact__box__under-parts01__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner {
    gap: 15px;
  }
}
.common-contact__box__under-parts01__inner__tel {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts01__inner__tel a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel {
    width: 100%;
  }
}
.common-contact__box__under-parts01__inner__tel__number {
  display: block;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01__inner__tel__number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__number {
    font-size: 2.9rem;
  }
}
.common-contact__box__under-parts01__inner__tel__number a {
  color: #08a189;
}
.common-contact__box__under-parts01__inner__tel__number__en {
  margin-right: 10px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01__inner__tel__number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__number__en {
    margin-right: 5px;
    font-size: 1.7rem;
  }
}
.common-contact__box__under-parts01__inner__tel__reception-hours {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__reception-hours {
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts01__inner__mail {
  width: 240px;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__mail {
    width: 100%;
  }
}
.common-contact__box__under-parts01__inner__mail__link {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 3px 3px rgba(198, 198, 198, 0.5);
  padding: 13px 15px 15px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts01__inner__mail__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.common-contact__box__under-parts01__inner__mail__link__inner {
  position: relative;
  padding-left: 33px;
  color: #333333;
  line-height: 1.4;
}
.common-contact__box__under-parts01__inner__mail__link__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 21px;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__mail__link__inner::before {
    top: 2px;
  }
}
.common-contact__box__under-parts02 {
  background-color: #f2f2f2;
  padding: 30px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02 {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02 {
    padding: 20px;
  }
}
.common-contact__box__under-parts02__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner {
    max-width: 550px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner {
    gap: 15px;
  }
}
.common-contact__box__under-parts02__inner__left {
  width: calc(53% - 25px);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__left a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left {
    width: 100%;
  }
}
.common-contact__box__under-parts02__inner__left__number {
  display: block;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__left__number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__number {
    font-size: 2.9rem;
  }
}
.common-contact__box__under-parts02__inner__left__number a {
  color: #08a189;
}
.common-contact__box__under-parts02__inner__left__number__en {
  margin-right: 10px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__left__number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__number__en {
    margin-right: 5px;
    font-size: 1.7rem;
  }
}
.common-contact__box__under-parts02__inner__left__reception-hours {
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__reception-hours {
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts02__inner__left__mail__link {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 3px 3px rgba(198, 198, 198, 0.5);
  padding: 10px 15px 12px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__left__mail__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.common-contact__box__under-parts02__inner__left__mail__link__inner {
  position: relative;
  padding-left: 33px;
  color: #333333;
  line-height: 1.4;
}
.common-contact__box__under-parts02__inner__left__mail__link__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 21px;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__mail__link__inner::before {
    top: 2px;
  }
}
.common-contact__box__under-parts02__inner__right {
  width: calc(47% - 25px);
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__right a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right .text-base {
    text-align: center;
  }
}
.common-contact__box__under-parts02__inner__right__number {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__right__number {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right__number {
    font-size: 2rem;
    text-align: center;
  }
}
.common-contact__box__under-parts02__inner__right__number a {
  color: #08a189;
}
.common-contact__box__under-parts02__inner__right__number__name {
  color: #333333;
  font-size: 1.9rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__right__number__name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right__number__name {
    font-size: 1.7rem;
  }
}

/*--------------------------------------------------------
block
----------------------------------------------------------*/
/*写真右ブロック*/
.photo-text-block {
  margin-bottom: 40px;
  overflow: hidden;
}
.photo-text-block__photo {
  text-align: center;
  /*右画像回り込みなし*/
  /*右画像回り込みあり*/
  /*左画像回り込みなし*/
  /*左画像回り込みあり*/
}
.photo-text-block__photo img {
  max-width: 100%;
}
.photo-right .photo-text-block__photo {
  float: right;
  margin: 0 0 20px 30px;
  width: calc(40% - 30px);
}
@media screen and (max-width: 599px) {
  .photo-right .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.photo-right02 .photo-text-block__photo {
  float: right;
  margin: 0 0 20px 30px;
  width: calc(40% - 30px);
}
@media screen and (max-width: 599px) {
  .photo-right02 .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.photo-left .photo-text-block__photo {
  float: left;
  width: calc(40% - 30px);
  margin: 0 30px 20px 0;
}
@media screen and (max-width: 599px) {
  .photo-left .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.photo-left02 .photo-text-block__photo {
  float: left;
  margin: 0 30px 20px 0;
  width: calc(40% - 30px);
}
@media screen and (max-width: 599px) {
  .photo-left02 .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .photo-text-block__photo {
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .photo-text-block__photo:has(img.sp) img:not(.sp) {
    display: none;
  }
}
.photo-text-block__text {
  text-align: justify;
  /*右画像回り込みなし*/
  /*左画像回り込みなし*/
}
.photo-right .photo-text-block__text {
  width: 60%;
  float: left;
}
@media screen and (max-width: 599px) {
  .photo-right .photo-text-block__text {
    width: 100%;
    float: none;
  }
}
.photo-right02 .photo-text-block__text {
  /*指定なし*/
}
.photo-left .photo-text-block__text {
  width: 60%;
  float: right;
}
@media screen and (max-width: 599px) {
  .photo-left .photo-text-block__text {
    width: 100%;
    float: none;
  }
}
.photo-left02 .photo-text-block__text {
  /*指定なし*/
}
.photo-text-block__caption {
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
}

.youtube-block {
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .youtube-block {
    gap: 15px;
  }
}
.youtube-block__item {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  width: 100%;
}
.youtube-block__item iframe {
  width: 100%;
  height: 100%;
}
.w80p .youtube-block__item {
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .w80p .youtube-block__item {
    max-width: 100%;
  }
}
.cl02 .youtube-block__item {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .cl02 .youtube-block__item {
    width: 100%;
  }
}

.map-block {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 40px;
  overflow: hidden;
}
.map-block iframe {
  width: 100%;
  height: 100%;
}

/*ソース貼り付け用*/
.wysiwyg-block-source {
  margin-bottom: 40px;
}

/*ウィジウィグデフォルト設定*/
.wysiwyg-block h1 {
  margin-bottom: 35px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1 {
    font-size: 2.2rem;
    padding-left: 36px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1 {
    font-size: 1.7rem;
    margin-bottom: 25px;
    padding-left: 24px;
  }
}
.wysiwyg-block h1::before, .wysiwyg-block h1::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0;
  margin: auto;
  width: 11px;
  height: 8px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1::before, .wysiwyg-block h1::after {
    width: 9px;
    height: 7px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1::before, .wysiwyg-block h1::after {
    top: 16px;
    width: 7px;
    height: 5px;
  }
}
.wysiwyg-block h1::before {
  background-color: #0a2987;
}
.wysiwyg-block h1::after {
  background-color: #3b5bbe;
  left: 11px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1::after {
    left: 9px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1::after {
    left: 7px;
  }
}
.wysiwyg-block h2 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding: 12px 10px 14px 30px;
  background-color: #e8ecf6;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h2 {
    font-size: 2rem;
    padding: 8px 10px 10px 28px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h2 {
    font-size: 1.6rem;
    padding: 6px 10px 8px 24px;
    margin-bottom: 20px;
  }
}
.wysiwyg-block h2::before, .wysiwyg-block h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  margin: auto;
}
.wysiwyg-block h2::before {
  background-color: #3b5bbe;
  width: 18px;
  height: 5px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h2::before {
    width: 16px;
    height: 4px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h2::before {
    width: 10px;
  }
}
.wysiwyg-block h3 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0px 10px 0px 28px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h3 {
    font-size: 1.8rem;
    padding-left: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h3 {
    font-size: 1.6rem;
    padding-left: 20px;
    margin-bottom: 16px;
  }
}
.wysiwyg-block h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-color: #3b5bbe;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h3::before {
    width: 10px;
    height: 10px;
    top: 13px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h3::before {
    width: 8px;
    height: 8px;
  }
}
.wysiwyg-block h4 {
  color: #3b5bbe;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h4 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h4 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.wysiwyg-block ul {
  margin-bottom: 40px;
  padding-left: 0;
}
.wysiwyg-block ul > li {
  margin-bottom: 12px;
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.3;
  list-style: none;
}
.wysiwyg-block ul > li:last-child {
  margin-bottom: 0;
}
.wysiwyg-block ul > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #3b5bbe;
  border-radius: 50%;
}
.wysiwyg-block ol {
  list-style: none;
  border-radius: 6px;
  counter-reset: num;
  margin-bottom: 40px;
  padding: 0 10px 0 0;
}
.wysiwyg-block ol > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.wysiwyg-block ol > li:last-child {
  margin-bottom: 0;
}
.wysiwyg-block ol > li::before {
  content: counter(num) "．";
  counter-increment: num;
  top: 0px;
  left: 0;
  font-size: 1.7rem;
  position: absolute;
}
.wysiwyg-block a {
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .wysiwyg-block a:hover {
    text-decoration: none;
  }
}
.wysiwyg-block blockquote {
  padding-left: 1em;
}
.wysiwyg-block table {
  font-size: 100%;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #d4d4d4;
  border-collapse: collapse;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table {
    font-size: 1.5rem;
  }
}
.wysiwyg-block table th,
.wysiwyg-block table td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d4d4d4;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table th,
  .wysiwyg-block table td {
    padding: 10px;
  }
}
.wysiwyg-block table thead th {
  background-color: #3b5bbe;
  color: #fff;
}
.wysiwyg-block blockquote {
  margin-bottom: 40px;
  color: #b9b9b9;
  border-left: 3px solid #e4e4e4;
}
.wysiwyg-block hr {
  display: block;
}
.wysiwyg-block em {
  font-style: italic !important;
}
.wysiwyg-block strong {
  font-weight: bold !important;
}
.wysiwyg-block em strong,
.wysiwyg-block strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

.faq-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .faq-block {
    margin-bottom: 60px;
  }
}
.faq-block > div {
  border-bottom: 1px solid #eaeaea;
}
.faq-block > div:last-of-type {
  border-bottom: none;
}
.faq-block > div > dt {
  position: relative;
  padding: 30px 0 15px 65px;
  background-repeat: no-repeat;
  font-size: 1.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .faq-block > div > dt {
    padding: 25px 0 15px 65px;
  }
}
@media screen and (max-width: 599px) {
  .faq-block > div > dt {
    padding: 18px 0 10px 45px;
    font-size: 1.6rem;
  }
}
.faq-block > div > dt::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 0;
  width: 46px;
  height: 46px;
  background-color: #3b5bbe;
  border-radius: 300px;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  padding-top: 4px;
}
@media screen and (max-width: 1024px) {
  .faq-block > div > dt::before {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .faq-block > div > dt::before {
    top: 14px;
    width: 32px;
    height: 32px;
    font-size: 1.8rem;
  }
}
.faq-block > div > dd {
  position: relative;
  margin-bottom: 30px;
  margin-left: 65px;
  padding: 30px 30px 30px 90px;
  background-color: #ebf1ed;
  border-radius: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .faq-block > div > dd {
    padding: 20px 20px 20px 55px;
    margin-left: 45px;
  }
}
.faq-block > div > dd::before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 30px;
  width: 46px;
  height: 46px;
  margin-top: -10px;
  background-color: #fff;
  border-radius: 200px;
  color: #3b5bbe;
  font-size: 2.4rem;
  text-align: center;
  text-indent: 0;
  vertical-align: top;
  transition: 0.4s;
  padding-top: 2px;
}
@media screen and (max-width: 599px) {
  .faq-block > div > dd::before {
    left: 14px;
    width: 32px;
    height: 32px;
    margin-top: -4px;
    font-size: 1.8rem;
  }
}
.faq-block > div:first-of-type > dt {
  padding-top: 5px;
}
.faq-block > div:first-of-type > dt::before {
  top: -4px;
}
@media screen and (max-width: 599px) {
  .faq-block > div:first-of-type > dt::before {
    top: 0;
  }
}

/*--------------------------------------------------------
photo
----------------------------------------------------------*/
.base-photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-photo-3 {
    gap: 15px;
  }
}
.base-photo-3::after {
  content: none;
}
.base-photo-3 li {
  width: calc((100% - 40px) / 3);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-photo-3 li {
    width: calc((100% - 30px) / 3);
  }
}
.base-photo-3 li img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .base-photo-3 li {
    width: 100%;
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .base-photo-3 li:has(img.sp) img:not(.sp) {
    display: none;
  }
}

.base-photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-photo-2 {
    gap: 15px;
  }
}
.base-photo-2::after {
  content: none;
}
.base-photo-2 li {
  width: calc((100% - 20px) / 2);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-photo-2 li {
    width: calc((100% - 15px) / 2);
  }
}
.base-photo-2 li img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .base-photo-2 li {
    width: 100%;
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .base-photo-2 li:has(img.sp) img:not(.sp) {
    display: none;
  }
}

.base-photo-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 599px) {
  .base-photo-1 {
    gap: 15px;
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .base-photo-1:has(img.sp) img:not(.sp) {
    display: none;
  }
}
.base-photo-1 li {
  width: 100%;
  text-align: center;
}
.base-photo-1 li img {
  width: 100%;
}
.base-photo-1.w80p li img {
  max-width: 80%;
}
@media screen and (max-width: 599px) {
  .base-photo-1.w80p li img {
    max-width: 100%;
  }
}

.base-photo-caption {
  display: block;
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .base-photo-caption {
    margin-top: 5px;
  }
}

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

/*--------------------------------------------------------
animation
----------------------------------------------------------*/
/*アニメーション*/
@keyframes feedIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn_copy {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn_copy2 {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 1025px) {
  .fadein-no-js {
    opacity: 0;
    animation-name: feedIn;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-fill-mode: forwards;
  }
}

@media screen and (min-width: 1025px) {
  .fadein {
    opacity: 0;
  }
}

@media screen and (min-width: 1025px) {
  .fadein--on {
    animation-name: feedIn;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-fill-mode: forwards;
  }
}

@media screen and (min-width: 1025px) {
  .deley01 {
    animation-delay: 0.1s;
  }
  .deley02 {
    animation-delay: 0.2s;
  }
  .deley03 {
    animation-delay: 0.3s;
  }
  .deley04 {
    animation-delay: 0.4s;
  }
  .deley05 {
    animation-delay: 0.5s;
  }
  .deley06 {
    animation-delay: 0.6s;
  }
  .deley07 {
    animation-delay: 0.7s;
  }
  .deley08 {
    animation-delay: 0.8s;
  }
  .deley09 {
    animation-delay: 0.9s;
  }
  .deley10 {
    animation-delay: 1s;
  }
  .deley11 {
    animation-delay: 1.1s;
  }
  .deley12 {
    animation-delay: 1.2s;
  }
  .deley13 {
    animation-delay: 1.3s;
  }
  .deley14 {
    animation-delay: 1.4s;
  }
  .deley15 {
    animation-delay: 1.5s;
  }
  .deley16 {
    animation-delay: 1.6s;
  }
  .deley17 {
    animation-delay: 1.7s;
  }
  .deley18 {
    animation-delay: 1.8s;
  }
  .deley19 {
    animation-delay: 1.9s;
  }
  .deley20 {
    animation-delay: 2s;
  }
  .deley21 {
    animation-delay: 2.1s;
  }
  .deley22 {
    animation-delay: 2.2s;
  }
  .deley23 {
    animation-delay: 2.3s;
  }
  .deley24 {
    animation-delay: 2.4s;
  }
  .deley25 {
    animation-delay: 2.5s;
  }
  .deley26 {
    animation-delay: 2.6s;
  }
  .deley27 {
    animation-delay: 2.7s;
  }
  .deley28 {
    animation-delay: 2.8s;
  }
}
/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  margin-top: 110px;
  display: flex;
  gap: 3vw;
  padding-bottom: 50px;
  position: relative;
  z-index: auto;
}
@media screen and (max-width: 1600px) {
  .top-main {
    gap: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main {
    display: block;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    margin-top: 80px;
  }
}
.top-main::before, .top-main::after {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
}
.top-main::before {
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
  background-color: #3b5bbe;
  width: 100%;
  height: 100%;
  z-index: -1;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .top-main::before {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (max-width: 599px) {
  .top-main::before {
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
  }
}
.top-main::after {
  background-image: url(../img/top/camear-bg.webp);
  background-size: 677px 252px;
  width: 677px;
  height: 252px;
  right: 5%;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1400px) {
  .top-main::after {
    background-size: 541.6px 201.6px;
    width: 541.6px;
    height: 201.6px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main::after {
    background-size: 406.2px 151.2px;
    width: 406.2px;
    height: 151.2px;
  }
}

.top-main__visual {
  width: calc(100% - 540px);
  padding-left: 3vw;
}
@media screen and (max-width: 1600px) {
  .top-main__visual {
    width: calc(100% - 480px);
    padding-left: 2vw;
  }
}
@media screen and (max-width: 1400px) {
  .top-main__visual {
    width: calc(100% - 380px);
  }
}
@media screen and (max-width: 1024px) {
  .top-main__visual {
    width: 100%;
    padding: 0 3vw;
  }
}

.top-main__slider-wrap {
  display: flex;
  gap: 3vw;
  margin-bottom: 50px;
}
@media screen and (max-width: 1600px) {
  .top-main__slider-wrap {
    gap: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__slider-wrap {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__slider-wrap {
    margin-bottom: 20px;
  }
}

.top-main__slider01,
.top-main__slider02,
.top-main__slider03,
.top-main__slider04 {
  width: calc((100% - 9vw) / 4);
}
@media screen and (max-width: 1600px) {
  .top-main__slider01,
  .top-main__slider02,
  .top-main__slider03,
  .top-main__slider04 {
    width: calc((100% - 6vw) / 4);
  }
}

.top-main__slider02,
.top-main__slider04 {
  margin-top: 4.48vw;
}

.top-main__news {
  width: 540px;
  margin-top: 20px;
}
@media screen and (max-width: 1600px) {
  .top-main__news {
    width: 480px;
  }
}
@media screen and (max-width: 1400px) {
  .top-main__news {
    width: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__news {
    width: 100%;
  }
}
.top-main__news__wrap {
  background-color: #0a2987;
  padding: 46px;
}
@media screen and (max-width: 1600px) {
  .top-main__news__wrap {
    padding: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main__news__wrap {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__news__wrap {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__news__wrap {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.top-main__title {
  position: relative;
  padding-left: 170px;
}
@media screen and (max-width: 1600px) {
  .top-main__title {
    padding-left: 140px;
  }
}
@media screen and (max-width: 1400px) {
  .top-main__title {
    padding-left: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title {
    margin-bottom: 0px;
    padding-left: 60px;
  }
}
.top-main__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 0;
  margin: auto;
  background-image: url(../img/top/kyushu-map.png);
  background-size: 161px 207px;
  width: 161px;
  height: 207px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1600px) {
  .top-main__title::before {
    background-size: 128.8px 165.6px;
    width: 128.8px;
    height: 165.6px;
    top: -60px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main__title::before {
    background-size: 96.6px 124.2px;
    width: 96.6px;
    height: 124.2px;
    top: -40px;
  }
}
@media screen and (max-width: 1100px) {
  .top-main__title::before {
    background-size: 80.5px 103.5px;
    width: 80.5px;
    height: 103.5px;
    top: -20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title::before {
    background-size: 48.3px 62.1px;
    width: 48.3px;
    height: 62.1px;
    top: -10px;
  }
}
.top-main__title__jp {
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 4.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}
@media screen and (max-width: 1600px) {
  .top-main__title__jp {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title__jp {
    font-size: 2rem;
  }
}
.top-main__title__en {
  line-height: 1.2;
  font-family: "Barlow", sans-serif !important;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}
@media screen and (max-width: 1600px) {
  .top-main__title__en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title__en {
    font-size: 1rem;
  }
}

.top-main__news__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .top-main__news__title {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .top-main__news__title {
    margin-bottom: 0px;
    display: flex;
  }
}
.top-main__news__title__jp {
  color: #fff;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .top-main__news__title__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1400px) {
  .top-main__news__title__jp {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__news__title__jp {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__news__title__jp {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
}
.top-main__news__title__en {
  font-family: "Barlow", sans-serif !important;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .top-main__news__title__en {
    font-size: 1.2rem;
  }
}

.top-main__news__list__item:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .top-main__news__list__item:not(:last-child) {
    margin-bottom: 5px;
  }
}
.top-main__news__list__link {
  display: block;
  background-color: #fff;
  padding: 20px 60px 20px 20px;
  line-height: 1.4;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .top-main__news__list__link {
    padding: 16px 40px 16px 16px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main__news__list__link {
    padding: 12px 40px 12px 16px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__news__list__link {
    padding-right: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__news__list__link {
    padding-right: 40px;
  }
}
.top-main__news__list__link::before, .top-main__news__list__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-main__news__list__link::before {
  width: 22px;
  height: 22px;
  background-color: #9bacde;
  right: 20px;
  border-radius: 50%;
}
@media screen and (max-width: 1600px) {
  .top-main__news__list__link::before {
    right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__news__list__link::before {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__news__list__link::before {
    right: 10px;
  }
}
.top-main__news__list__link::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 28px;
}
@media screen and (max-width: 1600px) {
  .top-main__news__list__link::after {
    right: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__news__list__link::after {
    right: 28px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__news__list__link::after {
    right: 18px;
  }
}
@media (any-hover: hover) {
  .top-main__news__list__link:hover {
    background-color: #e8ecf6;
  }
}
.top-main__news__list__date {
  display: block;
  font-family: "Barlow", sans-serif !important;
  color: #0a2987;
  font-weight: 600;
  margin-bottom: 5px;
}
@media screen and (max-width: 1400px) {
  .top-main__news__list__date {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }
  .top-main__news__list__date .ic-new {
    font-size: 1.2rem;
  }
}
.top-main__news__list__title {
  display: block;
  color: #333;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .top-main__news__list__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-main__news__list__title {
    font-size: 1.5rem;
  }
}

.top-important {
  background-color: #fbe8e8;
  padding: 4.16vw 40px;
}
@media screen and (max-width: 1024px) {
  .top-important {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-important {
    padding: 30px 20px;
  }
}
.top-important__wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .top-important__wrap {
    grid-template-columns: 1fr 3fr;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media screen and (max-width: 599px) {
  .top-important__title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.top-important__title__jp {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.4rem;
  padding-left: 50px;
  position: relative;
  color: #c52020;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .top-important__title__jp {
    font-size: 2rem;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__title__jp {
    font-size: 1.8rem;
    padding-left: 28px;
    margin-bottom: 0;
  }
}
.top-important__title__jp::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  background-image: url(../img/common/icon-important.svg);
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1024px) {
  .top-important__title__jp::before {
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__title__jp::before {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    top: 2px;
  }
}
.top-important__title__en {
  font-family: "Barlow", sans-serif !important;
  font-weight: 600;
  font-size: 1.4rem;
  color: rgba(197, 32, 32, 0.5);
  padding-left: 52px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .top-important__title__en {
    font-size: 1.2rem;
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__title__en {
    font-size: 1rem;
  }
}

.top-important__list__item {
  margin-bottom: 10px;
}
.top-important__list__link {
  background-color: #fff;
  display: block;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 5fr;
  transition: 0.3s ease;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-important__list__link {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 50px 12px 16px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list__link {
    padding-right: 40px;
  }
}
.top-important__list__link::before, .top-important__list__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top-important__list__link::before {
  width: 23px;
  height: 23px;
  background-color: #c52020;
  border-radius: 50%;
  right: 28px;
}
@media screen and (max-width: 1024px) {
  .top-important__list__link::before {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list__link::before {
    right: 10px;
  }
}
.top-important__list__link::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 37px;
}
@media screen and (max-width: 1024px) {
  .top-important__list__link::after {
    right: 28px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list__link::after {
    right: 18px;
  }
}
@media (any-hover: hover) {
  .top-important__list__link:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .top-important__list__link:hover .top-important__list__title {
    color: #c52020;
  }
}
.top-important__list__date {
  color: #c52020;
  font-family: "Barlow", sans-serif !important;
  font-weight: 700;
  display: block;
  line-height: 1.6;
}
.top-important__list__title {
  display: block;
  padding-right: 60px;
  line-height: 1.6;
  color: #333;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .top-important__list__title {
    padding-right: 0;
  }
}

.top-seminar {
  background-image: url(../img/top/seminar-bg.webp);
  background-size: cover;
  padding: 6.66vw 40px;
}
@media screen and (max-width: 1024px) {
  .top-seminar {
    padding: 5vw 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar {
    padding: 20px;
  }
}

.top-seminar__wrap {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.top-seminar__title {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-seminar__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar__title {
    margin-bottom: 10px;
  }
}
.top-seminar__title__jp {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 4.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 5px;
  padding-left: -5px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__title__jp {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar__title__jp {
    font-size: 2.2rem;
  }
}
.top-seminar__title__en {
  font-family: "Barlow", sans-serif !important;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1024px) {
  .top-seminar__title__en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar__title__en {
    font-size: 1rem;
  }
}

.top-seminar__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar__list {
    grid-template-columns: 1fr;
  }
}

.top-seminar__list__box {
  background-color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box {
    margin-bottom: 20px;
  }
}
.top-seminar__list__box__title {
  background-color: #0a2987;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 14px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-seminar__list__box__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar__list__box__title {
    font-size: 1.8rem;
  }
}
.top-seminar__list__box__title .icon {
  padding-left: 36px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box__title .icon {
    padding-left: 26px;
  }
}
.top-seminar__list__box__title .icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  margin: auto;
  background-image: url(../img/common/icon-seminar.svg);
  background-size: 22px 30px;
  width: 22px;
  height: 30px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box__title .icon::before {
    background-size: 17.6px 24px;
    width: 17.6px;
    height: 24px;
    top: 7px;
  }
}
@media screen and (max-width: 834px) {
  .top-seminar__list__box__title .icon::before {
    top: 4px;
  }
}
@media screen and (max-width: 599px) {
  .top-seminar__list__box__title .icon::before {
    background-size: 15.4px 21px;
    width: 15.4px;
    height: 21px;
    top: 4px;
  }
}
.top-seminar__list__box__data {
  padding: 36px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box__data {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box__data .seminar-end {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-seminar__list__box__data .seminar-end {
    font-size: 1.6rem;
  }
}
.top-seminar__list__box__data .seminar-tbl {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__list__box__data .seminar-tbl {
    grid-template-columns: 1fr 3fr;
  }
}
.top-seminar__list__box__data .seminar-tbl__title, .top-seminar__list__box__data .seminar-tbl__data {
  padding: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .top-seminar__list__box__data .seminar-tbl__title, .top-seminar__list__box__data .seminar-tbl__data {
    padding: 10px;
    font-size: 1.5rem;
  }
}
.top-seminar__list__box__data .base-btn {
  margin: 0 auto;
  min-width: auto;
  width: 240px;
  display: block;
  background-color: #0a2987;
  transition: 0.3s ease;
}
@media screen and (max-width: 834px) {
  .top-seminar__list__box__data .base-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    width: 200px;
  }
}
.top-seminar__list__box__data .base-btn::after {
  border-top: 1px solid #0a2987;
  border-right: 1px solid #0a2987;
}
@media (any-hover: hover) {
  .top-seminar__list__box__data .base-btn:hover {
    background-color: #3b5bbe;
  }
}
.top-seminar__list__box.seminar .top-seminar__list__box__title {
  background-color: #526ec3;
}
.top-seminar__list__box.seminar .seminar-tbl__title {
  background-color: #f5f3f9;
}
.top-seminar__list__box.seminar .base-btn {
  background-color: #526ec3;
}
.top-seminar__list__box.seminar .base-btn::after {
  border-top: 1px solid #526ec3;
  border-right: 1px solid #526ec3;
}
@media (any-hover: hover) {
  .top-seminar__list__box.seminar .base-btn:hover {
    background-color: #0a2987;
  }
}

.top-seminar__btn {
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #fff;
  padding: 16px 10px;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .top-seminar__btn {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-seminar__btn {
    font-size: 1.6rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.top-seminar__btn .icon {
  position: relative;
  padding-left: 36px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__btn .icon {
    padding-left: 30px;
  }
}
.top-seminar__btn .icon::before, .top-seminar__btn .icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-seminar__btn .icon::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-seminar__btn .icon::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
}
.top-seminar__btn .icon::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #0a2987;
  border-right: 2px solid #0a2987;
  transform: rotate(45deg);
  left: 6px;
}
@media screen and (max-width: 1024px) {
  .top-seminar__btn .icon::after {
    top: 2px;
  }
}
@media (any-hover: hover) {
  .top-seminar__btn:hover {
    background-color: #fff;
    color: #0a2987;
  }
  .top-seminar__btn:hover .icon::before {
    background-color: #0a2987;
  }
  .top-seminar__btn:hover .icon::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.top-news {
  position: relative;
  padding: 5.98vw 40px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 4vw 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 30px 20px 120px;
  }
}
.top-news::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 42.2vw;
  height: 27vw;
  background-color: #e3e9fb;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .top-news::before {
    width: 60vw;
    height: 60vw;
  }
}
.top-news .base-btn {
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 599px) {
  .top-news .base-btn {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.top-news .news-list__link {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .top-news .news-list__link {
    padding-right: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-news .news-list__link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.top-news .news-list__date {
  margin-bottom: 5px;
}
.top-news .news-list__title {
  width: 100%;
}

.top-news__wrap {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .top-news__wrap {
    grid-template-columns: 1fr 2.5fr;
  }
}
@media screen and (max-width: 599px) {
  .top-news__wrap {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .top-news__data .base-btn {
    min-width: auto;
    max-width: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.top-news__title {
  margin-bottom: 3.645vw;
}
@media screen and (max-width: 599px) {
  .top-news__title {
    text-align: center;
    margin-bottom: 0;
  }
}
.top-news__title__jp {
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0a2987;
}
@media screen and (max-width: 1024px) {
  .top-news__title__jp {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.top-news__title__en {
  color: rgba(82, 110, 195, 0.5);
  font-size: 2.4rem;
  font-family: "Barlow", sans-serif !important;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .top-news__title__en {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-list {
  border-top: 1px solid #cdd0d9;
}
.news-list__item {
  border-bottom: 1px solid #cdd0d9;
}
.news-list__link {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px 60px 30px 0;
  line-height: 1.4;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 599px) {
  .news-list__link {
    padding: 20px 40px 20px 0;
    display: block;
    line-height: 1.6;
  }
}
.news-list__link::before, .news-list__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news-list__link::before {
  width: 26px;
  height: 26px;
  background-color: #9bacde;
  border-radius: 50%;
  right: 20px;
}
@media screen and (max-width: 1024px) {
  .news-list__link::before {
    width: 22px;
    height: 22px;
    right: 10px;
  }
}
.news-list__link::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 30px;
}
@media screen and (max-width: 1024px) {
  .news-list__link::after {
    right: 18px;
  }
}
@media (any-hover: hover) {
  .news-list__link:hover {
    background-color: #e8ecf6;
  }
}
.news-list__date {
  font-family: "Barlow", sans-serif !important;
  color: #0a2987;
  font-weight: 600;
  width: 120px;
  margin-top: -2px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .news-list__date {
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .news-list__date {
    margin-bottom: 4px;
  }
}
.news-list__title {
  color: #333;
  width: calc(100% - 130px);
  display: block;
}
@media screen and (max-width: 1024px) {
  .news-list__title {
    width: calc(100% - 110px);
  }
}
@media screen and (max-width: 599px) {
  .news-list__title {
    width: 100%;
  }
}

.ic, .ic-important, .ic-new {
  color: #fff;
  font-size: 1.4rem;
  width: 46px;
  display: inline-block;
  margin-left: 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1;
  padding: 3px 5px 4px;
}
@media screen and (max-width: 599px) {
  .ic, .ic-important, .ic-new {
    font-size: 1.3rem;
  }
}
.ic-new {
  background-color: #ee3785;
}
.ic-important {
  background-color: #c52020;
}

.news-title {
  border-top: 5px solid #3b5bbe;
  padding: 30px 2px 32px;
  border-bottom: 2px solid #cdd0d9;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .news-title {
    padding: 24px 2px 28px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news-title {
    padding: 12px 2px 18px;
    margin-bottom: 30px;
    border-top: 3px solid #3b5bbe;
    border-bottom: 1px solid #cdd0d9;
  }
}
.news-title__date {
  font-family: "Barlow", sans-serif !important;
  color: #0a2987;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .news-title__date {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .news-title__date {
    margin-bottom: 2px;
  }
}
.news-title__data {
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .news-title__data {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .news-title__data {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.news-data {
  border-bottom: 1px solid #cdd0d9;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .news-data {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news-data {
    margin-bottom: 30px;
  }
}

.news-btn-wrap {
  text-align: center;
}

/*--------------------------------------------------------
seminar
----------------------------------------------------------*/
.seminar-list__item {
  border: 1px solid #cdd0d9;
  padding: 26px 30px 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .seminar-list__item {
    padding: 16px 16px;
  }
}
.seminar-list__title {
  border-bottom: 1px solid #cdd0d9;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
  padding: 0 0 16px 0px;
  line-height: 1.4;
  border-bottom: 3px solid #3b5bbe;
}
@media screen and (max-width: 1024px) {
  .seminar-list__title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .seminar-list__title {
    font-size: 1.6rem;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 2px solid #3b5bbe;
  }
}
.seminar-list__info {
  display: grid;
  grid-template-columns: 1fr 7fr;
}
@media screen and (max-width: 599px) {
  .seminar-list__info {
    grid-template-columns: 1fr 3fr;
  }
}
.seminar-list__info__title, .seminar-list__info__data {
  border-bottom: 1px dotted #999;
  padding: 10px 5px;
}
.seminar-list__info__title {
  font-weight: bold;
  position: relative;
  padding-left: 24px;
}
@media screen and (max-width: 599px) {
  .seminar-list__info__title {
    padding-left: 20px;
  }
}
.seminar-list__info__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 22px;
  left: 5px;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: #3b5bbe;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .seminar-list__info__title::before {
    width: 6px;
    height: 6px;
    top: 18px;
  }
}
.seminar-list__info__data a {
  text-decoration: underline;
}
.seminar-list__info__data a:hover {
  text-decoration: none;
}
.seminar-list__link {
  margin-top: 20px;
  text-align: center;
}
.seminar-list__link .base-btn {
  min-width: 220px;
  padding: 10px 50px 12px 30px;
}

.seminar-data__wrap {
  border-bottom: 1px solid #cdd0d9;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.seminar-tbl {
  display: grid;
  grid-template-columns: 1fr 5fr;
  margin-bottom: 40px;
  border-top: 1px solid #cdd0d9;
}
@media screen and (max-width: 599px) {
  .seminar-tbl {
    grid-template-columns: 1fr 4fr;
    margin-bottom: 30px;
  }
}
.seminar-tbl__title, .seminar-tbl__data {
  padding: 20px;
  border-bottom: 1px solid #cdd0d9;
  border-right: 1px solid #cdd0d9;
}
@media screen and (max-width: 1024px) {
  .seminar-tbl__title, .seminar-tbl__data {
    padding: 16px;
  }
}
@media screen and (max-width: 599px) {
  .seminar-tbl__title, .seminar-tbl__data {
    padding: 10px;
  }
}
.seminar-tbl__title {
  border-left: 1px solid #cdd0d9;
  font-weight: bold;
  background-color: #e9edf9;
  text-align: center;
}
.seminar .seminar-tbl__title {
  background-color: #e9edf9;
}

.seminar-tbl__data {
  background-color: #fff;
}
.seminar-tbl__data a {
  text-decoration: underline;
}
.seminar-tbl__data a:hover {
  text-decoration: none;
}

.seminar-end {
  background-color: #fbe8e8;
  color: #d82f2f;
  padding: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .seminar-end {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .seminar-end {
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding: 8px;
  }
}/*# sourceMappingURL=style.css.map */