.pc {
  display: block;
}
.sp {
  display: none;
}
#wrapper {
  padding-bottom: 9rem;
}
header {
  max-width: 1920px;
  width: 100%;
  height: 700px;
  margin: 0 auto;
  background-image: url("../img/mv_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  aspect-ratio: 1920 / 700;
}
h1 {
  width: 249px;
  margin: 2rem auto;
}
.cmn_num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  color: #fff;
  font-size: 37px;
  font-family: "Beyond Infinity - Demo";
  letter-spacing: 0.03em;
}
.cmn_tags {
  padding: 0 15px;
}
.cmn_tags .tag {
  position: relative;
  display: block;
  border: 1px solid #36b79f;
  color: #36b79f;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
.cmn_tags .tag:first-child::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -18px;
  width: 150px;
  height: 69px;
  background: url(../img/part02.png) no-repeat center center/contain;
}
.cmn_table {
  width: 100%;
  border: 1px solid #cc759d;
}
.cmn_table tr + tr:not(:nth-child(2)) {
  border-top: 1px solid #e65078;
}
.cmn_table tr > * {
  vertical-align: middle;
}
.cmn_table th {
  padding: 19px 15px;
  background-color: #cc759d;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
.cmn_table th:first-child {
  width: 15.6%;
}
.cmn_table th:nth-child(2) {
  width: 24%;
}
.cmn_table th:nth-child(3) {
  width: 24%;
}
.cmn_table th:last-child {
  width: 36.4%;
}
.cmn_table th + th {
  border-left: 1px solid #fff;
}
.cmn_table td {
  padding: 15.6px 15px;
  background-color: #fff;
  line-height: 1.8;
  text-align: center;
}
.cmn_table td + td {
  border-left: 1px solid #cc759d;
}
.cmn_table td:last-child {
  padding: 15.6px 20px;
  text-align: left;
}
.cmn_table tr:nth-child(odd) td {
  background-color: #fff7f9;
}
.h2_g {
  text-align: center;
}
.h2_g h2 {
  font-size: 38px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}
.att_mark {
  font-size: 0.5em;
  vertical-align: top;
}
.span_br {
  display: inline-block;
}
/*-----ハンバーガーメニュー-----*/
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(16vw, 8rem);
  height: min(16vw, 7rem);
  cursor: pointer;
  background-color: rgba(204, 117, 157, 0.9);
}
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s;
}
.hamburger.is-active span {
  background-color: #fff;
}
.hamburger span:nth-child(1) {
  top: 30%;
}
.hamburger span:nth-child(2) {
  top: 50%;
}
.hamburger span:nth-child(3) {
  top: 70%;
}
.drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  width: min(30%, 30rem);
  height: fit-content;
  background-color: #cc759d;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer.is-active {
  visibility: visible;
  opacity: 1;
}
.drawer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.drawer__link {
  color: #555;
}
.drawer__item {
  text-align: center;
}
.drawer__item a {
  color: #fff;
}
.mv_area {
  position: relative;
}
.mv_area .img {
  max-width: 1280px;
  margin: 0 auto;
}
/*------ページ下固定ボタン-----*/
.fixed_bar {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
  background-color: rgba(204, 117, 157, 0.9);
}
.fixed_bar .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.fixed_bar.fixed {
  position: fixed;
  bottom: 0;
}
.fixed_bar .box_txt {
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
  font-size: min(2vw, 24px);
  display: flex;
  flex-wrap: wrap;
  width: 20%;
}
.fixed_bar .box_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.fixed_bar .box_btn .btn {
  height: 66px;
}
.fixed_bar .box_btn .btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 33px;
  font-size: 28px;
}
.fixed_bar .box_btn .btn01 {
  width: 230px;
}
.fixed_bar .box_btn .btn01 a {
  background-color: #fff;
  color: #e65078;
  font-weight: 500;
}
.fixed_bar .box_btn .btn02 {
  width: 250px;
  margin-left: 17px;
  margin-right: 30px;
}
.fixed_bar .box_btn .btn02 a {
  background-color: #1fb6ba;
  color: #fff;
  font-weight: 500;
}
/*------ページ下固定ボタン-----*/

section.about h2 {
  text-align: center;
  font-size: 4.6rem;
  line-height: 1;
}
section.about .about_box {
  display: flex;
  justify-content: space-between;
  width:850px;
  margin: 3.2rem auto 0;
}
section.about .hirooka_info {
  width:34%;
}

section.about .hirooka_info figure {
  width:90%;
  margin: 0 auto;
}
section.about .txt_area {
  width:61%;
  font-size: 2.1rem;
  line-height: 1.8;
  text-align: justify;
}
section.about .hirooka_info .text_area .name {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1.2;
  margin-top: 1rem;
}


section.about .hirooka_info .text_area .name span {
  font-size: 1.3rem;
  padding: 4px 6px 6px;
  line-height: 1;
  color: #fff;
  background-color: #cc759d;
}
section.about .hirooka_info .position {
  font-size: 0.8em;
  margin-top: 1em;
  text-align: center;
}
section.knowledge {
  width: 100%;
  background-image: url("../img/knowledge_back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 5.8rem;
}
section.knowledge h2 {
font-size: 3rem;
text-align: center;
line-height: 1;
}
section.knowledge h2 span {
  font-size: 1.2em;
}

section.knowledge ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:5rem 2rem;
  margin-top: 5rem;
}

section.knowledge ul li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width:32%;
  background-color: #fff;
  border:2px solid #cc759d;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0 rgb(204, 117, 157);
  padding-block: 3rem 3.2rem;
  position: relative;
}

section.knowledge ul li.ill1::before {
  content: "";
  position: absolute;
  display: block;
  width: 114px;
  height: 135px;
  background-image: url(../img/skohapi01.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 2rem;
  top: -11rem;
}

section.knowledge ul li.ill3::before {
  content: "";
  position: absolute;
  display: block;
  width: 98px;
  height: 141px;
  background-image: url(../img/skohapi02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 3rem;
  bottom: -11rem;
}
section.knowledge ul li.ill4::before {
  content: "";
  position: absolute;
  display: block;
  width: 78px;
  height: 131px;
  background-image: url(../img/skohapi03.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -6.5rem;
  bottom: -5rem;
}

section.knowledge ul li div {
  position: absolute;
  width:5rem;
  top:-2.5rem;
  left:50%;
  transform: translateX(-50%);
}

section.knowledge ul li p {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.3;
}

section.knowledge ul li p .big {
  font-size: 1.25em;
  display: block;
}




section.learning {
  background-color: #f7eeea;
}
section.learning h2 {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 3rem;
}
section.learning h2 span {
  font-size: 0.6em;
}
section.learning ul {
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
section.learning ul.text::after {
  content: "";
  position: absolute;
  display: block;
  width: 104px;
  height: 123px;
  background-image: url("../img/suko01.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  bottom: -1.8rem;
}
section.learning ul.text li {
  font-size: 1.8rem;
  line-height: 2;
  text-align: justify;
  display: inline-block;
  border-bottom: 1px #66584e solid;
}
section.learning ul.text li:not(:last-child) {
  margin-bottom: 1rem;
}
section.learning ul.text li::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 19px;
  background-image: url("../img/check.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.6rem;
}
section.learning ul.text li .pink {
  font-weight: 700;
}
section.learning ul.book_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4vw 0;
  margin-top: 4rem;
}
section.learning ul.book_list li {
  position: relative;
  width: 31%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 3px 3px 0px 0 #c2bcb8;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
}
section.learning ul.book_list li figure {
  max-width: 148px;
  width: 100%;
  margin: 0 auto;
}
section.learning ul.book_list li h3 {
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  margin: 2.4rem auto 1rem;
}
section.learning ul.book_list li h3 span {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
}
section.learning ul.book_list li p.number {
  position: absolute;
  font-family: "Bodoni Moda", serif;
  font-size: 2.8rem;
  line-height: 1;
  top: -1.6rem;
  left: 1.4rem;
}
section.learning ul.book_list li div.p_box {
  display: flex;
  flex-direction: column;
  margin: 0rem 3rem 1.6rem 3rem;
  flex-grow: 1;
}
section.learning ul.book_list li p.copy {
  line-height: 2;
  text-align: justify;
  border-top: 1px solid #66584e;
  padding-top: 1rem;
}
section.learning ul.book_list li p.supplement {
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.8;
  margin-top: 0.4rem;
  text-align: justify;
}
section.learning ul.book_list li div {
  display: flex;
  align-items: stretch;
}
.sample_button a {
  width: 80%;
  margin: 0 auto;
  border: 1px solid #66584e;
  border-radius: 2px;
  background-color: #fff;
  display: block;
  padding: 2rem;
  color: #66584e;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}
.sample_button a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 7px;
  height: 14px;
  background-image: url("../img/arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 1rem;
  top: calc(50% - 7px);
}
section.benefit {
  width: 100%;
  background-image: url(../img/knowledge_back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.benefit .box {
  position: relative;
  max-width: 806px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 6rem;
  background-color: #fff;
  border-radius: 4px;
}
section.benefit .box::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 334px;
  height: 72px;
  background-image: url("../img/manabi.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: -3rem;
}
section.benefit .box::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 262px;
  height: 251px;
  background-image: url("../img/benefit_img.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -15rem;
  bottom: -10rem;
}
section.benefit h3 {
  position: relative;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.4;
}
section.benefit h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 58px;
  height: 92px;
  background-image: url("../img/suko05.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 4rem;
  bottom: 7.4rem;
}
section.benefit h3 span {
  color: #cc759d;
  border-bottom: 4px solid #cc759d;
  display: inline-block;
}
section.benefit h3 span strong {
  font-size: 1.2em;
}
section.benefit p {
  text-align: justify;
  line-height: 2;
  margin-top: 2rem;
}
section.benefit p.small {
  font-size: 0.8em;
  margin-top: 2vw;
}
section.evidence h2 {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.3;
}
section.evidence h2 span {
  font-size: 1.4em;
}
section.evidence .hirooka_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 92%;
  margin: 4rem auto;
  gap: 3%;
}
section.evidence .hirooka_info .position {
  font-size: 0.9em;
}
section.evidence .hirooka_info figure {
  width: 37%;
  margin: 0 auto;
}
section.evidence .hirooka_info .text_area {
  width: 60%;
  line-height: 1.8;
}
section.evidence .hirooka_info .text_area .name {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.2;
}
section.evidence .hirooka_info .text_area .name span {
  font-size: 1.3rem;
  padding: 4px 6px 6px;
  line-height: 1;
  color: #fff;
  background-color: #cc759d;
}
section.evidence .hirooka_info .text_area .academic {
  margin-top: 2rem;
  text-align: justify;
}
/*-----アコーディオン-----*/
.accordion_wrap {
  background-color: #f8fafe;
  margin-bottom: min(10vw, 6rem);
}
.accordion {
  padding: 5.6rem;
}
/* 必須 */
.accordion-content {
  display: none;
}
/* 装飾用 */
.accordion-header {
  background-color: #7899e4;
  padding: 20px 0 23px;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
}
.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background: #fff;
}
.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-header.active::after {
  transform: rotate(0deg);
}
.accordion-content span {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  background-color: #fff;
  padding: 5.2rem;
  border: solid 1px #e0dedc;
  line-height: 2;
  text-align: justify;
}
.accordion-content div.name {
  text-align: right;
  margin-top: -2rem;
}
.accordion-content dt {
  font-size: 2rem;
  font-weight: 600;
  color: #7899e4;
}
.accordion-content span dd p.blue {
  font-weight: 600;
  color: #7899e4;
}
/*-----アコーディオン-----*/
section.evidence .questionnaire {
  background-color: #f7eeea;
  padding: 7rem 0;
}
section.evidence .questionnaire h3 {
  font-size: 2.6rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}
section.evidence .questionnaire p.supplement {
  font-size: 1.2rem;
  line-height: 1.6;
  width: fit-content;
  margin: 0 auto;
  border-top: 1px solid #66584e;
  padding-top: 1rem;
}
section.evidence .questionnaire ul.color_list {
  max-width: 75rem;
  width: 100%;
  margin: 4rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: min(2vw, 1rem) 4%;
}
section.evidence .questionnaire ul.color_list li {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
section.evidence .questionnaire ul.color_list li figure {
  width: 25px;
}
section.evidence .questionnaire ul.color_list li p {
  line-height: 1;
}
section.evidence .questionnaire .point_list {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: min(4vw, 5rem) 0;
  margin: 0 auto;
}
section.evidence .questionnaire .point_list > li {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  padding: 4.4rem 5.4rem;
}
section.evidence .questionnaire .point_list .point1::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 82px;
  height: 118px;
  background-image: url("../img/suko06.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 8rem;
  top: -2%;
}
section.evidence .questionnaire .point_list .point2::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 82px;
  height: 118px;
  background-image: url("../img/suko07.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 8rem;
  top: -2%;
}
section.evidence .questionnaire .point_list > li p {
  line-height: 1.8;
  text-align: justify;
}
section.evidence .questionnaire .point_list li p.copy {
  margin-top: 2rem;
}
section.evidence .questionnaire .point_list > li h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2vw 4rem;
}
section.evidence .questionnaire .point_list li h4 p {
  font-size: 2.6rem;
  line-height: 1.4;
}
section.evidence .questionnaire .point_list li.point1 h4 figure {
  width: 19rem;
}
section.evidence .questionnaire .point_list li.point2 h4 figure {
  width: 19.7rem;
}
section.evidence .questionnaire .point_list ul.graph_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7vw 3%;
  margin: 3.2rem auto 0;
}
section.evidence .questionnaire .point_list ul.graph_list li {
  width: 30%;
}
section.evidence .questionnaire .point_list ul.graph_list li figcaption {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  border: 1px solid #66584e;
  border-radius: 2px;
  padding: 0.4rem;
}
section.recommend {
  width: 100%;
  background-image: url(../img/knowledge_back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
section.recommend .inner {
  text-align: center;
}
section.recommend h2 {
  position: relative;
  font-size: 3.6rem;
  text-align: center;
  display: inline-block;
}
section.recommend h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 234px;
  height: 136px;
  background-image: url("../img/recommend.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -17rem;
  top: -7rem;
}
section.recommend ul {
  width: 82%;
  margin: 5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7vw 8%;
}
section.recommend li {
  max-width: 370px;
  width: 46%;
  position: relative;
  display: flex;
  flex-direction: column;
}
section.recommend li.himeno::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 92px;
  height: 295px;
  background-image: url("../img/himeno_copy.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -2rem;
  top: -2rem;
}
section.recommend li.nakamura::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 91px;
  height: 278px;
  background-image: url("../img/nakamura_copy.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -2rem;
  top: -2rem;
}
section.recommend figure {
  width: 100%;
  background-color: #f3abbe;
}
section.recommend figure img {
  max-width: 267px;
  width: 100%;
  margin: 0 auto;
}
section.recommend .text_area {
  padding: 3rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
section.recommend .text_area h3 {
  font-size: 2.8rem;
  text-align: left;
}
section.recommend .text_area p.pink {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 1rem 0;
  text-align: left;
}
section.recommend .text_area p.copy {
  line-height: 2;
  text-align: justify;
}
section.mypage {
  background-color: #fbf4d7;
}
section.mypage h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  text-align: center;
}
section.mypage h2 span {
  font-weight: 500;
}
section.mypage figure.flow {
  max-width: 89rem;
  width: 90%;
  margin: 4.5rem auto 0;
}
section.mypage figure.fukidashi {
  max-width: 65rem;
  width: 90%;
  margin: 1.5rem auto 0.8rem;
}
section.mypage p.text {
  font-size: 2.7rem;
  text-align: center;
}
section.mypage ul.support_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.7rem 0;
  margin-top: 6rem;
}
section.case_study h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  text-align: center;
}
section.case_study ul.case_study_list {
  max-width: 100rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3.6rem 0;
  margin: 4rem auto 0;
  justify-content: space-between;
}
section.case_study ul.case_study_list li.work {
  border: 1px solid #cc759d;
  border-radius: 8px;
  text-align: center;
  padding: 5rem 6rem;
}
section.case_study ul.case_study_list li.work h3 {
  text-align: center;
  font-size: min(6vw, 3.2rem);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
section.case_study ul.case_study_list li.work h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 29px;
  background-image: url("../img/check.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -4rem;
  top: 20%;
}
section.case_study ul.case_study_list li.work ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3vw 0;
}
section.case_study ul.case_study_list li.work ul li {
  width: 48%;
  text-align: justify;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
section.case_study ul.case_study_list li.work ul li dt {
  font-size: 2rem;
  font-weight: 500;
}
section.case_study ul.case_study_list li.family {
  width: 100%;
  border: 1px solid #7899e4;
  border-radius: 8px;
  padding: 5rem 6rem;
}
section.case_study ul.case_study_list li.family figure {
  max-width: 415px;
  width: 100%;
}
section.case_study ul.case_study_list li.family ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4rem;
}
section.case_study ul.case_study_list li.family h3 {
  font-size: min(6vw, 3.2rem);
  color: #7899e4;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-left: 4rem;
}
section.case_study ul.case_study_list li.family h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 29px;
  background-image: url("../img/check_blue.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 20%;
}
section.case_study ul.case_study_list li.family ul li p {
  line-height: 2;
}
section.case_study .voice {
  text-align: center;
  background-color: #ffeff5;
  margin-top: 10rem;
}
section.case_study .voice h3 {
  font-size: 2.7rem;
  display: inline-block;
  position: relative;
}
section.case_study .voice h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 110px;
  height: 96px;
  background-image: url("../img/voice.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -9.5rem;
  bottom: -2rem;
}
section.case_study .voice h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 106px;
  height: 106px;
  background-image: url("../img/suko02.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -11rem;
  bottom: -4rem;
}
section.case_study .voice {
  padding: 7rem 0 6rem;
}
section.case_study .voice ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4%;
  margin: min(7vw, 4rem) auto 0;
}
section.case_study .voice ul li {
  width: min(27%, 26.2rem);
}
section.case_study .voice ul li figure {
  width: 165px;
  margin: 0 auto;
}
section.case_study .voice ul li h4 {
  font-size: min(2.3vw, 2.2rem);
  text-align: center;
  line-height: 1.4;
  margin: 1.4rem auto 2rem;
}
section.case_study .voice ul li p.prof {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.4;
  background-color: #cc759d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 53px;
}
section.case_study .voice ul li p.name {
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  margin: 1.4rem auto 1rem;
}
section.case_study .voice ul li p.copy {
  text-align: justify;
  line-height: 2;
  font-size: min(5vw, 1.6rem);
}
section.flow {
  background-color: #fbf4d7;
}
section.flow h2 {
  font-size: 3.6rem;
  text-align: center;
}
section.flow ul {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  margin-left: 3%;
  margin-top: 3rem;
}
section.flow ul li {
  background-color: #fff;
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 3.5rem;
  position: relative;
  border-radius: 4px;
}
section.flow ul li figure {
  width: min(28%, 174px);
  margin-left: -4.5rem;
}
section.flow ul li p.font_serif {
  width: min(36%, 25.3rem);
  height: 6rem;
  font-size: min(4vw, 3.2rem);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #cc759d;
  color: #fff;
  line-height: 1;
}
.application_button a {
  width: 48rem;
  height: 6rem;
  margin: 0 auto;
  border: 1px solid #7899e4;
  border-radius: 2px;
  background-color: #7899e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}
.application_button a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 7px;
  height: 14px;
  background-image: url(../img/arrow_white.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 1rem;
  top: calc(50% - 7px);
}
section.flow ul li p.copy {
  line-height: 1.4;
}
section.flow ul li p.copy span {
  font-size: 2.6rem;
}
section.flow ul li figure.map {
  width: 92%;
  margin-left: 4%;
  margin-bottom: 2%;
}
section.flow ul li figure.certificate {
  position: absolute;
  width: 198px;
  bottom: 1rem;
  right: 2rem;
}
section.flow ul li.after {
  background-color: #cc759d;
  position: relative;
}
section.flow ul li.after figure {
  margin-left: 1.7rem;
  width: 114px;
}
section.flow ul li.after figure.suko03 {
  position: absolute;
  width: 114px;
  bottom: 0;
  right: 6rem;
}
section.flow ul li.after p.font_serif {
  width: 25.3rem;
  height: 6rem;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #fff;
  color: #cc759d;
  line-height: 1;
}
section.flow ul li.after p.copy {
  color: #fff;
}
section.flow ul li.after p.copy span {
  font-size: 2.6rem;
}
section.briefing {
  width: 100%;
  background-image: url(../img/knowledge_back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.briefing h2 {
  font-size: 3.6rem;
  text-align: center;
  margin: 0 auto 4.4rem;
  position: relative;
}
section.briefing h2::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 265px;
  height: 196px;
  background-image: url("../img/merit.png");
  background-position: center;
  background-size: contain;
  right: 2rem;
  bottom: -3rem;
}
section.briefing h3 {
  font-size: 2.8rem;
  text-align: center;
  margin: 6rem auto 2rem;
}
section.briefing p.copy {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
}
section.briefing ul.participants_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5vw 0;
}
section.briefing ul.participants_list li {
  max-width: 310px;
  width: 90%;
}
section.briefing ul.participants_list li p.txt {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
  background-color: #fff;
  padding: 1.6rem 0 2rem;
}
section.briefing ul.curriculum {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 12.3rem;
}
section.briefing ul.curriculum::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 84px;
  height: 121px;
  background-image: url(../img/suko04.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 3rem;
  top: -3.5rem;
}
section.briefing ul.curriculum figure {
  width: 50rem;
}
section.briefing ul.curriculum h4 {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
  padding: 1rem 0;
  width: 27rem;
  background-color: #cc759d;
  color: #fff;
  border-radius: 999px;
  margin: -6rem auto 0;
}
section.briefing ul.curriculum li.box {
  background-color: #fff;
  padding: 4rem;
  margin-left: -6%;
  margin-top: 3rem;
}
section.briefing ul.curriculum li.box ul.txt {
  display: flex;
  flex-direction: column;
  gap: min(2vw, 1.6rem);
  margin-top: min(6vw, 4rem);
}
section.briefing ul.curriculum li.box ul.txt li {
  font-size: 2rem;
}
section.briefing ul.curriculum li.box ul.txt li:not(:last-child) {
  border-bottom: #d1cdca 1px solid;
  padding-bottom: min(2vw, 1.6rem);
}
.cnt_area06 {
  margin-top: 88px;
  padding: 80px 0 146px;
}
.cnt_area06 table {
  margin-top: min(5vw, 4.8rem);
}
.cnt_area12 {
  padding: 68px 0 80px;
}
.cnt_area12 .cmn_tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 70px;
}
.cnt_area12 .cmn_tags .tag {
  width: 32.3%;
  padding: 20px 0;
  font-size: 28px;
}
.cnt_area12 .box_crn {
  margin-top: 30px;
  padding-top: 80px;
  background-color: #eaeaea;
}
.cnt_area12 .box_crn .cnt_in {
  position: relative;
  max-width: 1050px;
  padding: 80px 0 25px;
  background-color: #fff;
}
.cnt_area12 .box_crn .st {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
.cnt_area12 .box_crn .wrp_txt {
  max-width: 800px;
  width: 92%;
  margin: 40px auto 0;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cnt_area12 .box_crn .wrp_txt li {
  padding-left: 1em;
  text-indent: -1em;
}
.cnt_area12 .box_crn .wrp_txt li::before {
  content: "〇";
}
.cnt_area12 .box_crn .wrp_txt .att {
  font-size: 14px;
}
.cnt_area12 .box_crn .wrp_img {
  position: absolute;
  right: -15px;
  bottom: 0;
  width: 21.9%;
}
.cnt_area12 .box_table {
  margin-top: 70px;
}
.cnt_area15 {
  padding: 10rem 0;
  background-color: #f7eeea;
  margin-top: 10rem;
}
.cnt_area15 .cnt_in {
  max-width: 780px;
}
.cnt_area15 .box_list {
  margin-top: 48px;
  padding-left: 31.5px;
}
.cnt_area15 .box_list li {
  position: relative;
  border: 1px solid #cc759d;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  background-color: #fff;
  border-radius: 10px;
}
.cnt_area15 .box_list li + li {
  margin-top: 29px;
}
.cnt_area15 .box_list li .a_txt {
  text-align: justify;
}
/*.cnt_area15 .box_list li .a_txt .cmn_num {
  top: 1.8rem;
  left: 4rem;
  background-color: #fff;
  border: 1px solid #777;
  color: #777;
}*/
.cnt_area15 .box_list li .q_txt {
  position: relative;
  padding: 2rem 8rem 2rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0 min(2vw, 2rem);
  text-align: justify;
}
.cnt_area15 .box_list li .q_txt .cmn_num {
  background-color: #cc759d;
  font-weight: 400;
}
.cnt_area15 .box_list li .q_txt::before,
.cnt_area15 .box_list li .q_txt::after {
  content: "";
  position: absolute;
  top: calc(50%);
  right: 3rem;
  width: 3rem;
  height: 2px;
  background-color: #999999;
}
.cnt_area15 .box_list li .q_txt::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cnt_area15 .box_list li .a_txt {
  position: relative;
  display: none;
  width: calc(100% - 40px);
  padding: 0 13rem 2rem 10rem;
  text-align: justify;
}
.cnt_area15 .box_list li.active .q_txt::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.cnt_area16 {
  padding: 113px 0;
}
.cnt_area16 .cnt_in {
  max-width: 1050px;
}
.cnt_area16 .box_cmp {
  width: 90%;
  margin: 5rem auto 0;
}
.cnt_area16 .box_cmp dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cnt_area16 .box_cmp dl dt {
  width: 10rem;
  padding: 10px 0 0 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6875;
  border-top: 1px solid #d1cdca;
  font-size: 1.6rem;
}
.cnt_area16 .box_cmp dl dd {
  width: calc(100% - 10rem);
  padding: 10px 15px 10px 5px;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  border-top: 1px solid #d1cdca;
}
.cnt_area16 .box_cmp dl li em {
  font-weight: 600;
}
.cnt_area16 .box_cmp dl .dd08 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.cnt_area16 .box_cmp dl .dd08 ul {
  min-width: 250px;
}
.cnt_area16 .box_cmp dl .dd09 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 0;
  text-align: justify;
}
.cnt_area16 .box_cmp .box_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cnt_area16 .box_cmp .box_flex dl {
  width: calc(100% - 420px);
  order: 1;
}
.cnt_area16 .box_cmp .box_flex .wrp_img {
  width: 360px;
  order: 2;
}
footer {
  background-color: #f8f6f5;
  padding: 2rem 0;
}
footer figure {
  width: 32.3rem;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
footer p {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.4;
}
.form_area {
  padding-top: 80px;
}
.form_area .box_flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 70px;
}
.form_area .box_flow .item {
  position: relative;
  width: 32.8%;
  padding-bottom: 20px;
  border-bottom: 3px solid #b9b9b9;
  color: #b9b9b9;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
.form_area .box_flow .item::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -12px;
  border: 7px solid rgba(0, 0, 0, 0);
  border-right: 0;
  border-left: 13px solid #b9b9b9;
}
.form_area .box_flow .item:last-child::after {
  content: none;
}
.form_area .box_flow .item.active {
  border-color: #cc759d;
  color: #cc759d;
}
.form_area .box_flow .item.active::after {
  border-left-color: #e65078;
}
.form_area .box_att {
  margin-top: 24px;
  padding: 28px 22px;
  border: 1px solid #c4c4c4;
}
.form_area .box_att p {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.form_area .box_form {
  margin-top: 17px;
}
.form_area .box_form table {
  width: calc(100% + 6px);
  margin: 0 -3px;
  border-collapse: separate;
  border-spacing: 3px;
}
.form_area .box_form th {
  width: 240px;
  padding: 16px 18px;
  border: 1px solid #e2e2e2;
  background-color: #cc759d;
  color: #fff;
  text-align: left;
}
.form_area .box_form th .st {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.form_area .box_form th .req_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form_area .box_form th .req {
  display: block;
  padding: 0 4px 1px;
  border-radius: 2px;
  background-color: #535353;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 20px;
}
.form_area .box_form th .sub {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.form_area .box_form td {
  width: calc(100% - 240px);
  padding: 19px 22px 19px 13px;
  vertical-align: middle;
}
.form_area .box_form td table.inner_table tr {
  display: block;
  padding-bottom: 10px;
}
.form_area .box_form td table.inner_table tr:last-child {
  padding-bottom: 0;
}
.form_area .box_form td table.inner_table td {
  padding: 0;
  width: auto;
}
.form_area .box_form .select_wrp {
  position: relative;
  display: inline-block;
  width: 100%;
}
.form_area .box_form .select_wrp::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 5.1%;
  border: 4px solid rgba(0, 0, 0, 0);
  border-top: 6px solid #e65078;
}
.form_area .box_form .select_wrp.short {
  width: 350px;
}
.form_area .box_form select {
  width: 100%;
  padding: 0 50px 0 11px;
  border: 1px solid #9b9b9b;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_area .box_form select::-ms-expand {
  display: none;
}
.form_area .box_form input {
  width: 100%;
  padding: 0 13px;
  border-radius: 3px;
  border: 1px solid #d1d1d1;
  background-color: #f4f4f4;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 38px;
}
.form_area .box_form input.short {
  width: 220px;
}
.form_area .box_form input.short + .short {
  margin-left: 28px;
}
.form_area .box_form input.short02 {
  width: 150px;
}
.form_area .box_form input::-webkit-input-placeholder {
  color: #ababab;
}
.form_area .box_form input:-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form input::-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form input::placeholder {
  color: #ababab;
}
.form_area .box_form input::-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form input:-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form input[name*="postal"] {
  margin: 0 6px;
}
.form_area .box_form textarea {
  width: 100%;
  min-height: 210px;
  padding: 6px 13px;
  border-radius: 3px;
  border: 1px solid #d1d1d1;
  background-color: #f4f4f4;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.form_area .box_form textarea::-webkit-input-placeholder {
  color: #ababab;
}
.form_area .box_form textarea:-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form textarea::-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form textarea::placeholder {
  color: #ababab;
}
.form_area .box_form textarea::-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form textarea:-ms-input-placeholder {
  color: #ababab;
}
.form_area .box_form .error {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #e00000;
  margin-top: 10px;
}
.form_area .box_form p {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.form_area .box_form p.small {
  font-size: 12px;
}
.form_area .box_form p + input {
  margin-top: 5px;
}
.form_area .box_form p .red {
  color: #c30000;
}
.form_area .box_form .wrp_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
}
.form_area .box_form .wrp_btn button,
.form_area .box_form .wrp_btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 580px;
  width: 100%;
  height: 90px;
  padding: 0;
  border: 0;
  border-radius: 45px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  background-color: #8d8d8d;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.form_area .box_form .wrp_btn button.submit,
.form_area .box_form .wrp_btn a.submit {
  background-color: #1fb6ba;
}
.form_area .box_form .wrp_btn.col2 button {
  max-width: 460px;
  width: calc((100% - 25px) / 2);
}
.form_area .box_form .wrp_btn.col2 button + button {
  margin-left: 25px;
}
#confirm .form_area {
  padding-top: 35px;
}
#confirm .form_area .box_form td {
  letter-spacing: 0.03em;
  line-height: 1.6;
}
#confirm .form_area .box_form .wrp_btn {
  margin-top: 114px;
}
#done .form_area {
  padding-top: 35px;
}
#done .form_area .box_form .wrp_btn a {
  max-width: 460px;
}
