@charset "UTF-8";
/* ============================================================= */
/* reset                                                         */
/* ============================================================= */
/*-----------------reset--------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

body,
body * {
  box-sizing: border-box;
}

em {
  font-style: normal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* ============================================================= */
/* 基本レイアウト                                                 */
/* ============================================================= */
body {
  position: relative;
  overflow-x: hidden !important;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
  overflow-wrap: break-word;
  word-break: normal;
  -webkit-print-color-adjust: exact;
}

body.side-open::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 999;
  background-color: rgba(26, 18, 45, 0.6);
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.inner {
  width: 724px;
  margin: 0 auto;
}

.large-inner {
  width: 960px;
  margin: 0 auto;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

b {
  font-weight: 600;
}

@media (max-width: 1250px) {
  .large-inner {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .inner {
    width: 90%;
  }
}
/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
  font-family: "object-fit:cover;";
}

img.fit-contain {
  object-fit: contain;
  font-family: "object-fit:contain;";
}

img {
  vertical-align: top;
  max-width: 100%;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.right {
  justify-content: end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .reverse {
    flex-wrap: wrap;
  }
}
/*-----------------Link--------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.link-arw {
  display: inline-block;
  color: #000 !important;
  max-width: 100%;
  font-size: 100%;
  font-weight: 500;
  line-height: 2;
  word-break: break-all;
  margin: 10px 0;
}

.link-arw::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../../asset/img/common/arw-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

.blank:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../../asset/img/common/blank-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 7px;
}

.pdf:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 17px;
  background-image: url(../../asset/img/common/PDF-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 7px;
}

[data-format]::after {
  content: attr(data-format);
  background-color: #999999;
  color: #fff;
  padding: 4px 5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
  margin: 0 7px;
}

.link-u-border {
  display: inline;
  max-width: 100%;
  font-size: 100%;
  color: #000055;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.btn,
.wpcf7-submit {
  display: inline-block;
  padding: 20px 60px;
  font-size: 100%;
  max-width: 100%;
  font-weight: 700;
  color: #fff !important;
  background-color: #001165;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.btn:hover,
.wpcf7-submit:hover {
  opacity: 0.7;
}

.btn.w-max {
  width: 100%;
}

.btn.w-half {
  width: 50%;
}

.global-container {
  padding-right: 240px;
}

.top.global-container {
  padding-right: 0px;
  transition: all 0.3s ease;
}

.top.global-container.active,
.top.global-container.nav-open {
  padding-right: 240px;
}

.contents-padding {
  padding: 100px 0;
}

@media (max-width: 1024px) {
  .global-container {
    padding-right: 0px !important;
  }
}
@media (max-width: 768px) {
  .contents-padding {
    padding: 50px 0;
  }
  a:hover {
    opacity: 1;
  }
  .btn {
    font-size: 90%;
    padding: 4%;
    width: 100%;
  }
  .link-arw::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}
@media (max-width: 599px) {
  .btn.w-half {
    width: 100%;
  }
}
/*----------------text---------------------*/
.txt-center {
  text-align: center;
}

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

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

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

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

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

.txt-red {
  color: #ff0000;
}

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

.txt-deco-border {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thin {
  font-weight: 100;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.u-border {
  border-bottom: solid 1px #000;
  padding-bottom: 1rem;
}

strong {
  font-weight: 600;
}

.zen-mincho {
  font-family: "Zen Old Mincho", serif;
}

/* ============================================================= */
/*  固定ページスタイル                                            */
/* ============================================================= */
.page-contents section.commonLayoutSection:not(:last-child) {
  margin-bottom: 4.5em;
}

.page-contents h2 {
  color: #272727;
  font-size: 32px;
  font-weight: 500;
  border-bottom: solid 2px #e2e2e2;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.page-contents h2:not(:first-of-type) {
  margin-top: 70px;
}

.page-contents h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  background-color: #666;
  padding: 7px 18px;
  margin-bottom: 20px;
}

.page-contents h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin: 2em auto 0.8em;
}

.page-contents small {
  font-size: 93%;
}

.page-contents ul {
  line-height: 1.8;
}

.page-contents ul li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 100%;
}

.page-contents ul.greyList {
  background-color: #EFEFEF;
  padding: 25px 30px;
}

.page-contents ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #000;
  margin-right: 10px;
  vertical-align: middle;
}

.page-contents p {
  line-height: 1.7;
}

.page-contents p:not(:first-of-type) {
  margin-top: 1.5em;
}

.page-contents .commonTableStyle {
  font-size: 86.67%;
  width: 100%;
  border-collapse: collapse;
}

.page-contents .commonTableStyle th,
.page-contents .commonTableStyle td {
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  vertical-align: top;
}

.page-contents .commonTableStyle th {
  text-align: left;
}

.page-contents .commonTableStyle.type-1 tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.page-contents .commonTableStyle.type-1 th {
  background: #6A8CC7;
  color: #FFF;
  font-weight: 600;
}

.page-contents .commonTableStyle.type-2 tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.page-contents .commonTableStyle.type-2 th {
  text-align: left;
}

.page-contents .commonTableStyle.type-2 tr:first-child {
  background: #6A8CC7;
  color: #FFF;
  font-weight: 600;
}

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

.half-indent {
  display: block;
  padding-left: 1em;
  text-indent: -0.5em;
}

.border-box {
  border: solid 2px #d1d1d1;
  padding: 20px 30px;
}

@media (max-width: 768px) {
  .page-contents h2:not(:first-of-type) {
    margin-top: 50px;
  }
  .page-contents h2 {
    font-size: 183.33333%;
    line-height: 1.29545;
  }
  .page-contents h3 {
    width: 100%;
    padding: 2.89855% 2%;
    font-size: 110%;
    line-height: 1.5;
  }
  .page-contents p {
    font-size: 100%;
  }
  .page-contents ul.greyList {
    font-size: 110%;
    padding: 7%;
  }
}
@media (max-width: 599px) {
  .page-contents .commonTableStyle th,
  .page-contents .commonTableStyle td {
    display: block;
  }
  .border-box {
    padding: 15px;
  }
}
/* ============================================================= */
/*  記事ページスタイル                                            */
/* ============================================================= */
.singlePage-contents section.commonLayoutSection:not(:last-child) {
  margin-bottom: 4.5em;
}

.singlePage-contents h2 {
  text-align: left;
  font-size: 175%;
  line-height: 1.57692;
  font-weight: 500;
  margin-bottom: 1.5em;
}

.singlePage-contents h2:not(:first-child) {
  margin-top: 70px;
}

.singlePage-contents.news h2 {
  margin-bottom: 1rem;
}

.singlePage-contents h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  background-color: #666;
  padding: 7px 18px;
  margin-bottom: 20px;
}

.singlePage-contents.news h3 {
  margin: 1.5rem 0 0.8rem;
}

.singlePage-contents h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin: 2em auto 0.8em;
}

.singlePage-contents.news h4 {
  margin: 1.5rem 0 0.5rem;
}

.singlePage-contents h2 small {
  display: block;
  font-size: 74%;
  margin-top: 9px;
  font-weight: 400;
}

.singlePage-contents h5 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1em;
  line-height: 1.2;
  font-weight: bold;
}

.singlePage-contents p:not(:first-of-type) {
  margin-top: 1.5em;
}

.singlePage-contents.news p:not(:last-child) {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.singlePage-contents p.ans {
  font-size: 2em;
  font-weight: bold;
  margin-top: 20px;
}

.singlePage-contents p.que {
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 3em;
}

.singlePage-contents .img-caption {
  display: block;
  text-align: center;
  margin-bottom: 65px;
  font-size: 14px;
}

.singlePage-contents p {
  line-height: 1.7;
}

.singlePage-contents img {
  display: block;
  margin: 10px 0 12px;
}

.singlePage-contents ul {
  line-height: 1.8;
  margin: 1rem 0 2rem;
}

.singlePage-contents ul li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 100%;
}

.singlePage-contents ul.greyList {
  background-color: #EFEFEF;
  padding: 25px 30px;
}

.singlePage-contents ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #000;
  margin-right: 10px;
  vertical-align: middle;
}

.singlePage-contents a {
  color: #001165;
}

@media (max-width: 768px) {
  .singlePage-contents h2:not(:first-of-type) {
    margin-top: 50px;
  }
  .singlePage-contents h2 {
    font-size: 150%;
    line-height: 1.29545;
  }
  .singlePage-contents h3 {
    width: 100%;
    padding: 2.89855% 2%;
    font-size: 110%;
    line-height: 1.5;
  }
  .singlePage-contents h2 small {
    font-size: 70%;
    line-height: 1.6;
  }
  .singlePage-contents p {
    font-size: 93%;
  }
  .singlePage-contents ul.greyList {
    font-size: 110%;
    padding: 7%;
  }
}
@media (max-width: 599px) {
  .singlePage-contents h1 {
    font-size: 145%;
  }
  .singlePage-contents img {
    margin: 10px auto 12px;
  }
}
/* ============================================================= */
/*  padding & margin                                             */
/* ============================================================= */
.m-center {
  display: block;
  margin: 0 auto;
}

/*--padding---------------------------------*/
.padding-10 {
  padding: 10px 0;
}

.padding-20 {
  padding: 20px 0;
}

.padding-30 {
  padding: 30px 0;
}

.padding-40 {
  padding: 40px 0;
}

.padding-50 {
  padding: 50px 0;
}

.padding-60 {
  padding: 60px 0;
}

.padding-70 {
  padding: 70px 0;
}

.padding-80 {
  padding: 80px 0;
}

.padding-100 {
  padding: 100px 0;
}

.padding-200 {
  padding: 200px 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*--margin----------------------------------*/
.margin-5 {
  margin: 5px 0;
}

.margin-10 {
  margin: 10px 0;
}

.margin-20 {
  margin: 20px 0;
}

.margin-30 {
  margin: 30px 0;
}

.margin-40 {
  margin: 40px 0;
}

.margin-50 {
  margin: 50px 0;
}

.margin-100 {
  margin: 100px 0;
}

.margin-200 {
  margin: 140px 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-200 {
  margin-top: 140px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-200 {
  margin-bottom: 140px;
}

/* ============================================================= */
/*  グロナビ                                                      */
/* ============================================================= */
.pc-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8000;
  width: 240px;
  height: 100%;
  height: 100%;
  background-color: #EFEFEF;
  transition: all 0.3s ease;
}

.top-sidebar .pc-nav {
  transform: translateX(100%);
}

.pc-nav__wrap {
  overflow-y: scroll;
  height: inherit;
}

.pc-nav__wrap::-webkit-scrollbar {
  display: none;
}

.top-sidebar .pc-nav.active,
.top-sidebar .pc-nav.nav-open {
  transform: translateX(0);
}

.nav-logo__link {
  display: block;
  padding: 14px 23px;
  text-align: center;
}

.global-nav.top-sidebar .nav-logo {
  display: none;
}

.utility__link {
  width: 33.3333333333%;
  padding: 10px 5px;
  border-top: solid 1px #DDDDDD;
  border-bottom: solid 1px #DDDDDD;
  transition: background-color 0.3s ease-in-out;
}

.utility__link:hover {
  color: #fff;
  background-color: #f1c400;
  opacity: 1;
  cursor: pointer;
}

.utility__link:not(:last-child) {
  border-right: solid 1px #DDDDDD;
}

.utility__txt {
  font-size: 8px;
}

.utility__contents {
  display: none;
  background-color: #e6e6e6;
}

/* サイト内検索 */
.search__txt-box {
  outline: none;
  border: none;
  padding: 12px 15px;
  background-color: #dddddd;
}

.search__btn {
  color: #fff;
  width: 100%;
  font-size: 14px;
  padding: 8px 0;
  background-color: #333;
  transition: opacity 0.2s ease;
}

/* フォントサイズ変更 */
#fontSize {
  padding: 10px 22px;
}

#fontSize p {
  font-size: 14px;
  margin-bottom: 5px;
}

#fontSize li {
  font-size: 16px;
  padding: 7px 10px;
  margin-right: 10px;
  border: solid 1px #000;
  transition: background-color 0.3s ease-in-out;
}

#fontSize li:hover {
  cursor: pointer;
}

#fontSize li.current {
  background-color: #ccc;
}

#lang li {
  padding: 5px 22px;
  border-top: solid 1px #ddd;
}

.menu {
  margin-top: 20px;
}

.menuFst-inner a:hover {
  color: #fff;
  background-color: #f1c400;
  opacity: 1;
}

.menuFst-inner a {
  display: block;
  font-size: 14.5px;
  width: 100%;
  padding: 10px 24px;
  transition: all 0.1s ease-in;
}

.menuSec {
  width: 240px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 240px;
  background-color: #EFEFEF;
  transition: all 0.3s ease-in-out;
}

.menuSec.active {
  opacity: 1;
  visibility: visible;
}

.menuSec__link {
  display: block;
  font-size: 13px;
  padding: 10px 12px;
  border: solid 1px #DDDDDD;
}

.menuSec__sub-cate {
  font-size: 11px;
  line-height: 1.09091;
  padding: 8px 12px;
  color: #666;
  background-color: #ddd;
}

.menuSec__link:hover {
  color: #fff;
  background-color: #f1c400;
  opacity: 1;
}

.menuSec__link.small {
  font-size: 13px;
}

.menuFst-link__sub-txt {
  font-size: 13px;
  color: #d9b000;
  font-weight: 400;
  display: block;
  transition: all 0.1s ease-in-out;
}

.menuFst-link:hover {
  color: #fff;
  background-color: #f1c400;
  opacity: 1;
}

.menuFst-link.nolink:hover {
  cursor: default;
}

.menuFst-link:hover .menuFst-link__sub-txt {
  color: #fff;
}

.subMenu {
  padding: 0 20px;
  margin-top: 20px;
}

.sidebar__bottom-logo {
  display: none;
  padding: 0 20px;
  margin-top: 20px;
}

.global-nav.top-sidebar .sidebar__bottom-logo {
  display: block;
}

.menu-trigger {
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 8900;
  transform: translate(0, -100%);
  transition: all 0.3s ease-in-out;
}

.global-nav.top-sidebar .menu-trigger.pc {
  transform: translate(0, 0%);
}

.global-nav.top-sidebar .menu-trigger.pc.active {
  transform: translate(0, -100%);
}

.menu-trigger:hover {
  cursor: pointer;
}

.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
}

.menu-trigger span {
  position: absolute;
  left: 23%;
  width: 55%;
  height: 3px;
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 13px;
}

.menu-trigger span:nth-of-type(2) {
  top: 23px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 13px;
}

.menu-trigger.nav-open span:nth-of-type(1) {
  transform: translateY(11px) rotate(-315deg);
}

.menu-trigger.nav-open span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.nav-open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(315deg);
}

@media (max-width: 1024px) {
  .global-nav {
    position: relative;
    overflow: auto !important;
  }
  .menu-trigger {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    transform: translate(0, 0);
  }
  .menu-trigger.active {
    transform: translate(0, 0);
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-315deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(315deg);
  }
  .nav-logo {
    border-bottom: solid 1px #DDDDDD;
  }
  /* ----------------- */
  .nav-logo__link {
    padding: 9px 15px;
  }
  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 8000;
    height: auto;
    transition: all 0.3s ease;
    transform: translateX(100%);
    width: 50%;
  }
  .sp-nav.active {
    transform: translateX(0%);
  }
  .global-nav.top-sidebar .nav-logo {
    display: block;
  }
  .nav-logo__img {
    display: block;
    margin-right: auto;
    width: 50%;
  }
  .sp-nav__inner {
    background-color: #EFEFEF;
  }
  /* ----------------- */
  .search__wrap {
    padding: 3.33333% 8%;
  }
  .search__wrap input {
    width: 90%;
    outline: none;
    border: none;
    background: none;
  }
  .search__wrap .utility__icon {
    width: 7%;
    vertical-align: middle;
  }
  #fontSize li {
    font-size: 4vw;
  }
  #lang li {
    font-size: 4vw;
  }
  .utility__link {
    width: 50%;
    text-align: center;
  }
  .utility .utility__icon {
    margin-right: 1.5873%;
    height: 70%;
    vertical-align: middle;
  }
  /* ----------------- */
  .menu {
    margin: 0;
  }
  .menuFst-inner {
    position: relative;
    border-bottom: solid 1px #DDDDDD;
  }
  .menuFst-inner a {
    padding: 3.33333% 8%;
    font-weight: 500 !important;
  }
  .menuFst-link__sub-txt {
    display: inline-block;
    font-size: 84%;
    margin-left: 5px;
  }
  .menuSec {
    display: none;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    position: unset;
    transition: none;
  }
  .menuSec__link {
    padding: 3.73333% 8% 3.73333% 8%;
    background-color: #e6e6e6;
    border: none;
    border-top: solid 1px #ddd;
  }
  .menuSec__sub-cate {
    color: #000;
    font-size: 14px;
    display: block;
    padding: 3.73333% 8% 3.73333% 8%;
    border: solid 1px #DDDDDD;
    background-color: #EFEFEF;
  }
  .menuSec__inner-link {
    padding-left: 3em;
    font-size: 14px;
  }
  .menuFst__arw {
    position: absolute;
    top: 0;
    right: 0;
    width: 14%;
    height: 100%;
    background-color: #e6e6e6;
  }
  .menuFst__arw::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0.5em;
    height: 0.5em;
    transform: rotate(45deg);
    border-bottom: 2px solid #001e62;
    border-right: 2px solid #001e62;
    transition: all 0.3s ease-in-out;
  }
  .menuFst__arw.active::after {
    transform: rotate(225deg);
  }
  /* ----------------- */
  .subMenu {
    margin: 0;
    padding: 3.33333% 8%;
  }
  .subMenu img {
    width: 5%;
  }
  .sidebar__bottom-logo {
    display: block;
    text-align: center;
    margin: 0;
    padding: 6% 8%;
    border-top: 1px solid #ddd;
  }
  .sidebar__bottom-logo img {
    width: 40.95238%;
  }
}
@media (max-width: 599px) {
  .sp-nav {
    width: 100%;
  }
  .menuFst-inner a {
    font-size: 3.5vw;
    padding: 3.33333% 8%;
    padding-right: 15%;
  }
  .menuFst-inner a .long-txt {
    font-size: 3.5vw;
  }
  .menuFst-link__sub-txt {
    font-size: 3vw;
    margin-left: 1vw;
  }
  .menuSec__link {
    color: #333;
    font-size: 3.5vw;
  }
  .menuSec__sub-cate {
    color: #333;
    font-size: 3.5vw;
  }
  .menuSec__inner-link {
    color: #333;
    font-size: 3.5vw;
    padding: 2.13% 8% 2.13% 16%;
  }
  .menuSec__link.small {
    font-size: 3.5vw;
  }
}
/* ============================================================ */
/* フッター                                                      */
/* ============================================================ */
.footer {
  border-top: solid 1px #DDDDDD;
  background-color: #fff;
}

.footer .footer__inner {
  width: 960px;
  margin: auto;
}

.footer .footer__top-ctr {
  padding-top: 50px;
  font-size: 80%;
  line-height: 2.5;
}

.footer .footer__top-ctr ul {
  margin-bottom: 40px;
  padding-left: 15px;
  border-left: solid 1px #DDDDDD;
}

.footer .footer__top-link--big {
  font-size: 133.33%;
}

.footer__bottom-right-ctr {
  width: 560px;
}

.footer .footer__bottom-ctr {
  padding: 20px 0;
}

.footer .footer__bottom-link-list li {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
}

.footer .footer__bottom-link-list li:first-child {
  padding-left: 0;
}

.footer .footer__bottom-link-list li:last-child {
  padding-right: 0;
}

.footer .footer__bottom-link-list li:not(:last-child)::after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 1px;
  height: 15px;
  right: -7px;
  top: 17%;
}

.footer .footer__copy {
  color: #999999;
  letter-spacing: 0.05em;
  margin-top: 10px;
  font-size: 13px;
}

.page-top {
  position: fixed;
  bottom: 0;
  right: 240px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.page-top.active {
  transform: translateY(0%);
}

.page-top__link {
  padding: 15px 10px 5px;
  display: block;
}

.page-top__txt {
  position: relative;
  font-size: 80%;
  padding-top: 2px;
}

.page-top__txt::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.footer__logo.pc-logo {
  display: block;
}

.footer__logo.sp-logo {
  display: none;
}

@media (max-width: 1024px) {
  .page-top {
    right: 0;
  }
  .footer__bottom-ctr {
    display: block;
  }
  .footer .footer__logo {
    margin: 0 0 20px;
  }
  .footer__copy {
    text-align: left;
  }
}
@media (max-width: 599px) {
  .footer__logo.pc-logo {
    display: none;
  }
  .footer__logo.sp-logo {
    display: block;
  }
  .footer__bottom-right-ctr {
    text-align: center;
    width: 100%;
  }
  .footer .footer__bottom-ctr {
    padding: 12% 0 16%;
  }
  .footer__bottom-link-list {
    display: block;
  }
  .footer .footer__bottom-link-list li {
    font-size: 85.71%;
  }
  .footer .footer__top-ctr {
    display: none;
  }
  .footer .footer__logo {
    margin: 0 auto 6%;
    width: 47.2%;
  }
  .footer .footer__copy {
    text-align: center;
    font-size: 80%;
  }
  .footer__logo-wrap {
    display: block;
  }
}
/* ============================================================= */
/* 下層ヒーロー                                                   */
/* ============================================================= */
.hero {
  min-width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.global-breadCrumb {
  width: 90%;
  margin: 0 auto 160px;
  text-align: center;
  padding-top: 20px;
  line-height: 1.4;
}

.global-breadCrumb span {
  position: relative;
  font-size: 12px;
  color: #fff;
  text-shadow: 1px 1px 10px #070102;
  display: inline-block;
  font-weight: 700;
}

.global-breadCrumb span[property=itemListElement]:not(:last-child)::after {
  content: "";
  margin: 0 7px 0 10px;
  display: inline-block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.8));
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #ccc;
}

.global-breadCrumb span .current-item {
  color: #f1c400;
  display: inline-block;
}

.hero__ttl {
  width: 90%;
  text-align: center;
  font-size: 36px;
  line-height: 1.30303;
  padding-bottom: 60px;
  margin: auto;
  color: #fff;
  text-shadow: 1px 1px 10px #070102;
}

.global-breadCrumb.column {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.column_hero-bk {
  margin: 0 auto;
  display: block;
}

.hero.column .hero__ttl-wrap {
  position: absolute;
  width: 100%;
  top: 70%;
  left: 50%;
  transform: translate(-50%);
}

@media (max-width: 768px) {
  .hero__ttl {
    font-size: 141.66667%;
    line-height: 1.52941;
    padding-bottom: 4%;
  }
  .global-breadCrumb {
    margin-bottom: 15%;
  }
  .global-breadCrumb.column {
    margin-bottom: 30%;
  }
}
@media (max-width: 599px) {
  .hero__ttl {
    font-size: 5vw;
  }
  .global-breadCrumb span {
    font-size: 3vw;
  }
  .global-breadCrumb {
    padding-top: 2%;
  }
}
/* ============================================================ */
/* ページネーション                                              */
/* ============================================================ */
.pagination {
  margin-top: 30px;
  font-size: 18px;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
}

.pagination li {
  margin: 0 6px;
}

.pagination li .page-numbers {
  color: #005;
  border-bottom: solid 2px #005;
  padding-bottom: 2px;
}

.pagination li .page-numbers.current {
  border-bottom: none;
}

.pagination li .prev.page-numbers,
.pagination li .next.page-numbers {
  font-size: 14px;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  position: relative;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-color: #005;
}

.pagination li .next.page-numbers:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(45deg) translate(0, -50%);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.pagination li .prev.page-numbers:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(45deg) translate(24%, -84%);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

/* ============================================================ */
/* モーダル                                                      */
/* ============================================================ */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 40px 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.js-modal-close.btn {
  padding: 13px 48px;
}

@media (max-width: 599px) {
  .modal__content {
    width: 90%;
    padding: 35px 30px;
  }
}
/* ============================================================= */
/*  フォーム                                                     */
/* ============================================================= */
.wpcf7-form p:not(:first-child) {
  margin-top: 0;
}

.wpcf7-form p {
  margin-bottom: 1em;
}

.wpcf7-form li p {
  display: inline;
}

.wpcf7-form li {
  margin-bottom: 1em;
}

.wpcf7-form h3 {
  margin-bottom: 1em;
}

.wpcf7-form h3:not(:first-of-type) {
  margin-top: 3em;
}

.wpcf7-form h4 {
  margin-bottom: 1em;
}

.wpcf7-form h4:not(:first-of-type) {
  margin-top: 2.5em;
}

.wpcf7-text,
.wpcf7-select,
.wpcf7-textarea,
.wpcf7-number {
  display: inline-block;
  width: 100%;
  margin-top: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.w-100 {
  width: 100px;
}

.wpcf7-text:focus,
.wpcf7-select:focus,
.wpcf7-textarea:focus,
.wpcf7-number:focus {
  color: #495057;
  background-color: #fff;
  border-color: #0026e5;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 17, 101, 0.25);
}

.wpcf7-submit, .wpcf7-previous {
  display: block;
  padding: 20px 60px;
  font-size: 100%;
  max-width: 100%;
  width: 470px;
  font-weight: 700;
  margin: 0px auto;
  color: #fff;
  background-color: #001165;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.wpcf7-submit:hover, .wpcf7-previous:hover {
  opacity: 0.7;
}

.wpcf7-submit {
  margin-top: 50px;
}

.required::after {
  content: "※必須";
  color: #d0001a;
  margin-left: 5px;
  white-space: nowrap;
}

/*ラジオボタン*/
.wpcf7-list-item input[type=radio] {
  display: none;
}

.wpcf7-lisinnt-item input[type=radio] + .wpcf7-list-item-label {
  padding-left: 20px;
  position: relative;
  margin-right: 33px;
}

.wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: -7px;
  width: 15px;
  height: 15px;
  border: 1px solid #c4c4c4;
  background-color: #ffffff;
  border-radius: 50%;
}

.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: -4px;
  width: 9px;
  height: 9px;
  background: #0e316a;
  border: 1px solid #0e316a;
  border-radius: 50%;
}

/*チェックボタン*/
span.wpcf7-list-item {
  margin: 0 30px 0 0;
  position: relative;
}

.wpcf7-list-item-label {
  cursor: pointer;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.wpcf7-list-item-label::before {
  border: 1px solid #ced4da;
  content: "";
  display: inline-block;
  height: 18px;
  width: 18px;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  background: url(../img/common/checkmark.svg) no-repeat center;
  background-size: contain;
  content: "";
  display: block;
  height: 13px;
  left: 4px;
  position: absolute;
  top: 8px;
  width: 13px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #3d75e5;
}

/* ============================================================= */
/* カテゴリページ （ topics & news ）                             */
/* ============================================================= */
.category-page__item {
  padding: 30px 0;
  border-bottom: solid 1px #ddd;
  line-height: 1.8;
}

.category-page__item:first-child {
  border-top: solid 1px #ddd;
}

.category-page__link {
  display: block;
  color: #005;
}

.category-page__item {
  list-style-type: none;
}

/* ============================================================= */
/* アーカイブページ （ feature-articles ）                        */
/* ============================================================= */
.feature-article__inner {
  width: 960px;
}

/* --- 動画エリア --------------*/
.feature-article__movie-sec {
  padding: 80px 0;
  background-color: #EFEFEF;
}

.feature-article__movie-ttl {
  color: #313131;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 41px;
  border-left: solid 7px #001165;
  padding-left: 20px;
}

.feature-article__movie-sec .feature-article__movie-flex-box {
  width: 460px;
}

.feature-article__movie_wrap {
  width: 100%;
  height: 259px;
}

.feature-article__movie_wrap iframe {
  width: 100%;
  height: 100%;
}

.feature-article__movie-txt {
  margin-top: 10px;
}

@media (max-width: 1250px) {
  .feature-article__movie-sec .feature-article__movie-flex-box {
    width: calc(50% - 1vw);
  }
  .feature-article__movie_wrap {
    height: 19vw;
  }
}
@media (max-width: 599px) {
  .feature-article__movie-sec {
    padding: 50px 0;
  }
  .feature-article__movie-ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .feature-article__movie-sec .feature-article__movie_wrap {
    height: 48vw;
  }
  .feature-article__movie-sec .feature-article__movie-flex-box {
    width: 100%;
  }
  .feature-article__movie-sec .feature-article__movie-flex-box:first-child {
    margin-bottom: 20px;
  }
}
/* --- ボタンエリア --------------*/
.feature-article__btn-inner {
  background-color: #EFEFEF;
  padding: 32px 75px;
  margin-bottom: 20px;
}

.feature-article__btn-inner li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border-right: solid 2px #D6D6D6;
  width: 16.6666666667%;
  line-height: 1.3;
}

.feature-article__btn {
  color: #000055;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.feature-article__btn:hover {
  opacity: 0.7;
}

.feature-article__btn-inner li:last-child {
  border-right: none;
}

.feature-article__btn.current {
  color: #777777;
}

.feature-article__modal-ttl {
  font-size: 120%;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-article__modal-wrap:not(:last-child) {
  margin-bottom: 28px;
}

.feature-article__modal-open {
  font-weight: 500;
  font-size: 93.33%;
}

.feature-article__modal-open::before {
  content: url(../img/page-feature-article/question-mark.png);
  margin-right: 5px;
  vertical-align: sub;
}

/* --- 記事表示エリア --------------*/
.feature-article__article-list {
  margin-top: 40px;
}

.feature-article__article-list::after {
  content: "";
  display: block;
  width: 225px;
}

.feature-article__article-list::before {
  content: "";
  display: block;
  width: 225px;
  order: 1;
}

.feature-article__article-list::after,
.feature-article__article-list::before {
  width: calc(25% - 15px);
}

.feature-article__link {
  display: block;
  margin-top: 40px;
  width: calc(25% - 15px);
}

.feature-article__link.is-animated {
  animation: 0.8s zoom-in;
}

@keyframes zoom-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.feature-article__article-img {
  aspect-ratio: 5/5;
  object-fit: cover;
  object-position: top;
}

.feature-article__ttl {
  margin: 10px 0;
}

.feature-article__about {
  font-size: 100%;
  min-height: 45px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.feature-article__name {
  font-size: 107%;
}

.feature-article__ttl br {
  display: none;
}

.feature-article__tag {
  color: #000055;
  font-size: 14px;
  white-space: nowrap;
}

.feature-article__tag:not(:first-child) {
  margin-left: 10px;
}

.feature-article__tag::before {
  content: url(../img/page-feature-article/feature-article_tag.png);
  vertical-align: middle;
  margin-right: 5px;
}

.feature-article__date {
  font-size: 13px;
  margin-top: 5px;
}

.feature-article__jukuin-baton-name {
  margin-bottom: -30px;
}

.feature-article__jukuin-baton-name span {
  border: 1px solid #001164;
  color: #001164;
  font-size: 13px;
  padding: 5px 10px 5px 7px;
}

@media (max-width: 1250px) {
  .feature-article__inner {
    width: 90%;
  }
  .feature-article__btn-inner {
    padding: 32px 4vw;
  }
}
@media (max-width: 1020px) {
  .feature-article__link {
    width: calc(33.3333333333% - 20px);
  }
  .feature-article__article-list::after,
  .feature-article__article-list::before {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 599px) {
  .feature-article__btn-inner {
    padding: 20px 10px;
  }
  .feature-article__article-list {
    margin-top: 20px;
  }
  .feature-article__btn-inner li {
    font-size: 3vw;
    padding: 0;
  }
  .feature-article__link {
    width: 100%;
  }
  .feature-article__article-img {
    width: 100%;
    height: 59vw;
  }
}
/* ============================================================= */
/* トップページ                                                   */
/* ============================================================= */
/* ----- ムービースライドエリア ----- */
.top-ttl {
  font-size: 34px;
  font-weight: 300;
  text-align: center;
}

.ytp-large-play-button {
  display: none;
}

.top-mv {
  position: relative;
}

.top-mv .top-column__slide {
  position: relative;
  display: block;
  width: 100%;
}

.top-mv .top-mv__bg img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.top-mv .top-column__slide::after {
  content: "";
  position: absolute;
  background: #0C3848;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
}

.top-mv .top-mv__slider-area {
  position: relative;
}

.top-mv .top-mv__txt {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.top-mv .top-mv__slide-txt {
  position: absolute;
  width: 90%;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.9);
}

.swiper-pagination {
  z-index: 1000;
  transform: translate3d(10%, -110%, 0);
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  opacity: 1;
  background: #fff;
  margin: 0 14px !important;
}

.swiper-pagination-bullet-active {
  background: #F1C400;
}

.scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.scroll-down__txt {
  position: relative;
  color: #fff;
  font-size: 126.67%;
  font-weight: 100;
  padding-bottom: 50px;
}

.scroll-down__txt::after {
  content: "";
  display: block;
  width: 1px;
  height: 53px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(1);
  z-index: 15;
  animation: scroll-down 2s ease-in-out infinite;
  transform-origin: top;
}

.mv_pc {
  display: block;
}

.mv_sp {
  display: none;
}

@keyframes scroll-down {
  0% {
    transform: translateX(-50%) scaleY(0);
  }
  60% {
    transform: translateX(-50%) scaleY(1);
  }
  100% {
    transform: translateX(-50%) scaleY(1);
  }
}
@media (max-width: 1024px) {
  .top-mv .top-mv__slide-txt {
    font-size: 1.8vw;
    top: 75%;
  }
  .top-mv .top-mv__txt {
    width: 35vw;
  }
}
@media (max-width: 599px) {
  .mv_pc {
    display: none;
  }
  .mv_sp {
    display: block;
  }
  .top-mv .top-mv__slide-txt {
    font-size: 4vw;
    line-height: 1.2;
  }
  .top-mv .top-mv__txt {
    width: 60%;
  }
  .scroll-down__txt {
    font-size: 50%;
    padding-bottom: 15px;
  }
  .scroll-down__txt::after {
    height: 14px;
  }
  .swiper-pagination {
    left: 50% !important;
    transform: translate3d(-50%, -100%, 0);
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 7px !important;
  }
}
/* ----- top-secNewsImportant ----- */
#secNewsImportant {
  border-top: solid 3px #666;
  border-bottom: solid 3px #666;
}
#secNewsImportant table {
  width: 100%;
}
#secNewsImportant table th {
  padding: 1em;
  width: 137px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-color: #666;
}
#secNewsImportant table th .text {
  padding-top: 1em;
  display: block;
}
#secNewsImportant table .detail {
  text-align: left;
  vertical-align: middle;
}
#secNewsImportant table .detail .items .item {
  padding: 1.5em 2em;
  line-height: 1.4;
}
#secNewsImportant table .detail .items .item:not(:first-child) {
  border-top: solid 1px #ccc;
}
#secNewsImportant table .detail .items .item .date {
  margin-bottom: 0.5em;
  font-size: 13px;
  display: block;
}
#secNewsImportant table .detail .items .item .text {
  font-size: 15px;
}
#secNewsImportant table .detail .items .item .listBlank {
  margin-left: 1em;
  margin-top: -2px;
}

@media (max-width: 599px) {
  #secNewsImportant table th {
    padding: 1em 0;
    width: 16%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    background-color: #666;
  }
  #secNewsImportant table th img {
    width: 10%;
    height: auto;
  }
  #secNewsImportant table .caption .text {
    padding-top: 0.5em;
    font-size: 83.33333%;
    line-height: 1.4;
    display: block;
  }
  #secNewsImportant table .detail {
    text-align: left;
    vertical-align: top;
  }
  #secNewsImportant table .detail .items .item {
    padding: 1em;
    border-top: solid 1px #ccc;
  }
  #secNewsImportant table .detail .items .item:first-child {
    border-top: none 0;
  }
  #secNewsImportant table .detail .items .item .date,
  #secNewsImportant table .detail .items .item .text {
    line-height: 1.4;
  }
  #secNewsImportant table .detail .items .item .date {
    margin-bottom: 0.5em;
    font-size: 100%;
    display: block;
  }
  #secNewsImportant table .detail .items .item .text {
    font-size: 108.33333%;
  }
  #secNewsImportant table .detail .items .item .listBlank {
    margin-left: 1em;
  }
}
/* ----- top-president ----- */
.top-president {
  color: #fff;
  font-weight: 600;
  padding: 125px 0;
  background-image: url(../img/top/top-president_bg.jpg);
  background-size: cover;
  background-position: center bottom;
}
.top-president__top-link {
  position: relative;
  display: inline-block;
}
.top-president__top-link::before {
  position: absolute;
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../img/common/arw-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 58%;
  right: -18%;
  transform: translateY(-50%);
  z-index: 5;
}
.top-president__top-ttl {
  font-size: 38px;
}
.top-president__top-sub-ttl {
  font-size: 20px;
}
.top-president__bottom-linkWrap {
  position: relative;
  width: 870px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 70px;
  gap: 30px 70px;
}
.top-president__bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.top-president__bottom-link {
  position: relative;
  z-index: 10;
  width: calc(50% - 40px);
  padding: 30px;
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.67);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-president__bottom-link::after {
  position: absolute;
  content: url(../img/top/top-president_arw.png);
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.top-president__bottom-link.color01 {
  border: solid 3px #7C2A2A;
  background-color: rgba(190, 55, 55, 0.67);
}
.top-president__bottom-link.color02 {
  border: solid 3px #283983;
  background-color: rgba(35, 62, 178, 0.67);
}
.top-president__bottom-link.color03 {
  border: solid 3px #74580a;
  background-color: rgba(178, 140, 35, 0.67);
}
.top-president__bottom-ttl {
  font-size: 20px;
}
.top-president__bottom-sub-ttl {
  font-size: 13px;
}

@media (max-width: 870px) {
  .top-president__bottom-linkWrap {
    width: 100%;
    gap: 15px;
  }
  .top-president__bottom-link {
    width: calc(90% - 10px);
  }
}
@media (max-width: 599px) {
  .top-president {
    padding: 52px 0 50px;
  }
  .top-president__bottom-linkWrap {
    padding-top: 45px;
    gap: 0;
  }
  .top-president__bottom-link {
    width: 90%;
    margin: 10px auto 0;
    padding: 20px;
    min-height: 104px;
  }
  .top-president__top-ttl {
    font-size: 7vw;
  }
  .top-president__top-sub-ttl {
    font-size: 4vw;
  }
  .top-president__bottom-ttl {
    font-size: 5vw;
  }
  .top-president__bottom-sub-ttl {
    font-size: 4vw;
  }
  .top-president__bg {
    width: 12%;
    top: 5px;
  }
}
/* ----- top-news & top-topics ----- */
.top-news,
.top-topics {
  width: calc(50% - 25px);
  padding: 70px 0;
}

.top-news h2,
.top-topics h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.top-news .top-news__link,
.top-topics .top-topics__link {
  padding: 15px 0;
  border-bottom: solid 1px #ddd;
}

.top-news .top-news__date,
.top-topics .top-topics__date {
  margin-bottom: 2px;
  font-size: 13px;
}

.top-news .top-news__list,
.top-topics .top-topics__list {
  margin-bottom: 20px;
  font-size: 95%;
}

@media (max-width: 768px) {
  .top-news,
  .top-topics {
    width: 100%;
  }
  .top-news h2,
  .top-topics h2 {
    margin-bottom: 10px;
  }
  .top-news {
    padding: 3.125rem 0 1.5rem;
  }
  .top-topics {
    padding: 0 0 3.125rem;
  }
}
/* ----- top-recommended ----- */
.top-recommended {
  background-color: #000;
}

.top-recommended h2 {
  color: #fff;
  padding: 35px 0;
}

.top-recommended .top-recommended__img-wrap {
  position: relative;
  display: block;
  width: 33.3333333333%;
  height: 15vw;
  overflow: hidden;
  cursor: pointer;
}

.top-recommended .top-recommended__img-wrap:hover {
  opacity: 1;
}

.top-recommended .top-recommended__img-wrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 7%, rgba(255, 255, 255, 0) 43%);
  z-index: 2;
}

.top-recommended .top-recommended__img-wrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url("../img/common/arw-white.svg");
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 8%;
  right: 5%;
  z-index: 5;
}

.top-recommended .top-recommended__img-wrap img {
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
  object-fit: cover;
  object-position: center;
}

.top-recommended .top-recommended__img-wrap:hover img {
  transform: scale(1.2);
  transition-duration: 0.5s;
}

.top-recommended__txt {
  position: absolute;
  color: #fff;
  font-size: 16px;
  bottom: 10%;
  left: 8%;
  width: 100%;
  z-index: 3;
}

@media (max-width: 768px) {
  .top-recommended .top-recommended__img-wrap {
    height: 21vw;
  }
  .top-recommended h2 {
    font-size: 183.33333%;
    line-height: 1.29545;
  }
  .top-recommended__txt {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .top-recommended h2 {
    width: 90%;
    margin: auto;
  }
  .top-recommended .top-recommended__img-wrap {
    width: 100%;
    height: 61vw;
  }
  .top-recommended .top-recommended__img-wrap::before {
    width: 28.3px;
    height: 28px;
  }
  .top-recommended__txt {
    font-size: 4vw;
  }
}
/* ----- top-FA ----- */
.top-FA {
  position: relative;
  overflow: hidden;
}

.top-FA .top-ttl {
  text-align: left;
}

.top-FA__link {
  margin-top: 150px;
  width: 330px;
}

@media (max-width: 768px) {
  .top-FA .top-ttl {
    text-align: center;
  }
  .top-FA__link {
    margin: 0 auto 20px;
    text-align: center;
    width: 100%;
  }
}
/* ----- swiperスタイル ----- */
.top-FA .swiper2 {
  width: 70%;
  min-width: 500px;
  overflow-x: hidden;
  margin-left: auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(30%, -50%);
  padding: 6px 5px;
  z-index: 9;
}

.top-FA .swiper-slide {
  width: 270px;
  display: block;
  margin-right: 10px;
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.top-FA .btn-area {
  margin-top: 45px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: none;
}

.top-FA .swiper-button-next,
.top-FA .swiper-button-prev {
  display: inline-block;
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.top-FA .swiper-button-prev {
  background-image: url(../img/top/prev.png);
}

.top-FA .swiper-button-next {
  background-image: url(../img/top/next.png);
  margin-left: 30px;
}

@media (max-width: 768px) {
  .top-FA .swiper2 {
    width: 100%;
    min-width: 100%;
    overflow-x: visible;
    position: relative;
    top: 0%;
    right: 0;
    transform: translate(0%, 0%);
    overflow: hidden;
  }
  .top-FA .btn-area {
    margin-top: 20px;
  }
  .top-FA .swiper-button-next,
  .top-FA .swiper-button-prev {
    top: 60%;
    position: absolute;
  }
  .top-FA .swiper-button-prev {
    left: -5px;
    right: auto;
  }
  .top-FA .swiper-button-next {
    left: auto;
    right: -5px;
  }
}
/* ----- スライドスタイル ----- */
.top-FA .swiper-slide {
  opacity: 0.6;
}

.top-FA .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.top-FA .top-FA__img {
  width: 100%;
  height: 8vw;
  max-height: 175px;
  object-fit: cover;
  object-position: top;
}

.top-FA .top-FA__txt-box {
  min-height: 140px;
  padding: 20px 30px;
  background-color: #fff;
}

.top-FA .top-FA__name {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.top-FA .top-FA__date {
  color: #999999;
  font-size: 13px;
}

.top-FA .top-FA__bg {
  position: absolute;
  bottom: -5%;
  left: 10%;
  z-index: -1;
}

@media (max-width: 768px) {
  .top-FA .top-FA__bg {
    left: -24%;
  }
  .top-FA .top-FA__img {
    width: 100%;
    height: 20vw;
    max-height: unset;
  }
}
@media (max-width: 599px) {
  .top-FA .top-FA__img {
    height: 55vw;
  }
}
/* ============================================================= */
/* 重要記事モーダル                                               */
/* ============================================================= */
.important-post__ModalWrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.important-post__ModalWrap.is-active {
  display: block;
}

.important-post__ModalCtr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 80%;
  max-width: 920px;
  padding: 30px 80px;
}

.important-post__ModalCtr {
  padding: 110px 50px 30px 50px;
}

.important-post__bankModalInner {
  position: relative;
}

.important-post__closeBtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  background-color: #001165;
  color: #fff;
  padding: 20px 50px 20px 30px;
  transition: opacity 0.3s ease-in;
}

.important-post__closeBtn:hover {
  opacity: 0.7;
}

.important-post__closeBtn p {
  font-size: 20px;
  margin: 0;
}

.important-post__closeBtn span {
  position: absolute;
  top: 21px;
  right: 28px;
  width: 2px;
  height: 25px;
  background-color: #fff;
  z-index: 500;
}

.important-post__closeBtn span:nth-child(1) {
  transform: rotate(45deg);
}

.important-post__closeBtn span:nth-child(2) {
  transform: rotate(-45deg);
}

@media (max-width: 599px) {
  .important-post__closeBtn {
    padding: 15px 50px 15px 20px;
  }
  .important-post__closeBtn p {
    font-size: 16px;
  }
  .important-post__closeBtn span {
    top: 15px;
  }
  .important-post__ModalCtr {
    width: 100%;
    max-width: 100%;
    padding: 66px 20px 20px;
  }
}
/* ============================================================= */
/*  page-president (塾長メッセージ)          　　　　　　　        */
/* ============================================================= */
.president-message {
  padding: 100px 0;
  background-color: #F9F9F9;
}

.president-message__txt-box {
  width: 460px;
}

.page-contents p.president-message__name {
  margin-top: 50px;
}

.president-sec02 {
  padding: 100px 0;
}

.president-sec02__img {
  margin: 40px auto 30px;
}

.president-sec02__btn-wrap {
  width: calc(50% - 10px);
}

.president-sec02 .btn {
  width: 100%;
  padding: 25px 0;
}

.president-sec02 .btn.color01 {
  background-color: #AE5353;
}

.president-sec02 .btn.color02 {
  background-color: #4557A5;
}

.president-sec03 {
  padding: 10px 0 100px;
}

.president-sec03__wrap {
  margin-top: 42px;
}

.page-contents p.president-sec03__txt {
  font-size: 17px;
  margin-top: 5px;
}

.president-sec03__caption {
  font-size: 17px;
}

.president-sec03__ttl {
  font-size: 24px;
  letter-spacing: 0.2em;
}

.president-sec03__ttl--big {
  font-size: 32px;
}

.president-sec03__ttl--big.color01 {
  color: #C5B15D;
}

.president-sec03__ttl--big.color02 {
  color: #817B61;
}

.president-sec04 {
  padding: 100px 0;
  background-color: #F9F9F9;
}

.president-sec04__ctr {
  width: calc(50% - 20px);
  background-color: #eeeeee;
  padding: 25px 30px;
}

.president-sec04__inner-ttl {
  font-size: 125%;
  color: #686868;
}

.page-contents p.president-sec04__txt {
  margin-top: 10px;
}

@media (max-width: 599px) {
  .president-message {
    padding: 50px 0;
  }
  .president-message__img {
    margin: 50px auto 0;
  }
  .president-sec02 {
    padding: 50px 0;
  }
  .president-sec02__btn-wrap {
    width: 100%;
    margin-top: 10px;
  }
  .president-sec03 {
    padding: 30px 0 50px;
  }
  .president-sec03__wrap {
    margin-top: 30px;
  }
  p.president-sec03__ttl {
    font-size: 20px;
  }
  .page-contents p.president-sec03__txt {
    font-weight: 400;
    font-size: 100%;
  }
}
/* ============================================================= */
/*  page-message (　ご支援をお考えのみなさまへ　)                  */
/* ============================================================= */
.page-message__bg-wrap {
  position: relative;
  width: 100%;
}

.page-message__hero {
  position: relative;
  background-size: cover;
}

.page-message__hero::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
}

.page-message__hero .global-breadCrumb {
  position: relative;
  z-index: 10;
}

.page-message__hero .hero__ttl-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}

.page-message__hero .hero__ttl {
  padding: 200px 0 380px;
}

.page-message {
  background-color: #F5F5F5;
  padding: 100px 0;
}

.page-message .page-message__inner {
  width: 960px;
}

.page-message .page-message__top-area .page-message__ttl {
  font-size: 133.33%;
  margin-bottom: 40px;
}

.page-message .page-message__top-area .page-message__txt {
  font-size: 106.67%;
}

.page-message .page-message__stg-txt {
  font-size: 213.33%;
  line-height: 1.3;
  margin: 100px 0 110px;
}

.page-message .page-message__main-area .page-message__wrap {
  position: relative;
}

.page-message .page-message__main-area .page-message__wrap.wrap1 {
  padding-top: 480px;
}

.page-message .page-message__main-area .page-message__wrap.wrap2 {
  padding-top: 140px;
}

.page-message .page-message__main-area .page-message__wrap.wrap3 {
  padding-top: 330px;
}

.page-message .page-message__main-area .page-message__wrap.wrap4 {
  padding-top: 320px;
}

.page-message .page-message__main-area .page-message__wrap:not(:first-child) {
  margin-top: 118px;
}

.page-message .page-message__main-area .page-message__bg {
  position: absolute;
  top: 0;
}

.page-message .page-message__main-area .page-message__bg.right {
  right: 0;
}

.page-message .page-message__main-area .page-message__ctr {
  position: relative;
  z-index: 10;
  width: 740px;
  background-color: #fff;
  padding: 75px 70px;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.page-message .page-message__main-area .page-message__ctr.right {
  margin-left: auto;
}

.page-message .page-message__main-area .page-message__ctr-ttl {
  position: relative;
  font-size: 213.33%;
  padding-bottom: 25px;
  margin-bottom: 35px;
}

.page-message .page-message__main-area .page-message__ctr-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #001165;
}

.page-message .page-message__main-area .page-message__txt-box:not(:last-child) {
  margin-bottom: 40px;
}

.page-message .page-message__main-area .page-message__inner-ttl {
  font-size: 133.33%;
  margin-bottom: 20px;
}

.page-message .page-message__flex-txtbox {
  margin-bottom: 40px;
  width: 322px;
}

.page-message .page-message__main-area .page-message__img {
  width: 251px;
  margin-bottom: 30px;
}

.page-message .page-message__main-area .page-message__list {
  text-indent: -1em;
  padding-left: 1em;
}

.page-message .page-message__main-area .page-message__list li:not(:last-child) {
  margin-bottom: 10px;
}

.page-message .page-message__main-area .page-message__list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #000;
  margin-right: 10px;
  vertical-align: middle;
}

.page-message .page-message__pc {
  display: block;
}

.page-message .page-message__sp {
  display: none;
}

@media (max-width: 1265px) {
  .page-message .page-message__inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .page-message__hero .hero__ttl {
    padding: 0px 0 160px;
  }
  .page-message .page-message__main-area .page-message__ctr {
    padding: 60px 50px;
  }
  .page-message .page-message__main-area .page-message__ctr {
    width: 100%;
  }
  .page-message .page-message__main-area .page-message__bg {
    position: unset;
  }
  .page-message .page-message__main-area .page-message__wrap.wrap1,
  .page-message .page-message__main-area .page-message__wrap.wrap2,
  .page-message .page-message__main-area .page-message__wrap.wrap3,
  .page-message .page-message__main-area .page-message__wrap.wrap4 {
    padding-top: 10px;
  }
  .page-message .page-message__main-area .page-message__wrap:not(:first-child) {
    margin-top: 50px;
  }
  .page-message__hero .hero__ttl-wrap {
    padding-top: 5%;
  }
  .page-message .page-message__pc {
    display: none;
  }
  .page-message .page-message__sp {
    display: block;
  }
}
@media (max-width: 599px) {
  .page-message__hero .hero__ttl {
    padding: 70px 0 160px;
  }
  .page-message {
    padding: 50px 0;
  }
  .page-message .page-message__top-area .page-message__ttl {
    font-size: 120%;
    margin-bottom: 20px;
  }
  .page-message__hero .hero__ttl {
    font-size: 5.5vw;
  }
  .page-message .page-message__top-area .page-message__txt {
    font-size: 100%;
  }
  .page-message .page-message__stg-txt {
    font-size: 130%;
    margin: 30px 0 40px;
  }
  .page-message .page-message__main-area .page-message__ctr {
    padding: 35px 25px;
  }
  .page-message .page-message__main-area .page-message__ctr-ttl {
    font-size: 120%;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .page-message__img {
    margin: 10px auto 0;
  }
  .page-message .page-message__main-area .page-message__inner-ttl {
    font-size: 114.29%;
  }
  .page-message .page-message__main-area .page-message__txt-box:not(:last-child) {
    margin-bottom: 30px;
  }
}
/* ============================================================= */
/*  page-ayumi (　「義塾社中」の絆・募金活動のあゆみ　)            */
/* ============================================================= */
.timeline {
  width: 100%;
  margin: 28px auto;
}

.timeline ul li.timeline-list-item::before {
  content: none;
}

.timeline ul li.timeline-list-item {
  padding: 0;
  text-indent: 0;
}

.timeline-list {
  padding: 40px 0;
}

.timeline-list-item {
  display: flex;
  line-height: 1.5;
  font-size: 16px;
}

.timeline-list-item .timeline__date {
  width: 20%;
  color: #000;
}

.timeline-list-item p.timeline__year {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.timeline-list-item p.timeline__japanese-calendar {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

.timeline-list-item .content {
  position: relative;
  width: 80%;
  padding: 0 0 70px 30px;
  border-left: 3px solid #DBDBDB;
  text-indent: 0;
}

.timeline-list-item .content h2 {
  text-align: left;
  margin-bottom: 15px;
  border: none;
  font-size: 30px;
}

.timeline-list-item .content p {
  margin-top: 0;
}

.timeline-list-item .content::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -12px;
  width: 20px;
  height: 20px;
  background-color: #000055;
  border-radius: 10px;
}

.timeline__caption {
  font-size: 14px;
  width: 100%;
}

.timeline__img {
  margin-bottom: 10px;
  max-width: 100%;
}

.timeline-list-item:last-child .content {
  padding: 0 0 25px 30px;
}

@media (max-width: 599px) {
  .timeline-list-item {
    font-size: 108.33333%;
  }
  .timeline-list-item p.timeline__year {
    font-size: 8vw;
  }
  .timeline-list-item .content h2 {
    font-size: 140%;
  }
  .timeline-list-item .content p {
    font-size: 100%;
  }
  .timeline-list-item p.timeline__japanese-calendar {
    font-size: 2vw;
  }
  .timeline-list-item .timeline__date {
    width: 25%;
  }
  .timeline__img {
    max-width: 100%;
  }
  .timeline-list-item .content {
    width: 70%;
  }
  .timeline-list-item .content::before {
    left: -6px;
    width: 10px;
    height: 10px;
  }
  .timeline-list-item .content p.timeline__caption {
    font-size: 90%;
  }
  .timeline-list {
    padding: 40px 0 10px;
  }
}
/* ============================================================= */
/*  page-katsudou (　活動報告　)        　　　　　　　　　　        */
/* ============================================================= */
.katsudou__top-area .katsudou__year {
  font-size: 200%;
}

.katsudou__top-area .katsudou__img-wrap {
  width: 34.5%;
}

.katsudou__top-area .katsudou__txt-box {
  width: 58%;
}

.katsudou__list-ttl {
  font-size: 133.33%;
  margin-top: 15px;
}

.katsudou__top-area .katsudou__list {
  font-size: 120%;
  margin: 12px 0 44px;
}

.katsudou__top-area .katsudou__link-wrap a {
  display: block;
  margin-top: 5px;
}

.katsudou__bottom-area {
  background-color: #F5F5F5;
  padding: 46px 52px;
}

.katsudou__bottom-area .katsudou__year {
  font-size: 160%;
}

.katsudou__bottom-area .katsudou__txt-box {
  margin-left: 50px;
  width: 65%;
}

.katsudou__bottom-area .katsudou__list-ttl {
  font-size: 106.67%;
  margin-top: 15px;
}

.katsudou__bottom-area .katsudou__list {
  margin: 5px 0 20px;
}

.katsudou__bottom-area .katsudou__link-wrap a {
  font-size: 93.33%;
}

.katsudou__bottom-area .katsudou__link-wrap a:not(:last-child) {
  margin-right: 20px;
}

.katsudou__wrap:not(:last-child) {
  margin-bottom: 70px;
}

.katsudou__link-wrap .link-arw::before {
  width: 20px;
  height: 20px;
  vertical-align: -5px;
}

ul.katsudou__inner-list li:before {
  content: none;
}

.katsudou__inner-img {
  width: 146px;
}

@media (max-width: 765px) {
  .katsudou__img {
    margin: 0 auto 4%;
  }
  .katsudou__top-area {
    margin-top: 30px;
  }
  .katsudou__top-area .katsudou__year {
    font-size: 180%;
  }
  .katsudou__top-area .katsudou__list {
    font-size: 105%;
    margin: 3% 0 8%;
  }
  .katsudou__top-area .katsudou__link-wrap .link-arw {
    font-size: 100%;
  }
  .katsudou__top-area .katsudou__img-wrap {
    width: auto;
  }
  .katsudou__top-area .katsudou__txt-box {
    width: 100%;
  }
  .katsudou__bottom-area {
    padding: 40px 30px;
    margin-top: 40px;
  }
  .katsudou__inner-img {
    margin: 0 auto 8%;
    max-width: 100%;
  }
  .katsudou__bottom-area .katsudou__txt-box {
    width: 100%;
    margin-left: 0;
  }
  .katsudou__wrap:not(:last-child) {
    margin-bottom: 50px;
  }
}
/* ============================================================= */
/*  page-faq (　よくあるご質問　)                                 */
/* ============================================================= */
.faq__top-area > p {
  font-size: 120%;
  margin-bottom: 30px;
}

.faq__outline {
  width: 540px;
  padding: 30px 35px;
  border: solid 2px #001165;
  line-height: 1.4;
}

.faq__outline-ttl {
  font-size: 120%;
  margin-bottom: 10px;
}

.faq__outline-fst-list {
  counter-reset: num;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.faq__outline-fst-list > li {
  padding-left: 2em;
  text-indent: -2em;
  counter-increment: num;
  margin-bottom: 0.5em;
}

.faq__outline-fst-list > li::before {
  display: inline-block;
  width: 25px;
  text-indent: 0;
  content: counter(num) " )";
}

.faq__outline-sec-list {
  counter-reset: num;
  margin: 15px 0;
}

.faq__outline-sec-list > li {
  padding-left: 2em;
  text-indent: -2em;
  counter-increment: num;
  margin-bottom: 0.5em;
}

.faq__outline-sec-list > li::before {
  display: inline-block;
  width: 20px;
  text-indent: 0;
  content: counter(num) ".";
}

.faq__main-area h3.faq__ttl {
  color: #fff;
  font-size: 120%;
  font-weight: 500;
  text-align: left;
  background-color: #666;
  padding: 7px 18px;
  margin-top: 70px;
}

.faq__main-area .faq__body {
  margin-top: 24px;
}

.faq__q-icon,
.faq__a-icon {
  width: 3%;
  font-size: 120%;
}

.faq__hd-txt,
.faq__txt {
  width: 95%;
}

.faq__main-area .faq__hd {
  position: relative;
  color: #000;
  background-color: #fff;
  border: solid 1px #CCCCCC;
  padding: 15px 50px 15px 25px;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.faq__main-area .faq__hd::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(0deg);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid rgb(0, 0, 0);
  transition: all 0.3s ease-in-out;
}

.faq__main-area .faq__hd.open::after {
  border-top: 8px solid rgb(255, 255, 255);
  transform: translateY(-50%) rotate(540deg);
}

.faq__main-area p.faq__hd-txt {
  font-size: 120%;
  margin: 0;
}

.faq__main-area .faq__hd.open {
  color: #fff;
  background-color: #001165;
}

.faq__main-area .faq__contents {
  display: none;
  overflow: hidden;
  padding: 25px;
  border: solid 1px #CCCCCC;
  border-top: none;
  line-height: 1.7;
}

.faq__main-area p.faq__txt {
  margin: 0;
}

.faq__link-list .link-u-border {
  display: block;
}

.faq__inner-ttl {
  margin-top: 50px;
}

@media (max-width: 599px) {
  .faq__outline {
    width: 100%;
  }
  .faq__top-area > p {
    font-size: 110%;
  }
  .faq__main-area h3.faq__ttl {
    margin-top: 50px;
    padding: 12px 18px;
  }
  .faq__main-area .faq__hd {
    padding: 15px 31px 15px 15px;
  }
  .faq__main-area .faq__body {
    margin-top: 15px;
  }
  .faq__inner-ttl {
    margin-top: 30px;
  }
  .faq__main-area p.faq__hd-txt {
    font-size: 114.29%;
  }
  .faq__main-area .faq__contents {
    padding: 19px 16px;
  }
  .faq__hd-txt,
  .faq__txt {
    width: 92%;
  }
}
/* ================================================================= */
/*  page-fukuzawa-shinkokikin (　福澤諭吉記念慶應義塾学事振興基金　)   */
/* ================================================================= */
.fukuzawa-btn-ctr {
  width: calc(50% - 10px);
}

.fukuzawa-btn-ctr p {
  margin-top: 5px !important;
}

.fukuzawa-btn-ctr .btn {
  width: 100%;
  padding: 20px 10px;
}

.fukuzawa__imgHovLink {
  position: relative;
  width: 360px;
  height: 240px;
  overflow: hidden;
  margin-top: 4px;
}

.fukuzawa__imgHovLink::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 7%, rgba(255, 255, 255, 0) 43%);
  z-index: 2;
}

.fukuzawa__imgHovLink img {
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
  object-fit: cover;
}

.fukuzawa__imgHovLinkTxt {
  position: absolute;
  color: #fff;
  font-size: 16px;
  bottom: 10%;
  left: 8%;
  z-index: 3;
}

@media (max-width: 1024px) {
  .fukuzawa__imgHovLink {
    width: calc(50% - 5px);
  }
}
@media (max-width: 599px) {
  .fukuzawa-btn-ctr {
    width: 100%;
    margin-top: 25px;
  }
  .fukuzawa__imgHovLink {
    width: 100%;
  }
  .give2asia-link img {
    width: 100%;
  }
}
/* ============================================================= */
/*  page-flowchart (　申込方法と申込後の手続きーフローチャート　) 　 */
/* ============================================================= */
.page-flowchart .flowchart__tab-wrap {
  margin-bottom: 93px;
}

.page-flowchart .flowchart__tab {
  display: block;
  font-size: 18px;
  width: calc(33.3333333333% - 5px);
  background-color: #EFEFEF;
  padding: 24px 5px;
}

.page-flowchart .flowchart__tab.active {
  color: #fff;
  background-color: #001165;
}

.flowchart__contents-wrap.hide {
  display: none;
}

/* .flowchart__contents-wrap {
    display: none;
} */
.flowchart__ctr:not(:first-child) {
  margin-top: 20px;
}

.page-flowchart .flowchart__box {
  position: relative;
  border: solid 4px #001165;
  padding: 44px 23px;
}

.page-flowchart .flowchart__ttl-num {
  position: absolute;
  top: -25px;
  left: 20px;
  font-size: 50px;
  color: #fff;
  background-color: #001165;
  padding: 30px;
}

.page-flowchart .flowchart__ttl-num::before {
  position: absolute;
  content: "";
  top: 0;
  right: -19px;
  border: none;
  border-top: solid 21px transparent;
  border-left: solid 20px #BBBBBB;
}

.page-flowchart h2:not(:first-child) {
  margin: 0;
}

.page-flowchart .flowchart__ttl {
  font-weight: 600;
  margin: 0;
  font-size: 25px;
  padding-left: 150px;
  text-align: left;
  border: none;
}

.page-flowchart .flowchart__bottom-area {
  margin-top: 55px;
}

.page-flowchart .flowchart__bottom-area ul {
  margin-top: 10px;
}

.page-flowchart .flowchart__bottom-area .flowchart__list {
  font-size: 91%;
}

/*--------------------------*/
.page-flowchart .kojin .flowchart__inner-wrap {
  margin-top: 40px;
}

.page-flowchart .kojin .flowchart__inner-ttl {
  display: inline-block;
  position: relative;
  color: #000;
  background-color: unset;
  font-size: 18px;
  font-weight: 600;
  z-index: 5;
  padding: 0 10px;
}

.page-flowchart .kojin .flowchart__inner-ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 16px;
  background-color: #D2D7F2;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.page-flowchart .kojin .flowchart__inner-ttl span {
  font-size: 30px;
  margin-right: 10px;
  color: #001165;
}

.flowchart__inner-ctr1 {
  width: calc(50% - 10px);
  background-color: #F6F7FD;
  padding: 35px 30px;
}

.flowchart__inner-ctr1 h4 {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  margin: 0 auto 25px;
}

.flowchart__inner-ctr1 h4::after {
  position: relative;
  display: block;
  content: "";
  width: 26px;
  height: 1px;
  background-color: #001165;
  bottom: -10px;
  left: 0;
}

.flowchart__inner-ctr1 h5 {
  font-weight: 500;
  color: #000055;
  margin-bottom: 5px;
}

.flowchart__inner-ctr1 .btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 0;
  width: 100%;
}

.flowchart__inner-ctr1 p {
  margin-top: 0 !important;
}

.page-flowchart .kojin li:before {
  content: none;
}

.page-flowchart .kojin .link-list a {
  font-size: 100%;
  display: block;
  line-height: 1.9;
}

.page-flowchart .kojin .flowchart__note a {
  font-size: 93.33%;
}

@media (max-width: 599px) {
  .page-flowchart .flowchart__tab-wrap {
    margin-bottom: 70px;
  }
  .page-flowchart .flowchart__tab {
    font-size: 4vw;
  }
  .page-flowchart .flowchart__ttl-num {
    left: 4px;
    font-size: 20px;
    padding: 15px;
  }
  .page-flowchart .flowchart__box {
    padding: 46px 15px 20px;
  }
  .page-flowchart .flowchart__ttl {
    font-size: 18px;
    padding: 0;
  }
  .page-flowchart .flowchart__bottom-area {
    margin-top: 25px;
  }
  .flowchart__arw {
    width: 50%;
  }
  .flowchart__inner-ctr1 {
    width: 100%;
    margin-top: 10px;
    padding: 25px 20px;
  }
  .page-flowchart .kojin .flowchart__inner-ttl {
    display: inline;
    font-size: 4.5vw;
    text-align: left;
  }
  .page-flowchart .kojin .flowchart__inner-ttl span {
    font-size: 7vw;
  }
  .page-flowchart .kojin .flowchart__inner-wrap {
    margin-top: 20px;
  }
}
/* ============================================== */
/*  page-sitemap (　サイトマップ　) 　             */
/* ============================================== */
.sitemap a {
  display: block;
}

.sitemap .sitemap__jumpBtn-wrap {
  margin-bottom: 70px;
}

.sitemap .sitemap__jumpBtn {
  display: inline-block;
  margin-right: 20px;
  line-height: 2;
  word-break: keep-all;
  font-size: 93.33%;
}

.sitemap .sitemap__jumpBtn::before {
  content: url(../img/common/down-arw.svg);
  margin-right: 5px;
  vertical-align: middle;
}

.sitemap .sitemap__fst-ctr:not(:last-child) {
  margin-bottom: 70px;
}

.sitemap .sitemap__fst-link {
  font-size: 133.33%;
}

.sitemap .sitemap__sec-wrap {
  width: 221px;
  margin-top: 40px;
  padding-left: 20px;
  border-left: solid 1px #ddd;
}

.sitemap .sitemap__sec-wrap:not(:last-child) {
  margin-right: 30px;
}

.sitemap .sitemap__sec-ctr:not(:last-child) {
  margin-bottom: 42px;
}

.sitemap .sitemap__sec-link {
  font-size: 100%;
  font-weight: 500;
}

.sitemap__trd-ctr {
  padding-left: 12px;
}

.sitemap__trd-link {
  margin-top: 13px;
  font-size: 80%;
  line-height: 1.5;
}

@media (max-width: 599px) {
  .sitemap .sitemap__jumpBtn-wrap {
    margin-bottom: 50px;
  }
  .sitemap .sitemap__jumpBtn {
    display: block;
    font-size: 114.29%;
  }
  .sitemap .sitemap__fst-ctr:not(:last-child) {
    margin-bottom: 50px;
  }
  .sitemap .sitemap__sec-wrap {
    width: 100%;
    margin-top: 20px;
    padding-left: 15px;
  }
  .sitemap .sitemap__sec-ctr:not(:last-child) {
    margin-bottom: 24px;
  }
}
/* ============================================== */
/*  page-simulator (　シミュレーター　) 　          */
/* ============================================== */
.simulator__form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #dee2e6;
  margin-top: 5px;
}

.simulator__top-flex {
  margin: 40px auto 30px;
}

.form-control {
  background-color: #fff;
  border-width: 1px;
  border-radius: 0;
}

.simulator__btn {
  width: 400px;
}

.simulator__wrap {
  width: calc(50% - 10px);
}

.simulator__bottom-flex {
  margin: 20px auto 10px;
}

.simulator__price-box {
  width: calc(50% - 10px);
  padding: 1rem;
  border: 1px solid #dee2e6;
}

.simulator__price-box span {
  font-size: 133.33%;
}

@media (max-width: 599px) {
  .simulator__price-box,
  .simulator__wrap {
    width: 100%;
    margin-top: 10px;
  }
}
/* ============================================== */
/*  page-ijikai ( 慶應義塾維持会 )                  */
/* ============================================== */
.ijikai__top-area {
  padding: 100px 0 80px;
}

.page-contents .ijikai__top-ttl {
  color: #484848;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
}

.ijikai__txt-box {
  width: 438px;
}

.ijikai__img-wrap {
  width: 240px;
}

.ijikai__top-caption {
  text-align: left;
  font-size: 12px;
}

.ijikai__top-area .btn {
  margin-top: 30px;
}

.ijikai-sec2 {
  background-color: #F9F9F9;
}

.ijikai-sec2__img-wrap {
  width: calc(50% - 10px);
  margin-top: 10px;
}

.ijikai-sec2 picture {
  display: flex;
  width: 30%;
}

.ijikai-sec2 .ijikai-sec2__img {
  width: 100%;
}

.ijikai-sec2__txt-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  color: #fff;
  background-color: #005;
  padding: 30px 0;
}

.ijikai-sec2__txt-box::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

@media (max-width: 780px) {
  .ijikai__txt-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .ijikai__img-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ijikai-sec2__txt {
    font-size: 4vw;
  }
}
@media (max-width: 599px) {
  .page-contents .ijikai__top-ttl {
    font-size: 130%;
  }
  .ijikai__top-area {
    padding: 50px 0;
  }
  .ijikai__img-wrap {
    margin-top: 30px;
  }
  .ijikai-sec2__txt-box {
    padding: 10px;
  }
  .ijikai-sec2__img-wrap {
    width: 100%;
    font-size: 4vw;
  }
}
/* ============================================== */
/*  維持会奨学金 実績のご報告                         */
/* ============================================== */
.prefecture-container-wrap {
  width: 100%;
  padding: 0 15px;
  margin-top: 2em;
}

.prefecture-container,
.prefecture-block {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.prefecture-container {
  padding-bottom: 1em;
  border-bottom: 1px solid #c2c2c2;
}

.prefecture-block {
  margin-right: 20px;
  line-height: 1.8;
}

.prefecture-link {
  display: flex;
  align-items: center;
}

.prefecture-name,
.prefecture-num {
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 0;
  line-height: 1.8;
}

.prefecture-name {
  font-weight: bold;
  margin-right: 10px;
}

.text-hokkaido {
  color: #6E5794;
}

.text-hokkaido:hover {
  color: #4a3b64;
}

.text-tohoku {
  color: #325A8C;
}

.text-tohoku:hover {
  color: #1e3654;
}

.text-kanto {
  color: #4E9BB3;
}

.text-kanto:hover {
  color: #366d7e;
}

.text-chubu {
  color: #318E75;
}

.text-chubu:hover {
  color: #1d5546;
}

.text-kinki {
  color: #96A350;
}

.text-kinki:hover {
  color: #677037;
}

.text-chugoku {
  color: #CD5C85;
}

.text-chugoku:hover {
  color: #a9345e;
}

.text-shikoku {
  color: #E2843F;
}

.text-shikoku:hover {
  color: #b95e1c;
}

.text-kyusyu {
  color: #C2424F;
}

.text-kyusyu:hover {
  color: #8b2d36;
}

/* ================================================================= */
/*  page-furusatotax ( ふるさと納税 )                                 */
/* ================================================================= */
.inner.furusatotax {
  width: 824px;
}

.global-container .furusatotax {
  position: relative;
}

.furusatotax-mv {
  position: relative;
}
.furusatotax-mv__link-area {
  display: inline-block;
  position: sticky;
  bottom: -5px;
  right: 240px;
  left: 100%;
  background-color: #F0C400;
  border: solid 2px #001e62;
  padding: 15px 35px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .furusatotax-mv__link-area {
    right: 0;
  }
}
@media (max-width: 599px) {
  .furusatotax-mv__link-area {
    font-size: 3.5vw;
    padding: 10px 30px;
  }
}
.furusatotax-mv__link-area > p {
  color: #001e62;
  margin-bottom: 5px;
}
.furusatotax-mv__mv-img {
  width: 100%;
}
@media (max-width: 599px) {
  .furusatotax-mv__mv-img.--pc {
    display: none;
  }
}
.furusatotax-mv__mv-img.--sp {
  display: none;
}
@media (max-width: 599px) {
  .furusatotax-mv__mv-img.--sp {
    display: block;
  }
}

.furusatotax-sec01 {
  padding: 100px 0;
  background-image: url(../img/page-furusatotax/page-furusatotax_bg01.jpg);
  background-size: cover;
  background-position: top;
}
@media (max-width: 599px) {
  .furusatotax-sec01 {
    padding: 100px 0 50px;
  }
}
.furusatotax-sec01__txt {
  line-height: 2.5;
  font-size: 106.25%;
  margin: 60px 0 100px;
}
@media (max-width: 599px) {
  .furusatotax-sec01__txt {
    font-size: 105%;
    line-height: 2.3;
    margin: 30px 0 50px;
  }
}
.furusatotax-sec01__stg {
  font-size: 150%;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .furusatotax-sec01__stg {
    font-size: 130%;
    margin-bottom: 20px;
  }
}
.furusatotax-sec01__movie {
  width: 100%;
  aspect-ratio: 16/9;
}

.furusatotax-sec02 {
  background-image: url(../img/page-furusatotax/page-furusatotax_bg02.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 100px 0 0;
}
@media (max-width: 599px) {
  .furusatotax-sec02 {
    background-size: 170%;
    background-position: top center;
    padding: 100px 0 0;
  }
}
.furusatotax-sec02__ttl-area {
  width: 824px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px;
  font-size: 28px;
  line-height: 1.6;
  background-color: rgba(241, 196, 0, 0.9);
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media (max-width: 599px) {
  .furusatotax-sec02__ttl-area {
    padding: 20px 20px;
    font-size: 5vw;
  }
}
.furusatotax-sec02__ttl-area h2 {
  font-size: 40px;
}
@media (max-width: 599px) {
  .furusatotax-sec02__ttl-area h2 {
    font-size: 7vw;
  }
}
.furusatotax-sec02__ctr {
  padding: 30px 0 50px;
  line-height: 1.7;
}
.furusatotax-sec02__txt p:not(:last-child) {
  margin-bottom: 1.5em;
}
.furusatotax-sec02__img {
  margin: 20px 0;
}
.furusatotax-sec02__grp-ttl-area {
  display: flex;
  justify-content: space-between;
  background-color: #F0C400;
  padding: 30px 0 30px 30px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 599px) {
  .furusatotax-sec02__grp-ttl-area {
    align-items: center;
    font-size: 4.5vw;
    padding: 20px 0 20px 30px;
  }
}
.furusatotax-sec02__grp-ttl-area img {
  width: 360px;
}
@media (max-width: 599px) {
  .furusatotax-sec02__grp-ttl-area img {
    width: 50%;
  }
}
.furusatotax-sec02 ol {
  margin-bottom: 20px;
}
.furusatotax-sec02 ol > li:not(:last-child) {
  margin-bottom: 5px;
}
.furusatotax-sec02 ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.furusatotax-sec02 ol li ul li {
  font-size: 14px;
}
.furusatotax-sec02__list li {
  text-indent: -1em;
  padding-left: 1em;
}
.furusatotax-sec02__list li:not(:last-child) {
  margin-bottom: 5px;
}
.furusatotax-sec02__contact-link-area {
  background-color: rgba(241, 196, 0, 0.1);
  padding: 30px;
}
@media (max-width: 599px) {
  .furusatotax-sec02__contact-link-area {
    padding: 20px 20px 30px;
  }
}
.furusatotax-sec02__contact-link-ttl {
  font-size: 112.5%;
  font-weight: 600;
  padding-bottom: 15px;
}/*# sourceMappingURL=style.css.map */