.pc {
  display: block;
}
.sp {
  display: none;
}
#wrapper {
  padding-bottom: 9rem;
}
header {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../img/mv_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  aspect-ratio: 1330 / 700;
}
.header-text {
  position: absolute;
  top: 30px;
  left: 30px;
  color: rgb(193, 12, 87);
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  line-height: 135%;
}
.list {
  text-align: left;         /* リストの中身は左寄せにしておくと読みやすい */
  margin: 0 auto;           /* 横方向中央寄せ */
  width: fit-content;       /* 必要に応じて幅調整 */
}


/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .header-text {
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .header-text {
    top: 9px;
    left: 15px;
    font-size: 1.3rem;
  }
}

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: 259px;
}
.fixed_bar .box_btn .btn01 a {
  background-color: #fff;
  color: #e65078;
  font-weight: 500;
}
.fixed_bar .box_btn .btn02 {
  width: 220px;
  margin-left: 17px;
}
.fixed_bar .box_btn .btn02 a {
  background-color: #1fb6ba;
  color: #fff;
  font-weight: 500;
}
/*------ページ下固定ボタン-----*/
section.about h2 {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.4;
}
section.about h2 {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}
section.about h2 .emphasis {
  color: #cc759d;
  border-bottom: 4px solid #cc759d;
  display: inline-block;
}
section.about h2 .emphasis .big {
  font-size: 1.3em;
}
section.about ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9vw;
}
section.about ul li {
  width: 31%;
  border: 1px solid #cc759d;
  border-radius: 4px;
}
section.about ul li h3 {
  background-color: #cc759d;
  padding: 1.7rem 0;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.4;
}
section.about ul li h3 span {
  color: #fcee9b;
  font-size: 3.2rem;
}
section.about ul li p {
  line-height: 2;
  text-align: justify;
  padding: 1.8rem 2.3rem 1.4rem;
}
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 {
  background: linear-gradient(110deg, #ffd8e7, #cce0ff);
}
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;
  width: 92%;
  margin: 3.5rem 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 {
  background: linear-gradient(110deg, #ffd8e7, #cce0ff);
  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 {
  background: linear-gradient(110deg, #ffd8e7, #cce0ff);
}
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: 30px 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;
}
.exp_2 h3 {
  font-size: 25px;
  text-align: center;
  background-color: #ffffff;
  margin-bottom: 30px;
  line-height: normal;
}
div.exp_2 .list li {
  font-size: 2.0rem;
  margin: 20px 50px 24px 50px;
  padding: 6px 20px;
  background-color: rgb(197 64 125 / 90%);
  color: #ffffff;
  font-weight: bold;
}
div.exp_2 {
  background-color:#ffffff;
}
@media screen and (min-width: 701px) {
  .recommend .recommend_list li {
      display: inline-block;
      width: 465px;
      margin-right: 50px;
      vertical-align: top;
  }
}
@media screen and (min-width: 701px) {
  .recommend .title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 3.5rem;
      color: rgb(237, 70, 9);
      font-weight: bold;
  }
}
@media screen and (min-width: 701px) {
  .recommend {
      padding: 70px 0 70px 0;
      background: #ffffff;
  }
}
.ytp-cued-thumbnail-overlay-image {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media screen and (min-width: 701px) {
  .recommend .ttl {
      color: #448aca;
      font-size: 20px;
      font-weight: bold;
      margin: 15px 0 10px 0;
      text-align: center;
  }
}
@media screen and (min-width: 701px) {
  .recommend .name {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0 15px 0;
      text-align: center;
  }
}
@media screen and (min-width: 701px) {
  .recommend .pro {
      background: url(../img/recommend_bg.png) 0 center no-repeat;
      -webkit-background-size: 100% 39px;
      -o-background-size: 100% 39px;
      background-size: 100% 39px;
      color: #fff;
      font-size: 19px;
      font-weight: bold;
      text-align: center;
      width: 280px;
      height: 39px;
      line-height: 36px;
      margin: 0 auto;
  }
}
@media screen and (min-width: 701px) {
  .voice .voice_list li {
      display: inline-block;
      width: 370px;
      padding-top: 20px;
      margin-right: 70px;
      margin-left: 55px;
      vertical-align: top;
      background: #f2f1ee;
      -webkit-border-radius: 10px;
      border-radius: 10px;
  }
}
@media screen and (min-width: 701px) {
  .voice .ttl {
      color: #ff4e70;
      font-size: 17px;
      font-weight: bold;
      margin: 35px 0 10px 0;
      text-align: center;
  }
}
@media screen and (min-width: 701px) {
  .voice .name {
      font-size: 18px;
      font-weight: bold;
      margin: 10px 0 15px 0;
      text-align: center;
  }
}
@media screen and (min-width: 701px) {
  .voice .tx {
      padding: 0 10px 10px 10px;
      line-height: 1.8;
  }
}
.recommend_list img {
  width: 300px;
  border-radius: 8px;      /* 角を少し丸く */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);  /* 影をつけて浮かせる */
  margin: 1em auto;
}

.voice_list img {
  width: 250px;
  border-radius: 8px;      /* 角を少し丸く */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);  /* 影をつけて浮かせる */
  margin: 1em auto;
}
.divider img {
  width: 120px;   /* ←ここでサイズ調整（例：100〜150pxが目安） */
  height: auto;   /* アスペクト比（縦横比）を維持 */
  display: block;
  margin: 0 auto; /* 中央寄せしたい場合 */
}
@media screen and (min-width: 701px) {
  .voice .voice_list li.divider img {
      max-width: 400px;
      height: auto;
      display: block;
  }
}
.recommend_list {
  display: flex;
  flex-wrap: nowrap; /* 必ず横並びにする */
  gap: 20px;          /* 画像と動画の間のスペース */
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-start; /* 上揃え */
}

.recommend_list li {
  flex: 1; /* 横幅均等配分 */
  box-sizing: border-box;
}

/* YouTube動画のサイズを調整（幅100%で自動比率） */
.recommend_list .movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}
.recommend_list .movie {
  margin-top: 40px; /* ← お好みで増減OK！ */
}
.voice_list {
  margin-bottom: 30px;
}
.recommend .ttl {
  color: #448aca;
  font-size: 17px;
  font-weight: bold;
  margin: 15px 0 10px 0;
  text-align: center;
}
.recommend .name {
  font-size: 17px;
  font-weight: bold;
  margin: 10px 0 15px 0;
  text-align: center;
}
.recommend .title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3.1rem;
  color: rgb(237, 70, 9);
  font-weight: bold;
}
.voice .ttl {
  color: #ff4e70;
  font-size: 17px;
  font-weight: bold;
  margin: 35px 0 10px 0;
  text-align: center;
}
.voice .name {
  font-size: 17px;
  font-weight: bold;
  margin: 10px 0 15px 0;
  text-align: center;
}
@media screen and (min-width: 701px) {
/* merit */
.merit02 .subtitle {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.merit_pho {
  background-color: #fdf2f4;
}
.merit02 .list {
  list-style: none !important;
  padding-left: 0 !important;
}
.merit02 .list li {
  font-size: 22px;
  font-weight: bold;
  color: #666;
  background: url(../img/icon_check.png) left 0px no-repeat;
  padding: 10px 0 20px 55px;
  margin-bottom: 10px;
  line-height: 1.4;
  border-bottom: #ccc solid 2px;
}
.merit .list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.merit02 .list li span {
  color: #ff4e70;
  font-weight: bold;
}
.merit_pho {
  display: flex;
  justify-content: space-between;   
  max-width: 1200px;               
  width: 100%;
  margin: 0 auto;                
  padding: 40px 150px 40px 150px;              
  box-sizing: border-box;
}
.section.merit02 .merit_pho ul.list {
  width: 55%;
  margin: 0;
  padding: 0;
  list-style: disc inside;
}
.place {
  width: 40%; 
}
ul.list {
  margin: 0 auto;         /* 左右のマージンを自動で調整して中央に */
  width: fit-content;     /* コンテンツに合わせた幅 */
}
.red {
    color: red;
    font-weight: bold;
}
/* place */
.merit02 .place {
    width: 265px;
    height: 268px;
    color: #fff;
    text-align: center;
}
.merit02 .place .sttl {
    font-size: 24px;
    position: relative;
    margin: 10px 0 10px 0;
    line-height: 1.8;
  }
  .place .sttl {
  background-color: #cc759d; /* 好きな背景色に変更可能 */
  color: #fff; /* 文字色：白 */
  width: 230px; /* 円の直径 */
  height: 230px;
  border-radius: 50%; /* これで円形に */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 21px;
  line-height: 1.6;
  margin: 7px 13px; /* 中央寄せ */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* 任意：立体感 */
}
.special-image {
  width: 60%;
  height: auto; /* アスペクト比を維持 */
  display: block;
  margin: 10px 10px 10px 0px; /* 上に余白＋中央寄せ */
}

  .merit02 .place .tx {
    padding: 0 35px;
    font-size: 17.8px;
  }
  .m01 {
    background: url(../img/merit_pho01.jpg) no-repeat;
    margin-top: 30px;
  }
  .m001 .list {
    /*position: absolute;*/
    top: 60px;
    left: 100px;
  }
  .m001 .place {
    /*position: absolute;*/
    bottom: -32px;
    right: -92px;
  }
  /*merit05*/
  .photo_area {
    margin-top: 45px;
  }
  .photo_area li {
    display: inline-block;
    margin: 0 0.5px;
  }

  .merit_05 {
    margin-top: 145px;
    color: #fff;
    background: url(../img/merit_pho05.jpg) no-repeat;
    padding-bottom: 75px;
  }
  .merit_05 h3.subtitle {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .merit_05 .detail {
    width: 1000px;
    padding-top: 170px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
         justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .merit_05 .detail li.text {
    width: 400px;
    margin-top: 15px;
    -webkit-font-feature-settings: "palt";
       -moz-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 1px;
  }
  .merit_05 .detail li.photo {
    width: 576px;
  }
  .merit_05 .detail li.text .list {
    font-size: 30px;
    font-weight: bold;
    background: url(../img/icon_check_02.png) left 0px no-repeat;
    padding: 0 0 10px 55px;
    margin-bottom: 20px;
    line-height: 1.4;
    border-bottom: #ffa200 solid 4px;
    color: #fff;
    text-align: left;
  }
  .merit_05 .detail li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .merit_05 .skillup {
    margin: 30px auto 0 auto;
    background: #fff;
    padding: 70px 35px 35px;
    width: 1080px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .merit_05 .skillup:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../img/merit05_arrow.png) no-repeat;
    width: 197px;
    height: 47px;
  }
  .merit_05 .skillup p {
    font-size: 37px;
    font-weight: bold;
    color: #ffa200;
    text-align: center;
  }
  .merit_05 .skillup p span {
    display: inline-block;
    font-size: 45px;
    font-weight: bold;
    color: #333;
    background: url(../img/merit05_marker.png) bottom;
    padding-bottom: 5px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 701px) {
  .section .icon img {
      display: block;
      width: auto;
      margin: 0 auto;
  }
.section {
  text-align: center; /* ← これが重要 */
}  
/*.section .title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  background-color: #e5eaee;
  color: rgb(235, 10, 10);
  font-size: 30px;
  font-weight: bold;
  padding: 15px 135px;
  display: inline-block;
  border-radius: 4px;
}*/
.section .title {
  font-family: "Yu Gothic", "Meiryo", sans-serif;  /* ゴシック系 */
  color: #D62828; /* 鮮やかで目立つ赤系 */
  font-size: 32px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
/* 上下のライン（ゴールド系で上品に） */
.section .title::before,
.section .title::after {
  content: "";
  display: block;
  width: 150%;
  height: 2px;
  background-color: #f4a261; /* 落ち着いたゴールドオレンジ */
  position: absolute;
  left: -25%;
}
.section .title::before {
  top: 0;
}
.section .title::after {
  bottom: 0;
}
.text {
    font-size: 19px;
    line-height: 1.7;
    width: 1000px;
    margin: 0 auto;
  }
}
/*.section .title, .section_top .title {
  color: #c90771;
  margin-bottom: 25px;
  text-align: center;
}*/
 /* couse-flow */
 .couse-flow {
  background: #fdf2f4;
  padding-bottom: 25px;
  margin-bottom: 60px;
}
.couse-flow .title {
  color: #fff;
  height: 80px;
  line-height: 80px;
  background: #448aca;
  -webkit-border-top-left-radius: 5px;
          border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
          border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  font-size: 33px;
  font-weight: bold;
  margin: 10px 0 25px 0;
  text-align: center;
}
.couse-flow img {
  display: block;
  margin: 18px 20px 15px 15px;
}
.couse-flow .tx {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
.price_list li {
  font-size: 1.5em;       /* 通常より少し大きく */
  color: #333366;         /* 濃い青系の色 */
  margin-bottom: 30px;    /* 行間の余白 */
  margin-left:100px;
}
.after_pass {
  font-size: 1.8em;
  font-weight: bold;
  color: #cc0000;         /* 赤で目立たせる */
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 100px;
}
.price_section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap; /* スマホで縦並びに対応 */
}

.price_text {
  flex: 1 1 60%;
}
.price_image {
  flex: 1 1 35%; /* ← 自然に左寄る */
  display: flex;
  justify-content: flex-start; /* ← 左寄せ */
}
.price_image img {
  max-width: 80%;
  height: auto;
  display: block;
}
.online-note {
  display: block;
  font-size: 18px;     /* 少し小さく */
  margin-top: 8px;
  margin-left: 90px;
  color: #100231;         /* 色もやや薄めにしたければ */
}

@media screen and (max-width: 750px) {
  .price_list li {
    font-size: 1.3em;       /* 通常より少し大きく */
    color: #333366;         /* 濃い青系の色 */
    margin-bottom: 10px;    /* 行間の余白 */
    margin-left:10px;
  }
  .after_pass {
    font-size: 1.3em;
    font-weight: bold;
    color: #cc0000;         /* 赤で目立たせる */
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 20px;
    text-align: left;
  }
}
/* certificate */
.certificate {
  width: 950px;
  background: #fff;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  text-align: center;
  padding: 95px 0 40px 0;
  margin: 45px auto 0 auto;
}
.certificate .subtitle {
  font-size: 24px;
  margin-top: -50px;
  line-height: 30px;
}
.certificate .subtitle span {
  color: #448aca;
}
.certificate .inner {
  background: url(../common/image/certificate_bg.png) no-repeat center 30px;
  width: 831px;
  height: 410px;
}
.section.merit {
  max-width: 1250px; /* お好みで調整 */
  margin: 0 auto;    /* 中央寄せのためのキー */
  padding: 20px;     /* 任意、内側の余白 */
}
.qualification-img img {
	width: 460px;
	height: auto;
	display: block;
}

.qualification-texts {
	display: flex;
	flex-direction: column; /* テキストを縦に並べる */
	justify-content: center;
  margin-top: 20px;
}

.qualification-text {
	margin: 1.3rem 0 1rem 0;
	font-size: 1.9rem;
	line-height: 1.6;
  text-align: center;
}
.top-text {
	text-align: left;
}
.bottom-highlight {
	background-color: #f4f005; /* お好みの色に変更OK */
  font-weight: bold;
	padding: 0.3rem;
	border-radius: 8px; /* 角をちょっと丸く */
}
.text-f {
  font-size: 3rem;
  background-color:  #f4f005;
  text-align: center;
  line-height: 60px;
}
.certificate .inner {
  background: url(../img/certificate_bg.png) no-repeat center 30px;
  width: 831px;
  height: 410px;
}

.text-img-box {
	display: flex;
	align-items: flex-start;
	gap: 1.0rem;
	flex-wrap: wrap; /* スマホ対応 */
}
.price_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price_list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5em;
  flex-wrap: wrap; /* スマホ時の折り返し対応 */
  border-bottom: 1px dotted #ccc; /* お好みで区切り線 */
  padding-bottom: 0.6em;
}

.item-label {
  font-weight: normal;
  max-width: 70%;
}

.item-price {
  font-weight: bold;
  text-align: right;
  min-width: 6em;
}

.sp-price {
  display: none;
  font-size: 1.9rem;
  color: #db330b;
  margin-top: 0.7em;
  width: 100%; /* 折り返して下に表示 */
  text-align: right;
}

@media screen and (max-width: 768px) {
  .sp-price {
    display: block;
  }
}
/* セミナー情報全体のセクション */
.seminar-info {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin-top: 2px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* セクション内の見出し */
.seminar-info .title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
}

/* 各会場情報のボックス */
.venue-info {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 25px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 各会場の見出し */
.venue-info .venue-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  border-left: 5px solid #3498db;
  padding-left: 10px;
}

/* 日程リスト */
.schedule-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.schedule-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #444;
}

/* 強調テキスト */
.venue-info strong {
  color: #e74c3c;
  font-weight: bold;
}

/* メディアクエリ（スマホ対応） */
@media (max-width: 768px) {
  .seminar-info {
    padding: 40px 15px;
  }

  .seminar-info .title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .venue-info .venue-title {
    font-size: 18px;
  }
}
/* 勉強会と合格対策講座の並びを整える */
.event-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.event-item {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
}

.event-label {
  width: 120px; /* ラベル幅を統一して整列 */
  font-weight: bold;
  color: #2c3e50;
}

.event-date {
  flex: 1;
  color: #444;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .event-item {
    flex-direction: column;
    gap: 4px;
  }

  .event-label {
    width: auto;
  }
}
