@charset "UTF-8";
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap");
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*--------------------------------------------------------

	リセット : 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,
body {
  font-size: 62.5%;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
ul[class],
ol[class] {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*引用符の表示が出ないようにしています*/
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;
}
@media screen and (max-width: 1024px) {
  img {
    max-width: 100%;
  }
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 5mm;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.2s;
  text-decoration: underline;
}

a:link {
  color: #324ca2;
}

a:visited {
  color: #1c2862;
}

a:hover {
  color: #4663c6;
  text-decoration: none;
}

a:active {
  color: #324ca2;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--------------------------------------------------------

	body設定

----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  color: #353336;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #fff;
  line-height: 1.9;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*--------------------------------------------------------

	box-sizing

----------------------------------------------------------*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------------------------------

	clearfix

----------------------------------------------------------*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*--------------------------------------------------------

	禁則処理の追加

----------------------------------------------------------*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*--------------------------------------------------------

	iOSでのsubmit, buttonのデザインをリセットするCSS

----------------------------------------------------------*/
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/** Form */
button, input, select, textarea {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection {
  background-color: #b3d4fc; /* Change as appropriate */
  color: #000; /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc; /* Change as appropriate */
  color: #000; /* Change as appropriate */
  text-shadow: none;
}

/* サイトの基本のカラー */
/* マウスオーバーのカラー */
.anchor {
  margin-top: -120px;
  padding-top: 120px;
  display: block;
}
@media screen and (max-width: 599px) {
  .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
}

/*--------------------------------------------------------

	デバイス関係なし

----------------------------------------------------------*/
.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb08 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.ml00 {
  margin-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt06 {
  padding-top: 6px !important;
}

.pt07 {
  padding-top: 7px !important;
}

.pt08 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}
/* =====================================================

 header

===================================================== */
.header {
  display: flex;
  justify-content: space-between;
  position: relative;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.site-id {
  width: 230px;
  height: 100%;
  transition: 0.2s ease;
  z-index: 99;
}
@media screen and (max-width: 1400px) {
  .site-id {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .site-id {
    width: auto;
  }
}
.site-id a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.2s ease;
}
.site-id a img {
  transition: 0.2s;
}
.site-id a.logo01 {
  width: 100%;
  height: 230px;
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .site-id a.logo01 {
    height: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .site-id a.logo01 {
    display: none;
  }
}
.header-on .site-id a.logo01 {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.site-id a.logo01 img {
  max-width: 164px;
  margin-top: 10px;
}
@media screen and (max-width: 1400px) {
  .site-id a.logo01 img {
    max-width: 154px;
  }
}
.site-id a.logo02 {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  opacity: 0;
  display: none;
  pointer-events: none;
}
@media screen and (max-width: 1400px) {
  .site-id a.logo02 {
    padding-left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .site-id a.logo02 {
    pointer-events: auto;
    display: block;
    opacity: 1;
  }
}
@media screen and (max-width: 599px) {
  .site-id a.logo02 {
    margin-left: 6px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .site-id a.logo02 img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
  }
}
.header-on .site-id a.logo02 {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.header-on .site-id a.logo02 img {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.site-id a.logo02 img {
  max-width: 221px;
}
@media screen and (max-width: 1400px) {
  .site-id a.logo02 img {
    max-width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .site-id a.logo02 img {
    max-width: 170px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  transition: 0.2s;
}

.gnav {
  height: 100%;
}
.gnav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  margin-right: 30px !important;
}
@media screen and (max-width: 1400px) {
  .gnav-list {
    margin-right: 20px !important;
  }
}
.gnav-list__item {
  height: 100%;
}
.gnav-list__item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1400px) {
  .gnav-list__item:not(:last-child) {
    margin-right: 30px;
  }
}
.gnav-list__item a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #161616;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  text-decoration: none;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .gnav-list__item a {
    font-size: 1.5rem;
  }
}
.gnav-list__item a.active, .gnav-list__item a:hover {
  color: #324ca2;
  transition: 0.2s;
}

.mnav {
  height: 100%;
}
.mnav-list {
  display: flex;
  align-items: center;
  height: 100%;
}
.mnav-list__item {
  height: 100%;
}
.mnav-list__item.language {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #e5e9f4;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.mnav-list__item.language a {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 50%;
  padding: 0 13px;
  color: #32469b;
  text-decoration: none;
}
.mnav-list__item.language a.jp {
  padding-top: 8px;
}
.mnav-list__item.language a.en {
  padding-bottom: 8px;
}
.mnav-list__item.language a.active {
  text-decoration: underline;
}
.mnav-list__item.language a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .mnav-list__item.language {
    display: none;
  }
}
.mnav-list__item.search {
  position: relative;
}
.mnav-list__item.search label.search-btn {
  display: block;
  position: relative;
  width: 92px;
  height: 100%;
  padding-top: 65px;
  background-color: #324ca2;
  background-image: url(../img/common/icon_mushimegane.png);
  background-repeat: no-repeat;
  background-position: top 28px center;
  background-size: 32px auto;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif !important;
  text-align: center;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .mnav-list__item.search label.search-btn {
    width: 70px;
    padding-top: 50px;
    background-position: top 20px center;
    background-size: 28px auto;
  }
}
@media screen and (max-width: 599px) {
  .mnav-list__item.search label.search-btn {
    width: 60px;
    background-position: top 18px center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
.mnav-list__item.search > input {
  display: none;
}
.mnav-list__item.search > input:checked ~ .hidden-content {
  pointer-events: auto;
  opacity: 1;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .mnav-list__item.search > input:checked ~ .search-btn {
    padding-top: 0;
    background-image: none;
  }
  .mnav-list__item.search > input:checked ~ .search-btn::before, .mnav-list__item.search > input:checked ~ .search-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    margin: auto;
    background-color: #fff;
  }
  .mnav-list__item.search > input:checked ~ .search-btn::before {
    transform: rotate(45deg);
  }
  .mnav-list__item.search > input:checked ~ .search-btn::after {
    transform: rotate(-45deg);
  }
}
.mnav-list__item.search .hidden-content {
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  width: 345px;
  height: 100%;
  padding-left: 25px;
  background-color: #324ca2;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: -99;
}
@media screen and (max-width: 599px) {
  .mnav-list__item.search .hidden-content {
    top: 60px;
    right: -60px;
    width: 100vw;
    height: 80px;
    padding: 0 20px;
  }
}
.mnav-list__item.search .hidden-content form {
  display: flex;
}
@media screen and (max-width: 599px) {
  .mnav-list__item.search .hidden-content form {
    width: 100%;
  }
}
.mnav-list__item.search .hidden-content form input {
  display: block;
}
.mnav-list__item.search .hidden-content form input[type=text] {
  width: calc(100% - 40px);
  height: 40px;
  padding: 5px 10px;
  background-color: #fff;
  border: none;
  color: #111;
  font-size: 1.5rem;
  outline: none;
}
.mnav-list__item.search .hidden-content form input[type=text]::-moz-placeholder {
  color: #324ca2;
  font-size: 1.4rem;
}
.mnav-list__item.search .hidden-content form input[type=text]::placeholder {
  color: #324ca2;
  font-size: 1.4rem;
}
.mnav-list__item.search .hidden-content form input[type=submit] {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-image: url("../img/common/icon_mushimegane_blue.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px auto;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}
.mnav-list__item.search .hidden-content .close {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 21px;
  height: 20px;
  margin: auto 0;
  cursor: pointer;
}
.mnav-list__item.search .hidden-content .close::before, .mnav-list__item.search .hidden-content .close::after {
  content: "";
  position: absolute;
  top: 8px;
  left: -2px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.mnav-list__item.search .hidden-content .close::before {
  transform: rotate(45deg);
}
.mnav-list__item.search .hidden-content .close::after {
  transform: rotate(-45deg);
}

.gnav-sp {
  width: 100%;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .gnav-sp {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-sp {
    padding-bottom: 60px;
  }
}
.gnav-sp-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.gnav-sp-list__item > a {
  display: block;
  position: relative;
  padding: 13px 45px 13px 25px;
  background-color: #1c2862;
  color: #fff !important;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list__item > a {
    font-size: 1.6rem;
  }
}
.gnav-sp-list__item > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
}
.gnav-sp-list__item > a:hover {
  background-color: #303a7b;
}
.gnav-sp-list__item.has_lv02 {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
.gnav-sp-list__item.has_lv02 > a::after {
  display: none;
}
.gnav-sp-list__item.has_lv02 .arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 58px;
  cursor: pointer;
}
.gnav-sp-list__item.has_lv02 .arrow::after {
  background: rgba(255, 255, 255, 0.7);
  content: "";
  height: 1px;
  width: 15px;
  right: 21px;
  position: absolute;
  top: 25px;
}
.gnav-sp-list__item.has_lv02 .arrow::before {
  background: rgba(255, 255, 255, 0.7);
  content: "";
  height: 15px;
  width: 1px;
  right: 28px;
  position: absolute;
  top: 18px;
  transition: 0.3s;
}
.gnav-sp-list__item.has_lv02 .arrow.active::before {
  transform: rotate(90deg);
}
.gnav-sp-list__secondary {
  display: none;
  padding-left: 27px !important;
  background-color: #303a7b;
}
.gnav-sp-list__secondary__item:not(:last-child) {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.gnav-sp-list__secondary__item > a {
  display: block;
  position: relative;
  padding: 14px 12px 14px 25px;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list__secondary__item > a {
    padding: 12px 12px 12px 25px;
  }
}
.gnav-sp-list__secondary__item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  margin: auto 0;
  z-index: 1;
}
.gnav-sp-list02 {
  display: flex;
  flex-wrap: wrap;
}
.gnav-sp-list02__item {
  width: 50%;
  flex-grow: 1;
  border-bottom: 1px solid #191d6a;
}
.gnav-sp-list02__item:nth-child(odd) {
  border-right: 1px solid #191d6a;
}
.gnav-sp-list02__item:last-child {
  border-right: none;
  border-bottom: none;
}
.gnav-sp-list02__item a {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 17px 15px 17px 40px;
  background-color: #5a72c3;
  color: #fff !important;
  font-size: 1.5rem;
  line-height: 1.3;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list02__item a {
    padding-right: 10px;
    padding-left: 23px;
  }
}
.gnav-sp-list02__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list02__item a::after {
    left: 8px;
  }
}
.gnav-sp-list03 {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px !important;
  padding: 25px 5px 0px 20px !important;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list03 {
    padding: 25px 5px 0px 15px !important;
  }
}
.gnav-sp-list03__item {
  width: calc((99.9% - 20px) / 2);
  margin: 10px 0 0 10px;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list03__item {
    margin-left: 7px;
  }
}
.gnav-sp-list03__item a {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  color: #fff !important;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.3;
  text-decoration: none;
}
.gnav-sp-list03__item a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 7px solid rgba(255, 255, 255, 0.4);
  border-right: none;
}
.gnav-sp-language {
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 160px !important;
  margin: 35px auto 0 !important;
  border-radius: 30px;
}
.gnav-sp-language__item {
  width: 50%;
}
.gnav-sp-language__item a {
  display: block;
  padding: 10px 8px 8px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.gnav-sp-language__item a.jp {
  background-color: #6c6ea0;
}
.gnav-sp-language__item a.en {
  background-color: #474a88;
}

#nav-open {
  display: block;
  position: relative;
  width: 92px;
  height: 100%;
  background-color: #1c2862;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s ease;
}
@media screen and (min-width: 1025px) {
  #nav-open:hover > span > span::after {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #nav-open {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    width: 60px;
  }
}
#nav-open::before {
  content: attr(data-title);
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 65px;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif !important;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  #nav-open::before {
    padding-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open::before {
    content: "";
    padding-top: 0;
  }
}
#nav-open > span {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  width: 37px;
  height: 26px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #nav-open > span {
    top: 18px;
    width: 30px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open > span {
    width: 25px;
  }
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  background-color: #fff;
  border-radius: 5pxpx;
  transition: all 0.2s ease;
}
#nav-open > span > span::before {
  top: -12px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #nav-open > span > span::before {
    top: -10px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open > span > span::before {
    top: -8px;
  }
}
#nav-open > span > span::after {
  bottom: -12px;
  width: 17px;
}
@media screen and (max-width: 1024px) {
  #nav-open > span > span::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open > span > span::after {
    bottom: -8px;
  }
}
#nav-open.active > span > span {
  background-color: transparent;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
}
#nav-open.active > span > span::before {
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  width: 100%;
  transform: rotate(-225deg);
}

#nav-content {
  overflow-y: scroll;
  position: absolute;
  right: 0;
  top: 100px;
  width: 25%;
  height: calc(100vh - 100px);
  padding-bottom: 30px;
  background-color: #191d6a;
  z-index: 98;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #nav-content {
    width: 70%;
    top: 80px;
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 599px) {
  #nav-content {
    width: 100%;
    top: 60px;
    height: calc(100vh - 60px);
  }
}
#nav-content::-webkit-scrollbar {
  width: 6px;
}
#nav-content::-webkit-scrollbar-track {
  background: #1c2862;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
#nav-content::-webkit-scrollbar-thumb {
  background: #324ca2;
  border-radius: 3px;
  box-shadow: none;
}

#nav-close-overlay {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: #1c1c35;
  opacity: 0;
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #nav-close-overlay {
    top: 80px;
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 599px) {
  #nav-close-overlay {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  pointer-events: auto;
}
#nav-input:checked ~ #nav-close-overlay {
  opacity: 0.5;
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  html.scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
}

/* pagetop */
.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 96;
}
@media screen and (max-width: 599px) {
  .pagetop {
    right: 6px;
    bottom: 56px;
  }
}
.pagetop a {
  position: relative;
  background: rgba(28, 40, 98, 0.95);
  position: relative;
  display: block;
  height: 52px;
  width: 52px;
}
@media screen and (max-width: 599px) {
  .pagetop a {
    height: 40px;
    width: 40px;
    border-radius: 50px;
  }
}
.pagetop a::before, .pagetop a::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.pagetop a::after {
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 599px) {
  .pagetop a::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
.pagetop:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.footer-main {
  padding: 80px 110px 40px 40px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 1024px) {
  .footer-main {
    padding: 50px 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-main {
    padding: 40px 20px 65px;
  }
}
.footer-main__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-main__header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
}
.footer-main__footer {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-main__footer {
    justify-content: center;
  }
}

.footer-school {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-school {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.footer-school dt {
  display: block;
  max-width: 246px;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-school dt {
    margin: 0 auto 30px;
  }
}
.footer-school dt img {
  width: 100%;
}
.footer-school dd {
  color: #010101;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .footer-school dd {
    text-align: center;
  }
}
.footer-school dd a {
  color: #010101;
  text-decoration: none;
}
.footer-school dd a.access {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  padding-left: 22px;
  color: #32469b;
  font-size: 1.4rem;
  text-decoration: underline;
  line-height: 1.6;
}
.footer-school dd a.access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 20px;
  background-image: url(../img/common/icon_location.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer-school dd a.access:hover {
  text-decoration: none;
}

.footer-sns {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer-sns {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-sns > dt {
  margin-right: 18px;
  color: #324ca2;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 1024px) {
  .footer-sns > dt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}
.footer-sns > dd {
  max-width: 36px;
}
.footer-sns > dd:not(:last-child) {
  margin-right: 10px;
}
.footer-sns > dd a:hover {
  opacity: 0.8;
}

.footer-sitemap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer-sitemap {
    display: none;
  }
}
.footer-sitemap li:not(:last-child) {
  margin-right: 25px;
}
@media screen and (max-width: 1200px) {
  .footer-sitemap li:not(:last-child) {
    margin-right: 10px;
  }
}
.footer-sitemap li a {
  color: #010101;
  font-size: 1.5rem;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .footer-sitemap li a {
    font-size: 1.4rem;
    letter-spacing: -1px;
  }
}
.footer-sitemap li a:hover {
  text-decoration: underline;
}

.footer-copyright {
  color: #5d5d5d;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  .footer-copyright {
    font-size: 1.2rem;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-copyright {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-copyright {
    font-size: 1.1rem;
  }
}

/* =====================================================

 layout

===================================================== */
.container {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .container {
    display: block;
  }
}

.main {
  width: calc(100% - 285px);
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .main {
    width: 100%;
  }
}

.contents {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .contents {
    padding: 0 20px;
  }
}
.contents__inner {
  margin: 0 auto;
  padding: 70px 0 120px;
  max-width: 1040px;
}
@media screen and (max-width: 1024px) {
  .contents__inner {
    padding: 30px 0 60px;
  }
}
@media screen and (max-width: 599px) {
  .contents__inner {
    padding: 25px 0 40px;
  }
}
.contents__inner.w1140 {
  max-width: 1140px;
}

.side {
  width: 285px;
  top: 100px;
  width: 285px;
  margin-top: -90px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .side {
    width: 100%;
    margin-top: 0;
    padding-bottom: 0;
  }
}

.hide {
  position: absolute;
  left: -9999em;
  top: -9999em;
}

/* =====================================================

 topicpass

===================================================== */
.topipass {
  display: flex;
  justify-content: flex-end;
  margin: 15px 10px 0 0 !important;
}
@media screen and (max-width: 599px) {
  .topipass {
    display: none;
  }
}
.topipass__item {
  color: #0d0d0d;
  font-size: 1.4rem;
  vertical-align: middle;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .topipass__item {
    font-size: 1.2rem;
  }
}
.topipass__item a {
  display: inline-block;
  position: relative;
  color: #324ca2 !important;
  padding-right: 20px;
  color: #324ca2;
  text-decoration: none;
}
.topipass__item a::after {
  content: "／";
  position: absolute;
  top: 1px;
  right: 4px;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .topipass__item a::after {
    top: 0;
    font-size: 1.2rem;
  }
}
.topipass__item a:hover {
  text-decoration: underline;
}

/* =====================================================

 title

===================================================== */
.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 330px;
  padding: 10px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .menu-title {
    height: 220px;
  }
}
@media screen and (max-width: 599px) {
  .menu-title {
    height: 120px;
  }
}
.menu-title__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.menu-title__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #191d6a;
  opacity: 0.4;
  z-index: 3;
}
.menu-title__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.menu-title__inner {
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.03em;
  text-align: center;
}
.menu-title__sub-text {
  margin-top: -30px;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .menu-title__sub-text {
    margin-top: -15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .menu-title__sub-text {
    margin-top: -5px;
    margin-bottom: 10px;
  }
}
.menu-title__sub-text span {
  display: inline-block;
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .menu-title__sub-text span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .menu-title__sub-text span {
    font-size: 1.3rem;
  }
}
.menu-title__sub-text span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-title__text {
  font-size: 3.7rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .menu-title__text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .menu-title__text {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.sec-title__lv01 {
  position: relative;
  padding-bottom: 14px;
  border-bottom: 3px solid #e8e7e7;
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv01 {
    font-size: 2.2rem;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv01 {
    font-size: 1.8rem;
    padding-bottom: 14px;
  }
}
.sec-title__lv01::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 190px;
  height: 3px;
  background-color: #324ca2;
}
@media screen and (max-width: 599px) {
  .sec-title__lv01::before {
    width: 40px;
  }
}

.sec-title__lv02 {
  padding: 7px 0 18px 18px;
  font-size: 2.2rem;
  line-height: 1.2em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-bottom: 2px solid #e8e7e7;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv02 {
    font-size: 1.9rem;
    padding: 4px 0 14px 14px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv02 {
    padding: 4px 0 12px 10px;
    font-size: 1.7rem;
  }
}
.sec-title__lv02::before, .sec-title__lv02::after {
  content: "";
  position: absolute;
  width: 5px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .sec-title__lv02::before, .sec-title__lv02::after {
    width: 4px;
  }
}
.sec-title__lv02::after {
  height: calc(60% - 8px);
  background-color: #1c2862;
  top: 0;
}
.sec-title__lv02::before {
  height: calc(100% - 8px);
  top: 0;
  background-color: #4b64b7;
}

.sec-title__lv03 {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8e7e7;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv03 {
    font-size: 1.9rem;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv03 {
    font-size: 1.7rem;
    padding-bottom: 10px;
  }
}
.sec-title__lv03::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: #324ca2;
}
@media screen and (max-width: 599px) {
  .sec-title__lv03::before {
    width: 40px;
  }
}

.sec-title__lv04 {
  font-size: 1.8rem;
  border-bottom: 1px dotted #324ca2;
  position: relative;
  line-height: 1.2;
  padding-left: 30px;
  padding-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv04 {
    font-size: 1.7rem;
    padding-left: 25px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv04 {
    font-size: 1.5rem;
    padding-left: 22px;
  }
}
.sec-title__lv04::before, .sec-title__lv04::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin: auto;
  border-radius: 100%;
}
.sec-title__lv04::before {
  width: 18px;
  height: 18px;
  top: 2px;
  left: 2px;
  background-color: #324ca2;
}
@media screen and (max-width: 599px) {
  .sec-title__lv04::before {
    width: 14px;
    height: 14px;
  }
}
.sec-title__lv04::after {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  left: 7px;
  top: 7px;
}
@media screen and (max-width: 599px) {
  .sec-title__lv04::after {
    width: 6px;
    height: 6px;
    left: 6px;
    top: 6px;
  }
}

.sec-title__lv05 {
  position: relative;
  padding: 16px 10px 17px 30px;
  background-color: #f5f7fa;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.1;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv05 {
    font-size: 1.6rem;
    padding: 15px 10px 16px 22px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv05 {
    font-size: 1.4rem;
    padding: 13px 10px 13px 20px;
  }
}
.sec-title__lv05::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 25px;
  left: 0px;
  width: 15px;
  height: 4px;
  background-color: #324ca2;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv05::before {
    top: 22px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv05::before {
    width: 13px;
    height: 3px;
    top: 18px;
  }
}

.sec-title__lv06 {
  position: relative;
  padding: 15px 10px 15px 25px;
  background-color: #324ca2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .sec-title__lv06 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title__lv06 {
    padding: 12px 10px 12px 18px;
    font-size: 1.4rem;
  }
}
.sec-title__lv06::before {
  background: rgba(255, 255, 255, 0.7);
  content: "";
  height: calc(100% - 26px);
  width: 4px;
  left: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .sec-title__lv06::before {
    height: calc(100% - 20px);
    left: 9px;
    width: 3px;
  }
}

/* =====================================================

 side

===================================================== */
.side-title {
  position: relative;
  height: 90px;
  background-color: #324ca2;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .side-title {
    height: auto;
  }
}
.side-title a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff !important;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .side-title a {
    padding: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .side-title a {
    padding: 14px;
    font-size: 1.5rem;
  }
}
.side-title a:hover {
  opacity: 0.8;
}

.side-list {
  /* スクロール固定
      overflow-y: scroll;
      height: calc(100% - 90px);
      @include mq(tb) {
          overflow: visible;
         height: 100%;
      }
      &::-webkit-scrollbar{
          width: 6px;
      }
      &::-webkit-scrollbar-track{
          background: rgba($cl-base,0.1);
          border: none;
          border-radius: 0;
          box-shadow: none;
      }
      &::-webkit-scrollbar-thumb{
          background: rgba($cl-base,0.3);
          border-radius: 3px;
          box-shadow: none;
      }
  */
}
.side-list__item {
  border-bottom: 1px solid #d3d3d3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
.side-list__item > a {
  display: block;
  position: relative;
  padding: 22px 5px 22px 15px;
  background-color: #fff;
  color: #020202;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .side-list__item > a {
    padding: 20px 20px 20px 36px;
  }
}
@media screen and (max-width: 599px) {
  .side-list__item > a {
    padding: 18px 15px;
    font-size: 1.4rem;
  }
}
.side-list__item > a.active, .side-list__item > a:hover {
  background-color: #f2f4f8;
  color: #324ca2;
}
.side-list__secondary {
  padding-left: 20px !important;
}
@media screen and (max-width: 1024px) {
  .side-list__secondary {
    padding-left: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .side-list__secondary {
    padding-left: 20px !important;
  }
}
.side-list__secondary__item:not(:last-child) {
  border-bottom: 1px dotted #d3d3d3;
}
.side-list__secondary__item > a {
  display: block;
  position: relative;
  padding: 10px 0 10px 15px;
  color: #020202;
  font-size: 1.5rem;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .side-list__secondary__item > a {
    font-size: 1.4rem;
  }
}
.side-list__secondary__item > a::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 5px;
  height: 8px;
  border: 4px solid transparent;
  border-left: 5px solid #324ca2;
  border-right: none;
}
@media screen and (max-width: 599px) {
  .side-list__secondary__item > a::before {
    top: 18px;
  }
}
.side-list__secondary__item > a.active, .side-list__secondary__item > a:hover {
  color: #324ca2;
}

/*--------------------------------------------------------
_tab
----------------------------------------------------------*/
.tab-wrap {
  position: relative;
}

.tab-label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-label li {
  position: relative;
  padding: 3px 30px;
  border-right: 1px solid #b1b8d6;
  color: #010101;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  transition: 0.3s;
  letter-spacing: -0.03em;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .tab-label li {
    padding: 6px 12px;
    font-size: 1.4rem;
  }
}
.tab-label li::before {
  content: "";
  display: none;
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  width: 7px;
  height: 6px;
  margin: 0 auto;
  border: 3px solid transparent;
  border-top: 6px solid #324ca2;
  border-bottom: none;
}
.tab-label li:first-child {
  border-left: 1px solid #b1b8d6;
}
.tab-label li.active {
  color: #324ca2;
}
.tab-label li.active::before {
  display: block;
}
@media screen and (max-width: 599px) {
  .tab-label li.active::before {
    bottom: -9px;
  }
}
.tab-label li:hover {
  color: #324ca2;
}

.tab-content {
  display: none;
  width: 100%;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .tab-content {
    margin-top: 15px;
  }
}
.tab-content__empty {
  padding: 30px;
  color: #010101;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .tab-content__empty {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .tab-content__empty {
    font-size: 1.4rem;
  }
}
.tab-content.active {
  display: block;
}

.pagination {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination-item a,
.pagination-item span {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
}
.pagination-item a:hover,
.pagination-item span:hover {
  text-decoration: none !important;
}
@media screen and (max-width: 599px) {
  .pagination-item {
    margin-left: 1px;
    margin-right: 1px;
  }
}
.pagination-item__number {
  padding-top: 3px;
  font-size: 1.6rem;
  font-family: "Overpass", sans-serif !important;
  font-weight: 300;
  text-align: center;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  background-color: #e5e9f4;
  margin-left: 3px;
  margin-right: 3px;
  position: relative;
  color: #324ca2 !important;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .pagination-item__number {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    margin-left: 1px;
    margin-right: 1px;
  }
}
.pagination-item__number:hover, .pagination-item__number.active {
  background-color: #324ca2;
  color: #fff !important;
  transition: 0.2s;
}
.pagination-item__number::before, .pagination-item__number::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  margin: auto;
}
.pagination-item__prev, .pagination-item__next {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 1.6rem;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .pagination-item__prev, .pagination-item__next {
    font-size: 1.2rem;
  }
}
.pagination-item__prev::before, .pagination-item__prev::after, .pagination-item__next::before, .pagination-item__next::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.pagination-item__prev:hover, .pagination-item__next:hover {
  color: #1c2862 !important;
  transition: 0.2s;
}
.pagination-item__prev {
  margin-right: 1em;
  padding-left: 18px;
}
@media screen and (max-width: 599px) {
  .pagination-item__prev {
    margin-right: 5px;
    padding-left: 10px;
  }
}
.pagination-item__prev::before {
  width: 13px;
  height: 13px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(225deg);
  left: 0;
  top: 2px;
}
@media screen and (max-width: 599px) {
  .pagination-item__prev::before {
    width: 8px;
    height: 8px;
    border-top: 2px solid #324ca2;
    border-right: 2px solid #324ca2;
    transform: rotate(225deg);
  }
}
.pagination-item__prev:hover::before {
  left: -5px;
  border-color: #1c2862;
}
.pagination-item__next {
  margin-left: 1em;
  padding-right: 18px;
}
@media screen and (max-width: 599px) {
  .pagination-item__next {
    margin-left: 5px;
    padding-right: 10px;
  }
}
.pagination-item__next::after {
  width: 13px;
  height: 13px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  right: 0;
  top: 2px;
}
@media screen and (max-width: 599px) {
  .pagination-item__next::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #324ca2;
    border-right: 2px solid #324ca2;
    transform: rotate(45deg);
  }
}
.pagination-item__next:hover::after {
  right: -5px;
  border-color: #1c2862;
}
.pagination-item__dot {
  width: 32px;
  color: #666;
}
@media screen and (max-width: 599px) {
  .pagination-item__dot {
    width: 16px;
  }
}

/* =====================================================

 _button

===================================================== */
.btn-wrap {
  position: relative;
}

.btn-prev {
  position: relative;
  border: 1px solid #324ca2;
  max-width: 240px;
  font-size: 1.6rem;
  text-align: center;
  display: block;
  color: #324ca2 !important;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  padding: 18px 35px 18px 50px;
  margin: auto;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .btn-prev {
    font-size: 1.4rem;
    padding: 14px 35px 14px 50px;
  }
}
.btn-prev::before, .btn-prev::after {
  position: absolute;
  left: 25px;
  bottom: 0;
  content: "";
  height: 2px;
  background: #324ca2;
  margin: auto;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .btn-prev::before, .btn-prev::after {
    left: 18px;
  }
}
.btn-prev::before {
  width: 24px;
  top: 8px;
}
.btn-prev::after {
  width: 12px;
  top: 0;
  transform: rotate(-40deg);
}
@media screen and (min-width: 1025px) {
  .btn-prev:hover {
    background: #324ca2;
    color: #fff !important;
  }
  .btn-prev:hover::before, .btn-prev:hover::after {
    left: 20px;
    background: #fff;
  }
}

.btn-base {
  border-radius: 26px;
  max-width: 260px;
  margin: auto;
  background-color: #1c2862;
  color: #ffffff !important;
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1;
  padding: 18px 10px 18px 10px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .btn-base {
    width: 80%;
    padding: 16px 10px;
    font-size: 1.5rem;
  }
}
.btn-base::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.btn-base:hover {
  background-color: #324ca2;
  transition: 0.2s;
}

.btn-textlink {
  margin: 0;
  padding: 17px 16px 17px 30px;
  width: auto;
  height: auto;
  font-size: 1.6rem;
  line-height: 1.1em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border: 1px solid #324ca2;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  color: #324ca2 !important;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .btn-textlink {
    font-size: 1.5rem;
    padding: 14px 12px 14px 25px;
  }
}
@media screen and (max-width: 599px) {
  .btn-textlink {
    width: 100%;
    font-size: 1.4rem;
  }
}
.btn-textlink::before {
  content: "";
  top: 21px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .btn-textlink::before {
    left: 8px;
    top: 16px;
  }
}
@media screen and (max-width: 599px) {
  .btn-textlink::before {
    top: 18px;
    width: 8px;
    height: 8px;
  }
}
.btn-textlink:hover {
  background: #f5f7fa;
}

.fixed-btn {
  position: fixed;
  display: flex;
  width: 100%;
  height: 56px;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-height: 667px) {
  .fixed-btn {
    height: 50px;
  }
}
.fixed-btn__item:nth-child(-n+2) {
  width: calc((99.9% - 54px) / 2);
}
.fixed-btn__item:nth-child(3) {
  width: 54px;
}
.fixed-btn__item:not(:last-child) {
  border-right: 1px solid #fff;
}
.fixed-btn__item a, .fixed-btn__item p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.fixed-btn__item a span, .fixed-btn__item p span {
  display: inline-block;
  position: relative;
}
.fixed-btn__item a span::before, .fixed-btn__item p span::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
}
.fixed-btn__item a.btn-a, .fixed-btn__item p.btn-a {
  background-color: #c80e77;
}
.fixed-btn__item a.btn-a span::before, .fixed-btn__item p.btn-a span::before {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.fixed-btn__item a.btn-a.request span, .fixed-btn__item p.btn-a.request span {
  padding-left: 30px;
}
.fixed-btn__item a.btn-a.request span::before, .fixed-btn__item p.btn-a.request span::before {
  width: 19px;
  height: 25px;
  background-image: url(../img/common/icon_file_w.svg);
}
.fixed-btn__item a.btn-a.admission span, .fixed-btn__item p.btn-a.admission span {
  padding-left: 28px;
}
.fixed-btn__item a.btn-a.admission span::before, .fixed-btn__item p.btn-a.admission span::before {
  width: 22px;
  height: 22px;
  background-image: url(../img/common/icon_pencil.svg);
}
.fixed-btn__item a.btn-b, .fixed-btn__item p.btn-b {
  background-color: #217fc9;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.fixed-btn__item a.btn-b.chatbot span, .fixed-btn__item p.btn-b.chatbot span {
  padding-top: 28px;
}
.fixed-btn__item a.btn-b.chatbot span::before, .fixed-btn__item p.btn-b.chatbot span::before {
  top: 6px;
  right: 0;
  left: 0;
  width: 25px;
  height: 23px;
  margin: 0 auto;
  background-image: url(../img/common/icon_chat.svg);
}
.fixed-btn__chatbot {
  position: fixed;
  width: 96px;
  height: 96px;
  bottom: 85px;
  right: 10px;
  z-index: 10;
}

#ricoh-smartchat-launcher-base {
  z-index: 99 !important;
}
@media screen and (max-width: 599px) {
  #ricoh-smartchat-launcher-base {
    min-width: 56px !important;
    min-height: 56px !important;
  }
}

@media screen and (max-width: 599px) {
  #ricoh-smartchat-launcher.custom {
    max-width: 38px !important;
    max-height: 38px !important;
    bottom: 5px !important;
    right: 14px !important;
  }
}
/* =====================================================

 text

===================================================== */
.copy-mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 2.9rem;
  color: #324ca2;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (max-width: 1400px) {
  .copy-mincho {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .copy-mincho {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-mincho {
    font-size: 1.9rem;
    letter-spacing: 0;
  }
}
.copy-mincho.line {
  border-bottom: 1px solid #324ca2;
  padding-top: 10px;
  padding-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .copy-mincho.line {
    padding-top: 8px;
    padding-bottom: 12px;
  }
}

.copy-gothic {
  font-size: 2.4rem;
  letter-spacing: 0.5px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
  color: #324ca2;
}
@media screen and (max-width: 1400px) {
  .copy-gothic {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .copy-gothic {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic {
    font-size: 1.7rem;
  }
}
.copy-gothic.line {
  border-bottom: 1px solid #324ca2;
  padding-top: 10px;
  padding-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .copy-gothic.line {
    padding-top: 8px;
    padding-bottom: 12px;
  }
}

.copy-bg {
  padding: 61px 90px 57px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 3rem;
  text-align: center;
  background-color: #f5f7fa;
  color: #324ca2;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1400px) {
  .copy-bg {
    padding: 58px 90px 54px;
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .copy-bg {
    padding: 40px 60px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-bg {
    font-size: 1.8rem;
    padding: 20px;
    line-height: 1.5;
  }
}

.text-bg01 {
  padding: 30px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 599px) {
  .text-bg01 {
    padding: 15px;
  }
}

.text-bg02 {
  padding: 30px;
  background-color: #f5f7fa;
}
@media screen and (max-width: 599px) {
  .text-bg02 {
    padding: 15px;
  }
}

.text-bg03 {
  padding: 30px;
  background-color: #feeeee;
}
@media screen and (max-width: 599px) {
  .text-bg03 {
    padding: 15px;
  }
}

.text-2column {
  padding: 0;
  list-style: none;
}
.text-2column li {
  width: calc(50% - 15px);
  float: right;
  text-align: justify;
  line-height: 1.8;
}
.text-2column li:first-child {
  float: left;
}
@media screen and (max-width: 599px) {
  .text-2column li {
    margin-top: 15px;
    width: 100%;
    float: none;
  }
  .text-2column li:first-child {
    margin-top: 0;
  }
}

/* =====================================================

 list

===================================================== */
/*リスト*/
.list-wrapper {
  list-style: none;
}
.list-wrapper li {
  margin-top: 10px;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
}
.list-wrapper li:first-child {
  margin-top: 0;
}
.list-wrapper li::before {
  content: "";
  top: 4px;
  left: 0px;
  width: 14px;
  height: 14px;
  background-color: #324ca2;
  position: absolute;
  border-radius: 100%;
}
@media screen and (max-width: 599px) {
  .list-wrapper li {
    margin-top: 7px;
    font-size: 14px;
    padding-left: 15px;
  }
  .list-wrapper li::before {
    content: "";
    top: 4px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
}

.download-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .download-list {
    width: 100%;
  }
}
.download-list__item {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  margin-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .download-list__item {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .download-list__item {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 8px;
  }
}
.download-list__item:nth-child(2n) {
  margin-right: 0;
}
.download-list__item a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ecf2fb;
  padding: 26px 40px 25px 57px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  text-align: left;
  text-decoration: none;
  color: #474747;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .download-list__item a {
    padding: 23px 30px 22px 57px;
  }
}
@media screen and (max-width: 599px) {
  .download-list__item a {
    padding: 17px 30px 17px 45px;
  }
}
.download-list__item a::before, .download-list__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.download-list__item a::before {
  background-image: url(../img/common/icon_file.svg);
  background-repeat: no-repeat;
  background-size: 30px 36px;
  width: 30px;
  height: 36px;
  left: 15px;
}
@media screen and (max-width: 599px) {
  .download-list__item a::before {
    left: 12px;
    background-size: 24px 30px;
    width: 24px;
    height: 30px;
  }
}
.download-list__item a::after {
  width: 12px;
  height: 12px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  right: 18px;
}
@media screen and (max-width: 599px) {
  .download-list__item a::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #324ca2;
    border-right: 2px solid #324ca2;
    transform: rotate(45deg);
    right: 15px;
  }
}
.download-list__item a:hover {
  transition: 0.2s;
  background-color: #e3ebf8;
  color: #324ca2;
}
.download-list__item.pdf a::before {
  background-image: url(../img/common/icon_pdf.png);
}
.download-list__item.word a::before {
  background-image: url(../img/common/icon_word.png);
}
.download-list__item.xls a::before {
  background-image: url(../img/common/icon_xls.png);
}

.download-list02__item {
  position: relative;
  margin-top: 16px;
  position: relative;
  padding-left: 46px;
  min-height: 44px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .download-list02__item {
    padding-left: 38px;
    margin-top: 12px;
  }
}
.download-list02__item::before {
  background-image: url(../img/common/icon_file.svg);
  background-size: 34px auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  content: "";
  height: 46px;
  width: 34px;
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 599px) {
  .download-list02__item::before {
    background-size: 28px auto;
    height: 40px;
    width: 28px;
  }
}
.download-list02__item.pdf::before {
  background-image: url(../img/common/icon_pdf.png);
}
.download-list02__item.word::before {
  background-image: url(../img/common/icon_word.png);
}
.download-list02__item.xls::before {
  background-image: url(../img/common/icon_xls.png);
}
.download-list02__item a {
  display: inline-block;
  font-weight: 500;
  position: relative;
  text-align: left;
}
.download-list02__item a:hover {
  color: #324ca2;
}
.download-list02__item p {
  margin-top: 2px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .download-list02__item p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .download-list02__item p {
    font-size: 1.3rem;
  }
}

.index-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .index-list {
    display: block;
  }
}
.index-list__item {
  width: calc((100% - 15px) / 2);
  margin-top: 12px;
  margin-right: 15px;
  border: 1px solid #324ca2;
  background-color: #fff;
  min-height: 68px;
}
.index-list__item:nth-child(-n+2) {
  margin-top: 0;
}
.index-list__item:nth-child(even) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .index-list__item {
    margin-top: 10px;
    min-height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .index-list__item {
    width: 100%;
    margin-right: 0;
    margin-top: 6px !important;
    min-height: auto;
  }
}
.index-list__item:hover {
  background-color: #f5f7fa;
  transition: 0.2s;
}
.index-list__item a {
  display: flex;
  align-items: center;
  padding: 13px 20px 13px 44px;
  color: #324ca2;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  position: relative;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}
@media screen and (max-width: 1024px) {
  .index-list__item a {
    font-size: 1.6rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .index-list__item a {
    padding: 15px 20px 15px 36px;
    font-size: 1.5rem;
  }
}
.index-list__item a::before, .index-list__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.index-list__item a::before {
  width: 20px;
  height: 20px;
  background-color: #324ca2;
  left: 12px;
}
@media screen and (max-width: 599px) {
  .index-list__item a::before {
    width: 17px;
    height: 17px;
    left: 10px;
  }
}
.index-list__item a::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  left: 16px;
}
@media screen and (max-width: 599px) {
  .index-list__item a::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    left: 13px;
  }
}

.btn-list01 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .btn-list01 {
    display: block;
  }
}
.btn-list01__item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  background-color: #fff;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .btn-list01__item {
    width: calc((100% - 30px) / 3);
    margin-right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .btn-list01__item {
    width: 100%;
    margin-right: 0;
  }
}
.btn-list01__item:nth-child(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .btn-list01__item:nth-child(-n+3) {
    margin-top: 13px;
  }
}
.btn-list01__item:nth-child(3n) {
  margin-right: 0;
}
.btn-list01__item__ph {
  overflow: hidden;
}
.btn-list01__item__ph img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  font-family: "object-fit: cover; object-position:center center;";
}
@media screen and (max-width: 1024px) {
  .btn-list01__item__ph img {
    width: 100%;
    height: 125px;
  }
}
@media screen and (max-width: 599px) {
  .btn-list01__item__ph img {
    height: 160px;
  }
}
.btn-list01__item__text {
  position: relative;
  padding: 20px 48px 20px 20px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .btn-list01__item__text {
    font-size: 1.6rem;
    padding: 17px 35px 17px 15px;
  }
}
.btn-list01__item__text::before, .btn-list01__item__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn-list01__item__text::before {
  width: 34px;
  height: 34px;
  border: 1px solid #324ca2;
  border-radius: 50px;
  right: 14px;
}
@media screen and (max-width: 1024px) {
  .btn-list01__item__text::before {
    width: 28px;
    height: 28px;
    right: 10px;
  }
}
.btn-list01__item__text::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  right: 28px;
}
@media screen and (max-width: 1024px) {
  .btn-list01__item__text::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #324ca2;
    border-right: 2px solid #324ca2;
    transform: rotate(45deg);
    right: 22px;
  }
}
.btn-list01__item a {
  display: block;
  padding: 0;
  color: #324ca2;
  position: relative;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
  background-color: #eff1f8;
}
.btn-list01__item a:hover {
  opacity: 0.85;
}

.btn-list02 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .btn-list02 {
    display: block;
  }
}
.btn-list02__item {
  width: calc((100% - 30px) / 3);
  margin-top: 12px;
  margin-right: 15px;
  background-color: #fff;
  min-height: 68px;
}
.btn-list02__item:nth-child(-n+3) {
  margin-top: 0;
}
.btn-list02__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .btn-list02__item {
    margin-top: 10px;
    min-height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .btn-list02__item {
    width: 100%;
    margin-right: 0;
    margin-top: 6px !important;
    min-height: auto;
  }
}
.btn-list02__item a {
  display: flex;
  align-items: center;
  padding: 13px 20px 13px 35px;
  color: #324ca2;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  position: relative;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
  background-color: #eff1f8;
}
@media screen and (max-width: 1024px) {
  .btn-list02__item a {
    font-size: 1.6rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .btn-list02__item a {
    padding: 16px 20px 16px 36px;
    font-size: 1.5rem;
  }
}
.btn-list02__item a::before, .btn-list02__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.btn-list02__item a::before {
  width: 22px;
  height: 22px;
  background-color: #324ca2;
}
@media screen and (max-width: 599px) {
  .btn-list02__item a::before {
    width: 17px;
    height: 17px;
    left: 10px;
  }
}
.btn-list02__item a::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  left: 4px;
}
@media screen and (max-width: 599px) {
  .btn-list02__item a::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    left: 13px;
  }
}
.btn-list02__item a:hover {
  opacity: 0.85;
}

.btn-list03 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .btn-list03 {
    display: block;
  }
}
.btn-list03__item {
  width: calc((100% - 30px) / 2);
  margin-bottom: 18px;
  padding-bottom: 15px;
  margin-right: 30px;
  border-bottom: 1px solid #d7d7d7;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .btn-list03__item {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .btn-list03__item {
    width: 100%;
    margin-right: 0;
    margin-top: 6px !important;
    min-height: auto;
    margin-bottom: 16px;
  }
}
.btn-list03__item:nth-child(-n+2) {
  margin-top: 0;
}
.btn-list03__item:nth-child(even) {
  margin-right: 0;
}
.btn-list03__item a {
  display: flex;
  align-items: center;
  padding: 2px 20px 10px 0px;
  color: #324ca2;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  position: relative;
  line-height: 1.4;
  width: 100%;
  text-decoration: none !important;
}
@media screen and (max-width: 1024px) {
  .btn-list03__item a {
    font-size: 1.5rem;
    padding: 0px 20px 15px 0px;
  }
}
@media screen and (max-width: 599px) {
  .btn-list03__item a {
    padding-bottom: 12px;
  }
}
.btn-list03__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 3px;
  bottom: 16px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-list03__item a::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #324ca2;
    border-right: 1px solid #324ca2;
    transform: rotate(45deg);
  }
}
.btn-list03__item a:hover {
  padding-left: 5px;
  transition: 0.2s;
}
.btn-list03__item p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #535353;
}
@media screen and (max-width: 1024px) {
  .btn-list03__item p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .btn-list03__item p {
    font-size: 1.3rem;
  }
}

/* =====================================================

 table

===================================================== */
.table {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-collapse: collapse;
  vertical-align: baseline;
}
.table th,
.table td {
  padding: 20px;
  line-height: 1.4;
  border: 1px solid #d8d8d8;
  vertical-align: baseline;
}
@media screen and (max-width: 1024px) {
  .table th,
  .table td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .table th,
  .table td {
    padding: 10px 10px 10px 10px;
    font-size: 1.4rem;
  }
}
.table th {
  background-color: #f5f7fa;
  font-weight: 500;
  text-align: center;
}

/*左220px固定*/
.table02 {
  width: 100%;
  border-collapse: collapse;
  vertical-align: baseline;
}
.table02 tr {
  border-bottom: 1px solid #d8d8d8;
}
.table02 tr:first-child {
  border-top: 1px solid #d8d8d8;
}
.table02 th,
.table02 td {
  vertical-align: baseline;
  padding: 20px 0px 20px 25px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .table02 th,
  .table02 td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .table02 th,
  .table02 td {
    font-size: 1.4rem;
    padding: 15px 0px 15px 10px;
  }
}
.table02 th {
  width: 220px;
  padding: 20px 20px 20px 25px;
  background-color: #f5f7fa;
  color: #1c2862;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .table02 th {
    width: 180px;
    padding: 20px 10px 20px 15px;
  }
}
@media screen and (max-width: 599px) {
  .table02 th {
    padding: 15px 10px;
    width: 110px;
    font-size: 1.4rem;
  }
}

.table03 {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-collapse: collapse;
  vertical-align: baseline;
}
@media screen and (max-width: 599px) {
  .table03 {
    border-top: none;
  }
}
.table03 th,
.table03 td {
  vertical-align: baseline;
  padding: 25px;
  line-height: 1.4;
  border: 1px solid #d8d8d8;
}
@media screen and (max-width: 1024px) {
  .table03 th,
  .table03 td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .table03 th,
  .table03 td {
    padding: 10px 10px 10px 10px;
    font-size: 1.4rem;
    border: none;
  }
}
.table03 th {
  width: 300px;
  background-color: #f5f7fa;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .table03 th {
    width: 100%;
    display: block;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }
}
@media screen and (max-width: 599px) {
  .table03 td {
    display: block;
  }
}

table.pd10 th, table.pd10 td {
  padding: 10px;
}

/* スワイプ時
-------------------------------*/
.swipe-sec {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .swipe-sec {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .swipe-sec table {
    width: 700px !important;
  }
}
@media screen and (max-width: 599px) {
  .swipe-sec__contents {
    overflow: auto;
    box-sizing: border-box;
  }
  .swipe-sec__contents::-webkit-scrollbar {
    height: 8px;
  }
  .swipe-sec__contents::-webkit-scrollbar-track {
    border-radius: 0px;
    background: #eee;
  }
  .swipe-sec__contents::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #324ca2;
  }
}
.swipe-sec__icon:before {
  content: "";
  display: none;
  font-size: 40px;
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  padding: 10px;
  color: #fff;
  border-radius: 3px;
  background-color: #324ca2;
  background-image: url(../img/common/swipe_icon.png);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0.8;
  border: 1px solid #fff;
  z-index: 10;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  .swipe-sec__icon:before {
    display: block;
  }
}

/* tbl scroll
-------------------------------*/
.tbl-scroll__wrap {
  overflow: auto;
}

.tbl-scroll__wrap::-webkit-scrollbar {
  height: 5px;
}

.tbl-scroll__wrap::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.tbl-scroll__wrap::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

/* 教師紹介テーブル
-------------------------------*/
.teacher-tbl {
  width: 100%;
  border-collapse: collapse;
}
.teacher-tbl tr {
  border-bottom: 1px dotted #b9b9b9;
}
.teacher-tbl tr:last-child {
  border-bottom: none;
}
.teacher-tbl th,
.teacher-tbl td {
  padding: 10px 5px 10px 5px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .teacher-tbl th,
  .teacher-tbl td {
    font-size: 1.4rem;
  }
}
.teacher-tbl th {
  width: 22%;
  background-color: #f5f7fa;
  font-weight: 500;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
  padding-left: 15px;
  color: #324ca2;
  vertical-align: top;
}
@media screen and (max-width: 599px) {
  .teacher-tbl th {
    width: 25%;
    padding-left: 8px;
  }
}
.teacher-tbl th::before {
  background: #324ca2;
  content: "";
  height: 16px;
  width: 3px;
  left: 0;
  position: absolute;
  top: 14px;
}
@media screen and (max-width: 599px) {
  .teacher-tbl th::before {
    top: 11px;
    height: 14px;
    width: 2px;
  }
}
/* =====================================================

 外部サービス

===================================================== */
.youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
.youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.youtube-2 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .youtube-2 {
    display: block;
  }
}
.youtube-2 li {
  width: calc((100% - 24px) / 2);
  margin-right: 24px;
  margin-top: 10px;
  text-align: center;
}
.youtube-2 li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .youtube-2 li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }
}
@media screen and (max-width: 599px) {
  .youtube-2 li {
    margin-right: 0;
    width: 100%;
  }
}
.youtube-2 li a:hover {
  opacity: 0.85;
}

.youtube-3 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .youtube-3 {
    display: block;
  }
}
.youtube-3 li {
  margin-right: 24px;
  width: calc((99.9% - 48px) / 3);
  margin-top: 10px;
  text-align: center;
}
.youtube-3 li:last-child {
  margin-right: 0;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .youtube-3 li {
    margin-right: 15px;
    width: calc((99.9% - 30px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .youtube-3 li {
    margin-right: 0;
    width: 100%;
  }
}
.youtube-3 li a:hover {
  opacity: 0.85;
}

.googlemap-wrapper {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.googlemap-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* =====================================================

 box

===================================================== */
.box {
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .box {
    margin-bottom: 20px;
  }
}
.box.mb-short {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .box.mb-short {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .box.mb-short {
    margin-bottom: 13px;
  }
}
.box.mb-long {
  margin-bottom: 46px;
}
@media screen and (max-width: 1024px) {
  .box.mb-long {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .box.mb-long {
    margin-bottom: 30px;
  }
}

.img-right__layout {
  overflow: hidden;
}
.img-right__layout__text {
  width: auto;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .img-right__layout__text {
    width: 100%;
  }
}
.img-right__layout__img {
  margin: 7px 0px 0px 35px;
  width: auto;
  max-width: 33%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-right__layout__img {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.img-right {
  margin: 7px 0px 20px 35px;
  width: auto;
  max-width: 33%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-right {
    text-align: center;
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
  }
}
.img-right img {
  margin-bottom: 5px;
}

.img-left__layout {
  overflow: hidden;
}
.img-left__layout__text {
  width: auto;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .img-left__layout__text {
    width: 100%;
  }
}
.img-left__layout__img {
  margin: 7px 35px 0px 0px;
  width: auto;
  max-width: 33%;
  float: left;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .img-left__layout__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.img-left {
  margin: 7px 35px 20px 0px;
  width: auto;
  max-width: 33%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-left {
    text-align: center;
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
  }
}
.img-left img {
  margin-bottom: 5px;
}

.img-caption {
  text-align: center;
  display: block;
}

.photo-1 {
  width: 100%;
  text-align: center;
}
.photo-1 a:hover {
  opacity: 0.85;
}

.photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.photo-2 li {
  width: calc((100% - 24px) / 2);
  margin-right: 24px;
  text-align: center;
}
.photo-2 li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .photo-2 li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }
}
@media screen and (max-width: 599px) {
  .photo-2 li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
  }
}
.photo-2 li a:hover {
  opacity: 0.85;
}

.photo-3 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .photo-3 {
    display: block;
  }
}
.photo-3 li {
  margin-right: 24px;
  width: calc((99.9% - 48px) / 3);
  margin-top: 10px;
  text-align: center;
}
.photo-3 li:last-child {
  margin-right: 0;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .photo-3 li {
    margin-right: 15px;
    width: calc((99.9% - 30px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .photo-3 li {
    margin-right: 0;
    width: 100%;
  }
}
.photo-3 li a:hover {
  opacity: 0.85;
}

/****** 特殊ブロック ********/
/*横画像BOX 2カラム*/
.column2-textlayout {
  display: flex;
  flex-wrap: wrap;
}
.column2-textlayout__item {
  width: calc((100% - 35px) / 2);
  margin-left: 35px;
}
.column2-textlayout__item:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .column2-textlayout__item {
    width: calc((100% - 20px) / 2);
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .column2-textlayout__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
  }
}
.column2-textlayout__item__text {
  width: auto;
}
@media screen and (max-width: 1024px) {
  .column2-textlayout__item__text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .column2-textlayout__item__text {
    width: 100%;
    margin-bottom: 10px;
    order: 1;
  }
}
.column2-textlayout__item__photo {
  width: auto;
  max-width: 49%;
  float: right;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .column2-textlayout__item__photo {
    height: 100%;
  }
}
.column2-textlayout__item__photo img {
  max-width: calc(100% - 15px);
  margin: 7px 0px 10px 0;
}
@media screen and (max-width: 599px) {
  .column2-textlayout__item__photo {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    order: 2;
  }
  .column2-textlayout__item__photo img {
    max-width: 100%;
    margin: 0;
  }
}

/*縦画像BOX 3カラム*/
.column3-textlayout {
  display: flex;
  flex-wrap: wrap;
}
.column3-textlayout__item {
  width: calc((100% - 60px) / 3);
  margin-left: 30px;
}
.column3-textlayout__item:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .column3-textlayout__item {
    width: calc((100% - 30px) / 3);
    margin-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .column3-textlayout__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.column3-textlayout__item__photo {
  margin-bottom: 15px;
}

/*枠線BOX 2カラム*/
.box-column2 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-column2 li {
  width: calc(50% - 15px);
  text-align: justify;
  line-height: 1.8;
  border: 2px solid #324ca2;
  padding: 0px;
  margin-right: 30px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .box-column2 li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .box-column2 li {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
    flex: inherit;
  }
}
.box-column2 li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 599px) {
  .box-column2 li:last-child {
    margin-bottom: 0;
  }
}
.box-column2 li .ttl {
  position: relative;
  padding: 10px 10px 10px 27px;
  background: #324ca2;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .box-column2 li .ttl {
    font-size: 1.7rem;
    padding: 8px 8px 8px 27px;
  }
}
@media screen and (max-width: 599px) {
  .box-column2 li .ttl {
    font-size: 1.5rem;
    padding: 8px 8px 8px 20px;
  }
}
.box-column2 li .ttl::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: calc(100% - 24px);
  width: 4px;
  left: 13px;
  position: absolute;
  top: 12px;
  bottom: 12px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .box-column2 li .ttl::before {
    width: 3px;
    height: calc(100% - 18px);
    top: 9px;
    bottom: 9px;
    left: 8px;
  }
}
.box-column2 li .text {
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .box-column2 li .text {
    padding: 15px;
  }
}

/*縦画像BOX 2カラム*/
.box-photo-column2 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-photo-column2 li {
  width: calc((100% - 34px) / 2);
  text-align: justify;
  line-height: 1.8;
  padding: 0px;
  margin-right: 34px;
}
@media screen and (max-width: 1024px) {
  .box-photo-column2 li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .box-photo-column2 li {
    margin-right: 0;
    margin-bottom: 25px;
    width: 100%;
  }
}
.box-photo-column2 li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 599px) {
  .box-photo-column2 li:last-child {
    margin-bottom: 0px;
  }
}
.box-photo-column2 li .ttl {
  position: relative;
  padding: 18px 15px 18px 20px;
  color: #324ca2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 18px;
  background: #eef2fa;
  border-left: 4px solid #324ca2;
}
@media screen and (max-width: 1024px) {
  .box-photo-column2 li .ttl {
    font-size: 1.9rem;
    padding: 16px 10px 16px 12px;
    line-height: 1.3;
    border-width: 3px;
  }
}
@media screen and (max-width: 599px) {
  .box-photo-column2 li .ttl {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.box-photo-column2 li .photo {
  margin-top: 15px;
}

.top-wysiwyg {
  max-width: 1140px;
  margin: 40px auto 40px;
}
@media screen and (max-width: 1024px) {
  .top-wysiwyg {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .top-wysiwyg {
    margin: 40px auto 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-wysiwyg {
    margin: 20px auto 20px;
  }
}

/* =====================================================

  TOP

===================================================== */
.top-important {
  background-color: #fde6e9;
  display: flex;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .top-important {
    padding: 15px 15px 15px 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-important {
    display: block;
    padding: 10px 15px 10px 15px;
  }
}
.top-important__ttl {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 19%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 400;
  color: #df0f05;
  border-right: 1px solid #df0f05;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl {
    display: block;
    width: 24%;
    font-size: 1.5rem;
    padding-right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl {
    display: block;
    width: auto;
    border: none;
    margin-bottom: 12px;
    border-bottom: 1px dotted #df0f05;
  }
}
.top-important__ttl .ttl {
  position: relative;
  padding-left: 70px;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl .ttl {
    width: 100%;
    padding-left: 35px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl .ttl {
    width: auto;
    display: inline-block;
    padding-left: 27px;
  }
}
.top-important__ttl .ttl::before {
  background-image: url(../img/common/icon_important.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 36px;
  width: 36px;
  left: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl .ttl::before {
    height: 28px;
    width: 28px;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl .ttl::before {
    height: 22px;
    width: 22px;
  }
}
.top-important__ttl .btn {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #df0f05;
  margin-left: 25px;
  background: #fff6f7;
  text-decoration: none;
  border-radius: 50px;
  padding: 2px 20px 2px 15px;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl .btn {
    padding: 2px 15px 2px 10px;
    margin-left: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl .btn {
    display: inline-block;
    margin-left: 15px;
  }
}
.top-important__ttl .btn::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 0px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #fc7770;
}
.top-important__list {
  padding-left: 50px !important;
}
@media screen and (max-width: 1024px) {
  .top-important__list {
    padding-left: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list {
    padding-left: 0px !important;
  }
}
.top-important__list li {
  margin: 7px 0px;
}
.top-important__list li a {
  display: flex;
  color: #df0f05;
  line-height: 1.4;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .top-important__list li a {
    display: block;
  }
}
.top-important__list li a .update {
  font-family: "Overpass", sans-serif !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-right: 10px;
  min-width: 90px;
}
@media screen and (max-width: 1024px) {
  .top-important__list li a .update {
    display: block;
    font-size: 1.4rem;
    margin-right: 5px;
    min-width: none;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list li a .update {
    margin-bottom: 3px;
  }
}
.top-important__list li a .ttl {
  width: auto;
}
.top-important__list li a:hover .ttl {
  text-decoration: underline;
}

.top-main {
  width: 100%;
  position: relative;
}

.top-main__slider {
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-main__slider {
    width: 100%;
    height: 100%;
  }
  .top-main__slider img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
    font-family: "object-fit: cover; object-position: center bottom;";
  }
}
.top-main__slider div {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}
@media screen and (max-width: 599px) {
  .top-main__slider div {
    height: 100%;
  }
}
.top-main__slider__item {
  width: 100vw;
  line-height: 1;
}

.top-main__movie {
  width: 100vw;
  max-height: calc(100vh - 102px);
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .top-main__movie {
    height: 100% !important;
  }
}
.top-main__movie::after {
  content: "";
  padding-top: 50%;
  display: block;
}
.top-main__movie #tubular-container {
  height: 100% !important;
  width: 100vw !important;
}
.top-main__movie #tubular-container iframe {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 102% !important;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  .top-main__movie #tubular-container iframe {
    height: calc(100vh + 40px) !important;
    transform: translate(-50%, -48%);
  }
}
@media screen and (max-height: 550px) {
  .top-main__movie #tubular-container iframe {
    transform: translate(-50%, -45%);
  }
}

.top-main__bg {
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-image: url("../img/top/main_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  z-index: 2;
}

.top-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}
.top-menu li {
  width: 33.3%;
  border-right: 1px solid #cacaca;
}
.top-menu li:last-child {
  border-right: none;
}
.top-menu li.request a {
  position: relative;
  color: #324ca2;
  padding-left: 25px;
}
.top-menu li.request a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 17px;
  width: 16px;
  height: 23px;
  background-image: url(../img/common/icon_file.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.top-menu li a {
  padding: 15px 5px;
  line-height: 1.4;
  display: block;
  color: #000;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-decoration: none;
}

.top-topics {
  padding: 70px 50px 65px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-topics {
    padding: 60px 30px 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-topics {
    padding: 50px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics {
    padding: 40px 12px 30px;
  }
}
.top-topics::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-color: #324ca2;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .top-topics::before {
    height: 135px;
  }
}
.top-topics__inner {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
}
.top-topics__title {
  margin-bottom: 45px;
  color: #fff;
  font-size: 3.2rem;
  font-family: "Merriweather", serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-topics__title {
    margin-bottom: 35px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .top-topics__title {
    margin-bottom: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__title {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
}
.top-topics__list {
  display: flex;
  margin: 0 0 0 -40px !important;
}
@media screen and (max-width: 1024px) {
  .top-topics__list {
    margin: 0 0 0 -25px !important;
  }
}
@media screen and (max-width: 768px) {
  .top-topics__list {
    margin: 0 0 0 -20px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__list {
    flex-wrap: wrap;
    margin: -15px 0 0 -10px !important;
  }
}
.top-topics__list__item {
  width: calc((99.9% - 160px) / 4);
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  .top-topics__list__item {
    width: calc((99.9% - 100px) / 4);
    margin: 0 0 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .top-topics__list__item {
    width: calc((99.9% - 80px) / 4);
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__list__item {
    width: calc((99.9% - 20px) / 2);
    margin: 15px 0 0 10px;
  }
}
.top-topics__list__link {
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .top-topics__list__link:hover {
    opacity: 0.9;
  }
}
.top-topics__list__image {
  position: relative;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .top-topics__list__image {
    margin-bottom: 10px;
  }
}
.top-topics__list__image span.new {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  background-color: #e2224f;
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .top-topics__list__image span.new {
    font-size: 1.3rem;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 768px) {
  .top-topics__list__image span.new {
    padding: 5px 7px;
    font-size: 1.1rem;
  }
}
.top-topics__list__day {
  margin-bottom: 17px;
  color: #324ca2;
  font-family: "Merriweather", serif !important;
  line-height: 0.75;
}
@media screen and (max-width: 768px) {
  .top-topics__list__day {
    margin-bottom: 7px;
    font-size: 1.3rem;
  }
}
.top-topics__list__title {
  margin-bottom: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #324ca2;
  color: #010101;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .top-topics__list__title {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__list__title {
    font-size: 1.2rem;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.top-topics__list__more {
  display: block;
  position: relative;
  padding-right: 20px;
  color: #324ca2;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif !important;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .top-topics__list__more {
    display: none;
  }
}
.top-topics__list__more::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
}

.top-information {
  padding: 100px 50px 105px;
  background-color: #f6f8fd;
}
@media screen and (max-width: 1024px) {
  .top-information {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-information {
    padding: 45px 20px 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-information {
    padding-top: 30px;
  }
}
.top-information__inner {
  display: flex;
  position: relative;
  max-width: 1248px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-information__inner {
    flex-wrap: wrap;
  }
}
.top-information__left {
  width: 67%;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .top-information__left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.top-information__right {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .top-information__right {
    width: 100%;
    margin-top: 0;
  }
}
.top-information__head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .top-information__head {
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
}
.top-information__head__right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .top-information__head__right {
    justify-content: space-between;
    flex-grow: 1;
  }
}
.top-information__title {
  color: #191d6a;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-information__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-information__title {
    width: 100%;
    margin-bottom: 5px;
    font-size: 2.4rem;
  }
}
.top-information__button {
  display: block;
  position: relative;
  margin-left: 30px;
  padding: 12px 30px 12px 20px;
  border: 1px solid #324ca2;
  color: #324ca2 !important;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .top-information__button {
    margin-left: 10px;
    padding: 6px 30px 6px 15px;
  }
}
.top-information__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  margin: auto 0;
  transition: 0.3s;
}
.top-information__button:hover {
  background-color: #324ca2;
  color: #fff !important;
}
.top-information__button:hover::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-information .news-list {
  margin-bottom: 0 !important;
}
.top-information .news-list__item {
  border-bottom-color: #324ca2;
}
.top-information .news-list__item:first-child {
  border-top-color: #324ca2;
}
.top-information .news-list__item a {
  padding: 28px 40px 28px 0;
}
.top-information .news-list__item a::before {
  display: none;
}
.top-information__banner {
  margin: -15px 0 0 0 !important;
}
@media screen and (max-width: 768px) {
  .top-information__banner {
    display: flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -15px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-information__banner {
    margin: -12px 0 0 0 !important;
  }
}
.top-information__banner li {
  margin: 11px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-information__banner li {
    width: calc((99.9% - 30px) / 2);
    margin: 15px 0 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-information__banner li {
    width: 100%;
    margin: 12px 0 0 0;
  }
}
.top-information__banner li a {
  display: block;
}
.top-information__banner li a:hover {
  opacity: 0.9;
}

.top-exam {
  padding: 80px 50px 100px;
}
@media screen and (max-width: 1024px) {
  .top-exam {
    padding: 60px 30px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-exam {
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-exam {
    padding: 20px 0 60px;
  }
}
.top-exam__inner {
  display: flex;
  position: relative;
  max-width: 1248px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-exam__inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.top-exam__left {
  width: 50%;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .top-exam__left {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__left {
    width: 100%;
    margin: 0;
  }
}
.top-exam__right {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .top-exam__right {
    width: 100%;
    margin-bottom: 50px;
    padding: 0 20px;
  }
}
.top-exam__box {
  background-image: url(../img/top/exam_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-exam__box__title {
  padding: 25px;
  background-color: rgba(28, 40, 98, 0.7);
  color: #fff;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .top-exam__box__title {
    padding: 20px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-exam__box__title {
    font-size: 2.2rem;
  }
}
.top-exam__box__body {
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .top-exam__box__body {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__box__body {
    padding: 20px 20px 30px;
  }
}
.top-exam__box__list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px !important;
}
@media screen and (max-width: 599px) {
  .top-exam__box__list {
    margin: -8px 0 0 -10px !important;
  }
}
.top-exam__box__item {
  width: calc((99.9% - 40px) / 2);
  margin: 20px 0 0 20px;
}
@media screen and (max-width: 599px) {
  .top-exam__box__item {
    width: calc((99.9% - 20px) / 2);
    margin: 8px 0 0 10px;
  }
}
.top-exam__box a {
  display: block;
  height: 100%;
}
.top-exam__box a.btn-a {
  margin-bottom: 20px;
  padding: 30px;
  background-color: #2da8e7;
  color: #fff;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .top-exam__box a.btn-a {
    padding: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-exam__box a.btn-a {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.top-exam__box a.btn-a span {
  display: inline-block;
  position: relative;
  padding-left: 65px;
}
@media screen and (max-width: 1024px) {
  .top-exam__box a.btn-a span {
    padding-left: 45px;
  }
}
.top-exam__box a.btn-a span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 46px;
  height: 33px;
  background-image: url(../img/common/icon_pc.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .top-exam__box a.btn-a span::before {
    width: 36px;
    height: 26px;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__box a.btn-a span::before {
    width: 30px;
    height: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .top-exam__box a.btn-a:hover {
    background-color: #324ca2;
  }
}
.top-exam__box a.btn-b {
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 25px 20px 25px 70px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center left 20px;
  color: #191d6a !important;
  font-size: 2.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-exam__box a.btn-b {
    padding: 20px 20px 20px 60px;
    font-size: 1.8rem;
    min-height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-exam__box a.btn-b {
    padding: 18px 15px 18px 55px;
    background-position: center left 13px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__box a.btn-b {
    padding: 15px 5px 15px 37px;
    font-size: 1.5rem;
    min-height: 72px;
    background-position: center left 10px;
  }
}
.top-exam__box a.btn-b.education, .top-exam__box a.btn-b.graduate, .top-exam__box a.btn-b.other {
  background-image: url(../img/common/icon_memo.svg);
  background-size: 34px auto;
}
@media screen and (max-width: 1024px) {
  .top-exam__box a.btn-b.education, .top-exam__box a.btn-b.graduate, .top-exam__box a.btn-b.other {
    background-size: 30px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__box a.btn-b.education, .top-exam__box a.btn-b.graduate, .top-exam__box a.btn-b.other {
    background-size: 22px auto;
  }
}
.top-exam__box a.btn-b.brochure {
  background-image: url(../img/common/icon_brochure.svg);
  background-size: 30px auto;
}
@media screen and (max-width: 1024px) {
  .top-exam__box a.btn-b.brochure {
    background-size: 25px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__box a.btn-b.brochure {
    background-size: 18px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-exam__box a.btn-b:hover {
    background-color: #e5e9f4;
  }
}
.top-exam__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top-exam__head {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__head {
    margin-bottom: 10px;
  }
}
.top-exam__title {
  color: #191d6a;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-exam__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-exam__title {
    font-size: 2.2rem;
  }
}
.top-exam__button {
  display: block;
  position: relative;
  padding: 12px 30px 12px 20px;
  border: 1px solid #324ca2;
  color: #324ca2 !important;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .top-exam__button {
    padding: 5px 30px 3px 20px;
  }
}
.top-exam__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  margin: auto 0;
  transition: 0.3s;
}
.top-exam__button:hover {
  background-color: #324ca2;
  color: #fff !important;
}
.top-exam__button:hover::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-exam__item {
  border-bottom: 1px solid #324ca2;
  position: relative;
}
.top-exam__item:first-child {
  border-top: 1px solid #324ca2;
}
.top-exam__item a {
  display: block;
  padding: 25px 0;
  position: relative;
  color: #000 !important;
  text-decoration: none;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1025px) {
  .top-exam__item a:hover {
    background-color: #f5f7fa;
  }
  .top-exam__item a:hover .news-list__title {
    color: #324ca2;
    padding-left: 30px;
  }
  .top-exam__item a::before {
    right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .top-exam__item a {
    padding: 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-exam__item a {
    flex-wrap: wrap;
    padding: 15px 20px 15px 0;
  }
}
.top-exam__item__day {
  display: block;
  margin-bottom: 8px;
  padding-right: 15px;
  color: #324ca2 !important;
  line-height: 1.8;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-exam__item__day {
    margin-bottom: 4px;
  }
}
.top-exam__item__day span.new {
  display: inline-block;
  margin-left: 20px;
  color: #e2224f;
  font-family: "Merriweather", serif !important;
}
@media screen and (max-width: 599px) {
  .top-exam__item__day span.new {
    margin-left: 10px;
  }
}
.top-exam__item__title {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  transition: all 0.4s ease;
}
@media screen and (max-width: 599px) {
  .top-exam__item__title {
    width: 100%;
    margin-top: 2px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.top-exam__item__title span.new {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.4rem;
  color: #e2224f;
  font-weight: bold;
  font-family: "Merriweather", serif !important;
}
@media screen and (max-width: 599px) {
  .top-exam__item__title span.new {
    font-size: 1.2rem;
  }
}
.top-exam__item__title span.pickup {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.4rem;
  color: #ed900b;
  font-weight: bold;
  font-family: "Merriweather", serif !important;
}
@media screen and (max-width: 599px) {
  .top-exam__item__title span.pickup {
    font-size: 1.2rem;
  }
}

.top-hashtag {
  display: flex;
  position: relative;
  padding-bottom: 0px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-hashtag {
    flex-wrap: wrap;
  }
}
.top-hashtag::before {
  content: "";
  top: 0;
  right: 0;
  width: calc(100% - 230px);
  height: 100%;
  background-color: #e5e9f4;
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-hashtag::before {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag::before {
    display: none;
  }
}
.top-hashtag__photo {
  position: relative;
  max-width: 645px;
  width: 38%;
  margin-top: -50px;
  z-index: 6;
}
@media screen and (max-width: 1024px) {
  .top-hashtag__photo {
    width: 30%;
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .top-hashtag__photo {
    width: 45%;
    max-width: none;
    margin-top: -20px;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__photo {
    width: 100%;
  }
}
.top-hashtag__photo__title {
  position: absolute;
  top: 7.35vw;
  right: -5.89vw;
  max-width: 450px;
  width: 70%;
  padding: 24px 90px 24px 30px;
  background-color: #1c2862;
  color: #fff;
  font-size: 3.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  z-index: 6;
}
@media screen and (max-width: 1700px) {
  .top-hashtag__photo__title {
    font-size: 2vw;
    right: -5vw;
    padding: 24px 85px 24px 20px;
  }
}
@media screen and (max-width: 1400px) {
  .top-hashtag__photo__title {
    width: 73%;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__photo__title {
    right: -9vw;
    width: auto;
    padding-right: 62px;
  }
}
@media screen and (max-width: 768px) {
  .top-hashtag__photo__title {
    font-size: 2rem;
    top: 6vw;
    right: -15vw;
    padding: 20px 65px 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__photo__title {
    display: inline-block;
    top: auto;
    right: auto;
    bottom: -32px;
    left: 0;
    max-width: none;
    padding: 15px 70px 15px 20px;
    font-size: 2rem;
  }
}
.top-hashtag__photo__title span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 7%;
  bottom: 0;
  width: 60px;
  height: 120%;
  margin: auto 0;
  font-size: 5.4rem;
  font-style: italic;
  text-align: center;
  text-indent: -0.2em;
}
@media screen and (max-width: 1700px) {
  .top-hashtag__photo__title span {
    width: 3.5vw;
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__photo__title span {
    right: 10px;
    width: 40px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__photo__title span {
    width: 45px;
    height: 130%;
    font-size: 4rem;
  }
}
.top-hashtag__photo__title span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto 0;
  background-color: #324ca2;
  font-size: 5.4rem;
  z-index: -1;
  transform: skewX(-10deg);
}
.top-hashtag__photo img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-hashtag__photo img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 610px;
  }
}
@media screen and (max-width: 768px) {
  .top-hashtag__photo img {
    height: 220px;
    -o-object-position: 0px -50px;
       object-position: 0px -50px;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__photo img {
    height: 200px;
    -o-object-position: 0px -60px;
       object-position: 0px -60px;
  }
}
.top-hashtag__contents {
  padding: 5.8vw 60px 3vw 110px;
  width: calc(100% - 645px);
  float: right;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1700px) {
  .top-hashtag__contents {
    width: 62%;
    padding: 5.2vw 35px 3vw 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__contents {
    width: 70%;
    padding: 4.5vw 35px 1.5vw 40px;
  }
}
@media screen and (max-width: 768px) {
  .top-hashtag__contents {
    width: 100%;
    padding: 40px 40px 20px;
    background-color: #e5e9f4;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__contents {
    padding: 60px 25px 10px;
  }
}
.top-hashtag__contents__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 880px;
}
.top-hashtag__lead {
  margin-bottom: 60px;
  color: #191d6a;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1700px) {
  .top-hashtag__lead {
    padding-left: 45px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__lead {
    font-size: 1.5rem;
    padding-left: 70px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .top-hashtag__lead {
    margin-top: -115px;
    padding-left: 330px;
    font-size: 1.4rem;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__lead {
    letter-spacing: 0;
    margin-top: 0px;
    padding-left: 0;
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}
.top-hashtag__list {
  position: relative;
  display: flex;
  z-index: 0;
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .top-hashtag__list {
    flex-wrap: wrap;
    margin-bottom: 0 !important;
  }
}
.top-hashtag__list > li {
  position: relative;
  width: calc((100% - 36px) / 2);
  margin-right: 36px;
  background: #fff;
  padding: 22px 18px 22px 24px;
  box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1600px) {
  .top-hashtag__list > li {
    padding: 22px 10px 15px 15px;
  }
}
@media screen and (max-width: 1400px) {
  .top-hashtag__list > li {
    width: calc((100% - 28px) / 2);
    margin-right: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__list > li {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__list > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.top-hashtag__list > li:last-child {
  margin-right: 0;
}
.top-hashtag__list > li::before {
  opacity: 0.5;
  content: "";
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  left: -10px;
  position: absolute;
  top: -10px;
  z-index: -1;
  background: linear-gradient(45deg, #e5e9f4 25%, transparent 25%, transparent 75%, #e5e9f4 75%), linear-gradient(45deg, #e5e9f4 25%, transparent 25%, transparent 75%, #e5e9f4 75%);
  background-size: 2px 2px;
  background-position: 0 0, 1px 1px;
}
.top-hashtag__list > li.type01::before {
  background-color: #006a64;
}
.top-hashtag__list > li.type02::before {
  background-color: #752374;
}
.top-hashtag__list > li.type03::before {
  background-color: #8d0129;
}
.top-hashtag__list > li.type04::before {
  background-color: #4c8100;
}
.top-hashtag__list > li.type05::before {
  background-color: #003f7a;
}
.top-hashtag__list__ttl {
  position: relative;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 32px;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  .top-hashtag__list__ttl {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__list__ttl {
    margin-bottom: 15px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__list__ttl {
    margin-top: -30px;
  }
}
.top-hashtag__list__ttl span {
  position: relative;
  padding: 13px 40px;
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .top-hashtag__list__ttl span {
    padding: 11px 25px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__list__ttl span {
    padding: 8px 15px;
    font-size: 1.8rem;
  }
}
.top-hashtag__list__ttl span::before {
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
  z-index: -1;
  transform: skewX(-10deg);
}
.type01 .top-hashtag__list__ttl span::before {
  background: #006a64;
}
.type02 .top-hashtag__list__ttl span::before {
  background: #752374;
}
.type03 .top-hashtag__list__ttl span::before {
  background: #8d0129;
}
.type04 .top-hashtag__list__ttl span::before {
  background: #4c8100;
}
.type05 .top-hashtag__list__ttl span::before {
  background: #003f7a;
}
.top-hashtag__list__tag li {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 8px;
}
.top-hashtag__list__tag li a {
  font-style: italic;
  display: inline-block;
  line-height: 1.2;
  padding: 10px 20px 10px 10px;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-decoration: none;
  border-radius: 5px;
}
@media screen and (max-width: 1600px) {
  .top-hashtag__list__tag li a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1400px) {
  .top-hashtag__list__tag li a {
    padding: 10px 15px 10px 7px;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hashtag__list__tag li a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-hashtag__list__tag li a {
    font-size: 1.4rem;
  }
}
.type01 .top-hashtag__list__tag li a {
  color: #006a64;
  background: #ddedec;
}
.type02 .top-hashtag__list__tag li a {
  color: #752374;
  background: #ede7ed;
}
.type03 .top-hashtag__list__tag li a {
  color: #8d0129;
  background: #fdf1f4;
}
.type04 .top-hashtag__list__tag li a {
  color: #4c8100;
  background: #eff6e6;
}
.type05 .top-hashtag__list__tag li a {
  color: #003f7a;
  background: #e3ecf5;
}
.top-hashtag__list__tag li a:hover {
  opacity: 0.85;
}

.top-diary {
  padding: 135px 0 150px 13.2vw;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-diary {
    padding: 90px 0 100px 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-diary {
    padding: 90px 20px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary {
    padding: 60px 20px 90px;
  }
}
.top-diary::before {
  content: "";
  top: -140px;
  left: 0;
  width: 800px;
  height: 665px;
  background-image: url(../img/top/diary_bg.jpg);
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .top-diary::before {
    top: 0;
    width: 80%;
    height: 100%;
    background-size: 120% auto;
  }
}
.top-diary__inner {
  display: flex;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-diary__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.top-diary__left {
  width: 260px;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .top-diary__left {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .top-diary__left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.top-diary__right {
  display: flex;
  align-items: flex-end;
  width: calc(100% - 260px - 5%);
}
@media screen and (max-width: 1024px) {
  .top-diary__right {
    width: calc(100% - 220px - 5%);
  }
}
@media screen and (max-width: 768px) {
  .top-diary__right {
    width: 100%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__right {
    width: 90%;
    position: relative;
    flex-direction: column-reverse;
    padding-left: 0;
    background: #fff;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .top-diary__title-head {
    display: flex;
    align-items: center;
  }
}
.top-diary__en-title {
  margin-bottom: 15px;
  color: #32469b;
  font-size: 8.7rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 3.5px;
}
@media screen and (max-width: 1024px) {
  .top-diary__en-title {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-diary__en-title {
    margin-right: 20px;
    text-indent: -0.07em;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__en-title {
    margin-right: 15px;
    font-size: 4.8rem;
    font-weight: 500;
  }
}
.top-diary__jp-title {
  display: flex;
  margin-bottom: 18px;
  border: 2px solid #324ca2;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-diary__jp-title {
    margin-bottom: 15px;
    width: 220px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__jp-title {
    width: 160px;
    font-weight: 500;
    border-width: 1px;
  }
}
.top-diary__jp-title dt {
  width: 35%;
  padding: 10px;
  background-color: #324ca2;
  color: #fff;
  font-size: 2.7rem;
}
@media screen and (max-width: 1024px) {
  .top-diary__jp-title dt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__jp-title dt {
    padding: 5px;
    font-size: 1.6rem;
  }
}
.top-diary__jp-title dd {
  width: 65%;
  padding: 10px;
  background-color: #fff;
  color: #324ca2;
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .top-diary__jp-title dd {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__jp-title dd {
    padding: 5px;
    font-size: 1.6rem;
  }
}
.top-diary__sub-title {
  margin-bottom: 20px;
  color: #207fc8;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-diary__sub-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-diary__sub-title {
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__sub-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}
.top-diary__text {
  margin-bottom: 20px;
  color: #010101;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 1024px) {
  .top-diary__text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-diary__text {
    margin-bottom: 10px;
  }
}
.top-diary__link {
  display: block;
  position: relative;
  width: 120px;
  margin-left: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid #32469b;
  color: #32469b !important;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .top-diary__link {
    font-size: 1.5rem;
    padding-bottom: 3px;
  }
}
.top-diary__link::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: -4px;
  width: 1px;
  height: 20px;
  background-color: #32469b;
  transform: rotate(-50deg);
}
@media screen and (min-width: 1025px) {
  .top-diary__link:hover {
    opacity: 0.8;
  }
}
.top-diary__content {
  position: relative;
  width: 320px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-diary__content {
    width: 270px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__content {
    width: 100%;
    box-shadow: 0 0 7px rgba(177, 190, 221, 0.36);
  }
}
.top-diary__content::before, .top-diary__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3766bd;
  z-index: -1;
}
.top-diary__content::before {
  top: -20px;
  left: -20px;
  opacity: 0.2;
}
@media screen and (max-width: 1024px) {
  .top-diary__content::before {
    top: -15px;
    left: -15px;
  }
}
.top-diary__content::after {
  right: -20px;
  bottom: -20px;
  opacity: 0.1;
}
@media screen and (max-width: 1024px) {
  .top-diary__content::after {
    right: -15px;
    bottom: -15px;
  }
}
.top-diary__content__link {
  display: block;
  position: relative;
  height: 100%;
  padding: 30px;
  background-color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .top-diary__content__link {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__content__link {
    padding: 20px;
  }
}
.top-diary__content__link::before, .top-diary__content__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
}
.top-diary__content__link::before {
  background-image: url(../img/common/arrow.png);
  background-position: right 6px bottom 11px;
  background-repeat: no-repeat;
  background-size: 17px auto;
  z-index: 1;
}
.top-diary__content__link::after {
  border: 23px solid transparent;
  border-right: 23px solid #32469b;
  border-bottom: 23px solid #32469b;
}
@media screen and (min-width: 1025px) {
  .top-diary__content__link:hover {
    opacity: 0.9;
  }
}
.top-diary__content__sub {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 20px;
  background-color: #5dba19;
  border-radius: 30px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .top-diary__content__sub {
    font-size: 1.3rem;
    padding: 4px 16px;
  }
}
.top-diary__content__title {
  margin-bottom: 15px;
  color: #4ea302;
  font-size: 2.1rem;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .top-diary__content__title {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__content__title {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.top-diary__content__name {
  color: #010101;
  font-size: 1.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-diary__content__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__content__name {
    margin-bottom: 2px;
    font-size: 1.5rem;
    font-weight: 700;
  }
}
.top-diary__content__name span {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .top-diary__content__name span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__content__name span {
    font-size: 1.4rem;
  }
}
.top-diary__content__grade {
  color: #010101;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-diary__content__grade {
    font-size: 1.4rem;
  }
}
.top-diary__nav {
  width: calc(100% - 320px);
}
@media screen and (max-width: 1024px) {
  .top-diary__nav {
    width: calc(100% - 270px);
  }
}
@media screen and (max-width: 599px) {
  .top-diary__nav {
    width: calc(100% - 10px);
    z-index: 3;
  }
}
.top-diary__nav li {
  position: relative;
  padding: 10px;
  transform: scale(0.85) translateY(28px);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-diary__nav li {
    transform: scale(0.85) translateY(18px);
    padding: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__nav li {
    height: 230px;
    transform: none;
    padding: 0;
  }
}
.top-diary__nav li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url(../img/top/diary_pt01.png);
  z-index: -1;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-diary__nav li::before {
    background-image: url(../img/top/diary_pt02.png);
    border-radius: 0;
    right: -10px;
    bottom: -10px;
    top: auto;
    left: auto;
  }
}
.top-diary__nav li img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-diary__nav li img {
    border-radius: 0;
  }
}
.top-diary__nav li.slick-current {
  transform: scale(1);
}
.top-diary__nav li.slick-current::before {
  background-image: url(../img/top/diary_pt02.png);
}
.top-diary__nav li.slick-current img {
  padding: 8px;
}
@media screen and (max-width: 1024px) {
  .top-diary__nav li.slick-current img {
    padding: 3px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__nav li.slick-current img {
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-diary__nav .slick-list {
    overflow: inherit !important;
  }
}
.top-diary .diary-slider .prev,
.top-diary .diary-slider .next,
.top-diary .diary-slider-nav .prev,
.top-diary .diary-slider-nav .next {
  position: absolute;
  top: -80px;
  width: 50px;
  height: 50px;
  border: 1px solid #32469b;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-diary .diary-slider .prev,
  .top-diary .diary-slider .next,
  .top-diary .diary-slider-nav .prev,
  .top-diary .diary-slider-nav .next {
    top: -50px;
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 768px) {
  .top-diary .diary-slider .prev,
  .top-diary .diary-slider .next,
  .top-diary .diary-slider-nav .prev,
  .top-diary .diary-slider-nav .next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary .diary-slider .prev,
  .top-diary .diary-slider .next,
  .top-diary .diary-slider-nav .prev,
  .top-diary .diary-slider-nav .next {
    top: auto;
    bottom: -60px;
  }
}
.top-diary .diary-slider .prev::before,
.top-diary .diary-slider .next::before,
.top-diary .diary-slider-nav .prev::before,
.top-diary .diary-slider-nav .next::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid #32469b;
  border-right: 2px solid #32469b;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-diary .diary-slider .prev:hover,
  .top-diary .diary-slider .next:hover,
  .top-diary .diary-slider-nav .prev:hover,
  .top-diary .diary-slider-nav .next:hover {
    background-color: #32469b;
  }
  .top-diary .diary-slider .prev:hover::before,
  .top-diary .diary-slider .next:hover::before,
  .top-diary .diary-slider-nav .prev:hover::before,
  .top-diary .diary-slider-nav .next:hover::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}
.top-diary .diary-slider .prev,
.top-diary .diary-slider-nav .prev {
  right: 149px;
}
@media screen and (max-width: 1024px) {
  .top-diary .diary-slider .prev,
  .top-diary .diary-slider-nav .prev {
    right: 64px;
  }
}
@media screen and (max-width: 768px) {
  .top-diary .diary-slider .prev,
  .top-diary .diary-slider-nav .prev {
    right: 59px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary .diary-slider .prev,
  .top-diary .diary-slider-nav .prev {
    right: 50%;
  }
}
.top-diary .diary-slider .prev::before,
.top-diary .diary-slider-nav .prev::before {
  left: 5px;
  transform: rotate(225deg);
}
.top-diary .diary-slider .next,
.top-diary .diary-slider-nav .next {
  right: 100px;
}
@media screen and (max-width: 1024px) {
  .top-diary .diary-slider .next,
  .top-diary .diary-slider-nav .next {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-diary .diary-slider .next,
  .top-diary .diary-slider-nav .next {
    left: calc(50% - 1px);
  }
}
.top-diary .diary-slider .next::before,
.top-diary .diary-slider-nav .next::before {
  right: 5px;
}

.top-btn__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .top-btn__list:nth-child(2) {
    flex-direction: column-reverse;
  }
}
.top-btn__item {
  position: relative;
  width: 50%;
  height: 380px;
}
@media screen and (max-width: 1024px) {
  .top-btn__item {
    height: 270px;
  }
}
@media screen and (max-width: 768px) {
  .top-btn__item {
    height: 200px;
  }
}
@media screen and (max-width: 599px) {
  .top-btn__item {
    width: 100%;
    height: 190px;
  }
}
.top-btn__item.item01 {
  background-color: #32469b;
}
.top-btn__item.item02 {
  background-color: #207fc8;
}
.top-btn__item.item03 {
  background-color: #207fc8;
}
@media screen and (max-width: 599px) {
  .top-btn__item.item03 {
    background-color: #32469b;
  }
}
.top-btn__item.item04 {
  background-color: #32469b;
}
@media screen and (max-width: 599px) {
  .top-btn__item.item04 {
    background-color: #207fc8;
  }
}
.top-btn__item__link {
  display: flex;
  height: 100%;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .item02 .top-btn__item__link {
    flex-direction: row-reverse;
  }
}
.item03 .top-btn__item__link {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .item03 .top-btn__item__link {
    flex-direction: row;
  }
}
.item04 .top-btn__item__link {
  flex-direction: row-reverse;
}
@media screen and (min-width: 1025px) {
  .top-btn__item__link:hover {
    opacity: 0.7;
  }
}
.top-btn__item__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 335px;
  margin-top: -10px;
  padding: 10px;
  color: #fff;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1700px) {
  .top-btn__item__title {
    width: 19.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-btn__item__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-btn__item__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-btn__item__title {
    width: 42%;
    font-size: 2rem;
  }
}
.top-btn__item__title::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 28px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.top-btn__item__title span {
  display: block;
  margin-top: 18px;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif !important;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .top-btn__item__title span {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .top-btn__item__title span {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}
.top-btn__item__photo {
  width: calc(100% - 335px);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (max-width: 1700px) {
  .top-btn__item__photo {
    width: calc(100% - 19.7vw);
  }
}
@media screen and (max-width: 599px) {
  .top-btn__item__photo {
    width: 58%;
  }
}
.top-btn__item__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.top-bnr-wrapper {
  margin: 115px auto 70px !important;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-bnr-wrapper {
    margin: 75px auto 60px !important;
  }
}
@media screen and (max-width: 768px) {
  .top-bnr-wrapper {
    margin: 50px auto !important;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-wrapper {
    margin: 40px auto 35px;
    width: calc(100% - 20px);
  }
}
.top-bnr-wrapper .slick-list {
  padding: 0 65px !important;
}
@media screen and (max-width: 1600px) {
  .top-bnr-wrapper .slick-list {
    padding: 0 30px !important;
  }
}
@media screen and (max-width: 1200px) {
  .top-bnr-wrapper .slick-list {
    padding: 0 0px !important;
  }
}
.top-bnr-wrapper__item {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .top-bnr-wrapper__item {
    padding: 0 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-wrapper__item {
    padding: 0 5px;
  }
}
.top-bnr-wrapper__item__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-bnr-wrapper__item__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-wrapper .slick-prev,
  .top-bnr-wrapper .slick-next {
    width: 38px;
    opacity: 0.85;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-wrapper .slick-prev {
    left: -5px;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-wrapper .slick-next {
    right: -5px;
  }
}

.top-bnr-sub {
  padding: 0 30px 90px;
}
@media screen and (max-width: 768px) {
  .top-bnr-sub {
    padding: 0 20px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub {
    padding: 0 20px 50px;
  }
}
.top-bnr-sub__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.top-bnr-sub__list {
  display: flex;
  margin: 0 0 0 -14px !important;
}
@media screen and (max-width: 768px) {
  .top-bnr-sub__list {
    flex-wrap: wrap;
    margin: -15px 0 0 -15px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__list {
    margin: -10px 0 0 -10px !important;
  }
}
.top-bnr-sub__item {
  width: calc((99.9% - 56px) / 4);
  margin: 0 0 0 14px;
}
@media screen and (max-width: 768px) {
  .top-bnr-sub__item {
    width: calc((99.9% - 30px) / 2);
    margin: 15px 0 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item {
    width: calc((99.9% - 20px) / 2);
    margin: 10px 0 0 10px;
  }
}
.top-bnr-sub__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 25px 20px 25px 70px;
  border: 1px solid #32469b;
  text-decoration: none;
  color: #191d6a;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-bnr-sub__item a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .top-bnr-sub__item a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item a {
    padding: 20px 6px 20px 40px;
    font-size: 1.4rem;
  }
}
.top-bnr-sub__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 100%;
  background-color: #32469b;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top-bnr-sub__item a::before {
    width: 55px;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item a::before {
    width: 34px;
  }
}
.top-bnr-sub__item a:hover {
  opacity: 0.9;
}
.top-bnr-sub__item.certificate a::before {
  background-image: url(../img/common/icon_note.svg);
  background-size: 31px auto;
}
@media screen and (max-width: 1024px) {
  .top-bnr-sub__item.certificate a::before {
    background-size: 28px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item.certificate a::before {
    background-size: 20px auto;
  }
}
.top-bnr-sub__item.recruit a::before {
  background-image: url(../img/common/icon_friends.svg);
  background-size: 40px auto;
}
@media screen and (max-width: 1024px) {
  .top-bnr-sub__item.recruit a::before {
    background-size: 35px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item.recruit a::before {
    background-size: 25px auto;
  }
}
.top-bnr-sub__item.information a::before {
  background-image: url(../img/common/icon_document.svg);
  background-size: 24px auto;
}
@media screen and (max-width: 1024px) {
  .top-bnr-sub__item.information a::before {
    background-size: 21px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item.information a::before {
    background-size: 17px auto;
  }
}
.top-bnr-sub__item.teacher a::before {
  background-image: url(../img/common/icon_notebook.svg);
  background-size: 28px auto;
}
@media screen and (max-width: 1024px) {
  .top-bnr-sub__item.teacher a::before {
    background-size: 24px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr-sub__item.teacher a::before {
    background-size: 18px auto;
  }
}

.sp-hanbeger {
  padding-top: 80px;
  background: #191d6a;
  padding-bottom: 100px;
}

/* =====================================================

  NEWS

===================================================== */
.news-icon {
  display: inline-block;
  min-width: 80px;
  padding: 6px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .news-icon {
    min-width: 70px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .news-icon {
    padding: 4px 5px;
    font-size: 1.1rem;
  }
}
.news-icon.info {
  background-color: #324ca2;
}
.news-icon.event {
  background-color: #00a2d0;
}

span.new {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.4rem;
  color: #e2224f;
  font-weight: bold;
  font-family: "Merriweather", serif !important;
}
@media screen and (max-width: 599px) {
  span.new {
    font-size: 1.2rem;
  }
}
span.pickup {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.4rem;
  color: #ed900b;
  font-weight: bold;
  font-family: "Merriweather", serif !important;
}
@media screen and (max-width: 599px) {
  span.pickup {
    font-size: 1.2rem;
  }
}

.news-list {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .news-list {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  .news-list {
    margin-bottom: 35px !important;
  }
}
.news-list__item {
  border-bottom: 1px solid rgba(28, 40, 98, 0.3);
  position: relative;
}
.news-list__item:first-child {
  border-top: 1px solid rgba(28, 40, 98, 0.3);
}
.news-list__item a {
  display: flex;
  align-items: flex-start;
  padding: 32px 40px 32px 0;
  position: relative;
  color: #000 !important;
  text-decoration: none;
  transition: all 0.4s ease;
}
.news-list__item a::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(50, 76, 162, 0.3);
  border-right: 3px solid rgba(50, 76, 162, 0.3);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .news-list__item a:hover {
    background-color: #f5f7fa;
  }
  .news-list__item a:hover .news-list__title {
    color: #324ca2;
    padding-left: 30px;
  }
  .news-list__item a::before {
    right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .news-list__item a {
    padding: 25px 25px 29px 0;
  }
}
@media screen and (max-width: 599px) {
  .news-list__item a {
    flex-wrap: wrap;
    padding: 15px 20px 15px 0;
  }
  .news-list__item a::before {
    right: 3px;
    border-width: 2px;
    width: 10px;
    height: 10px;
  }
}
.news-list__day {
  padding-right: 15px;
  color: #324ca2 !important;
  line-height: 1.8;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .news-list__day {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__day {
    font-size: 1.3rem;
    padding-right: 10px;
  }
}
.news-list__title {
  padding-top: 2px;
  font-size: 1.6rem;
  line-height: 1.4;
  transition: all 0.4s ease;
}
@media screen and (max-width: 599px) {
  .news-list__title {
    width: 100%;
    margin-top: 2px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.news-list .news-icon {
  margin-right: 17px;
}
@media screen and (max-width: 1024px) {
  .news-list .news-icon {
    margin-right: 12px;
  }
}
@media screen and (max-width: 599px) {
  .news-list .news-icon {
    margin-right: 0px;
  }
}

.news-title {
  border-bottom: 3px solid #ececec;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .news-title {
    margin-bottom: 20px;
  }
}
.news-title__wrap {
  position: relative;
  padding-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .news-title__wrap {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-title__wrap {
    padding-bottom: 20px;
  }
}
.news-title__wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 180px;
  height: 3px;
  background-color: #324ca2;
}
@media screen and (max-width: 599px) {
  .news-title__wrap::before {
    width: 80px;
    height: 2px;
  }
}
.news-title .news-icon {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .news-title .news-icon {
    margin-right: 5px;
  }
}
.news-title__day {
  color: #324ca2 !important;
  line-height: 1.8;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif !important;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .news-title__day {
    padding-left: 0;
    font-size: 1.3rem;
    min-width: 70px;
  }
}
.news-title__data {
  margin-top: 30px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 2.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .news-title__data {
    margin-top: 25px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .news-title__data {
    margin-top: 15px;
    font-size: 1.7rem;
  }
}
.news-title__data span.new {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.5rem;
  color: #1c2862;
  font-weight: bold;
  font-family: "Overpass", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .news-title__data span.new {
    font-size: 1.3rem;
  }
}

.news-btn-wrap {
  max-width: 300px;
  margin: 0 auto;
}

.news-box {
  background: #eef2fa;
  padding: 38px 40px;
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .news-box {
    padding: 30px 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.news-box::before {
  background: #324ca2;
  content: "";
  height: 115px;
  width: 5px;
  left: 0;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 1024px) {
  .news-box::before {
    height: 75px;
    width: 4px;
  }
}
.news-box__ttl {
  width: 160px;
}
@media screen and (max-width: 1024px) {
  .news-box__ttl {
    width: 100%;
    position: relative;
    display: flex;
  }
}
.news-box__ttl .ttl {
  padding-top: 10px;
  font-family: "Merriweather", serif !important;
  font-size: 3.2rem;
  letter-spacing: 0.1px;
  line-height: 1.3;
  color: #1c2862;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .news-box__ttl .ttl {
    padding-top: 0px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .news-box__ttl .ttl {
    font-size: 2.2rem;
  }
}
.news-box__ttl .sub {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  margin-bottom: 25px;
  color: #324ca2;
}
@media screen and (max-width: 1024px) {
  .news-box__ttl .sub {
    margin-left: 15px;
    padding-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .news-box__ttl .sub {
    font-size: 1.2rem;
    padding-top: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .news-box__ttl .news-box__button {
    position: absolute;
    right: 0;
    top: -5px;
  }
}
@media screen and (max-width: 599px) {
  .news-box__ttl .news-box__button {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.news-box .news-list {
  width: calc(100% - 150px);
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .news-box .news-list {
    width: 100%;
  }
}
.news-box .news-list__item:first-child {
  border-top: none;
}
@media screen and (max-width: 1024px) {
  .news-box .news-list__item:first-child {
    border-top: 1px solid rgba(28, 40, 98, 0.3);
  }
}
.news-box .news-list__item:last-child {
  border-bottom: none;
}
.news-box .news-list__item a {
  padding: 19px 40px 19px 0;
}
@media screen and (max-width: 1024px) {
  .news-box .news-list__item a {
    padding-right: 25px;
  }
}
.news-box__button {
  display: block;
  width: 85px;
  position: relative;
  padding: 12px 30px 12px 20px;
  border: 1px solid #324ca2;
  color: #324ca2 !important;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .news-box__button {
    margin-left: 10px;
    padding: 5px 30px 3px 20px;
  }
}
.news-box__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #324ca2;
  border-right: 2px solid #324ca2;
  transform: rotate(45deg);
  margin: auto 0;
  transition: 0.3s;
}
.news-box__button:hover {
  background-color: #324ca2;
  color: #fff !important;
}
.news-box__button:hover::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* =====================================================

  DIARY

===================================================== */
.diary-index {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .diary-index {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .diary-index {
    margin-bottom: 40px !important;
  }
}
.diary-index__box {
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
  padding-top: 35px;
  border-bottom: 2px solid #dedede;
}
@media screen and (max-width: 768px) {
  .diary-index__box {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .diary-index__box {
    width: 100%;
    margin-right: 0;
    padding-top: 30px;
  }
}
.diary-index__box:nth-child(2n) {
  margin-right: 0;
}
.diary-index__box:first-child {
  border-top: 2px solid #dedede;
}
.diary-index__box:nth-child(2) {
  border-top: 2px solid #dedede;
}
@media screen and (max-width: 599px) {
  .diary-index__box:nth-child(2) {
    border-top: none;
  }
}
.diary-index__box__link {
  display: block;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  text-decoration: none;
  flex-wrap: wrap;
}
.diary-index__box__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 46px 46px;
  border-color: transparent transparent #324ca2 transparent;
}
@media screen and (max-width: 599px) {
  .diary-index__box__link::before {
    border-width: 0 0 40px 40px;
  }
}
.diary-index__box__link::after {
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  content: "";
  height: 14px;
  width: 20px;
  right: 5px;
  position: absolute;
  bottom: 5px;
}
@media screen and (max-width: 599px) {
  .diary-index__box__link::after {
    height: 12px;
    width: 16px;
  }
}
.diary-index__box__link:hover {
  opacity: 0.85;
}
.diary-index__info {
  padding-right: 35px;
  width: 56%;
}
@media screen and (max-width: 768px) {
  .diary-index__info {
    padding-right: 15px;
    padding-bottom: 20px;
    margin-top: -7px;
  }
}
.diary-index__info .category {
  display: inline-block;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #5dba19;
  margin-bottom: 12px;
  line-height: 1.2;
  padding-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .diary-index__info .category {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .diary-index__info .category {
    font-size: 1.2rem;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 599px) {
  .diary-index__info .category {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
.diary-index__info .category::before {
  background: #5dba19;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}
.diary-index__info .catch {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #38487a;
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px dotted #5f72b2;
}
@media screen and (max-width: 768px) {
  .diary-index__info .catch {
    font-size: 1.7rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .diary-index__info .catch {
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 12px;
  }
}
.diary-index__info .name {
  line-height: 1.4;
  font-size: 2rem;
  color: #010101;
}
@media screen and (max-width: 768px) {
  .diary-index__info .name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .diary-index__info .name {
    font-size: 1.7rem;
    margin-bottom: 3px;
  }
}
.diary-index__info .name span {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .diary-index__info .name span {
    font-size: 1.4rem;
  }
}
.diary-index__info .sec {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #010101;
}
@media screen and (max-width: 599px) {
  .diary-index__info .sec {
    font-size: 1.3rem;
  }
}
.diary-index__ph {
  width: 44%;
  padding-right: 8px;
  padding-bottom: 65px;
}
@media screen and (max-width: 599px) {
  .diary-index__ph {
    padding-bottom: 55px;
  }
}
.diary-index__ph figure {
  position: relative;
}
.diary-index__ph figure::before {
  background-image: url(../img/top/diary_pt02-2.png);
  content: "";
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  right: -8px;
  position: absolute;
  bottom: -8px;
  z-index: -1;
}

.diary-detail {
  width: calc(100% - 20px);
  margin-right: 20px;
  margin-bottom: 90px;
  background-color: #f3f6fc;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .diary-detail {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail {
    padding-top: 25px;
    margin-right: 0;
    width: 100%;
    margin-bottom: 35px;
  }
}
.diary-detail__box {
  width: 54%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .diary-detail__box {
    width: 56%;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box {
    width: 100%;
  }
}
.diary-detail__box__text {
  flex: 1;
  padding: 30px 40px 25px 40px;
}
@media screen and (max-width: 768px) {
  .diary-detail__box__text {
    padding: 20px 20px 25px 25px;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__text {
    padding: 15px 15px 20px 15px;
  }
}
.diary-detail__box__text .category {
  position: relative;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #5dba19;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .diary-detail__box__text .category {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__text .category {
    font-size: 1.5rem;
  }
}
.diary-detail__box__text .category::before {
  background: #5dba19;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}
.diary-detail__box__text .catch {
  font-size: 3.3rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  color: #1c2862;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .diary-detail__box__text .catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .diary-detail__box__text .catch {
    font-size: 2.3rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__text .catch {
    font-size: 1.9rem;
  }
}
.diary-detail__box__prof {
  color: #fff;
  line-height: 1.4;
  padding: 28px 40px 25px 40px;
  background: #324ca2;
}
@media screen and (max-width: 768px) {
  .diary-detail__box__prof {
    padding: 20px 20px 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__prof {
    padding: 15px 20px 15px 20px;
  }
}
.diary-detail__box__prof .sec {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  margin-bottom: 7px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .diary-detail__box__prof .sec {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__prof .sec {
    margin-bottom: 4px;
  }
}
.diary-detail__box__prof .name {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.diary-detail__box__prof .name .jp {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .diary-detail__box__prof .name .jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .diary-detail__box__prof .name .jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__prof .name .jp {
    font-size: 2rem;
  }
}
.diary-detail__box__prof .name .jp span {
  font-size: 2rem;
  margin-left: 5px;
  letter-spacing: 0px;
}
@media screen and (max-width: 768px) {
  .diary-detail__box__prof .name .jp span {
    font-size: 1.7rem;
    margin-left: 0px;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__prof .name .jp span {
    font-size: 1.3rem;
  }
}
.diary-detail__box__prof .name .eng {
  padding-top: 10px;
  margin-left: 20px;
  font-family: "Overpass", sans-serif !important;
  font-weight: 600;
  color: #2da8e7;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .diary-detail__box__prof .name .eng {
    margin-left: 15px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__box__prof .name .eng {
    font-size: 1.2rem;
  }
}
.diary-detail__ph {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .diary-detail__ph {
    width: 44%;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__ph {
    width: 100%;
  }
}
.diary-detail__ph figure {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 599px) {
  .diary-detail__ph figure {
    width: 80%;
    margin: 0px auto 5px auto;
  }
}
.diary-detail__ph figure::before {
  background-image: url(../img/top/diary_pt02-2.png);
  content: "";
  height: calc(100% + 5px);
  width: calc(100% + 5px);
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .diary-detail__ph figure::before {
    height: 100%;
    width: 100%;
    bottom: -10px;
    right: -10px;
  }
}
.diary-detail__ph figure img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media screen and (max-width: 768px) {
  .diary-detail__ph figure img {
    height: 306px;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__ph figure img {
    height: 230px;
  }
}
.diary-detail__btn {
  border-radius: 50px;
  max-width: 360px;
  margin: auto;
  background-color: #324ca2;
  color: #ffffff !important;
  display: block;
  font-weight: 500;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  line-height: 1;
  padding: 24px 40px 24px 40px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .diary-detail__btn {
    max-width: 300px;
    font-size: 1.6rem;
    padding: 20px 40px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .diary-detail__btn {
    width: 80%;
    padding: 16px 10px;
    font-size: 1.5rem;
  }
}
.diary-detail__btn::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.diary-detail__btn:hover {
  opacity: 0.85;
  transition: 0.2s;
}

/* =====================================================

  SITEMAP

===================================================== */
.sitemap-wrap {
  border-top: 1px solid #ddd;
  display: flex;
  margin-bottom: 42px;
  padding-top: 42px;
}
@media screen and (max-width: 1024px) {
  .sitemap-wrap {
    margin-bottom: 25px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-wrap {
    padding-top: 20px;
    flex-wrap: wrap;
  }
}

.sitemap-ttl {
  width: 21%;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  position: relative;
  padding: 0px 25px 0px 12px;
  line-height: 1.4;
  display: flex;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .sitemap-ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-ttl {
    font-size: 1.6rem;
    width: 100%;
    padding-left: 24px;
  }
}
.sitemap-ttl a {
  text-decoration: none;
}
.sitemap-ttl::before {
  background: #324ca2;
  content: "";
  height: 24px;
  width: 4px;
  left: 0;
  top: 2px;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .sitemap-ttl::before {
    height: 18px;
    width: 18px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-ttl::after {
    display: block;
    content: "";
    position: absolute;
    vertical-align: middle;
    top: 8px;
    width: 7px;
    height: 7px;
    left: 4px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }
}

.sitemap-list {
  width: 79%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .sitemap-list {
    width: 100%;
    margin-top: 20px !important;
  }
}
.sitemap-list li {
  width: calc((100% - 30px) / 3);
  margin-bottom: 10px;
  margin-right: 15px;
}
@media screen and (min-width: 1025px) {
  .sitemap-list li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .sitemap-list li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  .sitemap-list li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list li {
    padding-right: 5px;
  }
}
.sitemap-list li a {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  line-height: 1.4;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .sitemap-list li a {
    padding-left: 15px;
  }
}
.sitemap-list li a::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #324ca2;
  border-bottom: 2px solid #324ca2;
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .sitemap-list li a::after {
    top: 6px;
    width: 8px;
    height: 8px;
  }
}/*# sourceMappingURL=style.css.map */