@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html):not(iframe):not(canvas):not(img):not(svg):not(video):not(audio):not(svg *):not(symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: normal;
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  word-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: revert;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: revert;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes swipe {
  25% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  75% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes swipe {
  25% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  75% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
html {
  font-size: 62.5%;
}

body {
  color: #666;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #3695d9;
}
a:hover {
  opacity: 0.7;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

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

button:hover {
  opacity: 0.7;
  cursor: pointer;
}

input,
textarea,
select {
  padding: 7.8px 15px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #ffed94;
}
@media screen and (max-width: 767px) {
  input,
  textarea,
  select {
    padding: 8.8px 13px;
  }
}

::-webkit-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

select {
  width: 100%;
}
select:hover {
  cursor: pointer;
}

.select {
  display: inline;
  position: relative;
}
.select::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #999 transparent transparent transparent;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  pointer-events: none;
}

input[type=checkbox] {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

tr,
th,
td {
  border: 1px solid #ccc;
}

.layout--pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .layout--pc {
    display: none;
  }
}

.layout--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .layout--sp {
    display: block;
  }
}

.firstView {
  position: relative;
}

.wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0;
}

.title {
  max-width: 242px;
  width: 25.2083333333%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .title {
    max-width: 316px;
    width: 47.1641791045%;
    margin: 0 auto;
  }
}

.fontNumber {
  color: #3695d9;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
}

.formFlowTitle {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .formFlowTitle {
    font-size: 1.5rem;
  }
}
.formFlowTitle .fontNumber {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .formFlowTitle .fontNumber {
    margin-right: 7px;
  }
}

.attention {
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .attention {
    font-size: 1rem;
  }
}
.attention + .attention {
  margin-top: 7.2px;
}
@media screen and (max-width: 767px) {
  .attention + .attention {
    margin-top: 10px;
  }
}
.attention a {
  text-decoration: underline;
}

.copyright {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.1rem;
  }
}

.button, button.button {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .button, button.button {
    width: 250px;
  }
}
.button__link, button.button {
  display: block;
  padding: 14px 5px;
  color: #3695d9;
  border: 2px solid #3695d9;
  border-radius: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .button__link, button.button {
    padding-top: 8.4px;
    padding-bottom: 8.4px;
    font-size: 1.8rem;
  }
}
.button--fill .button__link, .button--fill button.button, .button--fillArrowDown .button__link, .button--fillArrowDown button.button {
  color: #fff;
  background-color: #3695d9;
}
.button--fillArrowDown .button__link, .button--fillArrowDown button.button {
  position: relative;
  padding-right: 40px;
  padding-left: 40px;
}
.button--fillArrowDown .button__link::before, .button--fillArrowDown button.button::before, .button--fillArrowDown .button__link::after, .button--fillArrowDown button.button::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  translate: -50% 0;
  width: 3px;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
}
.button--fillArrowDown .button__link::before, .button--fillArrowDown button.button::before {
  right: 27px;
  rotate: -45deg;
}
.button--fillArrowDown .button__link::after, .button--fillArrowDown button.button::after {
  right: 22px;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .button--fillArrowDown .button__link, .button--fillArrowDown button.button {
    padding-right: 30px;
    padding-left: 30px;
  }
  .button--fillArrowDown .button__link::before, .button--fillArrowDown button.button::before, .button--fillArrowDown .button__link::after, .button--fillArrowDown button.button::after {
    top: calc(50% - 3px);
    width: 2px;
    height: 7px;
  }
  .button--fillArrowDown .button__link::before, .button--fillArrowDown button.button::before {
    right: 22px;
  }
  .button--fillArrowDown .button__link::after, .button--fillArrowDown button.button::after {
    right: 18px;
  }
}
.button--gray .button__link, .button--gray button.button {
  color: #666;
  border-color: #ccc;
}
.button--orange .button__link, .button--orange button.button {
  color: #fff;
  background-color: #ee9313;
  border-color: #fff;
}
.button--orangegradation .button__link, .button--orangegradation button.button {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgb(253, 195, 125)), to(rgb(228, 152, 112)));
  background: linear-gradient(90deg, rgb(253, 195, 125) 0%, rgb(228, 152, 112) 100%);
  border: none;
}
.button--disabled .button__link, .button--disabled button.button {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
  pointer-events: none;
}
.button--twoTiers {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .button--twoTiers {
    max-width: 335px;
    width: 100%;
  }
}
.button--twoTiers .button__link, .button--twoTiers button.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 95px;
  padding: 0 10px;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.01em;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .button--twoTiers .button__link, .button--twoTiers button.button {
    min-height: 65px;
    font-size: 2.1rem;
  }
}
.button--twoTiers .button__link small, .button--twoTiers button.button small {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
.button--twoTiers .button__link small::before, .button--twoTiers button.button small::before, .button--twoTiers .button__link small::after, .button--twoTiers button.button small::after {
  display: inline-block;
  vertical-align: middle;
}
.button--twoTiers .button__link small::before, .button--twoTiers button.button small::before {
  content: "＼";
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .button--twoTiers .button__link small::before, .button--twoTiers button.button small::before {
    margin-right: 5px;
  }
}
.button--twoTiers .button__link small::after, .button--twoTiers button.button small::after {
  content: "／";
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .button--twoTiers .button__link small::after, .button--twoTiers button.button small::after {
    margin-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .button--twoTiers .button__link small, .button--twoTiers button.button small {
    font-size: 1.4rem;
  }
}
.button--twoTiersFirst {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .button--twoTiersFirst {
    max-width: 335px;
    width: 100%;
  }
}
.button--twoTiersFirst .button__link, .button--twoTiersFirst button.button {
  min-height: 95px;
  padding: 12px 10px;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.01em;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .button--twoTiersFirst .button__link, .button--twoTiersFirst button.button {
    min-height: 65px;
    font-size: 2.1rem;
  }
}
.button--twoTiersFirst .button__link small, .button--twoTiersFirst button.button small {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
.button--twoTiersFirst .button__link small::before, .button--twoTiersFirst button.button small::before, .button--twoTiersFirst .button__link small::after, .button--twoTiersFirst button.button small::after {
  display: inline-block;
  vertical-align: middle;
}
.button--twoTiersFirst .button__link small::before, .button--twoTiersFirst button.button small::before {
  content: "＼";
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .button--twoTiersFirst .button__link small::before, .button--twoTiersFirst button.button small::before {
    margin-right: 5px;
  }
}
.button--twoTiersFirst .button__link small::after, .button--twoTiersFirst button.button small::after {
  content: "／";
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .button--twoTiersFirst .button__link small::after, .button--twoTiersFirst button.button small::after {
    margin-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .button--twoTiersFirst .button__link small, .button--twoTiersFirst button.button small {
    font-size: 1.4rem;
  }
}
.button--twoTiersFirst .button__link span, .button--twoTiersFirst button.button span {
  margin-right: 10px;
  padding: 5px 8px;
  font-size: 22px;
  font-size: 2.2rem;
  color: #db5707;
  background-color: #fff;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .button--twoTiersFirst .button__link span, .button--twoTiersFirst button.button span {
    font-size: 1.5rem;
    margin-right: 5px;
    padding: 2.5px 4px;
    vertical-align: text-top;
  }
}
.button--twoTiersSPfirst {
  position: relative;
  max-width: 62.9333333333vw;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (min-width: 525px) {
  .button--twoTiersSPfirst {
    max-width: 330.4px;
    width: 100%;
  }
}
.button--twoTiersSPfirst .button__link, .button--twoTiersSPfirst button.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8vw;
  min-height: 14.6666666667vw;
  padding: 0 10px;
  font-size: clamp(16px, 4.2666666667vw, 32px);
  font-size: clamp(1.6rem, 4.2666666667vw, 3.2rem);
  letter-spacing: 0.01em;
  border-radius: 50px;
  text-align: center;
}
@media screen and (min-width: 525px) {
  .button--twoTiersSPfirst .button__link, .button--twoTiersSPfirst button.button {
    gap: 4.2px;
    min-height: 77px;
    font-size: 2.24rem;
  }
}
.button--twoTiersSPfirst .button__link small, .button--twoTiersSPfirst button.button small {
  position: relative;
  display: block;
  font-size: clamp(10px, 2.6666666667vw, 20px);
  font-size: clamp(1rem, 2.6666666667vw, 2rem);
}
.button--twoTiersSPfirst .button__link small::before, .button--twoTiersSPfirst button.button small::before, .button--twoTiersSPfirst .button__link small::after, .button--twoTiersSPfirst button.button small::after {
  display: inline-block;
  vertical-align: middle;
}
.button--twoTiersSPfirst .button__link small::before, .button--twoTiersSPfirst button.button small::before {
  content: "＼";
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .button--twoTiersSPfirst .button__link small::before, .button--twoTiersSPfirst button.button small::before {
    margin-right: 5px;
  }
}
.button--twoTiersSPfirst .button__link small::after, .button--twoTiersSPfirst button.button small::after {
  content: "／";
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .button--twoTiersSPfirst .button__link small::after, .button--twoTiersSPfirst button.button small::after {
    margin-left: 5px;
  }
}
@media screen and (min-width: 525px) {
  .button--twoTiersSPfirst .button__link small, .button--twoTiersSPfirst button.button small {
    font-size: 1.4rem;
  }
}

button.button--fill, button.button--fillArrowDown {
  color: #fff;
  background-color: #3695d9;
}
button.button--gray {
  color: #666;
  border-color: #ccc;
}
button.button--disabled {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}
button.button--disabled:hover {
  pointer-events: none;
  opacity: inherit;
}

.movie__link {
  display: block;
  position: relative;
}
.movie__link::before, .movie__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.8;
}
.movie__link::before {
  width: 120px;
  height: 120px;
  background-color: #3695d9;
  border-radius: 25vw;
}
@media screen and (max-width: 767px) {
  .movie__link::before {
    width: 45px;
    height: 45px;
  }
}
.movie__link::after {
  left: calc(50% + 5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 767px) {
  .movie__link::after {
    left: calc(50% + 3px);
    border-width: 9px 0 9px 15px;
  }
}

.formArea {
  margin-top: 35.6px;
  padding: 0 100px;
}
@media screen and (max-width: 767px) {
  .formArea {
    margin-top: 22.7px;
    padding: 0;
  }
}
.formArea__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .formArea__row {
    display: block;
  }
}
.formArea__row + .formArea__row {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .formArea__row + .formArea__row {
    margin-top: 15px;
  }
}
.formArea__row--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  text-align: center;
}
.formArea__header {
  max-width: 160px;
  width: 25%;
  padding-top: 9.8px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .formArea__header {
    max-width: none;
    max-width: initial;
    width: 100%;
    padding-top: 0;
  }
}
.formArea__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
  position: relative;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .formArea__body {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
.formArea__input,
.formArea .select {
  display: block;
  max-width: 358px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .formArea__input,
  .formArea .select {
    max-width: 100%;
  }
}
.formArea__input--mail, .formArea__input--consultation {
  max-width: 100%;
}
.formArea__input--checkbox {
  width: auto;
}
.formArea .select {
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  .formArea .select {
    max-width: 180px;
  }
}
.formArea__row--checkbox {
  margin-top: 30px;
}
.formArea__row--checkbox input[type=checkbox] {
  position: relative;
  display: inline;
  vertical-align: middle;
  cursor: pointer;
}
.formArea__row--checkbox input[type=checkbox]::before, .formArea__row--checkbox input[type=checkbox]::after {
  content: "";
  display: block;
}
.formArea__row--checkbox input[type=checkbox]::before {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .formArea__row--checkbox input[type=checkbox]::before {
    width: 17px;
    height: 17px;
    border-radius: 3px;
  }
}
.formArea__row--checkbox input[type=checkbox]::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .formArea__row--checkbox input[type=checkbox]::after {
    top: 3px;
    left: 3px;
    width: 11px;
    height: 7px;
  }
}
.formArea__row--checkbox input[type=checkbox]:checked::before {
  background-color: #3695d9;
  border-color: #3695d9;
}
.formArea__row--checkbox input[type=checkbox]:checked::after {
  border-color: #fff;
  opacity: 1;
}
.formArea__row--checkbox label {
  margin-left: 2px;
}
.formArea__row--checkbox a {
  text-decoration: underline;
}
.formArea .button {
  margin: 30px auto 0;
}
.formArea .button:disabled {
  background-color: #ccc;
  border-color: #ccc;
}
.formArea .button:disabled:hover {
  opacity: 1;
}
.formArea__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 620px;
  width: 96.875%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .formArea__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 250px;
  }
}
.formArea__buttonsItem {
  width: 48.3870967742%;
}
@media screen and (max-width: 767px) {
  .formArea__buttonsItem {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .formArea__buttonsItem + .formArea__buttonsItem {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }
}
.formArea__precaution {
  margin-top: 24px;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .formArea__precaution {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.formArea input:focus {
  border-color: #ffed94;
}
.formArea__error {
  display: none;
  position: absolute;
  top: -16px;
  right: 130px;
}
@media screen and (max-width: 860px) {
  .formArea__error {
    right: 10px;
  }
}
input[name=userMail] + .formArea__error,
textarea + .formArea__error {
  right: 14px;
}

select + .formArea__error {
  right: -32px;
}

.formArea__errorText {
  display: block;
  position: relative;
  padding: 0 6px;
  color: #fff;
  background-color: #e55c73;
  border-radius: 6px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 25px;
}
.formArea__errorText::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #e55c73 transparent transparent transparent;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.formArea__body .isError {
  border-color: #e55c73;
}
.formArea__body .isError + .formArea__error {
  display: block;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 33.8px 27px 33px;
  background-color: #fff;
  border: 3px solid #3695d9;
  border-radius: 20px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, .15);
          box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, .15);
  z-index: 999;
  display: none;
}
@media screen and (max-width: 767px) {
  .modal {
    width: 300px;
    padding: 17.2px 18px 18px;
    -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, .15);
            box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, .15);
  }
}
.modal__selectDate {
  margin-top: 16.8px;
  color: #3695d9;
  background-color: #f2f2f2;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .modal__selectDate {
    font-size: 1.8rem;
    line-height: 35px;
  }
}
.modal .button {
  width: 120px;
  margin: 16.8px auto 0;
}
.modal .button__link {
  padding-top: 8.8px;
  padding-bottom: 8.8px;
  border-width: 1px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  font-weight: initial;
}
.modal.isShow {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 1.9444444444% 1.9444444444% 0 1.9444444444%;
  opacity: 1;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 9px 9px 0;
  }
}
.header .button {
  max-width: 300px;
  width: min(20.8333333333vw, 300px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header .button {
    max-width: 190px;
    width: 100%;
  }
}
.header .button__link {
  padding-top: 9.6px;
  padding-bottom: 10.6px;
  border-color: #fff;
  font-size: clamp(12px, 1.5277777778vw, 22px);
  font-size: clamp(1.2rem, 1.5277777778vw, 2.2rem);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .header .button__link {
    padding-top: 10.2px;
    padding-bottom: 10.2px;
    font-size: 1.4rem;
  }
}
.header.isHide {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.header.isHide .button__link {
  pointer-events: none;
}

.fixedBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, .9);
  opacity: 1;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .fixedBar {
    padding: 10px;
  }
}
.fixedBar.isHide {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
@media screen and (max-width: 767px) {
  .fixedBar .button {
    max-width: 280px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fixedBar .button__link {
    min-height: 60px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .fixedBar .button__link small {
    font-size: 1.2rem;
  }
}

.mainVisual {
  overflow: hidden;
  background-color: #eee;
}

.trendResearch {
  position: absolute;
  bottom: -245px;
  left: 50%;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .trendResearch {
    bottom: -290px;
  }
}
@media screen and (max-width: 767px) {
  .trendResearch {
    bottom: -254px;
  }
}
.trendResearch__wrapper {
  position: relative;
  padding-top: 36px;
  padding-bottom: 36.4px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .trendResearch__wrapper {
    padding-top: 27.2px;
    padding-bottom: 27px;
  }
}
.trendResearch__label {
  position: absolute;
  top: 40px;
  left: -90px;
  width: 300px;
  color: #fff;
  background-color: #1f2c5c;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.trendResearch__label span {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .trendResearch__label {
    top: 20px;
    left: -44px;
    width: 150px;
    line-height: 25px;
    font-size: 1.8rem;
  }
  .trendResearch__label span {
    font-size: 1.3rem;
  }
}
.trendResearch__title {
  text-align: center;
}
.trendResearch__titleLead {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .trendResearch__titleLead {
    font-size: 1.4rem;
    letter-spacing: normal;
    letter-spacing: initial;
  }
}
@media screen and (max-width: 320px) {
  .trendResearch__titleLead {
    font-size: 1.1rem;
  }
}
.trendResearch__title picture {
  display: block;
  max-width: 552px;
  width: 57.5%;
  margin: 0 auto;
  margin-top: 1px;
}
@media screen and (max-width: 767px) {
  .trendResearch__title picture {
    max-width: 438px;
    width: 65.3731343284%;
    margin: 0 auto;
    margin-top: 10.2px;
  }
}
.trendResearch__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 782px;
  width: 81.4583333333%;
  margin: 28px auto 0;
  gap: 0 22px;
}
@media screen and (max-width: 767px) {
  .trendResearch__list {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    max-width: 100%;
    width: 100%;
    margin-top: 1px;
    gap: 0 7px;
  }
}
.trendResearch__item {
  max-width: 180px;
  width: 23.0179028133%;
}
@media screen and (max-width: 767px) {
  .trendResearch__item {
    max-width: 28%;
    width: 100%;
    margin-top: 26px;
  }
}
.trendResearch .attention {
  max-width: 780px;
  width: 83.75%;
  margin: 29.4px auto 0;
  font-size: clamp(10px, 0.8333333333vw, 12px);
  font-size: clamp(1rem, 0.8333333333vw, 1.2rem);
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .trendResearch .attention {
    max-width: 590px;
    width: 88.0597014925%;
    margin-top: 27px;
    text-align: justify;
  }
}

.manyProblems {
  overflow: hidden;
}
.manyProblems__wrapper {
  position: relative;
  background-color: #3695d9;
}
.manyProblems__wrapper::before, .manyProblems__wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 1280px;
  height: 594px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="x,y"><path fill="%23fbfbfb" fill-rule="evenodd" d="M0-28h1280v626H0V-28zm-1280-1713h2560V-3.277S789.086 595 3.5 595-1280-3.277-1280-3.277V-1741z" /></svg>') no-repeat left top/cover;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .manyProblems__wrapper::before, .manyProblems__wrapper::after {
    width: 100%;
    height: 110px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="x,y"><path fill="%23fbfbfb" fill-rule="evenodd" d="M0 110.062c91.834 1.414 214.9-33.7 300-110.061v110.061H0z" /></svg>');
  }
}
.manyProblems__wrapper::before {
  bottom: 0;
  left: calc(50% - 1280px);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 600px) {
  .manyProblems__wrapper::before {
    left: -50%;
  }
}
.manyProblems__wrapper::after {
  right: calc(50% - 1280px);
}
@media screen and (max-width: 600px) {
  .manyProblems__wrapper::after {
    right: -50%;
  }
}
.manyProblems__inner {
  max-width: 1038px;
  width: 100%;
  margin: 0 auto;
  padding: 285px 20px 0;
}
@media screen and (max-width: 1200px) {
  .manyProblems__inner {
    padding-top: 350px;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__inner {
    padding: 290px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__button {
    padding: 0 20px;
  }
}
.manyProblems__title {
  max-width: 585px;
  width: 60.9375%;
  margin: 0 auto;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .manyProblems__title {
    max-width: 670px;
    width: 89.3333333333%;
  }
}
.manyProblems__contents {
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .manyProblems__contents {
    margin-top: 32px;
  }
}
.manyProblems__list {
  position: relative;
  height: 390px;
}
@media screen and (max-width: 767px) {
  .manyProblems__list {
    width: 385px;
    height: 321px;
    margin: 0 auto;
    -webkit-transform: translate(-8px, 0);
            transform: translate(-8px, 0);
  }
}
.manyProblems__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  background-color: #fff;
  border-radius: 50vw;
  font-weight: bold;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 768px) {
  .manyProblems__item {
    -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .12);
            box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .12);
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__item {
    font-size: 1.2rem;
  }
}
.manyProblems__item span {
  display: block;
  width: 100%;
  text-align: center;
}
.manyProblems__item b {
  color: #3695d9;
}
@media screen and (max-width: 767px) {
  .manyProblems__item b {
    font-size: 1.5rem;
  }
}
.manyProblems__item--nisaideco {
  top: 16px;
  left: 0;
  width: 203px;
  height: 203px;
}
@media screen and (max-width: 767px) {
  .manyProblems__item--nisaideco {
    top: 0;
    left: -8px;
    width: 153px;
    height: 153px;
  }
  .manyProblems__item--nisaideco b {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .manyProblems__item--nisaideco {
    left: -2px;
    width: 135px;
    height: 135px;
  }
}
.manyProblems__item--retirement {
  bottom: 37px;
  left: 142px;
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 1023px) {
  .manyProblems__item--retirement {
    left: 14.2284569138%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__item--retirement {
    bottom: 0;
    left: 13px;
    width: 95px;
    height: 95px;
  }
}
@media screen and (max-width: 320px) {
  .manyProblems__item--retirement {
    left: 0;
    width: 90px;
    height: 90px;
  }
}
.manyProblems__item--howto {
  top: 56px;
  left: 250px;
  width: 161px;
  height: 161px;
}
@media screen and (max-width: 1023px) {
  .manyProblems__item--howto {
    left: 25.0501002004%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__item--howto {
    top: auto;
    top: initial;
    bottom: 70px;
    left: 60px;
    width: 121px;
    height: 121px;
  }
}
@media screen and (max-width: 320px) {
  .manyProblems__item--howto {
    bottom: 79px;
    left: 25px;
    width: 110px;
    height: 110px;
  }
}
.manyProblems__item--cantstart {
  top: 40px;
  right: 272px;
  width: 143px;
  height: 143px;
}
@media screen and (max-width: 1023px) {
  .manyProblems__item--cantstart {
    right: 27.254509018%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__item--cantstart {
    top: 85px;
    right: calc(50% - 69px);
    width: 112px;
    height: 112px;
  }
}
@media screen and (max-width: 320px) {
  .manyProblems__item--cantstart {
    top: 78px;
    right: calc(50% - 22px);
  }
}
.manyProblems__item--believe {
  top: 0;
  right: 0;
  width: 211px;
  height: 211px;
}
@media screen and (max-width: 767px) {
  .manyProblems__item--believe {
    top: auto;
    top: initial;
    right: -2px;
    bottom: 20px;
    width: 158px;
    height: 158px;
  }
  .manyProblems__item--believe b {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .manyProblems__item--believe {
    right: 45px;
  }
}
.manyProblems__item--sell {
  right: 112px;
  bottom: 0;
  width: 174px;
  height: 174px;
}
@media screen and (max-width: 1023px) {
  .manyProblems__item--sell {
    right: 11.2224448898%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__item--sell {
    top: 4px;
    right: 16px;
    bottom: auto;
    bottom: initial;
    width: 136px;
    height: 136px;
  }
}
@media screen and (max-width: 320px) {
  .manyProblems__item--sell {
    right: 55px;
  }
}
.manyProblems__image {
  width: 779px;
  margin: -250px auto 0;
}
@media screen and (max-width: 1023px) {
  .manyProblems__image {
    width: min(79.1666666667%, 779px);
  }
}
@media screen and (max-width: 767px) {
  .manyProblems__image {
    width: 328px;
    margin-top: -70px;
  }
}
.manyProblems--enrollment .manyProblems__inner {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__contents {
    margin-top: 37px;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__list {
    width: 390px;
    height: 320px;
  }
}
@media screen and (max-width: 374px) {
  .manyProblems--enrollment .manyProblems__list {
    width: 335px;
  }
}
.manyProblems--enrollment .manyProblems__item {
  font-size: 16px;
  font-size: 1.6rem;
}
.manyProblems--enrollment .manyProblems__item b {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item {
    font-size: 1.3rem;
  }
  .manyProblems--enrollment .manyProblems__item b {
    font-size: 1.7rem;
  }
}
.manyProblems--enrollment .manyProblems__item--blank {
  top: 16px;
  left: 0;
  width: 204px;
  height: 204px;
}
.manyProblems--enrollment .manyProblems__item--blank b {
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--blank {
    top: 5px;
    left: 0;
    width: 145px;
    height: 145px;
  }
  .manyProblems--enrollment .manyProblems__item--blank b {
    font-size: 1.7rem;
  }
}
.manyProblems--enrollment .manyProblems__item--results {
  bottom: 40px;
  left: 128px;
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 1023px) {
  .manyProblems--enrollment .manyProblems__item--results {
    left: 12.8256513026%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--results {
    bottom: 0;
    left: 13px;
    width: 105px;
    height: 105px;
  }
}
.manyProblems--enrollment .manyProblems__item--prices {
  top: 56px;
  left: 232px;
  width: 161px;
  height: 161px;
}
@media screen and (max-width: 1023px) {
  .manyProblems--enrollment .manyProblems__item--prices {
    left: 23.246492986%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--prices {
    top: auto;
    top: initial;
    bottom: 70px;
    left: 65px;
    width: 115px;
    height: 115px;
  }
}
@media screen and (max-width: 374px) {
  .manyProblems--enrollment .manyProblems__item--prices {
    bottom: 80px;
    left: 40px;
  }
}
.manyProblems--enrollment .manyProblems__item--notGood {
  top: 50px;
  right: 422px;
  width: 106px;
  height: 106px;
}
@media screen and (max-width: 1023px) {
  .manyProblems--enrollment .manyProblems__item--notGood {
    top: 25px;
    right: 43.5%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--notGood {
    top: auto;
    top: initial;
    right: 150px;
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 374px) {
  .manyProblems--enrollment .manyProblems__item--notGood {
    right: 112px;
  }
}
.manyProblems--enrollment .manyProblems__item--continue {
  top: 70px;
  right: 242px;
  width: 143px;
  height: 143px;
}
@media screen and (max-width: 1023px) {
  .manyProblems--enrollment .manyProblems__item--continue {
    right: 27.5%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--continue {
    top: 80px;
    right: 112px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 374px) {
  .manyProblems--enrollment .manyProblems__item--continue {
    top: 80px;
    right: 78px;
  }
}
.manyProblems--enrollment .manyProblems__item--value {
  top: 0;
  right: 0;
  width: 211px;
  height: 211px;
}
.manyProblems--enrollment .manyProblems__item--value b {
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--value {
    top: auto;
    top: initial;
    right: 0;
    bottom: 13px;
    width: 155px;
    height: 155px;
  }
  .manyProblems--enrollment .manyProblems__item--value b {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 374px) {
  .manyProblems--enrollment .manyProblems__item--value {
    right: -10px;
  }
}
.manyProblems--enrollment .manyProblems__item--support {
  right: 112px;
  bottom: 0;
  width: 174px;
  height: 174px;
}
@media screen and (max-width: 1023px) {
  .manyProblems--enrollment .manyProblems__item--support {
    right: 11.2224448898%;
  }
}
@media screen and (max-width: 767px) {
  .manyProblems--enrollment .manyProblems__item--support {
    top: 2px;
    right: 17px;
    bottom: auto;
    bottom: initial;
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 374px) {
  .manyProblems--enrollment .manyProblems__item--support {
    right: -10px;
  }
}

.ourSolution {
  background-color: #fbfbfb;
}
.ourSolution__wrapper {
  max-width: 1072px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 0;
}
@media screen and (max-width: 767px) {
  .ourSolution__wrapper {
    padding: 35px 10px 0;
  }
}
.ourSolution__title {
  max-width: 530px;
  width: 55.2083333333%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .ourSolution__title {
    max-width: 672px;
    width: 94.6478873239%;
  }
}
.ourSolution__faq {
  width: 100%;
  margin-top: -2px;
  padding-top: 18px;
  padding-bottom: 104px;
  font-weight: bold;
  background-image: url(/assets/img/oursolution_bg01__pc.webp), url(/assets/img/oursolution_bg02__pc.webp);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 31.2015503876% auto, 62.015503876% auto;
}
@media screen and (max-width: 767px) {
  .ourSolution__faq {
    margin-top: -6px;
    padding-top: 25px;
    padding-bottom: 49px;
    background-image: url(/assets/img/oursolution_bg01__sp.webp), url(/assets/img/oursolution_bg02__sp.webp);
    background-size: 35.2112676056% auto, 67.323943662% auto;
  }
}
.ourSolution__faqInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ourSolution__faqText {
  position: relative;
  padding: 18.59px 0 18.59px 34px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.57;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, .03);
          box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, .03);
}
@media screen and (max-width: 767px) {
  .ourSolution__faqText {
    padding: 15.2px 0 15.2px 21px;
    font-size: 1.4rem;
    font-size: clamp(1.4rem, 3.7333333333vw, 2.8rem);
    line-height: 1.4;
  }
}
.ourSolution__faqText b {
  color: #3695d9;
}
.ourSolution__faqText::before, .ourSolution__faqText::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 22px 12px 0;
  border-color: transparent #ebebeb transparent transparent;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.ourSolution__faqText::after {
  border-right-color: #fff;
}
.ourSolution__faqItem--question {
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  .ourSolution__faqItem--question {
    padding-left: 20px;
  }
}
.ourSolution__faqItem--question .ourSolution__faqImage {
  width: 220px;
}
@media screen and (max-width: 1023px) {
  .ourSolution__faqItem--question .ourSolution__faqImage {
    width: min(21.3178294574%, 220px);
  }
}
@media screen and (max-width: 767px) {
  .ourSolution__faqItem--question .ourSolution__faqImage {
    width: min(30.985915493%, 220px);
  }
}
.ourSolution__faqItem--question .ourSolution__faqText {
  width: 320px;
  margin-top: -25px;
  margin-left: 40px;
}
.ourSolution__faqItem--question .ourSolution__faqText::before {
  left: -22px;
}
.ourSolution__faqItem--question .ourSolution__faqText::after {
  left: -20px;
}
@media screen and (max-width: 767px) {
  .ourSolution__faqItem--question .ourSolution__faqText {
    width: min(52.1126760563%, 370px);
    margin-left: 30px;
  }
}
.ourSolution__faqItem--answer {
  margin-top: -160px;
}
@media screen and (max-width: 1023px) {
  .ourSolution__faqItem--answer {
    margin-top: -4.8449612403%;
  }
}
@media screen and (max-width: 767px) {
  .ourSolution__faqItem--answer {
    margin-top: -13px;
  }
}
.ourSolution__faqItem--answer .ourSolution__faqInner {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ourSolution__faqItem--answer .ourSolution__faqImage {
  width: 256px;
}
@media screen and (max-width: 1023px) {
  .ourSolution__faqItem--answer .ourSolution__faqImage {
    width: min(24.8062015504%, 256px);
  }
}
@media screen and (max-width: 767px) {
  .ourSolution__faqItem--answer .ourSolution__faqImage {
    width: min(36.6197183099%, 260px);
  }
}
.ourSolution__faqItem--answer .ourSolution__faqText {
  width: 430px;
  margin-right: 50px;
  margin-bottom: 15px;
  padding: 26.02px 0 26.02px 39px;
  font-size: 28px;
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ourSolution__faqItem--answer .ourSolution__faqText {
    width: min(53.5211267606%, 380px);
    margin-bottom: 10px;
    margin-right: 25px;
    padding: 11.8px 0 11.8px 0;
    font-size: 1.6rem;
    font-size: clamp(1.6rem, 4.2666666667vw, 3.2rem);
  }
}
.ourSolution__faqItem--answer .ourSolution__faqText::before, .ourSolution__faqItem--answer .ourSolution__faqText::after {
  right: -22px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.ourSolution__faqItem--answer .ourSolution__faqText::after {
  right: -20px;
}

.serviceIntroduction {
  background-color: #f1f1f1;
}
.serviceIntroduction__wrapper {
  position: relative;
  overflow: hidden;
}
.serviceIntroduction__wrapper::before, .serviceIntroduction__wrapper::after {
  content: "";
  display: block;
  position: absolute;
}
.serviceIntroduction__wrapper::before {
  right: calc(50% - 604px);
  width: 702px;
  height: 516px;
  background: url(/assets/img/serviceintroduction_photo01.webp) no-repeat left top/cover;
}
@media screen and (min-width: 768px) {
  .serviceIntroduction__wrapper::before {
    top: 95px;
  }
}
@media screen and (max-width: 860px) {
  .serviceIntroduction__wrapper::before {
    right: calc(50% - 48.75vw);
    width: 48.75vw;
    height: 35.8333333333vw;
  }
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__wrapper::before {
    right: calc(50% - 56.8vw + 2px);
    bottom: 136px;
    width: 56.8vw;
    height: 41.8666666667vw;
  }
}
.serviceIntroduction__wrapper::after {
  bottom: -20px;
  width: clamp(150px, 12.4305555556vw, 179px);
  height: clamp(195px, 18.0555555556vw, 260px);
  background: url(/assets/img/serviceintroduction_image01.webp) no-repeat left top/cover;
}
@media screen and (min-width: 426px) {
  .serviceIntroduction__wrapper::after {
    left: calc(50% + 10px);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__wrapper::after {
    right: 15px;
    bottom: -35px;
    width: 100px;
    height: 146px;
  }
}
.serviceIntroduction__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 112px 20px 90px;
  position: relative;
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__inner {
    padding-top: 62px;
    padding-bottom: 58px;
  }
}
.serviceIntroduction__text {
  position: relative;
  color: #333;
  font-size: clamp(16px, 1.3888888889vw, 20px);
  font-size: clamp(1.6rem, 1.3888888889vw, 2rem);
  line-height: 1.7;
  z-index: 1;
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__text {
    font-size: clamp(1.2rem, 3.7333333333vw, 1.4rem);
    line-height: 1.5;
  }
}
.serviceIntroduction__text--message span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 8px;
  color: #3695d9;
  background-color: #fff;
  font-size: clamp(20px, 1.6666666667vw, 24px);
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
  line-height: 38px;
  font-weight: bold;
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__text--message span {
    font-size: clamp(1.6rem, 4.8vw, 1.8rem);
    line-height: 25px;
  }
}
.serviceIntroduction__text--message span + span {
  margin-top: 8px;
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__text--message span + span {
    margin-top: 3px;
  }
}
.serviceIntroduction__text + .serviceIntroduction__text {
  margin-top: 2.5vw;
}
@media screen and (min-width: 1441px) {
  .serviceIntroduction__text + .serviceIntroduction__text {
    margin-top: 36px;
  }
}
@media screen and (max-width: 425px) {
  .serviceIntroduction__text + .serviceIntroduction__text {
    margin-top: 21px;
  }
}
.serviceIntroduction .attention {
  margin-top: 20.6px;
}
@media screen and (max-width: 425px) {
  .serviceIntroduction .attention {
    margin-top: 24.1px;
  }
}

.customerReviews {
  background: url(/assets/img/customerreviews_bg01.webp) #fbeca4;
}
.customerReviews__wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 77px 20px 104px;
}
@media screen and (max-width: 767px) {
  .customerReviews__wrapper {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}
.customerReviews__title {
  max-width: 304px;
  width: 31.6666666667%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .customerReviews__title {
    max-width: 396px;
    width: 59.1044776119%;
  }
}
.customerReviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 114px;
}
@media screen and (max-width: 767px) {
  .customerReviews__list {
    display: block;
    margin-top: 89px;
  }
}
.customerReviews__item {
  position: relative;
  max-width: 300px;
  width: 31.25%;
  padding: 91.4px 26px 59.2px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .customerReviews__item {
    max-width: 100%;
    width: 100%;
    padding: 74px 20px 29.8px;
  }
  .customerReviews__item + .customerReviews__item {
    margin-top: 80px;
  }
}
.customerReviews__item::before, .customerReviews__item::after {
  content: "";
  display: block;
  position: absolute;
  top: -70px;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .customerReviews__item::before, .customerReviews__item::after {
    top: -60px;
    width: 120px;
    height: 120px;
  }
}
.customerReviews__item::before {
  background: url(/assets/img/customerreviews_photo01.webp) no-repeat left top/cover;
}
.customerReviews__item::after {
  width: 141px;
  height: 141px;
  border: 6px solid #fff;
  border-radius: 25vw;
}
@media screen and (max-width: 767px) {
  .customerReviews__item::after {
    width: 121px;
    height: 121px;
    border-width: 5px;
  }
}
.customerReviews__item:nth-child(2)::before {
  background-image: url(/assets/img/customerreviews_photo02.webp);
}
.customerReviews__item:nth-child(3)::before {
  background-image: url(/assets/img/customerreviews_photo03.webp);
}
.customerReviews__itemLead {
  color: #f79d1d;
  font-size: clamp(16px, 1.25vw, 18px);
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .customerReviews__itemLead {
    font-size: 1.5rem;
  }
}
.customerReviews__itemText {
  margin-top: 21.6px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .customerReviews__itemText {
    font-size: 1.4rem;
  }
}
.customerReviews__itemText span {
  font-size: clamp(11px, 0.8333333333vw, 12px);
  font-size: clamp(1.1rem, 0.8333333333vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  .customerReviews__itemText span {
    font-size: 1.2rem;
  }
}
.customerReviews--slider {
  max-height: none !important;
  max-height: initial !important;
  overflow: hidden;
}
.customerReviews--slider .customerReviews__wrapper {
  max-width: none;
  padding: 77px 0 80px;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__wrapper {
    padding: 45px 0 60px;
  }
}
.customerReviews--slider .customerReviews__slider {
  margin-top: 54px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slider {
    margin-top: 25px;
  }
}
.customerReviews--slider .customerReviews__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.customerReviews--slider .customerReviews__slider .slick-arrow {
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #f79d1d;
  position: absolute;
  top: calc(50% - 22px);
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.customerReviews--slider .customerReviews__slider .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.customerReviews--slider .customerReviews__slider .slick-arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slider .slick-arrow {
    width: 80px;
    height: 80px;
    border-width: 1px;
    top: calc(50% - 8px);
  }
}
.customerReviews--slider .customerReviews__slider .slick-prev {
  left: max(50% - 592px, 20px);
}
.customerReviews--slider .customerReviews__slider .slick-prev::before {
  left: calc(50% + 3px);
  rotate: -135deg;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slider .slick-prev {
    left: -39px;
  }
  .customerReviews--slider .customerReviews__slider .slick-prev::before {
    left: calc(50% + 22px);
  }
}
.customerReviews--slider .customerReviews__slider .slick-next {
  right: max(50% - 592px, 20px);
}
.customerReviews--slider .customerReviews__slider .slick-next::before {
  left: calc(50% - 3px);
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slider .slick-next {
    right: -39px;
  }
  .customerReviews--slider .customerReviews__slider .slick-next::before {
    left: calc(50% - 22px);
  }
}
.customerReviews--slider .customerReviews__slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.customerReviews--slider .customerReviews__slider .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.customerReviews--slider .customerReviews__slider .slick-dots button[aria-selected=true] {
  background-color: #f79d1d;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slider .slick-dots {
    margin-top: 9px;
  }
}
.customerReviews--slider .customerReviews__slide {
  position: relative;
  width: 640px;
  height: auto;
  margin: 15px 20px;
  padding: 33px 40px 53px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}
.customerReviews--slider .customerReviews__slide::before, .customerReviews--slider .customerReviews__slide::after {
  content: "";
  position: absolute;
  display: block;
  background: url(/assets/img/customerreviews_slider_icon01.svg) no-repeat center/contain;
  width: 39px;
  height: 29px;
}
.customerReviews--slider .customerReviews__slide::before {
  inset: -10px auto auto 30px;
}
.customerReviews--slider .customerReviews__slide::after {
  inset: auto 30px -10px auto;
  rotate: 180deg;
}
.customerReviews--slider .customerReviews__slide.slick-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slide {
    margin: 15px 8px;
    padding: 37px 25px 40px;
    width: 85.3333333333vw;
  }
  .customerReviews--slider .customerReviews__slide::before {
    left: 18px;
  }
  .customerReviews--slider .customerReviews__slide::after {
    right: 18px;
  }
}
.customerReviews--slider .customerReviews__slideLead {
  color: #f79d1d;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slideLead {
    font-size: 1.6rem;
  }
}
.customerReviews--slider .customerReviews__slideDetail {
  margin-top: 21px;
  max-height: 248px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}
@media (hover: hover) and (pointer: fine) {
  .customerReviews--slider .customerReviews__slideDetail {
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slideDetail {
    margin-top: 12px;
    max-height: 235px;
  }
}
.customerReviews--slider .customerReviews__slideText {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .customerReviews--slider .customerReviews__slideText {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.customerReviews--enrollment .customerReviews__title {
  max-width: 301px;
  width: 31.3541666667%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .customerReviews--enrollment .customerReviews__title {
    max-width: 387px;
    width: 51.6%;
  }
}

.appealPoint__wrapper {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 66px 20px 0;
}
@media screen and (max-width: 767px) {
  .appealPoint__wrapper {
    padding-top: 35px;
  }
}
.appealPoint__title {
  max-width: 541px;
  width: 56.3541666667%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .appealPoint__title {
    max-width: 670px;
    width: 100%;
  }
}
.appealPoint__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .appealPoint__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .appealPoint__list {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__list {
    margin-top: 25px;
  }
}
.appealPoint__item {
  background-color: #f5f5f5;
  border-radius: 50%;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 768px) {
  .appealPoint__item {
    position: relative;
    max-width: 290px;
    width: 29%;
    min-height: 290px;
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .appealPoint__item {
    max-width: none;
    max-width: initial;
    min-height: 0;
    min-height: initial;
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__item {
    width: 100%;
    min-height: auto;
    height: auto;
    margin-top: 10px;
    padding: 28.4px 20px 26.1px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .appealPoint__itemWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 290px;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.appealPoint__itemTitle {
  color: #3695d9;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 1023px) {
  .appealPoint__itemTitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__itemTitle {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.appealPoint__itemText {
  margin-top: 13.5px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .appealPoint__itemText {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__itemText {
    margin-top: 9.5px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__item:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 768px) {
  .appealPoint__item:nth-child(2) {
    max-width: 380px;
    width: 38%;
    min-height: 380px;
    margin-bottom: 20px;
  }
  .appealPoint__item:nth-child(2) .appealPoint__itemWrapper {
    top: calc(50% - 28px);
  }
  .appealPoint__item:nth-child(2) .appealPoint__itemLogo img {
    width: 109px;
  }
  .appealPoint__item:nth-child(2) .appealPoint__itemLogo + .appealPoint__itemTitle {
    margin-top: 19.7px;
  }
}
@media screen and (max-width: 1023px) {
  .appealPoint__item:nth-child(2) {
    max-width: none;
    max-width: initial;
    min-height: 0;
    min-height: initial;
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__item:nth-child(2) {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: auto;
  }
  .appealPoint__item:nth-child(2) .appealPoint__itemLogo {
    position: absolute;
    top: 23px;
    right: 20px;
    width: 80px;
  }
  .appealPoint__item:nth-child(2) .appealPoint__itemLogo img {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .appealPoint__item:last-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.appealPoint__image {
  position: relative;
  max-width: 700px;
  width: 48.6111111111%;
  margin: -70px auto 0;
}
@media screen and (max-width: 767px) {
  .appealPoint__image {
    margin-top: 31px;
    width: 93.3333333333%;
  }
}

.introductionCounselor__wrapper {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 20px 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .introductionCounselor__wrapper {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.introductionCounselor__title {
  max-width: 436px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0;
}
.introductionCounselor__text {
  margin-top: 40.2px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .introductionCounselor__text {
    margin-top: 25.8px;
    font-size: clamp(1.2rem, 3.7333333333vw, 2.8rem);
  }
}
.introductionCounselor .movie {
  margin-top: 29.2px;
}
@media screen and (max-width: 767px) {
  .introductionCounselor .movie {
    margin-top: 25.8px;
  }
}

.serviceOutline {
  margin-top: -4.7222222222vw;
  padding-top: 13.1944444444vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .serviceOutline {
    margin-top: -11.7333333333vw;
    padding-top: 22.6666666667vw;
  }
}
.serviceOutline__wrapper {
  position: relative;
  background-color: #3695d9;
}
.serviceOutline__wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: -13.1944444444vw;
  left: 50%;
  width: 200%;
  width: 142.3611111111vw;
  height: 50vh;
  background-color: #3695d9;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .serviceOutline__wrapper::after {
    width: 200%;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__wrapper::after {
    top: -22.6666666667vw;
    width: 230%;
  }
}
.serviceOutline__inner {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 100px;
  background-color: #3695d9;
}
@media screen and (max-width: 767px) {
  .serviceOutline__inner {
    overflow: hidden;
  }
}
.serviceOutline__content {
  padding: 65px 160px 61.4px;
  padding: 65px 11.1111111111vw 61.4px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1441px) {
  .serviceOutline__content {
    padding-right: 160px;
    padding-left: 160px;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__content {
    padding: 40px 20px 30px;
  }
}
.serviceOutline__title {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .serviceOutline__title {
    max-width: 506px;
    width: 85.7627118644%;
  }
}
.serviceOutline__list {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .serviceOutline__list {
    margin-top: 22px;
  }
}
.serviceOutline__item {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .serviceOutline__item:not(.serviceOutline__item--price) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__item {
    display: block;
    padding: 15px 0 10.2px 10px;
    border-width: 2px 0 0 0;
    border-style: solid;
    border-color: #e6e6e6;
    font-size: 1.6rem;
  }
  .serviceOutline__item:last-child {
    border-bottom-width: 2px;
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__itemHeader, .serviceOutline__itemBody {
    padding-top: 16.4px;
    padding-bottom: 16.4px;
    border-bottom: 2px solid #9acaec;
  }
}
.serviceOutline__itemHeader {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .serviceOutline__itemHeader {
    width: 100px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__itemHeader {
    display: inline-block;
    width: 90px;
    color: #fff;
    background-color: #3695d9;
    line-height: 25px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__itemBody {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    border-color: #e6e6e6;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__itemBody {
    margin-top: 10.8px;
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__item:first-child .serviceOutline__itemHeader, .serviceOutline__item:first-child .serviceOutline__itemBody {
    border-top: 2px solid #9acaec;
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__item:first-child .serviceOutline__itemBody {
    border-color: #e6e6e6;
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__item--price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__item--price .serviceOutline__itemHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemHeader {
    letter-spacing: 0.25em;
  }
}
.serviceOutline__item--price .serviceOutline__itemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemBody {
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
}
.serviceOutline__item--price .serviceOutline__itemBody--firstFree {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText span {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 360px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText span {
    font-size: 1.4rem;
  }
}
.serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText small {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText small {
    font-size: 1rem;
  }
}
.serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText--emphasis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #3695d9;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText--emphasis {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 360px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText--emphasis {
    font-size: 1.4rem;
  }
}
.serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText--emphasis b {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText--emphasis b {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 360px) {
  .serviceOutline__item--price .serviceOutline__itemBody--firstFree .serviceOutline__itemText--emphasis b {
    font-size: 2.2rem;
  }
}
.serviceOutline__item--price .serviceOutline__itemBadge {
  width: 66px;
  height: 66px;
  margin-right: 10px;
  color: #ffd34b;
  background-color: #3695d9;
  border-radius: 25vw;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 66px;
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemBadge {
    width: 50px;
    height: 50px;
    margin-right: 8px;
    font-size: 1.2rem;
    line-height: 50px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 320px) {
  .serviceOutline__item--price .serviceOutline__itemBadge {
    width: 41px;
    height: 41px;
    line-height: 41px;
  }
}
.serviceOutline__item--price .serviceOutline__itemText {
  line-height: 1.3;
}
.serviceOutline__item--price .serviceOutline__itemText span {
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemText span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 320px) {
  .serviceOutline__item--price .serviceOutline__itemText span {
    font-size: 1.2rem;
  }
}
.serviceOutline__item--price .serviceOutline__itemText b {
  display: block;
  color: #3695d9;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemText b {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 320px) {
  .serviceOutline__item--price .serviceOutline__itemText b {
    font-size: 2rem;
  }
}
.serviceOutline__item--price .serviceOutline__itemText--emphasis {
  margin-left: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemText--emphasis {
    margin-left: 0;
  }
}
.serviceOutline__item--price .serviceOutline__itemText--emphasis b {
  font-size: 56px;
  font-size: 5.6rem;
}
@media screen and (max-width: 767px) {
  .serviceOutline__item--price .serviceOutline__itemText--emphasis b {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 320px) {
  .serviceOutline__item--price .serviceOutline__itemText--emphasis b {
    font-size: 3.5rem;
  }
}
.serviceOutline .attention {
  padding-left: 1em;
  text-align: center;
  line-height: 1.6;
  text-indent: -1em;
}
.serviceOutline .attention:first-of-type {
  margin-top: 28.4px;
}
.serviceOutline .attention + .attention {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .serviceOutline .attention {
    padding-right: 30px;
    padding-left: 30px;
    font-size: 1.2rem;
    text-align: left;
  }
}
.serviceOutline__note {
  position: relative;
  width: min(77.5%, 620px);
  margin: 60px auto 0;
  padding: 25.2px 0 26.4px;
  color: #db5707;
  background-color: #fff;
  border-radius: 25vw;
}
@media screen and (max-width: 767px) {
  .serviceOutline__note {
    max-width: 335px;
    width: 100%;
    margin-top: 30px;
    padding: 26.4px 20px 24.6px;
    border-radius: 10px;
  }
}
.serviceOutline__note::before, .serviceOutline__note::after {
  content: "";
  display: block;
  position: absolute;
}
.serviceOutline__note::before {
  width: 209px;
  height: 230px;
  right: -138px;
  bottom: -100px;
  background: url(/assets/img/serviceoutline_image01.webp) no-repeat left top/cover;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .serviceOutline__note::before {
    right: -9.5833333333vw;
    width: 14.5138888889vw;
    height: 15.9722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__note::before {
    right: 20px;
    bottom: -128px;
    width: 135px;
    height: 158px;
  }
}
@media screen and (max-width: 320px) {
  .serviceOutline__note::before {
    right: -15px;
  }
}
.serviceOutline__note::after {
  right: -12px;
  bottom: 36px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 19px 24px 19px;
  border-color: transparent transparent #fff transparent;
  -webkit-transform: rotate(215deg);
          transform: rotate(215deg);
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .serviceOutline__note::after {
    right: 1px;
    bottom: 10px;
    -webkit-transform: rotate(235deg);
            transform: rotate(235deg);
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__note::after {
    right: 100px;
    bottom: -8px;
    border-width: 0 16px 14px 16px;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
}
@media screen and (min-width: 768px) {
  .serviceOutline__note {
    text-align: center;
  }
}
.serviceOutline__noteTitle {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .serviceOutline__noteTitle {
    padding-left: 28px;
    font-size: 1.8rem;
  }
}
.serviceOutline__noteTitle::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 30px;
  height: 26px;
  background: url(/assets/img/icon_alert01.webp) no-repeat left top/cover;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .serviceOutline__noteTitle::before {
    top: 50%;
    width: 20px;
    height: 18px;
  }
}
.serviceOutline__noteText {
  margin-top: 11.6px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .serviceOutline__noteText {
    margin-top: 6.4px;
    line-height: 1.6;
  }
}
.serviceOutline__toForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .serviceOutline__toForm {
    margin-top: 25px;
  }
}
.serviceOutline__benefits {
  margin-top: 81px;
  padding: 62px 200px 42px 100px;
  position: relative;
  background-color: #fff;
  border-radius: 106px;
}
.serviceOutline__benefits::before {
  content: "";
  position: absolute;
  width: 179px;
  height: 260px;
  right: 20px;
  bottom: -6px;
  background: url(/assets/img/serviceoutline_enrollment_image01.webp) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefits {
    margin: 48px auto 0;
    padding: 38px 28px 30px 30px;
    max-width: 400px;
    width: 100%;
    border-radius: 50px;
  }
  .serviceOutline__benefits::before {
    width: 122px;
    height: 177px;
    top: calc(100% + 75px);
    right: -22px;
    bottom: auto;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}
.serviceOutline__benefitsTitle {
  position: absolute;
  inset: -10px auto auto 80px;
  width: 281px;
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsTitle {
    inset: -18px auto auto 20px;
    width: 201px;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsText {
    font-size: 1.3rem;
  }
}
.serviceOutline__benefitsTextBolds {
  display: block;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsTextBolds {
    margin-top: -2px;
  }
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsTextBolds {
    line-height: 2.1;
  }
}
.serviceOutline__benefitsTextBoldsLine1, .serviceOutline__benefitsTextBoldsLine2 {
  display: block;
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsTextBoldsLine2 {
    margin-top: -0.5em;
    padding-right: 15px;
  }
}
.serviceOutline__benefitsTextBoldsL {
  margin-right: 0.1em;
  padding-bottom: 0.1em;
  border-bottom: 3px dotted #f79d1d;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsTextBoldsL {
    padding-bottom: 0.2em;
    font-size: 1.8rem;
  }
}
.serviceOutline__benefitsTextBoldsM {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .serviceOutline__benefitsTextBoldsM {
    font-size: 1.6rem;
  }
}
.serviceOutline__benefitsTextBoldsColored {
  color: #f79d1d;
}
.serviceOutline__button {
  margin-top: 33px;
}
.serviceOutline--enrollment {
  margin: -78px 0 0;
  padding: 0;
  background-color: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .serviceOutline--enrollment {
    margin: -40px 0 0;
  }
}
.serviceOutline--enrollment .serviceOutline__wrapper {
  background: none;
}
.serviceOutline--enrollment .serviceOutline__wrapper::after {
  display: none;
}
.serviceOutline--enrollment .serviceOutline__inner {
  background: none;
}
@media screen and (max-width: 767px) {
  .serviceOutline--enrollment .serviceOutline__inner {
    padding-bottom: 75px;
  }
}
.serviceOutline--enrollment .serviceOutline__content {
  padding-bottom: 63px;
}
@media screen and (max-width: 767px) {
  .serviceOutline--enrollment .serviceOutline__content {
    padding-bottom: 40px;
  }
}
.serviceOutline--enrollment .serviceOutline__title {
  width: 148px;
}
@media screen and (max-width: 767px) {
  .serviceOutline--enrollment .serviceOutline__title {
    max-width: 234px;
    width: 39.6610169492%;
  }
}
.serviceOutline--enrollment .serviceOutline__item--price .serviceOutline__itemText--emphasis {
  margin: 0;
}
.serviceOutline--enrollment .serviceOutline__item--price .serviceOutline__itemText--emphasis b {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .serviceOutline--enrollment .serviceOutline__item--price .serviceOutline__itemText--emphasis b {
    font-size: 2rem;
  }
}

.formHeader {
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .formHeader {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.formFlow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 640px;
  margin: 60px auto 0;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .formFlow {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 26.5px;
    padding: 0 20px;
  }
}
.formFlow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 33.3333333333%;
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .formFlow__item {
    font-size: 1.3rem;
  }
}
.formFlow__item::before, .formFlow__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 19px;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}
.formFlow__item::before {
  top: -2px;
  right: -19px;
}
@media screen and (max-width: 767px) {
  .formFlow__item::before {
    top: -4px;
    right: -10px;
    border-width: 24px 0 24px 10px;
  }
}
.formFlow__item::after {
  border-width: 20px 0 20px 17px;
  border-left-color: #eee;
}
@media screen and (max-width: 767px) {
  .formFlow__item::after {
    right: -8px;
    border-left-width: 8px;
  }
}
.formFlow__item:first-child {
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 767px) {
  .formFlow__item:first-child {
    border-radius: 4px 0 0 4px;
  }
}
.formFlow__item:last-child {
  border-radius: 0 8px 8px 0;
}
.formFlow__item:last-child::before, .formFlow__item:last-child::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .formFlow__item:last-child {
    border-radius: 0 4px 4px 0;
  }
}
.formFlow__item .fontNumber {
  margin-top: -2px;
  margin-right: 20px;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .formFlow__item .fontNumber {
    margin-right: 8px;
    font-size: 1.8rem;
  }
}
.formFlow__item.isCurrent {
  color: #fff;
  background-color: #3695d9;
}
.formFlow__item.isCurrent::after {
  border-left-color: #3695d9;
}
.formFlow__item.isCurrent .fontNumber {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .formReserve__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.formReserve__weekPaging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .formReserve__weekPaging {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 17px;
  }
}
.formReserve__weekPagingItem {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .formReserve__weekPagingItem {
    width: 70px;
    font-size: 1.3rem;
  }
}
.formReserve__weekPagingItem a {
  display: block;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 20px;
  line-height: 38px;
}
@media screen and (max-width: 767px) {
  .formReserve__weekPagingItem a {
    line-height: 27px;
  }
}
.formReserve__weekPagingItem a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg);
}
.formReserve__weekPagingItem:first-child a {
  padding-left: 40px;
}
.formReserve__weekPagingItem:first-child a::before {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .formReserve__weekPagingItem:first-child a {
    padding-left: 27px;
  }
  .formReserve__weekPagingItem:first-child a::before {
    left: 15px;
  }
}
.formReserve__weekPagingItem:last-child {
  margin-left: 10px;
}
.formReserve__weekPagingItem:last-child a {
  padding-left: 30px;
}
.formReserve__weekPagingItem:last-child a::before {
  right: 20px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .formReserve__weekPagingItem:last-child a {
    padding-left: 17px;
  }
  .formReserve__weekPagingItem:last-child a::before {
    right: 15px;
  }
}
.formReserve__weekPagingItem.isDisabled a {
  color: #999;
  border-color: #ccc;
  pointer-events: none;
}
.formReserve__table {
  margin-top: 20px;
  border: 1px solid #ccc;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .formReserve__table {
    position: relative;
    overflow: auto;
    width: 100%;
    height: 50vh;
    margin-top: 10px;
  }
}
.formReserve__tableContent {
  width: 100%;
  line-height: 1.25;
  text-align: center;
}
.formReserve__tableContent .layout--pc {
  display: revert;
}
@media screen and (max-width: 767px) {
  .formReserve__tableContent .layout--pc {
    display: none;
  }
  .formReserve__tableContent .layout--sp {
    display: revert;
  }
}
.formReserve__tableDate {
  background-color: #e9f6fc;
  text-align: center;
}
.formReserve__tableMonth {
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .formReserve__tableMonth {
    line-height: 24.5px;
  }
}
.formReserve__tableDay {
  width: 54px;
  padding-top: 7.25px;
  padding-bottom: 7.25px;
}
@media screen and (max-width: 767px) {
  .formReserve__tableDay {
    width: 39px;
  }
}
.formReserve__tableDay span {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .formReserve__tableDay span {
    font-size: 1.1rem;
  }
}
.formReserve__tableDay.sat {
  color: #3695d9;
}
.formReserve__tableDay.sun {
  color: #e55c73;
}
.formReserve__tableTimezone {
  width: 9.7916666667%;
  background-color: #e9f6fc;
  line-height: 35px;
}
@media screen and (max-width: 767px) {
  .formReserve__tableTimezone {
    width: 16.1194029851%;
  }
}
.formReserve__tableTimeslot span,
.formReserve__tableTimeslot a {
  display: block;
  line-height: 34px;
}
.formReserve__tableTimeslot--close {
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .formReserve__tableTimeslot--open:hover {
    opacity: 0.7;
  }
}
.formReserve__tableTimezone.isSelected, .formReserve__tableTimeslot.isSelected {
  background-color: #ffed94;
}
.formReserve__tableDay.isSelected::before {
  background-color: #ffed94;
}
@media screen and (max-width: 767px) {
  .formReserve__tableDay:nth-child(n+8) {
    display: none;
  }
  .formReserve__tableTimeslot:nth-child(n+9) {
    display: none;
  }
}
.formReserve__tableTimeline {
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
}
.formReserve__tableTimeline:first-child .formReserve__tableTimezone,
.formReserve__tableTimeline:first-child .formReserve__tableTimeslot {
  border-top-width: 0;
}
.formReserve__tableTimeline:last-child {
  border-bottom-width: 0;
}
.formReserve__tableTimeline:last-child .formReserve__tableTimezone,
.formReserve__tableTimeline:last-child .formReserve__tableTimeslot {
  border-bottom-width: 0;
}
.formReserve__tableTimeline .formReserve__tableTimezone:first-child {
  border-left-width: 0;
}
.formReserve__tableTimeline .formReserve__tableTimezone:last-child {
  border-right-width: 0;
}
@media screen and (max-width: 767px) {
  .formReserve__tableTimeline .formReserve__tableTimeslot:nth-of-type(7) {
    border-right-width: 0;
  }
}
.formReserve__tableDate tr {
  border: none;
}
.formReserve__tableBlank, .formReserve__tableMonth, .formReserve__tableDay {
  position: relative;
  border-width: 0;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .formReserve__tableBlank, .formReserve__tableMonth, .formReserve__tableDay {
    top: 0;
  }
}
.formReserve__tableBlank::before, .formReserve__tableMonth::before, .formReserve__tableDay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e9f6fc;
  border-width: 0;
  border-style: solid;
  border-color: #ccc;
  z-index: -1;
}
.formReserve__tableBlank::before {
  border-width: 1px 1px 1px 0;
}
.formReserve__tableBlank:last-child::before {
  border-right-width: 0;
}
.formReserve__tableMonth::before {
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (max-width: 767px) {
  .formReserve__tableMonth:nth-last-child(2)::before {
    border-right-width: 0;
  }
}
.formReserve__tableDay {
  top: 30px;
}
.formReserve__tableDay::before {
  border-width: 1px 1px 1px 0;
}
@media screen and (max-width: 767px) {
  .formReserve__tableDay {
    top: 24px;
  }
  .formReserve__tableDay:nth-child(7)::before {
    border-right-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .formReserve__tableGuide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .formReserve__tableGuide::before {
    content: "";
    display: block;
    width: 65px;
    height: 51px;
    margin: 20px auto 13.2px;
    background: url(/assets/img/formreserve__icon_swipe01.svg) no-repeat top center/cover;
  }
  .formReserve__tableGuide.isStart {
    -webkit-animation: fadeOut 1s ease 3s 1 forwards;
            animation: fadeOut 1s ease 3s 1 forwards;
  }
  .formReserve__tableGuide.isStart::before {
    -webkit-animation: swipe 3s ease 0s 1 forwards;
            animation: swipe 3s ease 0s 1 forwards;
  }
}
.formReserve .attention {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .formReserve .attention {
    margin-top: 9px;
  }
}

.formInput {
  margin-top: 60px;
  padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .formInput {
    margin-top: 28px;
  }
}
.formInput__content {
  padding: 55.6px 60px 60px;
  background-color: #e9f6fc;
}
@media screen and (max-width: 767px) {
  .formInput__content {
    padding: 28.5px 15px 30px;
  }
}
.formInput__title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .formInput__title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.formInput__title b {
  color: #e55c73;
  text-decoration: underline;
}

.formConfirmation {
  padding-bottom: 55px;
}
.formConfirmation__content {
  margin-top: 27.6px;
  padding: 40px 60px;
  background-color: #e9f6fc;
}
@media screen and (max-width: 767px) {
  .formConfirmation__content {
    margin-top: 12px;
    padding: 30px 15px;
  }
}
.formConfirmation .formArea {
  margin-top: 0;
}
.formConfirmation .formArea__header {
  padding-top: 0;
  background-color: #fff;
  text-align: center;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .formConfirmation .formArea__header {
    padding-left: 7px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.formConfirmation .formArea__body {
  margin-top: 4.8px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .formConfirmation .formArea__body {
    margin-top: 7.2px;
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.formConfirmation .formArea__buttons {
  margin-top: 36.8px;
}
@media screen and (max-width: 767px) {
  .formConfirmation .formArea__buttons {
    margin-top: 29.2px;
  }
}

.formCompletion {
  padding-bottom: 55px;
}
.formCompletion__text {
  margin-top: 12.4px;
}
.formCompletion__text b {
  color: #e55c73;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .formCompletion__text {
    margin-top: 8.5px;
  }
}
.formCompletion__content {
  margin-top: 26.8px;
  margin-bottom: 27.6px;
  padding: 27px 60px;
  background-color: #e9f6fc;
}
@media screen and (max-width: 767px) {
  .formCompletion__content {
    margin-top: 12px;
    margin-bottom: 17.6px;
    padding: 20px 15px 16px;
  }
}
.formCompletion__reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .formCompletion__reservation {
    display: block;
    text-align: center;
  }
}
.formCompletion__reservationHeader {
  width: 140px;
  color: #fff;
  background-color: #3695d9;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .formCompletion__reservationHeader {
    width: 100px;
    margin: 0 auto;
    line-height: 25px;
  }
}
.formCompletion__reservationBody {
  margin-left: 20px;
  color: #3695d9;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .formCompletion__reservationBody {
    margin-top: 6px;
    margin-left: 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .formCompletion .attention {
    font-size: 1.2rem;
  }
}
.formCompletion .button {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .formCompletion .button {
    margin-top: 30px;
  }
}

.formPayment {
  margin-top: -25px;
  padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .formPayment {
    margin-top: -23px;
    padding-bottom: 30px;
  }
}
.formPayment__content {
  padding: 55px 60px;
  background-color: #e9f6fc;
}
@media screen and (max-width: 767px) {
  .formPayment__content {
    padding: 25px 15px 30px;
  }
}
.formPayment__title {
  padding: 0 100px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .formPayment__title {
    padding: 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .formPayment__title {
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.formPayment__title b {
  color: #e55c73;
  text-decoration: underline;
}
.formPayment .formArea {
  margin-top: 35px;
}
@media screen and (max-width: 800px) {
  .formPayment .formArea {
    padding: 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .formPayment .formArea {
    margin-top: 20px;
    padding: 0;
  }
}
.formPayment .formArea__header {
  max-width: 140px;
}
.formPayment .formArea__body {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__body {
    margin-top: 7.2px;
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.formPayment .formArea__body--selectTwo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
.formPayment .formArea__body--cardCode {
  max-width: 80px;
}
.formPayment .formArea__body--cardCode .formArea__error {
  top: -16px;
  right: -30px;
}
.formPayment .formArea__row + .formPayment .formArea__row {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__row + .formPayment .formArea__row {
    margin-top: 23px;
  }
}
.formPayment .formArea__price {
  display: block;
  padding-top: 8px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__price {
    letter-spacing: 0.05em;
  }
}
.formPayment .formArea__price small {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
}
.formPayment .formArea__select:invalid {
  color: #ccc;
}
.formPayment .formArea__select option {
  color: #666;
}
.formPayment .formArea__select option:first-child {
  color: #ccc;
}
.formPayment .formArea__input {
  position: relative;
}
.formPayment .formArea__input--cardMonth {
  max-width: 80px;
}
.formPayment .formArea__input--cardYear {
  max-width: 120px;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__input--cardYear {
    max-width: 100px;
  }
}
.formPayment .formArea__error {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 999;
}
.formPayment .formArea__errorText {
  padding: 0 6px;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__errorText {
    font-size: 1.3rem;
  }
}
.formPayment .formArea__text {
  padding-top: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__text {
    padding-top: 28px;
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }
}
.formPayment .formArea__buttons {
  margin: 23px auto 0;
}
@media screen and (max-width: 767px) {
  .formPayment .formArea__buttons {
    margin: 25px auto 0;
  }
}
.formPayment .formArea__buttons .button {
  margin: 0 auto;
}

.explanationVideo {
  background-color: #fbfbfb;
}
.explanationVideo__wrapper {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 75px 20px 100px;
}
@media screen and (max-width: 767px) {
  .explanationVideo__wrapper {
    padding-top: 43px;
    padding-bottom: 60px;
  }
}
.explanationVideo__title {
  max-width: 463px;
  width: 57.875%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .explanationVideo__title {
    max-width: 602px;
    width: 89.8507462687%;
  }
}
.explanationVideo__text {
  margin-top: 35.2px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .explanationVideo__text {
    margin-top: 31.8px;
  }
}
.explanationVideo .movie {
  margin-top: 55.2px;
}
@media screen and (max-width: 767px) {
  .explanationVideo .movie {
    margin-top: 25.8px;
  }
}

.faq {
  background-color: #f1f1f1;
}
.faq__wrapper {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 60px;
}
@media screen and (max-width: 767px) {
  .faq__wrapper {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.faq__title {
  max-width: 302px;
  width: 41.9444444444%;
  margin: 0 auto;
}
.faq__list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .faq__list {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}
.faq__item {
  position: relative;
  background-color: #fff;
}
.faq__item + .faq__item {
  margin-top: 10px;
}
.faq__question .faq__itemIcon, .faq__answer .faq__itemIcon {
  width: 50px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  font-weight: bold;
}
.faq__question:hover {
  cursor: pointer;
}
.faq__question .faq__itemIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #3695d9;
}
.faq__question .faq__itemText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px 45px 14px 20px;
}
@media screen and (max-width: 767px) {
  .faq__question .faq__itemText {
    padding: 12px 40px 12px 15px;
  }
}
.faq__question::before, .faq__question::after {
  content: "";
  display: block;
  position: absolute;
  top: 23px;
  right: 20px;
  width: 20px;
  height: 4px;
  background-color: #3695d9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .faq__question::before, .faq__question::after {
    top: 50%;
    right: 15px;
    width: 15px;
    height: 3px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.faq__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    -webkit-transform: translate(0, -50%) rotate(90deg);
            transform: translate(0, -50%) rotate(90deg);
  }
}
.faq__answer {
  display: none;
  padding: 13.2px 20px 17.2px 0;
  line-height: 1.6;
}
.faq__answer .faq__itemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faq__answer .faq__itemIcon {
  padding-left: 20px;
  color: #3695d9;
}
.faq__answer .faq__itemText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
}
.faq__item.isOpen .faq__question::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__item.isOpen .faq__question::after {
    -webkit-transform: translate(0, -50%) rotate(0deg);
            transform: translate(0, -50%) rotate(0deg);
  }
}
.faq__item.isFirsttimeOpen .faq__answer {
  display: block;
}

.footer {
  padding-top: 60px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 30px;
  }
}
.footer .wrapper {
  padding-bottom: 137.6px;
}
@media screen and (max-width: 767px) {
  .footer .wrapper {
    padding-bottom: 97.8px;
  }
}
.footer__inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0 38px;
  background-color: #fff;
  border-radius: 25vw;
}
@media screen and (max-width: 767px) {
  .footer__inquiry {
    padding: 20px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 320px) {
  .footer__inquiry {
    padding-right: 0;
    padding-left: 0;
  }
}
.footer__inquiryTitle {
  max-width: 155px;
  width: 21.174863388%;
  margin-right: 2.0833333333vw;
}
@media screen and (min-width: 1441px) {
  .footer__inquiryTitle {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inquiryTitle {
    width: 104px;
    margin-right: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .footer__inquiryList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__inquiryItem {
  font-size: clamp(15px, 1.25vw, 18px);
  font-size: clamp(1.5rem, 1.25vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  .footer__inquiryItem {
    width: 173px;
  }
}
@media screen and (max-width: 320px) {
  .footer__inquiryItem {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .footer__inquiryItem:first-of-type {
    margin-right: 0.9027777778vw;
  }
  .footer__inquiryItem:first-of-type::after {
    content: "／";
    margin-left: 1.0416666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 920px) {
  .footer__inquiryItem:first-of-type::after {
    margin-left: 1.0416666667vw;
  }
}
@media screen and (min-width: 1441px) {
  .footer__inquiryItem:first-of-type {
    margin-right: 13px;
  }
}
.footer__inquiryItem a {
  position: relative;
  padding-left: 24px;
  color: #666;
  font-weight: bold;
}
@media screen and (max-width: 920px) {
  .footer__inquiryItem a {
    padding-left: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__inquiryItem a {
    padding-left: 19px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 320px) {
  .footer__inquiryItem a {
    font-size: 1.2rem;
  }
}
.footer__inquiryItem span {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  font-size: clamp(1.2rem, 0.9722222222vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  .footer__inquiryItem span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 320px) {
  .footer__inquiryItem span {
    font-size: 1rem;
  }
}
.footer__inquiryItem--mail a::before, .footer__inquiryItem--tel a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 14px;
  background: url(/assets/img/icon_mail01.webp) no-repeat top left/cover;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 920px) {
  .footer__inquiryItem--mail a::before, .footer__inquiryItem--tel a::before {
    width: 1.3888888889vw;
    height: 1.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__inquiryItem--mail a::before, .footer__inquiryItem--tel a::before {
    width: 14px;
    height: 11px;
  }
}
@media screen and (min-width: 768px) {
  .footer__inquiryItem--tel a {
    pointer-events: none;
  }
}
.footer__inquiryItem--tel a::before {
  width: 20px;
  height: 20px;
  background-image: url(/assets/img/icon_tel01.webp);
}
@media screen and (max-width: 920px) {
  .footer__inquiryItem--tel a::before {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__inquiryItem--tel a::before {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inquiryItem--tel {
    margin-left: auto;
  }
}
.footer__related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 760px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .footer__related {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.footer__relatedItem {
  max-width: 240px;
  width: 31.5789473684%;
  height: 60px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .footer__relatedItem {
    max-width: 360px;
    width: 53.7313432836%;
    height: 45px;
    margin: 10px auto 0;
  }
}
.footer__relatedItemLink {
  display: block;
  height: 100%;
  position: relative;
  border: 1px solid #ccc;
}
.footer__relatedItemLink::after {
  content: "";
  display: block;
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #ccc transparent;
}
@media screen and (max-width: 767px) {
  .footer__relatedItemLink::after {
    right: 2px;
    bottom: 2px;
    border-bottom-width: 7.5px;
    border-left-width: 7.5px;
  }
}
.footer__relatedItemLink img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .footer__relatedItemLink img {
    width: 150px;
  }
}
@media screen and (max-width: 320px) {
  .footer__relatedItemLink img {
    width: 135px;
  }
}
.footer__relatedItem--tatsujin .footer__relatedItemLink img {
  width: 124px;
}
@media screen and (max-width: 767px) {
  .footer__relatedItem--tatsujin .footer__relatedItemLink img {
    width: 93px;
  }
}
.footer__privacypolicy {
  margin-top: 19.2px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__privacypolicy {
    margin-top: 16.6px;
    font-size: 1.2rem;
  }
}
.footer__privacypolicy a {
  color: #666;
  text-decoration: underline;
}
.footer .copyright {
  margin-top: 57.6px;
}