@charset "UTF-8";
/* ----------------------------------------
 * デジタルハリウッド 主婦･ママクラスページ専用CSS
 * LastUpDate: 2022.12.19
 * Ver: 1.0
 * ---------------------------------------- */
/* ========================================
 * Foundation
 * ======================================== */
/* --------------------
 * reset
 * html5doctor + border-box
 * -------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*
Added by shuu11 code
https://shuu1104.com/2021/04/2589/#toc8
*/
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

/* --------------------
 * base
 * -------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.6944444444vw;
  }
}

body {
  width: 100%;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #502020;
  background-color: #F4F2F2;
  overflow-x: hidden;
}
body.fixed {
  position: fixed; /* Prohibit scrolling when SPMENU. */
}

img {
  width: 100%;
  height: auto;
}

/* ========================================
 * Layout
 * ======================================== */
/* --------------------
 * header
 * -------------------- */
.l-header {
  width: 100%;
  height: 6.4rem;
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  display: none; /* flexs is added by JS */
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 8rem;
  }
}
@media screen and (min-width: 1441px) {
  .l-header {
    max-height: 80px;
  }
}

.p-header__logo {
  width: 8.842rem;
  height: auto;
  margin-left: 1.3rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 14.7rem;
    margin-left: 3.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-header__logo {
    width: 147px;
    margin-left: 35px;
  }
}

.p-header__btn {
  margin-right: 5rem;
}
@media screen and (min-width: 768px) {
  .p-header__btn {
    display: none;
  }
}

/*p-headerNav__gNav*/
#p-headerNav__gNav {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 0;
  background: linear-gradient(to bottom, #FE7951, #FEBCA8);
  opacity: 0;
  transition: all 0.5s;
  overflow: hidden;
}
#p-headerNav__gNav ul {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
#p-headerNav__gNav.panelactive {
  opacity: 1;
  z-index: 999;
  overflow: hidden;
}
#p-headerNav__gNav.panelactive #p-headerNav__gNavlist {
  width: 100%;
  position: fixed;
  z-index: 999;
  overflow: hidden;
}
#p-headerNav__gNav.panelactive .c-spMenu {
  display: block;
}

/*spMenu*/
.p-headerNav__spMenu {
  width: 4rem;
  height: 4rem;
  position: fixed;
  top: 1.2rem;
  right: 0;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .p-headerNav__spMenu {
    display: none;
  }
}

.p-headerNav__spMenu span {
  width: 2rem;
  height: 0.2rem;
  display: block;
  border-radius: 2px;
  background-color: #502020;
  margin-left: 0.4rem;
  transition: all 0.5s;
  position: absolute;
}
.p-headerNav__spMenu span:nth-of-type(1) {
  top: 1.2rem;
}
.p-headerNav__spMenu span:nth-of-type(2) {
  top: 1.9rem;
}
.p-headerNav__spMenu span:nth-of-type(3) {
  top: 2.6rem;
}

.p-headerNav__spMenu.active span {
  background-color: #FFF;
}
.p-headerNav__spMenu.active span:nth-of-type(1) {
  top: 1.3rem;
  left: 0;
  transform: translateY(6px) rotate(-45deg);
}
.p-headerNav__spMenu.active span:nth-of-type(2) {
  opacity: 0;
}
.p-headerNav__spMenu.active span:nth-of-type(3) {
  top: 2.5rem;
  left: 0;
  transform: translateY(-6px) rotate(45deg);
}

/*pcMenu*/
.p-header__pcMenu {
  width: 84rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-right: 9.8rem;
}
@media screen and (max-width: 767px) {
  .p-header__pcMenu {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  .p-header__pcMenu {
    width: 840px;
    margin-right: 98px;
  }
}
.p-header__pcMenu a {
  text-decoration: none;
  color: #502020;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.6rem;
  font-style: normal;
}
@media screen and (min-width: 1441px) {
  .p-header__pcMenu a {
    font-size: 16px;
  }
}
.p-header__pcMenu a:hover {
  opacity: 0.5;
  transition: 0.1s;
}

/* --------------------
 * footer
 * -------------------- */
.l-footer {
  width: 100%;
  padding: 8rem 0 2.4rem;
  background-image: url("../img/img-footerBg-sp.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-footer {
    height: 29.6rem;
    padding: 6rem 0 3.2rem;
    background-image: url("../img/img-footerBg-pc.webp");
  }
}

.p-footerInner {
  width: 100%;
}
.p-footerInner a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footerInner {
    width: 144rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-footerInner__logo {
  width: 8rem;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4.74rem;
}
@media screen and (min-width: 768px) {
  .p-footerInner__logo {
    width: 10.3rem;
    margin-right: 10.7rem;
    margin-left: 10.8rem;
    margin-bottom: 0;
  }
}
.p-footerInner__menu.c-spMenu {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-footerInner__menu.c-spMenu {
    width: 93rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 19.2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-footerInner__menu.c-spMenu li {
    border: none;
    width: 33.3333333333%;
  }
}
.p-footerInner__menu.c-spMenu li a {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-footerInner__menu.c-spMenu li a {
    font-size: 1.4rem;
    padding: 1.2rem 0;
  }
}
.p-footerInner__menu.c-spMenu li:last-of-type {
  display: block;
  padding-top: 0;
  border-bottom: rgba(255, 255, 255, 0.4) solid 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-footerInner__menu.c-spMenu li:last-of-type {
    border: none;
  }
}
.p-footerInner__menu.c-spMenu li:last-of-type a {
  padding: 2.4rem 0;
}
@media screen and (min-width: 768px) {
  .p-footerInner__menu.c-spMenu li:last-of-type a {
    padding: 1.2rem 0;
  }
}
.p-footerInner__copyright {
  width: 100%;
  display: block;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400; /*zen-kaku-gothic-new regular*/
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-footerInner__copyright {
    margin-right: 3.2rem;
  }
}

/*p-fixedPcBtn*/
.p-fixedPcBtn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-fixedPcBtn {
    width: 24rem;
    position: fixed;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: 12;
  }
  .p-fixedPcBtn a {
    width: 100%;
    display: block;
    line-height: 0;
  }
}

/* ========================================
 * Object
 * ======================================== */
/* --------------------
 * component
 * -------------------- */
.c-section {
  margin-bottom: 6.4rem;
}
@media screen and (min-width: 768px) {
  .c-section {
    margin-bottom: 8rem;
  }
}

/*decoration*/
.c-decoration {
  font-family: josefin-sans, sans-serif;
  font-weight: 300; /*josefin-sans light*/
  font-style: normal;
  font-size: 3.2rem;
  color: #E6CDB1;
  position: absolute;
}

.c-sectionTitle {
  text-align: center;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle {
    margin-bottom: 4.8rem;
  }
}
.c-sectionTitle.-alignLeft {
  text-align: left;
}
.c-sectionTitle.-alignRight {
  text-align: right;
}
.c-sectionTitle__en {
  color: #F5AA02;
  font-family: josefin-sans, sans-serif;
  font-weight: 700; /*josefin-sans bold*/
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__en {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    line-height: 1.2222222222;
  }
}
.c-sectionTitle__ja {
  color: #502020;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.3335;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__ja {
    font-size: 2.8rem;
    line-height: 1.4285714286;
  }
}

/*c-sectionBg*/
.c-sectionBg.-dot {
  background-image: url("../img/pattern-bgDot.webp");
  background-repeat: repeat;
  background-size: 1rem 1rem;
  width: 100%;
  padding: 3.8rem 0rem 6.4rem 1.5rem;
  position: relative;
  margin-top: 9.6rem;
}
@media screen and (min-width: 768px) {
  .c-sectionBg.-dot {
    padding: 8rem 0 12rem 0;
  }
}

/*c-sectionBgMt - margintop & z-index */
.c-sectionBox {
  width: 100%;
  position: relative;
  z-index: 1;
}

.c-sectionBgMt.-str {
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: 4rem 5.6rem;
  position: absolute;
  top: 3.2rem;
  z-index: -1;
  border-radius: 0 5.2rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-sectionBgMt.-str {
    top: 6.4rem;
    height: 100%;
  }
}
.c-sectionBgMt.-str.-str1 {
  background-image: url("../img/img-str1Bg.webp");
}
.c-sectionBgMt.-str.-str2 {
  background-image: url("../img/img-str2Bg.webp");
  border-radius: 5.2rem 0 0 0;
}
.c-sectionBgMt.-str.-str3 {
  background-image: url("../img/img-str3Bg.webp");
}

/*remodal*/
.remodal-overlay {
  background: rgba(67, 51, 51, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.remodal-wrapper {
  padding: 4rem 1.75rem;
}

.c-remodal {
  padding: 0 0 2.4rem 0;
  border-radius: 1.8rem;
}
@media screen and (min-width: 768px) {
  .c-remodal {
    max-width: 808px;
    padding: 0 0 5.6rem 0;
    border-radius: 2rem;
  }
}
.c-remodal .c-remodal__closeButton {
  top: 1rem;
  right: 1rem;
  left: auto;
  background: #BEBBBB;
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  color: #FFF;
}
.c-remodal .c-remodal__closeButton::before {
  content: "";
  background-image: url("../img/icon-remodalClose.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.9rem;
  height: 0.9rem;
  line-height: 0.9rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* About "c-remodalLink".
 * Do not remove the class from the HTML, 
 * since "c-remodalLink" is used in smooth scroll (script.js).
 */
/* headerSpMenu & footerSpMenu */
.c-spMenu {
  display: block;
  width: 32.5rem;
}
.c-spMenu li {
  list-style: none;
  text-align: center;
  border-top: rgba(255, 255, 255, 0.4) solid 0.1rem;
}
.c-spMenu li a {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1;
  color: #FFF;
  text-decoration: none;
  padding: 2.4rem 0;
  display: block;
  letter-spacing: 0.1em;
  text-align: left;
}
.c-spMenu li:last-of-type {
  border-bottom: rgba(255, 255, 255, 0.4) solid 0.1rem;
}

/* c-disclist */
.c-discList {
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0;
  line-height: 1.3;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.6rem;
  font-style: normal;
  margin-bottom: 3.2rem;
}
.c-discList li {
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.c-discList li::before {
  position: absolute;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #F5AA02;
  position: absolute;
  display: inline-block;
  top: 1rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-discList li::before {
    width: 0.6rem;
    height: 0.6rem;
    top: 1.5rem;
  }
}

/* ========================================
 * Project
 * ======================================== */
/* --------------------
 * mv
 * -------------------- */
/*p-mv*/
.p-mv {
  width: 100%;
  height: 69.1rem;
  position: relative;
  margin-bottom: 6.4rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 75rem;
    margin-bottom: 13rem;
  }
}
.p-mv::after {
  content: "";
  width: 100%;
  height: 69.1rem;
  background-image: url(../img/img-mvFrame-sp.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-mv::after {
    height: 52rem;
    background-image: url(../img/img-mvFrame-pc.webp);
    top: auto;
    bottom: 0;
  }
}
.p-mv__title {
  width: 32.4rem;
  height: 24.1rem;
  position: absolute;
  top: 23rem;
  right: 0.25rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    width: 70.03rem;
    height: 43.35rem;
    right: 59.28rem;
    top: 19.5rem;
  }
}
.p-mv__cta {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .p-mv__cta {
    width: 58.2rem;
    right: 10.8rem;
    bottom: -7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__cta-inner {
    width: 70%;
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    position: absolute;
    left: 50%;
    top: 30vw;
    transform: translateX(-43%);
  }
  .p-mv__cta-inner .p-mv__ctaBtn {
    position: relative;
  }
}
.p-mv__ctaBtn {
  width: 25rem;
  display: block;
  position: absolute;
  right: 4.5rem;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: clamp(1.2rem, 0.4889rem + 1.4815vw, 1.6rem);
  font-weight: bold;
  text-decoration: none;
}
.p-mv__ctaBtn .arrow {
  display: inline-block;
  width: min(5rem, 8vw);
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.p-mv__ctaBtn .arrow::before, .p-mv__ctaBtn .arrow::after {
  content: "";
  background: #fff;
  position: absolute;
}
.p-mv__ctaBtn .arrow::before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-mv__ctaBtn .arrow::after {
  width: 1.2rem;
  height: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
  transform-origin: right top;
}
@media screen and (min-width: 768px) {
  .p-mv__ctaBtn {
    width: 30rem;
    right: 10.8rem;
    padding: 1.2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__ctaBtn {
    width: 48%;
    right: 0;
    bottom: 0;
    padding: 2rem 1.5rem;
  }
  .p-mv__ctaBtn .pc {
    display: none;
  }
}
.p-mv__ctaBtn-counseling {
  bottom: 36vw;
  background: linear-gradient(90deg, #FF6D41 0%, #FE4058 100%);
  box-shadow: 0 3px 0 0 #cf4b3e;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-mv__ctaBtn-counseling {
    bottom: min(16rem, 12vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__ctaBtn-counseling {
    bottom: 0;
  }
}
.p-mv__ctaBtn-counseling:hover {
  box-shadow: 0 1px 0 0 #cf4b3e;
  transform: translateY(3px);
  transition: 0.1s ease-in;
}
.p-mv__ctaBtn-shiryo {
  bottom: 25vw;
  background: #fff;
  border: 1px solid #FF6D41;
  box-shadow: 0 3px 0 0 #ee3c08;
  color: #FF6D41;
}
@media screen and (min-width: 768px) {
  .p-mv__ctaBtn-shiryo {
    bottom: min(11rem, 8vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__ctaBtn-shiryo {
    bottom: 0;
  }
}
.p-mv__ctaBtn-shiryo .arrow::before, .p-mv__ctaBtn-shiryo .arrow::after {
  background: #FF6D41;
}
.p-mv__ctaBtn-shiryo:hover {
  box-shadow: 0 1px 0 0 #ee3c08;
  transform: translateY(3px);
  transition: 0.1s ease-in;
}

.p-mvSlider {
  width: 34.6rem;
  height: 52rem;
  margin-left: auto;
  margin-right: 0;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .p-mvSlider {
    width: 92.5%;
    height: 65rem;
  }
}
.p-mvSlider__item {
  width: 100%;
}

.announce-box {
  width: clamp(260px, 46.875vw, 500px);
  width: 65.1041666667vw;
  position: absolute;
  right: 0;
  bottom: -8vw;
  margin: 0 auto 2em;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px 0 0 5px;
  padding: 1em 4%;
  z-index: 11;
}
.announce-box p {
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: bold;
  line-height: 1.6;
}
.announce-box .link {
  display: inline-block;
  color: #FF6D41;
  font-weight: bold;
  text-decoration: underline;
  padding-left: 0.8em;
  position: relative;
  transition: 0.3s all;
}
.announce-box .link::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 50%;
  border-style: solid;
  border-top: 0.3em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.4em solid currentColor;
  border-right: 0;
  transform: translateY(-50%);
}
.announce-box .link:hover {
  opacity: 0.7;
  transition: 0.3s all;
}

@media screen and (min-width: 768px) {
  .announce-box {
    width: min(46.875vw, 600px);
    right: auto;
    left: 8%;
    bottom: 5%;
    border-radius: 10px;
    padding: 1em 3%;
  }
}
/* --------------------
 * message
 * -------------------- */
/*p-message*/
.c-sectionBox.p-messageBox {
  width: 96%;
}
@media screen and (min-width: 768px) {
  .c-sectionBox.p-messageBox {
    width: 76.6666666667%;
    margin-left: 0;
    margin-right: auto;
  }
}

.c-section.p-message {
  width: 94.4444444444%;
  height: 66.2rem;
  background-color: #FFF;
  border-radius: 0 5.2rem 5.2rem 0;
  z-index: 2;
  margin-bottom: 25rem;
}
@media screen and (min-width: 768px) {
  .c-section.p-message {
    width: 94.5652173913%;
  }
}

.c-decoration.p-message__decoration {
  top: -1.6rem;
  left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-decoration.p-message__decoration {
    font-family: josefin-sans, sans-serif;
    font-weight: 300; /*josefin-sans light*/
    font-style: normal;
    font-size: 4.8rem;
    top: -2rem;
    left: 21.3rem;
  }
}

.p-message__title {
  width: 76.4705882353%;
  padding-top: 5.3rem;
  margin-left: 2rem;
  margin-bottom: 1.58rem;
}
@media screen and (min-width: 768px) {
  .p-message__title {
    width: 38.6973180077%;
    padding-top: 8.8rem;
    margin-left: 20rem;
    margin-bottom: 2.4rem;
  }
}

.p-message__text1 {
  width: 82.3529411765%;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  color: #502020;
  line-height: 2.2;
  margin-left: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-message__text1 {
    width: auto;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 700; /*zen-kaku-gothic-new bold*/
    font-size: 1.6rem;
    font-style: normal;
    margin-left: 21.2rem;
    margin-bottom: 4rem;
    line-height: 2;
  }
}

.p-message__text2 {
  display: inline-block;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.6rem;
  font-style: normal;
  color: #FFF;
  line-height: 2.3;
  margin-left: 2.5rem;
  margin-bottom: 14.8rem;
}
@media screen and (min-width: 768px) {
  .p-message__text2 {
    width: auto;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 700; /*zen-kaku-gothic-new bold*/
    font-size: 1.8rem;
    font-style: normal;
    margin-left: 21.1rem;
    margin-bottom: 10rem;
    line-height: 2.3888888889;
  }
}
.p-message__text2 strong {
  background-image: linear-gradient(90deg, #FF6D41, #FF4157);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 2.8rem;
  padding: 0.2rem 0.2rem 0.2rem 0.8rem;
  box-sizing: border-box;
  position: absolute;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .p-message__text2 strong {
    background-size: 100% 3.2rem;
  }
}

.p-message__photo {
  width: 32.8rem;
  position: absolute;
  bottom: -15.2rem;
  right: -1.5rem;
}
@media screen and (min-width: 768px) {
  .p-message__photo {
    width: 104.7rem;
    bottom: -8rem;
    right: -25.5rem;
  }
}

/*bg stripe*/
.c-sectionBgStripe.p-messageBg {
  width: 100%;
  height: 67.6rem;
  background-image: url("../img/img-messageBg-sp.webp");
  background-size: 4rem 5.6rem;
  background-repeat: repeat;
  border-radius: 0 5.2rem 5.2rem 0;
  position: absolute;
  top: 2.7rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-sectionBgStripe.p-messageBg {
    top: 4rem;
    height: 66.8rem;
  }
}

/* --------------------
 * about
 * -------------------- */
/* p-sectionTitleBg 
 * Common in ABOUT and COURSE
 */
.p-sectionTitleBg {
  position: absolute;
  content: "";
  width: 26.5rem;
  height: 13.5rem;
  background-image: url("../img/img-courceTitle-sp.webp");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  top: -3.2rem;
}
@media screen and (min-width: 768px) {
  .p-sectionTitleBg {
    width: 104.4rem;
    height: 30rem;
  }
}
.p-sectionTitleBg.-alignLeft {
  left: 0;
  text-align: left;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sectionTitleBg.-alignLeft {
    padding-left: 21.2rem;
    top: -14rem;
    margin-bottom: 0;
  }
}
.p-sectionTitleBg.-alignRight {
  right: 0;
  text-align: right;
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sectionTitleBg.-alignRight {
    padding-right: 21.2rem;
    top: -14rem;
  }
}
.p-sectionTitleBg .c-sectionTitle__en {
  margin-bottom: 0;
  width: 100%;
}
.p-sectionTitleBg .c-sectionTitle__ja {
  color: #FFF;
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sectionTitleBg .c-sectionTitle__ja {
    font-size: 2.8rem;
  }
}

/*p-about*/
.p-about .p-sectionTitleBg {
  background-image: url("../img/img-aboutTitle-sp.webp");
}
@media screen and (min-width: 768px) {
  .p-about .p-sectionTitleBg {
    background-image: url("../img/img-aboutTitle-pc.webp");
  }
}

.c-sectionBg.-dot.p-aboutBg {
  padding-left: 3.5rem;
}
@media screen and (min-width: 768px) {
  .c-sectionBg.-dot.p-aboutBg {
    padding-left: 10.8rem;
    margin-top: 32rem;
    padding-bottom: 8rem;
  }
}

.c-section.p-about {
  width: 34rem;
  background-color: #FFF;
  padding-top: 7.7rem;
  padding-bottom: 3.2rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-section.p-about {
    width: 100%;
    padding-right: 20rem;
    padding-left: 10.4rem;
    margin-right: 0;
    margin-left: auto;
  }
}

.p-about__title {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2.4rem;
  font-style: normal;
  color: #502020;
  line-height: 1.35;
  letter-spacing: 0.025em;
  margin-top: 2.5rem;
  margin-left: 4rem;
  margin-bottom: 1.8rem;
}
.p-about__title:nth-of-type(3) {
  margin-top: 0;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 700; /*zen-kaku-gothic-new bold*/
    font-size: 3.2rem;
    font-style: normal;
    width: 51rem;
    position: absolute;
    margin: 0;
  }
  .p-about__title br {
    display: none;
  }
  .p-about__title:nth-of-type(2) {
    top: 27.2rem;
  }
  .p-about__title:nth-of-type(3) {
    margin: 0;
    top: 32.8rem;
  }
}
.p-about__title strong {
  color: #FF6D41;
  position: relative;
}
.p-about__title strong::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #FF6D41;
  display: block;
  position: absolute;
  left: 0;
}

.p-about__text {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  color: #502020;
  line-height: 1.75;
  letter-spacing: 0;
  margin-bottom: 2rem;
  margin-left: 4rem;
  margin-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    width: 45.3rem;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about__text.-mtLarge {
    margin-top: 9rem;
  }
}
.p-about__text:last-of-type {
  margin-bottom: 3.2rem;
}

.p-about__badge {
  width: 27.4rem;
  display: block;
  margin-left: 4rem;
  margin-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__badge {
    width: 45.5rem;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 4.8rem;
  }
}

/*decoration*/
.c-decoration.p-about__decoration {
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .c-decoration.p-about__decoration {
    font-size: 3.6rem;
    top: 40.5rem;
    left: -10.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-decoration.p-about__decoration {
    width: 36.5rem;
    font-size: 4.8rem;
    top: 31rem;
    right: 113.5rem;
  }
}

/* --------------------
 * strIntro
 * -------------------- */
/*p-strIntro*/
.c-section.p-strIntro {
  width: 100%;
  background: url("../img/img-strIntroBgdot-sp.webp") no-repeat top/contain, linear-gradient(to bottom, #FE7951, #FEBCA8);
  padding: 0;
  position: relative;
  margin-bottom: 10.5rem;
}
@media screen and (min-width: 768px) {
  .c-section.p-strIntro {
    background: url("../img/img-strIntroBgdot-pc.webp") no-repeat right top/115.5rem, linear-gradient(to bottom, #FE7951, #FEBCA8);
    padding: 4rem 0 8rem;
    border-radius: 0 0 9.6rem 0;
    margin-bottom: 17rem;
  }
}

.p-strIntro__title {
  width: 28rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4.8rem;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-strIntro__title {
    width: 46.7rem;
    margin-bottom: 3.2rem;
  }
}
.p-strIntro__text {
  width: 32.5rem;
  margin-left: auto;
  margin-right: auto;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 3.2rem;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-strIntro__text {
    width: 61.7rem;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 8rem;
    text-align: center;
  }
}
.p-strIntro__link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-strIntro__link a {
  width: 12.5rem;
  height: auto;
  display: block;
  position: relative;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .p-strIntro__link a {
    width: 36.2rem;
  }
}
.p-strIntro__link a::after {
  content: "";
  position: absolute;
  bottom: -1.6rem;
  left: calc(50% - 0.8rem);
  border: 0.5rem solid transparent;
  border-top: 0.6rem solid #F5884F;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-strIntro__link a::after {
    bottom: -1.2rem;
    left: calc(50% - 1.2rem);
    border: 1.2rem solid transparent;
    border-top: 1.2rem solid #F5884F;
  }
}
.p-strIntro__link a:nth-of-type(2)::after {
  border-top: 0.6rem solid #F86956;
}
@media screen and (min-width: 768px) {
  .p-strIntro__link a:nth-of-type(2)::after {
    border-top: 1.2rem solid #F86956;
  }
}
.p-strIntro__link a:nth-of-type(3)::after {
  border-top: 0.6rem solid #F25858;
}
@media screen and (min-width: 768px) {
  .p-strIntro__link a:nth-of-type(3)::after {
    border-top: 1.2rem solid #F25858;
  }
}
.p-strIntro__link a:hover::after {
  bottom: -2rem;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .p-strIntro__link a:hover::after {
    bottom: -3rem;
  }
}

/* --------------------
 * strengths
 * -------------------- */
/*p-strBox*/
.c-sectionBox.p-strBox {
  margin-bottom: 9.2rem;
}
@media screen and (min-width: 768px) {
  .c-sectionBox.p-strBox {
    width: 135.6rem;
    margin-bottom: 19.6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-sectionBox.p-strBox#point2 {
    margin-left: auto;
    margin-right: 0;
  }
}
.c-sectionBox.p-strBox#point3 {
  margin-bottom: 6.4rem;
}
@media screen and (min-width: 768px) {
  .c-sectionBox.p-strBox#point3 {
    margin-bottom: 18.4rem;
  }
}

/*p-str*/
.p-str {
  width: 36rem;
  background-color: #FFF;
  padding: 4.8rem 2.5rem 4rem;
}
.p-str.c-section {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-str.c-section {
    width: 129.2rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 8.8rem 16.8rem 8rem 18.6rem;
  }
}
.p-str.-str1, .p-str.-str3 {
  margin-left: 0;
  margin-right: auto;
  border-radius: 0 5.2rem 5.2rem 0;
}
.p-str.-str2 {
  margin-left: auto;
  margin-right: 0;
  border-radius: 5.2rem 0 0 5.2rem;
}
.p-str__decoration {
  position: absolute;
  top: -3rem;
}
.p-str__decoration.-str1 {
  width: 12rem;
  right: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-str__decoration.-str1 {
    width: 25rem;
    height: 12.5rem;
    top: -5.3rem;
    right: 16rem;
  }
}
.p-str__decoration.-str2 {
  width: 13.4rem;
  right: 3rem;
}
@media screen and (min-width: 768px) {
  .p-str__decoration.-str2 {
    width: 25rem;
    height: 12.5rem;
    top: -5.3rem;
    right: 10rem;
  }
}
.p-str__decoration.-str3 {
  width: 13.6rem;
  top: -2.8rem;
  right: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-str__decoration.-str3 {
    width: 25rem;
    height: 11.5rem;
    top: -5.3rem;
    right: 16rem;
  }
}
.p-str__titlebox {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-str__title {
  width: 22.9rem;
}
@media screen and (min-width: 768px) {
  .p-str__title {
    width: 28.8rem;
    margin-bottom: 8.04rem;
  }
}
.p-str__text {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-str__text {
    margin-top: -13rem;
    margin-left: 4.2rem;
    margin-bottom: 3.3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-str__text {
    font-size: 1.6rem;
    line-height: 2;
    width: 60rem;
    height: 8.8rem;
    margin-left: 4.86rem;
    margin-top: 5.3rem;
  }
}
.p-str__text.-str1 {
  color: #F47938;
}
.p-str__text.-str2 {
  color: #F8543E;
}
.p-str__text.-str3 {
  color: #F54B4B;
}

/*p-strItem*/
.p-strItem, .p-str3Item {
  width: 31rem;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-strItem, .p-str3Item {
    width: 41.6rem;
    position: relative;
    margin-bottom: 6.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-strItem:nth-of-type(1), .p-str3Item:nth-of-type(1), .p-strItem:nth-of-type(2), .p-str3Item:nth-of-type(2) {
    height: 45.1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-strItem:nth-of-type(3), .p-str3Item:nth-of-type(3), .p-strItem:nth-of-type(4), .p-str3Item:nth-of-type(4) {
    height: 21.3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-strItem:nth-of-type(odd), .p-str3Item:nth-of-type(odd) {
    margin-right: 8rem;
    margin-left: 2.6rem;
  }
}
.p-strItem:last-of-type, .p-str3Item:last-of-type {
  margin-bottom: 0;
}
.p-strItem__img {
  width: 100%;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .p-strItem__img {
    width: 39.2rem;
    margin-left: 0;
    margin-right: auto;
  }
}

.p-str3Item {
  display: flow-root; /* Release the float. */
}
@media screen and (min-width: 768px) {
  .p-str3Item.p-strItem:last-of-type, .p-str3Item:last-of-type {
    width: 100%;
    height: auto;
  }
}
.p-str3Item__img {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-str3Item__img {
    width: 45.6rem;
    margin-bottom: 0;
    margin-right: 6.4rem;
    float: left; /* Float is released on the parent element. */
  }
}
.p-str3Item__list {
  color: #502020;
}
@media screen and (min-width: 768px) {
  .p-str3Item__list {
    font-size: 1.8rem;
    width: 31rem;
    margin-left: 0;
    margin-right: 0;
    float: left; /* Float is released on the parent element. */
    margin-bottom: 0;
  }
}
.p-str3Item__list li {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-str3Item__list li {
    padding-left: 1.6rem;
    line-height: 1.8;
  }
}
.p-str3Item__list li::before {
  background-color: #502020;
}
.p-str3Item__teamlance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-str3Item__teamlance {
    width: 31rem;
    margin-left: 0;
    margin-right: 0;
    float: left; /* Float is released on the parent element. */
    margin-top: 3rem;
  }
}
.p-str3Item__teamlance h3 {
  background-color: rgba(245, 75, 75, 0.15);
  color: #F54B4B;
  margin-bottom: 1.6rem;
  padding: 0.1rem 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-str3Item__teamlance h3 {
    margin-bottom: 1.1rem;
  }
}
.p-str3Item__teamlance p {
  width: 20.8rem;
  color: #502020;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
}
.p-str3Item__teamlance img {
  width: 9rem;
}
@media screen and (min-width: 768px) {
  .p-str3Item__teamlance img {
    width: 9rem;
  }
}

/*p-strColorbox*/
.p-strItemColorbox {
  width: 100%;
  padding: 1.8rem 2rem 2rem 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-strItemColorbox {
    width: 39.2rem;
    height: 23.5rem;
    position: absolute;
    top: 21.6rem;
    right: 0;
    z-index: 1;
    padding: 1.8rem 2.4rem 2rem 4.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-strItemColorbox {
    height: 27.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-strItem:nth-of-type(3) .p-strItemColorbox, .p-str3Item:nth-of-type(3) .p-strItemColorbox, .p-strItem:nth-of-type(4) .p-strItemColorbox, .p-str3Item:nth-of-type(4) .p-strItemColorbox {
    top: 0;
  }
}
.p-strItemColorbox.-str1 {
  background-color: #FFECE2;
}
.p-strItemColorbox.-str2 {
  background-color: #FDE6E3;
}
.p-strItemColorbox__title {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-strItemColorbox__title {
    font-size: 2.2rem;
    line-height: 1.65;
    margin-bottom: 1.6rem;
  }
}
.-str1 .p-strItemColorbox__title {
  color: #F47938;
}
.-str2 .p-strItemColorbox__title {
  color: #F8543E;
}
.p-strItemColorbox__number {
  position: absolute;
  line-height: 1;
  right: 1rem;
  top: 1.5rem;
  color: #FFF;
  font-family: josefin-sans, sans-serif;
  font-weight: 300; /*josefin-sans lightItalic*/
  font-style: italic;
  font-size: 7.5rem;
  opacity: 0.65;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-strItemColorbox__number {
    font-size: 10rem;
    top: 1rem;
  }
}
.p-strItemColorbox__text {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400; /*zen-kaku-gothic-new regular*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.75;
  color: #502020;
}
@media screen and (min-width: 768px) {
  .p-strItemColorbox__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-strItemColorbox__text {
    line-height: 1.4;
  }
}

/* --------------------
 * career
 * -------------------- */
.p-careerBefore {
  color: #502020;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2.4rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.4583333333;
  margin-bottom: 2.7rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-careerBefore {
    font-size: 3.2rem;
    line-height: 1.4375;
    letter-spacing: 0.025em;
    margin-bottom: 5.4rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-careerBefore {
    width: 13rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-careerBefore::before, .p-careerBefore::after {
  content: "";
  width: 2.6rem;
  height: 2.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-careerBefore::before, .p-careerBefore::after {
    width: 3.923rem;
    height: 4.281rem;
    bottom: -1rem;
  }
}
.p-careerBefore::before {
  background-image: url("../img/img-careerSaraniLeft-sp.webp");
  left: 8.3rem;
}
@media screen and (min-width: 768px) {
  .p-careerBefore::before {
    left: -10rem;
  }
}
.p-careerBefore::after {
  background-image: url("../img/img-careerSaraniRight-sp.webp");
  right: 8.3rem;
}
@media screen and (min-width: 768px) {
  .p-careerBefore::after {
    right: -10rem;
  }
}

/*p-career*/
.c-section.p-career {
  width: 93.3333333333%;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFF;
  padding: 3.2rem 0 1.6rem 0;
  border-radius: 3.2rem 3.2rem 0 0;
  margin-bottom: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-section.p-career {
    width: 122.4rem;
    display: flex;
    flex-wrap: wrap;
    padding: 12.1rem 0 1.6rem 0;
  }
}

.p-career__fukidashi {
  width: 11rem;
  height: auto;
  display: block;
  position: absolute;
  top: -1rem;
  left: -0.3rem;
}
@media screen and (min-width: 768px) {
  .p-career__fukidashi {
    width: 14.4rem;
    order: 1;
    top: -5rem;
    left: 10.4rem;
  }
}

.p-career__title {
  color: #502020;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2rem;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1.35;
  margin-bottom: 3rem;
  padding-left: 11.5rem;
}
@media screen and (min-width: 768px) {
  .p-career__title {
    order: 2;
    width: 49.6rem;
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-bottom: 2.4rem;
    padding-left: 0;
    margin-right: 62.4rem;
    margin-left: 10.4rem;
  }
  .p-career__title br {
    display: none;
  }
}

.p-career__text {
  width: 91.4285714286%;
  color: #502020;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.75;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-career__text {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-career__text {
    order: 3;
    width: 49.6rem;
    font-size: 1.6rem;
    line-height: 2;
    margin-right: 62.4rem;
    margin-left: 10.4rem;
    margin-bottom: 10rem;
  }
}

.p-career__list {
  width: 91.4285714286%;
  color: #F5AA02;
}
@media screen and (min-width: 768px) {
  .p-career__list {
    order: 5;
    width: 102.4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-career__list li:nth-child(1) {
    order: 1;
  }
  .p-career__list li:nth-child(2) {
    order: 3;
  }
  .p-career__list li:nth-child(3) {
    order: 5;
  }
  .p-career__list li:nth-child(4) {
    order: 2;
  }
  .p-career__list li:nth-child(5) {
    order: 4;
  }
  .p-career__list li:nth-child(6) {
    order: 6;
  }
}
@media screen and (min-width: 768px) {
  .p-career__list li {
    width: 48%;
    padding-left: 1.6rem;
  }
  .p-career__list li br {
    display: none;
  }
}

.p-career__img {
  display: block;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .p-career__img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-career__img {
    order: 4;
    width: 41.6rem;
    position: absolute;
    right: 8rem;
    top: 8.8rem;
  }
}

/*decoration*/
.c-decoration.p-career__decoration {
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .c-decoration.p-career__decoration {
    font-size: 2.6rem;
    top: 32rem;
    right: -8.4rem;
  }
}
@media screen and (min-width: 768px) {
  .c-decoration.p-career__decoration {
    font-size: 4.8rem;
    top: 22rem;
    left: -15.8rem;
  }
}

/* --------------------
 * voice
 * -------------------- */
/*p-voice*/
.c-section.p-voice {
  width: 93.3333333333%;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFF;
  padding: 3.2rem 0 4rem 0;
  border-radius: 0 0 3.2rem 3.2rem;
}
@media screen and (min-width: 768px) {
  .c-section.p-voice {
    width: 122.4rem;
    padding: 4rem 0 8rem 0;
    margin-bottom: 34rem;
  }
}
.c-section.p-voice .c-sectionTitle {
  margin-bottom: 2.8rem;
}

/*p-voiceItem*/
.p-voiceItem {
  background-image: url("../img/img-voiceItemBg1.webp");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 1.8rem;
  list-style: none;
  margin: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-voiceItem {
    width: 100%;
  }
}
.p-voiceItem.-voice2 {
  background-image: url("../img/img-voiceItemBg2.webp");
}
.p-voiceItem.-voice3 {
  background-image: url("../img/img-voiceItemBg3.webp");
}
.p-voiceItem.-voice4 {
  background-image: url("../img/img-voiceItemBg4.webp");
}
.p-voiceItem__title {
  width: 88.5714285714%;
  margin-left: auto;
  margin-right: auto;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1.5;
  color: #FC5738;
  text-align: center;
  margin-top: 4.9rem;
  margin-bottom: 1.8rem;
}
.p-voiceItem__title::after {
  content: "";
  background-image: url("../img/img-voiceItemLine.svg");
  height: 0.9rem;
  display: block;
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  margin-top: 1.6rem;
}
.p-voiceItem__contents {
  width: 80%;
  height: auto;
  margin-bottom: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.p-voiceItem__button {
  color: #FFF;
  text-decoration: none;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.6rem;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/img-voiceItemButton.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 28rem;
  height: 5.8rem;
  border-radius: 2.7rem;
  margin-bottom: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}

/*p-voice*/
.p-voiceSlider {
  width: 100%;
  margin: 0 auto;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-voiceSlider {
    width: 104.2rem;
  }
}
.p-voiceSlider.slick-slider .slick-track, .p-voiceSlider.slick-slider .slick-list {
  height: 47.2rem;
}
@media screen and (min-width: 768px) {
  .p-voiceSlider.slick-slider .slick-track, .p-voiceSlider.slick-slider .slick-list {
    height: 47.2rem;
  }
}
.p-voiceSlider__Prev, .p-voiceSlider__Next {
  position: absolute;
  z-index: 5;
  top: 41%;
  cursor: pointer;
  outline: none;
  height: 3.5rem;
  width: 2.8rem;
}
.p-voiceSlider__Prev::after, .p-voiceSlider__Next::after {
  content: "";
  background-image: url("../img/icon-slickchevron.svg");
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-voiceSlider__Prev {
  left: 0;
}
.p-voiceSlider__Next {
  right: 0;
  transform: rotate(180deg);
}

/*slick-dots*/
.slick-dots {
  text-align: center;
  margin-top: -0.6rem;
}
@media screen and (min-width: 768px) {
  .slick-dots {
    margin-top: 2rem;
  }
}
.slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .slick-dots li {
    margin: 0 0.8rem;
  }
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 0.6rem;
  height: 0.6rem;
  display: block;
  border-radius: 50%;
  background: #DBCACA;
  padding: 0;
  border: none;
}
@media screen and (min-width: 768px) {
  .slick-dots button {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.slick-dots .slick-active button {
  background: #502020;
}

/*p-voiceRemodal*/
.p-voiceRemodal__info {
  width: 100%;
}

.p-voiceRemodal__title {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1.7rem;
  padding-left: 2.2rem;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.8rem;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1.4166666667;
  color: #502020;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-voiceRemodal__title {
    width: calc(100% - 20.8rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    margin-top: 5.3rem;
    margin-bottom: 2.6rem;
    font-size: 2.4rem;
    line-height: 1.4166666667;
  }
}
@media screen and (min-width: 768px) {
  .p-voiceRemodal__title br {
    display: none;
  }
}
.p-voiceRemodal__title::before {
  content: "";
  background-image: url("../img/img-voiceRemodalTitleMark.svg");
  width: 2.856rem;
  height: 23.12rem;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1rem;
  left: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-voiceRemodal__title::before {
    width: 4.534rem;
    height: 36.7rem;
    top: -1.8rem;
    left: -3.2rem;
  }
}

.p-voiceRemodal__text {
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400; /*zen-kaku-gothic-new regular*/
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #502020;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-voiceRemodal__text {
    width: calc(100% - 20.8rem);
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 5.6rem;
  }
}

.p-voiceRemodal__pager {
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-voiceRemodal__pager {
    width: calc(100% - 8rem);
  }
}
.p-voiceRemodal__pager a {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  color: #FC5738;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-voiceRemodal__pager a {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.p-voiceRemodal__pager a::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 1.2rem;
  background-image: url("../img/img-voiceRemodalPagerChevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.6rem;
}
.p-voiceRemodal__pager a:last-of-type {
  flex-direction: row-reverse;
}
.p-voiceRemodal__pager a:last-of-type::before {
  transform: rotate(180deg);
  margin-right: 0;
  margin-left: 0.6rem;
}

/* --------------------
 * course
 * -------------------- */
/*p-course*/
.p-course .p-sectionTitleBg {
  background-image: url("../img/img-courceTitle-sp.webp");
}
@media screen and (min-width: 768px) {
  .p-course .p-sectionTitleBg {
    background-image: url("../img/img-courceTitle-pc.webp");
  }
}

/*p-course*/
.c-section.p-course {
  width: 100%;
  background-color: #FFF;
  padding-top: 7.7rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-section.p-course {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 133.1rem;
    padding-right: 10.4rem;
    padding-left: 21rem;
  }
}

/*p-courseInfo*/
.p-courseInfo {
  width: 86.1111111111%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3.2rem;
  border-bottom: dotted 2px #DEDEDE;
}
@media screen and (min-width: 768px) {
  .p-courseInfo {
    width: 46.8rem;
    padding-top: 0;
    margin-top: 8rem;
    margin-right: 4rem;
    border-bottom: none;
    position: relative;
  }
}

/*p-courseName*/
.p-courseName {
  margin-bottom: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-courseName {
    margin-bottom: 2.8rem;
  }
}

.p-courseName__message {
  background-color: #F5AA02;
  color: #FFF;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.6rem;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1.44375;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  border-radius: 0.2rem 0.2rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-courseName__message {
    font-size: 2.4rem;
    line-height: 1.25;
    height: 8.9rem;
    padding: 1.5rem 0;
  }
}
.p-courseName__messageSmall {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-courseName__messageSmall {
    font-size: 2rem;
  }
}
.p-courseName__message::before, .p-courseName__message::after {
  position: absolute;
  content: "";
  display: block;
  width: 2.142rem;
  height: 1.734rem;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-courseName__message::before, .p-courseName__message::after {
    width: 2.856rem;
    height: 2.312rem;
  }
}
.p-courseName__message::before {
  background-image: url("../img/img-courseQuoteYellowLeft.webp");
  top: 0.7rem;
  left: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-courseName__message::before {
    top: 0.8rem;
    left: 7rem;
  }
}
.p-courseName__message::after {
  background-image: url("../img/img-courseQuoteYellowRight.webp");
  bottom: 0.7rem;
  right: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-courseName__message::after {
    right: 7rem;
  }
}

.p-courseName__name {
  background-color: #FEF2D9;
  color: #F5AA02;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2.2rem;
  font-style: normal;
  letter-spacing: -0.1em;
  line-height: 1.2727272727;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1.6rem;
  position: relative;
  border-radius: 0 0 0.2rem 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-courseName__name {
    font-size: 3rem;
    line-height: 1.2666666667;
    height: 16rem;
    padding: 3.4rem 0;
    letter-spacing: -0.05em;
  }
}
.p-courseName__nameSmall {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0em;
  padding-bottom: 0.6rem;
  line-height: 1;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-courseName__nameSmall {
    font-size: 1.8rem;
  }
}
.p-courseName__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.8rem);
  border: 0.7rem solid transparent;
  border-top: 0.8rem solid #F5AA02;
}

/*p-coursePrice*/
.p-coursePrice {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}
.p-coursePrice dt {
  width: 7.6rem;
  height: 2.8rem;
  border-radius: 0.2rem;
  background-color: #E3E2E2;
  color: #333333;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  text-align: center;
  letter-spacing: 0em;
  vertical-align: middle;
  line-height: 2.8rem;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dt {
    width: 9.2rem;
    height: 3.4rem;
    font-size: 1.6rem;
    line-height: 3.4rem;
    margin: 1rem 0 0 0;
  }
}
.p-coursePrice dt:nth-of-type(2) {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dt:nth-of-type(2) {
    margin-bottom: 2.8rem;
  }
}
.p-coursePrice dd {
  margin-left: 1.2rem;
  width: calc(100% - 8.8rem);
  margin-bottom: 0.8rem;
  font-family: roboto, sans-serif;
  font-weight: 400; /*roboto regular*/
  font-style: normal;
  font-size: 2.6rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd {
    margin-left: 1.6rem;
    width: calc(100% - 10.8rem);
    font-size: 4.8rem;
    margin-bottom: 0.8rem;
  }
}
.p-coursePrice dd span {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd span {
    font-size: 2.2rem;
  }
}
.p-coursePrice dd .txt {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd .txt {
    font-size: 2.2rem;
  }
}
.p-coursePrice dd .txt .large {
  font-size: 160%;
}
.p-coursePrice dd .txt .yellow {
  color: #F5AA02;
}
.p-coursePrice dd .txt .red {
  color: #FF6D41;
}
.p-coursePrice dd .txt small {
  font-size: 70%;
}
.p-coursePrice dd .note {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.2rem;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd .note {
    font-size: 1.6rem;
  }
}
.p-coursePrice dd .note .large {
  font-size: 150%;
  line-height: 1;
}
.p-coursePrice dd:nth-of-type(2) {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd:nth-of-type(2) {
    margin-bottom: 3.2rem;
  }
}
.p-coursePrice dd:nth-of-type(3) {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd:nth-of-type(3) {
    margin-bottom: 1.6rem;
  }
}
.p-coursePrice dd.p-coursePrice__payment {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400; /*zen-kaku-gothic-new regular*/
  font-size: 1.2rem;
  font-style: normal;
  margin-left: 0;
  line-height: 1.5;
  color: #502020;
}
.p-coursePrice dd.p-coursePrice__payment label {
  color: #502020;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-coursePrice dd.p-coursePrice__payment {
    font-size: 1.6rem;
  }
  .p-coursePrice dd.p-coursePrice__payment .p-coursePrice__paymentSp {
    display: none;
  }
}

/*p-courseAccordion*/
.p-courseAccordion__toggl {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-courseAccordion__label, .p-courseAccordion__content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.3s;
  }
}
.p-courseAccordion__content {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-courseAccordion__content {
    height: auto;
    opacity: 1;
    overflow: visible;
  }
}
.p-courseAccordion__content img {
  padding-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-courseAccordion__content img {
    padding-bottom: 0;
  }
}
.p-courseAccordion__toggl:checked + .p-courseAccordion__label + .p-courseAccordion__content {
  height: auto;
  opacity: 1;
  transition: all 0.5s ease;
}

/*p-courseInfo - pack*/
.p-courseInfo.-pack {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-courseInfo.-pack {
    border-right: none;
    margin-right: 0;
    margin-left: 4rem;
    position: relative;
  }
  .p-courseInfo.-pack::before {
    content: "";
    border-right: dotted 2px #DEDEDE;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -4rem;
  }
}
.p-courseInfo.-pack .p-courseName__message {
  background-color: #FF6D41;
  padding-left: 0.5rem;
}
.p-courseInfo.-pack .p-courseName__message::before {
  background-image: url("../img/img-courseQuoteOrangeLeft.webp");
  top: 0.7rem;
  left: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-courseInfo.-pack .p-courseName__message::before {
    top: 0.8rem;
    left: 1.7rem;
  }
}
.p-courseInfo.-pack .p-courseName__message::after {
  background-image: url("../img/img-courseQuoteOrangeRight.webp");
  bottom: 0.7rem;
  right: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-courseInfo.-pack .p-courseName__message::after {
    right: 1.7rem;
  }
}
.p-courseInfo.-pack .p-courseName__name {
  background-color: #FFE9E2;
  color: #FF6D41;
}
@media screen and (min-width: 768px) {
  .p-courseInfo.-pack .p-courseName__name {
    padding: 2rem 0;
    letter-spacing: 0;
  }
}
.p-courseInfo.-pack .p-courseName__name::before {
  border-top: 0.8rem solid #FF6D41;
}

/*p-courseSchedule*/
.p-courseSchedule {
  margin-top: 1.2rem;
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-courseSchedule {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
.p-courseSchedule .p-courseSchedule__title {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.3335;
  color: #502020;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-courseSchedule .p-courseSchedule__title {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
  }
}
.p-courseSchedule .p-courseSchedule__imgBox {
  display: block;
  width: 86.1111111111%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-courseSchedule .p-courseSchedule__imgBox {
    width: 101.5rem;
  }
}
.p-courseSchedule .p-courseSchedule__fukidashi {
  position: absolute;
  width: 7.6rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-courseSchedule .p-courseSchedule__fukidashi {
    bottom: 7.2rem;
    left: -3.3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-courseSchedule .p-courseSchedule__fukidashi {
    width: 11.6rem;
    top: -10rem;
    right: -3rem;
  }
}

/*p-courseStudy*/
.p-courseStudy {
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-courseStudy {
    padding-bottom: 8rem;
  }
}
.p-courseStudy .p-courseStudy__title {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.3335;
  color: #502020;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-courseStudy .p-courseStudy__title {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
  }
}
.p-courseStudy .p-courseStudy__text {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.75;
  color: #502020;
  margin-bottom: 2rem;
  text-align: left;
  width: calc(100% - 5rem);
  margin-left: auto;
  margin-right: auto;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-courseStudy .p-courseStudy__text {
    width: 101.5rem;
  }
}
.p-courseStudy .p-courseStudy__text:last-of-type {
  margin-bottom: 0;
}
.p-courseStudy .p-courseStudy__text span {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  color: #FF6D41;
}

/* --------------------
 * counseling
 * -------------------- */
/*p-counseling*/
.c-section.p-counseling {
  width: 100%;
  background: url("../img/img-counselingBgdot-sp.webp") no-repeat bottom/contain, linear-gradient(to bottom, #FE7951, #FEBCA8);
  padding: 4rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-section.p-counseling {
    background: url("../img/img-counselingBgdot-pc.webp") no-repeat top 12rem center/105rem, linear-gradient(to bottom, #FE7951, #FEBCA8);
    padding: 4rem 0 8rem;
  }
}

.p-counseling__titlebox {
  background-color: #FFF;
  display: block;
  width: 86.6666666667%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
  box-shadow: 0px 0.5rem 3rem rgba(226, 105, 69, 0.25);
  border-radius: 0.6rem;
  padding: 1rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .p-counseling__titlebox {
    width: 60.2rem;
    margin-bottom: 4.8rem;
    padding: 1rem 0 1.8rem;
  }
}

.p-counseling__title {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 2.4rem;
  font-style: normal;
  line-height: 1.4583333333;
  color: #EB4558;
  text-align: center;
  margin-left: -1rem;
  letter-spacing: 0.035em;
}
@media screen and (min-width: 768px) {
  .p-counseling__title {
    font-size: 3.9rem;
    line-height: 1.7em;
  }
}
.p-counseling__title strong {
  margin-left: 1rem;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.6153846154;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-counseling__title strong {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
.p-counseling__title strong::before {
  position: absolute;
  content: "";
  background-image: url("../img/img-counselingMarker.webp");
  width: 16.1rem;
  height: 1.92rem;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -1rem;
  z-index: -1;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-counseling__title strong::before {
    width: 23.6rem;
    height: 2.8rem;
    bottom: -1.3rem;
    right: 2rem;
  }
}

.p-counseling__message {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.8rem;
  font-style: normal;
  text-align: center;
  line-height: 2;
  color: #FFF;
  text-shadow: 0px 0.2rem 2rem #E26945;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-counseling__message {
    width: 60.2rem;
    margin-bottom: 5.6rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.4rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 767px) {
  .p-counseling__messageBr.-sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-counseling__messageBr.-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-counseling__messageBr.-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-counseling__messageBr.-pc {
    display: block;
  }
}

.p-counseling__photo {
  display: block;
  width: 77.3333333333%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-counseling__photo {
    width: 60.2rem;
    margin-bottom: 4rem;
  }
}

.p-counseling__text {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.75;
  color: #502020;
  width: 86.6666666667%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-counseling__text {
    width: 60.2rem;
    margin-bottom: 4.8rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.p-counseling__btn {
  display: block;
  padding: 2rem 1rem;
  border-radius: 10px;
  font-size: clamp(1.4rem, 0.6889rem + 1.4815vw, 1.8rem);
  font-weight: bold;
  text-decoration: none;
}
.p-counseling__btn-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem 4%;
  list-style: none;
  padding-left: 0;
  margin: 0 auto min(5rem, 10vw);
}
.p-counseling__btn-list li {
  width: min(350px, 80%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-counseling__btn-list {
    width: 60.2rem;
    flex-direction: row;
    justify-content: center;
  }
}
.p-counseling__btn-counseling {
  background: linear-gradient(90deg, #FF6D41 0%, #FE4058 100%);
  box-shadow: 0 5px 0 0 #cf4b3e;
  color: #fff;
}
.p-counseling__btn-counseling:hover {
  box-shadow: 0 1px 0 0 #cf4b3e;
  transform: translateY(3px);
  transition: 0.1s ease-in;
}
.p-counseling__btn-shiryo {
  background: #fff;
  border: 1px solid #FF6D41;
  box-shadow: 0 5px 0 0 #ee3c08;
  color: #FF6D41;
}
.p-counseling__btn-shiryo:hover {
  box-shadow: 0 1px 0 0 #ee3c08;
  transform: translateY(3px);
  transition: 0.1s ease-in;
}

.p-counseling__list {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.5;
  color: #502020;
  width: 72%;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-counseling__list {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    width: 33rem;
  }
}
.p-counseling__list li {
  margin-bottom: 1rem;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .p-counseling__list li {
    margin-bottom: 2rem;
  }
}
.p-counseling__list li::before {
  content: "";
  background-image: url("../img/img-counselingCheck.svg");
  width: 1.8rem;
  height: 1.8rem;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 0.8rem;
  vertical-align: text-top;
}
@media screen and (min-width: 768px) {
  .p-counseling__list li::before {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1rem;
  }
}

/* --------------------
 * studio
 * -------------------- */
/*p-studio*/
.p-studioLink {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-studioLink {
    width: 73.2rem;
  }
}
.p-studioLink li {
  width: 50%;
  aspect-ratio: 1/1;
  background-color: #D1CBCB;
  background-repeat: no-repeat;
  background-size: contain;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-studioLink li {
    max-width: 24.4rem;
  }
}
.p-studioLink li.-more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.p-studioLink li.-more .p-studioLink__titleEn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-studioLink li.-more {
    display: none;
  }
}
.p-studioLink li:nth-of-type(1) {
  background-image: url("../img/img-studioLinkShibuya.webp");
}
.p-studioLink li:nth-of-type(2) {
  background-image: url("../img/img-studioLinkShinjuku.webp");
}
.p-studioLink li:nth-of-type(3) {
  background-image: url("../img/img-studioLinkJiyugaoka.webp");
}
.p-studioLink li:nth-of-type(4) {
  background-image: url("../img/img-studioLinkKichijoji.webp");
}
.p-studioLink li:nth-of-type(5) {
  background-image: url("../img/img-studioLinkTachikawa.webp");
}
.p-studioLink li:nth-of-type(6) {
  background-image: url("../img/img-studioLinkYokohama.webp");
}
.p-studioLink li:nth-of-type(7) {
  background-image: url("../img/img-studioLinkOsakaumeda.webp");
}
.p-studioLink li:nth-of-type(8) {
  background-image: url("../img/img-studioLinkNamba.webp");
}
.p-studioLink li:nth-of-type(9) {
  background-image: url("../img/img-studioLinkSannomiya.webp");
}
.p-studioLink li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #FFF;
  letter-spacing: 0.035em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.p-studioLink li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.p-studioLink__titleEn {
  font-family: josefin-sans, sans-serif;
  font-weight: 700; /*josefin-sans bold*/
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.035em;
}
@media screen and (min-width: 768px) {
  .p-studioLink__titleEn {
    font-size: 2.8rem;
  }
}
.p-studioLink__titleJa {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.2rem;
  font-style: normal;
  letter-spacing: 0.035em;
}
@media screen and (min-width: 768px) {
  .p-studioLink__titleJa {
    font-size: 1.8rem;
  }
}
.p-studioLink__titleJa span {
  font-family: josefin-sans, sans-serif;
  font-weight: 400; /*josefin-sans regular*/
  font-style: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-studioLink__titleJa span {
    font-size: 2rem;
  }
}

/*p-studioRemodal*/
.p-studioRemodal {
  width: 34rem;
  padding: 3.2rem 2rem 2.2rem 2rem;
  color: #502020;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal {
    width: 80.8rem;
    padding: 5.6rem 8rem;
  }
}
.p-studioRemodal__title {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1.4166666667;
  letter-spacing: 0.025em;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.p-studioRemodal__title span {
  font-family: josefin-sans, sans-serif;
  font-weight: 700; /*josefin-sans bold*/
  font-style: normal;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__title span {
    font-size: 2.6rem;
  }
}
.p-studioRemodal__img {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__img {
    width: 64.8rem;
    max-width: 100%;
  }
}
.p-studioRemodal__text {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  word-break: break-all;
  margin-bottom: 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
  }
}
.p-studioRemodal__infoList {
  width: 30rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__infoList {
    width: 100%;
    margin-bottom: 5.6rem;
  }
}
.p-studioRemodal__infoIcon {
  width: 1.4rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__infoIcon {
    width: 1.6rem;
    padding-top: 0.6rem;
  }
}
.p-studioRemodal__infoText {
  width: 27.6rem;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-studioRemodal__infoText {
    width: calc(100% - 2.6rem);
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.p-studioRemodal__infoText a {
  color: #502020;
}
.p-studioRemodal__btn {
  width: 28rem;
}

/*p-studioRemodal closeButton PC*/
@media screen and (min-width: 768px) {
  .c-remodal.p-studioRemodal .c-remodal__closeButton {
    top: 1.6rem;
    right: 1.6rem;
  }
}
/* --------------------
 * faq
 * -------------------- */
/*p-faq*/
.c-section.p-faq {
  width: 93.3333333333%;
  background-color: #FFF;
  padding: 3.2rem 0 4rem 0;
  border-radius: 3.2rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-section.p-faq {
    width: 122.4rem;
    padding: 5.8rem 0 8rem 0;
    border-radius: 6.2rem;
  }
}

.p-faq__bottomtext {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.6rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.6;
  color: #F26B43;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-faq__bottomtext {
    font-size: 1.8rem;
  }
  .p-faq__bottomtext br {
    display: none;
  }
}

/* p-faqItems */
.p-faqItems {
  width: 92.8571428571%;
  margin: 0 auto 2.6rem;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-faqItems {
    width: 89.6rem;
    margin: 0 auto 6.4rem;
  }
}
.p-faqItems li {
  margin-bottom: 0.2rem;
}
.p-faqItems li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-faqItems li {
    margin-bottom: 0.3rem;
  }
}
.p-faqItems__mark {
  width: 2.2rem;
  height: 2.2rem;
  font-family: josefin-sans, sans-serif;
  font-weight: 400; /*josefin-sans regular*/
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  padding-left: 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-faqItems__mark {
    width: 3.2rem;
    height: 3.2rem;
    font-family: josefin-sans, sans-serif;
    font-weight: 400; /*josefin-sans regular*/
    font-style: normal;
    font-size: 1.8rem;
    padding-left: 0.3rem;
    top: 1.6rem;
  }
}
.p-faqItems__title {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 1.2rem 3.4rem 1.2rem 1.2rem;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500; /*zen-kaku-gothic-new medium*/
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.4;
  color: #502020;
  background-color: #FCEEEC;
  text-align: left;
  transition: all 0.5s ease;
  display: flex;
  word-break: break-all;
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-faqItems__title {
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 500; /*zen-kaku-gothic-new medium*/
    font-size: 1.8rem;
    font-style: normal;
    padding: 2rem 8.4rem 2rem 2rem;
    border-radius: 0.6rem;
  }
}
.p-faqItems__title .p-faqItems__mark {
  color: #FFF;
  background-color: #FF6D41;
}
.p-faqItems__title::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 0.5rem;
  background-image: url("../img/img-faqChevron.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-faqItems__title::after {
    width: 1.2rem;
    height: 0.6rem;
  }
}
.p-faqItems__title::after {
  top: 46%;
  right: 1.2rem;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-faqItems__title::after {
    right: 2rem;
  }
}
.p-faqItems__title.js-close::after {
  transform: rotate(0deg);
}
.p-faqItems__titleText {
  margin-left: 3.4rem;
}
@media screen and (min-width: 768px) {
  .p-faqItems__titleText {
    margin-left: 5.2rem;
  }
}
.p-faqItems__box {
  display: none;
  width: 100%;
  padding: 1.2rem 1.2rem 2.2rem;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400; /*zen-kaku-gothic-new regular*/
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0.035em;
  line-height: 1.4;
  color: #502020;
  position: relative;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-faqItems__box {
    padding: 2.3rem 7rem 5.5rem 2rem;
    font-size: 1.6rem;
  }
}
.p-faqItems__box .p-faqItems__mark {
  border: #FF6D41 solid 1px;
  color: #FF6D41;
  background-color: #FFF;
}
.p-faqItems__box p {
  margin-left: 3.4rem;
}
@media screen and (min-width: 768px) {
  .p-faqItems__box p {
    margin-left: 5rem;
  }
}
.p-faqItems__box p a {
  color: #F26B43;
}
.p-faqItems__box p:first-of-type {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700; /*zen-kaku-gothic-new bold*/
  font-size: 1.4rem;
  font-style: normal;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-faqItems__box p:first-of-type {
    font-size: 1.8rem;
    margin-bottom: 1.7rem;
  }
}

/* --------------------
 * utility
 * -------------------- */
/* css_browser_selector */
.mac, .iphone, .ipad { /*Mac OS*/ }
.mac .p-strItemColorbox__number, .iphone .p-strItemColorbox__number, .ipad .p-strItemColorbox__number {
  top: 0;
}
@media screen and (min-width: 768px) {
  .mac .p-strItemColorbox__number, .iphone .p-strItemColorbox__number, .ipad .p-strItemColorbox__number {
    top: -1rem;
  }
}
.mac .p-faqItems__mark, .iphone .p-faqItems__mark, .ipad .p-faqItems__mark {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .mac .p-faqItems__mark, .iphone .p-faqItems__mark, .ipad .p-faqItems__mark {
    line-height: 1.35em;
  }
}
@media screen and (min-width: 768px) {
  .mac .p-faqItems__mark, .iphone .p-faqItems__mark, .ipad .p-faqItems__mark {
    line-height: 1.5em;
  }
}

.win body {
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .win .p-mv::after {
    top: 22rem;
  }
}