@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
/*color*/
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;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

sup {
  vertical-align: super;
}

a:link {
  color: #214D80;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: #214D80;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media (width < 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  background-color: rgba(195, 235, 234, 0.4);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #214D80;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  letter-spacing: 0.025rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width < 767px) {
  body {
    font-size: 1.4rem;
  }
}

.home {
  background: rgba(195, 235, 234, 0.4) url("../img/background.png") no-repeat top 100px center/contain;
}
@media (width < 767px) {
  .home {
    background-image: url("../img/background-sp.png");
    background-position: top 68px center;
  }
}

.pc-only {
  display: block !important;
}
@media (width < 767px) {
  .pc-only {
    display: none !important;
  }
}

.pc-only-header {
  display: block !important;
}
@media (width < 1060px) {
  .pc-only-header {
    display: none !important;
  }
}

.pc-only-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (width < 1060px) {
  .pc-only-flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (width < 767px) {
  .sp-only {
    display: block !important;
  }
}

.sp-only-header {
  display: none !important;
}
@media (width < 1060px) {
  .sp-only-header {
    display: block !important;
  }
}

@media (width < 767px) {
  body.no-scroll {
    overflow: hidden;
  }
}

.site-logo {
  width: 40%;
}
@media (width < 1060px) {
  .site-logo {
    width: 80%;
  }
}
.site-logo__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  text-decoration: none;
}
@media (width < 767px) {
  .site-logo__link {
    display: grid;
    grid-template-columns: 20% 78%;
    gap: 2%;
  }
}
.site-logo__img {
  width: auto;
  max-height: 47px;
}
@media (width < 767px) {
  .site-logo__img {
    width: 100%;
    max-height: none;
  }
}
.site-logo__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #214D80;
  line-height: 1.2;
}
@media (width < 767px) {
  .site-logo__text {
    font-size: 1.8rem;
    line-height: 1.1;
  }
}

.site-header {
  width: 100%;
  position: relative;
  z-index: 100;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (width < 1060px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media (width < 1060px) {
  .site-header + .site-main {
    padding-top: 68px;
  }
}
.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.site-header .header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (width < 1060px) {
  .site-header .header-inner {
    padding: 1em;
    border-bottom: 1px solid #FFFFFF;
  }
}
@media (width < 1060px) {
  .site-header .header-inner.scroll {
    background-color: #FFFFFF;
    border-bottom: 1px solid #F64456;
  }
}
@media (width < 1060px) {
  .home .site-header .header-inner {
    border-bottom: none;
  }
}

.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 101;
  position: relative;
}
.hamburger-menu__line {
  background-color: #214D80;
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
}
.hamburger-menu__line:first-child {
  background-color: #F64456;
  top: 0;
}
.hamburger-menu__line:nth-child(2) {
  background-color: #46B89F;
  top: 9px;
}
.hamburger-menu__line:last-child {
  background-color: #0097E0;
  top: 18px;
}
.hamburger-menu.active .hamburger-menu__line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(-15deg);
          transform: translateY(9px) rotate(-15deg);
}
.hamburger-menu.active .hamburger-menu__line:nth-child(2) {
  -webkit-transform: translateY(0px) rotate(15deg);
          transform: translateY(0px) rotate(15deg);
}
.hamburger-menu.active .hamburger-menu__line:nth-child(3) {
  /*				transform: translateY(-8px) rotate(-45deg);*/
}

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*	height: calc(100vh - 60px);*/
  height: 100vh;
  background-color: #FFFFFF;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  padding-bottom: 60vh;
}
.sp-nav.active {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sp-nav.active .site-logo {
  padding: 1em;
}
.sp-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (width < 767px) {
  .sp-nav__list {
    max-width: 100%;
    margin: 0 10px;
    border-top: 1px solid #F64456;
  }
}
.sp-nav__item {
  font-size: 1.6rem;
  font-weight: 700;
}
.sp-nav__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.sp-nav__link {
  font-weight: 700;
  color: #214D80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  text-decoration: none;
}
.sp-nav__icon {
  margin-right: 15px;
  font-size: 20px;
  width: 40px;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp-nav__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}
.sp-nav__language-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px;
  margin-bottom: 20px;
}

.sp-lang-selector {
  width: 56%;
  position: relative;
}
.sp-lang-selector::before {
  background: url("../img/translate.svg") no-repeat center/100%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 2;
}
.sp-lang-selector__button {
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #214D80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  padding: 15px;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sp-lang-selector__button .icon-globe {
  margin-right: 10px;
}
.sp-lang-selector__button .icon-arrow-down {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../img/arrow-white-bottom.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  right: 20px;
}
.sp-lang-selector__button.active .icon-arrow-down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sp-lang-selector__list {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.5;
}
.sp-lang-selector__item a {
  background: url("../img/arrow-blue.svg") no-repeat left center/10px;
  padding-left: 20px;
}
.sp-lang-selector__item rt {
  display: none !important;
}
.sp-lang-selector__dropdown {
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  padding: 40px 10px;
  background-color: #DDF6FC;
  z-index: 0;
  max-height: 0;
  border-radius: 0 0 25px 25px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sp-lang-selector__dropdown.active {
  max-height: 400px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  overflow-y: auto;
}

.furigana-toggle {
  position: relative;
}
@media (width < 767px) {
  .furigana-toggle {
    width: 40%;
  }
}
.furigana-toggle__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.furigana-toggle__label {
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #214D80;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 50px;
  padding: 0 18px;
  border-radius: 50px;
  cursor: pointer;
}
@media (width < 767px) {
  .furigana-toggle__label {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}
.furigana-toggle__label::after {
  background-color: #FFFFFF;
  color: #214D80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  content: "OFF";
  width: 50px;
  padding: 0;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 767px) {
  .furigana-toggle__label::after {
    width: 40px;
  }
}
.furigana-toggle__checkbox:checked + .furigana-toggle__label::after {
  content: "ON";
  color: #CD2F3F;
}

.header-pc__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.header-pc__nav {
  margin-top: 0;
}
.header-pc__utility {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.lang-selector__quick-links {
  background-color: #FFFFFF;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  height: 50px;
  margin: 0;
  padding: 0 0 0 30px;
}
.lang-selector__item {
  font-weight: 700;
  text-align: center;
  margin-right: 20px;
}
.lang-selector__item span {
  font-size: 1.1rem;
}
.lang-selector__item rt {
  display: none !important;
}
.lang-selector__item a {
  font-size: 1.4rem;
  color: #214D80;
  text-decoration: none;
  display: block;
  height: 100%;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.lang-selector__item a:hover {
  color: #CD2F3F;
}
.lang-selector__item a:hover::after {
  background-color: #CD2F3F;
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
}
.lang-selector__more a {
  font-size: 1.4rem;
  background-color: #214D80;
  color: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 0 50px 50px 0;
}
.lang-selector__more a::after {
  background: url("../img/arrow-white.svg") no-repeat right center/100%;
  display: inline-block;
  content: "";
  width: 13px;
  height: 16px;
}
.lang-selector__more a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #CD2F3F;
}

.lang-popup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lang-popup.active {
  opacity: 1;
  visibility: visible;
}
.lang-popup__inner {
  background-color: #FFFFFF;
  position: relative;
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  padding: 20px 20px 40px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
.active .lang-popup__inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.lang-popup__header {
  padding: 0;
  text-align: right;
}
.lang-popup__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}
.lang-popup__content {
  padding: 0;
  max-height: calc(80vh - 60px);
  overflow-y: auto;
}
.lang-popup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lang-popup__item {
  font-weight: 700;
}
.lang-popup__item rt {
  display: none !important;
}
.lang-popup__item a {
  background: url("../img/arrow-blue.svg") no-repeat center left/9px;
  color: #214D80;
  display: block;
  padding-left: 20px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.global-nav {
  margin-left: 2%;
  width: 58%;
}
@media (width < 767px) {
  .global-nav {
    width: auto;
  }
}
.global-nav__list {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.global-nav__item {
  line-height: 1;
  margin-right: 20px;
  text-align: center;
}
.global-nav__item:last-child {
  margin-right: 0;
}
.global-nav__item--cta {
  line-height: 1.4;
}
.global-nav__item--cta a {
  background: #CD2F3F url("../img/navi-icon06.svg") no-repeat center left 15px/35px;
  color: #FFFFFF !important;
  display: block;
  border-radius: 50px;
  width: 175px;
  padding: 10px 0px 10px 60px;
}
.global-nav__link {
  font-weight: 700;
  color: #214D80;
  display: block;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.global-nav__link:hover {
  color: #CD2F3F;
}
.global-nav__link::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  content: "";
  display: block;
  height: 40px;
  margin: 0 auto 10px;
}
.global-nav__link--01::before {
  background-image: url("../img/navi-icon01.svg");
  width: 40px;
}
.global-nav__link--01:hover::before {
  background-image: url("../img/navi-icon01-hover.svg");
}
.global-nav__link--02::before {
  background-image: url("../img/navi-icon02.svg");
  width: 40px;
}
.global-nav__link--02:hover::before {
  background-image: url("../img/navi-icon02-hover.svg");
}
.global-nav__link--03::before {
  background-image: url("../img/navi-icon03.svg");
  width: 40px;
}
.global-nav__link--03:hover::before {
  background-image: url("../img/navi-icon03-hover.svg");
}
.global-nav__link--04::before {
  background-image: url("../img/navi-icon04.svg");
  width: 40px;
}
.global-nav__link--04:hover::before {
  background-image: url("../img/navi-icon04-hover.svg");
}
.global-nav__link--05::before {
  background-image: url("../img/navi-icon05.svg");
  width: 40px;
}
.global-nav__link--05:hover::before {
  background-image: url("../img/navi-icon05-hover.svg");
}
.global-nav__link--06::before {
  background-image: url("../img/navi-icon06.svg");
  width: 40px;
}
.global-nav__link--06:hover::before {
  background-image: url("../img/navi-icon06-hover.svg");
}

.page-wrapper {
  max-width: 1040px;
  margin: 60px auto 0;
}
@media (width < 1060px) {
  .page-wrapper {
    max-width: 100%;
    margin: 120px 10px 0;
  }
}
@media (width < 767px) {
  .page-wrapper {
    margin: 90px 10px 0;
  }
}

.page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-header__title {
  font-size: 3.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 767px) {
  .page-header__title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.page-header__title::before {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: block;
  content: "";
  margin-right: 20px;
}
@media (width < 767px) {
  .page-header__title::before {
    margin-right: 10px;
  }
}
@media (width < 767px) {
  .page-header__title--supporter {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page-header__title--supporter::before {
  background-image: url("../img/icon-supporters.svg");
  width: 128px;
  height: 98px;
}
@media (width < 767px) {
  .page-header__title--supporter::before {
    width: 70px;
    height: 54px;
  }
}
.page-header__title--educational::before {
  background-image: url("../img/icon-educational.svg");
  width: 94px;
  height: 86px;
}
@media (width < 767px) {
  .page-header__title--educational::before {
    width: 50px;
    height: 46px;
  }
}
.page-header__title--school::before {
  background-image: url("../img/icon-school.svg");
  width: 133px;
  height: 86px;
}
@media (width < 767px) {
  .page-header__title--school::before {
    width: 60px;
    height: 39px;
  }
}
.page-header__title--kids::before {
  background-image: url("../img/icon-kids.svg");
  width: 103px;
  height: 86px;
}
@media (width < 767px) {
  .page-header__title--kids::before {
    width: 48px;
    height: 40px;
  }
}
.page-header__title--link::before {
  background-image: url("../img/icon-link.svg");
  width: 120px;
  height: 123px;
}
@media (width < 767px) {
  .page-header__title--link::before {
    width: 49px;
    height: 50px;
  }
}
.page-header__title--news::before {
  background-image: url("../img/icon-news.svg");
  width: 155px;
  height: 95px;
}
@media (width < 767px) {
  .page-header__title--news::before {
    width: 65px;
    height: 40px;
  }
}
.page-header__single {
  padding-bottom: 20px;
  border-bottom: 1px dashed #99C5EA;
}
@media (width < 767px) {
  .page-header__single {
    padding-bottom: 10px;
  }
}
.page-header__label {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (width < 767px) {
  .page-header__label {
    font-size: 1.8rem;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.page-header__label::before {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: block;
  content: "";
}
.page-header__label--news::before {
  background-image: url("../img/icon-news.svg");
  width: 82px;
  height: 50px;
}
@media (width < 767px) {
  .page-header__label--news::before {
    width: 60px;
    height: 37px;
  }
}
.page-header__label--school::before {
  background-image: url("../img/icon-school.svg");
  width: 77px;
  height: 50px;
}
@media (width < 767px) {
  .page-header__label--school::before {
    width: 40px;
    height: 26px;
  }
}
.page-header__label--kids::before {
  background-image: url("../img/icon-kids.svg");
  width: 60px;
  height: 50px;
}
@media (width < 767px) {
  .page-header__label--kids::before {
    width: 31px;
    height: 26px;
  }
}
.page-header__link {
  text-align: center;
  line-height: 1.4;
}
@media (width < 767px) {
  .page-header__link {
    margin: 40px auto 0;
  }
}
.page-header__link a {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #0097E0;
  color: #FFFFFF;
  display: block;
  padding: 20px 40px;
  border: 2px solid #0097E0;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 767px) {
  .page-header__link a {
    font-size: 1.6rem;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
.page-header__link a:hover {
  background-color: #FFFFFF;
  color: #3E3A39;
}

.page-content {
  max-width: 100%;
  margin: 40px auto 0;
}
@media (width < 767px) {
  .page-content {
    margin-top: 20px;
  }
}

.search-box {
  display: none;
}

.school-content {
  margin: 30px auto 0;
}
.school-content__hit {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (width < 767px) {
  .school-content__hit {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
.school-content__no-results {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}
@media (width < 767px) {
  .school-content__no-results {
    padding: 30px 15px;
    border-radius: 20px;
  }
}
.school-content__no-results p {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (width < 767px) {
  .school-content__no-results p {
    font-size: 1.8rem;
  }
}
.school-content__block {
  margin-bottom: 40px;
}
.school-content__block:last-child {
  margin-bottom: 0;
}
.school-content__block a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.school-content__block a:hover {
  opacity: 0.7;
}
.school-content__header {
  background-color: #214D80;
  border-radius: 30px 30px 0 0;
}
@media (width < 767px) {
  .school-content__header {
    border-radius: 20px 20px 0 0;
  }
}
.school-content__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  line-height: 30px;
  padding: 20px 40px;
  position: relative;
}
@media (width < 767px) {
  .school-content__title {
    font-size: 2rem;
    line-height: 1.2;
    padding: 15px 48px 15px 15px;
  }
}
.school-content__title::after {
  background: url("../img/circle-arrow-red.svg") no-repeat center/100%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30%;
  right: 30px;
}
@media (width < 767px) {
  .school-content__title::after {
    top: 26%;
    right: 10px;
  }
}
.school-content__body {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (width < 767px) {
  .school-content__body {
    grid-template-columns: 1fr;
  }
}
.school-content__body dl {
  display: table;
}
.school-content__body dl:first-child, .school-content__body dl:nth-child(2) {
  border-bottom: 1px dashed #99C5EA;
}
@media (width < 767px) {
  .school-content__body dl:nth-child(3) {
    border-bottom: 1px dashed #99C5EA;
  }
}
.school-content__body dl dt {
  font-weight: 700;
  background-color: #E6EAEC;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 26%;
  padding: 20px;
}
@media (width < 767px) {
  .school-content__body dl dt {
    padding: 15px 5px;
  }
}
.school-content__body dl dd {
  background-color: #FFFFFF;
  display: table-cell;
  vertical-align: middle;
  width: 74%;
  padding: 20px;
}
@media (width < 767px) {
  .school-content__body dl dd {
    padding: 15px 5px;
  }
}
.school-content__body dl:nth-child(3) dt {
  border-bottom-left-radius: 30px;
}
@media (width < 767px) {
  .school-content__body dl:nth-child(3) dt {
    border-bottom-left-radius: 0;
  }
}
@media (width < 767px) {
  .school-content__body dl:last-child dt {
    border-bottom-left-radius: 20px;
  }
}
.school-content__body dl:last-child dd {
  border-bottom-right-radius: 30px;
}
@media (width < 767px) {
  .school-content__body dl:last-child dd {
    border-bottom-right-radius: 20px;
  }
}

.school-single {
  margin-top: 20px;
}
.school-single__article {
  max-width: 900px;
  margin: auto;
}
@media (width < 767px) {
  .school-single__article {
    max-width: 100%;
  }
}
.school-single__title {
  font-size: 3.6rem;
  font-weight: 700;
}
@media (width < 767px) {
  .school-single__title {
    font-size: 2.4rem;
  }
}
.school-single__content {
  margin-top: 40px;
}
@media (width < 767px) {
  .school-single__content {
    margin-top: 20px;
  }
}
.school-single__content table {
  width: 100%;
  table-layout: fixed;
}
.school-single__content table tr {
  border-bottom: 1px dashed #99C5EA;
}
.school-single__content table tr th {
  font-weight: 900;
  background-color: #E6EAEC;
  text-align: center;
  vertical-align: middle;
  width: 24%;
  padding: 20px 15px;
}
@media (width < 767px) {
  .school-single__content table tr th {
    width: 26%;
    padding: 15px 5px;
  }
}
.school-single__content table tr td {
  background-color: #FFFFFF;
  vertical-align: middle;
  width: 76%;
  padding: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media (width < 767px) {
  .school-single__content table tr td {
    width: 74%;
    padding: 15px 10px;
  }
}
.school-single__content table tr td a {
  text-decoration: underline;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.school-single__content table tr td a:hover {
  text-decoration: none;
}
.school-single__content table tr td iframe {
  display: block;
  width: 100%;
}
@media (width < 767px) {
  .school-single__content table tr td iframe {
    max-height: 300px;
  }
}
.school-single__content table tr:first-child th {
  border-top-left-radius: 30px;
}
@media (width < 767px) {
  .school-single__content table tr:first-child th {
    border-top-left-radius: 20px;
  }
}
.school-single__content table tr:first-child td {
  border-top-right-radius: 30px;
}
@media (width < 767px) {
  .school-single__content table tr:first-child td {
    border-top-right-radius: 20px;
  }
}
.school-single__content table tr:last-child {
  border-bottom: none;
}
.school-single__content table tr:last-child th {
  border-bottom-left-radius: 30px;
}
@media (width < 767px) {
  .school-single__content table tr:last-child th {
    border-bottom-left-radius: 20px;
  }
}
.school-single__content table tr:last-child td {
  border-bottom-right-radius: 30px;
}
@media (width < 767px) {
  .school-single__content table tr:last-child td {
    border-bottom-right-radius: 20px;
  }
}
.school-single__access {
  background-color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 30px;
}
@media (width < 767px) {
  .school-single__access {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 20px;
  }
}
.school-single__contact dt {
  font-size: 1.6rem;
  font-weight: 900;
  color: #CD2F3F;
  line-height: 1;
}
.school-single__contact dd {
  margin-top: 10px;
}
.school-single__contact dd p {
  line-height: 1.4;
}
.school-single__contact dd p a {
  text-decoration: underline;
}
.school-single__contact dd p a:hover {
  text-decoration: none;
}

.supporter-content {
  margin: 60px auto 0;
}
@media (width < 767px) {
  .supporter-content {
    margin-top: 40px;
  }
}
.supporter-content__lead {
  font-size: 2rem;
  line-height: 1.2;
}
@media (width < 767px) {
  .supporter-content__lead {
    font-size: 1.6rem;
  }
}
.supporter-content__btn {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  width: 700px;
  margin: 60px auto 0;
}
@media (width < 767px) {
  .supporter-content__btn {
    font-size: 1.6rem;
    text-align: left;
    width: auto;
    margin: 30px 10px 0;
  }
}
.supporter-content__btn a {
  background-color: #F64456;
  color: #FFFFFF;
  display: block;
  line-height: 100px;
  width: 100%;
  border: 2px solid #F64456;
  border-radius: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 767px) {
  .supporter-content__btn a {
    line-height: 1.6;
    padding: 15px 50px 15px 20px;
    border-radius: 10px;
  }
}
.supporter-content__btn a:hover {
  background-color: #FFFFFF;
  color: #3E3A39;
}
.supporter-content__btn a::after {
  background: url("../img/circle-arrow-blue.svg") no-repeat center/100%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 35px;
  right: 30px;
}
@media (width < 767px) {
  .supporter-content__btn a::after {
    top: 32%;
    right: 10px;
  }
}
.supporter-content__archive {
  max-width: 100%;
  height: auto;
  margin: 100px auto 0;
}
@media (width < 767px) {
  .supporter-content__archive {
    margin: 60px auto 0;
  }
}
.supporter-content__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 767px) {
  .supporter-content__header {
    display: block;
  }
}
.supporter-content__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (width < 767px) {
  .supporter-content__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.supporter-content__link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3E3A39;
}
@media (width < 767px) {
  .supporter-content__link {
    font-size: 1.6rem;
    margin: 20px auto 0;
  }
}
.supporter-content__link a {
  background-color: #46B89F;
  color: #FFFFFF;
  display: block;
  text-align: center;
  padding: 15px 40px;
  border: 2px solid #46B89F;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 767px) {
  .supporter-content__link a {
    line-height: 1.6;
  }
}
.supporter-content__link a:hover {
  background-color: #FFFFFF;
  color: #3E3A39;
}
.supporter-content__material {
  background-color: #FFFFFF;
  margin-top: 20px;
  padding: 30px 30px 60px;
  border-radius: 30px;
}
@media (width < 767px) {
  .supporter-content__material {
    padding: 15px 10px 30px;
    border-radius: 20px;
  }
}

.materials__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding-bottom: 20px;
}
@media (width < 767px) {
  .materials__header {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-bottom: 15px;
  }
}
.materials__header--educational {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 60px;
  padding-bottom: 0;
}
@media (width < 767px) {
  .materials__header--educational {
    margin-top: 30px;
    padding-bottom: 0;
  }
}
.materials__levels span {
  color: #CD2F3F;
}
.materials__grid {
  border-top: 1px dashed #99C5EA;
}
.materials__item {
  padding: 20px;
  border-bottom: 1px dashed #99C5EA;
}
@media (width < 767px) {
  .materials__item {
    padding: 15px;
  }
}
.materials__item a {
  color: #214D80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 767px) {
  .materials__item a {
    display: block;
  }
}
.materials__item a.link {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.materials__item a:hover h3 {
  text-decoration: none;
}
.materials__item-inner {
  width: 30%;
}
@media (width < 767px) {
  .materials__item-inner {
    width: 100%;
  }
}
.materials__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media (width < 767px) {
  .materials__image {
    width: auto;
    margin-top: 20px;
  }
}
.materials__image img {
  max-width: 100%;
  height: auto;
}
.materials__content {
  width: 70%;
  padding-left: 20px;
}
@media (width < 767px) {
  .materials__content {
    width: auto;
    margin-top: 20px;
    padding-left: 0;
  }
}
.materials__content--full {
  width: 100%;
  padding-left: 0;
}
.materials__content--almost {
  width: 90%;
}
.materials__content--link {
  padding-left: 0;
}
.materials__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
}
.materials__excerpt p {
  margin-top: 20px;
}
.materials__others {
  font-size: 2.4rem;
  line-height: 1;
  padding: 40px 0 20px;
}
@media (width < 767px) {
  .materials__others {
    font-size: 1.8rem;
    padding: 30px 0 15px;
  }
}
.materials__badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width < 767px) {
  .materials__badge {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: auto;
  }
}
.materials__levels span {
  color: #CD2F3F;
  font-size: 1.4rem;
  text-align: center;
}
.materials__categorize span {
  color: #CD2F3F;
  font-size: 1.4rem;
  text-align: center;
}

@media (width < 767px) {
  .teaching-content {
    margin-top: 40px;
  }
}
.teaching-content__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px 2%;
  margin: 20px auto 0;
}
@media (width < 767px) {
  .teaching-content__grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
    margin-top: 10px;
  }
}
.teaching-content__item {
  background-color: #FFFFFF;
  width: 32%;
  border-radius: 30px;
}
@media (width < 767px) {
  .teaching-content__item {
    width: 100%;
    border-radius: 20px;
  }
}
.teaching-content__item a {
  display: block;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.teaching-content__item a:hover h3 {
  text-decoration: none;
}
.teaching-content__item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.teaching-content__image {
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.teaching-content__image img {
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: auto;
  border-radius: 30px 30px 0 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.teaching-content__content {
  padding: 20px 20px 40px;
}
@media (width < 767px) {
  .teaching-content__content {
    padding: 15px 15px 30px;
  }
}
.teaching-content__title {
  font-size: 2rem;
  font-weight: 900;
  color: #214D80;
  text-decoration: underline;
  line-height: 1.4;
}
.teaching-content__excerpt {
  color: #214D80;
  margin-top: 20px;
}
.teaching-content__excerpt p {
  font-size: 1.6rem;
}
.teaching-content__excerpt p.small {
  font-size: 1.2rem;
}

.link-content {
  background-color: #FFFFFF;
  margin-top: 20px;
  padding: 60px 30px;
  border-radius: 30px;
}
@media (width < 767px) {
  .link-content {
    padding: 30px 10px;
    border-radius: 20px;
  }
}

@media (width < 767px) {
  .news-content {
    margin-top: 20px;
  }
}
.news-content__list {
  border-top: 1px dashed #99C5EA;
}
.news-content__item {
  padding: 20px 10px;
  border-bottom: 1px dashed #99C5EA;
}
.news-content__item a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-content__item a:hover {
  opacity: 0.7;
}
.news-content__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (width < 767px) {
  .news-content__link {
    display: block;
  }
}
.news-content__date {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (width < 767px) {
  .news-content__date {
    font-size: 1.2rem;
  }
}
.news-content__title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (width < 767px) {
  .news-content__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.news-content__title--external::after {
  content: "（外部リンク）";
}
.news-content__thumbnail {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.news-content__thumbnail img {
  vertical-align: bottom;
  border: 1px solid #E6EAEC;
  border-radius: 10px;
}

.pagination {
  margin-top: 100px;
}
@media (width < 767px) {
  .pagination {
    margin-top: 40px;
  }
}

.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.page-numbers li {
  font-size: 2rem;
  line-height: 1;
}
.page-numbers li span {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
}
.page-numbers li a {
  background-color: #FFFFFF;
  color: #CD2F3F;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page-numbers li a:hover {
  background-color: #CD2F3F;
  color: #FFFFFF;
}
.page-numbers__text {
  background-color: #CD2F3F;
  color: #FFFFFF;
}
.page-numbers__link {
  background-color: #FFFFFF;
  color: #CD2F3F;
}
.page-numbers__prev::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 15px 8.5px 0;
  border-color: transparent #CD2F3F transparent transparent;
  position: relative;
  right: 2px;
}
.page-numbers__prev:hover::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 15px 8.5px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
.page-numbers__next::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 15px;
  border-color: transparent transparent transparent #CD2F3F;
  position: relative;
  left: 2px;
}
.page-numbers__next:hover::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 15px;
  border-color: transparent transparent transparent #FFFFFF;
}

.news-single__article {
  max-width: 900px;
  margin: auto;
}
.news-single__header {
  padding-bottom: 20px;
  border-bottom: 1px dashed #99C5EA;
}
.news-single__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (width < 767px) {
  .news-single__title {
    font-size: 2.4rem;
    font-weight: 900;
  }
}
.news-single__date {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 20px;
}
@media (width < 767px) {
  .news-single__date {
    font-size: 1.2rem;
  }
}
.news-single__content {
  margin-bottom: 100px;
}
@media (width < 767px) {
  .news-single__content {
    margin-bottom: 60px;
  }
}
.news-single__content p {
  margin-top: 40px;
}
@media (width < 767px) {
  .news-single__content p {
    margin-top: 20px;
  }
}
.news-single__content .wp-block-image {
  margin-top: 40px;
}
@media (width < 767px) {
  .news-single__content .wp-block-image {
    margin-top: 20px;
  }
}
.news-single__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  border-top: 1px dashed #99C5EA;
}
@media (width < 767px) {
  .news-single__navigation {
    padding-top: 20px;
  }
}
.news-single__prev a, .news-single__next a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.news-single__prev a::before {
  background: url("../img/pagination-prev.svg") no-repeat center/100%;
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
}
.news-single__next a::after {
  background: url("../img/pagination-next.svg") no-repeat center/100%;
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
}
.news-single__archive {
  text-align: center;
  line-height: 1;
  width: 200px;
}
@media (width < 767px) {
  .news-single__archive {
    margin: 40px auto 0;
  }
}
.news-single__archive a {
  background-color: #FFFFFF;
  display: block;
  border: 1px solid #214D80;
  border-radius: 50px;
  padding: 16px 0;
}
@media (width < 767px) {
  .news-single__archive a {
    padding: 10px 0;
  }
}

.breadcrumbs {
  max-width: 98%;
  margin: 100px auto 0;
}
@media (width < 767px) {
  .breadcrumbs {
    max-width: 100%;
    margin: 60px 10px 0;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
}
.breadcrumbs__inner {
  font-size: 1.2rem;
  line-height: 1;
}
@media (width < 767px) {
  .breadcrumbs__inner {
    white-space: nowrap;
    padding: 10px 0;
  }
}
.breadcrumbs__inner a {
  color: #214D80;
}
.breadcrumbs__inner span.separater {
  margin: 0 10px;
}

.site-footer {
  background-color: #214D80;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 60px 0;
  position: relative;
}
@media (width < 767px) {
  .site-footer {
    padding: 30px 10px;
  }
}
.home .site-footer {
  margin-top: 0;
}
.site-footer__return {
  width: 70px;
  height: auto;
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 99;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 767px) {
  .site-footer__return {
    width: 50px;
    right: 5px;
    bottom: 10px;
  }
}
.site-footer__return.position {
  position: absolute;
  bottom: calc(100% - 30px);
}
.site-footer__return a {
  display: block;
}
.site-footer__return a img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer__return a:hover img {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.site-footer__header {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media (width < 767px) {
  .site-footer__header {
    font-size: 1.8rem;
  }
}
.site-footer__header a {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer__header a:hover {
  opacity: 0.7;
}
.site-footer__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  text-align: center;
  margin: 30px auto 0;
}
@media (width < 767px) {
  .site-footer__navigation {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
  }
}
.site-footer__navigation li {
  line-height: 1;
}
@media (width < 767px) {
  .site-footer__navigation li {
    font-size: 1.4rem;
  }
}
.site-footer__navigation li a {
  color: #FFFFFF;
  padding-bottom: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer__navigation li a:hover {
  border-bottom: 1px solid #FFFFFF;
}
.site-footer__lower {
  color: #FFFFFF;
  text-align: center;
  margin: 100px auto 0;
}
@media (width < 767px) {
  .site-footer__lower {
    margin-top: 40px;
  }
}
.site-footer__lower p {
  font-weight: 400;
}
@media (width < 767px) {
  .site-footer__lower p {
    font-size: 1.2rem;
  }
}
.site-footer__lower p strong {
  font-weight: 500;
}

/* デフォルトのボタンを非表示に */
.rubyfuljs-tooltip-container {
  /*	display: none !important;*/
}

.ruby-button-wrapper {
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* カスタムボタンのスタイル（任意） */
#custom-ruby-button,
#sp-custom-ruby-button {
  font-size: 1.3rem;
  background-color: #214D80;
  color: #FFFFFF;
  line-height: 1;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#custom-ruby-button:hover,
#sp-custom-ruby-button:hover {
  color: #FFFFFF;
  background-color: #CD2F3F;
}

.top-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.hero-area {
  position: relative;
  width: 100%;
}
@media (width < 767px) {
  .hero-area {
    margin-bottom: 30px;
  }
}
.hero-area__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1040px;
  margin: 40px auto 0;
  padding: 0;
  position: relative;
}
@media (width < 767px) {
  .hero-area__inner {
    margin: 0 auto;
    padding-top: 100px;
    min-height: 300px;
  }
}
.hero-area__content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media (width < 767px) {
  .hero-area__content {
    max-width: 100%;
    margin: 20px 10px 0;
  }
}
.hero-area__title {
  font-size: 4.4rem;
  font-weight: 700;
  color: #214D80;
}
@media (width < 767px) {
  .hero-area__title {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.hero-area__title-line {
  font-size: 3.2rem;
  display: block;
}
@media (width < 767px) {
  .hero-area__title-line {
    font-size: 1.6rem;
  }
}
.hero-area__description {
  font-size: 2.2rem;
  margin-top: 30px;
}
@media (width < 767px) {
  .hero-area__description {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.hero-area__character {
  max-width: 100%;
  position: absolute;
  right: -40px;
  bottom: -20px;
  z-index: 1;
}
@media (width < 767px) {
  .hero-area__character {
    position: static;
    max-width: 90%;
    margin-left: auto;
  }
}
.hero-area__character-image {
  max-width: 100%;
  height: auto;
}

/* 日本語教室検索エリア全体のスタイル */
.top-search {
  background-color: #FFFFFF;
  max-width: 1040px;
  margin: 80px auto 0;
  padding: 40px;
  border-radius: 30px;
}
@media (width < 767px) {
  .top-search {
    max-width: 100%;
    margin: 40px 10px 0;
    padding: 30px 15px;
    border-radius: 20px;
  }
}
.top-search__header {
  text-align: center;
}
.top-search__header h2 {
  font-size: 3.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 767px) {
  .top-search__header h2 {
    font-size: 2.4rem;
  }
}
.top-search__header h2::before {
  background: url("../img/icon-school.svg") no-repeat left center/100%;
  display: inline-block;
  content: "";
  width: 133px;
  height: 86px;
  margin-right: 20px;
}
@media (width < 767px) {
  .top-search__header h2::before {
    width: 60px;
    height: 39px;
    margin-right: 10px;
  }
}

.school-search {
  margin-top: 60px;
}
@media (width < 767px) {
  .school-search {
    margin-top: 20px;
  }
}
.school-search__map {
  max-width: 860px;
  margin: auto;
}
@media (width < 767px) {
  .school-search__map {
    max-width: 100%;
  }
}
.school-search__svg {
  margin-top: 40px;
}
@media (width < 767px) {
  .school-search__svg {
    margin-top: 20px;
  }
}
.school-search__svg a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.school-search__svg a:hover {
  opacity: 0.7;
}
.school-search__area {
  max-width: 100%;
  margin: 60px auto 0;
}
@media (width < 767px) {
  .school-search__area {
    margin-top: 20px;
  }
}
.school-search__area--archive {
  background-color: #FFFBE8;
  margin: 40px auto 0;
  border-radius: 10px;
}
.school-search__area--archive.is-open {
  padding-bottom: 60px;
}
@media (width < 767px) {
  .school-search__area--archive {
    margin-top: 30px;
  }
}
.school-search__header {
  padding: 60px 40px;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (width < 767px) {
  .school-search__header {
    padding: 30px 15px;
  }
}
.school-search__header::after {
  background-image: url("../img/circle-arrow-closed.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 40%;
  right: 40px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.school-search__header.is-closed + .school-search__content {
  margin-bottom: 0;
}
.school-search__header.is-closed::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.school-search__header.is-open {
  /*			padding-bottom: 0;*/
}
.school-search__header.is-open + .school-search__content {
  margin-bottom: 20px;
}
.school-search__header.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.school-search__terms {
  background-color: #FFFBE8;
  padding: 40px;
  border-radius: 10px;
}
@media (width < 767px) {
  .school-search__terms {
    padding: 20px 10px 40px;
  }
}
.school-search__terms--archive {
  background-color: unset;
  padding: 0;
  border-radius: 0;
}
.school-search__title {
  font-size: 2.4rem;
  color: #214D80;
  text-align: center;
  line-height: 1;
}
@media (width < 767px) {
  .school-search__title {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.school-search__title::after {
  background-color: #E66363;
  display: block;
  content: "";
  width: 70px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
}
@media (width < 767px) {
  .school-search__title::after {
    width: 50px;
  }
}
.school-search__content {
  padding: 0 40px;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
@media (width < 767px) {
  .school-search__content {
    padding: 0 15px;
  }
}
.school-search__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.school-search__check {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
@media (width < 767px) {
  .school-search__check {
    row-gap: 20px;
  }
}
.school-search__check--top {
  margin-top: 60px;
}
@media (width < 767px) {
  .school-search__check--top {
    margin-top: 30px;
  }
}
.school-search__section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (width < 767px) {
  .school-search__section {
    display: block;
  }
}
.school-search__section h4 {
  font-size: 1.8rem;
  font-weight: 900;
  width: 20%;
}
@media (width < 767px) {
  .school-search__section h4 {
    font-size: 1.6rem;
    width: auto;
  }
}
.school-search__section label {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (width < 767px) {
  .school-search__section label {
    font-size: 1.6rem;
  }
}
.school-search__section input[type=checkbox] {
  margin: 0;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.school-search__district-options, .school-search__level-options, .school-search__day-options, .school-search__time-options, .school-search__keyword-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 20px;
  width: 80%;
}
@media (width < 767px) {
  .school-search__district-options, .school-search__level-options, .school-search__day-options, .school-search__time-options, .school-search__keyword-options {
    gap: 10px;
    width: auto;
    margin: 10px 10px;
  }
}
.school-search__freeword {
  background-color: #FFFBE8;
  margin-top: 80px;
  padding: 40px;
  border-radius: 10px;
}
@media (width < 767px) {
  .school-search__freeword {
    margin-top: 40px;
    padding: 15px;
  }
}
.school-search__freeword--archive {
  background-color: unset;
  padding: 0;
  border-radius: 0;
}
.school-search__freeword input[type=text] {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  width: 100%;
  height: 50px;
  padding: 0.8rem 2rem;
  border: 1px solid #214D80;
  border-radius: 50px;
}
.school-search__button-area {
  text-align: center;
}
.school-search__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
}
@media (width < 767px) {
  .school-search__box {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
  }
}
.school-search__box:hover input {
  border: 1px solid #CD2F3F;
}
.school-search__box:hover button {
  background-color: #CD2F3F;
}

/* フリーワード検索エリア */
.search-button {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #214D80;
  color: white;
  border-radius: 50px;
  border: none;
  width: 150px;
  height: 50px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
}
@media (width < 767px) {
  .search-button {
    font-size: 1.6rem;
    width: 80px;
  }
}
.search-button--term {
  width: 300px;
  margin: 40px auto 0;
  position: relative;
}
@media (width < 767px) {
  .search-button--term {
    width: 100%;
    margin-top: 20px;
  }
}
.search-button:hover {
  background-color: #CD2F3F;
}

.top-buttons {
  max-width: 900px;
  margin: 100px auto 0;
}
@media (width < 767px) {
  .top-buttons {
    max-width: 100%;
    margin: 40px 10px 0;
  }
}
.top-buttons__grid {
  display: grid;
  grid-template-areas: "first first" "second third";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 20px;
}
.top-buttons__grid > .top-buttons__item:nth-child(1) {
  grid-area: first;
}
.top-buttons__grid > .top-buttons__item:nth-child(2) {
  grid-area: second;
}
.top-buttons__grid > .top-buttons__item:nth-child(3) {
  grid-area: third;
}
@media (width < 767px) {
  .top-buttons__grid {
    grid-template-areas: "first" "second" "third";
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.top-buttons__url {
  background-color: #FFFFFF;
  color: #3E3A39 !important;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 30px;
}
@media (width < 767px) {
  .top-buttons__url {
    padding: 15px;
    border-radius: 20px;
  }
}
.top-buttons__url:hover {
  color: #FFFFFF !important;
}
.top-buttons__url::after {
  background: url("../img/circle-arrow-blue.svg") no-repeat center/100%;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
}
.top-buttons__url--kids {
  border: 2px solid #CD2F3F;
}
.top-buttons__url--kids::before {
  content: "";
  background: url("../img/icon-top-kids.svg") no-repeat center/100%;
  width: 54px;
  height: 54px;
  margin-right: 20px;
}
@media (width < 767px) {
  .top-buttons__url--kids::before {
    width: 39px;
    height: 39px;
    margin-right: 15px;
  }
}
.top-buttons__url--kids:hover {
  background-color: #CD2F3F;
}
.top-buttons__url--kids:hover::before {
  background-image: url("../img/icon-top-kids-hover.svg");
}
.top-buttons__url--educational {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 2px solid #46B89F;
}
@media (width < 767px) {
  .top-buttons__url--educational {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-buttons__url--educational::before {
  content: "";
  background: url("../img/icon-top-educational.svg") no-repeat center/100%;
  width: 62px;
  height: 52px;
  margin-right: 20px;
}
@media (width < 767px) {
  .top-buttons__url--educational::before {
    width: 40px;
    height: 34px;
    margin-right: 15px;
  }
}
.top-buttons__url--educational:hover {
  background-color: #46B89F;
}
.top-buttons__url--educational:hover::before {
  background-image: url("../img/icon-top-educational-hover.svg");
}
.top-buttons__url--link {
  border: 2px solid #0097E0;
}
.top-buttons__url--link::before {
  content: "";
  background: url("../img/icon-top-link.svg") no-repeat center/100%;
  width: 53px;
  height: 54px;
  margin-right: 20px;
}
@media (width < 767px) {
  .top-buttons__url--link::before {
    width: 32px;
    height: 33px;
    margin-right: 15px;
  }
}
.top-buttons__url--link:hover {
  background-color: #0097E0;
}
.top-buttons__url--link:hover::before {
  background-image: url("../img/icon-top-link-hover.svg");
}
.top-buttons__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (width < 767px) {
  .top-buttons__text {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.top-news {
  background-color: #FFFBE8;
  margin-top: 100px;
  padding: 100px 0;
}
@media (width < 767px) {
  .top-news {
    margin-top: 60px;
    padding: 40px 15px 60px;
  }
}
.top-news__header {
  text-align: center;
}
.top-news__header h2 {
  font-size: 3.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 767px) {
  .top-news__header h2 {
    font-size: 2.4rem;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.top-news__header h2::after {
  background: url("../img/icon-news.svg") no-repeat center/100%;
  display: inline-block;
  content: "";
  width: 155px;
  height: 95px;
}
@media (width < 767px) {
  .top-news__header h2::after {
    width: 70px;
    height: 43px;
  }
}
.top-news__content {
  max-width: 1040px;
  margin: 60px auto 0;
}
@media (width < 767px) {
  .top-news__content {
    margin-top: 20px;
  }
}
.top-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media (width < 767px) {
  .top-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (width < 400px) {
  .top-news__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.top-news__item {
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-news__link {
  color: #214D80;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-news__link:hover {
  color: #CD2F3F;
}
.top-news__image img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #E6EAEC;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-news__image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top-news__excerpt {
  margin-top: 20px;
}
@media (width < 767px) {
  .top-news__excerpt {
    margin-top: 10px;
  }
}
.top-news__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media (width < 767px) {
  .top-news__title {
    font-size: 1.4rem;
  }
}
.top-news__title--external::after {
  content: "（外部リンク）";
}
.top-news__archive {
  text-align: right;
  margin-top: 60px;
}
@media (width < 767px) {
  .top-news__archive {
    margin-top: 30px;
  }
}
.top-news__archive a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-news__archive a::after {
  background: url("../img/circle-arrow-red.svg") center/100%;
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
.top-news__archive a:hover {
  color: #CD2F3F;
}

.no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 0;
  font-size: 1.6rem;
  color: #214D80;
}/*# sourceMappingURL=style.css.map */