@charset "UTF-8";
/*
global > font
------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*
global > color
------------------------------
*/
:root {
  --color-bg-gray: #f0f0f0;
  --color-bg-btn-blue: #aeeeee;
  --color-bg-btn-pink: #ffc0cb;
  --color-bg-btn-yellow: #fdfd96;
  --color-bg-btn-orange: #f2b035;
  --color-bg-black: #222222;
  --color-bg-white: #ffffff;
  --color-bg-red: #c70a09;
  --color-border-gray: #c8c8c8;
  --color-border-white: #ffffff;
  --color-font-primary: #00896c;
  --color-font-white: #ffffff;
  --color-font-red: #c70a09;
  --color-font-orange: #f2b035;
  --color-font-base: #222222;
}

/*
global > content-width
------------------------------
*/
:root {
  --width-content-xs: 300px;
  --width-content-s: 759px;
  --width-content: 1024px;
  --width-content-l: 1200px;
}

:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-english: "lato", sans-serif;
}

/*
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*
foundation > base
------------------------------
*/
body {
  line-height: 2;
  font-size: 16px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
}

.is-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

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

/*
utility > utility
------------------------------
*/
.u-mt {
  margin-top: 40px !important;
}
@media screen and (min-width: 768px) {
  .u-mt {
    margin-top: 48px !important;
  }
}

.u-ptb {
  padding: 64px 0 !important;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 80px 0 !important;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  margin: -1px !important;
}

#flow {
  position: relative;
  scroll-margin-top: 80px; /* ヘッダーの高さに合わせる */
}

/*
component > button
------------------------------
*/
.c-btn__wrapper {
  width: 280px;
  margin: 0 auto;
}

.c-btn {
  color: var(--color-font-white);
  font-weight: bold;
  padding: 13px 16px;
  font-family: var(--font-family-english);
  text-transform: uppercase;
  position: relative;
  width: 100%;
  min-width: 280px;
  height: 62px;
  border-radius: 40px;
  border: 2px solid var(--color-border-white);
  display: grid;
  place-items: center;
  z-index: auto;
}
@media (any-hover: hover) {
  .c-btn:hover::after {
    right: 25px;
    transition: 0.3s;
  }
}
.c-btn::after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 30px;
  transition: all 0.2s;
  z-index: 1;
}
.c-btn--green {
  color: var(--color-font-white);
  background-color: var(--color-bg-primary);
}
.c-btn--yellow {
  color: var(--color-font-white);
  background-color: var(--color-bg-yellow);
}
.c-btn--red {
  color: var(--color-font-white);
  background-color: var(--color-bg-red);
}
.c-btn--blue {
  color: var(--color-font-white);
  background-color: #1a8cbc;
}
.c-btn--center {
  margin: 0 auto;
}

/*
component > title
------------------------------
*/
.c-title-main {
  display: block;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-main {
    font-size: 40px;
    margin-bottom: 2rem;
  }
}

/*
component > page-kv
------------------------------
*/
.page-kv {
  margin-top: 80px;
  background-color: #1a8cbc;
}
@media screen and (min-width: 768px) {
  .page-kv {
    margin-top: 90px;
  }
}

.page-kv-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-kv-title {
    font-size: 32px;
  }
}

/*
component > pagenation
------------------------------
*/
.wp-pagenavi {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #444444;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}

.wp-pagenavi span:not(:last-child),
.wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi span,
.wp-pagenavi a {
    font-size: 0.875rem;
  }
}
.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
  background-color: #1a8cbc;
  color: #ffffff;
}

.wp-pagenavi span.current {
  background-color: #1a8cbc;
  color: #ffffff;
}

.wp-pagenavi a {
  color: #666666;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
}

/*
component > date
------------------------------
*/
.c-date {
  display: block;
  color: var(--color-font-primary);
  font-family: var(--font-family-english);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-date {
    font-size: 14px;
  }
}

/*
component > breadcrumbs
------------------------------
*/
.c-breadcrumbs-container, .c-breadcrumbs-container-s, .c-breadcrumbs-container-xs {
  width: 90%;
  margin: 0 auto;
}
.c-breadcrumbs-container-xs {
  min-width: var(--width-content-xs);
}

.c-breadcrumbs-container-s {
  max-width: var(--width-content-s);
}

.c-breadcrumbs-container {
  max-width: var(--width-content);
}

.c-breadcrumbs-container {
  max-width: var(--width-content-l);
}

.c-breadcrumbs.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #555;
  line-height: 3.2;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs.c-breadcrumbs .c-breadcrumbs {
    font-size: 0.875rem;
  }
}

.c-breadcrumbs > li {
  display: inline-block;
  position: relative;
}

.c-breadcrumbs > li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

/*
layout > container
------------------------------
*/
.l-container-l, .l-container, .l-container-s, .l-container-xs {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .l-container-l, .l-container, .l-container-s, .l-container-xs {
    padding: 80px 0;
  }
}

.l-container-xs {
  min-width: var(--width-content-xs);
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

/*
layout > header
------------------------------
*/
.header {
  background-color: var(--color-bg-white);
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    height: 90px;
  }
}

.header-inner {
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
  padding: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  /* h1タグとpタグのロゴ部分を共通化 */
  /* pタグの場合も同じスタイルを適用 */
}
@media screen and (min-width: 768px) {
  .header-inner {
    height: 90px;
  }
}
.header-inner h1,
.header-inner p {
  margin: 0;
}
.header-inner .header-logo {
  width: 90%;
  max-width: 96px;
  aspect-ratio: 71/44;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .header-inner .header-logo {
    min-width: 660px;
    aspect-ratio: 473/54;
  }
}
.header-inner p .header-logo {
  max-width: 96px; /* ロゴサイズの最大値を調整 */
  aspect-ratio: 71/44; /* アスペクト比を設定 */
  margin: 0;
}

.btn-contact {
  width: 208px;
  margin: 0 auto;
  padding: 8px 10px;
  font-size: 14px;
  background-color: var(--color-bg-btn-orange);
  border-radius: 4px;
  color: var(--color-font-white);
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .btn-contact {
    width: 268px;
    padding: 12px 24px;
    font-size: 20px;
  }
}

/*
layout > footer
------------------------------
*/
.footer {
  background-color: var(--color-bg-gray);
  padding: 64px 0 16px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 80px 0 24px;
  }
}
.footer__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.footer__inner-right {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__inner-right {
    display: flex;
    justify-content: space-between;
    min-width: 410px;
  }
}
.footer__inner-right ul {
  padding-left: 1rem;
}
.footer__inner-left__logo {
  max-width: 200px;
  margin: 32px auto;
}
.footer__inner-left__address {
  font-size: 10px;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-family-english);
  display: block;
  margin-top: 64px;
  font-size: 16px;
  text-align: center;
}

/*
page > top
------------------------------
*/
.top-page {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .top-page {
    padding-top: 100px;
  }
}

.swiper {
  /*スライダーの幅と高さを調整*/
  width: 90%;
  height: auto;
  margin: 0.5rem auto 2rem;
}

.swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.service-contents {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media screen and (min-width: 768px) {
  .service-contents {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-contents .content {
  position: relative;
}

.coming-soon::after {
  content: "近日公開";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.development::after {
  content: "開発中";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* form ---------------------------------*/
.form__text p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__text p {
    font-size: 20px;
  }
}

.form-content {
  margin-top: 72px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .form-content {
    margin: 40px 0;
  }
}

.Form-Item,
.Form-Item2,
.Form-Item3 {
  padding-left: 14px;
  padding-bottom: 24px;
  width: 100%;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .Form-Item,
.Form-Item2,
.Form-Item3 {
    padding-left: 14px;
    padding-right: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}

.Form-Item-Label {
  width: 100%;
  max-width: inherit;
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label {
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 15px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 0;
  margin-bottom: auto;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label.isMsg {
    margin-top: 8px;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  min-width: 48px;
  display: inline-block;
  text-align: center;
  background: var(--color-bg-red);
  color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 10px;
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  flex: inherit;
  width: 100%;
  background: #eaedf2;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .Form-Item-Input {
    height: 48px;
    flex: 1;
    font-size: 18px;
  }
}

.Form-Item input,
.Form-Item textarea,
.Form-Item select,
.Form-Item3 input,
.Form-Item3 select {
  font-size: 16px;
  display: block;
  background: #ddd;
  width: 100%;
  margin-top: 10px;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
}

select .wpcf7-form-control .wpcf7-select .wpcf7-validates-as-required {
  font-size: 16px;
  display: block;
  background: #ddd;
  width: 100%;
  margin-top: 10px;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .wpcf7-form-control.wpcf7-select.time,
.wpcf7-form-control.wpcf7-select.time2,
.wpcf7-form-control.wpcf7-select.time3 {
    margin-left: 2rem;
  }
}

.wpcf7-list-item {
  display: block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item input {
  border-radius: 0;
  padding: 0;
}

.form-agree {
  margin-bottom: 40px;
}

.form-agree__link {
  font-size: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form-agree__link {
    font-size: 14px;
  }
}

.form-agree__links a {
  color: #222;
  text-decoration: none;
}

.form-agree__links a:hover {
  text-decoration: underline;
}

input[type=checkbox] {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  border: 1px solid #555;
  margin: -0.125rem 1.5rem 0 10px;
  vertical-align: middle;
}

input[type=checkbox]:checked {
  content: "\f00c";
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

input[type=checkbox]:checked {
  content: "\f00c";
  -moz-appearance: auto;
  -webkit-appearance: auto;
          appearance: auto;
}

.Form-Item .problem-content {
  margin-top: 10px;
}

.problem-item {
  font-weight: normal;
}

.counseling_time {
  display: block;
}
.counseling_time .title {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .counseling_time .title {
    display: inline-block;
    margin-right: 1em;
  }
}
@media screen and (min-width: 768px) {
  .counseling_time .content {
    display: flex;
  }
}

.select-day {
  width: 230px;
}

.selectbox-time {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 10px;
}

.selectbox-time::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.selectbox-time select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 230px;
  height: 40px;
  margin-top: 10px;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #eaedf2;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .selectbox-time select {
    height: 48px;
  }
}

.form-content__caption {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .form-content__caption {
    font-size: 14px;
  }
}

/* お知らせ追加
----------------------------------- */
.top-news-link {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-news-link {
    margin-top: 3rem;
  }
}

/*
page > digitoku
------------------------------
*/
.murecho-digitoku {
  font-family: "Murecho", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .murecho-digitoku {
    font-size: 40px;
  }
}

.orange {
  color: #f2b035;
}

.digitoku-page {
  padding-top: 80px;
  /*  worries ------------------------------------------------ */
}
@media screen and (min-width: 768px) {
  .digitoku-page {
    padding-top: 100px;
  }
}
.digitoku-page .first-visual {
  background-image: url("../img/digitoku/img-fv_sp.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .digitoku-page .first-visual {
    background-image: url("../img/digitoku/img-fv_pc.jpg");
    height: 450px;
  }
}
.digitoku-page .first-visual .digitoku-heading-level2 {
  color: var(--color-font-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .digitoku-page .first-visual .digitoku-heading-level2 {
    font-size: 40px;
    margin-bottom: 32px;
  }
}
.digitoku-page .first-visual .digitoku-heading-level2 span {
  display: inline-block;
}
.digitoku-page .first-visual .text {
  color: var(--color-font-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .digitoku-page .first-visual .text {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.digitoku-page .first-visual .text span {
  display: inline-block;
}
.digitoku-page .first-visual .digitoku-fv-btn-contact {
  width: 300px;
  margin: 0 auto;
  padding: 4px 16px;
  font-size: 24px;
  background-color: var(--color-bg-btn-orange);
  border-radius: 4px;
  color: var(--color-font-white);
  text-align: center;
  font-weight: bold;
  position: absolute;
  bottom: 2rem;
  right: 50%; /* 右端を中央に配置 */
  transform: translateX(50%); /* 要素の幅の半分を右に移動 */
}
.digitoku-page .worries {
  background-color: #fbe9d5;
}
.digitoku-page .worries-inner {
  text-align: center;
}
.digitoku-page .worries-title {
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.digitoku-page .worries-title .small {
  font-size: 24px;
}
.digitoku-page .worries-title .big {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .digitoku-page .worries-title .big {
    font-size: 40px;
  }
}
.digitoku-page .worries-title .br {
  display: inline-block;
}
.digitoku-page .worries-title .number-big32 {
  font-size: 32px;
}
.digitoku-page .worries-title .red {
  color: #f25438;
}
.digitoku-page .worries-title .red-big {
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  .digitoku-page .worries-title .red-big {
    font-size: 48px;
  }
}

.worries-contents {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .worries-contents {
    grid-template-columns: repeat(3, 1fr); /* PCでは3列 */
  }
}
.worries-contents .content {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

/*  feature ------------------------------------------------ */
.feature-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature-title {
    font-size: 40px;
  }
}
.feature-title .big-orange {
  color: #f2b035;
  font-family: "Murecho", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .feature-title .big-orange {
    font-size: 64px;
  }
}

.feature-inner .feature-title {
  margin-bottom: 2rem;
}

/*  student ------------------------------------------------ */
.student {
  background-color: #fdf4f1;
}

.content_inner {
  text-align: center;
}
.content_inner .content-title-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.content_inner .student-lead {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 2rem;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .content_inner .student-lead span {
    display: inline-block;
  }
}
.content_inner .bg-white {
  background-color: var(--color-bg-white);
  border-radius: 20px;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .content_inner .bg-white {
    padding: 2rem 1rem 2rem 3rem;
  }
}

.heading-lv3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 768px) {
  .heading-lv3 {
    font-size: 40px;
  }
}
.heading-lv3 span {
  display: inline-block;
}

.student-detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.student-detail-content .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.student-detail-content .img-container {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .student-detail-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-between;
  }
  .student-detail-content .text-container {
    width: 50%;
    order: 2;
    align-items: flex-start;
  }
  .student-detail-content .text-container .text {
    font-size: 18px;
  }
  .student-detail-content .img-container {
    width: 45%;
    order: 1;
    display: flex;
    justify-content: flex-start;
  }
  .student-detail-content:nth-of-type(2) {
    flex-direction: row-reverse;
  }
}

.heading-lv4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 2rem 1rem 2rem;
  position: relative;
}
.heading-lv4 .orange {
  color: var(--color-font-orange);
}
.heading-lv4::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #f2b035;
  position: absolute;
  left: -25px;
  top: 16px;
}

.student-detail-content2 .title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .student-detail-content2 .title {
    font-size: 28px;
  }
}
.student-detail-content2 .title span {
  display: inline-block;
}
.student-detail-content2 .img-container2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .student-detail-content2 .img-container2 {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-between;
  }
}
.student-detail-content2 .img-container2 picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
}
.student-detail-content2 .img-container2 picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.student-detail-content2 .img-container2 picture .heading {
  font-size: 20px;
  font-weight: bold;
}

/*  parent ------------------------------------------------ */
.parent {
  background-color: #eff9ff;
}
.parent .content_inner .lead {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 2rem;
  font-size: 20px;
  font-weight: bold;
}
.parent .content_inner .lead .content-title-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px) {
  .parent .content_inner .lead span {
    display: inline-block;
  }
}
.parent .content_inner .lead .bg-white {
  margin-bottom: 2rem;
}
.parent .content-ayumi {
  margin-top: 2rem;
}

/*  teacher ------------------------------------------------ */
.teacher {
  background-color: #e0f2e6;
}
.teacher .content_inner .lead {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 2rem;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .teacher .content_inner .lead span {
    display: inline-block;
  }
}

/*  price ------------------------------------------------ */
.price-content {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .price-content {
    max-width: 600px;
  }
}

/*  cta ------------------------------------------------ */
.cta {
  background-color: #fbe9d5;
}

.cta-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-title {
    font-size: 36px;
  }
}

.cta-content-img {
  margin: 0 auto;
  margin-bottom: 4rem;
}

.cta-btn-content {
  max-width: 400px;
  margin: 0 auto;
}

.cta-btn-content:hover,
.btn-contact:hover,
.digitoku-fv-btn-contact:hover {
  opacity: 0.6;
}

/*
page > clahen
-----------------------------
*/
.clahen-page {
  padding-top: 80px;
  /* fv
  ----------------------------------------- */
  /* worry
  ----------------------------------------- */
  /* feature
  ----------------------------------------- */
  /* security
  ----------------------------------------- */
  /* price
  ----------------------------------------- */
  /* CTA
  ----------------------------------------- */
}
@media screen and (min-width: 768px) {
  .clahen-page {
    padding-top: 100px;
  }
}
.clahen-page .fv-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .fv-container {
    padding-top: 4rem;
  }
}
.clahen-page .first-visual {
  position: relative;
  height: 70vh;
  overflow: hidden;
  text-align: center;
}
.clahen-page .first-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/clahen/img-fv_sp.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}
.clahen-page .first-visual > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .clahen-page .first-visual {
    height: 50vh;
  }
  .clahen-page .first-visual::before {
    background-image: url(../img/clahen/img-fv_pc.jpg);
    background-size: cover;
    background-position: center top 20%;
  }
}
.clahen-page .fv_text {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .fv_text {
    margin-bottom: 4rem;
  }
}
.clahen-page .fv_text .heading-level1 {
  color: #023859;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff; /* 文字の影 */
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .fv_text .heading-level1 {
    font-size: 40px;
  }
}
.clahen-page .fv_text .heading-level1 span {
  display: inline-block;
}
.clahen-page .fv_text .heading-level1 span.small {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .clahen-page .fv_text .heading-level1 span.small {
    font-size: 28px;
  }
}
.clahen-page .fv_text .catch-copy {
  font-weight: bold;
}
.clahen-page .fv_text .catch-copy span.blue {
  color: #0388a6;
  font-size: 32px;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff; /* 文字の影 */
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
}
.clahen-page .fv_text .catch-copy span.pink {
  color: #f2637e;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff; /* 文字の影 */
  font-size: 42px;
  display: inline-block;
  line-height: 1.2;
}
.clahen-page .fv_text .catch-copy span.marker {
  background: linear-gradient(transparent 50%, #ceecf2 20%);
}
.clahen-page .first-visual .btn-content {
  color: #ffffff;
  background-color: #f2637e;
  padding: 1rem;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  border-radius: 10px;
  transition-duration: 0.4s;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 85%;
  max-width: 400px;
}
.clahen-page .first-visual .btn-content:hover {
  transform: scale(1.1);
}
.clahen-page .worry h2 {
  color: #f2637e;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .worry h2 {
    font-size: 32px;
  }
}
.clahen-page .worry_contents {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .worry_contents {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
}
.clahen-page .worry_contents .text {
  color: #023859;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.clahen-page .worry_contents .text:before {
  content: url(../img/clahen/checkmark.svg);
  position: absolute;
  top: 2px;
  left: 0;
}
.clahen-page .worry-conclusion_box {
  border: 3px solid #04adbf;
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #fff;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.clahen-page .worry-conclusion_box .text {
  color: #023859;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .clahen-page .worry-conclusion_box .text {
    font-size: 32px;
  }
}
.clahen-page .worry-conclusion_box .text p {
  margin: 0;
  white-space: pre-wrap;
}
.clahen-page .worry-conclusion_box:before {
  content: "";
  position: absolute;
  top: -27px;
  left: -25px;
  z-index: 1;
  width: 40px; /* ここでサイズ調整 */
  height: 40px;
  background-image: url(../img/clahen/error.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .clahen-page .worry-conclusion_box:before {
    top: -39px;
    left: -36px;
    width: 60px; /* ここでサイズ調整 */
    height: 60px;
  }
}
.clahen-page .feature {
  background-color: #ebf7fa;
}
.clahen-page .feature h2 {
  color: #023859;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .feature h2 {
    font-size: 32px;
    margin-bottom: 3rem;
  }
}
.clahen-page .feature h2 span.small {
  display: inline-block;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .clahen-page .feature h2 span.small {
    font-size: 24px;
  }
}
.clahen-page .feature h2 span.pink {
  color: #f2637e;
}
.clahen-page .feature-point_wrapper {
  margin-bottom: 0;
}
.clahen-page .feature-point_content {
  margin-bottom: 2rem;
}
.clahen-page .feature-point_content .bg-white {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .clahen-page .feature-point_content .bg-white {
    flex-direction: row;
  }
  .clahen-page .feature-point_content .bg-white .text-content,
.clahen-page .feature-point_content .bg-white .img-content {
    width: 50%;
  }
}
.clahen-page .feature-point_content .bg-white h3 {
  color: #0388a6;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.clahen-page .feature-point_content .bg-white p {
  color: #023859;
}
.clahen-page .feature-point_content .point {
  width: 120px;
  position: relative;
  top: 15px;
}
.clahen-page .impression_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .impression_content {
    width: 70%;
    margin: 0 0 0 auto;
    padding: 2rem 0;
  }
}
.clahen-page .impression_content .img-content {
  width: 28%;
}
@media screen and (min-width: 768px) {
  .clahen-page .impression_content .img-content {
    width: 20%;
  }
}
.clahen-page .impression_content .text-content {
  width: 68%;
  margin-left: 2%;
}
.clahen-page .impression_content .title-impression {
  color: #0388a6;
}
.clahen-page .impression_content .balloon {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #023859;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 10px;
}
.clahen-page .impression_content .balloon .comment {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.clahen-page .impression_content .balloon .comment:first-child {
  margin-bottom: 1rem;
}
.clahen-page .impression_content .balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
  z-index: 2;
}
.clahen-page .impression_content .balloont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #555;
  z-index: 1;
}
.clahen-page .impression_content .comment {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.clahen-page .other-merit {
  margin-top: 2rem;
}
.clahen-page .other-merit .heading-level3 {
  color: #0388a6;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .other-merit .heading-level3 {
    font-size: 32px;
  }
}
.clahen-page .other-merit .contents {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .clahen-page .other-merit .contents {
    width: 70%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.clahen-page .other-merit .content .heading-level4 {
  font-size: 18px;
  font-weight: bold;
  color: #023859;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 5px solid #04adbf;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .clahen-page .other-merit .content .heading-level4 {
    font-size: 24px;
  }
}
.clahen-page .other-merit .content p {
  color: #023859;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .other-merit .content p {
    font-size: 18px;
  }
}
.clahen-page .security .heading-level2 {
  color: #0388a6;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .clahen-page .security .heading-level2 {
    font-size: 32px;
  }
}
.clahen-page .security .lead {
  color: #023859;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .security .lead {
    font-size: 24px;
  }
}
.clahen-page .security .lead .pink {
  color: #f2637e;
}
.clahen-page .security .security_contents {
  display: flex;
  margin-top: 1rem;
}
.clahen-page .security .security_contents .security_content {
  width: 50%;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .security .security_contents .security_content {
    padding: 1rem;
  }
}
.clahen-page .security .security_contents .security_content .icon {
  width: 20%;
  min-width: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .clahen-page .security .security_contents .security_content .icon {
    max-width: 60px;
  }
}
.clahen-page .security .security_contents .security_content h3 {
  color: #023859;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .security .security_contents .security_content h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.clahen-page .security .security_contents .security_content p {
  color: #023859;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .clahen-page .security .security_contents .security_content p {
    padding: 1rem;
  }
}
.clahen-page .price {
  background-color: #ebf7fa;
}
.clahen-page .price .bg-white {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .clahen-page .price .bg-white {
    width: 80%;
    max-width: 605px;
    margin: 0 auto;
  }
}
.clahen-page .price .bg-white .heading-level2 {
  color: #0388a6;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .clahen-page .price .bg-white .heading-level2 {
    font-size: 32px;
  }
}
.clahen-page .price .bg-white .text {
  color: #023859;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .clahen-page .price .bg-white .text {
    font-size: 32px;
  }
}
.clahen-page .price .bg-white .text span {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .clahen-page .price .bg-white .text span {
    font-size: 62px;
  }
}
.clahen-page .cta {
  background-color: #fff;
}
.clahen-page .cta .text {
  color: #023859;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clahen-page .cta .text {
    font-size: 40px;
  }
}
.clahen-page .cta .img-pc {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
.clahen-page .cta .cta-button {
  width: 80%;
  max-width: 300px;
  background-color: #f2637e;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 32px;
  margin: 3rem auto 0;
  transition-duration: 0.4s;
}
@media screen and (min-width: 768px) {
  .clahen-page .cta .cta-button {
    font-size: 32px;
    max-width: 500px;
    border-radius: 50px;
  }
}
.clahen-page .cta .cta-button:hover {
  transform: scale(1.1);
}

/*
page > forschool
-----------------------------
*/
.forschool {
  font-size: 3.73vw;
}
@media screen and (min-width: 768px) {
  .forschool {
    font-size: 0.97222vw;
  }
}
.forschool .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.forschool .content {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .content {
    padding-top: 4.167vw;
  }
}
.forschool .sp__none {
  display: none;
}
@media screen and (min-width: 768px) {
  .forschool .sp__none {
    display: block;
  }
}
.forschool .sp__block {
  display: block;
}
@media screen and (min-width: 768px) {
  .forschool .sp__block {
    display: none;
  }
}
.forschool .sec-ttl-wrap h2 {
  display: inline-block;
  font-size: 2.22222vw;
  color: #1296c9;
  /* font-family: "source-han-sans-japanese", sans-serif; */
  font-weight: 700;
}
.forschool .sec-ttl-wrap {
  text-align: center;
}
.forschool .sec-ttl-wrap h2 {
  display: inline-block;
  font-size: 7.467vw;
  color: #1296c9;
  /* font-family: "source-han-sans-japanese", sans-serif; */
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .forschool .sec-ttl-wrap h2 {
    font-size: 2.22222vw;
  }
}
.forschool .sec-ttl-wrap p {
  line-height: 2;
  width: 100%;
  max-width: 880px;
  margin: 3.47222vw auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .forschool .sec-ttl-wrap p {
    text-align: center;
    margin-top: 8vw;
  }
}
.forschool .sec-ttl-wrap h2::after {
  content: "";
  display: block;
  position: relative;
  margin: 2.08333vw auto 0;
  margin-top: 8vw;
  width: 44px;
  height: 6px;
  background-image: url(../img/forschool/ttl-dotted.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .forschool .sec-ttl-wrap h2::after {
    margin: 2.08333vw auto 0;
  }
}
.forschool .hero {
  display: block;
  position: relative;
  margin-top: 70px;
  text-align: center;
  padding: 52vw 4.93vw 16vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/forschool/sp-kv.png);
}
@media screen and (min-width: 768px) {
  .forschool .hero {
    display: block;
    position: relative;
    margin-top: 90px;
    padding: 9.4vw 15.97vw 6.32vw;
    background-image: url(../img/forschool/pc-kv.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: right;
    overflow: hidden;
  }
}
.forschool .hero .copy div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .forschool .hero .copy div {
    position: relative;
    display: inline-block;
    width: 33.333vw;
    z-index: 1;
    text-align: left;
  }
}
.forschool .hero .copy div h2 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  font-size: 8vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .forschool .hero .copy div h2 {
    font-size: 2.9861vw;
  }
}
.forschool .hero .copy div h2 span {
  color: #1296c9;
}
.forschool .hero .copy div p {
  text-align: left;
  font-size: 3.73333vw;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .forschool .hero .copy div p {
    line-height: 2;
    padding-top: 2.777777vw;
    max-width: 448px;
    font-size: 10px;
  }
}
.forschool .hero .copy div .btn-wrap {
  margin-top: 10.66666vw;
}
@media screen and (min-width: 768px) {
  .forschool .hero .copy div .btn-wrap {
    margin-top: 3.47222vw;
  }
}
.forschool .hero .copy div .btn-wrap .btn {
  font-size: 12px;
  display: block;
  width: 48vw;
  height: 16vw;
  text-align: center;
  line-height: 16vw;
  background-color: #1296c9;
  border-radius: 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .hero .copy div .btn-wrap .btn {
    width: 12.5vw;
    height: 4.167vw;
    line-height: 4.167vw;
    border-radius: 2.08333vw;
  }
}
.forschool .hero .copy div .btn-wrap a {
  color: #ffffff;
  font-weight: 500;
}
.forschool .hero .copy .img {
  display: block;
  width: 44.27vw;
  position: absolute;
  height: auto;
  bottom: 0.4vw;
  right: -4vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .forschool .hero .copy .img {
    width: 19.31vw;
    right: 9.72vw;
    bottom: -2.92vw;
  }
}
.forschool .service {
  padding: 16vw 5.33333vw;
}
@media screen and (min-width: 768px) {
  .forschool .service {
    padding: 12vw 13.19444vw;
  }
}
.forschool .service .sec-ttl-wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .forschool .service .sec-ttl-wrap {
    width: 80%;
    max-width: 650px;
    margin: 0 auto;
  }
}
.forschool .service .sec-ttl-wrap h2 p {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-size: 3.46666vw;
  padding-top: 5.33333vw;
  margin-top: 0;
  color: #222222;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .forschool .service .sec-ttl-wrap h2 p {
    font-size: 0.97222vw;
    padding-top: 1.7361vw;
  }
}
.forschool .service .sec-ttl-wrap .sub-ttl {
  text-align: center;
  padding-top: 10.66666vw;
}
@media screen and (min-width: 768px) {
  .forschool .service .sec-ttl-wrap .sub-ttl {
    padding-top: 3.47222vw;
  }
}
.forschool .service .sec-ttl-wrap .sub-ttl h3 {
  font-size: 5.6vw;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .forschool .service .sec-ttl-wrap .sub-ttl h3 {
    font-size: 1.666666vw;
    text-align: center;
  }
}
.forschool .service .sec-ttl-wrap .sub-ttl p {
  padding-top: 6.667vw;
  margin-top: 0;
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .forschool .service .sec-ttl-wrap .sub-ttl p {
    padding-top: 2.08333vw;
    text-align: center;
    line-height: 2;
  }
}
.forschool .service .service-list {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .forschool .service .service-list {
    flex-direction: row;
  }
}
.forschool .service .service-list .service-item {
  position: relative;
  width: 100%;
  margin-right: 1.39vw;
  margin-top: 5.33333vw;
  padding: 8vw 6.667vw 6.667vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .forschool .service .service-list .service-item {
    width: calc(33.333% - 1.39vw);
    padding: 2.08333vw 1.7361vw 1.7361vw;
    border-radius: 0.69444vw;
    margin-top: 0;
  }
}
.forschool .service .service-list .service-item:nth-child(1) {
  background-color: #faf8f2;
  margin-top: 0;
}
.forschool .service .service-list .service-item:nth-child(2) {
  background-color: #ecf7fb;
}
.forschool .service .service-list .service-item:nth-child(3) {
  background-color: #f3f3f3;
  margin-right: 0;
}
.forschool .service .service-list .service-item .txt-wrap {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .service .service-list .service-item .txt-wrap {
    padding-top: 2.08333vw;
  }
}
.forschool .service .service-list .service-item .txt-wrap h4 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 4.53333vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .forschool .service .service-list .service-item .txt-wrap h4 {
    font-size: 1.180555vw;
  }
}
.forschool .service .service-list .service-item .txt-wrap p {
  font-size: 3.6vw;
  line-height: 1.8;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .forschool .service .service-list .service-item .txt-wrap p {
    font-size: 0.94vw;
  }
}
.forschool .service .content .service-list .service-item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 9.3333vw;
  height: 9.3333vw;
  background-image: url(../img/forschool/check-y.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .forschool .service .content .service-list .service-item:nth-child(1)::after {
    width: 2.431vw;
    height: 2.431vw;
  }
}
.forschool .service .content .service-list .service-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 9.3333vw;
  height: 9.3333vw;
  background-image: url(../img/forschool/check-b.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .forschool .service .content .service-list .service-item:nth-child(2)::after {
    width: 2.431vw;
    height: 2.431vw;
  }
}
.forschool .service .content .service-list .service-item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 9.3333vw;
  height: 9.3333vw;
  background-image: url(../img/forschool/check-y.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .forschool .service .content .service-list .service-item:nth-child(3)::after {
    width: 2.431vw;
    height: 2.431vw;
  }
}
.forschool .point {
  padding: 16vw 5.33333vw;
  background-color: #faf8f2;
}
@media screen and (min-width: 768px) {
  .forschool .point {
    padding: 12vw 13.19444vw;
  }
}
.forschool .point .sec-ttl-wrap {
  text-align: center;
}
.forschool .point .sec-ttl-wrap h2 {
  display: inline-block;
  font-size: 7.467vw;
  color: #1296c9;
  /* font-family: "source-han-sans-japanese", sans-serif; */
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .forschool .point .sec-ttl-wrap h2 {
    font-size: 2.22222vw;
  }
}
.forschool .point .sec-ttl-wrap p {
  line-height: 2;
  width: 100%;
  max-width: 880px;
  margin: 3.47222vw auto 0;
  text-align: left;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .point .sec-ttl-wrap p {
    text-align: center;
    margin-top: 4vw;
  }
}
.forschool .point .content {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .forschool .point .content {
    padding-top: 4vw;
  }
}
.forschool .point .content .point-list .point-item {
  display: block;
  width: 100%;
  position: relative;
  background-color: #ffffff;
  border-radius: 0.69444vw;
  padding: 11.467vw 5.33333vw 8vw;
  margin-top: 1.7361vw;
  margin-top: 12.8vw;
  box-shadow: 0px 3px 5px 0px rgba(185, 185, 185, 0.16);
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item {
    width: 68.75vw;
    padding: 3.47222vw 2.777777vw 3.47222vw 8.47vw;
    margin-top: 1.7361vw;
  }
}
.forschool .point .content .point-list .point-item:nth-child(1) {
  transform: translateX(0);
  margin-top: 12.8vw;
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item:nth-child(1) {
    transform: translateX(2.777777vw);
    margin-top: 0;
  }
}
.forschool .point .content .point-list .point-item:nth-child(2) {
  transform: translateX(0);
  margin-top: 12.8vw;
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item:nth-child(2) {
    transform: translateX(7.63888vw);
    margin-top: 1.7361vw;
  }
}
.forschool .point .content .point-list .point-item:nth-child(3) {
  transform: translateX(0);
  margin-top: 12.8vw;
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item:nth-child(3) {
    transform: translateX(2.777777vw);
    margin-top: 1.7361vw;
  }
}
.forschool .point .content .point-list .point-item .box-num {
  position: absolute;
  top: -4.8vw;
  left: 5.33333vw;
  width: 32.53vw;
  height: 9.6vw;
  line-height: 9.6vw;
  border-radius: 4.8vw;
  letter-spacing: 2.5vw;
  background-color: #1296c9;
  text-align: center;
  box-shadow: 0px 3px 5px 0px rgba(185, 185, 185, 0.16);
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item .box-num {
    top: 3.47222vw;
    left: -2.777777vw;
    width: 8.47vw;
    height: 2.5vw;
    line-height: 2.5vw;
    border-radius: 1.25vw;
  }
}
.forschool .point .content .point-list .point-item .box-num p {
  font-family: "din-2014", sans-serif;
  font-size: 3.46666vw;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item .box-num p {
    font-size: 0.97222vw;
  }
}
.forschool .point .content .point-list .point-item .txt-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.forschool .point .content .point-list .point-item .txt-wrap h3 {
  display: block;
  width: 100%;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 4.53333vw;
  line-height: 1.6;
  font-weight: 700;
  color: #332714;
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item .txt-wrap h3 {
    width: 19.93vw;
    font-size: 1.25vw;
  }
}
.forschool .point .content .point-list .point-item .txt-wrap p {
  width: 100%;
  padding-top: 5.33333vw;
  padding-left: 0;
  border-left: none;
  font-size: 3vw;
}
@media screen and (min-width: 768px) {
  .forschool .point .content .point-list .point-item .txt-wrap p {
    display: block;
    width: 35.76vw;
    line-height: 1.8;
    border-left: 1px solid #ebebeb;
    padding-top: 0;
    padding-left: 2.08333vw;
    font-size: 1vw;
  }
}
.forschool .flow {
  padding: 16vw 0 16vw 5.33333vw;
}
@media screen and (min-width: 768px) {
  .forschool .flow {
    padding: 12vw 13.19444vw;
  }
}
.forschool .flow .content {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .flow .content {
    padding-top: 4.167vw;
  }
}
.forschool .flow .pc-content .flow-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.forschool .flow .pc-content .flow-list .flow-item {
  width: 33.333%;
  position: relative;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num {
  font-size: 0.97222vw;
  width: 3.82vw;
  height: 3.82vw;
  border-radius: 50%;
  font-family: "din-2014", sans-serif;
  text-align: center;
  line-height: 1.4em;
  padding-top: 0.3472222222vw;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num-01 {
  background-color: #b7dfef;
  color: #1296c9;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.91vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: inherit;
  z-index: -1;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num-02 {
  background-color: #70c0de;
  color: #ffffff;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num-03 {
  background-color: #1296c9;
  color: #ffffff;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.91vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: inherit;
  z-index: -1;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .num span {
  display: block;
  font-size: 1.666666vw;
  /* color: inherit; */
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .flow-child {
  width: 21.53vw;
  padding-top: 1.388888vw;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .flow-child .img img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 12.78vw;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .flow-child .txt-area h3 {
  font-size: 1.180555vw;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #332714;
  margin-top: 1rem;
}
.forschool .flow .pc-content .flow-list .flow-item .flow-item-wrap .flow-child .txt-area p {
  padding-top: 1.04167vw;
  line-height: 1.8;
  font-size: 0.9vw;
}
.forschool .flow .sp-content .swiper-wrapper .swiper-slide .flow-item-wrap .num-01 {
  background-color: #b7dfef;
  color: #1296c9;
}
.forschool .flow .sp-content .swiper-wrapper .swiper-slide .flow-item-wrap .num-02 {
  background-color: #70c0de;
  color: #ffffff;
}
.forschool .flow .sp-content .swiper-wrapper .swiper-slide .flow-item-wrap .num-03 {
  background-color: #1296c9;
  color: #ffffff;
}
.forschool .flow .sp-content .swiper-wrapper .swiper-slide .flow-item-wrap .num {
  font-size: 3.2vw;
  width: 13.33333vw;
  height: 13.33333vw;
  border-radius: 50%;
  font-family: "din-2014", sans-serif;
  text-align: center;
  line-height: 1.4em;
  padding-top: 1.867vw;
}
.forschool .flow .sp-content .swiper-wrapper .swiper-slide .flow-item-wrap .num::before {
  content: "";
  display: block;
  position: absolute;
  top: 6.67vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: inherit;
  z-index: -1;
}
.forschool .flow .sp-content .swiper-wrapper .swiper-slide .flow-item-wrap .num span {
  display: block;
  font-size: 4.8vw;
  color: inherit;
}
.forschool .flow .sp-content .swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  position: relative;
  margin-top: 8vw;
  width: calc(100% - 5.33vw);
}
.forschool .plan {
  padding: 16vw 5.33333vw;
  background-color: #faf8f2;
  background: url(../img/forschool/plan-bg.svg);
  background-repeat: repeat;
}
@media screen and (min-width: 768px) {
  .forschool .plan {
    padding: 12vw 13.19444vw;
  }
}
.forschool .plan .sec-ttl-wrap h2 {
  color: #332714;
}
.forschool .plan .content.flex {
  justify-content: center;
  align-items: stretch;
}
.forschool .plan .content.flex .plan-wrap.left {
  display: block;
  background-color: #ffffff;
  border-radius: 2.6666666667vw;
  box-shadow: 3px 3px 16px 0px rgba(0, 0, 0, 0.16);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left {
    border-radius: 0.69444vw;
    width: 40%;
  }
}
.forschool .plan .content.flex .plan-wrap.left .ttl {
  display: block;
  width: 100%;
  height: 16vw;
  line-height: 16vw;
  background-color: #1296c9;
  text-align: center;
  border-radius: 2.6666666667vw 2.6666666667vw 0 0;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .ttl {
    height: 4.167vw;
    line-height: 4.167vw;
    border-radius: 0.69444vw 0.69444vw 0 0;
  }
}
.forschool .plan .content.flex .plan-wrap.left .ttl h3 {
  color: #ffffff;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 4.26666vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .ttl h3 {
    font-size: 1.11111vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap {
  padding: 5.33333vw 4vw 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap {
    padding: 1.388888vw 2.08333vw 2.08333vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item {
  display: block;
  text-align: center;
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item h4 {
  font-size: 4.26666vw;
  font-family: "source-han-sans-japanese", sans-serif;
  color: #332714;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item h4 {
    font-size: 1.11111vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item small {
  font-size: 13px;
  font-family: "din-2014", sans-serif;
  color: #332714;
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item .price {
  font-size: 5.867vw;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  color: #332714;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item .price {
    font-size: 1.527777vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item .price span {
  font-size: 58px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-item .price span {
    font-size: 4.028vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail {
  width: 100%;
  border-top: 1px solid #cccccc;
  margin: auto;
  margin-top: 20px;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail {
    width: 15.97vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail p {
  font-weight: 700;
  color: #332714;
  padding-bottom: 3px;
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 4vw;
  margin-top: 3.2vw;
  margin-right: 18px;
  line-height: 1.67vw;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail li {
    font-size: 1.04167vw;
    margin-top: 1.04167vw;
  }
}
.forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail li::before {
  content: "";
  display: inline-block;
  width: 6.4vw;
  height: 6.4vw;
  background-image: url(../img/forschool/check-b.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .forschool .plan .content.flex .plan-wrap.left .plan-item-wrap .plan-detail li::before {
    width: 1.67vw;
    height: 1.67vw;
    margin-right: 0.69444vw;
  }
}
.forschool .plan .movie-detail {
  margin-top: 10.66666vw;
  padding: 6.667vw 4vw;
  background-color: #ffffff;
  border-radius: 2.6666666667vw;
  border: 1px solid #d5d5d5;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail {
    margin-top: 4.167vw;
    padding: 1.388888vw 2.08333vw;
    border-radius: 0.69444vw;
  }
}
.forschool .plan .movie-detail h3 {
  display: inline-block;
  font-size: 3.73333vw;
  font-weight: 500;
  background-color: #1296c9;
  color: #ffffff;
  padding: 2.6666666667vw 4vw;
  border-radius: 8vw;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail h3 {
    font-size: 0.97222vw;
    padding: 0.69444vw 1.04167vw;
    border-radius: 2.08333vw;
  }
}
.forschool .plan .movie-detail .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5.33333vw;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail .flex {
    margin-top: 1.04167vw;
  }
}
.forschool .plan .movie-detail .flex ul {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail .flex ul {
    width: 23.5vw;
  }
}
.forschool .plan .movie-detail .flex ul li {
  font-size: 3.46666vw;
  line-height: 1.8;
  padding-top: 4vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail .flex ul li {
    font-size: 0.938vw;
    padding-top: 1.04167vw;
  }
}
.forschool .plan .movie-detail .flex ul li::before {
  content: "●";
  display: inline-block;
  padding-right: 3px;
  color: #1296c9;
}
.forschool .plan .movie-detail .flex .image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail .flex .image {
    width: 36.458vw;
  }
}
.forschool .plan .movie-detail .flex .image img {
  width: 100%;
  border-radius: 0.3472222222vw;
  margin: 5px auto;
}
@media screen and (min-width: 768px) {
  .forschool .plan .movie-detail .flex .image img {
    width: calc(50% - 0.59vw);
  }
}
.forschool .faq {
  padding: 16vw 5.33333vw;
}
@media screen and (min-width: 768px) {
  .forschool .faq {
    padding: 12vw 13.19444vw;
  }
}
.forschool .faq .content {
  padding-top: 10.66666vw;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content {
    padding-top: 3.47222vw;
  }
}
.forschool .faq .content .faq-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item {
    margin-bottom: 1.04167vw;
  }
}
.forschool .faq .content .faq-item .faq-headline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 2.6666666667vw;
  padding: 2.133vw;
  background-color: #fff;
  border: 1px solid #dbeff7;
  box-shadow: 0px 3px 5px 0px rgba(185, 185, 185, 0.16);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .faq-headline {
    padding: 0.97222vw 1.388888vw 0.97222vw 1.388888vw;
    border-radius: 0.69444vw;
  }
}
.forschool .faq .content .faq-item .faq-headline::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "Q";
  width: 8vw;
  height: 8vw;
  margin-right: 2.6666666667vw;
  border-radius: 50%;
  background-color: #1296c9;
  color: #ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 4.8vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .faq-headline::before {
    width: 3vw;
    height: 3vw;
    margin-right: 1.7361vw;
    font-size: 1.666666vw;
  }
}
.forschool .faq .content .faq-item .faq-headline::after {
  content: "";
  width: 4vw;
  height: 4vw;
  margin-left: 2.133vw;
  background-image: url(../img/forschool/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.25s linear;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .faq-headline::after {
    width: 1.527777vw;
    height: 1.527777vw;
    margin-left: auto;
  }
}
.forschool .faq .content .faq-item .faq-headline::after .q-text {
  font-weight: 500;
  font-size: 3.73333vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .faq-headline::after .q-text {
    font-size: 0.97222vw;
    line-height: 1.15;
  }
}
.forschool .faq .content .faq-item .faq-headline.js-open {
  transition: all 0.25s linear;
}
.forschool .faq .content .faq-item .faq-headline.js-open::before {
  transition: all 0.25s linear;
}
.forschool .faq .content .faq-item .faq-headline.js-open::after {
  transition: all 0.25s linear;
  transform: rotate(180deg);
  background-image: url(../img/forschool/minus.svg);
}
.forschool .faq .content .faq-item .faq-headline.js-open .q-text {
  transition: all 0.25s linear;
}
.forschool .faq .content .faq-item .answer-hide {
  display: none;
}
.forschool .faq .content .faq-item .answer-hide .answer-wrap {
  width: 100%;
  position: relative;
  display: inline-flex;
  padding: 4.53333vw 5.33333vw 4.53333vw 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .answer-hide .answer-wrap {
    padding: 1.388888vw 1.388888vw 2.777777vw;
  }
}
.forschool .faq .content .faq-item .answer-hide .answer-wrap .a-text {
  display: inline-block;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-size: 3.73333vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .answer-hide .answer-wrap .a-text {
    font-size: 0.97222vw;
    line-height: 2;
  }
}
.forschool .faq .content .faq-item .answer-wrap::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "A";
  width: 8vw;
  height: 8vw;
  background-color: #ffffff;
  margin-right: 2.6666666667vw;
  border-radius: 50%;
  border: 1px solid #ea4955;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 4vw;
  color: #ea4955;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .forschool .faq .content .faq-item .answer-wrap::before {
    width: 3vw;
    height: 3vw;
    margin-right: 1.388888vw;
    font-size: 1.666666vw;
  }
}
.forschool .cta {
  padding: 16vw 4vw;
  background-color: #faf5e7;
}
@media screen and (min-width: 768px) {
  .forschool .cta {
    padding: 4.167vw 20px 4.167vw;
  }
}
.forschool .cta .content {
  background-color: #ffffff;
  margin-top: 8vw;
  margin: 3.47222vw auto 5.555555vw;
  padding: 5.33333vw 4vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .forschool .cta .content {
    max-width: 50vw;
    border-radius: 0.69444vw;
    padding: 3.47vw 7.99vw 4.17vw;
  }
}
.forschool .cta .content .cta-text {
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 7vw;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .forschool .cta .content .cta-text {
    font-size: 2.9861vw;
  }
}
.forschool .cta .content .cta-text .blue {
  color: #1296c9;
}
.forschool .cta .content .cta-img {
  width: 56vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .forschool .cta .content .cta-img {
    width: 24vw;
  }
}
.forschool .cta .content .btn-wrap {
  margin-top: 2vw;
}
.forschool .cta .content .btn-wrap .btn {
  display: block;
  width: 48vw;
  height: 16vw;
  text-align: center;
  line-height: 16vw;
  background-color: #1296c9;
  border-radius: 8vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .forschool .cta .content .btn-wrap .btn {
    width: 20vw;
    height: 4.167vw;
    line-height: 4.167vw;
    border-radius: 2.08333vw;
  }
}
.forschool .cta .content .btn-wrap .btn a {
  color: #ffffff;
}

/*
page > single
------------------------------
*/
.news-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-wrapper {
    width: 1090px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.news-wrapper .sidebar {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-wrapper .sidebar {
    width: 300px;
  }
}

.news-wrapper .box-white,
.sidebar-wrapper .box-white {
  background-color: var(--color-bg-white);
  border-radius: 10px;
  padding: 18px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-wrapper .box-white,
.sidebar-wrapper .box-white {
    padding: 26px 42px;
  }
}

.sidebar-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .sidebar-wrapper {
    padding: 0;
    margin-top: 42px;
  }
}

.sidebar-wrapper .box-white {
  border: solid 1px #bababa;
  border-radius: 10px;
}

.sidebar .item {
  padding: 0 3.773%;
  padding-bottom: 36px;
}

.sidebar .item:not(:last-of-type) {
  border-bottom: 1px solid #bababa;
  margin-bottom: 42px;
}

.sidebar-list {
  padding: 0 7.718%;
  font-weight: 500;
  color: #555555;
}

.sidebar-list a {
  display: inline-block;
  padding-right: 1em;
  line-height: 2.562;
}

.sidebar-list a::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8125rem;
  color: #555555;
}

.cat-list > li {
  min-width: 40px;
  padding: 5px;
  margin-bottom: 0.5em;
  background-color: #f3f3f3;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
}

.cat-list > li:not(:last-of-type) {
  margin-right: 0.923em;
}

.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  font-size: 0.8125rem;
  color: #555555;
}
.post-header time {
  margin-bottom: 0.5em;
}
.post-header .cat-list {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .post-header .cat-list {
    font-size: 0.875rem;
  }
}

.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  font-size: 0.875rem;
  color: #555555;
}

.post-title {
  margin-bottom: 0.718em;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.468;
}
@media screen and (min-width: 768px) {
  .post-title {
    font-size: 2rem;
  }
}

.post-wrapper {
  line-height: 1.75;
  letter-spacing: 0.11em;
}
.post-wrapper > * {
  margin-bottom: 36px;
}
.post-wrapper h2 {
  padding-left: 1.166em;
  font-size: 1.125rem;
  border-left: 3px solid #333;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .post-wrapper h2 {
    font-size: 1.5rem;
  }
}
.post-wrapper h3 {
  padding: 10px 4.444%;
  margin-bottom: 1.318em;
  background-color: #1a8cbc;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .post-wrapper h3 {
    font-size: 1.375rem;
  }
}
.post-wrapper h4 {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
  line-height: 1.5;
  color: #333;
}
.post-wrapper h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #1a8cbc;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .post-wrapper h4 {
    font-size: 1.25rem;
  }
}
.post-wrapper .images-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-wrapper .images-wrapper .col2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.post-wrapper .images-wrapper img {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .post-wrapper .images-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    width: 300px;
  }
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-top: 28px;
  margin-left: -2%;
  border-top: 1px dashed #666666;
  border-bottom: 1px dashed #666666;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .page-nav {
    font-size: 0.875rem;
    padding: 10px 10px;
  }
}
.page-nav > li {
  min-width: 5em;
}
.page-nav > li:first-of-type a::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.page-nav a {
  display: inline-block;
  min-width: 5em;
  padding: 5px 14px;
  position: relative;
}
.page-nav a.to-archive {
  font-weight: bold;
  color: #333;
}
.page-nav a.to-archive::after {
  content: none;
}
.page-nav a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.news-title {
  margin-bottom: 1em;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.25;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .news-title {
    font-size: 1.25rem;
  }
}

.news-list {
  width: 100%;
  margin-left: 0;
  /* 共通のスタイル */
  /* 3:2（投稿記事用） */
  /* 1:1（一覧ページ用） */
}
.news-list > li {
  padding-bottom: 18px;
  border-bottom: 1px solid #bababa;
}
.news-list > li:not(:last-of-type) {
  margin-bottom: 16px;
}
.news-list a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 3.193%;
  position: relative;
}
.news-list a .text::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #e5e5e5 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.news-list .thumbnail {
  position: relative;
  overflow: hidden;
  display: block;
}
.news-list .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像を枠内に収める */
}
.news-list .thumbnail-3-2 {
  aspect-ratio: 3/2; /* CSSでアスペクト比を指定 */
}
.news-list .thumbnail-1-1 {
  aspect-ratio: 6/4;
  width: 17.288%;
  margin-right: 6.101%;
  line-height: 1;
}
.news-list .text {
  flex: 1 1 0;
  line-height: 1.687;
}
.news-list .date {
  font-size: 0.8125rem;
  color: #808080;
}

/*
page > slq
------------------------------
*/
.slq-page {
  padding-top: 80px;
  color: #162b3d;
}
@media screen and (min-width: 768px) {
  .slq-page {
    padding-top: 100px;
  }
}
.slq-page h2 {
  color: #4393d9;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .slq-page h2 {
    font-size: 32px;
  }
}
.slq-page .first-visual {
  position: relative;
  background-image: url("../img/slq/img-kv.jpg");
  background-repeat: no-repeat;
  background-size: 185%;
  background-position: center;
  height: 50vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .slq-page .first-visual {
    height: 60vh;
    background-size: cover;
  }
}
.slq-page .first-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.slq-page .first-visual .text-content {
  position: relative;
  z-index: 2;
  color: white;
}
@media screen and (min-width: 768px) {
  .slq-page .first-visual .text-content {
    width: 60%;
  }
}
.slq-page .first-visual .text-content h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.slq-page .first-visual .text-content h2 {
  color: #ffffff;
  font-size: 4.6vw;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .slq-page .first-visual .text-content h2 {
    font-size: 2.5vw;
  }
}
.slq-page .first-visual .text-content h2 span {
  display: inline-block;
}
.slq-page .top-cta {
  background-color: #f3f4da;
}
.slq-page .top-cta .pc-flex {
  display: block;
}
@media screen and (min-width: 768px) {
  .slq-page .top-cta .pc-flex {
    display: flex;
    width: 80%;
    margin: 0 auto;
  }
}
.slq-page .top-cta .text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .slq-page .top-cta .text {
    width: 50%;
    font-size: 27px;
    text-align: left;
    padding: 0 0 0 2rem;
  }
}
.slq-page .top-cta .text .blue {
  color: #4393d9;
}
.slq-page .top-cta .text .blue .small {
  font-size: 16px;
}
.slq-page .top-cta .img-content {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .slq-page .top-cta .img-content {
    width: 50%;
    text-align: center;
  }
  .slq-page .top-cta .img-content img {
    width: 80%;
    margin: 0 auto;
  }
}
.slq-page .top-cta .btn-content {
  margin-top: 2rem;
}
.slq-page .top-cta .btn-content .top-cta-btn-contact {
  background-color: #4393d9;
  text-align: center;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .slq-page .top-cta .btn-content .top-cta-btn-contact {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.slq-page .children-opinion h2 {
  color: #162b3d;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .slq-page .children-opinion h2 {
    font-size: 32px;
    line-height: 1.6;
  }
}
.slq-page .children-opinion .img-content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .slq-page .children-opinion .img-content {
    width: 70%;
    margin: 2rem auto 0;
  }
}
.slq-page .about {
  background-color: #f3f4da;
}
.slq-page .about .about-detail .img-content {
  width: 90%;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  .slq-page .about .about-detail .img-content {
    width: 80%;
    max-width: 435px;
  }
}
.slq-page .about .about-detail .text-detail {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .slq-page .about .about-detail .text-detail {
    font-size: 20px;
    padding: 24px;
  }
}
.slq-page .about .slq-possible h2 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-possible h2 {
    margin-top: 96px;
  }
}
.slq-page .about .slq-possible .content {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-possible .content {
    margin-top: 56px;
  }
}
.slq-page .about .slq-possible .content .item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-possible .content .item {
    width: 24%;
  }
}
.slq-page .about .slq-possible .content .item img {
  width: 50%;
}
.slq-page .about .slq-possible .content .item .text {
  text-align: left;
  line-height: 1.6;
  padding-top: 1rem;
}
.slq-page .about .slq-discovery h2 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-discovery h2 {
    margin-top: 96px;
  }
}
.slq-page .about .slq-discovery .text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-discovery .text {
    width: 80%;
    max-width: 552px;
    font-size: 24px;
    margin: 2rem auto 0;
  }
}
.slq-page .about .slq-discovery .content {
  width: 100%;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-discovery .content {
    margin-top: 56px;
    width: 80%;
  }
}
.slq-page .about .slq-discovery .content .item {
  width: 155px;
  height: 80px;
  color: #ffffff;
  font-weight: bold;
  background-color: #d3d92b;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .slq-page .about .slq-discovery .content .item {
    width: 19%;
  }
}
.slq-page .implementation-flow .flow_design08 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.slq-page .implementation-flow .flow08 {
  padding-left: 0;
}
.slq-page .implementation-flow .flow08 > li {
  list-style-type: none;
  border-radius: 15px;
  background: #f3f4da;
  position: relative;
  padding: 20px;
}
.slq-page .implementation-flow .flow08 > li:not(:last-child) {
  margin-bottom: 20px;
}
.slq-page .implementation-flow .flow08 > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 60px;
  height: 30px;
  background-image: url("../img/slq/icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -15px;
}
.slq-page .implementation-flow .flow08 > li dl {
  display: block;
}
@media screen and (min-width: 768px) {
  .slq-page .implementation-flow .flow08 > li dl {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.slq-page .implementation-flow .flow08 > li dl dt,
.slq-page .implementation-flow .flow08 > li dl dd {
  width: 100%;
}
.slq-page .implementation-flow .flow08 > li dl dt {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .slq-page .implementation-flow .flow08 > li dl dt {
    width: 50%;
  }
}
.slq-page .implementation-flow .flow08 > li dl dt span.small {
  font-size: 0.8em;
}
.slq-page .implementation-flow .flow08 > li dl dd {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .slq-page .implementation-flow .flow08 > li dl dd {
    width: 50%;
  }
}
.slq-page .implementation-flow .flow08 > li .icon08 {
  color: #4393d9;
  margin-right: 0.5em;
}
.slq-page .implementing-agency .img-content {
  margin: 1rem auto 0;
}
.slq-page .implementing-agency .text-content {
  padding: 1rem;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .slq-page .implementing-agency .text-content {
    max-width: 650px;
    margin: 0 auto;
  }
}
.slq-page .implementing-agency .text-content .note-paragraph {
  position: relative;
  padding-left: 1em;
}
.slq-page .implementing-agency .text-content .note-paragraph.has-asterisk::before {
  content: "＊";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.slq-page .application-process .flow_design08 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.slq-page .application-process .flow08 {
  padding-left: 0;
}
.slq-page .application-process .flow08 > li {
  list-style-type: none;
  border-radius: 15px;
  background: #f3f4da;
  position: relative;
  padding: 20px;
}
.slq-page .application-process .flow08 > li:not(:last-child) {
  margin-bottom: 20px;
}
.slq-page .application-process .flow08 > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 60px;
  height: 30px;
  background-image: url("../img/slq/icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -15px;
}
.slq-page .application-process .flow08 > li dl {
  display: block;
}
@media screen and (min-width: 768px) {
  .slq-page .application-process .flow08 > li dl {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.slq-page .application-process .flow08 > li dl dt,
.slq-page .application-process .flow08 > li dl dd {
  width: 100%;
}
.slq-page .application-process .flow08 > li dl dt {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .slq-page .application-process .flow08 > li dl dt {
    width: 40%;
  }
}
.slq-page .application-process .flow08 > li dl dt span.small {
  font-size: 0.8em;
}
.slq-page .application-process .flow08 > li dl dd {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .slq-page .application-process .flow08 > li dl dd {
    width: 60%;
  }
}
.slq-page .application-process .flow08 > li .icon08 {
  color: #4393d9;
  margin-right: 0.5em;
}
.slq-page .price {
  background-color: #8ebee8;
}
.slq-page .price .content {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .slq-page .price .content {
    width: 70%;
    margin: 0 auto;
  }
}
.slq-page .price .content .text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-top: 1rem;
}
.slq-page .price .content .text span {
  display: inline-block;
}
.slq-page .price .content .text span span.big {
  color: #d94a43;
  font-size: 40px;
}
.slq-page .price .content .caption {
  font-size: 10px;
  margin-top: 1rem;
  text-align: center;
}
.slq-page .bottom-cta .content {
  background-color: #d7dc65;
  border-radius: 10px;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .slq-page .bottom-cta .content {
    width: 70%;
    margin: 0 auto;
    padding: 2rem 2rem;
  }
}
.slq-page .bottom-cta .content .text {
  font-size: 4.5vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .slq-page .bottom-cta .content .text {
    font-size: 24px;
  }
}
.slq-page .bottom-cta .content .img-content {
  width: 80%;
  margin: 1rem auto;
}
.slq-page .bottom-cta .content .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1rem;
  text-align: center;
}
.slq-page .bottom-cta .content .title .blue {
  color: #4393d9;
}
.slq-page .bottom-cta .content .title .blue .small {
  font-size: 16px;
}
.slq-page .bottom-cta .content .btn-content {
  margin-top: 2rem;
}
.slq-page .bottom-cta .content .btn-content .top-cta-btn-contact {
  background-color: #4393d9;
  text-align: center;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .slq-page .bottom-cta .content .btn-content .top-cta-btn-contact {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/*
page > goodmforteacher
------------------------------
*/
.for-teacher {
  padding-top: 80px;
  color: #162b3d;
}
@media screen and (min-width: 768px) {
  .for-teacher {
    padding-top: 100px;
  }
}
.for-teacher .first-visual {
  position: relative;
  background-image: url("../img/for-teacher/img-fv-sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 560px;
}
@media screen and (min-width: 768px) {
  .for-teacher .first-visual {
    background-image: url("../img/for-teacher/img-fv-pc.jpg");
    height: 80vh;
    background-size: cover;
    background-position: center;
    padding: 0 5vw;
  }
}
.for-teacher .first-visual .l-container {
  position: relative;
}
.for-teacher .first-visual .text-content {
  color: #ffffff;
  padding: 1rem;
  display: inline-block;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.for-teacher .first-visual .text-content h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.for-teacher .first-visual .text-content h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .for-teacher .first-visual .text-content h2 {
    font-size: 32px;
  }
}
.for-teacher .first-visual .text-content h2.noto-serif-jp {
  font-family: "Klee One", "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.for-teacher .first-visual .text-content h2 span {
  display: inline-block;
}
.for-teacher .first-visual .btn-content {
  width: 80%;
  margin-top: 13rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .for-teacher .first-visual .btn-content {
    width: 40%;
    margin-top: 0rem;
    left: 5%;
    transform: translateX(0%);
  }
}
.for-teacher .first-visual .btn-content img {
  transition: transform 0.6s ease;
}
.for-teacher .first-visual .btn-content:hover img {
  transform: scale(1.1);
}
.for-teacher .top-cta .pc-flex {
  display: block;
}
@media screen and (min-width: 768px) {
  .for-teacher .top-cta .pc-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.for-teacher .top-cta .pc-flex .img-content {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .top-cta .pc-flex .img-content {
    width: 48%;
  }
  .for-teacher .top-cta .pc-flex .img-content img {
    width: 80%;
    margin: 0 auto;
  }
}
.for-teacher .top-cta .pc-flex .text-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .for-teacher .top-cta .pc-flex .text-content {
    width: 48%;
  }
}
.for-teacher .top-cta .pc-flex .text-content h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .for-teacher .top-cta .pc-flex .text-content h2 {
    font-size: 20px;
    text-align: left;
  }
}
.for-teacher .top-cta .pc-flex .text-content .text {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .for-teacher .top-cta .pc-flex .text-content .text {
    width: 100%;
    font-size: 18px;
    line-height: 1.8;
  }
}
.for-teacher .top-cta .pc-flex .text-content .text:first-of-type {
  margin-top: 24px;
}
.for-teacher .about {
  background-color: #c1e2d7;
}
.for-teacher .about h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .for-teacher .about h2 {
    font-size: 32px;
  }
}
.for-teacher .about h2 span {
  display: inline-block;
}
.for-teacher .about .h2-wrapper {
  text-align: center;
}
.for-teacher .about .h2-wrapper .underlined-h2 {
  display: inline-grid;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .about .h2-wrapper .underlined-h2 {
    font-size: 32px;
    text-align: center;
  }
}
.for-teacher .about .h2-wrapper .underlined-h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #e78cb3, #f7d7e1);
  border-radius: 2px;
}
.for-teacher .about .about-content {
  margin-top: 2rem;
}
.for-teacher .about .about-content .about-item {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .for-teacher .about .about-content .about-item {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
  }
}
.for-teacher .about .about-content .about-item .img-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .for-teacher .about .about-content .about-item .img-content {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .for-teacher .about .about-content .about-item .text-content {
    width: 55%;
  }
}
.for-teacher .about .about-content .about-item .text-content h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 24px;
}
.for-teacher .about .about-content .about-item .text-content .text {
  margin-top: 24px;
}
.for-teacher .about .about-content .about-item .youtube-content {
  margin: 0 auto;
}
.for-teacher .about .about-content .about-item .youtube-content iframe {
  width: 100%;
  max-width: 306px;
  height: 172px;
}
@media screen and (min-width: 768px) {
  .for-teacher .about .about-content .about-item .youtube-content iframe {
    max-width: 406px;
    height: 228px;
  }
}
.for-teacher .about .about-content .about-item .youtube-text-content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .for-teacher .about .about-content .about-item .youtube-text-content {
    width: 40%;
  }
}
.for-teacher .about .about-content .about-item .youtube-text-content h3 {
  font-size: 24px;
  font-weight: bold;
}
.for-teacher .about .about-content .about-item .youtube-text-content span {
  font-size: 20px;
}
.for-teacher .about .about-content .about-item .youtube-text-content .dotted-line {
  border-bottom: 2px dashed #4a7f7c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .for-teacher .about .about-content .about-item .youtube-content {
    width: 55%;
  }
}
.for-teacher .about .about-content .about-item:first-of-type {
  margin-top: 0;
}
.for-teacher .impression .h2-wrapper {
  text-align: center;
}
.for-teacher .impression .h2-wrapper .underlined-h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .impression .h2-wrapper .underlined-h2 {
    font-size: 32px;
    text-align: center;
  }
}
.for-teacher .impression .h2-wrapper .underlined-h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #e78cb3, #f7d7e1);
  border-radius: 2px;
}
.for-teacher .impression .content-wrapper {
  margin-top: 24px;
}
.for-teacher .impression .content-wrapper h3 {
  text-align: center;
}
.for-teacher .impression .content-wrapper h3:last-of-type {
  margin-top: 32px;
}
.for-teacher .impression .impression-content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .for-teacher .impression .impression-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.for-teacher .impression .impression-content .item {
  background-color: #e0f1eb;
  margin-top: 24px;
  padding: 1rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .for-teacher .impression .impression-content .item {
    width: 32%;
  }
}
.for-teacher .impression .impression-content .item .img-content {
  width: 35%;
}
.for-teacher .impression .impression-content .item .text-content {
  width: 65%;
  padding-left: 1rem;
  font-size: 14px;
  line-height: 1.4;
}
.for-teacher .implementation-flow {
  background-color: #7ab89d;
}
.for-teacher .implementation-flow .h2-wrapper {
  text-align: center;
}
.for-teacher .implementation-flow .h2-wrapper .underlined-h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .implementation-flow .h2-wrapper .underlined-h2 {
    font-size: 32px;
    text-align: center;
  }
}
.for-teacher .implementation-flow .h2-wrapper .underlined-h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #e78cb3, #f7d7e1);
  border-radius: 2px;
}
.for-teacher .implementation-flow .flow_design08 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.for-teacher .implementation-flow .flow08 {
  padding-left: 0;
}
.for-teacher .implementation-flow .flow08 > li {
  list-style-type: none;
  border-radius: 15px;
  background: #ffffff;
  position: relative;
  padding: 20px;
}
.for-teacher .implementation-flow .flow08 > li:not(:last-child) {
  margin-bottom: 20px;
}
.for-teacher .implementation-flow .flow08 > li dl {
  display: block;
}
@media screen and (min-width: 768px) {
  .for-teacher .implementation-flow .flow08 > li dl {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.for-teacher .implementation-flow .flow08 > li dl dt,
.for-teacher .implementation-flow .flow08 > li dl dd {
  width: 100%;
}
.for-teacher .implementation-flow .flow08 > li dl dt {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .for-teacher .implementation-flow .flow08 > li dl dt {
    width: 40%;
  }
}
.for-teacher .implementation-flow .flow08 > li dl dt span.small {
  font-size: 0.8em;
}
.for-teacher .implementation-flow .flow08 > li dl dd {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .for-teacher .implementation-flow .flow08 > li dl dd {
    width: 60%;
  }
}
.for-teacher .implementation-flow .flow08 > li .icon08 {
  color: #4a7f7c;
  margin-right: 0.5em;
}
.for-teacher .price {
  background-color: #ffffff;
}
.for-teacher .price h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.for-teacher .price .content {
  background-color: #c1e2d7;
  border-radius: 10px;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .price .content {
    width: 70%;
    margin: 0 auto;
  }
}
.for-teacher .price .content .text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-top: 1rem;
}
.for-teacher .price .content .text span {
  display: inline-block;
}
.for-teacher .price .content .text span span.big {
  font-size: 40px;
}
.for-teacher .price .content .caption {
  margin-top: 1rem;
  text-align: center;
}
.for-teacher .price .individual-examination-text {
  font-size: 18px;
  margin-top: 2rem;
  text-align: center;
}
.for-teacher .price .btn-content {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .for-teacher .price .btn-content {
    margin-top: 1rem;
    left: 0%;
    transform: translateX(0%);
  }
}
.for-teacher .price .btn-content .individual-examination-btn-contact {
  min-width: 324px;
  background-color: #e78cb3;
  border: 2px solid #e78cb3;
  text-align: center;
  padding: 1rem;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.2s;
}
.for-teacher .price .btn-content .individual-examination-btn-contact:hover {
  background-color: #ffffff;
  color: #e78cb3;
}
@media screen and (min-width: 768px) {
  .for-teacher .price .btn-content .individual-examination-btn-contact {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.for-teacher .bottom-cta {
  background-color: #c1e2d7;
}
.for-teacher .bottom-cta .content {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .bottom-cta .content {
    width: 70%;
    margin: 0 auto;
    padding: 2rem 2rem;
  }
}
.for-teacher .bottom-cta .content .text {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .for-teacher .bottom-cta .content .text {
    font-size: 24px;
  }
}
.for-teacher .bottom-cta .content .img-content {
  width: 80%;
  margin: 1rem auto;
}
@media screen and (min-width: 768px) {
  .for-teacher .bottom-cta .content .img-content {
    width: 60%;
  }
}
.for-teacher .bottom-cta .content .btn-content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .for-teacher .bottom-cta .content .btn-content {
    margin-top: 2rem;
    left: 0%;
    transform: translateX(0%);
  }
}
.for-teacher .bottom-cta .content .btn-content .btn-contact {
  min-width: 300px;
  background-color: #e78cb3;
  border: 2px solid #e78cb3;
  border-radius: 5px;
  text-align: center;
  padding: 1rem;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  transition: 0.2s;
}
.for-teacher .bottom-cta .content .btn-content .btn-contact:hover {
  background-color: #ffffff;
  color: #e78cb3;
}
@media screen and (min-width: 768px) {
  .for-teacher .bottom-cta .content .btn-content .btn-contact {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/*
page > error
------------------------------
*/
.not-found h2 {
  font-size: 20px;
  text-align: center;
}
.not-found span {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .not-found span {
    font-size: 32px;
  }
}
.not-found__text {
  margin: 40px auto 0;
  max-width: 500px;
  text-align: center;
  margin-bottom: 40px;
}
/*# sourceMappingURL=style.css.map */