@charset "UTF-8";
/*
theme Name:Windmill English Centre
Theme URI:
Description:
*/
/*
2024/03/04更新 馬場
A (more) Modern CSS Reset
参考:https: //coliss.com/articles/build-websites/operation/css/css-reset-for-modern-browser.html

*/
/*----------------------- reset css ----------------------*/
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-style: normal;
  font-weight: 500;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 62.5%;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
}

a,
a:hover {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

body {
  font-family: Meiryo, "メイリオ", Hiragino Kaku Gothic ProN, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.1;
}

img {
  border-style: none;
}

/*----------- 記事内のcss ---------*/
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.content-text img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}

.content-text p {
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
  color: rgb(100, 100, 100);
}

/*----------- 記事内のcss ---------*/
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.content-text img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}

.content-text p {
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
  color: rgb(100, 100, 100);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=text] {
  border-radius: 0;
  outline: none;
  background: #fff;
  width: 100%;
}

input[type=radio]:checked + label {
  background: #ff0000;
}

input[type=checkbox]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #fff;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
  background-color: #fff;
}

select,
input,
textarea {
  max-width: 100%;
  padding: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border: solid 1px #d3d3d3;
  border-radius: 3px;
  font-family: sans-serif;
  font-size: 100%;
  color: #000;
}

/*----------------------- reset css ----------------------*/
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.inner,
.inner.flex {
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1120px) {
  .inner,
  .inner.flex {
    margin: 0 20px;
  }
}

.inner.flex {
  margin-top: 10rem;
}

.inner.another {
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1120px) {
  .inner.another {
    margin: 0 20px;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 800px) {
  .br-sp {
    display: block;
  }
}

.slider__scrollbar {
  margin-top: 16px;
  margin-bottom: 3rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__scrollbar::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider__btn {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 5px solid #294677;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0);
          box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0);
  cursor: pointer;
  margin-top: -7px;
}

input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.bg-tartan {
  background: transparent;
}

.btn-y,
.btn-w,
.btn-b {
  position: relative;
  max-width: 437px;
  width: 100%;
  margin: 0 auto;
}
.btn-y a,
.btn-w a,
.btn-b a {
  display: block;
  letter-spacing: 1.38px;
  color: #FFFFFF;
  font-size: 24px;
  background-color: #EF9C38;
  -webkit-box-shadow: 6px 6px 6px rgba(2, 0, 2, 0.5019607843);
          box-shadow: 6px 6px 6px rgba(2, 0, 2, 0.5019607843);
  border-radius: 42px;
  padding: 20px 30px;
  text-align: center;
}
@media (max-width: 800px) {
  .btn-y a,
  .btn-w a,
  .btn-b a {
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .btn-y {
    margin-bottom: 3rem;
  }
}

.btn-w a {
  color: #EF9C38;
  background-color: #fff;
}

.btn-b a {
  color: #1C68A7;
  background-color: #DAECF8;
}

.btn__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-top: 8rem;
}
@media (max-width: 800px) {
  .btn__group {
    display: block;
  }
}
.btn__group .btn-b-1,
.btn__group .btn-y-1 {
  position: relative;
  max-width: 475px;
  width: 100%;
  margin: 0 auto;
}
.btn__group .btn-b-1 a,
.btn__group .btn-y-1 a {
  display: block;
  letter-spacing: 3.2px;
  color: #1C68A7;
  font-size: 16px;
  background-color: #DAECF8;
  border-radius: 42px;
  padding: 20px 30px;
  text-align: center;
  position: relative;
}
.btn__group .btn-b-1 a i,
.btn__group .btn-y-1 a i {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn__group .btn-y-1 a {
  color: #FFFFFF;
  background-color: #EF9C38;
}

.btn-button-slim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 7px 7px 7px rgba(2, 0, 2, 0.2);
          box-shadow: 7px 7px 7px rgba(2, 0, 2, 0.2);
  background-color: #DAECF8;
  border-radius: 20px;
  color: #1C68A7;
  font-weight: 700;
  padding: 10px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 40px;
}
.btn-button-slim i {
  font-size: 24px;
}

.section--2__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  margin: 10px;
  border-bottom: 3px solid #1C68A7;
  margin-bottom: 3rem;
}
.section--2__title span {
  font-size: 24px;
  font-weight: 300;
  margin-left: 3rem;
}
.section--2__title.fb::before {
  content: "";
  background-image: url(img/home/fb.png);
  width: 73px;
  height: 73px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.section--2__title.line {
  padding-left: 1rem;
}
@media (max-width: 800px) {
  .section--2__title.line {
    padding-left: unset;
  }
}
.section--2__title.line::before {
  content: "";
  background-image: url(img/home/line.png);
  width: 50px;
  height: 50px;
  display: block;
  background-size: cover;
  background-position: center;
}

.c-title {
  text-align: center;
  letter-spacing: 3.6px;
  color: #1C68A7;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .c-title {
    font-size: 32px;
  }
}

.flag-title {
  text-align: center;
  letter-spacing: 3.6px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}
@media (max-width: 800px) {
  .flag-title {
    font-size: 32px;
  }
}
.flag-title::after {
  content: "";
  position: absolute;
  background-image: url(img/home/deco-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 287px;
  aspect-ratio: 574/645;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 800px) {
  .flag-title::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: -1;
  }
}

.title-border__blue {
  border-left: 5px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 20px;
  margin-bottom: 3rem;
}

.infection__message {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.86);
  padding: 60px;
}
@media (max-width: 800px) {
  .infection__message {
    padding: 30px;
  }
}
.infection__message h2 {
  border-left: 5px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
  font-size: 24px;
  padding: 10px 20px;
  margin-bottom: 2rem;
}
.infection__message p {
  color: #030000;
  line-height: 2;
}

.gradation-white {
  position: relative;
}
.gradation-white::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  opacity: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.gradation-white.is-open::after {
  opacity: 0;
}

.lesson-toggle {
  position: relative;
  width: 100%;
  height: 44px;
  margin: 20px 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lesson-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #1C68A7;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lesson-toggle span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1C68A7;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lesson-toggle span::before, .lesson-toggle span::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  -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;
}
.lesson-toggle span {
  /* 横線 */
}
.lesson-toggle span::before {
  width: 18px;
  height: 4px;
}
.lesson-toggle span {
  /* 縦線 */
}
.lesson-toggle span::after {
  width: 4px;
  height: 18px;
}
.lesson-toggle.is-open span::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.lesson-detail {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: height 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  transition: height 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  position: relative;
}
.lesson-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.lesson-detail.is-open {
  opacity: 1;
}
.lesson-detail.is-open::before {
  opacity: 0;
}
.lesson-detail.is-visible {
  overflow: visible;
}
@media (max-width: 800px) {
  .lesson-detail {
    padding-bottom: 10rem;
  }
}

.page-template-page-eikaiwa-lesson .flag-title {
  color: #1C68A7;
}
.page-template-page-eikaiwa-lesson .flag-title::before {
  content: "";
  position: absolute;
  background-image: url(img/page/no-picture.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 432px;
  height: 363px;
  left: -20rem;
  top: -5rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .flag-title::before {
    width: 30%;
    left: -2rem;
    top: 6rem;
  }
}
.page-template-page-eikaiwa-lesson .flag-title::after {
  right: -10rem;
}
.page-template-page-eikaiwa-lesson .btn-bb {
  letter-spacing: 2.08px;
  color: #FFFFFF;
  border-radius: 22px;
  background-color: #1C68A7;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 5rem;
  width: 50%;
  padding: 10px 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .btn-bb {
    width: 90%;
    padding: 10px 20px;
    font-size: 14px;
  }
}
.page-template-page-eikaiwa-lesson .line-k {
  width: 192px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15rem;
}
.page-template-page-eikaiwa-lesson .btn-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 10rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .btn-2col {
    display: block;
  }
}
.page-template-page-eikaiwa-lesson .btn-2col a {
  letter-spacing: 2.08px;
  color: #FFFFFF;
  background-color: #1C68A7;
  border-radius: 22px;
  padding: 10px 50px;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .btn-2col a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}
.page-template-page-eikaiwa-lesson .lesson-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .lesson-feature {
    display: block;
  }
}
.page-template-page-eikaiwa-lesson .lesson-feature img {
  width: 342px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-eikaiwa-lesson .lesson-feature p {
  letter-spacing: 0.8px;
  color: #030000;
  line-height: 2;
}
.page-template-page-eikaiwa-lesson .lesson-videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .lesson-videos {
    display: block;
  }
}
.page-template-page-eikaiwa-lesson .lesson-videos video {
  max-width: 347px;
  width: 100%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .lesson-videos video {
    margin-bottom: 3rem;
  }
}
.page-template-page-eikaiwa-lesson h4 {
  letter-spacing: 2.4px;
  color: #224F85;
  background-color: #DAECF8;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 5px 0;
  margin-top: 10rem;
}
.page-template-page-eikaiwa-lesson .testimonial {
  margin-top: 5rem;
  background-color: #FFFDE7;
  border-radius: 20px;
  width: 80%;
  position: relative;
  z-index: 10;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .testimonial {
    width: 100%;
  }
}
.page-template-page-eikaiwa-lesson .testimonial::after {
  content: "";
  position: absolute;
  background-image: url(img/page/no-img-1.png);
  height: 317px;
  width: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .testimonial::after {
    left: unset;
    right: 0;
    top: -20rem;
    -webkit-transform: unset;
            transform: unset;
    width: 40%;
  }
}
.page-template-page-eikaiwa-lesson .testimonial h5 {
  letter-spacing: 0.8px;
  text-align: center;
  padding-top: 5rem;
}
.page-template-page-eikaiwa-lesson .testimonial p {
  line-height: 2.5;
  padding: 40px;
  padding-bottom: 5rem;
  color: #030000;
}
.page-template-page-eikaiwa-lesson .testimonial p span {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='40' viewBox='0 0 20 40'%3E%3Ccircle cx='3' cy='39' r='1.2' fill='%231C68A7'/%3E%3Ccircle cx='10' cy='39' r='1.2' fill='%231C68A7'/%3E%3Ccircle cx='17' cy='39' r='1.2' fill='%231C68A7'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.page-template-page-eikaiwa-lesson .windmill-message {
  background-color: rgba(227, 241, 251, 0.86);
  border-radius: 20px;
  width: 80%;
  padding-top: 5rem;
  margin: -70px 0 0 auto;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .windmill-message {
    width: 90%;
    margin: -70px auto 0;
  }
}
.page-template-page-eikaiwa-lesson .windmill-message h5 {
  letter-spacing: 0.8px;
  text-align: center;
  padding-top: 5rem;
}
.page-template-page-eikaiwa-lesson .windmill-message p {
  line-height: 2.5;
  padding: 40px;
  padding-bottom: 5rem;
  color: #030000;
}
.page-template-page-eikaiwa-lesson .windmill-message p span {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='40' viewBox='0 0 20 40'%3E%3Ccircle cx='3' cy='39' r='1.2' fill='%231C68A7'/%3E%3Ccircle cx='10' cy='39' r='1.2' fill='%231C68A7'/%3E%3Ccircle cx='17' cy='39' r='1.2' fill='%231C68A7'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.page-template-page-eikaiwa-lesson .exam-point__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5rem;
}
.page-template-page-eikaiwa-lesson .exam-point__row .exam-point__label {
  letter-spacing: 0.8px;
  color: #FFFFFF;
  background-color: #1C68A7;
  border-radius: 15px;
  width: 100%;
  position: relative;
  color: #FFFFFF;
  padding: 5px 30px;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .exam-point__row .exam-point__label {
    padding: 10px 20px;
  }
}
.page-template-page-eikaiwa-lesson .exam-point__row .exam-point__label span {
  position: absolute;
  right: 0;
  letter-spacing: 0.8px;
  color: #030000;
  border-radius: 15px;
  background-color: #FFFFFF;
  display: block;
  width: 80%;
  padding: 5px 50px;
  top: -2px;
  right: -5px;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .exam-point__row .exam-point__label span {
    width: 60%;
    padding: 5px 30px;
    top: 0;
    right: -5px;
    font-size: 10px;
  }
}
.page-template-page-eikaiwa-lesson .img-right {
  position: relative;
}
.page-template-page-eikaiwa-lesson .img-right::after {
  content: "";
  position: absolute;
  background-image: url(img/page/no-img-4.png);
  height: 317px;
  max-width: 400px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 80%;
  top: 50%;
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .img-right::after {
    -webkit-transform: unset;
            transform: unset;
    width: 40%;
    left: 60%;
    top: -10rem;
  }
}

.lesson-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 5rem;
}
@media (max-width: 800px) {
  .lesson-point {
    display: block;
  }
}
.lesson-point--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.lesson-point .lesson-point__image {
  position: relative;
  width: 35%;
}
@media (max-width: 800px) {
  .lesson-point .lesson-point__image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lesson-point .lesson-point__image span {
  position: absolute;
  display: block;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  border-radius: 15px;
  background-color: #1C68A7;
  bottom: 0;
  right: 90%;
  width: 100%;
  padding: 5px 30px;
  z-index: 5;
  text-align: center;
}
@media (max-width: 800px) {
  .lesson-point .lesson-point__image span {
    width: 100%;
    position: static;
    padding: 10px 0;
    font-size: 12px;
  }
}
.lesson-point .lesson-point__image span.left-text {
  right: unset;
  left: 90%;
  width: 40%;
}
@media (max-width: 800px) {
  .lesson-point .lesson-point__image span.left-text {
    width: 100%;
  }
}
.lesson-point .lesson-point__image img {
  width: 342px;
  height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.lesson-point p {
  letter-spacing: 0.8px;
  color: #030000;
  line-height: 2;
  width: 65%;
}
@media (max-width: 800px) {
  .lesson-point p {
    width: 100%;
    margin-top: 3rem;
  }
}

.l-title {
  letter-spacing: 1.2px;
  color: #224F85;
}

.btn-lesson {
  border-radius: 22px;
  background-color: #1C68A7;
  letter-spacing: 2.08px;
  color: #FFFFFF;
  font-size: 20px;
  padding: 10px 90px;
  display: block;
  margin: 10rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 800px) {
  .btn-lesson {
    font-size: 16px;
    text-align: center;
    padding: 10px 70px;
    margin-top: 5rem;
  }
}

.contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.home .section--1 {
  padding-bottom: 8rem;
}
.home .section--1 h1 {
  position: relative;
  padding-top: 7rem;
}
.home .section--1 h1 img {
  width: 910px;
  display: block;
  margin: 0 auto;
  position: relative;
}
.home .section--1 h1::before {
  content: "";
  position: absolute;
  background-image: url(img/home/deco-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 321px;
  background-position: right;
  top: 50%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
.home .section--1 h2 {
  color: #fff;
  letter-spacing: 7.78px;
  font-size: 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 800px) {
  .home .section--1 h2 {
    font-size: 24px;
  }
}
.home .section--1 .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 800px) {
  .home .section--1 .btn-group .btn-y {
    margin-bottom: 2rem;
    margin-top: -3rem;
  }
}
.home .section--2 {
  padding: 5rem 0 8rem;
}
@media (max-width: 800px) {
  .home .section--2 {
    padding: 5rem 0;
  }
}
.home .section--2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 800px) {
  .home .section--2 .inner {
    display: block;
  }
}
.home .section--2 .inner .section--2__content {
  width: 50%;
}
@media (max-width: 800px) {
  .home .section--2 .inner .section--2__content {
    width: 100%;
  }
}
.home .section--2 .inner .section--2__content ul {
  height: 605px;
  overflow-y: auto;
  min-height: 0;
}
@media (max-width: 800px) {
  .home .section--2 .inner .section--2__content ul {
    height: 350px;
  }
}
.home .section--2 .inner .section--2__content ul .post-item__date {
  color: #000;
}
.home .section--2 .inner .section--2__content ul .post-item__excerpt {
  color: #000;
}
.home .section--2 .inner .section--2__content .post-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin: 10px;
}
.home .section--2 .inner .section--2__content .post-item__link figure img {
  width: 90px;
  height: 90px;
  max-width: unset;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section--2 .inner .section--2__content .post-item__link .post-item__content {
  font-size: 14px;
  line-height: 22px;
}
.home .section--2 .inner .section--2__content .section--2__sub .btn-b {
  text-align: center;
}
.home .section--2 .inner .section--2__content .section--2__sub .btn-b a {
  letter-spacing: 0.85px;
  color: #1C68A7;
  display: block;
  -webkit-box-shadow: 3px 3px 3px rgba(2, 0, 2, 0.2);
          box-shadow: 3px 3px 3px rgba(2, 0, 2, 0.2);
  border-radius: 24px;
  background-color: #DAECF8;
  text-align: center;
  padding: 10px 0;
  max-width: 432px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3rem;
  font-size: 16px;
}
@media (max-width: 800px) {
  .home .section--2 .inner .section--2__content .section--2__sub .btn-b a {
    width: 95%;
  }
}
.home .section--3 {
  padding: 10rem 0;
}
.home .section--3 > img {
  display: block;
  margin: 0 auto;
  padding-top: 10rem;
}
.home .section--3 .section--3__content {
  background-color: #fff;
  border: 4px solid #CF946E;
  border-radius: 20px;
  margin-top: 7rem;
}
.home .section--3 .section--3__content h2 {
  letter-spacing: 3.6px;
  color: #1C68A7;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 6rem;
  margin-top: 5rem;
}
@media (max-width: 800px) {
  .home .section--3 .section--3__content h2 {
    font-size: 32px;
  }
}
.home .section--3 .section--3__content h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 3.92px;
  color: #000000;
  font-size: 48px;
}
@media (max-width: 800px) {
  .home .section--3 .section--3__content h3 {
    font-size: 24px;
  }
}
.home .section--3 .section--3__content h3::before {
  content: "";
  display: block;
  background-image: url(img/home/logo-flag.png);
  width: 40px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 25px;
}
@media (max-width: 800px) {
  .home .section--3 .section--3__content h3::before {
    margin-right: 15px;
  }
}
.home .section--3 .section--3__content p {
  letter-spacing: 1.09px;
  color: #000000;
  font-size: 20px;
  font-weight: 300;
  padding: 50px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .section--3 .section--3__content .btn-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .section--3 .section--3__content .btn-3 a {
  letter-spacing: 2.08px;
  color: #FFFFFF;
  padding: 10px 20px;
  display: block;
  border-radius: 22px;
  background-color: #1C68A7;
  max-width: 287px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.home .section--3 .section--3__content .text-s {
  letter-spacing: 0.89px;
  font-size: 16px;
}
.home .section--3 .section--3__content img {
  margin-bottom: 2rem;
}
.home .section--4 {
  padding: 8rem 0;
}
@media (max-width: 800px) {
  .home .section--4 {
    padding-bottom: unset;
  }
}
.home .section--4 .c-title-2 {
  -webkit-box-shadow: 6px 6px 6px rgba(2, 0, 2, 0.5019607843);
          box-shadow: 6px 6px 6px rgba(2, 0, 2, 0.5019607843);
  border-radius: 42px;
  font-size: 24px;
  background-color: #EF9C38;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 0;
  max-width: 437px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 1.38px;
  color: #FFFFFF;
  margin-top: 8rem;
  margin-bottom: 7rem;
}
.home .section--4 .c-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-bottom: 9rem;
}
@media (max-width: 800px) {
  .home .section--4 .c-list {
    display: block;
  }
}
.home .section--4 .c-list .c-list__item {
  background-image: url(img/home/green-bg.png);
  background-repeat: no-repeat;
  width: 346px;
  height: 581px;
  background-size: contain;
  background-position: center;
  position: relative;
  margin: 0 auto;
}
.home .section--4 .c-list .c-list__item::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-image: url(img/home/c-title--bg-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 315px;
  height: 156px;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  color: #fff;
}
.home .section--4 .c-list .c-list__item:nth-of-type(2)::before {
  background-image: url(img/home/c-title--bg-2.png);
}
.home .section--4 .c-list .c-list__item:nth-of-type(3)::before {
  background-image: url(img/home/c-title--bg-3.png);
}
.home .section--4 .c-list .c-list__item h3 {
  letter-spacing: 3.1px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 8rem;
}
@media (max-width: 800px) {
  .home .section--4 .c-list .c-list__item h3 {
    padding-top: 8rem;
  }
}
.home .section--4 .c-list .c-list__item p {
  font-size: 12px;
  letter-spacing: 0.9px;
  color: #FFFFFF;
  padding: 10px 35px 0;
  height: 140px;
  line-height: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.home .section--4 .c-list .c-list__item p:nth-of-type(2) {
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 35px 5px;
  line-height: 1.5;
  height: unset;
}
.home .section--4 .c-list .c-list__item img {
  width: 310px;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
.home .section--4 .btn-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-bottom: 4rem;
}
@media (max-width: 800px) {
  .home .section--4 .btn-section {
    display: block;
  }
}
@media (max-width: 800px) {
  .home .section--4 .btn-section .btn-b {
    margin-bottom: 2rem;
  }
}
.home .section--4 .c-three-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  margin: 12rem 0px 17rem;
}
@media (max-width: 800px) {
  .home .section--4 .c-three-col {
    display: block;
    margin: unset;
  }
}
@media (max-width: 800px) {
  .home .section--4 .c-three-col h2 {
    margin-top: unset;
  }
}
.home .section--4 .c-three-col::before, .home .section--4 .c-three-col::after {
  content: "";
  position: absolute;
  display: block;
  background-size: contain;
}
@media (max-width: 800px) {
  .home .section--4 .c-three-col::before, .home .section--4 .c-three-col::after {
    position: static;
  }
}
.home .section--4 .c-three-col::before {
  background-image: url(img/header/character.png);
  background-repeat: no-repeat;
  width: 267px;
  height: 261px;
  left: 0;
  top: 0;
}
@media (max-width: 800px) {
  .home .section--4 .c-three-col::before {
    max-width: 267px;
    width: 40%;
    background-position: bottom;
    height: 150px;
  }
}
.home .section--4 .c-three-col::after {
  background-image: url(img/home/photograph-1.png);
  background-repeat: no-repeat;
  width: 446px;
  height: 365px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .home .section--4 .c-three-col::after {
    -webkit-transform: unset;
            transform: unset;
    max-width: 100%;
    margin: 0 auto;
  }
}
.home .section--4 .c-three-col h2 {
  text-align: center;
  letter-spacing: 3.91px;
  font-size: 40px;
  font-weight: 700;
  margin-right: 15rem;
}
@media (max-width: 800px) {
  .home .section--4 .c-three-col h2 {
    font-size: 32px;
    margin-right: unset;
  }
}
.home .section--5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.home .section--5 .section--5__content {
  background-color: #fff;
  border: 4px solid #CF946E;
  border-radius: 20px;
  padding-bottom: 5rem;
}
.home .section--5 .section--5__content h2 {
  text-align: center;
  font-weight: 700;
  font-size: 56px;
  margin-top: 5rem;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content h2 {
    font-size: 32px;
  }
}
.home .section--5 .section--5__content h2 span {
  font-size: 40px;
  letter-spacing: 8.8px;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content h2 span {
    font-size: 24px;
  }
}
.home .section--5 .section--5__content .section--5__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5rem;
  position: relative;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body {
    display: block;
  }
}
.home .section--5 .section--5__content .section--5__body::before {
  content: "";
  display: block;
  position: absolute;
  width: 417px;
  height: 331px;
  background-image: url(img/home/photograph-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -5rem;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body::before {
    position: static;
    background-position: center;
    width: 100%;
  }
}
.home .section--5 .section--5__content .section--5__body .section--5__box {
  width: 70%;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body .section--5__box {
    width: 100%;
  }
}
.home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card {
    display: block;
  }
}
.home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card img {
  width: 206px;
  height: 110px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card img {
    margin: 0 auto;
  }
}
.home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card h3 {
  font-size: 36px;
  color: #231815;
  letter-spacing: 2.87px;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card h3 {
    font-size: 24px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.home .section--5 .section--5__content .section--5__body .section--5__box .section--5__card h3 span {
  color: #003D79;
}
.home .section--5 .section--5__content .section--5__body .section--5__box p {
  letter-spacing: 2.81px;
  font-size: 24px;
  text-align: center;
  margin: 3rem 0;
}
@media (max-width: 800px) {
  .home .section--5 .section--5__content .section--5__body .section--5__box p {
    font-size: 12px;
  }
}
.home .section--5 .section--5__content .section--5__body .section--5__box .btn-b {
  margin: 0 auto;
  width: 80%;
}

.page-template-page-school-overview .section--1 {
  padding-bottom: 14rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .btn__group {
    padding-top: 4rem;
  }
}
.page-template-page-school-overview .section--1 .btn__group .btn-y-1 {
  padding-bottom: 2rem;
}
.page-template-page-school-overview .section--1 .flag-title {
  margin-top: 12rem;
  margin-bottom: 15rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .flag-title {
    margin-bottom: 30rem;
  }
}
.page-template-page-school-overview .section--1 .content-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  padding: 42px 0;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .content-group {
    display: block;
    padding-top: 20rem;
  }
}
.page-template-page-school-overview .section--1 .content-group .content-image {
  position: relative;
  max-width: 363px;
  width: 100%;
}
.page-template-page-school-overview .section--1 .content-group .content-image img {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .content-group .content-image img {
    top: unset;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.page-template-page-school-overview .section--1 .content-group .content-body {
  width: 70%;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .content-group .content-body {
    width: 100%;
  }
}
.page-template-page-school-overview .section--1 .content-group .content-body h3 {
  font-size: 24px;
  margin-bottom: 2rem;
  border-left: 5px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
  padding-left: 4rem;
  padding-bottom: 1rem;
  line-height: 1.7;
  width: 80%;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .content-group .content-body h3 {
    margin: 20px auto;
  }
}
.page-template-page-school-overview .section--1 .content-group .content-body p {
  color: #030000;
  letter-spacing: 0.8px;
  line-height: 1.7;
  padding-left: 2rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--1 .content-group .content-body p {
    padding: 0 15px;
  }
}
.page-template-page-school-overview .section--2 {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
.page-template-page-school-overview .section--2 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
  color: #030000;
  margin: 0 auto;
  width: 70%;
  margin-top: 5rem;
  margin-bottom: 5rem;
  border-left: 5px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
  padding: 10px 20px;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--2 dl {
    gap: 10px;
    width: 90%;
  }
}
.page-template-page-school-overview .section--2 dl:last-child {
  padding-bottom: 10rem;
  position: relative;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--2 dl:last-child {
    display: block;
  }
}
.page-template-page-school-overview .section--2 dl:last-child dt {
  width: unset;
  margin-bottom: 10px;
}
.page-template-page-school-overview .section--2 dl:last-child .btn-button-slim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-box-shadow: 7px 7px 7px rgba(2, 0, 2, 0.2);
          box-shadow: 7px 7px 7px rgba(2, 0, 2, 0.2);
  background-color: #DAECF8;
  border-radius: 20px;
  color: #1C68A7;
  font-weight: 700;
  width: 60%;
  padding: 10px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-page-school-overview .section--2 dl dt {
  width: 20%;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--2 dl dt {
    width: 10%;
  }
}
.page-template-page-school-overview .section--2 dl dd {
  width: 50%;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--2 dl dd {
    width: 100%;
  }
}
.page-template-page-school-overview .section--3 {
  padding-top: 15rem;
  padding-bottom: 10rem;
}
.page-template-page-school-overview .section--3 .flag-title {
  margin-bottom: 14rem;
}
.page-template-page-school-overview .section--4 {
  padding: 5rem 0;
}
.page-template-page-school-overview .section--4 .inner__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8rem;
}
.page-template-page-school-overview .section--4 .inner__col:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-template-page-school-overview .section--4 .inner__col img {
  width: 380px;
  height: 259px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-school-overview .section--4 .inner__col .message__content {
  width: 60%;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--4 .inner__col .message__content {
    width: unset;
  }
}
.page-template-page-school-overview .section--4 .inner__col .message__content p {
  letter-spacing: 1.6px;
  color: #030000;
  line-height: 2;
}
.page-template-page-school-overview .section--4 .inner__col .message__content p span {
  display: block;
  font-size: 12px;
}
.page-template-page-school-overview .section--4 .btn__group {
  padding-top: unset;
  padding-bottom: 3rem;
}
.page-template-page-school-overview .section--4 .btn__group .btn-b-1,
.page-template-page-school-overview .section--4 .btn__group .btn-y-1 {
  margin-bottom: 2rem;
}
.page-template-page-school-overview .section--4 .btn__group .btn-b-1 a,
.page-template-page-school-overview .section--4 .btn__group .btn-y-1 a {
  letter-spacing: 0.8px;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--4 .btn__group .btn-b-1 a,
  .page-template-page-school-overview .section--4 .btn__group .btn-y-1 a {
    font-size: 12px;
  }
}
.page-template-page-school-overview .section--4 .btn__group .btn-b-1 a i,
.page-template-page-school-overview .section--4 .btn__group .btn-y-1 a i {
  right: 2rem;
}
.page-template-page-school-overview .section--4 .btn__group .btn-y-1 a {
  letter-spacing: 3.2px;
}
.page-template-page-school-overview .section--5 {
  padding-top: 15rem;
}
.page-template-page-school-overview .section--5 .flag-title {
  margin-bottom: 12rem;
}
.page-template-page-school-overview .section--5 .disclosure-content {
  padding: 50px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.86);
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content {
    padding: 20px;
  }
}
.page-template-page-school-overview .section--5 .disclosure-content p {
  color: #030000;
  margin-bottom: 10rem;
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files {
  width: 872px;
  max-width: 100%;
  border: 3px solid #CF946E;
  border-radius: 16px;
  background-color: #FFFFFF;
  margin: 0 auto;
  padding: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 2;
  position: relative;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files {
    padding: 20px;
  }
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files::before, .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 363px;
  background-image: url(img/page/photograph-8.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: -35rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files::before, .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files::after {
    width: 50%;
    top: -7rem;
    left: -4rem;
  }
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files::after {
  top: unset;
  left: unset;
  background-image: url(img/page/photograph-9.png);
  bottom: 0;
  background-position: right;
  right: -32rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files::after {
    bottom: -20rem;
    right: -4rem;
  }
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__1,
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 {
  margin-bottom: 7rem;
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__1 h3,
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 h3 {
  text-align: center;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-size: 24px;
  border-bottom: 1px solid #1C68A7;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__1 p,
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 p {
  letter-spacing: 0.8px;
  color: #030000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 .left-m {
  margin-top: 5rem;
  margin-left: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 .left-m {
    margin-left: unset;
  }
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 .files__2__inner span {
  display: block;
  font-weight: 700;
  font-size: 24px;
  color: #1C68A7;
  letter-spacing: 1.2px;
  margin-left: 6rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 .files__2__inner span {
    margin-left: unset;
  }
}
.page-template-page-school-overview .section--5 .disclosure-content .disclosure-files .files__2 .files__2__inner .u {
  margin-top: unset;
}
.page-template-page-school-overview .section--5 .disclosure-content .block-position a {
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-school-overview .section--5 .disclosure-content .block-position a {
    padding: 10px 15px;
    margin: unset;
    margin-bottom: 3rem;
    font-size: 10px;
  }
}

.page-template-page-shuttle-service .section--1 {
  padding-top: 15rem;
  padding-bottom: 10rem;
}
.page-template-page-shuttle-service .section--1 .flag-title {
  margin-bottom: 15rem;
}
.page-template-page-shuttle-service .section--1 .infection__message p {
  color: #1C68A7;
  padding: 40px;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--1 .infection__message p {
    padding: unset;
  }
}
.page-template-page-shuttle-service .section--2 {
  padding: 10rem 0;
}
.page-template-page-shuttle-service .section--2 .transport-table {
  border: 4px solid #CF946E;
  border-radius: 17px;
  background-color: #FFFDE7;
  padding: 70px;
  position: relative;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table {
    padding: 20px 0;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table table {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table table tbody tr.b-t {
    margin-bottom: 5rem;
    display: block;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table table tbody tr td {
  color: #224F85;
  background-color: #fff;
  padding: 20px;
  vertical-align: middle;
  text-align: center;
  letter-spacing: 1px;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table table tbody tr td {
    display: block;
    width: 90%;
    text-align: left;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table table tbody tr td.d1 {
  background-color: #DAECF8;
  letter-spacing: 3.2px;
}
.page-template-page-shuttle-service .section--2 .transport-table table tbody tr td.d2 {
  background-color: #FBF6BA;
}
.page-template-page-shuttle-service .section--2 .transport-table table tbody tr td.d3 .d3__1 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.page-template-page-shuttle-service .section--2 .transport-table table tbody tr td.d3 .d3__2 {
  font-size: 28px;
  letter-spacing: 1.4px;
  font-weight: 700;
}
.page-template-page-shuttle-service .section--2 .transport-table > p {
  letter-spacing: 0.8px;
  color: #000000;
  text-align: center;
  margin-bottom: 10rem;
}
.page-template-page-shuttle-service .section--2 .transport-table .title-picture-1,
.page-template-page-shuttle-service .section--2 .transport-table .title-picture-2 {
  letter-spacing: 0.8px;
  color: #FFFFFF;
  border-radius: 15px;
  background-color: #1C68A7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  margin-left: -12rem;
  width: 35%;
  text-align: right;
  position: relative;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-1,
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-2 {
    margin-left: unset;
    width: 90%;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table .title-picture-1::before,
.page-template-page-shuttle-service .section--2 .transport-table .title-picture-2::before {
  content: "";
  position: absolute;
  background-image: url(img/page/photograph-10.png);
  width: 100%;
  height: 363px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -17rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-1::before,
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-2::before {
    width: 25%;
    left: -2rem;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
@media (max-width: 640px) {
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-1::before,
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-2::before {
    width: 50%;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table .title-picture-2 {
  text-align: left;
  margin-left: unset;
  margin: 0 0 0 auto;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-2 {
    margin: 5rem 0 0 auto;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table .title-picture-2::before {
  background-image: url(img/page/photograph-11.png);
  right: -17rem;
  background-position: right;
  left: unset;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .title-picture-2::before {
    right: -2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.page-template-page-shuttle-service .section--2 .transport-table ul {
  letter-spacing: 0.8px;
  color: #000000;
  width: 90%;
  margin: 0 auto;
  line-height: 2;
  margin: 5rem auto;
}
.page-template-page-shuttle-service .section--2 .transport-table ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
.page-template-page-shuttle-service .section--2 .transport-table ul li span {
  letter-spacing: 0.8px;
  color: #1C68A7;
  margin-right: 5px;
}
.page-template-page-shuttle-service .section--2 .transport-table .text-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .text-2col {
    display: block;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table .text-2col a {
  display: block;
  text-align: center;
}
.page-template-page-shuttle-service .section--2 .transport-table > img {
  width: 192px;
  margin: 0 auto;
  margin-top: 10rem;
  display: block;
  margin-bottom: 10rem;
}
.page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px;
}
.page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t img {
  max-width: 279px;
  width: 33%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t img {
    width: 50%;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t p {
  width: 25%;
  height: 209px;
  letter-spacing: 0.8px;
  color: #0054A6;
  background-color: #DAECF8;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t p {
    width: 100%;
    height: unset;
  }
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t.no-2 .i-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t.no-2 .i-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .three-col-p-t.no-2 p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.page-template-page-shuttle-service .section--2 .transport-table .character {
  position: absolute;
  width: 100%;
  max-width: 308px;
  right: 100%;
  bottom: 0;
}
@media (max-width: 800px) {
  .page-template-page-shuttle-service .section--2 .transport-table .character {
    width: 40%;
    right: unset;
    left: 0;
    bottom: -20rem;
  }
}

.page-template-page-eikaiwa-lesson .section--1 {
  padding: 10rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--1 {
    padding: 5rem 0;
  }
}
.page-template-page-eikaiwa-lesson .section--1 .btn__group {
  padding-top: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--1 .btn__group .btn-y-1 {
    margin-bottom: 2rem;
  }
}
.page-template-page-eikaiwa-lesson .section--2 {
  padding: 15rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--2 {
    padding: 15rem 0 0;
  }
}
.page-template-page-eikaiwa-lesson .section--2 article {
  margin-bottom: 25rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--2 article {
    margin: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--2 #preschool::before {
  background-image: url(img/page/01.png);
}
.page-template-page-eikaiwa-lesson .section--2 #junior-high-school-student::before {
  background-image: url(img/page/1-2.png);
}
.page-template-page-eikaiwa-lesson .section--2 #adult::before {
  background-image: url(img/page/04.png);
}
.page-template-page-eikaiwa-lesson .section--2 #elementary-school-student::before {
  background-image: url(img/page/1-1.png);
}
.page-template-page-eikaiwa-lesson .section--2 .a-01::after {
  background-image: url(img/page/2-01.png);
}
.page-template-page-eikaiwa-lesson .a-02::after {
  background-image: url(img/page/2-02.png);
}
.page-template-page-eikaiwa-lesson .a-03::after {
  background-image: url(img/page/2-03.png);
}
.page-template-page-eikaiwa-lesson .a-04::after {
  background-image: url(img/page/2-04.png);
}
.page-template-page-eikaiwa-lesson .a-05::after {
  background-image: url(img/page/2-05.png);
}
.page-template-page-eikaiwa-lesson .a-06::after {
  background-image: url(img/page/2-06.png);
}
.page-template-page-eikaiwa-lesson .a-07::after {
  background-image: url(img/page/2-07.png);
}
.page-template-page-eikaiwa-lesson .a-08::after {
  background-image: url(img/page/2-08.png);
}
.page-template-page-eikaiwa-lesson .img-right::after {
  background-image: url(img/page/2-10.png);
}
.page-template-page-eikaiwa-lesson .bg-tartan {
  padding: 8rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .bg-tartan {
    padding: 5rem 0;
  }
}
.page-template-page-eikaiwa-lesson .section--3 {
  padding: 20rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 {
    padding-top: 1rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .flag-title {
  margin-bottom: 15rem;
}
.page-template-page-eikaiwa-lesson .section--3 .flag-title::before {
  background-image: url(img/page/05.png);
}
.page-template-page-eikaiwa-lesson .section--3 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 22rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1C68A7;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 dl {
    margin: unset;
    margin-bottom: 3rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 dl dt {
  width: 40%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 dl dt {
    width: 100%;
  }
}
.page-template-page-eikaiwa-lesson .section--3 dl dt img {
  width: 181px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-page-eikaiwa-lesson .section--3 dl dt img.img-1 {
  width: 181px;
  height: 42px;
}
.page-template-page-eikaiwa-lesson .section--3 dl dt img.img-2 {
  width: 154px;
  height: 49px;
}
.page-template-page-eikaiwa-lesson .section--3 dl dt img.img-3 {
  width: 130px;
  height: 78px;
}
.page-template-page-eikaiwa-lesson .section--3 dl dt img.img-4 {
  width: 121px;
  height: 47px;
}
.page-template-page-eikaiwa-lesson .section--3 dl dt img.img-5 {
  width: 101px;
  height: 79px;
}
.page-template-page-eikaiwa-lesson .section--3 dl dd {
  width: 60%;
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #224F85;
  font-weight: 700;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 dl dd {
    font-size: 16px;
    width: 100%;
  }
}
.page-template-page-eikaiwa-lesson .section--3 h2 {
  margin-top: 15rem;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point {
  gap: 4rem;
  margin: 40px;
  margin-bottom: 7rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .lesson-point {
    margin: 10px;
    margin-bottom: 10rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .lesson-point__image {
  max-width: 342px;
  width: 100%;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .lesson-point__image span {
  padding: 5px 40px;
  width: 140%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .lesson-point .lesson-point__image span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    padding: 10px 10px;
    margin-top: 2rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .lesson-point__image img {
  width: 342px;
  display: block;
  margin: 0 auto;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .top-text {
  margin-bottom: 4rem;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point {
  width: 70%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point {
    width: 100%;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point img {
  width: 266px;
  height: 61px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point img {
    margin: 0 auto;
    margin-top: 2rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point img.img-6 {
  width: 207px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point img.img-7 {
  width: 168px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-point .exam-point p {
  width: 100%;
}
.page-template-page-eikaiwa-lesson .section--3 .exam-point__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .exam-point__gallery {
    gap: 2rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .exam-point__gallery .exam-point__item {
  max-width: 342px;
  width: 100%;
}
.page-template-page-eikaiwa-lesson .section--3 .exam-point__gallery .exam-point__item img {
  width: 342px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-page-eikaiwa-lesson .section--3 .exam-point__gallery .exam-point__item p {
  letter-spacing: 0.8px;
  color: #030000;
  margin-top: 1rem;
  line-height: 2;
  height: 15rem;
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial-wrapper {
  position: relative;
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial-wrapper h6 {
  position: absolute;
  left: 70%;
  top: 70%;
  letter-spacing: 0.8px;
  color: #fff;
  background-color: #1C68A7;
  border-radius: 15px;
  padding: 5px 12px;
  text-align: center;
  z-index: 1;
  padding: 5px 60px;
  text-align: right;
  z-index: 1;
  width: 20%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .testimonial-wrapper h6 {
    position: static;
    text-align: center;
    padding: 5px 0;
    width: 100%;
    margin-bottom: 45rem;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra,
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1 {
  position: relative;
  z-index: 2;
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra::after,
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1::after {
  content: "";
  position: absolute;
  background-image: url(img/page/media.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 317px;
  left: 105%;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .testimonial.ra::after,
  .page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1::after {
    left: 50%;
    top: 103%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra h5,
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra p,
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1 h5,
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1 p {
  position: relative;
  z-index: 3;
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1::after {
  background-image: url(img/page/photograph-16.png);
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-1::after {
    left: 60%;
    top: 97%;
    width: 45%;
    -webkit-transform: unset;
            transform: unset;
    display: block;
    z-index: 10;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .testimonial.ra-2::after {
  display: none;
}
.page-template-page-eikaiwa-lesson .section--3 .windmill-message.raa-1 {
  position: relative;
}
.page-template-page-eikaiwa-lesson .section--3 .windmill-message.raa-1::after {
  content: "";
  position: absolute;
  background-image: url(img/page/photograph-17.png);
  height: 317px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  right: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .windmill-message.raa-1::after {
    right: unset;
    left: -20px;
    top: 95%;
    width: 50%;
    -webkit-transform: unset;
            transform: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .lesson-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-price .lesson-price__info {
  width: 70%;
  border: 3px solid #CF946E;
  border-radius: 17px;
  background-color: #FFFFFF;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--3 .lesson-price .lesson-price__info {
    width: 100%;
  }
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-price .lesson-price__info p {
  letter-spacing: 0.8px;
  color: #000000;
  margin: 50px;
  line-height: 2.5;
}
.page-template-page-eikaiwa-lesson .section--3 .lesson-price img {
  width: 400px;
}
.page-template-page-eikaiwa-lesson .section--4 {
  padding: 20rem 0;
}
.page-template-page-eikaiwa-lesson .section--4 .flag-title::before {
  background-image: url(img/page/06.png);
}
.page-template-page-eikaiwa-lesson .section--4 article {
  padding-top: 10rem;
}
.page-template-page-eikaiwa-lesson .section--4 .business-text {
  letter-spacing: 0.8px;
  color: #030000;
  margin-top: 5rem;
  margin-left: 8rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--4 .business-text {
    margin-left: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 {
  padding: 20rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 {
    padding: 20rem 0 0;
  }
}
.page-template-page-eikaiwa-lesson .section--5 h4 {
  margin: 5rem 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 h4 {
    font-size: 16px;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .flag-title::before {
  background-image: url(img/page/07.png);
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap {
  position: relative;
  border: none;
  border-radius: 17px;
  background-color: #FFFDE7;
  padding: 50px;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap {
    padding: 20px;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #CF946E;
  border-radius: 17px;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .photo {
  position: absolute;
  width: 400px;
  left: 82%;
  top: 50%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .photo {
    width: 35%;
    left: 70%;
    top: -5rem;
    -webkit-transform: unset;
            transform: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .character {
  position: absolute;
  width: 308px;
  right: 100%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .character {
    width: 25%;
    left: 0;
    right: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .block-center {
  width: calc(100% - 170px);
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .block-center {
    width: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row {
    display: block;
    margin-bottom: 5rem;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row p {
  color: #224F85;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row span {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row h3 {
  position: absolute;
  top: 10px;
  letter-spacing: 0.6px;
  color: #224F85;
  background-color: #E6E6E6;
  width: 90%;
  left: 50%;
  z-index: 10;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 0;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row strong {
  letter-spacing: 1.4px;
  color: #224F85;
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .lesson-price-title {
  background-color: #DAECF8;
  max-width: 188px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .lesson-price-title {
    max-width: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .lesson-price-title p {
  letter-spacing: 0.8px;
  font-size: 16px;
  line-height: 1.8;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .lesson-price-title .private-1 {
  line-height: 1.5;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 340px;
  width: 100%;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big {
    max-width: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card__inner {
  background-color: #fff;
  max-width: 170px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 50%;
  padding-top: 1rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card__inner {
    max-width: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card__inner.sp-inner {
  width: 100%;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card--recommend {
  background-color: #FBF6BA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card--recommend {
    width: 50%;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card--recommend .border-m {
  letter-spacing: 0.7px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  background-color: #EF9C38;
  padding: 3px 15px;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .big .lesson-price-card--recommend strong {
  margin-top: -1rem;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .lesson-price-card {
  background-color: #fff;
  max-width: 170px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 1rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .lesson-price-row .lesson-price-card {
    max-width: unset;
    padding-top: 3rem;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular .big .lesson-price-card__inner {
  padding: 1rem 0;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular .big .lesson-price-card--recommend {
  padding: 1rem 0;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular-1 {
  position: relative;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular-1 .big .lesson-price-card__inner {
  padding: 2.6rem 0;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular-1 h2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  right: 0;
  letter-spacing: 0.8px;
  color: #000000;
  text-align: center;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular-1 h2 {
    position: relative;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 0;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .irregular-2 .big .lesson-price-card__inner {
  padding: 1.6rem 0;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap ul {
  margin-left: 15rem;
  margin-top: 5rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap ul {
    margin-left: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap ul li {
  letter-spacing: 0.8px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
  line-height: 2;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap ul li span {
  color: #1C68A7;
  margin-right: 2rem;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-table-wrap .p-text {
  letter-spacing: 0.8px;
  color: #000000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 5rem;
}
.page-template-page-eikaiwa-lesson .section--5 .title-border__blue {
  margin-top: 5rem;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-point {
  position: relative;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-point h2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  text-align: center;
  width: 70%;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #1C68A7;
  background-color: #D6E8F5;
  padding: 10px;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-point h2 {
    z-index: 10;
    width: 95%;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-point p {
  width: 70%;
  padding-left: 2rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-point p {
    width: 100%;
    padding-left: unset;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-point p span {
  color: #C1272D;
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-point--reverse h2 {
  left: 0;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .lesson-point--reverse h2 {
    z-index: 10;
    width: 95%;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.page-template-page-eikaiwa-lesson .section--5 .lesson-point--reverse p {
  margin-bottom: -10rem;
}
.page-template-page-eikaiwa-lesson .section--5 .plan-text {
  padding-top: 5rem;
  letter-spacing: 0.8px;
  color: #000000;
  padding-left: 2rem;
}
@media (max-width: 800px) {
  .page-template-page-eikaiwa-lesson .section--5 .plan-text {
    padding-left: unset;
    padding-top: 10rem;
  }
}
.page-template-page-eikaiwa-lesson .section--5 .messes-e {
  margin-top: 5rem;
}
.page-template-page-eikaiwa-lesson .section--5 .messes-e h3 {
  letter-spacing: 0.8px;
  color: #1C68A7;
  font-weight: 700;
  background-color: #D6E8F5;
  text-align: center;
  padding: 10px;
  margin-bottom: 4rem;
}
.page-template-page-eikaiwa-lesson .section--5 .messes-e p {
  letter-spacing: 0.8px;
  color: #000000;
  margin-bottom: 5rem;
}
.page-template-page-eikaiwa-lesson .section--5 .messes-e span {
  letter-spacing: 0.8px;
  color: #000000;
  text-align: right;
  display: block;
}

.page-template-page-study-abroad-homestay .section--1 {
  padding-top: 15rem;
  padding-bottom: 5rem;
}
.page-template-page-study-abroad-homestay .section--1 .flag-title {
  color: #FFFFFF;
}
.page-template-page-study-abroad-homestay .section--1 .flag-title::before {
  content: "";
  position: absolute;
  background-image: url(img/page/photograph-19.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 432px;
  height: 363px;
  left: -20rem;
  top: -5rem;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--1 .flag-title::before {
    width: 30%;
    left: -2rem;
    top: 18rem;
  }
}
.page-template-page-study-abroad-homestay .section--1 .flag-title::after {
  right: -10rem;
}
.page-template-page-study-abroad-homestay .section--1 h3 {
  letter-spacing: 1.2px;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}
.page-template-page-study-abroad-homestay .section--1 .study-support-text {
  margin-top: 5rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  padding: 90px 80px;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--1 .study-support-text {
    padding: 40px;
  }
}
.page-template-page-study-abroad-homestay .section--1 .study-support-text p {
  font-size: 20px;
  font-size: 18px;
  line-height: 2;
  padding-left: 2rem;
  border-left: 6px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
}
.page-template-page-study-abroad-homestay .section--1 .btn__group {
  padding-top: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--1 .btn__group .btn-y-1 {
    margin-bottom: 2rem;
  }
}
.page-template-page-study-abroad-homestay .section--2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.page-template-page-study-abroad-homestay .section--2 .f-end {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.page-template-page-study-abroad-homestay .section--2 .f-end::after {
  content: "";
  position: absolute;
  right: -20%;
  top: 100%;
  background-image: url(img/page/photograph-20.png);
  width: 400px;
  height: 317px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--2 .f-end::after {
    top: 96%;
    width: 30%;
    right: 0;
  }
}
.page-template-page-study-abroad-homestay .section--3 {
  padding: 10rem 0;
}
.page-template-page-study-abroad-homestay .section--3 h3 {
  letter-spacing: 4.8px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}
.page-template-page-study-abroad-homestay .section--3 .btn-group-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--3 .btn-group-3 {
    display: block;
  }
}
.page-template-page-study-abroad-homestay .section--3 .btn-group-3 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 3.2px;
  color: #FFFFFF;
  font-weight: 700;
  background-color: #EF9C38;
  padding: 20px 60px;
  border-radius: 42px;
  position: relative;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--3 .btn-group-3 a {
    margin-bottom: 3rem;
  }
}
.page-template-page-study-abroad-homestay .section--3 .btn-group-3 a i {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.page-template-page-study-abroad-homestay .section--4 {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-title {
  position: relative;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-title .country-flag-img {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--4 .homestay-title .country-flag-img {
    top: 110%;
    -webkit-transform: unset;
            transform: unset;
  }
}
.page-template-page-study-abroad-homestay .section--4 .homestay-title .country-flag-img img {
  width: 61px;
  display: block;
}
.page-template-page-study-abroad-homestay .section--4 .study-t {
  letter-spacing: 0.8px;
  color: #0054A6;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem 0 10rem;
  margin-left: 2rem;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--4 .homestay-card-list {
    margin-left: unset;
  }
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card {
  background-image: url(img/home/green-bg.png);
  background-repeat: no-repeat;
  max-width: 334px;
  width: 100%;
  height: 561px;
  background-size: cover;
  display: block;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--4 .homestay-card {
    max-width: unset;
    width: 100%;
    height: 100%;
    padding-bottom: 3rem;
  }
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card.is-active {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__thumb img {
  max-width: 307px;
  width: 100%;
  height: 218px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding: 10px;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta img {
  width: 81px;
  display: block;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 1rem;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex .homestay-card__country,
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex .homestay-card__cat-1,
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex .homestay-card__cat-2,
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex .homestay-card__cat-3 {
  letter-spacing: 2.57px;
  color: #FFFFFF;
  background-color: #EF9C38;
  border-radius: 10px;
  font-size: 12px;
  padding: 0px 20px;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex .homestay-card__cat-2 {
  background-color: #df8eaf;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__meta .k-flex .homestay-card__cat-3 {
  background-color: #8cc63f;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__title {
  letter-spacing: 3px;
  color: #DAECF8;
  font-size: 20px;
  font-weight: 800;
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__info span {
  letter-spacing: 1.04px;
  color: #FFFFFF;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__text {
  letter-spacing: 1.04px;
  color: #FFFFFF;
  padding: 10px;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-card .homestay-card__body .homestay-card__text p {
  text-align: right;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .name-initial {
  letter-spacing: 0.8px;
  color: #1C68A7;
  font-size: 16px;
  text-align: center;
  margin: 3rem 0;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .content-text-original {
  margin-top: 4rem;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .content-text-original .content-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--4 .homestay-detail .content-text-original .content-main {
    display: block;
  }
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .content-text-original .content-main .content-img {
  width: 25%;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--4 .homestay-detail .content-text-original .content-main .content-img {
    width: 100%;
  }
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .content-text-original .content-main .content-img img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .text-content {
  width: 75%;
  background-color: #FFFDE7;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 800px) {
  .page-template-page-study-abroad-homestay .section--4 .homestay-detail .text-content {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .text-content span {
  line-height: 2.5;
  padding: 40px;
  padding-bottom: 5rem;
  color: #030000;
}
.page-template-page-study-abroad-homestay .section--4 .homestay-detail .text-content span p {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='40' viewBox='0 0 20 40'%3E%3Ccircle cx='3' cy='39' r='1.2' fill='%231C68A7'/%3E%3Ccircle cx='10' cy='39' r='1.2' fill='%231C68A7'/%3E%3Ccircle cx='17' cy='39' r='1.2' fill='%231C68A7'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-bottom: 4rem;
}
.page-template-page-study-abroad-homestay .section--4 .point {
  width: 192px;
  display: block;
  margin: 0 auto;
  margin-top: 5rem;
}

.page-template-page-contact .section--1 {
  padding-top: 8rem;
  padding-bottom: 30rem;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--1 {
    padding-bottom: 40rem;
  }
}
.page-template-page-contact .section--1 .contact-intro {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  padding: 80px;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--1 .contact-intro {
    padding: 20px;
  }
}
.page-template-page-contact .section--1 .contact-intro h2 {
  letter-spacing: 0.95px;
  border-left: 6px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
  font-size: 18px;
  padding-left: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.page-template-page-contact .section--1 .contact-intro p {
  letter-spacing: 0.95px;
  padding: 40px;
}
.page-template-page-contact .section--1 .contact-intro p a {
  display: block;
  letter-spacing: 1.3px;
  color: #C1272D;
  font-size: 24px;
}
.page-template-page-contact .section--2 {
  background-color: #DAECF8;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
.page-template-page-contact .section--2 .contact-btn__group {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-btn__group {
    display: block;
  }
}
.page-template-page-contact .section--2 .contact-btn__group button {
  width: 20%;
  font-size: 24px;
  font-weight: 300;
  background-color: #fff;
  text-align: center;
  display: block;
  border-radius: 17px 17px 0px 0px;
  padding: 41px 0;
  color: #1C68A7;
  line-height: 2;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-btn__group button {
    font-size: 16px;
    padding: 10px;
    width: 90%;
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}
.page-template-page-contact .section--2 .contact-btn__group button span {
  display: block;
  font-size: 24px;
  letter-spacing: 1.16px;
  font-weight: 400;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-btn__group button span {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .inner {
    margin: 10px;
  }
}
.page-template-page-contact .section--2 .contact-box {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 15px;
  padding: 10rem 20rem;
  position: relative;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-box {
    padding: 20px 10px;
  }
}
.page-template-page-contact .section--2 .contact-box .contact-img-1 {
  position: absolute;
  width: 432px;
  display: block;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  left: 0;
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-box .contact-img-1 {
    display: none;
  }
}
.page-template-page-contact .section--2 .contact-box .contact-img-2 {
  position: absolute;
  width: 399px;
  display: block;
  left: 100%;
  bottom: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-box .contact-img-2 {
    display: none;
  }
}
.page-template-page-contact .section--2 .contact-box form h2 {
  position: absolute;
  letter-spacing: 1.38px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  border-radius: 42px;
  background-color: #1C68A7;
  padding: 20px 80px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  .page-template-page-contact .section--2 .contact-box form h2 {
    font-size: 16px;
    width: 50%;
    text-align: center;
    top: -5rem;
  }
}
.page-template-page-contact .section--2 .contact-box form .mw--box {
  margin-bottom: 5rem;
  border-left: 5px solid #1C68A7;
  padding-left: 3rem;
}
.page-template-page-contact .section--2 .contact-box form .mw--box p {
  letter-spacing: 0.8px;
  color: #030000;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
.page-template-page-contact .section--2 .contact-box form .mw--box p span {
  font-size: 12px;
  color: #fff;
  padding: 0 15px;
  background-color: #EF9C38;
  border-radius: 10px;
}
.page-template-page-contact .section--2 .contact-box form .mw--box .mwform-radio-field-text,
.page-template-page-contact .section--2 .contact-box form .mw--box .mwform-checkbox-field-text {
  color: #030000;
}
.page-template-page-contact .section--2 .contact-box form .mw--box .mwform-checkbox-field-text {
  display: block;
}
.page-template-page-contact .section--2 .contact-box form .mw--box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-page-contact .section--2 .contact-box form .mw--box .bottom-m {
  margin-bottom: 5rem;
}
.page-template-page-contact .section--2 .contact-box form .mw--box .bottom-m p input {
  width: 70%;
}
.page-template-page-contact .section--2 .contact-box form .sent {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 1.38px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  border-radius: 42px;
  background-color: #1C68A7;
  padding: 10px 50px;
}
.page-template-page-contact .section--2 .contact-form {
  display: none;
}
.page-template-page-contact .section--2 .contact-form.is-active {
  display: block;
}
.page-template-page-contact .section--2 .contact-btn__group button.is-active {
  background: #EF9C38;
  color: #fff;
}

.page-template-page-language-services .section--1 {
  padding-top: 15rem;
  padding-bottom: 5rem;
}
.page-template-page-language-services .section--1 .flag-title {
  color: #FFFFFF;
}
.page-template-page-language-services .section--1 .flag-title::before {
  content: "";
  position: absolute;
  background-image: url(img/page/photo-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 432px;
  height: 363px;
  left: -20rem;
  top: -5rem;
}
@media (max-width: 800px) {
  .page-template-page-language-services .section--1 .flag-title::before {
    width: 30%;
    left: -2rem;
    top: 18rem;
  }
}
.page-template-page-language-services .section--1 .flag-title::after {
  right: -10rem;
}
.page-template-page-language-services .section--1 h3 {
  letter-spacing: 1.2px;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}
.page-template-page-language-services .section--1 .study-support-text {
  margin-top: 5rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  padding: 90px 80px;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-language-services .section--1 .study-support-text {
    padding: 40px;
  }
}
.page-template-page-language-services .section--1 .study-support-text p {
  font-size: 20px;
  font-size: 18px;
  line-height: 2;
  padding-left: 2rem;
  border-left: 6px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
}
.page-template-page-language-services .section--1 .btn__group {
  padding-top: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-language-services .section--1 .btn__group .btn-y-1 {
    margin-bottom: 2rem;
  }
}
.page-template-page-language-services .section--2 {
  padding: 10rem 0;
}
@media (max-width: 800px) {
  .page-template-page-language-services .section--2 .btn-y-1 {
    margin-bottom: 2rem;
  }
}

.page-template-page-staff .cotent-area {
  background-color: #fff;
  padding: 60px;
  margin-top: 5rem;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area {
    padding: 10px;
  }
}
.page-template-page-staff .cotent-area .staff-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .staff-profile {
    display: block;
  }
}
.page-template-page-staff .cotent-area .staff-profile img {
  max-width: 336px;
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  border: 11px solid #FFFFFF;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .staff-profile img {
    width: 80%;
  }
}
.page-template-page-staff .cotent-area .staff-profile .staff-profile__content {
  width: 60%;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .staff-profile .staff-profile__content {
    width: 100%;
  }
}
.page-template-page-staff .cotent-area .staff-profile .staff-profile__content h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .staff-profile .staff-profile__content h3 {
    font-size: 16px;
  }
}
.page-template-page-staff .cotent-area .staff-profile .staff-profile__content h3 img {
  width: 49px;
}
.page-template-page-staff .cotent-area .staff-profile .staff-profile__content p {
  letter-spacing: 1.6px;
  color: #030000;
  line-height: 2;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .staff-profile .staff-profile__content p {
    padding: 20px;
  }
}
.page-template-page-staff .cotent-area .text-a,
.page-template-page-staff .cotent-area .text-b {
  letter-spacing: 1.6px;
  color: #030000;
  line-height: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 20px;
}
.page-template-page-staff .cotent-area h4 {
  letter-spacing: 2.4px;
  color: #224F85;
  background-color: #DAECF8;
  padding: 10px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-left: -30px;
  margin-right: -30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area h4 {
    margin-left: -10px;
    margin-right: -10px;
    font-size: 16px;
    padding: 10px 20px;
  }
}
.page-template-page-staff .cotent-area .access-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5rem;
  margin-top: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .access-map {
    display: block;
  }
}
.page-template-page-staff .cotent-area .access-map p {
  letter-spacing: 1.6px;
  color: #030000;
  width: 40%;
  position: relative;
  line-height: 2;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .access-map p {
    width: 100%;
  }
}
.page-template-page-staff .cotent-area .access-map p img {
  position: absolute;
  width: 432px;
  right: 95%;
  bottom: 0;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .access-map p img {
    position: static;
    display: block;
    margin: 0 auto;
  }
}
.page-template-page-staff .cotent-area .access-map p a {
  display: block;
  text-align: right;
  text-decoration: underline;
  letter-spacing: 1.6px;
  color: #1C68A7;
}
@media (max-width: 800px) {
  .page-template-page-staff .cotent-area .access-map .access-map__google iframe {
    width: 100%;
  }
}
.page-template-page-staff .cotent-area .point {
  width: 192px;
  display: block;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 10rem;
}
.page-template-page-staff .cotent-area .access-map.content-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-template-page-staff .cotent-area .access-map.content-row-reverse p > img {
  right: unset;
  left: 95%;
}
.page-template-page-staff .cotent-area .access-map.content-row-reverse p a {
  text-align: left;
}
.page-template-page-staff .cotent-area .staff-profile.content-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.page-template-page-school-events .section--1 {
  padding-top: 15rem;
  padding-bottom: 5rem;
}
.page-template-page-school-events .section--1 .flag-title {
  color: #FFFFFF;
}
.page-template-page-school-events .section--1 .flag-title::before {
  content: "";
  position: absolute;
  background-image: url(img/page/picture-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 432px;
  height: 363px;
  left: -20rem;
  top: -5rem;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--1 .flag-title::before {
    width: 30%;
    left: -2rem;
    top: 18rem;
  }
}
.page-template-page-school-events .section--1 .flag-title::after {
  right: -10rem;
}
.page-template-page-school-events .section--1 h3 {
  letter-spacing: 1.2px;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}
.page-template-page-school-events .section--1 .study-support-text {
  margin-top: 5rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  padding: 90px 80px;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--1 .study-support-text {
    padding: 40px;
  }
}
.page-template-page-school-events .section--1 .study-support-text p {
  font-size: 20px;
  font-size: 18px;
  line-height: 2;
  padding-left: 2rem;
  border-left: 6px solid #1C68A7;
  border-bottom: 1px solid #1C68A7;
}
.page-template-page-school-events .section--1 .btn__group {
  padding-top: 3rem;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--1 .btn__group .btn-y-1 {
    margin-bottom: 2rem;
  }
}
.page-template-page-school-events .section--2 {
  padding: 10rem 0;
}
.page-template-page-school-events .section--2 .container {
  position: relative;
  width: 100%;
  margin: 40px auto;
  z-index: 10;
}
.page-template-page-school-events .section--2 .container > img {
  position: absolute;
  width: 91px;
  height: 91px;
  top: -7px;
  left: -7px;
}
.page-template-page-school-events .section--2 .container .main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--2 .container .main-flex {
    display: block;
  }
}
.page-template-page-school-events .section--2 .main-slider {
  width: 80%;
  list-style: none;
  min-width: 0;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--2 .main-slider {
    width: 100%;
  }
}
.page-template-page-school-events .section--2 .thumbnail-slider {
  width: 20%;
  list-style: none;
  margin-top: 0;
  min-width: 0;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--2 .thumbnail-slider {
    width: 100%;
    margin-top: 3rem;
  }
}
.page-template-page-school-events .section--2 .thumbnail-slider li {
  cursor: pointer;
}
.page-template-page-school-events .section--2 .thumbnail-slider .slick-slide {
  padding: 0 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 800px) {
  .page-template-page-school-events .section--2 .thumbnail-slider .slick-slide {
    padding: 0 4px;
  }
}
.page-template-page-school-events .section--2 .main-slider img,
.page-template-page-school-events .section--2 .thumbnail-slider img {
  width: 100%;
  display: block;
}

.page-template-page-english-guide .section--1 {
  padding-bottom: 15rem;
}
.page-template-page-english-guide .section--1 .btn__group {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
}
@media (max-width: 800px) {
  .page-template-page-english-guide .section--1 .btn__group {
    padding-top: unset;
  }
}
.page-template-page-english-guide .section--1 .btn__group::after {
  content: "";
  max-width: 475px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.page-template-page-english-guide .section--1 .btn__group .btn-y-1 {
  margin-bottom: 2rem;
}
.page-template-page-english-guide .section--1 .btn__group .btn-y-1 a i {
  display: none;
}
.page-template-page-english-guide .section--1 h2 {
  margin-top: 10rem;
}
@media (max-width: 800px) {
  .page-template-page-english-guide .section--1 h2 {
    margin-top: 15rem;
    margin-bottom: 5rem;
  }
}
.page-template-page-english-guide .bg-tartan {
  padding: 10rem 0;
}
.page-template-page-english-guide .section--2 {
  padding: 10rem 0;
}
.page-template-page-english-guide .section--2 .btn-button-slim {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 5rem auto;
}
.page-template-page-english-guide .section--2 .btn-button-slim i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
}
.page-template-page-english-guide .section--2 .point {
  width: 192px;
  display: block;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 10rem;
}
.page-template-page-english-guide .section--2 h4 {
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #224F85;
  margin-bottom: 5rem;
}
.page-template-page-english-guide .section--2 .en-text {
  letter-spacing: 1.6px;
  color: #030000;
}
.page-template-page-english-guide .section--2 ul li {
  letter-spacing: 1.6px;
  color: #030000;
  margin: 5rem 0;
}
.page-template-page-english-guide .section--3 {
  background-color: #DAECF8;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.page-template-page-english-guide .section--3 .contact-box {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 15px;
  padding: 10rem 20rem;
  position: relative;
  margin-bottom: 10rem;
}
@media (max-width: 800px) {
  .page-template-page-english-guide .section--3 .contact-box {
    padding: 20px 10px;
  }
}
.page-template-page-english-guide .section--3 .contact-box form h2 {
  position: absolute;
  letter-spacing: 1.38px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  border-radius: 42px;
  background-color: #1C68A7;
  padding: 20px 80px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  .page-template-page-english-guide .section--3 .contact-box form h2 {
    font-size: 16px;
    width: 50%;
    text-align: center;
    top: -5rem;
  }
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box {
  margin-bottom: 5rem;
  border-left: 5px solid #1C68A7;
  padding-left: 3rem;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box p {
  letter-spacing: 0.8px;
  color: #030000;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box p span {
  font-size: 12px;
  color: #fff;
  padding: 0 15px;
  background-color: #EF9C38;
  border-radius: 10px;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box .mwform-radio-field-text,
.page-template-page-english-guide .section--3 .contact-box form .mw--box .mwform-checkbox-field-text {
  color: #030000;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box .mwform-checkbox-field-text {
  display: block;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box .bottom-m {
  margin-bottom: 5rem;
}
.page-template-page-english-guide .section--3 .contact-box form .mw--box .bottom-m p input {
  width: 70%;
}
.page-template-page-english-guide .section--3 .contact-box form .sent {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 1.38px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  border-radius: 42px;
  background-color: #1C68A7;
  padding: 10px 50px;
}

body {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #1C68A7;
  line-height: 1.5;
  font-style: normal;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: #1c68a7;
  background-image: url(img/home/check-2.png);
  background-repeat: repeat;
  background-size: 200px;
  background-position: center center;
  pointer-events: none;
  z-index: -1;
}

section {
  background-color: #ffffff;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 10px solid #1C68A7;
  padding: 20px;
  gap: 3vw;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1920px) {
  .header__inner {
    gap: 15vw;
  }
}
@media (max-width: 1510px) {
  .header__inner {
    display: block;
  }
}
@media (max-width: 1280px) {
  .header__inner {
    display: none;
  }
}
.header__inner .header__logo {
  width: 25vw;
}
@media (max-width: 1510px) {
  .header__inner .header__logo {
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}
.header__inner .header__logo img {
  display: block;
  width: 478px;
}
.header__inner .header__nav {
  width: 85vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3vw;
}
@media (min-width: 1921px) {
  .header__inner .header__nav {
    width: 70vw;
  }
}
@media (max-width: 1510px) {
  .header__inner .header__nav {
    width: 100vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__inner .header__nav .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2vw;
}
@media (max-width: 1366px) {
  .header__inner .header__nav .header__menu {
    gap: 3vw;
  }
}
.header__inner .header__nav .header__menu a {
  color: #1C68A7;
}
.header__inner .header__nav .header__menu .header__item {
  position: relative;
}
.header__inner .header__nav .header__menu .header__item--has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.header__inner .header__nav .header__menu .header__item--has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -4px;
}
.header__inner .header__nav .header__menu .header__item--has-children .sub-menu {
  position: absolute;
  top: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 4px solid #1C68A7;
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  z-index: 200;
}
.header__inner .header__nav .header__menu .header__item--has-children .sub-menu li a {
  display: block;
  padding: 12px 20px;
  white-space: nowrap;
}
.header__inner .header__nav .header__menu .header__item--has-children .sub-menu li a:hover {
  background: #f3f8fc;
}
.header__inner .header__nav .header__menu .header__item--has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__inner .header__nav .contact-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.header__inner .header__nav .contact-cta .contact-cta__tel a {
  color: #1C68A7;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.header__inner .header__nav .contact-cta .contact-cta__tel a span {
  font-size: 27px;
}
.header__inner .header__nav .contact-cta .contact-cta__request a {
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #1C68A7;
  color: #1C68A7;
  padding: 10px 20px;
}

.hero {
  height: 100svh;
  overflow: hidden;
}
.hero .slick-list,
.hero .slick-track,
.hero ul,
.hero li {
  height: 100%;
}
.hero__slide {
  height: 100%;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}
@media (max-width: 800px) {
  .hero__slide img {
    -o-object-position: 80%;
       object-position: 80%;
  }
}

.catch-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 10;
}
.catch-title h2 img {
  width: 818px;
}
@media (max-width: 800px) {
  .catch-title h2 img {
    max-width: 100vw;
  }
}

.hero__logo {
  position: absolute;
  bottom: 5rem;
  right: 20rem;
}
@media (max-width: 800px) {
  .hero__logo {
    right: 1rem;
  }
}
.hero__logo img {
  width: 446px;
}
@media (max-width: 800px) {
  .hero__logo img {
    width: 50vw;
  }
}

.hero__character {
  position: absolute;
  bottom: 0;
  left: 20rem;
}
@media (max-width: 800px) {
  .hero__character {
    left: 1rem;
  }
}
.hero__character img {
  width: 308px;
}
@media (max-width: 800px) {
  .hero__character img {
    width: 45vw;
  }
}

.sub-hero {
  height: 720px;
  position: relative;
}
@media (max-width: 800px) {
  .sub-hero {
    height: auto;
  }
}
.sub-hero > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 80%;
     object-position: 50% 80%;
}
.sub-hero h2 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.sub-hero h2 img {
  width: 570px;
  display: block;
  margin: 0 auto;
}

.footer {
  position: relative;
}
.footer .inner {
  position: relative;
}
.footer .inner img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 400px;
  width: 100%;
  height: 317px;
  right: -10%;
  top: -20%;
}
@media (max-width: 800px) {
  .footer .inner img {
    right: -2rem;
    top: -25rem;
    width: 70%;
  }
}
.footer.bg-tartan {
  padding: 10rem 0;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.2;
  margin: 10rem 0;
}
@media (max-width: 800px) {
  .footer::before {
    margin: 5rem 0 5rem;
  }
}
.footer .c-title {
  color: #fff;
  margin: 5rem 0;
}
.footer .footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 800px) {
  .footer .footer__row {
    display: block;
    margin-bottom: 10rem;
  }
}
.footer .footer__row:last-child {
  margin-bottom: 5rem;
}
.footer .footer__row .footer__col {
  width: 50%;
  margin-bottom: 8rem;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.footer .footer__row .footer__col.google-map {
  text-align: center;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col.google-map iframe {
    width: 100%;
  }
}
.footer .footer__row .footer__col .time-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col .time-table {
    display: block;
  }
}
.footer .footer__row .footer__col .time-table h2 {
  letter-spacing: 6.02px;
  color: #1C68A7;
  font-size: 24px;
  font-weight: 700;
  background-color: #DAECF8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 50px;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col .time-table h2 {
    width: unset;
    text-align: center;
  }
}
.footer .footer__row .footer__col .time-table p {
  letter-spacing: 4.8px;
  font-size: 24px;
  position: relative;
  padding-right: 20px;
  background-color: #EF9C38;
  padding-left: 90px;
  border-radius: 20px;
  margin-left: -4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col .time-table p {
    padding-left: unset;
    padding-right: unset;
    margin-left: unset;
    margin-top: 1rem;
  }
}
.footer .footer__row .footer__col h3 {
  letter-spacing: 5.4px;
  font-size: 24px;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col h3 {
    font-size: 16px;
    text-align: center;
  }
}
.footer .footer__row .footer__col a {
  color: #fff;
  position: relative;
}
.footer .footer__row .footer__col a p {
  font-size: 40px;
  letter-spacing: 2.52px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col a p {
    font-size: 24px;
    text-align: center;
  }
}
.footer .footer__row .footer__col a p span {
  font-size: 64px;
  letter-spacing: 3.37px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .footer .footer__row .footer__col a p span {
    font-size: 36px;
  }
}

.copyright {
  letter-spacing: 2.98px;
  font-size: 14px;
  padding: 20px;
  background-color: #ffffff;
}
@media (max-width: 800px) {
  .copyright {
    text-align: center;
    font-size: 12px;
  }
}

/*---------------------------------------------

		投稿用

----------------------------------------------*/
.single-post h2,
.archive h2 {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .single-post h2,
  .archive h2 {
    margin: 48px auto 48px;
  }
}
.single-post h3,
.archive h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 116px;
}
@media (max-width: 640px) {
  .single-post h3,
  .archive h3 {
    margin-bottom: 64px;
    font-size: 1.8rem !important;
  }
}
.single-post #blog-container,
.archive #blog-container {
  max-width: 1080px;
  overflow: hidden;
  margin: 0 auto;
}
.single-post #blog-container h4,
.archive #blog-container h4 {
  font-size: 2.4rem;
  margin: 0 0 32px 32px;
}
@media (max-width: 640px) {
  .single-post #blog-container h4,
  .archive #blog-container h4 {
    font-size: 1.8rem !important;
  }
}
.single-post #blog-container .inner,
.archive #blog-container .inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 800px) {
  .single-post #blog-container .inner,
  .archive #blog-container .inner {
    display: block;
  }
}
.single-post #blog-container .inner .blog-main,
.archive #blog-container .inner .blog-main {
  max-width: 773px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .single-post #blog-container .inner .blog-main,
  .archive #blog-container .inner .blog-main {
    float: none;
  }
}
.single-post #blog-container .inner .blog-main,
.archive #blog-container .inner .blog-main {
  /*-- ブログアーカイブ --*/
}
.single-post #blog-container .inner .blog-main article,
.archive #blog-container .inner .blog-main article {
  width: 50%;
}
.single-post #blog-container .inner .blog-main .archive-post,
.archive #blog-container .inner .blog-main .archive-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .single-post #blog-container .inner .blog-main .archive-post,
  .archive #blog-container .inner .blog-main .archive-post {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.single-post #blog-container .inner .blog-main .archive-post:after,
.archive #blog-container .inner .blog-main .archive-post:after {
  content: "";
  display: block;
  width: 222px;
  /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}
.single-post #blog-container .inner .blog-main .archive-post .post-item,
.archive #blog-container .inner .blog-main .archive-post .post-item {
  padding: 20px 0;
  width: 222px;
  text-align: center;
}
@media (max-width: 640px) {
  .single-post #blog-container .inner .blog-main .archive-post .post-item,
  .archive #blog-container .inner .blog-main .archive-post .post-item {
    width: 160px;
  }
  .single-post #blog-container .inner .blog-main .archive-post .post-item .excerpt p,
  .archive #blog-container .inner .blog-main .archive-post .post-item .excerpt p {
    font-size: 1.4rem;
  }
}
.single-post #blog-container .inner .blog-main .archive-post .post-item .blog-meta .post-categories,
.archive #blog-container .inner .blog-main .archive-post .post-item .blog-meta .post-categories {
  margin-bottom: 8px;
}
.single-post #blog-container .inner .blog-main .archive-post .post-item .blog-meta .post-categories a,
.archive #blog-container .inner .blog-main .archive-post .post-item .blog-meta .post-categories a {
  color: #000;
  text-decoration: none;
}
.single-post #blog-container .inner .blog-main .archive-post .post-item .blog-meta .date,
.archive #blog-container .inner .blog-main .archive-post .post-item .blog-meta .date {
  text-align: center;
}
.single-post #blog-container .inner .blog-main .archive-post .post-item .blog-title,
.archive #blog-container .inner .blog-main .archive-post .post-item .blog-title {
  display: block;
  margin: 16px 0;
  font-size: 1.8rem;
  color: #2e3180;
}
.single-post #blog-container .inner .blog-main .archive-post .post-item .excerpt p,
.archive #blog-container .inner .blog-main .archive-post .post-item .excerpt p {
  text-align: left;
}
.single-post #blog-container .inner .blog-main .single-post,
.archive #blog-container .inner .blog-main .single-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.single-post #blog-container .inner .blog-main .single-post .post-item,
.archive #blog-container .inner .blog-main .single-post .post-item {
  padding: 20px 16px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.single-post #blog-container .inner .blog-main .single-post .post-item .blog-meta .post-categories,
.archive #blog-container .inner .blog-main .single-post .post-item .blog-meta .post-categories {
  margin-bottom: 8px;
}
.single-post #blog-container .inner .blog-main .single-post .post-item .blog-meta .post-categories a,
.archive #blog-container .inner .blog-main .single-post .post-item .blog-meta .post-categories a {
  color: #000;
  text-decoration: none;
}
.single-post #blog-container .inner .blog-main .single-post .post-item .blog-meta .date,
.archive #blog-container .inner .blog-main .single-post .post-item .blog-meta .date {
  text-align: center;
}
.single-post #blog-container .inner .blog-main .single-post .post-item .blog-title,
.archive #blog-container .inner .blog-main .single-post .post-item .blog-title {
  display: block;
  margin: 32px 0;
  font-size: 1.8rem;
  color: #2e3180;
}
.single-post #blog-container .inner .blog-main .single-post .post-item .blog-title a,
.archive #blog-container .inner .blog-main .single-post .post-item .blog-title a {
  color: #2e3180;
  font-size: 2rem;
}
.single-post #blog-container .inner,
.archive #blog-container .inner {
  /*-- メインコンテンツ --*/
}
.single-post #blog-container .inner .pagination,
.archive #blog-container .inner .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 56px;
}
.single-post #blog-container .inner .pagination .prev a,
.single-post #blog-container .inner .pagination .next a,
.archive #blog-container .inner .pagination .prev a,
.archive #blog-container .inner .pagination .next a {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  letter-spacing: 1px;
}
.single-post #blog-container .inner .pagination .prev a,
.archive #blog-container .inner .pagination .prev a {
  padding: 0 0px 20px 48px;
}
.single-post #blog-container .inner .pagination .prev a .fas,
.archive #blog-container .inner .pagination .prev a .fas {
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-post #blog-container .inner .pagination .prev a:hover,
.archive #blog-container .inner .pagination .prev a:hover {
  opacity: 0.8;
}
.single-post #blog-container .inner .pagination .prev a:hover .fas,
.archive #blog-container .inner .pagination .prev a:hover .fas {
  left: -5px;
}
.single-post #blog-container .inner .pagination .next a,
.archive #blog-container .inner .pagination .next a {
  padding: 0 48px 20px 0px;
}
.single-post #blog-container .inner .pagination .next a .fas,
.archive #blog-container .inner .pagination .next a .fas {
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-post #blog-container .inner .pagination .next a:hover,
.archive #blog-container .inner .pagination .next a:hover {
  opacity: 0.8;
}
.single-post #blog-container .inner .pagination .next a:hover .fas,
.archive #blog-container .inner .pagination .next a:hover .fas {
  right: -5px;
}
.single-post .wp-pagenavi,
.archive .wp-pagenavi {
  text-align: center;
}
.single-post .wp-pagenavi a,
.single-post .wp-pagenavi span,
.archive .wp-pagenavi a,
.archive .wp-pagenavi span {
  display: inline-block;
  padding: 5px 10px !important;
  margin: 6px;
}
.single-post .wp-pagenavi a.current,
.single-post .wp-pagenavi span.current,
.archive .wp-pagenavi a.current,
.archive .wp-pagenavi span.current {
  background-color: #000;
  color: #fff;
}
.single-post .wp-pagenavi a,
.archive .wp-pagenavi a {
  color: #000;
}
.single-post,
.archive {
  /*-- サイドバー --*/
}
.single-post #blog-side,
.archive #blog-side {
  width: 208px;
  margin-left: 24px;
}
@media (max-width: 800px) {
  .single-post #blog-side,
  .archive #blog-side {
    width: 100%;
    padding: 0 16px;
    float: none;
    margin-top: 56px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .single-post #blog-side,
  .archive #blog-side {
    margin: 64px auto 0;
  }
}
.single-post #blog-side .widgettitle,
.archive #blog-side .widgettitle {
  margin-bottom: 45px;
  position: relative;
  margin-top: 8px;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 4px;
  letter-spacing: unset;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: solid 1px #000;
}
.single-post #blog-side > li,
.archive #blog-side > li {
  margin-bottom: 64px;
  list-style-type: none;
}
.single-post #blog-side > li ul li,
.archive #blog-side > li ul li {
  margin-bottom: 16px;
  background-image: url("../img/news-side-arrow.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-position: left center;
  padding-left: 32px;
}
.single-post #blog-side > li ul li a,
.archive #blog-side > li ul li a {
  font-size: 1.3rem;
  color: #4d4d4d;
  text-decoration: none;
  font-size: 1.4rem;
  border: none;
  background-position: center left;
  background-repeat: no-repeat;
}
.single-post #blog-side > li ul li .post-date,
.archive #blog-side > li ul li .post-date {
  display: block;
  color: #999;
  font-size: 1.3rem;
}
.single-post,
.archive {
  /*-- 記事がない場合 --*/
}
.single-post .np-post,
.archive .np-post {
  text-align: center;
  margin: 64px 0;
}
.single-post .post-content p,
.archive .post-content p {
  margin-bottom: 1.6rem;
  line-height: 2.4rem;
  text-align: justify;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.single-post .post-content blockquote,
.archive .post-content blockquote {
  color: #666;
  line-height: 100%;
  position: relative;
  width: 80%;
  margin: 10% auto;
  text-align: center;
}
.single-post .post-content blockquote::before,
.archive .post-content blockquote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  font-family: Arial, sans-serif;
  font-size: 64px;
  font-style: normal;
}
.single-post .post-content blockquote::after,
.archive .post-content blockquote::after {
  content: "”";
  position: absolute;
  bottom: -60px;
  right: 0;
  font-family: Arial, sans-serif;
  font-size: 64px;
  font-style: normal;
}
.single-post .post-content blockquote p,
.archive .post-content blockquote p {
  margin-bottom: 3.2rem;
  line-height: 200%;
}
.single-post .button,
.archive .button {
  background-color: #fff;
  color: #4d4d4d;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 10px 35px 8px;
  text-decoration: none;
  border: solid #4d4d4d 3px;
  letter-spacing: 0.05em;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  margin-top: 40px;
  display: inline-block;
}
.single-post .button:hover,
.archive .button:hover {
  background-color: #4d4d4d;
  color: #fff;
}

.sp-slidein-nav .header__nav {
  position: fixed;
  right: 0;
  top: 90px;
  width: 500px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 90px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.4s ease;
  transition: top 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, top 0.3s ease;
  transition: transform 0.4s ease, top 0.3s ease, -webkit-transform 0.4s ease;
}
.sp-slidein-nav .header__nav.is-scrolled {
  top: 0;
  height: 100vh;
}
@media (max-width: 1280px) {
  .sp-slidein-nav .header__nav {
    top: 0;
    width: 100%;
    height: 100vh;
  }
}
.sp-slidein-nav .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: unset;
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .inner__section {
    width: 100%;
  }
}
.sp-slidein-nav .inner .inner__section a {
  display: block;
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .inner__section a {
    margin: unset;
  }
}
.sp-slidein-nav .inner .inner__section a h1 {
  font-size: 40px;
  white-space: nowrap;
  position: relative;
}
.sp-slidein-nav .inner .inner__section a h1::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  max-width: 500px;
  width: 100%;
  background-color: #1C68A7;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sp-slidein-nav .inner .inner__section a h1 img {
  width: 60%;
  margin: 0 auto;
  display: block;
  padding: 50px 0;
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .inner__section a h1 img {
    width: 50%;
    padding: 10px 0;
  }
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .inner__section a h1 {
    font-size: 32px;
    color: #000;
  }
}
.sp-slidein-nav .inner .inner__section a h1 span {
  color: #065F8E;
}
.sp-slidein-nav .inner .nav-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sp-slidein-nav .inner .nav-body li a {
  display: block;
  width: 100%;
  margin: 10px 0;
  text-decoration: none;
  background-position: 0 0;
  background-size: 200% auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-size: 22px;
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .nav-body li a {
    font-size: 16px;
  }
}
.sp-slidein-nav .inner .nav-body li a span {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sp-slidein-nav .inner .nav-body li a:hover {
  background-position: -100% 0;
}
.sp-slidein-nav .inner .nav-body li a:hover span {
  color: #fff;
}
.sp-slidein-nav .inner .nav-body li:last-child a {
  margin-bottom: 0;
}
.sp-slidein-nav .inner .nav--menu {
  width: 100%;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .nav--menu {
    margin-top: unset;
    margin-bottom: unset;
  }
}
.sp-slidein-nav .inner .nav--menu ul {
  margin-bottom: 2rem;
  line-height: 2.5;
  padding-left: 10rem;
}
@media (max-width: 800px) {
  .sp-slidein-nav .inner .nav--menu ul {
    padding-left: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.sp-slidein-nav .inner .nav--menu ul li {
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  white-space: nowrap;
}
.sp-slidein-nav .inner .nav--menu ul li a {
  letter-spacing: 2px;
  color: #000;
}
.sp-slidein-nav .inner .nav--menu .nav-footer img {
  width: 200px;
  display: block;
  margin: 2rem auto;
}
.sp-slidein-nav .header-nav-bg {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  bottom: 0;
  right: 0;
}

.hamburger {
  position: fixed;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0;
  border: none;
  z-index: 100;
  background-color: #fff;
  cursor: pointer;
}
@media (max-width: 640px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
}
.hamburger span {
  width: 36px;
  height: 3px;
  background-color: #b3b3b3;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
  margin: 0 auto;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px auto;
}
.hamburger span:nth-child(3) {
  top: 0;
}

.header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger.active span {
  background-color: #b3b3b3;
}
.hamburger.active span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .burge-nav {
    display: block;
  }
}

.noscroll {
  overflow: hidden;
}

.header__nav .footer-contact {
  margin-top: 10rem;
  color: #000;
}
.header__nav .footer-contact h2 {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 3.1px;
  text-align: center;
  margin-bottom: 14px;
}
@media (max-width: 800px) {
  .header__nav .footer-contact h2 {
    font-size: 24px;
  }
}
.header__nav .footer-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 800px) {
  .header__nav .footer-contact a {
    font-size: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__nav .footer-contact a img {
  width: 67px;
  height: 67px;
  margin-right: 19px;
}
@media (max-width: 800px) {
  .header__nav .footer-contact a img {
    width: 47px;
    height: 47px;
  }
}/*# sourceMappingURL=style.css.map */