@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalnia+Glaze:wght@100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizespeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-skip: ink;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --pc-max-width:1260px;
  --pc-max-width2:700px;
  --pc-max-width3:644px;
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-en: "Poppins", sans-serif;
  --f-font-size: 24px;
  --f-line-height: 1.6;
  --f-line-height2: 2.0;
  --c-black: #585858;
  --c-orange:#EC6504;
  --c-blue:#2B588C;
  --c-green:#33C226;
  --c-green2:#399152;
  --c-bg-01:#FFFFF1;
  --c-bg-02:#FFF4EC;
  --t-all1:all 1s ease;
  --borderradius:60px;
  --c-grade-01:linear-gradient(-90deg, #DF3186 0%,#FD68E8 27%,#B668FF 54%,#519ED2 84%,#2594FF 100%);
  --c-grade-02:linear-gradient(45deg, #EEFF82 0%, #AFFF82 55%, #5BFF79 100%);
  --c-grade-03:linear-gradient(0deg, rgba(175,255,130,.7) 0%, rgba(90,188,208,.7) 100%);
  --c-grade-04:linear-gradient(-90deg, rgba(96,194,202,.6) 0%, rgba(175,255,130,.6) 100%);
  --c-grade-05:linear-gradient(-90deg, #f3f9fe 0%,#f4fefe 100%);
  --c-grade-06:linear-gradient(-90deg, #FF75F3 0%,#53DFFF 100%);
  --c-grade-07:linear-gradient(90deg, #FF75F3 0%,#53DFFF 100%);
  --c-grade-08:linear-gradient(180deg, #DF3186 0%,#B668FF 86%);
}
@media (max-width: 840px) {
  :root,
  :root[theme=Default] {
    --f-font-size: 18px;
  }
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 18px;
  color: var(--c-black);
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 840px) / 300, 16px);
  }
}
@media (max-width: 840px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  line-height: var(--f-line-height);
  background-color: var(--c-base-3);
  overflow-wrap: break-word;
  word-break: break-all;
  background-color: var(--c-white);
}

img {
  height: auto;
  vertical-align: top;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.7;
}

p {
  line-height: var(--f-line-height);
}

section {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 3.75rem 0;
}
@media (max-width: 840px) {
  section {
    padding: 1.875rem 1.25rem;
  }
}
section h2 {
  text-align: center;
  margin: auto;
  margin-bottom: 3.75rem;
}
@media (max-width: 840px) {
  section h2 {
    margin-bottom: 1.875rem;
    font-size: 24px;
  }
}
section h2 span {
  font-weight: 300;
}
section p, section li, section dt, section dd, section h3, section h4 {
  text-align: left;
}
section > p {
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 840px) {
  section > p {
    width: 94%;
  }
}
section img {
  width: auto;
  margin: auto;
}

.l-header {
  z-index: 100;
  transition: 0.3s;
  height: 3.75rem;
  background-color: var(--c-white);
  padding: 0 1.25rem;
}
@media (max-width: 840px) {
  .l-header {
    height: 3.125rem;
  }
}

.l-header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
@media (max-width: 840px) {
  .l-header__container {
    padding-left: 0;
    justify-content: center;
  }
}
.l-header__container .l-header__logo {
  padding: 0.625rem;
  height: 100%;
}
.l-header__container .l-header__logo img {
  width: auto;
  height: 100%;
  padding: 0.3125rem;
}

.c-flex {
  display: flex;
}

.c-en {
  font-family: var(--f-family-en) !important;
}

p.c-txt-chatch {
  max-width: var(--pc-max-width);
  margin: 3.75rem auto 1.875rem;
  text-align: left !important;
  font-size: var(--f-font2-size);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 840px) {
  p.c-txt-chatch {
    margin: 1.5625rem auto 1.25rem;
    font-size: 17px;
    line-height: 2;
  }
}
p.c-txt-chatch span {
  color: var(--c-base-blue);
}

.txt-center {
  text-align: center;
}

.c-cta a {
  background: var(--c-grade-01);
  display: flex;
  flex-direction: column;
  color: #fff;
  margin: 1.25rem auto 0;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: var(--borderradius);
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3em;
}
@media (max-width: 840px) {
  .c-cta a {
    width: 100%;
    min-width: unset;
    font-size: 24px;
    padding: 0.625rem 1.875rem;
  }
}
.c-cta a span {
  font-size: 85%;
  font-weight: 300;
  margin-bottom: -0.3125rem;
  letter-spacing: normal;
}
@media (max-width: 840px) {
  .c-cta a span {
    font-size: 65%;
  }
}
.c-cta.c-bottom-cta {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  padding: 0.3125rem;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  display: none;
}
.c-cta.c-bottom-cta a {
  margin: 0.625rem 1.25rem 0.9375rem auto;
  padding: 0.75rem 1.875rem 0.75rem 1.25rem;
  max-width: 27.5rem;
  width: 98%;
}
@media (max-width: 840px) {
  .c-cta.c-bottom-cta a {
    margin: 0.625rem auto 0.9375rem auto;
    padding: 0.75rem 1.5625rem 0.75rem 0.9375rem;
  }
}
.c-cta.c-bottom-cta a img {
  width: 20%;
}
.c-cta.c-bottom-cta.is-scroll {
  display: block;
  transition: var(--t-all1);
}

.p-grade-box {
  max-width: var(--pc-max-width2);
  position: relative;
  padding: 1.25rem 1.25rem 3.125rem;
  margin: 1.25rem auto;
  border-radius: 3.75rem 3.75rem 0 0;
}
@media (max-width: 840px) {
  .p-grade-box {
    padding: 1.25rem 0.625rem 2.5rem;
    width: 100%;
  }
}
.p-grade-box .p-grade-title {
  position: relative;
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 50%;
  background: var(--c-grade-05);
  margin: -6.875rem auto 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  font-size: 22px;
}
@media (max-width: 840px) {
  .p-grade-box .p-grade-title {
    margin-top: -4.6875rem;
    margin-bottom: 1.25rem;
    width: 8.125rem;
    height: 8.125rem;
    font-size: 18px;
    line-height: 1.3;
  }
}
.p-grade-box.p-grade-fukidashi-box {
  margin-bottom: 7.5rem;
}

.p-str-contents2 .p-grade-box, .p-str-contents3 .p-grade-box, .p-plan .p-grade-box {
  margin-top: 7.5rem;
}
@media (max-width: 840px) {
  .p-str-contents2 .p-grade-box, .p-str-contents3 .p-grade-box, .p-plan .p-grade-box {
    margin-top: 5rem;
  }
}

.p-grade-fukidashi {
  background: #F7FFA6;
  padding: 0.875rem;
  color: var(--c-black);
  text-align: center;
  font-weight: bold;
  position: absolute;
  border-radius: 1.875rem;
  width: 100%;
  left: 0;
  bottom: -6.5625rem;
}
@media (max-width: 840px) {
  .p-grade-fukidashi {
    bottom: -6.25rem;
  }
}
.p-grade-fukidashi:after {
  content: "";
  display: block;
  background: #F7FFA6;
  height: 34.6410161514px;
  width: 40px;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
  position: absolute;
  top: -1.875rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

section.p-fv {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  align-items: end;
  justify-content: flex-end;
  background: url(../images/bg-kv-pc.png) no-repeat center top/contain;
  z-index: 3;
  height: 60vw;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 840px) {
  section.p-fv {
    flex-direction: column;
    background: url(../images/bg-kv.png) no-repeat center top/100%;
    justify-content: flex-end;
    height: 100vh;
    min-height: 150vw;
  }
}
section.p-fv .p-fv-box-left {
  position: absolute;
  bottom: 10vw;
}
@media (max-width: 1200px) {
  section.p-fv .p-fv-box-left {
    bottom: 13vw;
  }
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left {
    bottom: 10vw;
  }
}
section.p-fv .p-fv-box-left p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left p {
    flex-direction: column;
    align-items: center;
  }
}
section.p-fv .p-fv-box-left p img {
  width: 50%;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left p img {
    width: 100%;
  }
}
section.p-fv .p-fv-box-left p span {
  padding-bottom: 1.25rem;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left {
    display: flex;
    flex-direction: column;
    position: static;
    width: 120%;
    margin-bottom: -12vh;
    margin-left: -10%;
    padding: 0 0 1.25rem;
  }
}
section.p-fv .p-fv-box-left h3 img {
  max-width: 85%;
  margin-top: 2.5rem;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left h3 img {
    max-width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left h3 {
    position: absolute;
    top: 0.9375rem;
    right: 4%;
    width: 92%;
  }
}
section.p-fv .p-fv-box-left .p-fv-box-left-box {
  background-color: rgba(255, 249, 177, 0.8);
  padding: 0.9375rem;
  text-align: center;
  font-weight: 600;
  font-size: 23px;
  margin: 5vh auto 7.5vh;
  width: 78%;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left .p-fv-box-left-box {
    font-size: 20px;
    padding: 0.9375rem 0.625rem;
    margin-top: 0;
    margin-bottom: 2.5vh;
    width: 100%;
  }
}
section.p-fv .p-fv-box-left .p-fv-box-left-attention {
  color: #fff;
  font-size: 85%;
  text-align: center;
}
section.p-fv .p-fv-box-left .p-fv-box-left-attention span {
  display: block;
  margin: 0.625rem auto 0 0;
  font-size: 14px;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-left .p-fv-box-left-attention span {
    margin: 0.625rem auto 0;
    padding-bottom: 0;
    font-size: 15px;
  }
}
section.p-fv .p-fv-box-left .p-fv-box-left-attention img {
  max-width: 100%;
  margin-right: 0;
}
section.p-fv .p-fv-box-right {
  padding: 0.625rem 1.25rem 1.875rem;
  color: #fff;
  z-index: -1;
  width: 100%;
  max-width: var(--pc-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-right {
    position: relative;
    left: -5vw;
    padding: 10.5vh 0.625rem 1.25rem;
    flex-direction: column;
    background-color: rgba(29, 91, 123, 0.9);
  }
}
section.p-fv .p-fv-box-right:after {
  content: "";
  display: block;
  width: 100%;
  height: 15vw;
  left: 0;
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-color: rgba(29, 91, 123, 0.9);
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-right:after {
    content: none;
  }
}
section.p-fv .p-fv-box-right .p-fv-box-right-txt {
  margin-left: 2.5rem;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-right .p-fv-box-right-txt {
    margin: 0;
  }
}
section.p-fv .p-fv-box-right .p-fv-box-right-txt .c-cta a {
  margin-top: 0;
}
section.p-fv .p-fv-box-right h3, section.p-fv .p-fv-box-right p {
  text-align: center;
}
section.p-fv .p-fv-box-right h3 {
  margin-top: 0;
  font-size: 32px;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-right h3 {
    font-size: 24px;
  }
}
section.p-fv .p-fv-box-right p {
  font-size: 15px;
}
@media (max-width: 840px) {
  section.p-fv .p-fv-box-right p {
    font-size: 13px;
  }
}

section.p-slide {
  width: 100%;
  padding: 0 0 var(--f-padding);
  overflow: hidden;
  padding: 2vw 0 4vw;
  z-index: 5;
}
@media (max-width: 840px) {
  section.p-slide {
    padding: 6vw 0 6vw;
  }
}
section.p-slide h2 {
  margin-bottom: 2.5rem;
}
@media (max-width: 840px) {
  section.p-slide h2 {
    margin-bottom: 1.25rem;
  }
}
section.p-slide .fadeslide {
  position: relative;
  z-index: 3;
  width: 105vw;
  display: flex;
  max-width: initial;
  padding: 0;
  overflow: hidden;
}
section.p-slide .fadeslide > ul:first-of-type {
  animation: loop 50s -25s linear infinite;
}
section.p-slide .fadeslide > ul:last-of-type {
  animation: loop2 50s linear infinite;
}
section.p-slide .fadeslide .p-slide-wrapp {
  display: flex;
  max-width: initial;
  align-items: flex-start;
  position: relative;
}
section.p-slide .fadeslide .p-slide-wrapp li {
  display: block;
  width: 12.5vw;
  text-align: center;
  font-weight: bold;
  margin-right: 0.25rem;
}
@media (max-width: 840px) {
  section.p-slide .fadeslide .p-slide-wrapp li {
    width: 25vw;
  }
}
section.p-slide .fadeslide .p-slide-wrapp li p {
  width: 100%;
  text-align: center;
  padding-top: 0.3125rem;
}
@media (max-width: 840px) {
  section.p-slide .fadeslide .p-slide-wrapp li p {
    font-size: 10px;
  }
}
section.p-slide .fadeslide .p-slide-wrapp li img {
  width: 100%;
  height: auto;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.js-slider {
  width: 100%;
  position: relative;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 840px) {
  .js-slider {
    width: 99%;
    left: 0.5%;
  }
}
.js-slider .slick-slide {
  margin: 0 0.125rem;
}

.slick-prev, .slick-next {
  z-index: 100;
}

.slick-prev {
  left: -1.875rem !important;
  top: 48.2% !important;
}
.slick-prev:before {
  content: "" !important;
  background: url(../images/icon-pre.png) no-repeat center center/contain;
  width: 2.8125rem;
  height: 2.8125rem;
  display: block;
  position: absolute;
  z-index: 10;
}

.slick-next {
  right: 0 !important;
}
.slick-next:before {
  content: "" !important;
  background: url(../images/icon-next.png) no-repeat center center/contain;
  width: 2.8125rem;
  height: 2.8125rem;
  display: block;
  z-index: 10;
}

.p-str-head {
  background: url(../images/bg-point-list.png) center bottom no-repeat;
  background-size: cover;
  color: #fff;
}
.p-str-head h2 {
  margin-bottom: 2rem;
}
.p-str-head ul {
  display: flex;
  justify-content: space-between;
  max-width: 36.25rem;
  margin-left: auto;
  margin-right: auto;
}
.p-str-head ul li {
  width: 32%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 17px;
}
@media (max-width: 840px) {
  .p-str-head ul li {
    justify-content: flex-start;
    font-size: 15px;
  }
}
.p-str-head ul li span {
  display: flex;
  color: #000;
  font-size: 100%;
  background: #fff;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-direction: column;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 22px;
}
@media (max-width: 840px) {
  .p-str-head ul li span {
    width: 18vw;
    min-width: 18vw;
    height: 18vw;
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .p-str-head ul li span {
    width: 26vw;
    min-width: 26vw;
    height: 26vw;
  }
}
.p-str-head ul li span:after {
  content: "";
  display: block;
  background: #757575;
  height: 12.9903810568px;
  width: 20px;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
  transform: rotate(180deg);
  position: absolute;
  bottom: 0.9375rem;
}

.p-str-contents {
  overflow: hidden;
  padding-bottom: 0;
}
@media (max-width: 840px) {
  .p-str-contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-str-contents h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
  position: relative;
  line-height: 1.3;
  padding-top: 1rem;
}
@media (max-width: 840px) {
  .p-str-contents h2 {
    font-size: 19px;
  }
}
.p-str-contents h2 span {
  display: flex;
  font-size: 85%;
  color: #fff;
  background: url(../images/bg-title-point.png) center center no-repeat;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 2rem;
  position: relative;
  top: -0.625rem;
}
@media (max-width: 840px) {
  .p-str-contents h2 span {
    margin-right: 0.875rem;
    width: 18vw;
    min-width: 18vw;
    height: 18vw;
  }
}
@media (max-width: 450px) {
  .p-str-contents h2 span {
    width: 20vw;
    min-width: 20vw;
    height: 20vw;
  }
}
.p-str-contents h2 img {
  position: absolute;
  left: 42%;
  top: 0;
}
@media (max-width: 840px) {
  .p-str-contents h2 img {
    left: 32%;
  }
}
.p-str-contents > p {
  margin: 1.5625rem auto;
}
.p-str-contents > p span {
  font-weight: bold;
}
.p-str-contents.p-str-contents0 img {
  margin-bottom: 2.5rem;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents0 img {
    margin-bottom: 1.25rem;
  }
}
.p-str-contents.p-str-contents0 .p-pickup-school {
  margin: 2.5rem auto 0;
  max-width: 38.75rem;
  padding: 3.75rem 1.875rem 1.875rem;
  background: url(../images/bg-point-pickup.png) top center no-repeat;
  background-size: cover;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents0 .p-pickup-school {
    max-width: unset;
    padding: 3.75rem 0.9375rem 0.9375rem;
  }
}
.p-str-contents.p-str-contents0 .p-pickup-school img {
  margin: 1.25rem auto;
}
.p-str-contents.p-str-contents0 .p-pickup-school h2 {
  text-align: center;
}
.p-str-contents.p-str-contents0 .p-pickup-school h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.p-str-contents.p-str-contents0 .p-pickup-school h3 img {
  width: 30%;
  margin-top: -1.25rem;
  margin-bottom: 0;
}
.p-str-contents.p-str-contents1 .p-grade-box {
  background: url(../images/bg-point2.png) center top no-repeat;
  background-size: cover;
  padding: 3.125rem 1.25rem 1.25rem;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents1 .p-grade-box {
    padding: 1.875rem 1.25rem 1.25rem;
  }
}
.p-str-contents.p-str-contents1 .p-grade-box h3 {
  text-align: center;
}
.p-str-contents.p-str-contents1 .p-grade-box ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem auto;
  max-width: 31.25rem;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents1 .p-grade-box ul {
    max-width: unset;
  }
}
.p-str-contents.p-str-contents1 .p-grade-box ul li {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  font-size: 18px;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents1 .p-grade-box ul li {
    width: 17vw;
    height: 17vw;
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .p-str-contents.p-str-contents1 .p-grade-box ul li {
    width: 20vw;
    height: 20vw;
  }
}
.p-str-contents.p-str-contents2 > p {
  text-align: center;
}
.p-str-contents.p-str-contents2 .p-point2-box1 {
  background: url(../images/bg-point2-2.png) center top no-repeat;
  background-size: cover;
}
.p-str-contents.p-str-contents2 .p-point2-box1 ul {
  width: 76%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents2 .p-point2-box1 ul {
    width: 96%;
  }
}
.p-str-contents.p-str-contents2 .p-point2-box1 ul li {
  font-weight: 600;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid;
  margin-bottom: 1.25rem;
}
.p-str-contents.p-str-contents2 .p-point2-box1 ul li:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.p-str-contents.p-str-contents2 .p-point2-box2 {
  background: url(../images/bg-point2-3.png) center top no-repeat;
  background-size: cover;
}
.p-str-contents.p-str-contents2 .p-point2-box2 p:last-of-type {
  position: relative;
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  overflow: hidden;
  margin: 2.5rem auto 0;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents2 .p-point2-box2 p:last-of-type {
    width: calc(100% + 1.25rem);
    left: -0.625rem;
  }
}
.p-str-contents.p-str-contents2 .p-point2-box2 p:last-of-type img {
  max-width: unset;
  width: calc(100% + 5rem);
  position: relative;
  margin-left: -2.5rem;
}
@media (max-width: 840px) {
  .p-str-contents.p-str-contents2 .p-point2-box2 p:last-of-type img {
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
  }
}
.p-str-contents.p-str-contents2 ul li span {
  font-size: 55%;
  position: relative;
  bottom: 0.1875rem;
  margin-right: 0.3125rem;
}

@media (max-width: 840px) {
  section.p-plan {
    padding-left: 0;
    padding-right: 0;
  }
}
section.p-plan .p-point2-box3 {
  background: url(../images/bg-point2-4.png) center top no-repeat;
  background-size: cover;
}
section.p-plan .p-point2-box4 {
  background: url(../images/bg-point2-5.png) center top no-repeat;
  background-size: cover;
  margin-bottom: 0;
}
section.p-plan .p-grade-box table {
  margin: 0 auto;
  border-radius: 2.5rem;
  overflow: hidden;
}
section.p-plan .p-grade-box table th {
  background-color: #FCFFA4;
  display: flex;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.125rem;
  justify-content: flex-start;
}
@media (max-width: 840px) {
  section.p-plan .p-grade-box table th {
    padding: 0.75rem 0.625rem 0.75rem 1rem;
    font-size: 16px;
  }
}
section.p-plan .p-grade-box table th img {
  margin: 0;
  margin-right: 0.625rem;
  width: 3.625rem;
}
@media (max-width: 840px) {
  section.p-plan .p-grade-box table th img {
    width: 1.75rem;
  }
}
section.p-plan .p-grade-box table td {
  background-color: #fff;
  width: 40%;
  font-weight: bold;
  padding: 0.75rem;
  font-size: 24px;
}
@media (max-width: 840px) {
  section.p-plan .p-grade-box table td {
    font-size: 16px;
  }
}
section.p-plan .p-grade-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
section.p-plan .p-grade-wrapper dl {
  width: 32%;
  font-size: 18px;
  border-radius: 1.875rem 1.875rem 0 0;
  overflow: hidden;
}
@media (max-width: 840px) {
  section.p-plan .p-grade-wrapper dl {
    font-size: 12px;
  }
}
section.p-plan .p-grade-wrapper dl:nth-of-type(2) {
  border: 5px solid #F1FFA8;
  top: -5px;
  position: relative;
}
section.p-plan .p-grade-wrapper dl:nth-of-type(2) dt {
  background: var(--c-grade-08);
}
section.p-plan .p-grade-wrapper dl dt {
  background-color: #717374;
  color: #fff;
  text-align: center;
  padding: 0.625rem;
  font-size: 200%;
}
section.p-plan .p-grade-wrapper dl dt span {
  display: block;
  font-size: 50%;
}
section.p-plan .p-grade-wrapper dl dd {
  background: #fff;
  padding: 0.625rem 0.625rem;
  min-height: 22.5rem;
}
@media (max-width: 840px) {
  section.p-plan .p-grade-wrapper dl dd {
    min-height: 18.75rem;
  }
}
section.p-plan .p-grade-wrapper dl dd span {
  background-color: #F7FFA6;
  margin: 0.625rem 0.125rem 0.3125rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.625rem;
  display: block;
}
section.p-plan .p-grade-wrapper dl dd strong {
  display: block;
  font-weight: bold;
}

section.p-voice {
  padding: 0;
}
section.p-voice .p-voice-item {
  padding-bottom: 7.5rem;
  margin-bottom: -1.25rem;
  background: url(../images/bg-voice1.svg) no-repeat bottom center/contain;
}
@media (max-width: 840px) {
  section.p-voice .p-voice-item {
    padding-bottom: 4vw;
    margin-bottom: -2vw;
  }
}
section.p-voice .p-voice-item:nth-of-type(2) {
  background: url(../images/bg-voice2.svg) no-repeat bottom center/contain;
}
section.p-voice .p-voice-item:nth-of-type(3) {
  background: url(../images/bg-voice3.svg) no-repeat bottom center/contain;
}
section.p-voice > h2 span {
  display: block;
}
section.p-voice .p-voice-item-head {
  padding: 0 0 0.625rem;
  font-weight: bold;
  text-align: left;
  max-width: var(--pc-max-width3);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 840px) {
  section.p-voice .p-voice-item-head {
    padding: 1.875rem 1.25rem 0.625rem;
  }
}
section.p-voice .p-voice-item-contents {
  max-width: var(--pc-max-width3);
  margin-left: auto;
  margin-right: auto;
  padding: 1.875rem 0 6.25rem;
  position: relative;
}
@media (max-width: 840px) {
  section.p-voice .p-voice-item-contents {
    padding: 1.875rem 1.25rem 3.125rem;
  }
}
section.p-voice .p-voice-item-contents h3 {
  background: var(--c-grade-05);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  text-align: center;
  font-family: var(--f-family-en);
  font-weight: 700;
  right: 1.25rem;
  top: -1.875rem;
}
section.p-voice .p-voice-item-contents span {
  background-color: #FBFFA6;
  padding: 0.1875rem;
  font-weight: 600;
}
section.p-voice .p-voice-item-contents img {
  margin-bottom: 1.25rem;
}
section.p-voice .p-voice-item-contents p {
  line-height: 2.5;
}

section.p-faq {
  max-width: var(--pc-max-width2);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
@media (max-width: 840px) {
  section.p-faq {
    padding: 0 1.25rem;
    width: 96%;
  }
}
section.p-faq h2 {
  display: inline-block;
  border-bottom: 4px solid #D6EDFF;
  padding: 2.5rem 0 0.3125rem;
}
@media (max-width: 840px) {
  section.p-faq h2 {
    width: 60%;
  }
}
section.p-faq .p-faq-box {
  margin-top: 0;
  padding: 2.5rem 0;
}
section.p-faq .p-faq-box .p-faq-item {
  margin-bottom: 2.5rem;
  position: relative;
  line-height: 1.5;
}
section.p-faq .p-faq-box .p-faq-item:last-of-type {
  margin-bottom: 0;
}
section.p-faq .p-faq-box .p-faq-item:last-of-type .p-faq_a__item {
  margin-bottom: 0;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_f__item {
  align-items: flex-start;
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
  display: flex;
  font-weight: 600;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_f__item:before {
  content: "Q";
  font-family: var(--f-family-en);
  font-weight: 400;
  color: #fff;
  background: var(--c-grade-06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item {
  transition: var(--t-all1);
  margin-bottom: 2.5rem;
  text-align: left;
  display: flex;
  align-items: flex-start;
  position: relative;
  line-height: 1.8;
}
@media (max-width: 840px) {
  section.p-faq .p-faq-box .p-faq-item .p-faq_a__item {
    margin-bottom: 0;
  }
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item:before {
  content: "A";
  color: #fff;
  font-family: var(--f-family-en);
  margin-right: 0.625rem;
  background: var(--c-grade-07);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  font-weight: 400;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item a {
  position: relative;
  z-index: 10;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item a:hover {
  text-decoration: underline;
}

section.p-contact {
  width: 100%;
}
@media (max-width: 840px) {
  section.p-contact {
    padding: 1.25rem;
  }
}
@media (max-width: 840px) {
  section.p-contact h2 {
    width: 90%;
  }
}
section.p-contact h2 strong {
  color: #0290FF;
  display: block;
}
section.p-contact p {
  max-width: 43.75rem;
  margin: 1.25rem auto;
  font-size: var(--f-font3-size);
}
section.p-contact iframe {
  width: 700px;
  height: 800px;
}
@media (max-width: 840px) {
  section.p-contact iframe {
    width: 100%;
  }
}

.u-pc-hidden {
  display: none !important;
}
@media (max-width: 840px) {
  .u-pc-hidden {
    display: block !important;
  }
}

.u-sm-hidden {
  display: none;
}
@media (max-width: 450px) {
  .u-sm-hidden {
    display: initial;
  }
}

.u-xl-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .u-xl-hidden {
    display: initial;
  }
}

.u-sp-hidden {
  display: initial;
}
@media (max-width: 840px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-space-contact {
  margin-top: 7.5rem;
}
@media (max-width: 840px) {
  .u-space-contact {
    margin-top: 10rem;
  }
}/*# sourceMappingURL=style.css.map */