@charset "UTF-8";

/*
COLORS
================================================ */
:root {
  --pink: #DB506D;
  --dark-pink:#cd4160;
  --light-pink1: #F9EDF0;
  --light-pink2: #F4E6E9;
  --brown: #4C281F;
  --grey: #F7F7F7;
  --dark-grey: #C4C4C4;
  --white: #fff;
  --black: #000;
}

/*
GENERAL STYLING
================================================ */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family:"Noto Serif JP",'Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
	color: var(--black);
}
.font-NotoSans {
  font-family: "Noto Sans JP", sans-serif;
}

/*
COMMON
================================================ */
@media (768px <= width) {
  .sp {
    display: none !important;
  }
}
@media (width < 768px) {
  .pc {
    display: none !important;
  }
}
p {
  line-height: 2;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

/* Layout */
main {
  font-size: 2.0rem;
}
.inner {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Button */
.btn {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 350px;
  color: var(--white);
  text-align: center;
  background: var(--pink);
  border-radius: 30px;
  box-sizing: border-box;
}
.btn:hover {
  background: var(--dark-pink);
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow.svg);
  background-size: 24px 24px;
  transition: 0.3s ease-in-out;
}

/* Title */
.title {
  color: var(--pink);
  text-align: center;
  font-size: 3.6rem;
}
.titleS {
  margin-bottom: 30px;
  color: var(--pink);
  text-align: center;
  font-size: 2.4rem;
}
.titleSS {
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom:15px;
  color: var(--pink);
  text-align: center;
  font-size: 2.4rem;
  border-bottom: 2px solid var(--pink);
}

.title-underline {
  margin-bottom: 40px;
  font-size: 3.6rem;
  line-height: 1.4;
  color: var(--pink);
  text-align: center;
}
.title-underline .marker {
  display: inline;
  background: linear-gradient(transparent 40%, var(--white) 40%);
}

/*
HERO
================================================ */
#hero {
  padding: 20px 0 0;
  background-image: url(../img/bg_hero.jpg);
  background-position: top left;
  background-size: cover;
}
#hero .inner {
  padding: 0 0 0 40px;
}
#hero .hero_inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
#hero .hero_inner::after {
  content: "";
  display: block;
  background-image: url(../img/img_otsukaAkie.png);
  background-image: image-set(url(../img/img_otsukaAkie.png) 1x, url(../img/img_otsukaAkie@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/img_otsukaAkie.png) 1x, url(../img/img_otsukaAkie@2x.png) 2x);
  width: 366px;
  height: 478px;
  background-size: 366px 478px;
}
#hero .hero__title01 {
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 4.8rem;
  letter-spacing: 0;
  line-height: 1;
}
#hero .hero__title01 span {
  font-size: 4.0rem;
}
#hero .hero__title02 {
  margin-bottom: 26px;
  color: var(--pink);
  font-size: 6.7rem;
  letter-spacing: 0;
  line-height: 1.2;
}
#hero .hero__text {
  margin-bottom: 30px;
  color: var(--brown);
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.5;
}
#hero .btn {
  margin: 0;
  padding: 25px 0 25px 38px;
  font-weight: 700;
  text-align: left;
  border-radius: 35px;
}

/*
TROUBLE
================================================ */
#trouble {
  position: relative;
  margin-bottom: 75px;
  padding: 65px 0 45px;
  background: var(--grey);
}
#trouble::after {
  content: "";
  position: absolute;
  bottom: -75px;
  left: 0;
  width: 100%;
  height: 75px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--grey);
}
#trouble .trouble__title {
  margin-bottom: 50px;
  color: var(--pink);
  text-align: center;
}
#trouble .trouble__list {
  margin: 0 auto;
  max-width: 640px;
  font-size: 2.4rem;
}
#trouble .trouble__item {
  display: flex;
  align-items: center;
  line-height: 1.3;
}
#trouble .trouble__item + .trouble__item {
  margin-top: 14px;
}
#trouble .trouble__item::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  margin-right: 14px;
  background-image: url(../img/icon-check.svg);
  width: 26px;
  height: 31px;
  background-size: 26px 31px;
}

/*
STUDY
================================================ */
#study {
  padding: 45px 0 170px;
}
#study .study__title {
  margin-bottom: 96px;
  font-weight: 700;
}
#study .study__inner {
  display: flex;
  gap: 0 40px;
}
#study .study__figure {
  flex-shrink: 0;
  margin-left: -50px;
  width: 610px;
}
#study .study__sub-title {
  margin-bottom: 20px;
  color: var(--pink);
  font-size: 3.6rem;
  line-height: 1.4;
}


/*
ISSUE
================================================ */
#issue {
  padding: 85px 0;
  background: linear-gradient(332deg, var(--light-pink2) 0%, var(--light-pink2) 50%, var(--light-pink1) 50%, var(--light-pink1) 100%);
}
#issue .issue__title {
  margin-bottom: 45px;
}
#issue .issue__text {
  margin: 0 auto;
  max-width: 700px;
}


/*
GOAL
================================================ */
#goal {
  padding: 80px 0;
}
#goal .goal__title {
  margin-bottom: 80px;
  color: var(--black);
  font-weight: 700;
}
#goal .goal__list {
  display: flex;
  gap: 0 50px;
  margin-bottom: 66px;
}
#goal .goal__item {
  counter-increment: no;
  width: 330px;
}
#goal .goal__figure {
  position: relative;
  margin-bottom: 28px;
}
#goal .goal__figure::before {
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 0;
  content: counter(no);
  display: block;
  width: 70px;
  height: 70px;
  font-size: 3.2rem;
  color: var(--white);
  text-align: center;
  background: var(--pink);
  border-radius: 50%;
  box-sizing: border-box;
}
#goal .goal__text {
  line-height: 1.6;
  font-weight: 500;
}

/*
PROFILE
================================================ */
#profile {
  padding: 80px 0;
  background: var(--grey);
}
#profile .profile__title {
  margin-bottom: 20px;
  color: var(--pink);
  font-size: 2.4rem;
  text-align: center;
}
#profile .profile__name {
  margin-bottom: 45px;
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
}
#profile .profile__img {
  display: block;
  margin: 0 auto 60px;
  max-width: 500px;
}
#profile .profile__text {
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.9;
}

/*
RECOMMEND
================================================ */
#recommend {
  padding: 80px 0;
}
#recommend .recommend__title {
  margin-bottom: 70px;
}
#recommend .recommend__inner {
  position: relative;
  padding: 35px 0;
  background-image: url(../img/img_recommend.jpg);
  background-image: image-set(url(../img/img_recommend.jpg) 1x, url(../img/img_recommend@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/img_recommend.jpg) 1x, url(../img/img_recommend@2x.jpg) 2x);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 614px 502px;
}
#recommend .recommend__list {
  margin-bottom: 30px;
  max-width: 580px;
  padding: 30px 28px;
  font-size: 2.8rem;
  line-height: 1.7;
  background: var(--white);
  border: 1px solid var(--pink);
  box-sizing: border-box;
}
#recommend .recommend__item {
  margin-left: 1em;
  text-indent: -1em;
}
#recommend .recommend__item::before {
  content: "・";
}
#recommend .recommend__emphasis {
  color: var(--pink);
}
#recommend .recommend__example {
  padding: 25px 30px;
  max-width: 580px;
  color: var(--white);
  background: var(--pink);
  box-sizing: border-box;
}
#recommend .recommend__example-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--white);
}

/*
SUPPORT
================================================ */
#support {
  padding: 80px 0;
  background: linear-gradient(332deg, var(--light-pink2) 0%, var(--light-pink2) 50%, var(--light-pink1) 50%, var(--light-pink1) 100%);
}
#support .support__title {
  margin-bottom: 60px;
}
#support .support__list {
  display: flex;
  justify-content: center;
  gap: 0 36px;
  margin-bottom: 60px;
}
#support .support__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 262px;
  height: 262px;
  text-align: center;
  font-weight: 500;
  border: 1px solid var(--pink);
  background: var(--white);
  border-radius: 50%;
}
#support .support__item p {
  line-height: 1.6;
}
#support .support__emphasis {
  color: var(--pink);
}

/*
ABOUT
================================================ */
#about {
  padding: 80px 0;
  background: var(--grey);
}
#about .about__list {
  margin: 0 auto;
  padding: 30px 26px;
  max-width: 900px;
  background: var(--white);
  box-sizing: border-box;
}
#about .about__item {
  padding: 12px 0;
}
#about .about__item:not(:last-of-type) {
  border-bottom: 1px solid var(--dark-grey);
}

/*
CURRICULUM
================================================ */
#curriculum {
  padding: 0 0 60px;
  background: var(--grey);
}
#curriculum .curriculum__inner {
  margin: 0 auto 40px;
  max-width: 900px;
  padding: 20px 26px;
  background: var(--white);
  box-sizing: border-box;
}
#curriculum .curriculum__item {
  font-size: 2.4rem;
  line-height: 150%;
}
#curriculum .curriculum__item span{
  font-size: 2.0rem;
}
#curriculum .curriculum__item:not(:last-of-type) {
  border-bottom: 1px solid var(--dark-grey);
}
#curriculum .curriculum__no {
  min-width: 100px;
  padding: 20px 30px 20px 0;
  color: var(--pink);
}
#curriculum .curriculum__text {
  padding: 20px 0;
}
#curriculum .curriculum__cw {
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.7;
}
.curriculum__cw span {
  color: var(--pink);
}
.curriculum__table{
  width: 100%;
}
#curriculum .curriculum__note {
  font-size:1.6rem;
  text-align: center;
  margin-top:-20px;
  padding: 0 0 30px 0;
}

/*
MESSAGE
================================================ */
#message .l-message {
  margin-bottom: 60px;
  padding: 70px 0;
  background-image: url(../img/bg_message.jpg);
  background-image: image-set(url(../img/bg_message.jpg) 1x, url(../img/bg_message@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/bg_message.jpg) 1x, url(../img/bg_message@2x.jpg) 2x);
  background-size: cover;
  background-position: center;
}
#message .message__inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px 45px;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
}
#message .message__title {
  margin-bottom: 40px;
}

/*
FAQ
================================================ */
#faq {
  padding: 90px 0 75px;
}
#faq .faq__list {
  margin: 0 auto;
  max-width: 960px;
}
#faq .faq__title {
  margin-bottom: 50px;
}
#faq .faq__q {
  color: var(--white);
  background: var(--pink);
}
#faq .faq__q,
#faq .faq__a {
  position: relative;
  line-height: 1.5;
}
#faq .faq__q {
  padding: 15px 10px 15px 90px;
}
#faq .faq__a {
  padding: 30px 10px 30px 90px;
}
#faq .faq__q::before,
#faq .faq__a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: inline-block;
  padding: 10px 0;
  line-height: 1;
  width: 68px;
  height: 68px;
  color: var(--pink);
  font-size: 3.6rem;
  text-align: center;
  background: var(--white);
  border-radius: 50%;
  box-sizing: border-box;
}
#faq .faq__q::before {
  content: "Q";
  border: 2px solid var(--pink);
}
#faq .faq__a::before {
  content: "A";
}

/*
FOOTER
================================================ */
#footer {
  padding: 22px 0;
  color: var(--white);
  text-align: center;
  background: var(--black);
}