@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP";
  font-weight: 500;
}

html, body {
  height: 100%;
  margin: 0;
}

html {
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-btn
----------------------------------- */
.c-btn-wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  height: 70px;
}

.c-btn-next {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  max-width: 520px;
  min-width: 375px;
  overflow: hidden;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 40px;
  background-color: #2387DC;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-btn-next.yellow {
  background-color: #FFA600;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(255, 166, 0, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(255, 166, 0, 0.5);
}
.c-btn-next::before, .c-btn-next::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -100px;
  width: 60px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btn-next::before {
  width: 10px;
  left: -150px;
}

@-webkit-keyframes shiny-large {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(700px) rotate(45deg);
            transform: translateX(700px) rotate(45deg);
  }
}

@keyframes shiny-large {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(700px) rotate(45deg);
            transform: translateX(700px) rotate(45deg);
  }
}
.c-btn-back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
  height: 100%;
  max-width: 350px;
  min-width: 250px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 40px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  padding: 50px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: #333;
}
.c-footer .com-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.c-footer .com-link {
  position: relative;
  padding-right: 15px;
  display: inline-block;
  border-bottom: solid 1px #fff;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-footer .com-link:hover {
  opacity: 0.7;
}
.c-footer .com-link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 10px;
  background: url("../img/common/ico-external.svg") center/contain no-repeat;
}
.c-footer .link-block {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer .link-block a {
  padding: 0 20px;
  display: block;
  font-weight: 400;
}
.c-footer .link-block a:hover {
  opacity: 0.7;
}
.c-footer .link-block a:not(:last-child) {
  position: relative;
}
.c-footer .link-block a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.c-footer .copyright-txt {
  margin-top: 30px;
  font-family: "Montserrat";
  opacity: 0.6;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: relative;
  z-index: 10;
  padding: 12px 40px 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 2px #CCC;
  background-color: #fff;
}
.c-header .logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .tel-wrap-pc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .logo01 {
  width: auto;
  height: 75px;
}
.c-header .logo02 {
  width: auto;
  height: 25px;
}
.c-header .tel-info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
.c-header .txt-free {
  padding: 0 20px 2px;
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  background-color: #FFA600;
}
.c-header .menu-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .menu-area.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.c-header .btn01 {
  border-radius: 40px;
  color: #2387DC;
  text-align: center;
  font-weight: bold;
  border: 1px solid #2387DC;
  position: relative;
  padding: 21px min(49px, 2.5520833333vw);
  -webkit-box-shadow: 4px 4px 0 rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0 rgba(204, 204, 204, 0.5);
  background: #fff;
}
.c-header .btn02 {
  border-radius: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  background: #2387DC;
  border: 1px solid #2387DC;
  padding: 21px min(49px, 2.5520833333vw);
  -webkit-box-shadow: 4px 4px 0 rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0 rgba(204, 204, 204, 0.5);
}
.c-header .btn03 {
  border-radius: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  background: #FFA600;
  border: 1px solid #FFA600;
  padding: 21px min(49px, 2.5520833333vw);
  -webkit-box-shadow: 4px 4px 0 rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0 rgba(204, 204, 204, 0.5);
}
.c-header .toggle-btn {
  background: #FFA600;
  width: 116px;
  height: 116px;
  display: none;
  position: relative;
}
.c-header .toggle-btn .inn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 50px;
  height: 30px;
}
.c-header .toggle-btn .line {
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .toggle-btn .line:first-child {
  top: 0;
}
.c-header .toggle-btn .line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-header .toggle-btn .line:last-child {
  bottom: 0;
}
.c-header.is-active .line:first-child {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
          transform: rotate(45deg) translate(9px, 9px);
}
.c-header.is-active .line:nth-child(2) {
  opacity: 0;
}
.c-header.is-active .line:last-child {
  -webkit-transform: rotate(-45deg) translate(9px, -9px);
          transform: rotate(-45deg) translate(9px, -9px);
}

.cover-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cover-bg.is-active {
  pointer-events: all;
  opacity: 1;
}

/* --------------------------------
c-input-btn-group
----------------------------------- */
.c-input-btn-group label {
  position: relative;
  padding-left: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-input-btn-group label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-input-btn-group label span {
  padding: 10px 20px;
  display: block;
  width: 100%;
  min-height: 48px;
  color: #2387DC;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 50px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-input-btn-group label span.is-multiline {
  border-radius: 25px;
}
.c-input-btn-group label::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  border: solid 1px #CCC;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-input-btn-group label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-input-btn-group label:has(input:checked) span {
  padding-left: 15px;
  color: #fff;
  border: solid 1px #2387DC;
  background-color: #2387DC;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-input-btn-group label:has(input:checked)::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-input-btn-group label:has(input:checked)::after {
  opacity: 1;
}

.c-input-btn-group.radio label::before {
  border-radius: 30px;
}
.c-input-btn-group.radio label::after {
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #2387DC;
}

/* --------------------------------
c-input-not-btn
----------------------------------- */
.c-input-not-btn {
  padding: 10px 20px;
  width: 100%;
  min-height: 48px;
  color: #2387DC;
  font-size: 16px;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 30px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-input-not-btn:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
          box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #2387DC !important;
}
.c-input-not-btn:-webkit-autofill:focus {
  caret-color: #2387DC !important;
}
.c-input-not-btn[type=date] {
  position: relative;
}
.c-input-not-btn[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.c-input-not-btn[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.c-input-not-btn[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

.c-input-not-btn-wrap + .c-input-not-btn-wrap {
  margin-top: 15px;
}

.c-input-not-btn::-webkit-input-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn::-moz-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn:-ms-input-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn::-ms-input-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn::placeholder {
  color: #8EC6F6;
}

/* --------------------------------
c-bg-block
----------------------------------- */
.c-bg-block {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-bg-block .c-left-deco, .c-bg-block .c-right-deco {
  position: absolute;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.c-bg-block .c-left-deco span, .c-bg-block .c-right-deco span {
  position: absolute;
}
.c-bg-block .c-left-deco {
  top: 210px;
  left: -130px;
}
.c-bg-block .c-right-deco {
  bottom: 380px;
  right: -100px;
}

.left01,
.left03 {
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
  background: linear-gradient(to right, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
}

.left01 {
  top: 0;
  left: 0;
  width: 630px;
  height: 135px;
}

.left02 {
  top: 120px;
  left: 0;
  width: 480px;
  height: 72px;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, rgb(255, 224, 166)), to(rgba(255, 224, 166, 0)));
  background: linear-gradient(to right, rgb(255, 224, 166) 57%, rgba(255, 224, 166, 0) 100%);
}

.left03 {
  top: 230px;
  left: 0;
  width: 205px;
  height: 65px;
}

.right01 {
  top: 0;
  right: 0;
  width: 500px;
  height: 95px;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
  background: linear-gradient(to left, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
}

.right02 {
  z-index: 1;
  top: 125px;
  right: 0;
  width: 680px;
  height: 155px;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(255, 224, 166)), to(rgba(255, 224, 166, 0)));
  background: linear-gradient(to left, rgb(255, 224, 166) 57%, rgba(255, 224, 166, 0) 100%);
}

.right03 {
  top: 254px;
  right: 0;
  width: 380px;
  height: 72px;
  background-color: #DCF0FF;
}

/* --------------------------------
c-tel-num
----------------------------------- */
.c-tel-num {
  display: block;
  position: relative;
  padding-left: 55px;
  color: #FFA600;
  font-family: "Montserrat";
  font-size: 40px;
  font-weight: bold;
}
.c-tel-num::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 42px;
  background: url("../img/common/ico-tel.svg") center/contain no-repeat;
}

/* --------------------------------
c-q-num-block
----------------------------------- */
.c-q-num-block {
  position: -webkit-sticky;
  position: sticky;
  margin-top: 40px;
  top: 40%;
  left: 0;
  width: 140px;
  height: 140px;
  max-width: 140px;
  min-width: 140px;
  font-family: "Montserrat";
  text-align: center;
  border: solid 2px #CCC;
  border-radius: 90px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
}
.c-q-num-block::after {
  content: "";
  position: absolute;
  top: 78px;
  left: 26px;
  width: 100px;
  height: 2px;
  background-color: #CCC;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.now-num {
  position: absolute;
  top: 12px;
  left: 20px;
  width: 60px;
  color: #2387DC;
  font-size: 48px;
  font-weight: bold;
}

.total-num {
  position: absolute;
  top: 75px;
  left: 83px;
  width: 25px;
  font-size: 20px;
}

/* --------------------------------
c-section
----------------------------------- */
.c-fv-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.c-fv-section .c-fv-wrap {
  position: relative;
  z-index: 1;
}
.c-fv-section .c-fv-wrap > * + * {
  margin-top: 40px;
}
.c-fv-section .c-bg-block .c-left-deco {
  top: 210px;
  left: -130px;
}
.c-fv-section .c-bg-block .c-right-deco {
  bottom: 380px;
  right: -100px;
}

/* --------------------------------
c-ttl
----------------------------------- */
.c-ttl01 {
  color: #2387DC;
  font-size: 30px;
  font-weight: bold;
}

.c-ttl02 {
  font-size: 20px;
  font-weight: 400;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* confirm Module
* confirmページ用
-------------------------------------------------- */
.confirm .inner-block {
  max-width: 1090px;
  z-index: 1;
}
.confirm .c-fv-section {
  padding-top: 190px;
  padding-bottom: 110px;
  overflow: initial;
  overflow-x: visible;
}
.confirm .c-fv-section .ttl {
  position: relative;
  padding: 50px 20px;
  width: 100%;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  background-color: #2387DC;
  -webkit-box-shadow: 8px 8px 0px 0px #DCF0FF;
          box-shadow: 8px 8px 0px 0px #DCF0FF;
}
.confirm .c-fv-section .ttl::before, .confirm .c-fv-section .ttl::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 20px 0 20px;
  border-color: #2387DC transparent transparent transparent;
  z-index: 2;
}
.confirm .c-fv-section .ttl::before {
  bottom: -38px;
  left: 8px;
  border-color: #DCF0FF transparent transparent transparent;
  z-index: 1;
}
.confirm .confirm-section {
  position: relative;
  overflow: hidden;
}
.confirm .confirm-section .inner-block {
  padding-bottom: 100px;
}
.confirm .confirm-section .confirm-cont {
  padding: 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #CCC;
}
.confirm .confirm-section .q {
  width: 380px;
  min-width: 380px;
  font-weight: bold;
}
.confirm .confirm-section .ans {
  width: 100%;
  font-weight: 400;
}
.confirm .confirm-section .c-right-deco {
  bottom: 380px;
  right: -100px;
  z-index: 0;
}

/* -----------------------------------------------
* form Module
* formページ用
-------------------------------------------------- */
.form .c-fv-section {
  padding-top: 190px;
  padding-bottom: 75px;
}
.form .c-fv-section .c-bg-block .c-right-deco .left03 {
  width: 400px;
}
.form .banner-deco {
  width: 100%;
  height: 30px;
  background-color: #2387DC;
}
.form .form-section .inner-block {
  padding-top: 48px;
  padding-bottom: 100px;
}
.form .form-section .form-num-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.form .form-section .form02 {
  width: 100%;
}
.form .form-section .question + .question {
  margin-top: 50px;
}
.form .form-section .q-ttl-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: bold;
}
.form .form-section .required {
  padding: 3px 10px 5px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 5px;
  background-color: #E94163;
}
.form .form-section .q-ttl {
  font-size: 20px;
}
.form .form-section .q-note {
  margin-top: 10px;
  color: #777;
  font-weight: 400;
}
.form .form-section .prev-input-area {
  margin-top: 10px;
  font-weight: bold;
}
.form .form-section .prev-input {
  color: #2387DC;
}
.form .form-section .input-area {
  margin-top: 16px;
  padding: 30px 30px 32px;
  border-radius: 10px;
  background-color: #DCF0FF;
}
.form .form-section label {
  display: block;
}
.form .form-section label + label {
  margin-top: 17px;
}
.form .form-section .date-detail .c-input-not-btn {
  border-radius: 10px;
  height: 120px;
}
.form .form-section .error-txt {
  margin-top: 5px;
  color: #E94163;
  font-weight: bold;
}
.form .form-section .c-q-num-block {
  margin-top: 45px;
  margin-bottom: 100px;
}
.form .form-section .btn-ok {
  position: relative;
  display: block;
  margin: 34px auto 0;
  padding: 10px;
  width: 80%;
  max-width: 270px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  background-color: #FFA600;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.form .form-section .btn-ok::before, .form .form-section .btn-ok::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -100px;
  width: 60px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form .form-section .btn-ok::before {
  width: 10px;
  left: -150px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section {
  position: relative;
  padding-top: 162px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  overflow: hidden;
  text-align: center;
}
.home .mv-section .copy-wrap {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.home .mv-section .logo-img {
  margin-top: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 510px;
  height: auto;
}
.home .mv-section .copy-txt {
  position: relative;
  padding: 0 45px;
  color: #2387DC;
  font-size: 24px;
  font-weight: bold;
}
.home .mv-section .copy-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 90px;
  border-radius: 20px;
  background-color: #2387DC;
  -webkit-transform: rotate(152deg);
          transform: rotate(152deg);
}
.home .mv-section .copy-txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 90px;
  border-radius: 20px;
  background-color: #2387DC;
  -webkit-transform: rotate(-152deg);
          transform: rotate(-152deg);
}
.home .mv-section .copy-txt-l {
  font-size: 30px;
}
.home .mv-section .br-custom01 {
  display: none;
}
.home .mv-section .br-custom02 {
  display: none;
}
.home .mv-section .br-tab {
  display: none;
}
.home .mv-section .mv-point {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px 24px 40px;
  width: auto;
  text-align: center;
  color: #fff;
  font-family: "M PLUS Rounded 1c";
  font-weight: bold;
  line-height: 1.5;
  border-radius: 20px;
  -webkit-box-shadow: 8px 8px 0px 0px #DCF0FF;
          box-shadow: 8px 8px 0px 0px #DCF0FF;
  background-color: #2387DC;
}
.home .mv-section .mv-point::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 30px 20px 0;
  border-color: transparent #2387DC transparent transparent;
}
.home .mv-section .mv-point + .mv-point {
  margin-top: 30px;
}
.home .mv-section .img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 90px;
}
.home .mv-section .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .mv-section .txt-point {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
}
.home .mv-section .txt-point-l {
  font-size: 38px;
}
.home .mv-section .txt-note {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
}
.home .mv-section .left-block,
.home .mv-section .right-block {
  z-index: 1;
}
.home .banner-section {
  padding: 23px 20px 30px;
  width: 100%;
  text-align: center;
  background-color: #2387DC;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.home .banner-section .main-txt {
  font-size: 30px;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
}
.home .banner-section .banner {
  position: relative;
  background: #fff;
  border-radius: 10px;
  color: #2387DC;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.03em;
  width: 650px;
  padding: 10px 0 13px;
  overflow: hidden;
  cursor: pointer;
}
.home .banner-section .banner .strong {
  font-size: 20px;
}
.home .banner-section .banner .banner-txt {
  position: relative;
  z-index: 1;
}
.home .banner-section .banner .btn01 {
  color: #fff;
  background: #2387DC;
  border-radius: 30px;
  border: 1px solid #2387DC;
  padding: 2px 27px 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  margin-right: 10px;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .banner-section .banner .bg-block {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .banner-section .banner .bg-block span {
  position: absolute;
}
.home .banner-section .banner .left-deco {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 0px;
  top: -33px;
}
.home .banner-section .banner .b-left01 {
  top: 0;
  left: 0;
  width: 358px;
  height: 89px;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
  background: linear-gradient(to right, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
}
.home .banner-section .banner .b-left02 {
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, rgb(255, 224, 166)), to(rgba(255, 224, 166, 0)));
  background: linear-gradient(to right, rgb(255, 224, 166) 57%, rgba(255, 224, 166, 0) 100%);
  width: 260px;
  height: 39px;
  top: 60px;
  left: 0;
}
.home .banner-section .banner .right-deco {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: -26px;
  right: 0;
}
.home .banner-section .banner .b-right01 {
  bottom: 0;
  right: 0;
  width: 358px;
  height: 89px;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
  background: linear-gradient(to left, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
}
.home .banner-section .banner .b-right02 {
  bottom: 53px;
  right: 0;
  width: 260px;
  height: 39px;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(255, 224, 166)), to(rgba(255, 224, 166, 0)));
  background: linear-gradient(to left, rgb(255, 224, 166) 57%, rgba(255, 224, 166, 0) 100%);
}
.home .chat-section {
  position: relative;
}
.home .chat-section .inner-block {
  padding-top: 48px;
  padding-bottom: 100px;
}
.home .chat-section .form-num-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.home .chat-section .form01 {
  padding-left: 90px;
  width: 100%;
}
.home .chat-section .question > * + * {
  margin-top: 15px;
}
.home .chat-section .question + .question {
  margin-top: 60px;
}
.home .chat-section .question.m-thin {
  margin-top: 15px;
}
.home .chat-section .chat {
  position: relative;
  padding: 16px 20px 18px;
  min-height: 10px;
  max-width: 687px;
  font-weight: 400;
  border-radius: 10px;
  background-color: #FFE6EF;
}
.home .chat-section .chat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90px;
  width: 60px;
  height: 60px;
  background: url("../img/home/pal-nyan.png.webp") center/cover no-repeat;
}
.home .chat-section .chat::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent #FFE6EF transparent transparent;
}
.home .chat-section .chat .input-text {
  color: #2387DC;
  font-weight: bold;
}
.home .chat-section .input-area {
  position: relative;
  margin-left: auto;
  padding: 30px 30px 32px;
  max-width: 750px;
  border-radius: 10px;
  background-color: #DCF0FF;
}
.home .chat-section .input-area::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14.5px 0 14.5px 20px;
  border-color: transparent transparent transparent #DCF0FF;
}
.home .chat-section .input-area .error-txt {
  display: none;
  margin-top: 25px;
  color: #E94163;
  font-weight: bold;
}
.home .chat-section label {
  display: block;
}
.home .chat-section label + label {
  margin-top: 17px;
}
.home .chat-section .c-input-btn-group.check label::before {
  border-radius: 5px;
}
.home .chat-section .c-input-btn-group.check label::after {
  left: 0px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-image: url("../img/home/ico-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #2387DC;
}
.home .chat-section select {
  padding: 10px 20px;
  width: 100%;
  color: #2387DC;
  font-size: 16px;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 30px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.home .chat-section .select-group {
  position: relative;
}
.home .chat-section .select-group::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 20px;
  height: 12px;
  background: url("../img/home/ico-pulldown.svg") center/contain no-repeat;
}
.home .chat-section input[type=date] {
  -moz-appearance: textfield;
}
.home .chat-section input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.home .chat-section .date .c-input-not-btn-wrap {
  position: relative;
}
.home .chat-section .date .c-input-not-btn-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 20px;
  height: 20px;
  background: url("../img/home/ico-calendar.svg") center/contain no-repeat;
  pointer-events: none;
}
.home .chat-section .sub-group {
  margin-top: 18px;
  padding-left: 55px;
}
.home .chat-section .q-group + .q-group {
  margin-top: 32px;
}
.home .chat-section .contact .q-group + .q-group {
  margin-top: 15px;
}
.home .chat-section .q-group-ttl {
  margin-bottom: 10px;
  color: #2387DC;
  font-size: 20px;
  font-weight: bold;
}
.home .chat-section .btn-ok {
  position: relative;
  display: block;
  margin: 34px auto 0;
  padding: 10px;
  width: 80%;
  max-width: 270px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  background-color: #FFA600;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.home .chat-section .btn-ok::before, .home .chat-section .btn-ok::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -100px;
  width: 60px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.home .chat-section .btn-ok::before {
  width: 10px;
  left: -150px;
}
@-webkit-keyframes shiny {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(450px) rotate(45deg);
            transform: translateX(450px) rotate(45deg);
  }
}
@keyframes shiny {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(450px) rotate(45deg);
            transform: translateX(450px) rotate(45deg);
  }
}
.home .chat-section .btn-txt {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.home .chat-section .modal {
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  margin-top: 0;
  cursor: pointer;
}
.home .chat-section .modal-content {
  position: relative;
  padding: 30px 50px;
  max-height: 90vh;
  max-width: 100%;
  width: 1200px;
  border-radius: 30px;
  background-color: #f0f0f0;
  cursor: default;
}
.home .chat-section .modal-ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.home .chat-section .modal-sub-ttl {
  text-align: center;
  font-size: 20px;
}
.home .chat-section .privacy-block {
  margin-top: 30px;
  padding-right: 20px;
  max-width: 1200px;
  max-height: 50vh;
  height: 500px;
  overflow-y: scroll;
}
.home .chat-section .privacy-block::-webkit-scrollbar {
  width: 20px;
}
.home .chat-section .privacy-block::-webkit-scrollbar-track {
  border-radius: 15px;
  background-color: #fff;
}
.home .chat-section .privacy-block::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #999;
}
.home .chat-section .privacy-cont {
  padding: 30px;
  font-weight: 400;
  background-color: #fff;
}
.home .chat-section .privacy-cont .ttl01 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
}
.home .chat-section .privacy-cont .ttl01:first-child {
  margin-top: 0;
}
.home .chat-section .privacy-cont p + .ttl01 {
  margin-top: 20px;
}
.home .chat-section .privacy-cont .ttl02 {
  border-bottom: solid 1px #CCC;
}
.home .chat-section .privacy-cont .ttl02.not-list {
  display: inline-block;
  margin: 5px 0;
}
.home .chat-section .privacy-cont .link-txt {
  text-decoration: underline;
}
.home .chat-section .privacy-cont ol, .home .chat-section .privacy-cont ul {
  margin: 5px 0;
  padding-left: 20px;
  list-style-type: decimal;
}
.home .chat-section .privacy-cont ul {
  list-style-type: disc;
}
.home .chat-section .btn-close {
  position: absolute;
  top: 0;
  right: -70px;
  width: 45px;
  height: 45px;
  background: url("../img/home/ico-close.svg") center/cover no-repeat;
  cursor: pointer;
}
.home .chat-section .modal-privacy .btn-ok {
  -webkit-box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

@-moz-document url-prefix() {
  .date .c-input-not-btn-wrap::after {
    display: none;
  }
}
/* -----------------------------------------------
* thank-you Module
* thank-youページ用
-------------------------------------------------- */
.thank-you #wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.thank-you main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.thank-you .c-fv-section {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 190px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.thank-you .c-fv-section .tel-num-block {
  display: block;
  margin: 40px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.thank-you .c-fv-section .c-btn-back {
  width: 50%;
}

.schools .mv-section {
  padding-top: 212px;
  padding-bottom: 101px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.schools .mv-section .p-ttl {
  color: #2387DC;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.schools .blue-line {
  background: #2387DC;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  padding: 18px 0;
}
.schools .search-block {
  padding-top: 50px;
}
.schools .search-block .inner-block {
  max-width: 1280px;
}
.schools .search-block .line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #CCC;
  gap: 80px;
}
.schools .search-block .ttl {
  font-weight: bold;
  line-height: 1.5;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 150px;
}
.schools .search-block .r-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
}
.schools .search-block .cat-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.schools .search-block .cat-list + .cat-list {
  margin-top: 15px;
}
.schools .search-block label {
  display: block;
  position: relative;
}
.schools .search-block label :checked + .txt {
  background: #2387DC;
  color: #fff;
  border-color: #2387DC;
}
.schools .search-block label input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  top: 0;
  left: 0;
}
.schools .search-block label .txt {
  display: inline-block;
  border-radius: 50px;
  color: #777;
  border: 1px solid #777;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 8px 19.5px 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.schools .search-block .toggle-btn {
  text-align: center;
  margin-top: 48px;
  border-bottom: 1px solid #CCC;
  padding-bottom: 50px;
  cursor: pointer;
}
.schools .search-block .toggle-btn.is-active {
  margin-top: 63px;
  padding-bottom: 30px;
}
.schools .search-block .toggle-btn.is-active .txt {
  padding-top: 10px;
}
.schools .search-block .toggle-btn.is-active .txt::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: -12px;
  bottom: initial;
}
.schools .search-block .toggle-btn .txt {
  position: relative;
  color: #2387DC;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 20px;
}
.schools .search-block .toggle-btn .txt::before {
  content: "";
  background: url(../img/common/arrow.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  left: 0;
  top: initial;
  bottom: -12px;
  margin: auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.schools .result-section {
  padding-bottom: 100px;
  padding-top: 50px;
}
.schools .result-section .inner-block {
  max-width: 1280px;
}
.schools .result-section .result-list > li {
  background: #DFF1FF;
  padding: 40px;
  margin-bottom: 48px;
}
.schools .result-section .result-list > li:last-child {
  margin-bottom: 0;
}
.schools .result-section .result-list .d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.schools .result-section .result-list .top-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.schools .result-section .result-list .top-area .ttl {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.6;
}
.schools .result-section .result-list .top-area .tag {
  display: inline-block;
  background: #2387DC;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  padding: 7px 20px 9px;
  border-radius: 50px;
}
.schools .result-section .result-list .img-area {
  position: relative;
  padding-top: 23%;
  width: 388px;
  height: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.schools .result-section .result-list .img-area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.schools .result-section .result-list .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.schools .result-section .result-list .l-side {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.schools .result-section .result-list .type {
  background: #2387DC;
  color: #fff;
  border-radius: 5px 0 0 5px;
  line-height: 1;
  padding: 16px 19px;
  font-weight: bold;
}
.schools .result-section .result-list .span {
  color: #2387DC;
  background: #fff;
  padding: 16px 19px;
  border-radius: 0 5px 5px 0;
  line-height: 1;
  font-weight: bold;
}
.schools .result-section .result-list .price {
  color: #777;
  font-weight: bold;
  line-height: 1;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  width: calc(100% - 20px);
  padding: 8px 0;
}
.schools .result-section .result-list .price .num {
  font-weight: bold;
  color: #2387DC;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1;
  vertical-align: sub;
  margin: 0 7px;
}
.schools .result-section .result-list .desc {
  line-height: 1.6;
  margin-bottom: 20px;
}
.schools .result-section .result-list .btn-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.schools .result-section .result-list .btn01 {
  color: #fff;
  background: #2387DC;
  -webkit-box-shadow: 0 2px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 0 2px 0px rgba(35, 135, 220, 0.5);
  border-radius: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  width: calc(50% - 15px);
  padding: 13px 0;
  border: 1px solid #2387DC;
}
.schools .result-section .result-list .btn02 {
  color: #fff;
  -webkit-box-shadow: 0 2px 0px rgba(255, 166, 0, 0.5);
          box-shadow: 0 2px 0px rgba(255, 166, 0, 0.5);
  border-radius: 40px;
  background: #FFA600;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: calc(50% - 15px);
  text-align: center;
  padding: 13px 0;
  border: 1px solid #FFA600;
  font-size: 14px;
}

/* -----------------------------------------------
* thank-you Module
* thank-youページ用
-------------------------------------------------- */
.detail .inner-block {
  max-width: 1080px;
}
.detail .c-fv-section {
  padding-top: 217px;
  padding-bottom: 103px;
}
.detail .c-fv-section .c-bg-block .c-right-deco .left03 {
  width: 400px;
}
.detail .banner-deco {
  width: 100%;
  height: 30px;
  background-color: #2387DC;
}
.detail .ttl {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
.detail .ttl.top {
  padding-top: 20px;
  border-top: 1px solid #CCC;
  text-align: center;
}
.detail .ttl.bottom {
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
  margin-bottom: 30px;
}
.detail .blue-box {
  background: #DCF0FF;
}
.detail .left-blue {
  padding-left: 14px;
  position: relative;
  display: block;
}
.detail .left-blue::before {
  content: "";
  position: absolute;
  background: #2387DC;
  display: block;
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.detail .btn {
  display: block;
  background-color: #FFA600;
  padding: 21px 10px;
  border-radius: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #FFA600;
  max-width: 440px;
  margin: 30px auto 0;
}
.detail .btn .txt {
  color: #fff;
  font-weight: bold;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail p {
  font-weight: 400;
}
.detail p + * {
  margin-top: 30px;
}
.detail p + .ttl04 {
  margin-top: 60px;
}
.detail ul + * {
  margin-top: 30px;
}
.detail ul + .ttl04 {
  margin-top: 60px;
}
.detail .list > li {
  padding-left: 22px;
  position: relative;
  font-weight: 400;
}
.detail .list > li::before, .detail .list > li::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
}
.detail .list > li::before {
  background: #2387DC;
  width: 10px;
  height: 10px;
  top: 8px;
  left: 3px;
}
.detail .list > li::after {
  background: #fff;
  width: 4px;
  height: 4px;
  top: 11px;
  left: 6px;
}
.detail .list > li + li {
  margin-top: 10px;
}
.detail ol {
  counter-reset: cnt;
}
.detail ol > li {
  padding-left: 22px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}
.detail ol > li + li {
  margin-top: 10px;
}
.detail ol > li::before {
  content: "" counter(cnt) ".";
  counter-increment: cnt;
  position: absolute;
  left: 2px;
  font-family: "Montserrat", sans-serif;
  top: 2px;
  bottom: 0;
  margin: auto;
  color: #2387DC;
}
.detail ol + * {
  margin-top: 30px;
}
.detail ol + .ttl04 {
  margin-top: 60px;
}
.detail section {
  padding-top: 80px;
}
.detail section:last-child {
  padding-bottom: 100px;
}
.detail .desc-section {
  padding-top: 50px;
  padding-bottom: 82px;
}
.detail .desc-section .ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #CCC;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detail .desc-section .ttl-wrap > .ttl {
  font-size: 32px;
  line-height: 1.6;
  padding-right: 40px;
}
.detail .desc-section .ttl-wrap .pref-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.detail .desc-section .ttl-wrap .pref {
  padding: 3px 20px;
  border: 1px solid #2387DC;
  border-radius: 50px;
  font-size: 14px;
  color: #2387DC;
  font-weight: bold;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.detail .desc-section .inn {
  margin-top: 40px;
}
.detail .desc-section .inn > .img {
  width: clamp(350px, 480px, min(480px, 40vw));
}
.detail .desc-section .inn > .img img {
  width: 100%;
}
.detail .desc-section .inn .link-area {
  margin-top: 30px;
}
.detail .desc-section .inn .link-area .btn {
  margin: 0 auto;
}
.detail .desc-section .inn .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.detail .desc-section .inn .txt-wrap .txt + * {
  margin-top: 0;
}
.detail .desc-section .inn .add-box {
  padding: 20px;
}
.detail .desc-section .inn .add-box .txt {
  font-size: 14px;
}
.detail .desc-section .inn .add-box .bold {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}
.detail .desc-section .inn .add-box * + .bold {
  margin-top: 20px;
}
.detail .desc-section .inn .add-box .link {
  line-height: 100%;
  margin-top: 9px;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding-right: 10px;
  position: relative;
}
.detail .desc-section .inn .add-box .link::before {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2387DC;
  border-right: 2px solid #2387DC;
  rotate: 45deg;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .desc-section .inn .btn {
  max-width: 440px;
  margin: 0;
}
.detail .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 8px;
}
.detail .nav-list > li {
  width: 20%;
  border-right: 1px solid #CCC;
}
.detail .nav-list > li:nth-child(5n+1) {
  border-left: 1px solid #CCC;
}
.detail .nav-list > li .nav {
  width: 100%;
  display: block;
  text-align: center;
  color: #2387DC;
  position: relative;
  padding-bottom: 18px;
  font-size: 14px;
  font-weight: bold;
}
.detail .nav-list > li .nav .ico {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .nav-list > li .nav .ico > img {
  width: 16px;
  height: 8px;
  rotate: 180deg;
  display: block;
}
.detail .about-section .inner-block > .img {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}
.detail .about-section .rec-list > li {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail .about-section .rec-list > li + li {
  margin-top: 30px;
}
.detail .about-section .rec-list > li > .img {
  width: clamp(250px, 300px, min(300px, 25vw));
}
.detail .about-section .rec-list > li > .txt-wrap .ttl {
  font-size: 20px;
  padding: 7px 0 7px 24px;
  margin-bottom: 20px;
  margin-top: 0;
}
.detail .price-section .blue-txt {
  background: #DCF0FF;
  padding: 10px 0;
  text-align: center;
  color: #2387DC;
  font-weight: bold;
  margin-bottom: 30px;
}
.detail .price-section .scroll-box > .table,
.detail .price-section .scroll-box > .table th,
.detail .price-section .scroll-box > .table td {
  border: 1px solid #CCC;
}
.detail .price-section .scroll-box > .table {
  border-collapse: collapse;
  width: 1075px;
}
.detail .price-section .scroll-box > .table thead th {
  background: #DCF0FF;
  padding: 19px 60px;
}
.detail .price-section .scroll-box > .table tbody tr td:first-child {
  text-align: left;
}
.detail .price-section .scroll-box > .table tr th:first-child,
.detail .price-section .scroll-box > .table tr td:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background-color: #fff; /* 重なり防止の背景色 */
  z-index: 2; /* 表示順 */
  border: 1px solid #ccc;
}
.detail .price-section .scroll-box > .table tr th:first-child::before,
.detail .price-section .scroll-box > .table tr td:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}
.detail .price-section .scroll-box > .table tr th:first-child::after,
.detail .price-section .scroll-box > .table tr td:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}
.detail .price-section .scroll-box > .table tr th:first-child {
  background: #DCF0FF;
  z-index: 3;
}
.detail .price-section .scroll-box > .table tr th,
.detail .price-section .scroll-box > .table tr td {
  width: 0;
  white-space: nowrap;
  padding: 19px 20px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}
.detail .price-section .scroll-box > .table tr th .num,
.detail .price-section .scroll-box > .table tr td .num {
  color: #2387DC;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.detail .price-section .scroll-box .scroll-hint-icon {
  width: 100px;
  padding: 13px 0 11px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: rgba(35, 135, 220, 0.7);
}
.detail .price-section .scroll-box .scroll-hint-icon::before {
  background-image: url(../img/schools/detail/scroll-ico02.svg);
  top: 4px;
  position: relative;
  width: 25px;
}
.detail .price-section .scroll-box .scroll-hint-icon::after {
  background-image: url(../img/schools/detail/scroll-ico01.svg);
  width: 50px;
  left: 0;
  right: 0;
  top: 13px;
  margin: auto;
}
.detail .price-section .scroll-box .scroll-hint-icon .scroll-hint-text {
  margin-top: 8px;
}
.detail .price-section .scroll-box.js-scrollable {
  padding-bottom: 10px;
}
.detail .price-section .scroll-box::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #DCF0FF;
}
.detail .price-section .scroll-box::-webkit-scrollbar-button {
  display: none;
}
.detail .price-section .scroll-box::-webkit-scrollbar-thumb {
  background: #2387DC;
  border-radius: 20px;
}
.detail .price-section .scroll-box::-webkit-scrollbar {
  height: 10px;
}
.detail .price-section .option-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.detail .price-section .option-wrap .box {
  width: 100%;
}
.detail .price-section .option-wrap .box > table {
  border: none;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  width: 100%;
}
.detail .price-section .option-wrap .box > table th {
  background: #2387DC;
  border-radius: 5px 0 0 5px;
  border-right: none;
  width: 50%;
  font-weight: bold;
  color: #fff;
  padding: 18px 0;
  line-height: 1;
  width: 30%;
}
.detail .price-section .option-wrap .box > table td {
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-left: none;
  border-radius: 0 5px 5px 0;
  width: 50%;
  font-size: 14px;
  font-weight: bold;
  width: 70%;
  text-align: left;
  padding: 10px;
}
.detail .price-section .option-wrap .box > table td .num {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  color: #2387DC;
  font-weight: 600;
}
.detail .price-section h4 {
  margin-top: 59px;
}
.detail .price-section .table-wrap .table,
.detail .price-section .table-wrap th,
.detail .price-section .table-wrap td {
  border: 1px solid #CCC;
  font-size: 14px;
}
.detail .price-section .table-wrap .table {
  width: 100%;
  border-collapse: collapse;
}
.detail .price-section .table-wrap .table th {
  background: #DCF0FF;
  width: clamp(120px, 180px, min(180px, 15vw));
  padding: 19px 20px;
  text-align: left;
}
.detail .price-section .table-wrap .table td {
  font-weight: 400;
  padding: 19px 20px;
}
.detail .price-section .list {
  font-weight: 400;
}
.detail .price-section .list > li {
  line-height: 1.4;
}
.detail .price-section .list + ul {
  margin-top: 30px;
}
.detail .price-section .note-list + ul {
  margin-top: 30px;
}
.detail .price-section .note-list > li {
  padding-left: 22px;
  position: relative;
  font-weight: 400;
  line-height: 1.4;
}
.detail .price-section .note-list > li::before {
  content: "※";
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  left: 0;
}
.detail .price-section .note-list > li + li {
  margin-top: 10px;
}
.detail .price-section .btn {
  margin-top: 60px;
}
.detail .acc-section .acc-prev-box + .acc-prev-box {
  margin-top: 30px;
}
.detail .acc-section .acc-prev-box .aco-wrap {
  padding: 40px 40px 20px 40px;
}
.detail .acc-section .acc-prev-box .aco-wrap .img {
  width: clamp(230px, 300px, min(300px, 25vw));
}
.detail .acc-section .acc-prev-box .aco-wrap .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.detail .acc-section .acc-prev-box .aco-wrap .ttl {
  line-height: 1.6;
}
.detail .acc-section .acc-prev-box .aco-wrap .txt + .txt {
  margin-top: 0;
}
.detail .acc-section .acc-prev-box .aco-wrap .txt + ul {
  margin-top: 0;
}
.detail .acc-section .acc-prev-box .aco-wrap .txt + ol {
  margin-top: 0;
}
.detail .acc-section .acc-prev-box .aco-wrap .list > li {
  line-height: 1.4;
}
.detail .acc-section .aco-cont {
  padding: 20px 40px 0 40px;
  display: none;
}
.detail .acc-section .aco-cont > .table {
  width: 100%;
}
.detail .acc-section .aco-cont > .table tr {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.detail .acc-section .aco-cont > .table th {
  padding: 14px 20px 14px 0;
  width: clamp(120px, 170px, min(170px, 14.1666666667vw));
  text-align: left;
  line-height: 1.2;
}
.detail .acc-section .aco-cont > .table th .left-blue {
  font-size: 14px;
}
.detail .acc-section .aco-cont > .table th .left-blue::before {
  height: 17px;
}
.detail .acc-section .aco-cont > .table td {
  padding: 14px 20px 13px;
  font-size: 14px;
  font-weight: 400;
}
.detail .acc-section .aco-cont > .table td .type-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.detail .acc-section .aco-cont > .table td .type-list > li {
  color: #777;
  padding: 9px 19px;
  background: #fff;
  border: 1px solid #777;
  border-radius: 50px;
  line-height: 1;
  font-weight: bold;
}
.detail .acc-section .aco-cont .box {
  margin-top: 40px;
}
.detail .acc-section .aco-cont .box .inn {
  background: #fff;
  width: calc((100% - 20px) / 2);
  padding: 20px;
  font-size: 14px;
}
.detail .acc-section .aco-cont .box .inn .bold {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}
.detail .acc-section .aco-cont .box .inn p + p {
  margin-top: 0 !important;
}
.detail .acc-section .js-aco-btn {
  width: 100%;
  height: 90px;
  display: block;
}
.detail .acc-section .js-aco-btn .ico {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.detail .acc-section .js-aco-btn .ico > img {
  width: 18px;
  height: 9px;
  rotate: 180deg;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .acc-section .js-aco-btn.is-active {
  margin-top: 20px;
}
.detail .acc-section .js-aco-btn.is-active .ico > img {
  rotate: 0deg;
}
.detail .access-section .map iframe {
  aspect-ratio: 1000/472;
  width: 100%;
  height: 100%;
  display: block;
}
.detail .access-section h4 {
  margin-top: 60px;
}
.detail .access-section .acc-next-box {
  margin-top: 30px;
}
.detail .access-section .acc-next-box .js-aco-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .access-section .acc-next-box .js-aco-btn .txt {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
.detail .access-section .acc-next-box .js-aco-btn .ico {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.detail .access-section .acc-next-box .js-aco-btn .ico > img {
  width: 18px;
  height: 9px;
  rotate: 180deg;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .access-section .acc-next-box .js-aco-btn.is-active .ico > img {
  rotate: 0deg;
}
.detail .access-section .acc-next-box .aco-cont {
  padding: 0 40px 40px;
  display: none;
}
.detail .access-section .acc-next-box .aco-cont .table tr {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 14px;
}
.detail .access-section .acc-next-box .aco-cont .table tr th {
  padding: 14px 22px 14px 0;
  width: clamp(120px, 170px, min(170px, 14.1666666667vw));
  text-align: left;
  line-height: 1.2;
}
.detail .access-section .acc-next-box .aco-cont .table tr td {
  padding: 14px 0 14px 20px;
  font-weight: 400;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .aco-list > li {
  padding: 0 20px;
  border-right: 1px solid #CCC;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .aco-list > li:first-child {
  padding-left: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .aco-list > li:last-child {
  padding-right: 0;
  border-right: none;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 5px;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .inn:first-child .sta {
  padding-left: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .inn:first-child .sta::before {
  display: none;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .inn:last-child .sta {
  padding-right: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .inn:last-child .sta::after {
  display: none;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .sta {
  position: relative;
  padding: 2px 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .sta .txt {
  padding: 8px 20px;
  color: #fff;
  background: #777;
  border-radius: 50px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .sta::before, .detail .access-section .acc-next-box .aco-cont .table tr td .sta::after {
  content: "";
  position: absolute;
  background: #777;
  display: block;
  width: 20px;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .sta::before {
  left: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .sta::after {
  right: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td:first-child {
  padding-left: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td:first-child::before {
  display: none;
}
.detail .access-section .acc-next-box .aco-cont .table tr td:last-child {
  padding-right: 0;
}
.detail .access-section .acc-next-box .aco-cont .table tr td:last-child::after {
  display: none;
}
.detail .access-section .acc-next-box .aco-cont .table tr td .route {
  color: #777;
  font-weight: bold;
  line-height: 1;
  padding: 0 5px;
  margin-top: 0;
}
.detail .access-section .list > li {
  line-height: 1.4;
  padding-left: 20px;
}
.detail .access-section .list > li::before {
  left: 0;
}
.detail .access-section .list > li::after {
  left: 3px;
}
.detail h5 {
  font-size: 20px;
  margin: 30px 0 20px;
  padding: 7px 23px;
  line-height: 1;
  font-weight: bold;
}
.detail h5.ttl {
  font-size: 20px;
  margin: 30px 0 20px;
  padding: 7px 23px;
  line-height: 1;
  font-weight: bold;
}
.detail .link-section {
  padding-top: 60px;
}
.detail .link-section .link-list > li {
  width: calc((100% - 40px) / 3);
}
.detail .link-section .link-list > li .link {
  width: 100%;
  height: 100%;
}
.detail .link-section .link-list > li .img {
  width: 100%;
}
.detail .link-section .link-list > li .txt {
  margin-top: 20px;
  font-weight: bold;
}

.c-no-result {
  display: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
  margin-bottom: 20px;
}
.c-no-result h3, .c-no-result p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

/* -----------------------------------------------
* thank-you Module
* thank-youページ用
-------------------------------------------------- */
.blogs .inner-block {
  max-width: 1280px;
  position: relative;
}
.blogs .c-fv-section {
  padding-top: 217px;
  padding-bottom: 103px;
}
.blogs .c-fv-section .c-bg-block .c-right-deco .left03 {
  width: 400px;
}
.blogs .banner-deco {
  width: 100%;
  height: 30px;
  background-color: #2387DC;
}
.blogs .contents-section {
  padding-top: 53px;
  padding-bottom: 192px;
}
.blogs .l-flex .main-area {
  position: relative;
}
.blogs .l-flex .blog-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.blogs .l-flex .blog-list > li .article-link {
  padding: 19px 19px;
  border: 1px solid #CCC;
  border-radius: 10px;
  -webkit-box-shadow: 8px 8px 0px 0px #DCF0FF;
          box-shadow: 8px 8px 0px 0px #DCF0FF;
  display: block;
}
.blogs .l-flex .blog-list > li .article-link .img {
  width: clamp(150px, 300px, min(300px, 25vw));
}
.blogs .l-flex .blog-list > li .article-link .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
.blogs .l-flex .blog-list > li .article-link .txt-wrap .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.blogs .l-flex .blog-list > li .article-link .txt-wrap .tag-list > li {
  padding: 8px 20px;
  background: #2387DC;
  border-radius: 50px;
  color: #fff;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
}
.blogs .l-flex .blog-list > li .article-link .txt-wrap .date {
  color: #777;
  font-weight: bold;
  font-size: 14px;
  padding-right: 2px;
}
.blogs .l-flex .blog-list > li .article-link .txt-wrap .ttl {
  font-size: 24px;
  font-weight: bold;
  color: #2387DC;
}
.blogs .l-flex .blog-list > li .article-link .txt-wrap .txt {
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.blogs .l-flex .paging-area {
  margin: 50px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  right: 0;
}
.blogs .l-flex .paging-area .prev,
.blogs .l-flex .paging-area .next {
  font-size: 12px;
  font-weight: 400;
  position: relative;
  line-height: normal;
  letter-spacing: 0.05em;
}
.blogs .l-flex .paging-area .prev::before,
.blogs .l-flex .paging-area .next::before {
  content: "";
  position: absolute;
  display: block;
  width: 7.5px;
  height: 7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.blogs .l-flex .paging-area .prev {
  padding-left: 13px;
}
.blogs .l-flex .paging-area .prev::before {
  left: 0;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  rotate: -45deg;
}
.blogs .l-flex .paging-area .next {
  padding-right: 13px;
}
.blogs .l-flex .paging-area .next::before {
  right: 0;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
}
.blogs .l-flex .paging-area .page-numbers:not(.next):not(.prev) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  width: 40px;
  height: 40px;
  background: #DCF0FF;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  font-family: "roboto", sans-serif;
}
.blogs .l-flex .paging-area .page-numbers:not(.next):not(.prev).current {
  background: #2387DC;
  color: #fff;
}
.blogs .l-flex .sidebar {
  width: clamp(150px, 200px, min(200px, 14.2857142857vw));
}
.blogs .l-flex .sidebar .sidebar-ttl {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 18px;
  border-bottom: 1px solid #CCC;
}
.blogs .l-flex .sidebar .box {
  margin-top: 30px;
}
.blogs .l-flex .sidebar .box .ttl,
.blogs .l-flex .sidebar .box .list .link {
  font-weight: bold;
  line-height: 1;
  font-size: 14px;
}
.blogs .l-flex .sidebar .box .list {
  margin-top: 18px;
}
.blogs .l-flex .sidebar .box .list > li {
  width: 100%;
  line-height: 1;
}
.blogs .l-flex .sidebar .box .list > li .link {
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}
.blogs .l-flex .sidebar .box .list > li .link::before {
  content: "";
  position: absolute;
  background: #2387DC;
  display: block;
  width: 10px;
  height: 3px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.blogs .l-flex .sidebar .box .list > li + li {
  margin-top: 8px;
}

/* -----------------------------------------------
* thank-you Module
* thank-youページ用
-------------------------------------------------- */
.blog-detail .inner-block {
  max-width: 1280px;
}
.blog-detail .c-fv-section {
  padding-top: 217px;
  padding-bottom: 103px;
}
.blog-detail .c-fv-section .c-bg-block .c-right-deco .left03 {
  width: 400px;
}
.blog-detail .banner-deco {
  width: 100%;
  height: 30px;
  background-color: #2387DC;
}
.blog-detail .contents-section {
  padding-top: 52px;
  padding-bottom: 100px;
}
.blog-detail .contents-section .inner-block {
  max-width: 1080px;
}
.blog-detail .contents-section .ttl-area {
  margin-bottom: 40px;
  border-bottom: 1px solid #CCC;
}
.blog-detail .contents-section .ttl-area .ttl {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
.blog-detail .contents-section .ttl-area .tag-wrap {
  margin-bottom: 20px;
}
.blog-detail .contents-section .ttl-area .tag-wrap .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.blog-detail .contents-section .ttl-area .tag-wrap .tag-list > li {
  background: #2387DC;
  border-radius: 50px;
  padding: 8px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-detail .contents-section .ttl-area .tag-wrap .tag-list > li .txt {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}
.blog-detail .contents-section .ttl-area .tag-wrap .date {
  color: #777;
  font-size: 14px;
  font-weight: bold;
}
.blog-detail .contents-section .acc-next-box {
  margin-bottom: 40px;
}
.blog-detail .contents-section .js-aco-btn {
  padding: 40px;
  background: #DCF0FF;
  display: block;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-detail .contents-section .js-aco-btn .toc-txt {
  font-size: 16px;
  text-align: start;
}
.blog-detail .contents-section .js-aco-btn .ico {
  width: 18px;
  height: 9px;
  rotate: 180deg;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.blog-detail .contents-section .js-aco-btn.is-active .ico {
  rotate: 0deg;
}
.blog-detail .contents-section .toc-txt,
.blog-detail .contents-section .ez-toc-list > li > a {
  font-weight: bold;
  line-height: 1;
}
.blog-detail .contents-section .aco-cont {
  background: #DCF0FF;
  padding: 10px 40px 40px 40px;
  display: none;
}
.blog-detail .contents-section .ez-toc-list > li {
  line-height: 1;
}
.blog-detail .contents-section .ez-toc-list > li + li {
  margin-top: 20px !important;
}
.blog-detail .contents-section .ez-toc-list > li > a {
  padding-right: 30px;
  position: relative;
  display: inline-block;
}
.blog-detail .contents-section .ez-toc-list > li > a::before {
  background: url(../img/blogs/detail/ico-arrow-down.svg) no-repeat center center/contain;
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.blog-detail .contents-section .thumb {
  width: 100%;
  margin: 0 auto;
}
.blog-detail .contents-section .content-wrap {
  margin-top: 50px;
  margin-bottom: 40px;
}
.blog-detail .contents-section .content-wrap * + * {
  margin-top: 40px;
}
.blog-detail .contents-section .content-wrap h2 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
  line-height: 1.4;
}
.blog-detail .contents-section .content-wrap p {
  font-weight: 400;
  line-height: 1.5;
}
.blog-detail .contents-section .content-wrap strong {
  color: #2387DC;
}
.blog-detail .contents-section .content-wrap h3 {
  padding-left: 14px;
  position: relative;
  display: block;
  line-height: 1.4;
  padding: 7px 23px;
  font-size: 20px;
  font-weight: bold;
}
.blog-detail .contents-section .content-wrap h3::before {
  content: "";
  position: absolute;
  background: #2387DC;
  display: block;
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.blog-detail .contents-section .content-wrap table {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow-x: auto;
  overflow-y: hidden !important;
  white-space: nowrap;
  border-collapse: collapse;
  max-width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.blog-detail .contents-section .content-wrap table::-webkit-scrollbar {
  padding-top: 10px;
}
.blog-detail .contents-section .content-wrap table tr:first-child {
  background: #DCF0FF;
}
.blog-detail .contents-section .content-wrap table th,
.blog-detail .contents-section .content-wrap table td {
  border: 1px solid #CCC;
  padding: 19px 61px;
  font-size: 14px;
  font-weight: bold;
  width: 0;
  white-space: nowrap;
}
.blog-detail .contents-section .content-wrap table td {
  text-align: center;
}
.blog-detail .contents-section .content-wrap table::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #DCF0FF;
}
.blog-detail .contents-section .content-wrap table::-webkit-scrollbar-button {
  display: none;
}
.blog-detail .contents-section .content-wrap table::-webkit-scrollbar-thumb {
  background: #2387DC;
  border-radius: 20px;
}
.blog-detail .contents-section .content-wrap table::-webkit-scrollbar {
  height: 10px;
}
.blog-detail .contents-section .content-wrap table .scroll-hint-icon-wrap {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap table .scroll-hint-icon {
  width: 100px;
  padding: 13px 0 11px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: rgba(35, 135, 220, 0.7);
}
.blog-detail .contents-section .content-wrap table .scroll-hint-icon::before {
  background-image: url(../img/schools/detail/scroll-ico02.svg);
  top: 4px;
  position: relative;
  width: 25px;
}
.blog-detail .contents-section .content-wrap table .scroll-hint-icon::after {
  background-image: url(../img/schools/detail/scroll-ico01.svg);
  width: 50px;
  left: 0;
  right: 0;
  top: 13px;
  margin: auto;
}
.blog-detail .contents-section .content-wrap table .scroll-hint-icon .scroll-hint-text {
  margin-top: 8px;
}
.blog-detail .contents-section .content-wrap table.is-scrollable {
  padding-bottom: 10px;
}
.blog-detail .contents-section .content-wrap ul + ul,
.blog-detail .contents-section .content-wrap ul + ol {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap ul > li {
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.blog-detail .contents-section .content-wrap ul > li + li {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap ul > li::before {
  content: "";
  position: absolute;
  background: #2387DC;
  display: block;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 0;
  bottom: 0;
  border-radius: 50%;
}
.blog-detail .contents-section .content-wrap ol {
  counter-reset: cnt;
}
.blog-detail .contents-section .content-wrap ol + ul,
.blog-detail .contents-section .content-wrap ol + ol {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap ol > li {
  padding-left: 20px;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
}
.blog-detail .contents-section .content-wrap ol > li + li {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap ol > li::before {
  content: "" counter(cnt) "";
  counter-increment: cnt;
  position: absolute;
  left: 2px;
  font-family: "Roboto", sans-serif;
  top: 2px;
  bottom: 0;
  margin: auto;
  color: #2387DC;
  font-weight: bold;
}
.blog-detail .contents-section .content-wrap a {
  display: inline-block;
  color: #2387DC;
  -webkit-text-decoration: underline #2387DC;
          text-decoration: underline #2387DC;
  text-underline-offset: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.blog-detail .contents-section .content-wrap .wp-block-button {
  width: 100%;
  display: block;
}
.blog-detail .contents-section .content-wrap .wp-block-button .wp-block-button__link {
  background: #FFA600;
  color: #fff;
  text-decoration: none;
  max-width: 440px;
  padding: 22px 10px;
  text-align: center;
  border: 1px solid #FFA600;
  font-weight: bold;
  border-radius: 40px;
  display: block;
  margin: auto;
}
.blog-detail .contents-section .content-wrap .wp-block-columns > * + * {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap img {
  margin: auto;
  display: block;
}
.blog-detail .contents-section .content-wrap figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}
.blog-detail .contents-section .content-wrap .wp-block-media-text * + * {
  margin-top: 0;
}
.blog-detail .contents-section .content-wrap .wp-block-media-text .wp-block-media-text__media {
  width: 100%;
}
.blog-detail .contents-section .content-wrap .wp-block-media-text .wp-block-media-text__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.blog-detail .contents-section .back-btn-wrap .back-btn {
  background: #2387DC;
  color: #fff;
  text-decoration: none;
  max-width: 440px;
  padding: 22px 10px;
  text-align: center;
  border: 1px solid #2387DC;
  font-weight: bold;
  border-radius: 40px;
  display: block;
  margin: auto;
  width: 100%;
}
.blog-detail .contents-section .cta-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 90px;
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 39px 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 8px 8px 0px 0px #DCF0FF;
          box-shadow: 8px 8px 0px 0px #DCF0FF;
}
.blog-detail .contents-section .cta-wrap .lead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.blog-detail .contents-section .cta-wrap .flex-wrap {
  width: 100%;
}
.blog-detail .contents-section .cta-wrap .flex-wrap .tel-info-block {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.blog-detail .contents-section .cta-wrap .flex-wrap .tel-info-block .txt-free {
  padding: 0 20px 2px;
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  background-color: #FFA600;
}
.blog-detail .contents-section .cta-wrap .flex-wrap .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-detail .contents-section .cta-wrap .flex-wrap .btn-wrap .txt {
  line-height: 1;
  font-weight: bold;
}
.blog-detail .contents-section .cta-wrap .flex-wrap .btn {
  background: #FFA600;
  color: #fff;
  text-decoration: none;
  width: 440px;
  padding: 22px 10px;
  text-align: center;
  border: 1px solid #FFA600;
  font-weight: bold;
  border-radius: 40px;
  display: block;
  margin: auto;
}
.blog-detail .contents-section .cta-wrap .c-bg-block {
  z-index: -1;
}
.blog-detail .contents-section .cta-wrap .c-bg-block .c-left-deco {
  top: 70px;
  left: -230px;
}
.blog-detail .contents-section .cta-wrap .c-bg-block .c-right-deco {
  bottom: 350px;
  right: -130px;
}
.blog-detail .contents-section .cta-wrap .c-bg-block .c-right-deco .right01 {
  top: 10px;
}
.blog-detail .contents-section .cta-wrap .c-bg-block .c-right-deco .right02 {
  height: 160px;
}
.blog-detail .contents-section .sns-wrap {
  background: #DCF0FF;
  padding: 20px 10px;
  margin-top: 40px;
}
.blog-detail .contents-section .sns-wrap .inn {
  margin-top: 0;
}
.blog-detail .contents-section .sns-wrap .inn .txt {
  font-size: 20px;
  line-height: 1;
  color: #2387DC;
  font-weight: bold;
}
.blog-detail .contents-section .sns-wrap .inn .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-detail .contents-section .sns-wrap .inn .sns-list > li {
  width: 40px;
  height: 100%;
}
.blog-detail .contents-section .sns-wrap .inn .sns-list > li > a {
  display: block;
}
.blog-detail .contents-section .sns-wrap .inn .sns-list > li > a > img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.ez-toc-title-toggle {
  display: none !important;
}

#ez-toc-container.ez-toc-custom {
  border: none;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-btn-wrap {
    margin-top: 30px;
    height: 50px;
  }
  .c-btn-next {
    width: 60%;
    min-width: auto;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-btn-next.yellow {
    -webkit-box-shadow: 0px 2px 0px 0px rgba(255, 166, 0, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(255, 166, 0, 0.5);
  }
  .c-btn-back {
    width: 35%;
    min-width: auto;
    font-size: 14px;
  }
  .c-footer .copyright-txt {
    font-size: 12px;
  }
  .c-header {
    padding: 20px;
  }
  .c-header .logo-wrap {
    gap: 8px;
  }
  .c-header .logo01 {
    height: 40px;
  }
  .c-header .logo02 {
    height: 15px;
  }
  .c-header .ico-tel {
    width: auto;
    height: 31px;
  }
  .c-header .tel-wrap {
    margin: 0 auto;
  }
  .c-header .tel-info-block {
    font-size: 12px;
  }
  .c-header .txt-free {
    padding: 0 15px 2px;
  }
  .c-header .menu-area {
    position: fixed;
    top: 92px;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 20px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .c-header .btn01 {
    width: 100%;
  }
  .c-header .btn02 {
    width: 100%;
  }
  .c-header .btn03 {
    width: 100%;
  }
  .c-header .toggle-btn {
    display: block;
    width: 50px;
    height: 50px;
  }
  .c-header .toggle-btn .inn {
    width: 30px;
    height: 20px;
  }
  .c-header.is-active .line:first-child {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
            transform: rotate(45deg) translate(6px, 6px);
  }
  .c-header.is-active .line:last-child {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
            transform: rotate(-45deg) translate(6px, -6px);
  }
  .c-input-btn-group label {
    padding-left: 30px;
  }
  .c-input-btn-group label span {
    padding: 8px 15px;
    min-height: 43.5px;
    font-size: 16px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-input-btn-group label::before {
    width: 20px;
    height: 20px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-input-btn-group label:has(input:checked) span {
    padding-left: 12px;
  }
  .c-input-btn-group.radio label::after {
    left: 4px;
    width: 12px;
    height: 12px;
  }
  .c-input-not-btn {
    padding: 8px 15px;
    min-height: 43.5px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-input-not-btn-wrap + .c-input-not-btn-wrap {
    margin-top: 10px;
  }
  .c-bg-block .c-left-deco {
    top: 120px;
  }
  .c-bg-block .c-right-deco {
    bottom: 320px;
  }
  .left01 {
    width: 462px;
    height: 50px;
  }
  .left02 {
    top: 48px;
    width: 352px;
    height: 35px;
  }
  .left03 {
    top: 120px;
    width: 150px;
    height: 32px;
  }
  .right01 {
    width: 422px;
    height: 63px;
  }
  .right02 {
    top: 80px;
    width: 452px;
    height: 100px;
  }
  .right03 {
    top: 180px;
    width: 302px;
    height: 50px;
    background-color: none;
    background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
    background: linear-gradient(to left, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
  }
  .c-tel-num {
    padding-left: 42px;
    font-size: 30px;
  }
  .c-tel-num::before {
    width: 30px;
    height: 31px;
  }
  .c-q-num-block {
    position: relative;
    margin-bottom: 0;
    margin-left: auto;
    width: 78px;
    height: 78px;
    max-width: 78px;
    min-width: 78px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-q-num-block::after {
    width: 50px;
    top: 38px;
    left: 15px;
  }
  .now-num {
    left: 15px;
    width: 25px;
    font-size: 18px;
  }
  .total-num {
    top: 40px;
    left: 42px;
    width: 16px;
    font-size: 12px;
  }
  .c-fv-section .c-fv-wrap > * + * {
    margin-top: 20px;
  }
  .c-fv-section .c-bg-block .c-left-deco {
    top: 200px;
    left: -300px;
  }
  .c-fv-section .c-bg-block .c-right-deco {
    bottom: 180px;
    right: -220px;
  }
  .c-fv-section .c-bg-block .c-right-deco .right01 {
    width: 350px;
  }
  .c-ttl01 {
    font-size: 22px;
  }
  .c-ttl02 {
    font-size: 16px;
  }
  .confirm .c-fv-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .confirm .c-fv-section .ttl {
    padding: 30px 15px;
    font-size: 20px;
    -webkit-box-shadow: 0px 5px 0px 0px #DCF0FF;
            box-shadow: 0px 5px 0px 0px #DCF0FF;
  }
  .confirm .c-fv-section .ttl::before, .confirm .c-fv-section .ttl::after {
    bottom: -20px;
    border-width: 20px 15px 0 15px;
  }
  .confirm .c-fv-section .ttl::before {
    left: 0;
    bottom: -28px;
    border-width: 23px 17px 0 17px;
  }
  .confirm .confirm-section .inner-block {
    padding-bottom: 50px;
  }
  .confirm .confirm-section .confirm-cont {
    padding: 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .confirm .confirm-section .q {
    width: 100%;
    min-width: auto;
  }
  .confirm .confirm-section .c-right-deco {
    bottom: 250px;
    right: -200px;
  }
  .form .c-fv-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .form .c-fv-section .c-bg-block .c-right-deco .left03 {
    width: 320px;
  }
  .form .banner-deco {
    height: 15px;
  }
  .form .form-section .inner-block {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .form .form-section .question + .question {
    margin-top: 30px;
  }
  .form .form-section .q-ttl-area {
    gap: 10px;
  }
  .form .form-section .required {
    padding: 1px 10px 3px;
    font-size: 12px;
  }
  .form .form-section .q-ttl {
    font-size: 14px;
  }
  .form .form-section .q-note {
    margin-top: 5px;
    font-size: 12px;
  }
  .form .form-section .prev-input-area {
    margin-top: 5px;
  }
  .form .form-section .input-area {
    margin-top: 10px;
    padding: 15px;
  }
  .form .form-section label + label {
    margin-top: 10px;
  }
  .form .form-section .error-txt {
    font-size: 14px;
  }
  .form .form-section .btn-ok {
    margin-top: 10px;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .home .mv-section {
    padding-top: 110px;
    padding-bottom: 55px;
  }
  .home .mv-section .copy-wrap {
    gap: 5px;
  }
  .home .mv-section .logo-img {
    width: 224px;
  }
  .home .mv-section .copy-txt {
    padding: 0 30px;
    font-size: 16px;
  }
  .home .mv-section .copy-txt-l {
    font-size: 20px;
  }
  .home .mv-section .img-wrap {
    width: auto;
    height: 50px;
  }
  .home .mv-section .txt-point {
    font-size: 12px;
  }
  .home .mv-section .txt-point-l {
    font-size: 20px;
  }
  .home .mv-section .txt-note {
    font-size: 10px;
  }
  .home .banner-section .main-txt {
    font-size: 18px;
  }
  .home .banner-section .banner {
    width: 100%;
    max-width: 450px;
    margin: auto;
    line-height: 1.8;
  }
  .home .banner-section .banner .strong {
    font-size: 18px;
  }
  .home .banner-section .banner .btn01 {
    margin-right: 0;
    margin-top: 2px;
  }
  .home .banner-section .banner .left-deco {
    top: 13px;
  }
  .home .banner-section .banner .b-left01 {
    width: 300px;
    height: 30px;
    top: 40px;
  }
  .home .banner-section .banner .b-left02 {
    width: 200px;
    height: 30px;
  }
  .home .banner-section .banner .right-deco {
    bottom: 24px;
  }
  .home .banner-section .banner .b-right01 {
    width: 300px;
    height: 30px;
    bottom: 25px;
  }
  .home .banner-section .banner .b-right02 {
    width: 200px;
    height: 30px;
  }
  .home .chat-section .inner-block {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .home .chat-section .form01 {
    padding-left: 0;
  }
  .home .chat-section .question > * + * {
    margin-top: 18px;
  }
  .home .chat-section .question + .question {
    margin-top: 30px;
  }
  .home .chat-section .chat {
    margin-left: 55px;
    padding: 10px;
  }
  .home .chat-section .chat::before {
    left: -55px;
    width: 40px;
    height: 40px;
  }
  .home .chat-section .chat::after {
    top: 14px;
    left: -10px;
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #FFE6EF transparent transparent;
  }
  .home .chat-section .input-area {
    margin-left: 0;
    padding: 15px;
  }
  .home .chat-section .input-area::after {
    top: auto;
    bottom: -10px;
    right: 30px;
    border-width: 10px 7.5px 0 7.5px;
    border-color: #DCF0FF transparent transparent transparent;
  }
  .home .chat-section .input-area .error-txt {
    font-size: 14px;
  }
  .home .chat-section label + label {
    margin-top: 10px;
  }
  .home .chat-section .c-input-btn-group.check label::after {
    width: 20px;
    height: 20px;
    background-size: 14px 10px;
  }
  .home .chat-section select {
    padding: 8px 15px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .home .chat-section textarea.auto-expand {
    min-height: 70px;
    border-radius: 15px;
  }
  .home .chat-section .sub-group {
    margin-top: 10px;
    padding-left: 30px;
  }
  .home .chat-section .q-group + .q-group {
    margin-top: 20px;
  }
  .home .chat-section .contact .q-group + .q-group {
    margin-top: 10px;
  }
  .home .chat-section .q-group-ttl {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .home .chat-section .btn-ok {
    margin-top: 10px;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .home .chat-section .modal {
    padding: 20px;
  }
  .home .chat-section .modal-content {
    padding: 20px 10px;
    border-radius: 10px;
  }
  .home .chat-section .modal-ttl {
    font-size: 18px;
  }
  .home .chat-section .modal-sub-ttl {
    font-size: 18px;
  }
  .home .chat-section .privacy-block {
    margin-top: 10px;
    padding-right: 10px;
  }
  .home .chat-section .privacy-cont {
    padding: 20px;
  }
  .home .chat-section .privacy-cont .ttl01 {
    font-size: 14px;
  }
  .home .chat-section .privacy-cont p {
    font-size: 12px;
  }
  .home .chat-section .btn-close {
    width: 30px;
    height: 30px;
    top: -40px;
  }
  .home .chat-section .modal-privacy .btn-ok {
    -webkit-box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  }
  .home .chat-section .c-btn-next {
    width: 100%;
    max-width: 400px;
  }
  .thank-you .c-fv-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .thank-you .c-fv-section .tel-num-block {
    margin-top: 20px;
  }
  .thank-you .c-fv-section .c-btn-wrap {
    margin-top: 40px;
  }
  .schools .mv-section {
    padding-top: 140px;
    padding-bottom: 50px;
  }
  .schools .mv-section .p-ttl {
    font-size: 22px;
  }
  .schools .blue-line {
    font-size: 18px;
    padding: 14px 0;
  }
  .schools .search-block {
    padding-top: 30px;
  }
  .schools .search-block .line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 15px 0;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .schools .search-block .ttl {
    width: 100%;
  }
  .schools .search-block .r-area {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .schools .search-block label .txt {
    padding: 10px 15px;
    font-size: 12px;
  }
  .schools .search-block .toggle-btn.is-active {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .schools .search-block .toggle-btn {
    margin-top: 20px;
    padding-bottom: 40px;
  }
  .schools .search-block .toggle-btn .txt::before {
    bottom: -5px;
  }
  .schools .result-section {
    padding-bottom: 50px;
  }
  .schools .result-section .result-list > li {
    padding: 20px;
    margin-bottom: 20px;
  }
  .schools .result-section .result-list .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .schools .result-section .result-list .top-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
  .schools .result-section .result-list .top-area .ttl {
    font-size: 20px;
  }
  .schools .result-section .result-list .top-area .tag {
    font-size: 12px;
    padding: 7px 15px 9px;
  }
  .schools .result-section .result-list .img-area {
    width: 100%;
    padding-top: 60%;
  }
  .schools .result-section .result-list .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .schools .result-section .result-list .l-side {
    width: 100%;
  }
  .schools .result-section .result-list .type {
    width: 50%;
    text-align: center;
  }
  .schools .result-section .result-list .span {
    width: 50%;
    text-align: center;
  }
  .schools .result-section .result-list .price {
    width: 100%;
    padding: 15px 0;
  }
  .schools .result-section .result-list .price .num {
    font-size: 26px;
  }
  .schools .result-section .result-list .btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .schools .result-section .result-list .btn01 {
    width: 100%;
  }
  .schools .result-section .result-list .btn02 {
    width: 100%;
  }
  .detail .c-fv-section {
    padding-top: 140px;
    padding-bottom: 50px;
  }
  .detail .c-fv-section .c-bg-block .c-right-deco .left03 {
    width: 320px;
  }
  .detail .banner-deco {
    height: 15px;
  }
  .detail .ttl {
    font-size: 18px;
  }
  .detail .ttl.top {
    padding-top: 10px;
  }
  .detail .ttl.bottom {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .detail .btn {
    padding: 13px 10px;
    margin: 20px auto 0;
  }
  .detail p + * {
    margin-top: 20px;
  }
  .detail p + .ttl04 {
    margin-top: 30px;
  }
  .detail ul + * {
    margin-top: 20px;
  }
  .detail ul + .ttl04 {
    margin-top: 30px;
  }
  .detail .list > li::before {
    top: 5px;
  }
  .detail .list > li::after {
    top: 8px;
  }
  .detail ol > li {
    padding-left: 15px;
  }
  .detail ol > li + li {
    margin-top: 5px;
  }
  .detail ol > li::before {
    top: 1px;
  }
  .detail ol + * {
    margin-top: 20px;
  }
  .detail ol + .ttl04 {
    margin-top: 30px;
  }
  .detail section {
    padding-top: 50px;
  }
  .detail section:last-child {
    padding-bottom: 50px;
  }
  .detail .desc-section {
    padding-bottom: 50px;
    padding-top: 30px;
  }
  .detail .desc-section .ttl-wrap > .ttl {
    font-size: 18px;
    padding-right: 20px;
  }
  .detail .desc-section .ttl-wrap .pref {
    font-size: 12px;
  }
  .detail .desc-section .inn {
    margin-top: 20px;
  }
  .detail .desc-section .inn > .img {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .detail .desc-section .inn .txt-wrap {
    gap: 10px;
    padding-top: 10px;
  }
  .detail .desc-section .inn .add-box .bold {
    margin-bottom: 10px;
  }
  .detail .desc-section .inn .add-box .link {
    margin-top: 5px;
  }
  .detail .desc-section .inn .btn {
    margin-top: 10px;
  }
  .detail .nav-list {
    row-gap: 0;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .detail .nav-list > li {
    width: calc((100% - 10px) / 2);
    border-right: none;
    border-bottom: 1px solid #CCC;
  }
  .detail .nav-list > li:nth-child(5n+1) {
    border-left: none;
  }
  .detail .nav-list > li .nav {
    padding: 10px 20px 8px 0;
    text-align: left;
  }
  .detail .nav-list > li .nav .ico {
    left: inherit;
    top: 0;
    right: 5px;
  }
  .detail .about-section .inner-block > .img {
    margin-bottom: 30px;
  }
  .detail .about-section .rec-list > li > .img {
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-bottom: 20px;
  }
  .detail .about-section .rec-list > li > .txt-wrap .ttl {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .detail .price-section .blue-txt {
    margin-bottom: 10px;
    padding: 8px 0;
  }
  .detail .price-section .scroll-box > .table tr th .num,
  .detail .price-section .scroll-box > .table tr td .num {
    font-size: 18px;
  }
  .detail .price-section .option-wrap {
    gap: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .detail .price-section .option-wrap .box {
    width: 100%;
    max-width: 300px;
  }
  .detail .price-section .option-wrap .box > table td .num {
    font-size: 18px;
  }
  .detail .price-section h4 {
    margin-top: 30px;
  }
  .detail .price-section .table-wrap .table th {
    padding: 15px;
  }
  .detail .price-section .table-wrap .table td {
    padding: 15px;
  }
  .detail .price-section .note-list + ul {
    margin-top: 20px;
  }
  .detail .price-section .btn {
    margin-top: 20px;
  }
  .detail .acc-section .acc-prev-box + .acc-prev-box {
    margin-top: 20px;
  }
  .detail .acc-section .acc-prev-box .aco-wrap {
    padding: 20px 20px 10px 20px;
  }
  .detail .acc-section .acc-prev-box .aco-wrap .img {
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-bottom: 10px;
  }
  .detail .acc-section .acc-prev-box .aco-wrap .txt-wrap {
    gap: 10px;
  }
  .detail .acc-section .aco-cont {
    padding: 10px 20px 0 20px;
  }
  .detail .acc-section .aco-cont > .table th {
    width: 100%;
    display: block;
    padding: 15px 20px 15px 0;
  }
  .detail .acc-section .aco-cont > .table td {
    width: 100%;
    display: block;
    padding: 0 0 15px;
  }
  .detail .acc-section .aco-cont > .table td .type-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .detail .acc-section .aco-cont > .table td .type-list > li {
    font-size: 12px;
    padding: 6px 10px 7px;
  }
  .detail .acc-section .aco-cont .box {
    margin-top: 20px;
  }
  .detail .acc-section .aco-cont .box .inn {
    width: 100%;
  }
  .detail .acc-section .aco-cont .box .inn + .inn {
    margin-top: 10px;
  }
  .detail .acc-section .js-aco-btn {
    height: 50px;
  }
  .detail .access-section h4 {
    margin-top: 20px;
  }
  .detail .access-section .acc-next-box {
    margin-top: 20px;
  }
  .detail .access-section .acc-next-box .js-aco-btn {
    padding: 20px;
  }
  .detail .access-section .acc-next-box .js-aco-btn .txt {
    font-size: 16px;
  }
  .detail .access-section .acc-next-box .aco-cont {
    padding: 0 20px 20px;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr th {
    width: 100%;
    display: block;
    padding: 15px 22px 15px 0;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td {
    width: 100%;
    display: block;
    padding: 0 0 15px;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .aco-list > li {
    padding: 0;
    border: none;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 0;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .inn {
    gap: 10px;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .sta {
    padding: 0 0 15px 0;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .sta::before {
    display: none;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .sta::after {
    width: 2px;
    height: 20px;
    top: inherit;
    left: 0;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .route {
    padding: 0 0 15px;
  }
  .detail h5 {
    margin-top: 20px;
    font-size: 16px;
    padding-left: 10px;
  }
  .detail h5.ttl {
    margin-top: 20px;
    font-size: 16px;
    padding-left: 10px;
  }
  .detail .link-section .link-list > li {
    width: 100%;
  }
  .detail .link-section .link-list > li + li {
    margin-top: 20px;
  }
  .detail .link-section .link-list > li .img {
    max-width: 400px;
    margin: auto;
  }
  .detail .link-section .link-list > li .txt {
    margin-top: 10px;
  }
  .c-no-result {
    padding-bottom: 10px;
  }
  .c-no-result h3, .c-no-result p {
    font-size: 18px;
  }
  .blogs .c-fv-section {
    padding-top: 140px;
    padding-bottom: 50px;
  }
  .blogs .c-fv-section .c-bg-block .c-right-deco .left03 {
    width: 320px;
  }
  .blogs .banner-deco {
    height: 15px;
  }
  .blogs .l-flex .blog-list {
    gap: 20px;
  }
  .blogs .l-flex .blog-list > li .article-link .txt-wrap .tag-list > li {
    padding: 5px 15px;
    font-size: 12px;
  }
  .blogs .l-flex .blog-list > li .article-link .txt-wrap .date {
    margin-top: 5px;
    font-size: 12px;
  }
  .blogs .l-flex .blog-list > li .article-link .txt-wrap .ttl {
    font-size: 20px;
  }
  .blog-detail .c-fv-section {
    padding-top: 140px;
    padding-bottom: 50px;
  }
  .blog-detail .c-fv-section .c-bg-block .c-right-deco .left03 {
    width: 320px;
  }
  .blog-detail .banner-deco {
    height: 15px;
  }
  .blog-detail .contents-section {
    padding-bottom: 50px;
    padding-top: 30px;
  }
  .blog-detail .contents-section .ttl-area {
    margin-bottom: 20px;
  }
  .blog-detail .contents-section .ttl-area .ttl {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .blog-detail .contents-section .ttl-area .tag-wrap {
    margin-bottom: 10px;
  }
  .blog-detail .contents-section .ttl-area .tag-wrap .tag-list > li .txt {
    font-size: 12px;
  }
  .blog-detail .contents-section .ttl-area .tag-wrap .date {
    text-align: end;
    margin-top: 10px;
    font-size: 12px;
  }
  .blog-detail .contents-section .acc-next-box {
    margin-bottom: 20px;
  }
  .blog-detail .contents-section .js-aco-btn {
    padding: 20px;
  }
  .blog-detail .contents-section .js-aco-btn .toc-txt {
    font-size: 14px;
  }
  .blog-detail .contents-section .aco-cont {
    padding: 0 20px 20px 20px;
  }
  .blog-detail .contents-section .ez-toc-list > li {
    font-size: 13px;
  }
  .blog-detail .contents-section .ez-toc-list > li + li {
    margin-top: 10px !important;
  }
  .blog-detail .contents-section .ez-toc-list > li > a::before {
    width: 15px;
    height: 15px;
  }
  .blog-detail .contents-section .thumb {
    max-width: 500px;
  }
  .blog-detail .contents-section .content-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .blog-detail .contents-section .content-wrap * + * {
    margin-top: 20px;
  }
  .blog-detail .contents-section .content-wrap h2 {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .blog-detail .contents-section .content-wrap h3 {
    font-size: 16px;
    padding-left: 10px;
  }
  .blog-detail .contents-section .content-wrap table th,
  .blog-detail .contents-section .content-wrap table td {
    padding: 20px 30px;
  }
  .blog-detail .contents-section .content-wrap ul > li::before {
    top: 5px;
  }
  .blog-detail .contents-section .content-wrap ol > li {
    padding-left: 15px;
  }
  .blog-detail .contents-section .content-wrap ol > li::before {
    top: 1px;
  }
  .blog-detail .contents-section .content-wrap .wp-block-button .wp-block-button__link {
    padding: 13px 10px;
  }
  .blog-detail .contents-section .content-wrap .wp-block-columns > * + * {
    margin-top: 20px;
  }
  .blog-detail .contents-section .content-wrap .wp-block-media-text .wp-block-media-text__media > img {
    width: 100%;
  }
  .blog-detail .contents-section .content-wrap .wp-block-media-text .wp-block-media-text__content {
    margin-top: 20px;
  }
  .blog-detail .contents-section .back-btn-wrap .back-btn {
    padding: 13px 10px;
  }
  .blog-detail .contents-section .cta-wrap {
    margin-top: 40px;
    padding: 20px 15px;
    gap: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog-detail .contents-section .cta-wrap .lead {
    font-size: 18px;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap {
    display: block;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .c-tel-num {
    display: block;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .tel-info-block {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .btn-wrap {
    margin-top: 10px;
    gap: 5px;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .btn-wrap .txt {
    font-size: 12px;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .btn {
    width: 100%;
    max-width: 440px;
    padding: 15px 10px;
  }
  .blog-detail .contents-section .cta-wrap .c-bg-block .c-left-deco {
    top: 75px;
    left: -200px;
  }
  .blog-detail .contents-section .cta-wrap .c-bg-block .c-right-deco {
    bottom: 300px;
  }
  .blog-detail .contents-section .sns-wrap .inn {
    text-align: center;
  }
  .blog-detail .contents-section .sns-wrap .inn .txt {
    font-size: 18px;
  }
  .blog-detail .contents-section .sns-wrap .inn .sns-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
  }
  .blog-detail .contents-section .sns-wrap .inn .sns-list > li {
    width: 30px;
  }
}

@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1440px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo-wrap:hover {
    opacity: 0.8;
  }
  .c-header .btn01:hover {
    background: #2387DC;
    color: #fff;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-header .btn02:hover {
    background: #fff;
    color: #2387DC;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  .c-header .btn03:hover {
    background: #fff;
    color: #FFA600;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  .c-input-btn-group label:hover span {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-input-btn-group label:hover::before {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-input-not-btn-wrap:hover .c-input-not-btn, .c-input-not-btn-wrap:focus-within .c-input-not-btn {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .mv-section .left-block {
    margin-bottom: 20px;
  }
  .home .banner-section .banner:hover .btn01 {
    background: #fff;
    color: #2387DC;
  }
  .home .chat-section .select-group:hover select {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .chat-section .btn-txt:hover {
    color: rgba(51, 51, 51, 0.6);
  }
  .home .chat-section .c-btn-wrap {
    margin-top: 100px;
  }
  .schools .search-block label:hover .txt {
    color: #2387DC;
    border-color: #2387DC;
  }
  .schools .search-block label :checked:hover + .txt {
    color: #fff;
  }
  .schools .search-block .toggle-btn.is-active:hover .txt::before {
    -webkit-transform: rotate(0deg) translateY(-5px);
            transform: rotate(0deg) translateY(-5px);
  }
  .schools .search-block .toggle-btn:hover .txt::before {
    -webkit-transform: rotate(-180deg) translateY(-5px);
            transform: rotate(-180deg) translateY(-5px);
  }
  .schools .result-section .result-list .btn01:hover {
    background: #fff;
    color: #2387DC;
  }
  .schools .result-section .result-list .btn02:hover {
    background: #fff;
    color: #FFA600;
  }
  .detail .btn:hover {
    background: #fff;
  }
  .detail .btn:hover .txt {
    color: #FFA600;
  }
  .detail .desc-section .inn {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
  }
  .detail .desc-section .inn .add-box .link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .detail .desc-section .inn .add-box .link:hover::before {
    right: -3px;
  }
  .detail .nav-list > li .nav:hover .ico {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  .detail .about-section .rec-list > li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
  }
  .detail .acc-section .acc-prev-box .aco-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
  }
  .detail .acc-section .aco-cont .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .detail .acc-section .js-aco-btn:hover {
    background: #c7e7ff;
  }
  .detail .access-section .acc-next-box .js-aco-btn:hover {
    background: #c7e7ff;
  }
  .detail .access-section .acc-next-box .aco-cont .table tr td .aco-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .detail .link-section .link-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
  }
  .detail .link-section .link-list > li .link:hover {
    opacity: 0.7;
  }
  .blogs .l-flex .blog-list > li .article-link .txt-wrap .tag-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blogs .l-flex .paging-area .prev:hover,
  .blogs .l-flex .paging-area .next:hover {
    color: #2387DC;
  }
  .blogs .l-flex .paging-area .prev:hover::before,
  .blogs .l-flex .paging-area .next:hover::before {
    border-color: #2387DC;
  }
  .blogs .l-flex .paging-area .prev:hover::before {
    left: -2px;
  }
  .blogs .l-flex .paging-area .next:hover::before {
    right: -2px;
  }
  .blogs .l-flex .paging-area .page-numbers:not(.next):not(.prev):hover {
    background: #2387DC;
    color: #fff;
  }
  .blogs .l-flex .sidebar .box .list > li .link:hover {
    color: #2387DC;
  }
  .blog-detail .contents-section .ttl-area .tag-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog-detail .contents-section .js-aco-btn:hover {
    background: #c7e7ff;
  }
  .blog-detail .contents-section .ez-toc-list > li > a:hover {
    color: #2387DC;
  }
  .blog-detail .contents-section .ez-toc-list > li > a:hover::before {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .blog-detail .contents-section .content-wrap a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    opacity: 0.7;
  }
  .blog-detail .contents-section .content-wrap .wp-block-button .wp-block-button__link:hover {
    background: #fff;
    color: #FFA600;
    opacity: 1;
  }
  .blog-detail .contents-section .content-wrap .wp-block-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .blog-detail .contents-section .content-wrap .wp-block-media-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 10px;
  }
  .blog-detail .contents-section .content-wrap .wp-block-media-text .wp-block-media-text__media {
    max-width: 320px;
    min-width: 280px;
  }
  .blog-detail .contents-section .back-btn-wrap .back-btn:hover {
    background: #fff;
    color: #2387DC;
    opacity: 1;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    row-gap: 20px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .tel-wrap {
    padding-top: 17px;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .c-tel-num {
    line-height: 1;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .tel-info-block {
    padding-top: 7px;
  }
  .blog-detail .contents-section .cta-wrap .flex-wrap .btn:hover {
    background: #fff;
    color: #FFA600;
    opacity: 1;
  }
  .blog-detail .contents-section .sns-wrap .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog-detail .contents-section .sns-wrap .inn .txt,
  .blog-detail .contents-section .sns-wrap .inn .sns-list {
    width: calc((100% - 40px) / 2);
    text-align: center;
  }
  .blog-detail .contents-section .sns-wrap .inn .sns-list > li > a:hover > img {
    opacity: 0.7;
  }
}

@media (any-hover: hover) {
  .c-btn-next:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-btn-next:hover::before, .c-btn-next:hover::after {
    -webkit-animation: shiny-large 0.6s ease-in-out forwards;
            animation: shiny-large 0.6s ease-in-out forwards;
  }
  .c-btn-back:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .form .form-section .btn-ok:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .form .form-section .btn-ok:hover::before, .form .form-section .btn-ok:hover::after {
    -webkit-animation: shiny 0.6s ease-in-out forwards;
            animation: shiny 0.6s ease-in-out forwards;
  }
  .home .chat-section .btn-ok:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .chat-section .btn-ok:hover::before, .home .chat-section .btn-ok:hover::after {
    -webkit-animation: shiny 0.6s ease-in-out forwards;
            animation: shiny 0.6s ease-in-out forwards;
  }
  .home .chat-section .modal-privacy .btn-ok:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media only screen and (max-width: 425px) {
  .c-footer .link-block {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .c-footer .link-block a:not(:last-child)::after {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .c-header {
    padding: 12px 20px 16px;
  }
  .c-q-num-block {
    width: 100px;
    height: 100px;
    max-width: 100px;
    min-width: 100px;
  }
  .c-q-num-block::after {
    width: 70px;
    top: 50px;
    left: 18px;
  }
  .now-num {
    top: 8px;
    left: 5px;
    font-size: 32px;
  }
  .total-num {
    top: 50px;
    left: 56px;
  }
  .c-ttl01 {
    font-size: 24px;
  }
  .c-ttl02 {
    font-size: 18px;
  }
  .confirm .c-fv-section .ttl {
    padding: 40px 20px;
    font-size: 24px;
  }
  .confirm .confirm-section .q {
    width: 300px;
    min-width: 300px;
  }
  .home .mv-section .logo-img {
    width: 400px;
  }
  .home .mv-section .copy-txt {
    font-size: 20px;
  }
  .home .mv-section .copy-txt-l {
    font-size: 24px;
  }
  .home .mv-section .br-tab {
    display: inline;
  }
  .home .mv-section .mv-point {
    padding: 10px 20px 14px;
  }
  .home .mv-section .txt-point {
    font-size: 16px;
  }
  .home .mv-section .txt-point-l {
    font-size: 24px;
  }
  .home .banner-section .main-txt {
    font-size: 24px;
  }
  .home .chat-section .modal-content {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .c-header .tel-wrap {
    margin: 0 auto;
  }
  .c-header .menu-area {
    position: fixed;
    top: 146px;
    right: 0;
    height: 100vh;
    width: 50%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 20px 20px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .c-header .toggle-btn {
    display: block;
  }
}

@media only screen and (max-width: 767px) and (max-width: 325px) {
  .c-header .txt-free {
    font-size: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1600px) {
  .c-header .btn01 {
    font-size: 14px;
    padding: 21px min(20px, 1.25vw);
  }
  .c-header .btn02 {
    font-size: 14px;
    padding: 21px min(20px, 1.25vw);
  }
  .c-header .btn03 {
    font-size: 14px;
    padding: 21px min(20px, 1.25vw);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1600px) and (max-width: 1400px) {
  .c-header .btn01 {
    width: 100%;
  }
  .c-header .btn02 {
    width: 100%;
  }
  .c-header .btn03 {
    width: 100%;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 768px) {
  .c-fv-section .c-bg-block .c-left-deco {
    left: -300px;
  }
  .c-fv-section .c-bg-block .c-right-deco {
    right: -250px;
  }
}

@media only screen and (max-width: 390px) {
  .confirm .c-fv-section .ttl {
    padding: 20px 10px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 1500px) and (min-width: 768px) {
  .confirm .confirm-section .c-right-deco {
    bottom: 320px;
    right: -200px;
  }
}

@media only screen and (max-width: 1340px) {
  .home .mv-section {
    gap: 20px;
  }
  .home .mv-section .br-custom01 {
    display: inline;
  }
}

@media only screen and (max-width: 840px) {
  .home .mv-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .mv-section .mv-point {
    padding: 15px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 0px 0px #DCF0FF;
            box-shadow: 0px 5px 0px 0px #DCF0FF;
  }
  .home .mv-section .mv-point:first-child::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #2387DC transparent;
  }
  .home .mv-section .mv-point::after {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .home .mv-section .br-custom02 {
    display: inline;
  }
  .home .mv-section .mv-point + .mv-point {
    margin-top: 10px;
  }
  .home .mv-section .img-wrap {
    width: 70px;
  }
  .home .chat-section .privacy-block::-webkit-scrollbar {
    width: 10px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .home .mv-section .mv-point {
    padding-left: 20px;
  }
  .home .mv-section .txt-note {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 1025px) {
  .home .mv-section .txt-point {
    font-size: 20px;
  }
  .home .mv-section .txt-point-l {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1260px) {
  .home .banner-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (max-width: 1260px) and (max-width: 767px) {
  .home .banner-section {
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 450px) {
  .home .banner-section .banner .left-deco {
    top: 0;
  }
  .home .banner-section .banner .right-deco {
    bottom: 0;
  }
}

@media only screen and (max-width: 1130px) and (min-width: 768px) {
  .home .chat-section .chat {
    margin-right: 30px;
  }
  .home .chat-section .input-area {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 1420px) {
  .home .chat-section .btn-close {
    right: 0;
  }
}

@media only screen and (max-width: 1420px) and (min-width: 768px) {
  .home .chat-section .btn-close {
    top: -70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 800px) {
  .schools .result-section .result-list > li {
    padding: 20px;
  }
  .schools .result-section .result-list .btn-area {
    gap: 10px;
  }
  .schools .result-section .result-list .btn01 {
    width: calc(50% - 5px);
  }
  .schools .result-section .result-list .btn02 {
    width: calc(50% - 5px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .schools .result-section .result-list .img-area {
    padding-top: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (max-width: 1000px) {
  .schools .result-section .result-list .img-area {
    width: min(350px, 35vw);
    padding-top: 28%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .schools .result-section .result-list .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media only screen and (max-width: 999px) {
  .blogs .contents-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .blogs .l-flex .blog-list > li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .blogs .l-flex .blog-list > li .article-link .img {
    width: 100%;
    max-width: 500px;
    margin: auto;
    margin-bottom: 20px;
  }
  .blogs .l-flex .paging-area {
    position: inherit;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .blogs .l-flex .sidebar {
    width: 100%;
  }
  .blogs .l-flex .sidebar .box .list > li .link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .blogs .l-flex .sidebar .box .list > li + li {
    margin-top: 3px;
  }
}

@media only screen and (min-width: 1000px) {
  .blogs .l-flex {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(50px, 100px, min(100px, 7.1428571429vw));
  }
  .blogs .l-flex .blog-list > li .article-link {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 48px, min(48px, 3.4285714286vw));
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blogs .l-flex .blog-list > li .article-link:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */