@charset "UTF-8";
/* ====================================================
layout
==================================================== */
.l-header {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.4s;
  position: fixed;
  background-color: #fff;
  z-index: 9999;
  width: 100%;
  top: 0;
}

/* ====================================================
project
==================================================== */
/* -----------------------------------------------
header
----------------------------------------------- */
.p-header {
  width: 100%;
  background-color: #163250;
}
.p-header__inner {
  display: flex;
  align-items: stretch;
}
.p-header__inner > .right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.p-header__logo {
  background-color: #fff;
  padding: 0.9rem 2rem;
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .p-header__logo {
    padding: 1.6rem 0;
  }
}
.p-header__logo > img {
  width: 15rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__logo > img {
    width: 10.6rem;
  }
}
.p-header__nav {
  padding: 0.8rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav.is_open {
  display: block;
  position: absolute;
  top: 8rem;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(22, 50, 80, 0.8);
}
.p-header__nav > ul {
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav > ul {
    justify-content: space-around;
  }
}
.p-header__nav > ul > li {
  margin: 0 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav > ul > li {
    margin: 0 1rem;
  }
}
.p-header__nav > ul > li > a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav > ul > li > a {
    font-size: 0.8rem;
    letter-spacing: 0;
  }
}
.p-header__btnarea {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .p-header__btnarea {
    margin-right: 5rem;
  }
}
.p-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21rem;
  text-align: center;
  border-radius: 80rem;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 0;
  margin: 0 1rem;
  min-height: 6.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__btn {
    font-size: 0.9rem;
    min-height: auto;
    width: auto;
    /* padding: 0.5rem 2rem; */
    padding: 0.5rem 1rem;
    margin: 0 0.3rem;
  }
}
.p-header__btn.line {
  border: 2px solid #fff;
  color: #fff;
  background-image: url(../img/i-line.png);
  background-size: 1.6rem;
  background-repeat: no-repeat;
  background-position: center right 1.8rem;
  padding-right: 2rem;
  line-height: 1.4;
}
.p-header__btn.line > span {
  display: inline-block;
}
@media print, screen and (max-width: 768px) {
  .p-header__btn.line {
    /* width: 2rem;
    height: 2rem;
    display: block;
    background-size: contain;
    background-position: center;
    border: none; */
    border: 1px solid #fff;
    background-position: center right 0.3rem;
  }
  .p-header__btn.line > span {
    display: none;
  }
}
.p-header__btn.line:hover {
  color: #163250;
  background-color: #fff;
}
.p-header__btn.contact {
  border: 2px solid #fff;
  background-color: #f2a143;
  color: #fff;
  line-height: 1.4;
}
@media print, screen and (max-width: 768px) {
  .p-header__btn.contact {
    border: 1px solid #fff;
  }
}
.p-header__btn.contact:hover {
  font-size: 1.8rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__btn.contact:hover {
    font-size: 0.9rem;
  }
}

.p-hamburger {
  position: absolute;
  cursor: pointer;
  width: 13rem;
  height: 13.4rem;
  top: 1.5rem;
  right: 0;
  bottom: 0%;
  z-index: 99999;
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger {
    width: 5rem;
    height: 4.5rem;
    display: block;
  }
}
.p-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0%;
  margin: auto;
  border-radius: 2px;
  background: #fff;
  width: 3rem;
  height: 2px;
}
.p-hamburger span:nth-of-type(1) {
  top: 1.2rem;
}
.p-hamburger span:nth-of-type(2) {
  top: calc(50% - 1.5px);
}
.p-hamburger span:nth-of-type(3) {
  bottom: 1.2rem;
}
.p-hamburger.is_open span {
  position: absolute;
  background: #fff;
}
.p-hamburger.is_open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(0) rotate(-135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(1) {
    top: 48%;
  }
}
.p-hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger.is_open span:nth-of-type(3) {
  top: 36%;
  transform: translateY(0) rotate(135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(3) {
    top: 28%;
  }
}

/* -----------------------------------------------
header
----------------------------------------------- */
.p-footer {
  background-color: #163250;
  color: #fff;
  padding: 3rem 0;
  font-size: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-footer {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}
.p-footer__copy {
  text-align: center;
}

.p-mv {
  background-image: url(../img/mv.jpg?20250728);
  background-size: cover;
  width: 100%;
  height: 74.4rem;
  margin-top: 8rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-mv {
    background-image: url(../img/mv-sp.jpg?20250728);
    height: 57rem;
    margin-top: 7.4rem;
  }
}
.p-mv__title {
  text-align: center;
  line-height: 1.2;
  padding-top: 16rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-mv__title {
    padding-top: 8.7rem;
  }
}
.p-mv__title em,
.p-mv__title span {
  display: inline-block;
}
.p-mv__text {
  text-align: center;
  line-height: 1.2;
  padding-top: 15rem;
  font-weight: 600;
}

.p-mv__3pr{
  text-align: center;
  padding-top:1rem;
}

.p-mv__3pr img{
  width: 25%;
  aspect-ratio: 177 / 55;
}

@media print, screen and (max-width: 768px) {
  .p-mv__text {
    padding-top: 33rem;
  }
  .p-mv__3pr{
    text-align: center;
    padding-top:0.2rem;
  }
  .p-mv__3pr img{
    width: 45%;
  }
  
}
.p-mv__btn {
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__btn {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 2rem;
  }
}

.p-about {
  padding: 5rem 0 0;
}

.p-about__message {
  position: relative;
  padding-top: 4.6rem;
  padding-bottom: 7rem;
  margin-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  .p-about .c-title{
    font-size: 2.4rem;
  }
  .p-about__message {
    margin-top: 0;
    padding-top: 3rem;
  }
}
.p-about__message figcaption {
  background-color: #fff;
  border-radius: 3rem;
  padding: 4rem 7.5rem;
  width: 80.4rem;
  z-index: 2;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-about__message figcaption {
    width: 100%;
    padding: 3rem 2rem;
  }
}
.p-about__message > figure {
  width: 56rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@media print, screen and (max-width: 768px) {
  .p-about__message > figure {
    width: 100%;
    position: static;
    margin-top: 2rem;
  }
  .p-about__message > figure.p-about__img{
    margin-top: 17rem;
  }
  
}

.p-about__btn-wrapper{
  position: relative;
}

.p-about__btn{
  background-image: url(../img/btn-ashisou-about-btn.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 25rem;
  height: 5.2rem;
  display: block;
  margin-top:2.2rem;
}

.p-about__btn:hover{
  background-image: url(../img/btn-ashisou-about-btn-hover.png);
}

.p-about__btn > span{
  opacity: 0;
}

.p-about__btn-text{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  background: #fff;
  padding: 1.6rem 2.0rem;
  border-radius: 1.0rem;
  border:2px solid #CAAA42;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .p-about__btn-text{
    font-size: 1.2rem;
  }
}

.p-feature {
  background-color: #fff;
  position: relative;
  margin-top: 13.6rem;
  margin-bottom: 10.6rem;
  padding-bottom: 12rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature {
    margin-top: 8rem;
    padding-top: 2rem;
    padding-bottom: 10rem;
  }
}
.p-feature::after {
  position: absolute;
  left: 0;
  background-image: url(../img/wave_bg-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 13.6rem;
  top: -13.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature::after {
    background-size: 100% auto;
    top: -3.6rem;
    height: 3.6rem;
  }
}
.p-feature::before {
  position: absolute;
  left: 0;
  background-image: url(../img/wave_bg-bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 10.6rem;
  bottom: -10.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature::before {
    background-size: 100% auto;
    height: 10.6rem;
    bottom: -10.6rem;
  }
}
.p-feature__title {
  text-align: center;
  line-height: 1.6;
  color: #163250;
}
.p-feature__title > span {
  display: inline-block;
}
.p-feature__title > span.main {
  font-size: 3.6rem;
  border-bottom: dashed 1px #163250;
}
@media print, screen and (max-width: 768px) {
  .p-feature__title > span.main {
    font-size: 2.2rem;
  }
}

.p-feature__box {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 4.0rem auto 0;
  background: linear-gradient(180deg, rgba(249, 211, 200, 0.7) 0%, rgba(255, 238, 212, 0.6) 100%);
  border-radius: 20px;
}

.p-feature__list {
  max-width: 526px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 15px;
}

.p-feature__item {
  position: relative;
  padding-left: 34px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.1em;
  color:#111111;
}

.p-feature__item:not(:first-child){
  margin-top: 1.4rem;
}

.p-feature__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/gold-check.svg) no-repeat center/contain;
}

.p-feature__deco-left {
  position: absolute;
  content: '';
  bottom: -92px;
  left: -125px;
  width: 229px;
  aspect-ratio: 229 / 293;
}

.p-feature__deco-right {
  position: absolute;
  content: '';
  bottom: -72px;
  right: -120px;
  width: 377px;
  aspect-ratio: 754 / 418;
}

@media print, screen and (max-width: 1024px) {
  .p-feature__item {
    padding-left: 30px;
    font-size: 20px;
  }
  .p-feature__deco-left {
    bottom: -7.2rem;
    left: -6.5rem;
    width: 20rem;
  }
  
  .p-feature__deco-right {
    bottom: -12.2rem;
    right: -3.5rem;
    width: 33rem;
  }
}

@media print, screen and (max-width: 768px) {
  .p-feature__item {
    padding-left: 2.5rem;
    font-size: 1.4rem;
  }
  .p-feature__item::before {
    width: 1.4rem;
    height: 1.4rem;
  }
  .p-feature__deco-left {
    bottom: -3.5rem;
    right: -1.5rem;
    width: 8rem;
    left: unset;
  }
  
  .p-feature__deco-right {
    bottom: -5.6rem;
    right: unset;
    width: 13rem;
    left: 0;
  }
}

/* 
.p-feature__item {
  width: 35rem;
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature__item {
    width: 100%;
    margin-top: 3rem;
  }
}
.p-feature__item > figcaption {
  background: linear-gradient(
    rgba(249, 211, 200, 0.7) 0%,
    rgba(255, 238, 212, 0.6) 100%
  );
  border-radius: 2rem;
  padding: 5rem 3rem;
  padding: 5rem 3rem 3rem;
  min-height: 35rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature__item > figcaption {
    min-height: auto;
    padding: 3rem 2rem;
  }
}
.p-feature__item > figcaption > .title {
  text-align: center;
  color: #163250;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: #fff 2px solid;
}
@media print, screen and (max-width: 768px) {
  .p-feature__item > figcaption > .title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
  }
}
.p-feature__item > figure {
  margin-top: -4rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature__item > figure {
    width: 80%;
    margin: -2rem auto 0;
  }
} */
.p-feature-effect {
  margin-top: -10rem;
}
.p-feature-effect__box {
  background-color: #fff;
  border-radius: 3rem;
  text-align: center;
  padding: 6.5rem 4rem 4rem;
  background-image: url(../img/effectbox_deco.png);
  background-size: 7rem;
  background-repeat: no-repeat;
  background-position: center top 1.7rem;
}
@media print, screen and (max-width: 768px) {
  .p-feature-effect {
    margin-top: 0;
  }
  .p-feature-effect__box {
    padding: 5rem 2rem 3rem;
    background-size: 5rem;
  }
}
.p-feature-effect__box > p {
  color: #163250;
  border-top: solid 1px #caaa42;
  border-bottom: solid 1px #caaa42;
  padding: 3rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-feature-effect__box > p {
    padding: 2rem 0;
  }
}

.p-merit {
  padding: 5rem 0 8rem;
}
.p-merit__title{
  line-height: 1;
  letter-spacing: 0;
}

@media print, screen and (max-width: 768px) {
  .p-merit {
    padding: 8rem 0 2rem;
  }
}
.p-merit__item {
  position: relative;
  padding-bottom: 4rem;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item {
    padding-bottom: 3rem;
    margin-top: 5rem;
  }
}
.p-merit__item:nth-child(2n) > figcaption {
  border: 2px solid #caaa42;
  margin-left: auto;
  margin-right: 0;
  border-radius: 8rem;
  padding: 6rem 8rem 6rem 35rem;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item:nth-child(2n) > figcaption {
    border-radius: 4rem;
    padding: 3rem 3rem;
  }
}
.p-merit__item:nth-child(2n) > figcaption::before {
  border-radius: 8.0rem;
  left: auto;
  right: 0.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item:nth-child(2n) > figcaption::before {
    border-radius: 4.0rem;
  }
}
.p-merit__item:nth-child(2n) > figure {
  right: auto;
  left: 8rem;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item:nth-child(2n) > figure {
    margin-left: 0;
    margin-right: auto;
  }
}
.p-merit__item > figcaption {
  width: 104.6rem;
  background: #fff;
  border-radius: 8rem;
  padding: 6rem 20rem 6rem 8rem;
  border: 2px solid #caaa42;
  position: relative;
  /* border-left: none; */
}
@media print, screen and (max-width: 768px) {
  .p-merit__item > figcaption {
    width: 90%;
    padding: 3rem 3rem;
    border-radius: 4rem;
  }
}
.p-merit__item > figcaption::before {
  border-radius: 8.0rem;
  content: "";
  width: calc(100% - 1.4rem);
  height: calc(100% - 0.9rem);
  border: 2px solid #caaa42;
  position: absolute;
  top: -0.4rem;
  left: 0.5rem;
  bottom: -0.4rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item > figcaption::before {
    border-radius: 4.0rem;
  }
}
.p-merit__item > figcaption > .num {
  position: absolute;
  height: 6rem;
  top: -3rem;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item > figcaption > .num {
    height: 4rem;
    top: -2.5rem;
  }
}
.p-merit__item > figcaption > .num > img {
  height: inherit;
  width: auto;
}
.p-merit__item > figure {
  width: 44.2rem;
  position: absolute;
  right: 8rem;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .p-merit__item > figure {
    width: 90%;
    position: static;
    margin-top: 2rem;
    margin-left: auto;
  }
}

.p-movie {
  padding: 2.3rem 6rem;
  background-image: url(../img/movie_bg.png);
  background-size: 100%;
  background-repeat: repeat-y;
}
@media print, screen and (max-width: 768px) {
  .p-movie {
    width: 100%;
    padding: 2rem 2rem;
  }
}
.p-movie iframe {
  width: 100%;
  height: 60rem;
}
@media print, screen and (max-width: 768px) {
  .p-movie iframe {
    height: 20rem;
  }
}

.p-curriculum {
  padding-top: 11rem;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum {
    padding-top: 8rem;
  }
}
.p-curriculum > .c-en {
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transform-origin: 44%;
  opacity: 0.7;
}
.p-curriculum__day {
  background-color: #163250;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 2.8rem;
  display: block;
  width: 23.2rem;
  margin: auto;
  border-radius: 40rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__day {
    font-size: 2rem;
    padding: 0.5rem;
  }
}
.p-curriculum__day ::before {
  border-radius: 43rem;
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid #fff;
  position: absolute;
  top: -0.4rem;
  left: -0.4rem;
  right: -0.4rem;
  bottom: -0.4rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__day ::before {
    top: -0.2rem;
    left: -0.2rem;
    right: -0.2rem;
    bottom: -0.2rem;
  }
}
.p-curriculum__day > em {
  font-size: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__day > em {
    font-size: 2.6rem;
  }
}
.p-curriculum__box {
  background-color: #fff;
  border-radius: 6rem;
  padding: 2rem 11rem;
  margin-top: 4rem;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__box {
    padding: 2rem 2rem 4rem;
    border-radius: 3rem;
    margin-top: 2rem;
  }
}
.p-curriculum__box > figure {
  width: 40rem;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__box > figure {
    width: 100%;
  }
}
.p-curriculum__box > figcaption {
  width: 50rem;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__box > figcaption {
    width: 100%;
    margin-top: 2rem;
  }
}
.p-curriculum__list {
  font-size: 2rem;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__list {
    font-size: 1.6rem;
  }
}
.p-curriculum__list > li {
  padding-left: 3rem;
  position: relative;
  border-bottom: 1px #163250 dashed;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__list > li {
    padding-left: 2rem;
  }
}
.p-curriculum__list > li::before {
  position: absolute;
  border: 1px solid #163250;
  border-radius: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  left: 0;
  top: 0.5em;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__list > li::before {
    width: 1rem;
    height: 1rem;
  }
}
.p-curriculum__item01 {
  background-color: #fffdf2;
  position: relative;
  margin-top: 8rem;
  padding: 4rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__item01 {
    margin-top: 4rem;
    padding: 2rem 0;
  }
}
.p-curriculum__item01::before {
  position: absolute;
  content: "";
  top: -8rem;
  left: 0;
  width: 100%;
  height: 8rem;
  background-image: url(../img/schedule01_bg-top.png);
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__item01::before {
    background-size: 100% auto;
    background-repeat: no-repeat;
    top: -2rem;
    height: 2rem;
  }
}
.p-curriculum__item02 {
  background-color: #fff4de;
  background-image: url(../img/schedule01_bg-bottom.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 5.8rem 0 4rem;
}
.p-curriculum__item03 {
  background-color: #ffe9c7;
  position: relative;
  margin-bottom: 7.7rem;
  background-image: url(../img/schedule02_bg-bottom.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 5.8rem 0 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__item03 {
    margin-bottom: 4rem;
  }
}
.p-curriculum__item03::before {
  position: absolute;
  content: "";
  bottom: -7.7rem;
  left: 0;
  width: 100%;
  height: 7.7rem;
  background-image: url(../img/schedule03_bg-bottom.png);
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .p-curriculum__item03::before {
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

.p-introduction {
  padding-top: 12rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction {
    padding-top: 4rem;
  }
}
.p-introduction__content {
  margin-top: -6.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__content {
    margin-top: 0;
  }
}
.p-introduction__content > figure {
  width: 50rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__content > figure {
    width: 90%;
    margin-right: auto;
  }
}
.p-introduction__content > figcaption {
  width: 62.7rem;
  margin-left: 9.5rem;
  margin-right: auto;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__content > figcaption {
    width: 100%;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.p-introduction__content > figcaption > .name {
  position: relative;
  display: inline-block;
}
.p-introduction__content > figcaption > .name > .foot {
  display: block;
  position: absolute;
  top: 0;
  right: -8rem;
  width: 6.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__content > figcaption > .name > .foot {
    width: 4rem;
    right: -4.5rem;
  }
}
.p-introduction__content > figcaption > dl {
  margin-top: 1rem;
}
.p-introduction__content > figcaption > dl > dt {
  font-size: 1.6rem;
  color: #fff;
  background-color: #163250;
  display: inline-block;
  line-height: 1;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__content > figcaption > dl > dt {
    font-size: 1.4rem;
  }
}
.p-introduction__content > figcaption > dl > dd {
  margin-top: 1rem;
  color: #f09075;
  padding-bottom: 2rem;
}
.p-introduction__content > figcaption > .line {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #caaa42;
  position: relative;
}
.p-introduction__content > figcaption > .line::after {
  width: 0.4rem;
  height: 0.4rem;
  content: "";
  background-color: #caaa42;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  display: block;
}
.p-introduction__content > figcaption > .line::before {
  width: 0.4rem;
  height: 0.4rem;
  content: "";
  background-color: #caaa42;
  border-radius: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  display: block;
}
.p-introduction > .c-en {
  z-index: -1;
  writing-mode: vertical-rl;
  right: 8rem;
}
.p-introduction__book {
  position: relative;
  padding: 3rem 7rem 3rem 7rem;
  margin: 11.5rem auto 0;
  background-color: #fff;
  background-image: url(../img/book_bg.png);
  background-size: 1.5rem;
  border-radius: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__book {
    padding: 3rem 2rem 1rem;
    border-radius: 0;
    margin: 4rem auto 0;
  }
}
.p-introduction__book__deco{
  position: absolute;
  top:4.5rem;
  left: 1.75rem;
  width: 11.0rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__book__deco {
    top:27%;
    left: calc(50% - 16.5rem);
    width: 6.5rem;
  }
}
.p-introduction__book__title {
  width: 45rem;
  margin: 0px auto 1.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__book__title {
    width: 90%;
    margin: 0 auto 2rem;
  }
}
.p-introduction__book__name {
  background-color: #f09075;
  color: #fff;
  font-size: 2rem;
  padding: 1rem 3rem;
  border-radius: 30rem;
  width: 28rem;
  margin: 2rem auto 0;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__book__name {
    font-size: 1.6rem;
  }
}
.p-introduction__book > figcaption {
  width: 59rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__book > figcaption {
    width: 100%;
  }
}
.p-introduction__book > figure {
  width: 33rem;
}
@media print, screen and (max-width: 768px) {
  .p-introduction__book > figure {
    margin: 2rem auto 2rem;
    width: 100%;
  }
}

.p-course {
  margin-top: 9rem;
}
@media print, screen and (max-width: 768px) {
  .p-course {
    margin-top: 8rem;
  }
}
.p-course__box {
  border: 3px solid #caaa42;
  border-radius: 3rem;
  margin-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  .p-course__box {
    margin-top: 6rem;
  }
}
.p-course__box > .head {
  background-color: rgba(186, 157, 53, 0.2);
  position: relative;
  padding: 9rem 10rem 6.5rem;
  border-radius: 3rem 3rem 0 0;
}
@media print, screen and (max-width: 768px) {
  .p-course__box > .head {
    padding: 4rem 2rem 2rem;
  }
}
.p-course__box > .head > .title {
  width: 71rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -4rem;
}
@media print, screen and (max-width: 768px) {
  .p-course__box > .head > .title {
    width: 100%;
    top: -3rem;
  }
}
.p-course__box > .body {
  background-color: #fff;
  border-radius: 0 0 3rem 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-course__box > .body {
    padding-bottom: 3rem;
  }
}
.p-course__box > .body > ul {
  width: 62rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .p-course__box > .body > ul {
    width: 90%;
  }
}
.p-course__box > .body > ul > li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  border-bottom: dashed #163250 1px;
  padding: 0.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-course__box > .body > ul > li {
    padding: 1rem 0;
    flex-direction: column;
  }
}
.p-course__box > .body .diploma {
  width: 50rem;
  margin: 2rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .p-course__box > .body .diploma {
    width: 90%;
  }
}

.p-read_img {
  width: 127.8rem;
  margin: 5rem auto;
}
@media print, screen and (max-width: 768px) {
  .p-read_img {
    width: 100%;
    margin: 3rem auto 8rem;
  }
}

.p-flow__item {
  margin-top: 7rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-flow__item {
    margin-top: 4rem;
  }
}
.p-flow__item:last-child::after {
  display: none;
}
.p-flow__item::after {
  position: absolute;
  bottom: -6rem;
  width: 0.2rem;
  height: 5.7rem;
  left: 6rem;
  content: "";
  background-image: url(../img/flow_line.png);
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .p-flow__item::after {
    display: none;
  }
}
.p-flow__item > figure {
  width: 12rem;
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .p-flow__item > figure {
    width: 6rem;
    margin: 0 auto 1rem;
  }
}
.p-flow__item > figcaption {
  width: 92rem;
  position: relative;
}
.p-flow__item > figcaption > .detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  width: 92rem;
  border-radius: 3rem;
  padding: 3rem 3rem;
  min-height: 16rem;
  margin-top: 2rem;
  box-shadow: 4px 4px 8px rgba(240, 144, 117, 0.4);
}
@media print, screen and (max-width: 768px) {
  .p-flow__item > figcaption > .detail {
    padding: 3rem 2rem;
    min-height: auto;
    width: 100%;
    margin-top: 1rem;
  }
}
.p-flow__item > figcaption > .detail > .marker {
  background-color: rgba(240, 144, 117, 0.4);
}
.p-flow__item > figcaption > .detail > .line {
  border-bottom: 1px solid #f09075;
}
.p-flow__btn.c-btn {
  /* position: absolute;
  right: 0;
  bottom: 0; */
  margin-top: 1rem;
  width: 32.5rem;
  height: 7rem;
}
@media print, screen and (max-width: 768px) {
  .p-flow__btn.c-btn {
    position: static;
    width: 29.5rem;
    height: 6rem;
    margin-top: 1rem;
  }
}

.p-voice {
  margin-top: 20rem;
}
.p-voice__list {
  background: linear-gradient(
    rgba(240, 144, 117, 0.3) 0%,
    rgba(242, 161, 67, 0.2) 51.56%,
    rgba(240, 144, 117, 0.3) 100%
  );
  padding: 4.8rem 8rem 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-voice {
    margin-top: 5rem;
  }
  .p-voice__list {
    padding: 3rem 2rem;
  }
}
.p-voice__list .slick-track {
  display: flex;
}
.p-voice__list .slick-slide {
  height: auto !important;
}
.p-voice__list .slick-list li {
  margin: 0 1rem;
  padding: 4.5rem 3rem 5rem;
  border-radius: 2rem;
  background-color: #fff;
  /* width: 38rem; */
}
@media print, screen and (max-width: 768px) {
  .p-voice__list .slick-list li {
    /* width: 100%; */
    padding: 2rem 2rem 3rem;
    /* margin-bottom: 2rem; */
    margin: 0 0.5rem;
  }
}
.p-voice__list .slick-list li figure {
  width: 15rem;
  margin: auto;
  margin-bottom: 3.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-voice__list .slick-list li figure {
    margin-bottom: 2rem;
    width: 10rem;
  }
}
.p-voice__list .slick-list li figcaption span {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
.p-voice__list .slick-arrow {
  height: 4rem;
  width: 4rem;
  z-index: 5;
}
.p-voice__list .slick-prev {
  left: 9rem;
  transform: translate(-50%, -50%);
}
@media print, screen and (max-width: 768px) {
  .p-voice__list .slick-prev {
    left: 2.5rem;
  }
}
.p-voice__list .slick-next {
  right: 9rem;
  transform: translate(50%, -50%);
}
@media print, screen and (max-width: 768px) {
  .p-voice__list .slick-next {
    right: 2.5rem;
  }
}
.p-voice__list .slick-prev:before,
.p-voice__list .slick-next:before {
  font-size: 4rem;
  color: #f09075;
}
.p-voice__list .slick-dots {
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media print, screen and (max-width: 768px) {
  .p-voice__list .slick-dots {
    bottom: 2rem;
  }
  .p-voice__list .slick-dots li {
    width: 1rem;
  }
}
.p-voice__list .slick-dots li button:before {
  font-size: 1.2rem;
}
@media print, screen and (max-width: 768px) {
  .p-voice__list .slick-dots li button:before {
    font-size: 1rem;
  }
}

.p-faq {
  margin-top: 8rem;
  margin-bottom: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-faq {
    margin-bottom: 2rem;
  }
}
.p-faq__item {
  position: relative;
  border-radius: 3rem;
  background: #f5efe8;
  box-shadow: 6px 6px 4px #fff;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  color: #163250;
}
@media print, screen and (max-width: 768px) {
  .p-faq__item {
    min-height: auto;
  }
}
.p-faq__item > dt {
  font-size: 2.4rem;
  padding: 0 2rem 1rem;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .p-faq__item > dt {
    font-size: 1.6rem;
    padding: 0 3.0rem 1rem 0;
  }
}
.p-faq__item > dt > em {
  font-size: 4rem;
  margin-right: 1rem;
}

.p-faq__icon {
  position: absolute;
  content: '';
  color: #173250;
  background-color: #fff;
  width: 4.6rem;
  aspect-ratio: 1 / 1;
  text-align: center;
  border-radius: 50%;
  top:2.8rem;
  right: 3.5rem;
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  background-color: #173250;
  width: 47%;
  height: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg); 
}

.js-accordion__title.is-open .p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media print, screen and (max-width: 768px) {
  .p-faq__icon {
    width: 2.6rem;
    top:2.2rem;
    right: 2.5rem;
  }
  .p-faq__icon::before,
  .p-faq__icon::after {
    height: 2px;
  }
}

@media print, screen and (max-width: 768px) {
  .p-faq__item > dt > em {
    font-size: 2rem;
    margin-right: 0.5rem;
  }
}
.p-faq__item > dd {
  display: none;
  padding: 2rem 3rem;
  border-top: 1px solid #caaa42;
}
@media print, screen and (max-width: 768px) {
  .p-faq__item > dd {
    padding: 1rem 1rem 0;
  }
}

.p-info {
  background-color: #fff;
  position: relative;
  margin-top: 13.6rem;
  margin-bottom: 10.6rem;
  padding-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .p-info {
    padding-top: 2rem;
    margin-bottom: 4rem;
    margin-top: 8rem;
  }
}
.p-info::after {
  position: absolute;
  left: 0;
  background-image: url(../img/wave_bg-top.png);
  background-size: cover;
  content: "";
  width: 100%;
  height: 13.6rem;
  top: -13.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-info::after {
    display: none;
  }
}
.p-info::before {
  position: absolute;
  left: 0;
  background-image: url(../img/wave_bg-bottom.png);
  background-size: cover;
  content: "";
  width: 100%;
  height: 10.6rem;
  bottom: -10.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-info::before {
    display: none;
  }
}
.p-info__left {
  width: 60rem;
  padding-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-info__left {
    width: 100%;
  }
}
.p-info__right {
  width: 56rem;
}
@media print, screen and (max-width: 768px) {
  .p-info__right {
    width: 100%;
  }
}
.p-info__map > iframe {
  width: 100%;
  height: 32rem;
}
.p-info__access {
  padding: 1.6rem 3.2rem;
  border: 1px dashed #163250;
  color: #163250;
  border-radius: 1rem;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-info__access {
    padding: 1.6rem 2rem;
    margin-top: 3rem;
  }
}

.p-contact {
  padding: 10rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-contact {
    padding: 2rem 0 6rem;
  }
}
.p-contact > li {
  width: 56rem;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-contact > li {
    width: 100%;
    margin-top: 4rem;
  }
}
.p-contact > li > p {
  font-size: 2.4rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-contact > li > p {
    font-size: 1.5rem;
  }
}
.p-contact > li.form > a > span {
  display: block;
  width: 5rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .p-contact > li.form > a > span {
    width: 3rem;
  }
}
.p-contact > li.tel > a > span {
  display: block;
  width: 3.7rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .p-contact > li.tel > a > span {
    width: 3rem;
  }
}
.p-contact > li > a {
  display: block;
  font-size: 2.4rem;
  text-align: center;
  border-radius: 2rem;
  background-color: #fff;
  border: 2px solid #163250;
  padding: 3rem;
  margin-top: 2rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .p-contact > li > a {
    margin-top: 1rem;
    padding: 1.5rem;
    font-size: 1.8rem;
  }
}
.p-contact > li > a:hover {
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.3);
}
.p-contact > li > a > span {
  margin-bottom: 1.7rem;
}
@media print, screen and (max-width: 768px) {
  .p-contact > li > a > span {
    margin-bottom: 1rem;
  }
}

/* ====================================================
component
==================================================== */
.c-btn {
  background-image: url(../img/btn.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 51.5rem;
  height: 10.3rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .c-btn {
    width: 33rem;
    height: 7rem;
  }
}
.c-btn > span {
  opacity: 0;
}
.c-btn:hover {
  background-image: url(../img/btn-hover.png);
  opacity: 1;
}

.c-title {
  font-size: 3.2rem;
  font-weight: 600;
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media print, screen and (max-width: 768px) {
  .c-title {
    font-size: 2.6rem;
  }
}
.c-title.entitle {
  height: 20rem;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .c-title.entitle {
    height: auto;
  }
}
.c-title.entitle .c-en {
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.c-title.entitle.center {
  padding-left: 0;
  text-align: center;
  justify-content: center;
}
.c-title.entitle.center .c-en {
  left: 0;
  right: 0;
  margin: auto;
}

.c-inner-1280 {
  width: 128rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-1280 {
    width: 100%;
  }
}
.c-inner-1060 {
  width: 106rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-1060 {
    width: 100%;
  }
}

.c-ja {
  z-index: 2;
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #163250;
}

.c-en {
  color: #fff;
  font-size: 20rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media print, screen and (max-width: 768px) {
  .c-en {
    display: none;
  }
}

.c-roundimg > img {
  border-radius: 3rem;
}

/* .c-marker {
  position: relative;
  z-index: 1;
}
.c-marker::after {
  position: absolute;
  background-color: rgba(240, 144, 117, 0.4);
  content: "";
  height: 0.4em;
  width: 100%;
  left: 0;
  bottom: -0.1em;
  z-index: -1;
} */
.c-marker {
  display: inline;
  background: linear-gradient(transparent 70%, rgba(240, 144, 117, 0.4) 0%);
}

.c-bubble {
  padding: 0 2.6rem;
  position: relative;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .c-bubble {
    font-size: 1.8rem;
    padding: 0 1.5rem;
    display: block;
  }
}
.c-bubble::before {
  background-image: url(../img/i-bubble-left.svg);
  content: "";
  background-size: cover;
  width: 1.1rem;
  height: 2.8rem;
  left: 0;
  bottom: 0.5rem;
  position: absolute;
}
@media print, screen and (max-width: 768px) {
  .c-bubble::before {
    width: 1.1rem;
    height: 1.8rem;
  }
}
.c-bubble::after {
  background-image: url(../img/i-bubble-right.svg);
  content: "";
  background-size: cover;
  width: 1.1rem;
  height: 2.8rem;
  right: 0;
  bottom: 0.5rem;
  position: absolute;
}
@media print, screen and (max-width: 768px) {
  .c-bubble::after {
    width: 1.1rem;
    height: 1.8rem;
  }
}

.c-label {
  font-size: 1.6rem;
  padding: 0.4rem 0.9rem;
  line-height: 1;
  display: inline-block;
  border-radius: 0.5rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .c-label {
    font-size: 1.3rem;
  }
}
.c-label.label-red {
  color: #f09075;
  background: rgba(240, 144, 117, 0.4);
}
.c-label.label-orange {
  color: #f2a143;
  background: rgba(242, 161, 67, 0.4);
}
.c-label.label-darkblue {
  color: #163250;
  background: rgba(22, 50, 80, 0.4);
}

.c-cta {
  background-color: #163250;
  padding: 1.7rem 0 3rem;
  border-radius: 3rem;
}
@media print, screen and (max-width: 768px) {
  .c-cta {
    border-radius: 0;
    padding: 3rem 0 3rem;
  }
}
.c-cta__detail {
  background-color: #fff;
  border-radius: 2rem;
  padding: 3rem 6rem 2rem;
  width: 80rem;
  margin: 3rem auto 1rem;
}
@media print, screen and (max-width: 768px) {
  .c-cta__detail {
    width: 90%;
    padding: 3rem 2rem 2rem;
  }
}
.c-cta__table {
  border: 3px solid #caaa42;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .c-cta__table td {
    display: block;
  }
}
.c-cta__asterisk {
  color: #fff;
  margin-top: 2rem;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .c-cta__asterisk {
    width: 90%;
    margin: 3rem auto 0;
  }
}
@media print, screen and (max-width: 768px) {
  .c-cta__btn.c-btn {
    width: 29rem;
    height: 5.5rem;
  }
}
.c-cta__text {
  color: #fff;
  margin: 2rem auto 0;
  width: 68rem;
}
@media print, screen and (max-width: 768px) {
  .c-cta__text {
    width: 90%;
  }
}

.c-ribbon-top {
  z-index: 2;
  position: absolute;
  top: -5.4rem;
  left: 0;
  width: 24rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .c-ribbon-top {
    display: none;
  }
}

.c-ribbon-bottom {
  z-index: 2;
  position: absolute;
  bottom: -3rem;
  right: 0;
  width: 18rem;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .c-ribbon-bottom {
    display: none;
  }
}

.c-contact__btn-wrap{
  display: flex;
  justify-content: space-between;
  gap:20px;
}

.c-contact__btn{
  background-image: url(../img/btn-contact.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 50%;
  aspect-ratio: 51 / 9;
  display: block;
}

.c-contact__btn:hover{
  background-image: url(../img/btn-contact-hover.png);
}

.c-contact__btn > span{
  opacity: 0;
}

.c-contact__btn.c-contact__btn-apply{
  background-image: url(../img/btn-apply.png);
}

.c-contact__btn.c-contact__btn-apply:hover{
  background-image: url(../img/btn-apply-hover.png);
}

@media print, screen and (max-width: 768px) {
  .c-contact__btn-wrap{
    flex-direction: column;
    gap:30px;
  }
  .c-contact__btn{
    width: 100%;
  }
}

.u-fl {
  display: flex;
  flex-wrap: wrap;
}
.u-fl.space-between {
  justify-content: space-between;
}
.u-fl.align-center {
  align-items: center;
}
.u-fl .od2 {
  order: 2;
}
@media print, screen and (max-width: 768px) {
  .u-fl .od2-sp {
    order: 2;
  }
}

.u-dashed {
  border-bottom: dashed 1px #163250;
}

.u-dashed-custom {
  position: relative;
  display: inline-block;
}

.u-dashed-custom::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  bottom: 0x;
  background: repeating-linear-gradient(
    to right,
    #163250,
    #163250 0px,
    #163250 10px,
    transparent 11px,
    transparent 25px
  );
}

.u-fc-white {
  color: #fff;
}

.u-fc-orange {
  color: #f2a143;
}

.u-fc-darkblue {
  color: #163250;
}

.u-fc-pink {
  color: #f09075;
}

.u-fc-coral {
  color: #df6948;
}

.u-font-yumin {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

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

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

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

@media print, screen and (max-width: 768px) {
  .u-text-left-sp {
    text-align: left;
  }

  .u-text-center-sp {
    text-align: center;
  }
}
@media print, screen and (max-width: 768px) {
  .u-height60 {
    height: 6rem;
  }

  .u-height70 {
    height: 7rem;
  }
}
.u-block {
  display: block;
}

.u-inline {
  display: inline-block;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw900 {
  font-weight: 900;
}

.u-fs13 {
  font-size: 1.3rem;
}

.u-fs16 {
  font-size: 1.6rem;
}

.u-fs18 {
  font-size: 1.8rem;
}

.u-fs20 {
  font-size: 2rem;
}

.u-fs24 {
  font-size: 2.4rem;
}

.u-fs26 {
  font-size: 2.6rem;
}

.u-fs28 {
  font-size: 2.8rem;
}

.u-fs30 {
  font-size: 3rem;
}

.u-fs36 {
  font-size: 3.6rem;
}

.u-fs38{
  font-size: 3.8rem;
}

.u-fs40 {
  font-size: 4rem;
}

.u-fs45 {
  font-size: 4.5rem;
}

.u-fs50 {
  font-size: 5rem;
}

.u-fs60 {
  font-size: 6rem;
}

.u-fs65 {
  font-size: 6.5rem;
}

.u-fs90 {
  font-size: 9rem;
}

@media print, screen and (max-width: 768px) {
  .u-fs10-sp {
    font-size: 1rem;
  }

  .u-fs11-sp {
    font-size: 1.1rem;
  }

  .u-fs12-sp {
    font-size: 1.2rem;
  }

  .u-fs13-sp {
    font-size: 1.3rem;
  }

  .u-fs14-sp {
    font-size: 1.4rem;
  }

  .u-fs15-sp {
    font-size: 1.5rem;
  }

  .u-fs16-sp {
    font-size: 1.6rem;
  }

  .u-fs18-sp {
    font-size: 1.8rem;
  }

  .u-fs20-sp {
    font-size: 2rem;
  }

  .u-fs24-sp {
    font-size: 2.4rem;
  }

  .u-fs27-sp {
    font-size: 2.7rem;
  }

  .u-fs30-sp {
    font-size: 3.0rem;
  }

  .u-fs33-sp {
    font-size: 3.3rem;
  }

  .u-fs48-sp {
    font-size: 4.8rem;
  }
}
.u-mt10 {
  margin-top: 1rem;
}

.u-mt15 {
  margin-top: 1.5rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mt120 {
  margin-top: 12rem;
}

.u-mt140 {
  margin-top: 14rem;
}

.u-mt200 {
  margin-top: 20rem;
}

.u-mlr-auto {
  margin-right: auto;
  margin-left: auto;
}

@media print, screen and (max-width: 768px) {
  .u-mt0-sp {
    margin-top: 0;
  }

  .u-mt10-sp {
    margin-top: 1rem;
  }

  .u-mt15-sp {
    margin-top: 1.5rem;
  }

  .u-mt20-sp {
    margin-top: 2rem;
  }

  .u-mt28-sp {
    margin-top: 2rem;
  }

  .u-mt30-sp {
    margin-top: 3rem;
  }

  .u-mt40-sp {
    margin-top: 4rem;
  }

  .u-mt50-sp {
    margin-top: 5rem;
  }

  .u-mt60-sp {
    margin-top: 6rem;
  }

  .u-mt120-sp {
    margin-top: 12rem;
  }

  .u-full-sp {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
.u-pl10 {
  padding-left: 1rem;
}

.u-pl20 {
  padding-left: 2rem;
}

.u-pl30 {
  padding-left: 3rem;
}

.u-pl100 {
  padding-left: 10rem;
}

.u-pb0 {
  padding-bottom: 0;
}

.u-ptb10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.u-pt30 {
  padding-top: 3rem;
}

.u-pb30 {
  padding-bottom: 3rem;
}

.u-pb40 {
  padding-bottom: 4rem;
}

@media print, screen and (max-width: 768px) {
  .u-pl0-sp {
    padding-left: 0;
  }

  .u-pl10-sp {
    padding-left: 1rem;
  }

  .u-plr20-sp {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .u-pb0-sp {
    padding-bottom: 0;
  }

  .u-pb10-sp {
    padding-bottom: 10;
  }

  /* 2023.7.28　追記 */

  .u-pl30 {
    padding-left: 1rem;
  }
}
@media print, screen and (max-width: 768px) {
  .u-w90per-sp {
    width: 90%;
  }
}
.u-textspace0 {
  letter-spacing: 0;
}

.u-textheight100 {
  letter-spacing: 0.1em;
}

.u-textheight120 {
  letter-spacing: 0.12em;
}

.u-textheight40 {
  letter-spacing: 0.04em;
}

.u-textheight60 {
  letter-spacing: 0.06em;
}

.u-mlr-auto {
  margin-right: auto;
  margin-left: auto;
}

.u-list > li {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

/* スマホ用固定フッター（2023_06_21） */
.float {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-footer {
    margin-bottom: 68px;
  }
  .float {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .float-list {
    display: flex;
  }
  .float-item {
    flex: 0 1 50%;
  }
  .float-item:nth-child(1) {
    background-color: #0dc859;
    border-right: 2px solid #fff;
  }
  .float-item:nth-child(2) {
    background-color: #f2a143;
  }
  .float-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    height: 68px;
  }
}

/* MVとCTAに特典バナー追加（2023_11_16） */
.p-mv__deco {
  position: absolute;
  top: 2.8rem;
  right: calc(50% - 52rem);
  width: 22rem;
}
@media print, screen and (max-width: 768px) {
  .p-mv__deco {
    position: absolute;
    top: 15rem;
    right: calc(50% - 18.5rem);
    width: 9rem;
  }
}
.c-cta__deco {
  margin: 2rem -3.4rem;
}
@media print, screen and (max-width: 768px) {
  .c-cta__deco {
    margin: 1rem -1.4rem;
  }
}

/* youtubeの設置（2023_12_20） */
.p-youtube {
  padding: 6.5rem 0 12rem;
}
.p-youtube .c-title {
  margin-bottom: 4rem;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .p-youtube {
    padding: 0 0 5rem;
  }
  .p-youtube .c-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* CTAエリアのリンク設定(2024_03_14) */
.c-cta p a {
  color: #f09075;
  text-decoration: underline !important;
}
