@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #383838;
}

.container {
  width: 100%;
  max-width: 100rem;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

.is-ip-hide {
  display: block;
}
@media screen and (max-width: 900px) {
  .is-ip-hide {
    display: none;
  }
}

.is-ip-show {
  display: none;
}
@media screen and (max-width: 900px) {
  .is-ip-show {
    display: block;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-title {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .c-title {
    margin-bottom: 56px;
  }
}
.c-title::after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 30px;
  background-color: rgba(243, 156, 1, 0.5);
  height: 3px;
}
.c-title__h2 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 36px;
}
@media screen and (max-width: 760px) {
  .c-title__h2 {
    font-size: 28px;
  }
}
.c-title__english {
  font-size: 11px;
  color: #f44900;
  font-weight: 400;
}

.l-footer {
  background-color: #383838;
  padding-top: 74px;
  padding-bottom: 74px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .l-footer {
    padding-top: 34px;
    padding-bottom: 15px;
  }
}
.l-footer__logo-anker {
  width: 271px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: block;
}
.l-footer__logo {
  width: 100%;
}
.l-footer__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .l-footer__ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 28px;
    margin-bottom: 50px;
  }
}
.l-footer__li {
  font-size: 18px;
}
@media screen and (max-width: 760px) {
  .l-footer__li {
    font-size: 14px;
  }
}
.l-footer__a {
  font-weight: 500;
  color: #fff !important;
}
.l-footer__p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .l-footer__p {
    font-size: 11px;
  }
}

.l-header {
  height: min(120px, 9.23vw);
  background-color: #201c22;
  width: 100%;
  line-height: min(120px, 9.23vw);
  position: fixed;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .l-header {
    height: 120px;
    line-height: 120px;
  }
}
@media screen and (max-width: 760px) {
  .l-header {
    height: 70px;
    line-height: 70px;
  }
}
.l-header__container {
  height: min(120px, 9.23vw);
  padding-left: min(71px, 5.46vw);
  padding-right: min(37px, 2.85vw);
  line-height: min(120px, 9.23vw);
}
@media screen and (max-width: 1200px) {
  .l-header__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 760px) {
  .l-header__container {
    padding-left: 16px;
    padding-right: 16px;
    line-height: 70px;
    height: 70px;
  }
}
.l-header__wrap {
  height: min(120px, 9.23vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  line-height: min(120px, 9.23vw);
}
@media screen and (max-width: 1100px) {
  .l-header__wrap {
    line-height: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 760px) {
  .l-header__wrap {
    line-height: 70px;
    height: 70px;
  }
}
.l-header__logo-img {
  width: 100%;
}
.l-header__logo {
  width: min(200px, 21.31vw);
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1380px) {
  .l-header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 760px) {
  .l-header__logo {
    width: 155px;
  }
}
.l-header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(50px, 3.85vw);
       column-gap: min(50px, 3.85vw);
}
@media screen and (max-width: 1100px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(40px, 3.08vw);
       column-gap: min(40px, 3.08vw);
}
@media screen and (max-width: 1380px) {
  .l-header__ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.l-header__li {
  font-size: min(17px, 1.31vw);
}
@media screen and (max-width: 1380px) {
  .l-header__li {
    font-size: 15px;
  }
}
.l-header__a {
  color: #fff !important;
}
.l-header__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-header__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 260px;
  transition: all 0.3s;
}
.l-header__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.p-solve__up-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 7px;
  background: url(../img/solve/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 180px;
}
@media screen and (max-width: 760px) {
  .p-solve__up-content {
    background: url(../img/solve/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 68px;
    margin-top: -12px;
    position: relative;
    z-index: -1;
  }
}
.p-solve__titles {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-size: 47px;
  font-weight: 700;
  transform: skewX(-10deg);
}
@media screen and (max-width: 1024px) {
  .p-solve__titles {
    font-size: 35px;
  }
}
@media screen and (max-width: 760px) {
  .p-solve__titles {
    font-size: 20px;
  }
}
.p-solve__titles span {
  color: #f44900;
  font-size: 52px;
  font-weight: 700;
  transform: skewX(-10deg);
}
@media screen and (max-width: 1024px) {
  .p-solve__titles span {
    font-size: 38px;
  }
}
@media screen and (max-width: 760px) {
  .p-solve__titles span {
    font-size: 24px;
  }
}
.p-solve__text-img {
  width: 500px;
}
@media screen and (max-width: 1024px) {
  .p-solve__text-img {
    width: 400px;
  }
}
@media screen and (max-width: 760px) {
  .p-solve__text-img {
    width: 218px;
  }
}
.p-solve__p {
  letter-spacing: 0.09em;
  font-size: 47px;
}
@media screen and (max-width: 1024px) {
  .p-solve__p {
    font-size: 35px;
  }
}
@media screen and (max-width: 760px) {
  .p-solve__p {
    font-size: 20px;
  }
}
.p-solve__down {
  background: url(../img/solve/bg-2.png) no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding-top: 224px;
  padding-bottom: 91px;
  margin-top: -147px;
}
@media screen and (max-width: 900px) {
  .p-solve__down {
    padding-top: 130px;
    padding-bottom: 91px;
    margin-top: -78px;
  }
}
@media screen and (max-width: 760px) {
  .p-solve__down {
    background: url(../img/solve/bg-2-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 77px;
    padding-bottom: 68px;
    margin-top: -50px;
  }
}
.p-solve__up {
  position: relative;
  z-index: 1;
}
.p-solve__button {
  width: 496px;
  margin: 0 auto;
  display: inline-block;
}
@media screen and (max-width: 760px) {
  .p-solve__button {
    width: 90%;
  }
}
.p-solve__button-img {
  width: 100%;
}
.p-solve__group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 60px;
  -moz-column-gap: 38px;
       column-gap: 38px;
  margin-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1304px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .p-solve__group {
    -moz-column-gap: 35px;
         column-gap: 35px;
    row-gap: 50px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
  }
}
.p-solve__child {
  border: 2px solid #fbb501;
  border-radius: 15px;
  max-width: 398px;
  width: 100%;
  position: relative;
  box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .p-solve__child {
    max-width: initial;
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (max-width: 760px) {
  .p-solve__child {
    width: 100%;
  }
}
.p-solve__first {
  height: 69px;
  font-weight: 700;
  background-color: #fdfad1;
  font-size: 18px;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.p-solve__first span {
  color: #f44900;
}
@media screen and (max-width: 760px) {
  .p-solve__first {
    font-size: 20px;
    display: inline-block;
    width: 100%;
    height: 90px;
    padding-top: 12px;
  }
}
.p-solve__number {
  font-weight: 900;
  font-size: 50px;
  position: absolute;
  top: 0;
  left: 0;
  top: -47px;
  left: 20px;
  transform: skewX(-10deg);
  background: linear-gradient(to bottom, #f44900, #fbb501); /* グラデーション */
  -webkit-background-clip: text; /* 文字に適用 */
  -webkit-text-fill-color: transparent; /* 背景を文字に表示 */
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 760px) {
  .p-solve__number {
    font-size: 50px;
  }
}
.p-solve__second {
  border-radius: 15px;
  font-size: 15px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding: 18px 21px;
  line-height: 1.65;
  font-weight: 700;
}
.p-solve__second span {
  color: #f44900;
}
@media screen and (max-width: 760px) {
  .p-solve__second {
    font-size: 14px;
    padding: 16px 30px;
    text-align: left;
  }
}
.p-solve__img {
  height: 200px;
  width: 100%;
}

.p-faq {
  padding-top: 90px;
  padding-bottom: 137px;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .p-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-faq__container {
  width: 100%;
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
.p-faq__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  align-items: center;
}
.p-faq__group {
  width: 100%;
}
.p-faq__dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
  width: 100%;
  background-color: #f9f9f8;
  border-radius: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-faq__dt {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding-left: 16px;
    padding-right: 50px;
  }
}
.p-faq__dt:hover {
  background-color: #f0f0ef;
}
.p-faq__dt::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 27px;
  font-weight: 600;
  color: #383838;
  transition: all 0.3s ease;
}
@media screen and (max-width: 760px) {
  .p-faq__dt::after {
    right: 24px;
  }
}
.p-faq__dt.active {
  background-color: #f0f0ef;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.p-faq__dt.active::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.p-faq__h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
  color: #383838;
}
.p-faq__dd {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 760px) {
  .p-faq__dd {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.p-faq__dd.active {
  max-height: 500px;
  padding-top: 32px;
  padding-bottom: 24px;
}
.p-faq__svg {
  width: 29px;
  height: 29px;
}
.p-faq__p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: #383838;
}

.p-calender {
  padding-top: 138px;
  padding-bottom: 119px;
  background-color: #f9f9f8;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-calender {
    padding-top: 77px;
    padding-bottom: 57px;
  }
}
.p-calender__container {
  width: 100%;
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
.p-calender__first {
  width: 341px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 106px;
}
@media screen and (max-width: 760px) {
  .p-calender__first {
    top: 40px;
    width: 282px;
  }
}
.p-calender__title-group {
  position: relative;
  margin-bottom: 42px;
}
@media screen and (max-width: 760px) {
  .p-calender__title-group {
    margin-bottom: 47px;
  }
}
.p-calender__calender {
  width: 100%;
}
.p-calender__description {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  max-width: 710px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 57px;
}
@media screen and (max-width: 760px) {
  .p-calender__description {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.p-calender__english {
  line-height: 1.3;
  font-size: 120px;
  background: linear-gradient(to bottom, #f5ea11, #f39c01); /* グラデーション */
  -webkit-background-clip: text; /* 文字に適用 */
  -webkit-text-fill-color: transparent; /* 背景を文字に表示 */
  background-clip: text;
  color: transparent;
  opacity: 0.4; /* 文字全体を40%に */
}
@media screen and (max-width: 1024px) {
  .p-calender__english {
    font-size: 106px;
  }
}
@media screen and (max-width: 760px) {
  .p-calender__english {
    font-size: 56px;
  }
}
.p-calender__japanese {
  box-shadow: 2px 4px 10px rgba(56, 56, 56, 0.4);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 612px;
  height: 68px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(30deg, #f39c00, #f98808, #f6ee09);
}
@media screen and (max-width: 760px) {
  .p-calender__japanese {
    font-size: 28px;
    width: 335px;
    height: 51px;
    bottom: -32px;
  }
}

.p-know {
  padding: 60px 0;
  background-color: #efefef;
}
@media screen and (max-width: 760px) {
  .p-know {
    padding: 30px 0;
  }
}
.p-know__container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.p-know__text-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto 60px;
  max-width: 1000px;
}
@media screen and (max-width: 760px) {
  .p-know__text-content {
    gap: 30px;
    margin: 0 auto 30px;
  }
}
.p-know__h2 {
  display: inline-block;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-know__h2 {
    font-size: 24px;
  }
}
.p-know__h2::after {
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, #fbb501 0%, #f9f487 100%);
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .p-know__h2::after {
    width: 100%;
    bottom: -4.5px;
  }
}
.p-know__text {
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1.7;
  text-align: center;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .p-know__text {
    width: 100%;
    bottom: -4.5px;
  }
}
.p-know__text .orange {
  color: #f44900;
  width: 100%;
}
.p-know__slide {
  width: 700px !important;
  height: 400px;
  background-image: url("../../img/know/slide-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
}
@media screen and (max-width: 760px) {
  .p-know__slide {
    width: 335px !important;
    height: 480px;
    background-image: url("../../img/know/slide-bg-sp.png");
  }
}
.p-know__slide-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 70%;
  margin: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-know__slide-content {
    flex-direction: column;
  }
}
.p-know__slide-content.hori-rect {
  width: 90%;
}
.p-know__slide-content-img {
  overflow: hidden;
}
.p-know__slide-content-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-know__slide-content-img.vert-rect {
  height: 220px;
  width: auto;
}
.p-know__slide-content-img.hori-rect {
  width: 220px;
  height: auto;
}
.p-know__slide-content-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 760px) {
  .p-know__slide-content-text-title {
    font-size: 14px;
  }
  .p-know__slide-content-text-title span {
    font-size: 18px;
  }
}
.p-know__slide-content-text-description .bold {
  font-weight: bold;
  margin-right: 20px;
}
.p-know .swiper-page-box {
  margin-top: 80px;
}

.p-anxiety {
  padding-top: 97px;
  padding-bottom: 92px;
  background: url(../img/anxiety/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-anxiety {
    padding-top: 45px;
    padding-bottom: 45px;
    background: url(../img/anxiety/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-anxiety__h2 {
  color: #fff;
  font-size: 35px;
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
}
.p-anxiety__h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 350px;
  content: "";
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1200px) {
  .p-anxiety__h2::after {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .p-anxiety__h2::after {
    display: none;
  }
}
.p-anxiety__h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 350px;
  content: "";
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1200px) {
  .p-anxiety__h2::before {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .p-anxiety__h2::before {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .p-anxiety__h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
  }
}
.p-anxiety__group {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  max-width: 603px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-anxiety__group {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-anxiety__child {
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background-color: #fff;
  text-align: left;
  padding-right: 5px;
}
@media screen and (max-width: 760px) {
  .p-anxiety__child {
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-left: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 760px) {
  .p-anxiety__check {
    width: 16px;
    transform: translateY(-2px);
  }
}
.p-anxiety__p {
  font-size: 18px;
  font-weight: 400;
}
.p-anxiety__p span {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-anxiety__p span {
    font-size: 14px;
  }
}
@media screen and (max-width: 760px) {
  .p-anxiety__p {
    font-size: 14px;
  }
}
.p-anxiety__yellow {
  color: #f9f487;
  font-size: 40px;
  margin: -8px;
}
@media screen and (max-width: 760px) {
  .p-anxiety__yellow {
    font-size: 26px;
    margin: -5px;
  }
}
.p-anxiety__oranges {
  letter-spacing: -4px;
  margin-left: -9px;
}
@media screen and (max-width: 760px) {
  .p-anxiety__oranges {
    letter-spacing: -2.5px;
    margin-left: -5px;
  }
}
.p-anxiety__orange {
  font-size: 40px;
  color: #f39c01;
  position: relative;
}
.p-anxiety__orange::after {
  width: 7px;
  height: 7px;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f39c01;
  border-radius: 10px;
}
@media screen and (max-width: 760px) {
  .p-anxiety__orange::after {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .p-anxiety__orange {
    font-size: 26px;
  }
}
.p-anxiety__rm_margin {
  margin-right: -10px;
}

.p-fv {
  margin-top: 120px;
  padding: min(41px, 3.15vw) 0;
  background: url(../img/fv/fv.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .p-fv {
    padding-top: 24px;
    padding-bottom: 22px;
    background: url(../img/fv/fv-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
  }
}
.p-fv__container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 760px) {
  .p-fv__container {
    padding: 0 10px;
  }
}
.p-fv__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-fv__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-fv__h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  color: #201c22;
  margin: 20px 0;
}
@media screen and (max-width: 760px) {
  .p-fv__h1 {
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 13px;
  }
}
.p-fv__h1-52 {
  font-size: 40px;
  margin: 0 -11px;
}
@media screen and (max-width: 760px) {
  .p-fv__h1-52 {
    font-size: 23px;
    margin: 0 -5px;
  }
}
.p-fv__h1-ai {
  background: linear-gradient(to right, #f39c00, #f98808, #f39c00);
  padding: 0 10px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-fv__h1-ai {
    padding: 1px 5px;
  }
}
.p-fv__em-font-color {
  background: linear-gradient(to right, #f44900, #f98808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.p-fv__em-font-color span {
  font-size: min(80px, 6.15vw);
}
@media screen and (max-width: 760px) {
  .p-fv__em-font-color span {
    font-size: 50px;
  }
}
.p-fv__em-dots {
  letter-spacing: -6px;
  margin-right: 11px;
}
@media screen and (max-width: 760px) {
  .p-fv__em-dots {
    letter-spacing: -3px;
    margin-right: 5px;
  }
}
.p-fv__em-dot {
  position: relative;
}
.p-fv__em-dot::before {
  content: "";
  position: absolute;
  left: calc(50% + 3px);
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background-color: #f44900;
  border-radius: 50%;
  bottom: 100%;
  margin-bottom: -5px;
}
@media screen and (max-width: 760px) {
  .p-fv__em-dot::before {
    left: calc(50% + 1.5px);
    width: 5px;
    height: 5px;
  }
}
.p-fv__subtitle {
  position: relative;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 760px) {
  .p-fv__subtitle {
    gap: 5px;
    margin: 0 auto;
  }
}
.p-fv .ribbon {
  display: inline-block;
  padding: 5px 28px;
  border: 3px solid #f98100;
  color: #f98100;
  font-weight: bold;
  font-size: 24px;
  transform: skewX(-20deg);
  box-sizing: border-box;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 760px) {
  .p-fv .ribbon {
    padding: 5px 10px;
    border: 2px solid #f98100;
    font-size: 13px;
  }
}
.p-fv .ribbon:nth-of-type(2) {
  margin-left: 20px;
}
@media screen and (max-width: 760px) {
  .p-fv .ribbon:nth-of-type(2) {
    margin-left: 10px;
  }
}
.p-fv .ribbon span {
  display: block;
  transform: skewX(20deg);
}
.p-fv__detail {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: min(25px, 1.92vw);
  max-width: 440px;
}
@media screen and (max-width: 760px) {
  .p-fv__detail {
    display: none;
  }
}
.p-fv__img {
  width: min(740px, 56.92vw);
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  right: -70px;
}
@media screen and (max-width: 760px) {
  .p-fv__img {
    width: 100%;
    position: static;
    top: initial;
    right: initial;
    transform: initial;
    margin-bottom: 17px;
  }
}
.p-fv__button {
  width: min(496px, 38.15vw);
  display: inline-block;
  transition: all 0.3s;
}
.p-fv__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-fv__button {
    width: 100%;
  }
}
.p-fv__button-img {
  width: 100%;
}

.p-about {
  padding-top: 82px;
  padding-bottom: 146px;
  background: url(../img/about/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .p-about {
    padding-top: 45px;
    padding-bottom: 71px;
    background: url(../img/about/bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.p-about__container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 972px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.p-about__titles {
  text-align: center;
  position: relative;
  margin-bottom: 36px;
}
@media screen and (max-width: 760px) {
  .p-about__titles {
    margin-bottom: 15px;
  }
}
.p-about__japanese {
  background: linear-gradient(to right, #f39c00, #f9e108, #f39c00); /* グラデーション */
  -webkit-background-clip: text; /* 文字に適用 */
  -webkit-text-fill-color: transparent; /* 背景を文字に表示 */
  background-clip: text;
  color: transparent;
  font-size: 54px;
  font-weight: 900;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-about__japanese {
    font-size: 29px;
    top: 18px;
  }
}
.p-about__english {
  font-size: 126px;
  font-weight: 900;
  opacity: 0.17;
  color: #eecf66;
  line-height: 1;
}
@media screen and (max-width: 760px) {
  .p-about__english {
    font-size: 76px;
  }
}
.p-about__description {
  font-size: 22px;
  line-height: 1.7;
}
.p-about__description span {
  font-weight: 700;
  color: #f44900;
}
@media screen and (max-width: 1024px) {
  .p-about__description {
    font-size: 16px;
    font-weight: 700;
  }
}
.p-about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 20px;
}
@media screen and (max-width: 760px) {
  .p-about__content {
    row-gap: 0;
  }
}
.p-about__up {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.p-about__right {
  max-width: 474px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-about__right {
    max-width: 400px;
  }
}
@media screen and (max-width: 760px) {
  .p-about__right {
    display: none;
  }
}
.p-about__img-sp {
  width: 100%;
  margin-bottom: 36px;
}
.p-about__black {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .p-about__black {
    font-size: 25px;
  }
}
@media screen and (max-width: 760px) {
  .p-about__black {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }
}
.p-about__p {
  font-size: 22px;
  margin-bottom: 18px;
}
.p-about__p span {
  color: #f44900;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-about__p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 760px) {
  .p-about__p {
    margin-bottom: 0;
  }
}
.p-about__img-text {
  width: 400px;
}
@media screen and (max-width: 760px) {
  .p-about__img-text {
    width: 318px;
    margin: 0 auto;
    margin-bottom: 36px;
  }
}

.p-cam {
  text-align: center;
  padding-bottom: 40px;
  background-color: #fffaf1;
}
@media screen and (max-width: 760px) {
  .p-cam {
    padding-bottom: 30px;
  }
}
.p-cam__up {
  padding: 20px 15px;
  background: url(../img/cam/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .p-cam__up {
    padding: 10px 0;
    background: url(../img/cam/bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.p-cam__up-text {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .p-cam__up-text {
    width: 90%;
  }
}
.p-cam__down {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 46px;
       column-gap: 46px;
  padding: 75px 20px 0;
}
@media screen and (max-width: 760px) {
  .p-cam__down {
    padding-top: 30px;
    row-gap: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-cam__child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-cam__child {
    align-items: flex-start;
    width: 100%;
  }
}
.p-cam__text-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  line-height: 1;
  margin: 0 auto 15px;
}
.p-cam__img {
  max-width: 559px;
  width: 100%;
}
.p-cam__number {
  padding: 10px 10px 20px;
  background: #f8f180;
  color: #e8661c;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
@media screen and (max-width: 760px) {
  .p-cam__number {
    font-size: 28px;
    padding: 5px 10px 15px;
  }
}
.p-cam__content {
  font-size: 32px;
  font-weight: 700;
  color: #734000;
  letter-spacing: 0.1em;
  transform: skewX(-15deg);
}
.p-cam__content .orange-1 {
  color: #f66103;
  font-size: 50px;
}
.p-cam__content .orange-2 {
  color: #f66103;
  font-size: 35px;
}
.p-cam__content .big {
  font-size: 40px;
}
.p-cam__content .big2 {
  font-size: 35px;
}
@media screen and (max-width: 760px) {
  .p-cam__content {
    font-size: 24px;
  }
  .p-cam__content .orange-1 {
    font-size: 40px;
  }
  .p-cam__content .orange-2 {
    font-size: 32px;
  }
  .p-cam__content .big2 {
    font-size: 30px;
  }
}
.p-cam__content_wrapper {
  position: relative;
}
.p-cam__content_sub {
  position: absolute;
  color: #f66201;
  font-size: 20px;
  font-weight: 700;
  top: -45px;
  left: 20px;
  transform: skewX(-15deg);
  padding: 0 5px 5px;
}
.p-cam__content_sub .big {
  font-size: 25px;
}
.p-cam__content_sub::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: #f0cf85;
}
.p-cam__content_sub::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: -11px;
  width: 18px;
  height: 10px;
  background: #fffaf1;
  transform: skew(-35deg);
  border-right: 5px solid #f0cf85;
}
.p-cam__button {
  width: 495px;
  display: inline-block;
  margin-top: 50px;
}
@media screen and (max-width: 760px) {
  .p-cam__button {
    margin-top: 30px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-cam__button-img {
  width: 100%;
}
.p-cam__kome {
  font-size: 14px;
  text-align: center;
  padding-top: min(30px, 2.31vw);
  opacity: 0.6;
}
@media screen and (max-width: 760px) {
  .p-cam__kome {
    font-size: 12px;
    padding-top: 15px;
  }
}

.p-teacher {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 96px;
  background: url(../img/teacher/bg.png);
  background-position: center;
  background-size: center;
}
@media screen and (max-width: 760px) {
  .p-teacher {
    padding-top: 78px;
    padding-bottom: 77px;
    background: url(../img/teacher/bg-sp.png);
    background-position: center;
    background-size: center;
  }
}
.p-teacher__title {
  margin-bottom: 50px;
}
.p-teacher__actual-photo {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.p-teacher__content {
  background-color: #fff;
  padding-top: 16px;
  min-height: 195px;
  height: 100%;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}
.p-teacher__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.p-teacher__description {
  font-size: 17px;
  letter-spacing: 0.07em;
  padding-left: 18px;
  padding-right: 18px;
  text-align: left;
  font-weight: 500;
}
.p-teacher__text {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.p-teacher__text span {
  color: #f44900;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-teacher__text {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
  }
}
.p-teacher__sub-text {
  font-size: 18px;
  color: #666666;
  margin-bottom: 45px;
}
@media screen and (max-width: 760px) {
  .p-teacher__sub-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }
}
.p-teacher__swiper {
  padding-bottom: 80px;
}

.swiper-pagination {
  bottom: 15px !important;
}
@media screen and (max-width: 760px) {
  .swiper-pagination {
    bottom: 8px !important;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #888888;
  margin-right: 20px !important;
  margin-left: 0 !important;
}
@media screen and (max-width: 760px) {
  .swiper-pagination .swiper-pagination-bullet {
    margin-right: 15px !important;
  }
}

.swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background-color: #f39c01 !important;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
  bottom: 0;
  top: initial;
}
@media screen and (max-width: 760px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 33px;
    width: 33px;
  }
}

.swiper-button-prev {
  left: 34%;
}
@media screen and (max-width: 1300px) {
  .swiper-button-prev {
    left: 23%;
  }
}
@media screen and (max-width: 760px) {
  .swiper-button-prev {
    left: 25px;
  }
}

.swiper-button-next {
  right: 35%;
}
@media screen and (max-width: 1300px) {
  .swiper-button-next {
    right: 25%;
  }
}
@media screen and (max-width: 760px) {
  .swiper-button-next {
    right: 25px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
@media screen and (max-width: 760px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 33px;
    width: 33px;
  }
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/teacher/prev.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/teacher/next.svg);
}

.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__logo-group {
  width: 18rem;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}
.l-hamburger__logo {
  width: 100%;
  display: inline-block;
}
.l-hamburger__contact {
  margin: 0 auto;
  width: 350px;
  margin-top: 2.5rem;
}
.l-hamburger__contact-p {
  margin: 0 auto;
  font-size: 2rem;
}
.l-hamburger__nav {
  position: fixed;
  background-color: #fff;
  color: #383838;
  width: 100%;
  height: 100%;
  z-index: 50;
  opacity: 0;
  top: -150rem;
  transition: all 0.7s;
}
.l-hamburger__ul {
  text-align: center;
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 760px) {
  .l-hamburger__ul {
    padding-top: 70px;
  }
}
.l-hamburger__li {
  position: relative;
  border-top: 1px solid #383838;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.l-hamburger__li--special {
  border-bottom: 1px solid #383838;
}
.l-hamburger__li.is-open .l-hamburger__submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.l-hamburger__li.is-open .l-hamburger__arrow {
  transform: rotate(180deg);
}
.l-hamburger__a {
  color: #383838;
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .l-hamburger__a {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__a {
    font-size: 1.8rem;
  }
}
.l-hamburger__arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
  transform-origin: center 3px;
}
.l-hamburger__submenu-li {
  padding-bottom: 0 !important;
}
.l-hamburger__submenu-li--2 {
  margin-top: 2rem;
}
.l-hamburger__button {
  background-color: #f39c01;
  cursor: pointer;
  width: 7rem;
  height: 7rem;
  border: none;
  border-radius: 50%;
  position: fixed;
  right: 3%;
  top: 4.5rem;
  z-index: 100;
  transition: all 0.5s;
  transform: translateY(-2rem);
}
@media screen and (max-width: 760px) {
  .l-hamburger__button {
    display: inline-block;
    width: 4.4rem;
    height: 4.4rem;
    top: 3.2rem;
  }
}
.l-hamburger__hum {
  height: 3px;
  width: 3rem;
  background-color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 1.8rem;
  z-index: 100;
}
.l-hamburger__hum::before, .l-hamburger__hum::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 3rem;
  background-color: #fff;
  position: absolute;
  top: -1rem;
  left: 0;
  transition: all 0.25s;
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum::before, .l-hamburger__hum::after {
    width: 16px;
    height: 1px;
    top: -0.6rem;
  }
}
.l-hamburger__hum::after {
  top: 1rem;
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum::after {
    top: 0.6rem;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum {
    width: 16px;
    height: 1px;
    margin-top: 1.8rem;
  }
}

.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
}

.open .l-hamburger__button span {
  background-color: transparent;
}

.open .l-hamburger__button span::before {
  transform: translateY(1rem) rotate(-315deg);
}
@media screen and (max-width: 760px) {
  .open .l-hamburger__button span::before {
    transform: translateY(0.6rem) rotate(-315deg);
  }
}

.open .l-hamburger__button span::after {
  transform: translateY(-1rem) rotate(315deg);
}
@media screen and (max-width: 760px) {
  .open .l-hamburger__button span::after {
    transform: translateY(-0.6rem) rotate(315deg);
  }
}

.p-reason {
  padding-top: 51px;
  padding-bottom: 125px;
}
@media screen and (max-width: 760px) {
  .p-reason {
    padding-top: 44px;
    padding-bottom: 81px;
  }
}
.p-reason__container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1110px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-reason__titles {
  position: relative;
  text-align: center;
}
.p-reason__titles::after {
  content: "";
  height: 6px;
  width: 530px;
  background-color: #fcecbd;
  position: absolute;
  top: 50%;
  right: 0;
}
@media screen and (max-width: 1700px) {
  .p-reason__titles::after {
    width: 400px;
  }
}
@media screen and (max-width: 1430px) {
  .p-reason__titles::after {
    width: 350px;
  }
}
@media screen and (max-width: 1300px) {
  .p-reason__titles::after {
    display: none;
  }
}
.p-reason__titles::before {
  content: "";
  height: 6px;
  width: 530px;
  background-color: #fcecbd;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .p-reason__titles::before {
    width: 400px;
  }
}
@media screen and (max-width: 1430px) {
  .p-reason__titles::before {
    width: 350px;
  }
}
@media screen and (max-width: 1300px) {
  .p-reason__titles::before {
    display: none;
  }
}
.p-reason__h2 {
  font-size: 120px;
  font-weight: 800;
  color: rgba(245, 234, 17, 0.2);
}
@media screen and (max-width: 760px) {
  .p-reason__h2 {
    font-size: 62px;
  }
}
.p-reason__sub-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
  font-weight: 700;
  font-size: 42px;
  background: linear-gradient(to bottom, #f44900, #fbb501);
  -webkit-background-clip: text; /* Safari / Chrome 用 */
  background-clip: text; /* 標準 */
  color: transparent;
  width: 100%;
}
.p-reason__sub-title span {
  font-size: 34px;
}
@media screen and (max-width: 760px) {
  .p-reason__sub-title span {
    font-size: 26px;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__sub-title {
    font-size: 26px;
    width: 100%;
    top: 13px;
    line-height: 1.3;
  }
}
.p-reason__up {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 63px;
}
@media screen and (max-width: 760px) {
  .p-reason__up {
    margin-bottom: 52px;
  }
}
.p-reason__left {
  padding-top: 45px;
  max-width: 426px;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-reason__left {
    text-align: center;
    padding-top: 8px;
  }
}
.p-reason__small-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.p-reason__small-title span {
  color: #f44900;
}
@media screen and (max-width: 760px) {
  .p-reason__small-title {
    font-size: 16px;
  }
}
.p-reason__h3 {
  display: inline-block;
  font-weight: 500;
  color: #f44900;
  font-size: 30px;
  margin-bottom: 15px;
  background: linear-gradient(to bottom, transparent 50%, rgba(245, 234, 17, 0.5) 50%, rgba(245, 234, 17, 0.5) 90%, transparent 90%);
}
@media screen and (max-width: 900px) {
  .p-reason__h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__h3 {
    font-size: 24px;
  }
}
.p-reason__img {
  width: 472px;
}
@media screen and (max-width: 900px) {
  .p-reason__img {
    width: 330px;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__img {
    width: 280px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
.p-reason__description {
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  max-width: 390px;
}
@media screen and (max-width: 900px) {
  .p-reason__description {
    font-size: 16px;
    max-width: initial;
    margin: 0 auto;
    text-align: left;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__description {
    width: 312px;
  }
}

.p-graph {
  padding-top: 81px;
  padding-bottom: 115px;
  background-color: #fffbf8;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-graph {
    padding-top: 40px;
    padding-bottom: 81px;
  }
}
.p-graph__container {
  max-width: 1140px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 51px;
}
@media screen and (max-width: 760px) {
  .p-graph__container {
    margin-top: 42px;
  }
}
.p-graph__h2 {
  font-size: 45px;
  font-weight: 700;
  background: linear-gradient(transparent 50%, rgba(245, 234, 17, 0.5) 50%, rgba(245, 234, 17, 0.5) 85%, transparent 85%);
  display: inline;
}
@media screen and (max-width: 1024px) {
  .p-graph__h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 760px) {
  .p-graph__h2 {
    font-size: 26px;
  }
}
.p-graph__h2--orange {
  background: linear-gradient(to bottom, #f44900, #fbb501);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-right: -30px;
}
@media screen and (max-width: 760px) {
  .p-graph__h2--orange {
    margin-right: -15px;
  }
}
.p-graph__h2--orange span {
  background: linear-gradient(to bottom, #f44900, #fbb501);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.p-graph__h2--orange span::after {
  width: 7px;
  height: 7px;
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% + 3px);
  transform: translateX(-50%);
  background-color: #f98808;
  border-radius: 10px;
}
@media screen and (max-width: 760px) {
  .p-graph__h2--orange span::after {
    width: 4px;
    height: 4px;
    left: calc(50% + 3px);
  }
}
.p-graph__h2--orange.em-dots {
  letter-spacing: -8px;
  margin: 0px 1px 0 -15px;
}
@media screen and (max-width: 760px) {
  .p-graph__h2--orange.em-dots {
    letter-spacing: -4px;
    margin: 0px 1px 0 6px;
  }
}
.p-graph__graph {
  width: 1100px;
}
@media screen and (max-width: 760px) {
  .p-graph__graph {
    height: 546px;
    width: 800px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-graph__graph-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-graph__kome {
  font-size: 14px;
  text-align: right;
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  margin: 20px auto 0;
}
@media screen and (max-width: 760px) {
  .p-graph__kome {
    font-size: 12px;
    margin-right: 20px;
  }
}

.p-voice {
  text-align: center;
  padding-top: 27px;
  padding-bottom: 96px;
  background-color: #fffbf8;
  background: url(../img/voice/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .p-voice {
    padding-top: 12px;
    padding-bottom: 40px;
    background: url(../img/voice/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-voice__titles {
  position: relative;
  width: 100%;
  margin-bottom: 52px;
}
@media screen and (max-width: 760px) {
  .p-voice__titles {
    margin-bottom: 52px;
  }
}
.p-voice__english {
  width: 100%;
  opacity: 0.2;
  font-size: 180px;
  font-weight: 700;
  background: linear-gradient(to bottom, #f5ea11, #f39c01);
  -webkit-background-clip: text; /* Safari / Chrome 用 */
  background-clip: text; /* 標準 */
  color: transparent;
}
@media screen and (max-width: 760px) {
  .p-voice__english {
    font-size: 110px;
  }
}
.p-voice__slide {
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}
.p-voice__japanese {
  width: 100%;
  position: absolute;
  font-size: 40px;
  top: 141px;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 760px) {
  .p-voice__japanese {
    font-size: 20px;
    top: 97px;
  }
}
.p-voice__japanese span {
  background: linear-gradient(to bottom, #f44900, #fbb501);
  -webkit-background-clip: text; /* Safari / Chrome 用 */
  background-clip: text; /* 標準 */
  color: transparent;
}
@media screen and (max-width: 760px) {
  .p-voice__japanese span {
    font-size: 24px;
  }
}
.p-voice__swiper {
  padding-bottom: 85px;
}
@media screen and (max-width: 760px) {
  .p-voice__swiper {
    padding-bottom: 50px;
  }
}
.p-voice__actual-photo {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voice__content {
  background-color: #fff;
  padding: 16px 16px;
  min-height: 220px;
  height: 100%;
  text-align: left;
}
.p-voice__content span {
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .p-voice__content {
    min-height: 230px;
  }
}
@media screen and (max-width: 1024px) {
  .p-voice__content {
    min-height: 200px;
  }
}
@media screen and (max-width: 800px) {
  .p-voice__content {
    min-height: 260px;
  }
}
@media screen and (max-width: 760px) {
  .p-voice__content {
    min-height: 260px;
  }
}
.p-voice__heading {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .p-voice__heading {
    font-size: 15px;
  }
}
.p-voice__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #383838;
}
.p-voice__text span {
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .p-voice__text {
    font-size: 14px;
    font-weight: 400;
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 31px;
  }
}
.p-voice__icons {
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-size: 12px;
  padding: 5px 0;
}
.p-voice__gender-age {
  padding: 1px 15px;
  background-color: #fadecc;
  border-radius: 30px;
}
.p-voice__genre {
  padding: 1px 15px;
  background-color: #fcecbd;
  border-radius: 30px;
}

.p-make {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 96px;
  background-color: #fffbf8;
}
@media screen and (max-width: 760px) {
  .p-make {
    padding-top: 78px;
    padding-bottom: 77px;
  }
}
.p-make__title {
  margin-bottom: 50px;
}
.p-make__text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 35px;
  line-height: 1.8;
}
.p-make__text span {
  color: #f44900;
}
@media screen and (max-width: 760px) {
  .p-make__text {
    font-size: 14px;
    font-weight: 400;
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 31px;
  }
}
.p-make__sub-text {
  font-size: 18px;
  color: #666666;
  margin-bottom: 45px;
}
@media screen and (max-width: 760px) {
  .p-make__sub-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }
}
.p-make__swiper {
  padding-bottom: 85px;
}
@media screen and (max-width: 760px) {
  .p-make__swiper {
    padding-bottom: 50px;
  }
}

.p-flow {
  background-color: #fff3e7;
  padding-top: 59px;
  padding-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .p-flow {
    padding-top: 41px;
    padding-bottom: 60px;
  }
}
.p-flow__container {
  max-width: 1110px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
.p-flow__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  -moz-column-gap: 60px;
       column-gap: 60px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-flow__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 760px) {
  .p-flow__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 36px;
  }
}
.p-flow__child {
  text-align: center;
  width: 200px;
  row-gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-flow__child {
    row-gap: 7px;
    width: 221px;
  }
}
.p-flow__line {
  position: absolute;
  width: 789px;
  left: 50%;
  transform: translateX(-50%);
  top: 24%;
}
@media screen and (max-width: 760px) {
  .p-flow__line {
    display: none;
  }
}
.p-flow__img {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-flow__img {
    width: 165px;
  }
}
.p-flow__number {
  font-weight: 700;
  font-size: 36px;
  color: #f39c01;
  position: absolute;
  top: -10px;
  left: 0;
}
@media screen and (max-width: 760px) {
  .p-flow__number {
    font-size: 33px;
  }
}
.p-flow__h3 {
  font-size: 18px;
  color: #f44900;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .p-flow__h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .p-flow__h3 {
    font-size: 17px;
  }
}
.p-flow__description {
  font-size: 14px;
  color: #383838;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 900px) {
  .p-flow__description {
    font-size: 13px;
  }
}

.p-community {
  padding-top: 82px;
  padding-bottom: 89px;
  background: url(../img/community/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .p-community {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../img/community/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-community__title {
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .p-community__title {
    margin-bottom: 40px;
  }
}
.p-community__container {
  max-width: 1110px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.p-community__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-community__wrap {
    flex-direction: column;
    align-items: center;
    row-gap: 42px;
  }
}
.p-community__img {
  width: 522px;
}
.p-community__text {
  max-width: 428px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
.p-community__text span {
  font-weight: 700;
  color: #f44900;
}
@media screen and (max-width: 1024px) {
  .p-community__text {
    font-size: 16px;
  }
}

.p-cari__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 33px;
       column-gap: 33px;
}
@media screen and (max-width: 760px) {
  .p-cari__group {
    row-gap: 33px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-cari__img {
  width: 307px;
}
@media screen and (max-width: 900px) {
  .p-cari__img {
    width: 220px;
  }
}
@media screen and (max-width: 760px) {
  .p-cari__img {
    width: 255px;
  }
}
.p-cari__title {
  margin-bottom: 36px;
}

.p-benefit {
  background-color: #fff;
}
.p-benefit__header {
  background: linear-gradient(to right, #f39c00 0%, #f98808 46%, #f6ee09 100%);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px 0;
}
.p-benefit__header h2 {
  font-size: 36px;
  letter-spacing: 1.5px;
}
.p-benefit__header .big {
  font-size: 48px;
}
@media screen and (max-width: 760px) {
  .p-benefit__header h2 {
    font-size: 24px;
  }
  .p-benefit__header .big {
    font-size: 32px;
  }
}
.p-benefit__content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 760px) {
  .p-benefit__content {
    flex-direction: column;
    padding: 27px 0;
    gap: 40px;
  }
}
.p-benefit__content-left {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media screen and (max-width: 760px) {
  .p-benefit__content-left {
    width: 90%;
    margin: 0 auto;
  }
}
.p-benefit__content-left-text {
  text-align: center;
  padding: 8px 20px;
  border: 1px solid #f44900;
  color: #f44900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .p-benefit__content-left-text {
    font-size: 14px;
    padding: 4px 10px;
  }
}
.p-benefit__content-left-img-notice p,
.p-benefit__content-left-img-notice a {
  color: #383838;
  opacity: 0.6;
  text-align: center;
}
.p-benefit__content-left-img-notice p {
  font-size: 12px;
}
.p-benefit__content-left-img-notice a {
  display: block;
  font-size: 9px;
}
@media screen and (max-width: 760px) {
  .p-benefit__content-left-img-notice p {
    font-size: 10px;
  }
  .p-benefit__content-left-img-notice a {
    font-size: 8px;
  }
}
.p-benefit__content-right {
  color: #383838;
  font-size: 18px;
  max-width: 30rem;
  margin: auto 0;
}
.p-benefit__content-right .orange {
  color: #f44900;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .p-benefit__content-right {
    max-width: 90%;
    margin: 0 auto;
    font-size: 16px;
  }
}

.p-course {
  background-color: #fffbf8;
  padding: 110px 0;
}
@media screen and (max-width: 760px) {
  .p-course {
    padding: 60px 0 30px;
  }
}
.p-course__title {
  margin-bottom: 50px;
}
.p-course__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.p-course__pricing-tabs {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
  width: calc(100% - 40px);
}
@media screen and (max-width: 760px) {
  .p-course__pricing-tabs {
    flex-direction: column;
    gap: 10px;
    width: 90%;
    margin: 0 auto 20px;
  }
}
.p-course__tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  margin: 0 4px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.2s;
}
.p-course__tab.life {
  background-color: #fef0d9;
  color: #f39c01;
}
.p-course__tab.freelance {
  background-color: #feedda;
  color: #f98807;
}
.p-course__tab.expert {
  background-color: #fee4d9;
  color: #f44900;
}
.p-course__tab.life.active {
  background-color: #f39c01;
  color: #fff;
}
.p-course__tab.freelance.active {
  background-color: #f98807;
  color: #fff;
}
.p-course__tab.expert.active {
  background-color: #f44900;
  color: #fff;
}
.p-course__course-table {
  width: calc(100% - 40px);
  border-collapse: collapse;
  margin: 0 auto 20px;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 760px) {
  .p-course__course-table {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.p-course__course-table.hidden {
  display: none;
}
.p-course__course-table th, .p-course__course-table td {
  border-bottom: 1px solid #e2e2e2;
  padding: 30px 16px;
}
@media screen and (max-width: 760px) {
  .p-course__course-table th, .p-course__course-table td {
    padding: 10px;
  }
}
.p-course__course-table th {
  background: #3b3b3b;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  width: 25%;
}
@media screen and (max-width: 760px) {
  .p-course__course-table th {
    font-size: 12px;
  }
}
.p-course__course-table td {
  background: #fff;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-course__course-table td {
    font-size: 14px;
  }
}
.p-course__course-table ul {
  padding-left: 20px;
  margin: 0;
}
.p-course__course-table ul li {
  margin-bottom: 6px;
}
.p-course .price-cells {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-course .price-cells {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-course .price-cell {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.p-course .price-orange {
  background-color: #f44900;
  color: #fff;
  font-weight: bold;
  padding: 2px 4px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .p-course .price-orange {
    font-size: 16px;
  }
}
.p-course .bold {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 1px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 760px) {
  .p-course .bold {
    font-size: 20px;
  }
}
.p-course .no-margin {
  margin-top: 16px;
  margin-left: -14px;
  font-size: 10px;
}
@media screen and (max-width: 760px) {
  .p-course .no-margin {
    margin-top: 14px;
  }
}
.p-course .check-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}
.p-course .check-list li {
  position: relative;
  padding-left: 26px;
}
.p-course .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../img/course/check.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-course .no-check-list li {
  margin-bottom: 12px;
  font-weight: 500;
}
.p-course .no-check-list li:last-child {
  margin-bottom: 0;
}
.p-course .course-num,
.p-course .support-period {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 760px) {
  .p-course .course-num,
  .p-course .support-period {
    font-size: 14px;
  }
}
.p-course .tool-cell-freelance {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */