@charset "UTF-8";
/*==========================================
color
===========================================*/
.c-bg--key {
  background-color: #181f32;
}

.c-bg--accent {
  background-color: #fcce75;
}

.c-bg--black {
  background-color: #1b1b1b;
}

.c-bg--white {
  background-color: white;
}

.c-bg--gray {
  background-color: #f0f0f0;
}

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

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif, "Lucida Grande",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo,
    Helvetica, Verdana, Arial, Helvetica;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  /*overflow-x: hidden;*/
  overflow-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #eee;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #eee;
}

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  margin: 0 auto;
  height: auto;
  padding: 2.5rem 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 5px;
  background: #55a2bf;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.4444444444;
  text-align: center;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  position: relative;
  outline: none;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  /*&:after {
    content: " ";
    display: block;
    background: rgb(254, 194, 0);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s;
    border-radius: 5px;
  }*/
}
@media screen and (min-width: 768px) {
  .c-btn {
    background: #6497d9;
    width: 100%;
    height: 10rem;
    padding: 5rem 3rem;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1428571429;
  }
}
.c-btn__inner {
  position: relative;
  z-index: 10;
}
.c-btn:not(:disabled) {
  cursor: pointer;
}
.c-btn:hover,
.c-btn:focus {
  transform: translateY(10px);
  outline: none;
  box-shadow: none;
}
.c-btn:hover:after,
.c-btn:focus:after {
  opacity: 0;
}

.p-hero__anchor-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  margin-top: 3rem;
}

.c-btn__wrap {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-btn__wrap {
    width: 100%;
    max-width: 750px;
    max-height: 130px;
    margin: 0 auto;
  }
}

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn2 {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin: 0 auto;
  height: auto;
  padding: 2.5rem 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: linear-gradient(180deg, #94b8e6 0%, #6497d9 100%);
  box-shadow: 0px 11px 20px 1px rgba(5, 30, 64, 0.28);
  border-radius: 53px;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.125;
  text-align: center;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  position: relative;
  outline: none;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .c-btn2 {
    width: 100%;
    padding: 3.5rem 2rem;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.0714285714;
  }
}
.c-btn2:after {
  content: " ";
  display: block;
  background: linear-gradient(180deg, #94b8e6 0%, #6497d9 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
  border-radius: 53px;
}
.c-btn2__inner {
  position: relative;
  z-index: 10;
}
.c-btn2:not(:disabled) {
  cursor: pointer;
}
.c-btn2:hover,
.c-btn2:focus {
  transform: translateY(-5px);
  outline: none;
}
.c-btn2:hover:after,
.c-btn2:focus:after {
  opacity: 0;
}

.p-hero__anchor-wrap2 {
  width: 100%;
  margin: 0 auto;
  margin-top: 2rem;
}

.p-hero__floating-wrap2 {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__floating-wrap2 {
    padding: 1rem;
  }
}

.c-btn__wrap2 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-btn__wrap2 {
    width: 100%;
    max-width: 560px;
    max-height: 130px;
    margin: 2rem auto;
  }
}

/*==========================================
title
===========================================*/
.c-heading {
  font-size: 6vw;
  font-weight: 600;
  line-height: 1.6666666667;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif, "Lucida Grande",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo,
    Helvetica, Verdana, Arial, Helvetica;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 3rem;
  font-family: YakuHanMP, YakuHanMP, "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.8571428571;
    margin-bottom: 5rem;
    letter-spacing: 0.5rem;
  }
}
.c-heading .large {
  font-size: 6.6666666667vw;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-heading .large {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.c-heading .small {
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-heading .small {
    font-size: 3rem;
    font-weight: 500;
    line-height: 2;
  }
}

/*********** line_pop ***********/
.c-title-linePop {
  text-align: center;
}
.c-title-linePop__inner {
  text-align: center;
  padding: 1.3333333333vw 6.6666666667vw;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-title-linePop__inner {
    padding: 1rem 6rem;
  }
}
.c-title-linePop__inner:after,
.c-title-linePop__inner:before {
  content: "";
  display: block;
  width: 2px;
  height: 80%;
  border-radius: 50px;
  background: #fcce75;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-title-linePop__inner:after,
  .c-title-linePop__inner:before {
    width: 2px;
    height: 90%;
    bottom: -5%;
  }
}
.c-title-linePop__inner:after {
  transform: rotate(-35deg);
  left: 0;
}
.c-title-linePop__inner:before {
  transform: rotate(35deg);
  right: 0;
}

.c-title-sideBar {
  width: 100%;
  margin: 0 auto 4rem;
  position: relative;
  text-align: center;
  background: #f0f3f5;
  padding: 3rem;
}
@media screen and (min-width: 768px) {
  .c-title-sideBar {
    padding: 6rem;
    margin-bottom: 6rem;
  }
}
.c-title-sideBar:after {
  content: " ";
  display: block;
  background: #181f32;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-title-sideBar:after {
    height: 6px;
  }
}
.c-title-sideBar__inner {
  width: 40vw;
  display: inline-block;
  background: #f0f3f5;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-title-sideBar__inner {
    width: 360px;
  }
}

.c-title-upDownLine,
.c-title-upDownLine--light {
  text-align: center;
  border-top: 3px solid #181f32;
  border-bottom: 3px solid #181f32;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .c-title-upDownLine,
  .c-title-upDownLine--light {
    padding: 4rem 2rem;
    margin-bottom: 7rem;
  }
}

.c-title-upDownLine--light {
  border-top: 3px solid #f0f0f0;
  border-bottom: 3px solid #f0f0f0;
}

.p-profile__texts {
  font-size: 1vw;
  color: #fff;
  font-weight: normal;
}

/*==========================================
setting
===========================================*/
/*==========================================
layout
===========================================*/
.l-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.l-inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  height: inherit;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .l-inner {
    padding: 0;
  }
}
.l-inner--narrow {
  max-width: 900px;
}
.l-inner--middle {
  max-width: 1060px;
}
.l-inner--wide {
  max-width: 1200px;
}
.l-inner--full {
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
  max-width: 100%;
}

/*==========================================
hero
===========================================*/
.p-hero {
  position: relative;
  padding-top: 6.6666666667vw;
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}
.p-hero__bg {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-hero__bg {
    width: 70%;
    left: -50%;
    right: -50%;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__bg {
    width: 1980px;
  }
}
.p-hero__bg img {
  width: 110%;
  height: 100%;
  max-width: inherit;
}
@media screen and (min-width: 768px) {
  .p-hero__bg img {
    max-width: inherit;
    height: auto;
  }
}
.p-hero__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.p-hero__body {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__body {
    flex-direction: row-reverse;
    grid-gap: 10%;
  }
}
.p-hero__book {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__book {
    width: 35%;
    margin: 0;
    padding-top: 7rem;
  }
}
.p-hero__book img {
  box-shadow: 24px 25px 63.08px 12.92px rgba(27, 48, 62, 0.42);
}
.p-hero__heading {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero__heading {
    width: 55%;
  }
}
.p-hero__catch {
  width: 100%;
  margin-bottom: 2rem;
  font-size: 6.1333333333vw;
  font-weight: 600;
  line-height: 1.347826087;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    margin-bottom: 4rem;
    font-size: 3.7rem;
    font-weight: 600;
    line-height: 1.4054054054;
  }
}
.p-hero__catch .large {
  font-size: 10vw;
  font-weight: 600;
  line-height: 1.1333333333;
}
@media screen and (min-width: 768px) {
  .p-hero__catch .large {
    font-size: 6.5rem;
    font-weight: 600;
    line-height: 1.1538461538;
  }
}
.p-hero__title {
  width: 100%;
  font-size: 16vw;
  font-weight: 700;
  line-height: 1.0833333333;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  padding: 6.6666666667vw 2.6666666667vw;
  border-top: 4px solid #181f32;
  border-bottom: 4px solid #181f32;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    padding: 4rem 1rem;
    font-size: 12rem;
    font-weight: 700;
    line-height: 1.0833333333;
  }
}
.p-hero__title .thin {
  font-weight: 500;
}
.p-hero__title-sub {
  width: 100%;
  font-size: 5.6vw;
  font-weight: 700;
  line-height: 1.4761904762;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero__title-sub {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.625;
    margin-bottom: 2rem;
  }
}

/*==========================================
flowting-banner
===========================================*/
.p-floating-banner {
  width: 100%;
  position: fixed;
  z-index: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.65s;
  background: rgba(255, 255, 255, 0.7);
}
.p-floating-banner.isActive {
  opacity: 1;
  transition: all 0.65s;
  z-index: 500;
}

.c-btn-floating {
  width: 90%;
  margin: 0 auto;
  border-radius: 100vh;
  padding: 6.6666666667vw 2.6666666667vw;
  background: rgb(0, 170, 255);
  background: linear-gradient(
    180deg,
    rgb(0, 170, 255) 0%,
    rgb(2, 113, 205) 100%
  );
  box-shadow: none;
  color: white;
  border: 3px solid white;
  font-size: 5.3333333333vw;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .c-btn-floating {
    width: 100%;
    max-width: 550px;
    padding: 2rem 3rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3333333333;
  }
}
.c-btn-floating:hover {
  /*opacity: 0.7;*/
}

/* footer.scss */
.l-footer {
  background: #0b0f18;
  position: relative;
  z-index: 20;
}

.p-footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-footer p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  padding-bottom: 10px;
  padding: 0 10px 10px;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .p-footer p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.1428571429;
  }
}
.p-footer p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer p br {
    display: inline;
  }
}
.p-footer p.p-footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: white;
}
@media screen and (min-width: 768px) {
  .p-footer p.p-footer__copyright {
    margin-top: 2rem;
  }
}
.p-footer__logo {
  width: 70%;
  margin: 0 auto 1rem;
  text-align: center;
  padding: 2rem 0;
}
.p-footer__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    flex-direction: row;
    justify-content: center;
    width: 700px;
    margin: 0 auto;
  }
}
.p-footer__nav li {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  padding-bottom: 1rem;
}
.p-footer__nav li a {
  display: block;
  /*border: 1px solid white;*/
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: white;
  width: 100%;
  text-decoration: none;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li a {
    border: none;
    /*border-left: 1px solid white;
    border-right: 1px solid white;*/
    padding: 0.5rem 3rem;
    border-right: none;
  }
}
.p-footer__nav li a:hover {
  color: white;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li:last-child a {
    /*border-right: 1px solid white;*/
  }
}

/*==========================================
Utility
===========================================*/
/*==========================================
hidden
===========================================*/
.u-hidden-pc {
  display: inline;
}
@media screen and (min-width: 1060px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-tab {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-hidden-tab {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: inline;
  }
}

/*==========================================
movie
===========================================*/
.c-movie__wrap {
  background: #6497d9;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .c-movie__wrap {
    padding: 10px;
  }
}

.c-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: none;
  z-index: 50;
}
@media screen and (min-width: 480px) {
  .c-movie {
    padding-top: 56.25%;
  }
}
.c-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*==========================================
flexbox
===========================================*/
@media screen and (min-width: 768px) {
  .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-overflow {
  overflow: hidden;
}

.u-clear {
  overflow: hidden;
}

/*==========================================
text
===========================================*/
.number {
  font-family: "Roboto", sans-serif;
  font-size: 110%;
}

.u-red {
  color: #ed3239;
}

.u-blue {
  color: #093483;
}

.u-pink {
  color: pink;
}

.u-black {
  color: black;
}

.u-white {
  color: white;
}

.u-yellow {
  color: #e8d77c;
}

.u-bold {
  font-weight: 700;
}
.u-bold--s {
  font-weight: 500;
}
.u-bold--l {
  font-weight: 900;
}

.u-marker--red {
  background: linear-gradient(transparent 80%, rgba(196, 0, 75, 0.28) 80%);
}
.u-marker--yellow {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}
.u-marker--blue {
  background: linear-gradient(transparent 80%, rgba(0, 78, 255, 0.25) 80%);
}

.u-center,
p.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: right;
}

.u-font--s01 {
  font-size: 90%;
}
.u-font--s02 {
  font-size: 80%;
}
.u-font--s03 {
  font-size: 70%;
}
.u-font--l01 {
  font-size: 110%;
}
.u-font--l02 {
  font-size: 120%;
}
.u-font--l03 {
  font-size: 130%;
}

.u-underline {
  border-bottom: 1px solid #000;
}
.u-underline--red {
  border-bottom: 1px solid red;
}

.u-text-left {
  text-align: left;
}

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

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align-last: justify;
  text-justify: inter-character;
}

.u-japanease {
  overflow: hidden;
  writing-mode: vertical-rl;
}

.u-word-break {
  word-break: break-all;
}

.u-white-space {
  white-space: nowrap;
}

.u-marker--yellow {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 72, 0.8) 60%,
    rgba(255, 255, 72, 0.8) 60%,
    rgba(255, 255, 72, 0.8) 100%
  );
}

/*==========================================
setting
===========================================*/
/*==========================================
letter
===========================================*/
.c-letter {
  position: relative;
  overflow: hidden;
}
.c-letter p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
}
@media screen and (min-width: 768px) {
  .c-letter p {
    margin-bottom: 3rem;
  }
}
.c-letter__inner {
  padding: 0;
}
.c-letter__body {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-letter__body {
    padding-bottom: 4rem;
  }
}
/*********** c-list ***********/
.c-list__wrap {
  width: 100%;
  background: #f0f0f0;
  padding: 2.6666666667vw;
  padding-left: 6.6666666667vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-list__wrap {
    width: 70%;
    padding: 2rem;
    padding-left: 5rem;
    margin-bottom: 3rem;
  }
}
.c-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0.1rem;
  text-align: left;
  color: #181f32;
}
@media screen and (min-width: 768px) {
  .c-list li {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8888888889;
  }
}
.c-list li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  display: inline-block;
  background: #181f32;
  position: absolute;
  left: 0;
  top: calc((5.8666666667vw - 7px) / 2);
}
@media screen and (min-width: 768px) {
  .c-list li:before {
    top: 13.5px;
  }
}

.c-list-s li {
  position: relative;
  padding-left: 2rem;
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0.1rem;
  text-align: left;
  color: #181f32;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-list-s li {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.625;
    margin-bottom: 1rem;
  }
}
.c-list-s li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  display: inline-block;
  background: #181f32;
  position: absolute;
  left: 0;
  top: calc((5.8666666667vw - 7px) / 2);
}
@media screen and (min-width: 768px) {
  .c-list-s li:before {
    top: 9.5px;
  }
}

.p-ending {
  padding-top: 6.6666666667vw;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-ending {
    padding-top: 8rem;
    padding-bottom: 15rem;
  }
}
.p-ending__label p {
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 3rem;
  font-family: YakuHanMP, YakuHanMP, "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-ending__label p {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3333333333;
    margin-bottom: 5rem;
    letter-spacing: 0.5rem;
  }
}
.p-ending__thumbnails {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-ending__thumbnails {
    flex-direction: row;
    grid-gap: 4rem;
  }
}
.p-ending__list-img {
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-ending__list-img {
    margin-bottom: 3rem;
  }
}

.u-pd-tp01 {
  padding-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .u-pd-tp01 {
    padding-top: 10rem;
  }
}

.c-bg {
  position: absolute;
  bottom: 0;
  right: 0;
}

.u-gray {
  color: #f0f0f0;
}

.c-bg--line {
  position: relative;
}
.c-bg--line:before,
.c-bg--line:after {
  content: " ";
  display: block;
  background: #2e3340;
  width: 2px;
  height: calc(100% + 30rem);
  position: absolute;
  top: -15rem;
  margin: auto;
}
.c-bg--line:before {
  left: 0;
}
.c-bg--line:after {
  right: 0;
}

/*==========================================
profile
===========================================*/
.p-profile {
  padding-top: 13.3333333333vw;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding-top: 13rem;
    padding-bottom: 15rem;
  }
}
.p-profile .en-large {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(90deg);
  transform-origin: left top;
  color: rgba(220, 220, 220, 0.2);
  margin-top: 1.5rem;
  font-size: 12vw;
  font-weight: 400;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (min-width: 768px) {
  .p-profile .en-large {
    font-size: 10rem;
    font-weight: 400;
    line-height: 1;
  }
}
.p-profile__heading {
  margin-bottom: 0;
  text-align: left;
}
.p-profile__heading .en {
  display: block;
  margin-top: 1rem;
  font-size: 8vw;
  font-weight: 400;
  line-height: 1;
  color: rgba(220, 220, 220, 0.2);
  font-family: "Cormorant Garamond", serif;
}
@media screen and (min-width: 768px) {
  .p-profile__heading .en {
    margin-top: 1.5rem;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
  }
}
.p-profile__wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-profile__wrap {
    grid-gap: 4rem;
    flex-direction: row;
  }
}
.p-profile__thumb-aiba {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__thumb-aiba {
    width: 52%;
    margin-bottom: 3rem;
  }
}
.p-profile__thumb-aiba img {
  width: 100%;
}
.p-profile__work {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-profile__work {
    width: 52%;
  }
}

.p-profile__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-profile__body {
    width: 50%;
  }
}
.p-profile__body p {
  color: white;
}
.p-profile__thumb {
  margin-bottom: 3rem;
}

/*==========================================
font
===========================================*/
.font120 {
  font-size: 120%;
}
.red,
p.red {
  color: #d60000;
}
.bold,
p.bold {
  font-weight: 700;
}
.fontU,
p.fontU {
  border-bottom: 1px solid #333;
}
.line {
  text-decoration: line-through;
}
.fontS,
p.fontS {
  font-size: 1rem;
}
.marker {
  background: linear-gradient(transparent 72%, rgba(100, 151, 217, 0.7) 60%);
}

.dashed {
  border-bottom: dashed 2px var(--yellow);
}
.txtC,
p.txtC {
  text-align: center;
}
.txtR,
p.txtR {
  text-align: right;
}

/*==========================================
 font-size
===========================================*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
}
h1,
h2,
h3,
h4 {
  line-height: 1.5;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
section h3 {
  font-size: 1.8rem;
}
.wrap p {
  text-align: left;
  padding: 0 0 20px;
  font-size: 1.5rem;
}
.wrap p:last-child {
  padding-bottom: 0;
}
.wrap p br {
  display: none;
}
@media (min-width: 640px) {
  section h2 {
    font-size: calc(2rem + ((1vw - 6.4px) * 3.571));
  }
  section h3 {
    font-size: calc(1.8rem + ((1vw - 6.4px) * 3.571));
  }
}
@media (min-width: 768px) {
  section h2 {
    font-size: 3.6rem;
  }
  section h3 {
    font-size: 2rem;
  }
  .wrap p {
    font-size: 1.8rem;
    padding: 0 0 25px;
  }
  .wrap p br {
    display: inline;
  }
}
@media (min-width: 900px) {
  section h2 {
    font-size: 4.6rem;
  }
  section h3 {
    font-size: 2.2rem;
  }
}
li {
  text-align: left;
}
p,
li,
dt,
dl {
  line-height: 1.8;
  font-weight: normal;
}
.wrap {
  width: 90vw;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 30px;
}
@media (min-width: 481px) {
  .wrap {
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  .wrap {
    padding-top: 110px;
  }
}
.inner {
  width: 86vw;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .inner {
    padding: 60px 74px;
  }
}

/*==========================================
 ttl
===========================================*/
.ttl {
  font-weight: 400;
  font-size: 7vw;
  margin-bottom: 50px;
}
.ttl_s {
  font-size: 5vw;
}
@media (min-width: 768px) {
  .ttl {
    font-size: 4rem;
    margin-bottom: 60px;
  }
  .ttl_s {
    font-size: 5.7vw;
    font-size: 4rem;
  }
}
/*********** ttl_border ***********/
.ttl_border {
  display: block;
  padding: 0 10px 20px;
  margin-bottom: 20px;
  position: relative;
}
.ttl_border:after {
  display: block;
  content: " ";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #d9d9d9;
  z-index: 1;
}
@media (min-width: 768px) {
  .ttl_border {
    max-width: 750px;
    margin: 0 auto 10px;
  }
  .ttl_border:after {
    width: 100%;
  }
}
.ttl_sub {
  font-size: 2rem;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
}
@media (min-width: 768px) {
  .ttl_sub {
    font-size: 3.2rem;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 300;
  }
}
/*********** ttl_double ***********/
.ttl_double {
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto;
}

.ttl_double:after {
  right: -15%;
}
.ttl_double:before {
  left: -15%;
}

/*********** br ***********/
br.pcbr {
  display: none;
}
@media (min-width: 768px) {
  br.spbr {
    display: none;
  }
  br.pcbr {
    display: inline;
  }
}
@media (min-width: 900px) {
  br.tbbr {
    display: none;
  }
}
/*==========================================
about
===========================================*/
.about {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .about {
    padding-bottom: 60px;
  }
}
.check_list_wrap {
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  box-shadow: 0px 0px 40.94px 5.06px rgba(13, 49, 77, 0.24);
  padding: 2rem;
}
.check_list li {
  position: relative;
  padding: 0 0 0 3.5rem;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 400;
}
.check_list li .marker {
  font-weight: 500;
}
.check_list li br {
  display: none;
}
@media (min-width: 768px) {
  .check_list_wrap {
    padding: 40px;
  }
  .check_list li {
    font-size: 2.5rem;
    padding: 0 0 0 2.4em;
    margin-bottom: 20px;
  }
  .arrow_icon {
    text-align: center;
    padding: 40px;
  }
}
@media (min-width: 900px) {
  .check_list_wrap {
    padding: 70px;
  }
  .check_list li {
    font-size: 2.8rem;
  }
  .check_list li br {
    display: inline;
  }
}
/*********** about_list icon ***********/

@media (min-width: 768px) {
  .check_list li:before {
    top: 0.2em;
    left: 0;
    width: 45px;
    height: 46px;
  }
}
.can_do p {
  text-align: center;
}
.can_do {
  padding: 30px 30px 60px;
}
@media (min-width: 768px) {
  .can_do {
    padding: 60px 30px 100px;
  }
  .can_do p {
    font-size: 2rem;
  }
}
/*********** about answer ***********/
.why_pop {
  text-align: center;
}
.answer {
  position: relative;
}
.about_qa_block_wrap {
  width: 85%;
  margin: 0 auto;
}
.about_qa_block {
  padding-bottom: 30px;
}
.answer_arrow {
  width: 60%;
  position: absolute;
  left: -40px;
  top: 20px;
}
.answer_arrow_r {
  left: inherit;
  right: -40px;
}
.answer_box {
  box-shadow: 0px 0px 40.94px 5.06px rgba(13, 49, 77, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.answer_box p {
  display: inline-block;
  text-align: left;
  padding: 0 0 20px;
  font-size: 1.5rem;
}
.answer_box_inner {
  padding: 70px 20px 20px;
}
@media (min-width: 480px) {
  .answer_arrow {
    width: auto;
  }
}
@media (min-width: 768px) {
  .answer_arrow {
    top: 50px;
  }
}
@media (min-width: 900px) {
  .about_qa_block_wrap {
    width: 95%;
    margin: 0 auto;
  }
  .about_qa_block {
    display: flex;
    padding-bottom: 100px;
  }
  .about_qa_block_reverse {
    flex-direction: row-reverse;
  }
  .why_pop {
    width: 44.89795918367347%;
    padding-right: 7.558578987150416%;
  }
  .about_qa_block_reverse .why_pop {
    text-align: right;
    padding-right: 0;
    padding-left: 7.558578987150416%;
  }
  .answer {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  .answer_box {
    padding: 70px 40px 30px;
  }
  .answer_box p {
    font-size: 2rem;
    padding: 0 0 25px;
  }
}
@media (min-width: 1300px) {
  .about_qa_block_wrap {
    width: 1300px;
    margin: 0 auto;
  }
  .about_qa_block {
    position: relative;
    right: -65px;
  }
  .about_qa_block_reverse {
    position: relative;
    right: inherit;
    left: -35px;
    flex-direction: row-reverse;
  }
  .answer_box {
    padding: 100px 40px 80px;
  }
  .answer_arrow {
    position: absolute;
    left: -40px;
    top: 60px;
  }
  .answer_arrow_r {
    left: inherit;
    right: -40px;
  }
}
/*==========================================
chart
===========================================*/
.chart {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .chart {
    padding-bottom: 110px;
  }
}
/*********** chart_box ***********/
.chart_box_wrap {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.chart_box {
  display: block;
  margin-bottom: 30px;
}
.chart_thumb {
  width: 100%;
  border: 2px solid var(--yellow);
  border-radius: 6px;
  padding: 1em;
  text-align: center;
}
.chart_box_label {
  display: block;
  padding: 15px 0 15px 20px;
  margin-left: 15px;
  border-left: 4px solid var(--darkocher);
  color: var(--darkocher);
}
@media (min-width: 768px) {
  .chart_box_wrap {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
  }
  .chart_box {
    width: 49%;
  }
  .chart_thumb {
    padding: 35px;
  }
  .chart_box_label {
    padding: 20px 0 15px 25px;
    font-size: 1.9rem;
  }
}
.box_border {
  border-left: 6px solid var(--darkocher);
}
.box_border {
  box-shadow: 0px 0px 40.94px 5.06px rgba(13, 49, 77, 0.24);
}

/*==========================================
user
===========================================*/
.p-user {
  padding-top: 13.3333333333vw;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-user {
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}
.p-user__wrap {
  width: 90%;
  margin-inline: auto;
  grid-area: book;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 29.3333333333vw 0;
  margin-block-start: 26.6666666667vw;
  margin-block-end: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-user__wrap {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 3rem;
    margin-block-start: 8rem;
    margin-block-end: 8rem;
  }
}
.p-user__block {
  position: relative;
  width: 100%;
  background: #f5f8ff;
  border-radius: 10px;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 6.6666666667vw;
  padding-inline: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-user__block {
    padding-block-start: 6rem;
    padding-block-end: 3rem;
    padding-inline: 4rem;
  }
}
.p-user__block:after {
  content: " ";
  display: block;
  background: #83afbb;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transform: rotate(-6deg);
  border-radius: 10px;
}
.p-user__block:nth-child(2):after,
.p-user__block:nth-child(3):after {
  background: #dd8383;
}
.p-user__thumb {
  grid-area: thumb;
  position: relative;
}
.p-user__thumb img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -33.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-user__thumb img {
    top: -140px;
  }
}
.p-user__body {
  grid-area: body;
  border-radius: 10px;
}
.p-user__body p {
  font-size: 4.1333333333vw;
  font-weight: 700;
  line-height: 1.6129032258;
  margin-block-end: 0;
}
@media screen and (min-width: 768px) {
  .p-user__body p {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}

/*==========================================
cta
===========================================*/
.c-cta {
  position: relative;
  z-index: 30;
  padding-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding-block-start: 3rem;
  }
}
.c-cta02 {
  padding-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .c-cta02 {
    padding-block-start: 2rem;
  }
}
.c-cta__wrap {
  padding-block-end: 3rem;
}
.c-cta p {
  margin-block-end: 2.6666666667vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .c-cta p {
    margin-block-end: 1rem;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.9230769231;
  }
}
.c-cta__area {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.u-dark {
  color: #83afbb;
}

.u-newgray {
  color: #5c6579;
}
/*********** line_pop ***********/
.c-title-linePopImg {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 4% auto 4%;
  column-gap: 2.6666666667vw;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg {
    grid-template-columns: 2rem auto 2rem;
    column-gap: 20px;
  }
}

.c-title-linePopImg:before {
  position: relative;
  left: -7px;
}
.c-title-linePopImg:after {
  justify-self: end;
  transform: scale(-1, 1);
}
.c-title-linePop,
.c-title-linePop--cta {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 0 4vw;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .c-title-linePop,
  .c-title-linePop--cta {
    font-family: "M PLUS 1p", sans-serif;
    grid-gap: 2rem;
  }
}
.c-title-linePop:before,
.c-title-linePop:after,
.c-title-linePop--cta:before,
.c-title-linePop--cta:after {
  content: "";
  display: block;
  position: relative;
  background: #6497d9;
  width: 3px;
  height: 80%;
}
@media screen and (min-width: 768px) {
  .c-title-linePop:before,
  .c-title-linePop:after,
  .c-title-linePop--cta:before,
  .c-title-linePop--cta:after {
    width: 4px;
    height: 100%;
    bottom: -5px;
  }
}
.c-title-linePop:before,
.c-title-linePop--cta:before {
  transform: rotate(-35deg);
  left: -10px;
}
.c-title-linePop:after,
.c-title-linePop--cta:after {
  transform: rotate(35deg);
  right: 0;
}

.c-title-linePop--cta {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-title-linePop--cta {
    font-size: 3rem;
    font-weight: 500;
    line-height: 2;
  }
}

/*==========================================
qa
===========================================*/
.p-qa {
  position: relative;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-qa {
    padding-block-start: 8rem;
    padding-block-end: 10rem;
  }
}
.p-qa__heading {
  display: block;
  margin-block-end: 2rem;
}
@media screen and (min-width: 768px) {
  .p-qa__heading {
    margin-block-end: 4rem;
  }
}
.p-qa__en {
  font-size: 8vw;
  font-weight: 700;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  color: #568ed5;
  text-align: center;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-qa__en {
    margin-block-end: revert;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.5;
  }
}

/*--------------------------
accordion
----------------------------*/
.c-accordion__container {
  position: relative;
  width: 100%;
  outline: 0;
  cursor: pointer;
  display: grid;
  grid-gap: 1rem;
  margin-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-accordion__container {
    grid-gap: 2rem;
    margin-block-start: 5rem;
  }
}
/* .c-accordion__container:after {
  content: " ";
  display: block;
  background: url(.../images/flow_arrow.png);
  background-size: contain;
  width: 6.6666666667vw;
  height: auto;
  aspect-ratio: 31/37;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5.3333333333vw;
  z-index: 10;
  transform: rotateZ(90deg);
} */
@media screen and (min-width: 768px) {
  .c-accordion__container:after {
    width: 31px;
    top: -2rem;
  }
}
.c-accordion__item {
  display: flex;
  flex-direction: column;
}
.c-accordion-q {
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  background: #dde1eb;
  transition: all 0.3s ease;
  padding-block: 4vw;
  padding-inline-start: 8.6666666667vw;
  padding-inline-end: 10.6666666667vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.4666666667;
}

.c-accordion-a {
  position: relative;
  overflow: hidden;
  transition-property: all;
  transition-timing-function: ease;
  background: #f5f8ff;
  padding-inline-start: 4vw;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .c-accordion-a {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.6470588235;
    padding-inline-start: revert;
  }
}
/* .c-accordion-a:before {
  content: "";
  width: 4vw;
  height: auto;
  aspect-ratio: 18/20;
  color: #32cc32;
  background: url(.../images/icon_a.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 5.3333333333vw;
  left: 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.375;
  z-index: 0;
} */
@media screen and (min-width: 768px) {
  .c-accordion-a:before {
    width: 18px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 0.8333333333;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    top: 1.8rem;
  }
}
.c-accordion-a p {
  margin: 0;
  padding-block: 4vw;
  padding-inline-start: 4vw;
  padding-inline-end: 4vw;
}
@media screen and (min-width: 768px) {
  .c-accordion-a p {
    padding-block-start: 1rem;
    padding-block-end: 2rem;
    padding-inline-start: 5rem;
    padding-inline-end: 3rem;
  }
}
.c-accordion__item.js-enabled > .c-accordion-a {
  visibility: hidden;
}
.c-accordion__item.is-active > .c-accordion-a {
  visibility: visible;
}
.c-accordion__item.js-enabled.is-active > .c-accordion-q {
  /* background: #32cc32; */
  /* color: white; */
}

@media screen and (min-width: 768px) {
  .c-accordion__item.js-enabled.is-active > .c-accordion-q:after {
    width: 20px;
    height: 2px;
  }
}
.c-accordion-q:focus {
  outline: 0;
}
