@charset "UTF-8";
:root {
  --vw: 1vw;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* common */
.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

.va_top {
  vertical-align: top;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

body {
  color: #555555;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 55px 10px 35px;
}

h2 {
  font-size: 38px;
  font-family: "wfbd";
  text-align: center;
  margin-bottom: 32px;
}

.cont_wrap {
  background-color: #fff;
  border-radius: 12px;
}

.contact_btn {
  max-width: 396px;
  background-color: #55C2F0;
  border-radius: 6px;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  font-family: "wfbd";
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

.contact_btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
}

.contact_btn:hover {
  opacity: 0.7;
}

.more_btn {
  max-width: 395px;
  background-color: #F4A91F;
  border-radius: 6px;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  font-family: "wfbd";
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

.more_btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
}

.more_btn:hover {
  opacity: 0.7;
}

/* header */
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0 16px;
}

header img {
  display: block;
}

header .site {
  font-size: 17px;
}

header .site a {
  color: #555555;
}

.catch {
  background: url(/hfs/img/header_border.png) no-repeat;
  background-size: 100%;
  text-align: center;
  padding: 17px 0 10px;
}

.catch p {
  font-size: 20px;
  font-family: "wfbd";
}

.catch cite {
  font-size: 12px;
  font-family: "wfre";
  font-style: normal;
}

/* お問い合わせ */
.contact {
  background-color: #55C2F0;
}

.contact .inner {
  padding: 55px 10px 58px;
}

.contact h2 {
  color: #fff;
  margin-bottom: 38px;
}

.contact_wrap {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 40px 35px;
}

.contact_wrap a {
  margin: 0;
  flex: 1;
}

.contact_wrap .contact_btn {
  width: 396px;
  margin: 0 0 0 auto;
}

.contact_tel {
  flex-basis: 38%;
  text-align: center;
  border-right: 4px dotted #C2C2C2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.contact_tel p {
  position: relative;
}

.contact_tel p:first-child {
  font-size: 28px;
  font-family: "wfbd";
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.contact_tel p:last-child {
  font-size: 12px;
  font-family: "wfre";
  margin-top: -8px;
}

.contact_tel p:first-child::before {
  content: "";
  background: url(/hfs/img/icon_tel.png);
  position: absolute;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  left: -36px;
  top: 25%;
}

/* footer */
footer .inner {
  text-align: center;
}

.footer_ttl {
  font-size: 18px;
  font-family: "wfbd";
  margin-bottom: 25px;
}

.footer_logo.jasda {
  margin-bottom: 8px;
}

.footer_logo.lohc {
  margin-bottom: 40px;
}

.footer_address {
  font-size: 12px;
  font-family: "wfre";
  margin-bottom: 20px;
}

.footer_address:last-child {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  /* common */
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  img {
    width: 100%;
  }
  .inner {
    padding: 30px 20px;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .contact_btn {
    max-width: 315px;
    font-size: 15px;
    padding: 12px 0;
    margin: 0 auto;
  }
  .more_btn {
    padding: 12px 0;
    font-size: 15px;
  }
  /* header */
  header .inner {
    padding: 9px 15px;
  }
  header img {
    width: 225px;
    height: auto;
  }
  header .site {
    background-size: 100% 3px;
    font-size: 10px;
  }
  .catch {
    padding: 15px 15px 8px;
  }
  .catch p {
    font-size: 15px;
    line-height: 1.5;
  }
  .catch cite {
    display: block;
    font-size: 10px;
    margin-top: 3px;
  }
  /* お問い合わせ */
  .contact .inner {
    padding: 25px 10px 40px;
  }
  .contact h2 {
    margin-bottom: 32px;
  }
  .contact_wrap {
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
  .contact_tel {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 0;
    margin-bottom: 10px;
  }
  .contact_tel p:first-child {
    font-size: 21px;
  }
  .contact_tel p:last-child {
    font-size: 10px;
  }
  .contact_tel p:first-child::before {
    content: "";
    width: 19px;
    height: 20px;
    left: -40px;
    top: 20%;
  }
  .contact_tel::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 38px;
    width: 7px;
    height: 7px;
    border-top: 2.5px solid #55C2F0;
    border-right: 2.5px solid #55C2F0;
    transform: rotate(45deg);
  }
  .contact_wrap a {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13.5px 0;
  }
  .contact_wrap .contact_btn {
    width: 100%;
    margin: 0 auto;
  }
  /* TOPへ戻る */
  #page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
  }
  #page_top a img:hover {
    opacity: 1;
  }
  #page_top img {
    width: 50px;
    height: 50px;
  }
  /* footer */
  footer .inner {
    padding: 30px 25px;
  }
  .footer_ttl {
    font-size: 13.5px;
    margin-bottom: 27px;
  }
  .footer_logo.jasda {
    margin-bottom: 3px;
  }
  .footer_logo.lohc {
    margin-bottom: 30px;
  }
  .footer_logo.lohc img {
    width: 229px;
    height: auto;
  }
  .footer_address {
    font-size: 10px;
    line-height: 1.5;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media only screen and (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

/* mv */
.mv__slider {
  position: relative;
  width: 100vw;
  height: 100%;
}
.mv__slider .slick-list,
.mv__slider .slick-track {
  height: 100%;
}
.mv__slider .slick-slide {
  height: 100%;
}
.mv__slider .slick-slide > div {
  height: 100%;
}
.mv__slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 99;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  font-size: 0;
  width: 42px;
  height: 86px;
  margin: auto 0;
}
.mv__slider .slick-prev {
  left: 0;
  background-image: url(../../../img/alow-l.png);
}
@media only screen and (max-width: 768px) {
  .mv__slider .slick-prev {
    background-image: none;
  }
}
.mv__slider .slick-next {
  right: 0;
  background-image: url(../../../img/alow_r.png);
}
@media only screen and (max-width: 768px) {
  .mv__slider .slick-next {
    background-image: none;
  }
}

.mv {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 56.3vw;
  min-height: 50vw;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .mv {
    height: 165vw;
    width: 100vw;
  }
}
.mv .inner {
  height: 100%;
  position: relative;
  max-width: 85vw;
  padding: 1.8vw 0;
}
@media only screen and (max-width: 768px) {
  .mv .inner {
    max-width: 90vw;
  }
}
.mv__content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .mv__content-wrap {
    padding-top: 3.1vw;
  }
}
.mv__content-top {
  display: flex;
  justify-content: space-between;
  align-items: top;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .mv__content-top {
    flex-direction: column-reverse;
    align-items: start;
    height: 69.7vw;
  }
}
.mv__content-top .course-type {
  width: 20.3vw;
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  font-size: 1.6vw;
  padding: 0;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 0.9vw;
}
@media only screen and (max-width: 768px) {
  .mv__content-top .course-type {
    width: 39.2vw;
    height: 8.3vw;
    font-size: 3.3vw;
  }
}
.mv__cnv-btn a {
  width: 21.5vw;
  height: 4.9vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9vw;
  background-color: #fff;
  color: #000;
  font-size: 1.6vw;
  border-radius: 9999px;
}
@media only screen and (max-width: 768px) {
  .mv__cnv-btn a {
    width: 53.8vw;
    height: 11.5vw;
    font-size: 3.5vw;
  }
}
.mv__cnv-btn a span {
  letter-spacing: 0.05em;
  color: #fff;
}
.mv__cnv-btn a img {
  width: 1.9vw;
  height: auto;
  margin-left: 0;
}
@media only screen and (max-width: 768px) {
  .mv__cnv-btn a img {
    width: 4.9vw;
  }
}
.mv--01 {
  background-image: url(../img/mv_bg.jpg);
}
@media only screen and (max-width: 768px) {
  .mv--01 {
    background-image: url(../img/mv_bg_sp.jpg);
  }
}
.mv--01 .course-type {
  background-color: #F6AB1F;
  margin-top: 2.6vw;
}
.mv--01 .mv__top-logo {
  width: 38.3vw;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .mv--01 .mv__top-logo {
    width: 35vw;
  }
}
.mv--01 .mv__content-middle {
  width: 50.5vw;
  margin-top: 2.5vw;
}
@media only screen and (max-width: 768px) {
  .mv--01 .mv__content-middle {
    width: 87.5vw;
  }
}
.mv--01 .mv__content-bottom {
  margin-top: 3vw;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .mv--01 .mv__content-bottom {
    margin-top: 6vw;
  }
}
.mv--01 .mv__content-bottom-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .mv--01 .mv__content-bottom-wrap {
    flex-direction: column;
    align-items: center;
    gap: 6.3vw;
  }
}
.mv--01 .mv__content-bottom__text-item {
  width: 42.5vw;
}
@media only screen and (max-width: 768px) {
  .mv--01 .mv__content-bottom__text-item {
    width: 90vw;
  }
}
.mv--01 .mv__cnv-btn a {
  background-color: #F6AB1F;
  width: 29vw;
}
.mv--01 .mv__cnv-btn a:hover {
  background-color: #f4be52;
}
.mv--02 {
  background-image: url(../img/mv_bg_02.jpg);
  background-position: center top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .mv--02 {
    background-image: url(../img/mv_bg_02_sp.jpg);
    background-position: center bottom;
  }
}
.mv--02 .course-type {
  background-color: #2FA4A2;
}
@media only screen and (max-width: 768px) {
  .mv--02 .course-type {
    align-self: start;
  }
}
.mv--02 .mv__top-logo {
  width: 26.9vw;
}
@media only screen and (max-width: 768px) {
  .mv--02 .mv__top-logo {
    width: 42.8vw;
  }
}
.mv--02 .mv__content-top {
  align-items: end;
}
@media only screen and (max-width: 768px) {
  .mv--02 .mv__content-top {
    height: 57.4vw;
  }
}
.mv--02 .mv__content-middle {
  width: 53.6vw;
  margin-top: 1.7vw;
}
@media only screen and (max-width: 768px) {
  .mv--02 .mv__content-middle {
    width: 87.6vw;
  }
}
.mv--02 .mv__content-bottom {
  margin-top: 3.1vw;
  width: 100%;
}
.mv--02 .mv__content-bottom-wrap {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .mv--02 .mv__content-bottom-wrap {
    flex-direction: column;
    align-items: center;
    gap: 3.7vw;
  }
}
.mv--02 .mv__content-bottom .mv__content-bottom__text-item {
  width: 57.1vw;
}
@media only screen and (max-width: 768px) {
  .mv--02 .mv__content-bottom .mv__content-bottom__text-item {
    width: 89.6vw;
    margin-top: 1.3vw;
  }
}
.mv--02 .mv__content-bottom .mv__cnv-btn a {
  margin-bottom: 0.8vw;
  background-color: #2FA4A2;
  border: 2px solid #fff;
  border-radius: 9999px;
}
.mv--02 .mv__content-bottom .mv__cnv-btn a:hover {
  background-color: #66b1b0;
}

.intermediate {
  /* ニュースエリア */
  /* こんな事が学べます */
  /* LINE */
  /* ヒアリングフレイルサポーターとは？ */
  /* ヒアリングフレイルとは？ */
  /* 受講者の声 */
  /* 受講者の声 プレゼント */
  /*frameBox*/
  /* 受講までの流れ */
  /* 受講までの流れ table */
  /*topics*/
}
.intermediate .mt-90 {
  margin-top: 90px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .intermediate .mt-90 {
    margin-top: 66px;
  }
}
.intermediate img {
  max-width: 100%;
  vertical-align: top;
}
.intermediate .side-menu {
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 15vw;
  right: 0;
  float: right;
  clear: right;
  z-index: 1000;
}
@media only screen and (max-width: 768px) {
  .intermediate .side-menu {
    width: auto;
    position: fixed;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    float: none;
    clear: none;
  }
}
.intermediate .side-menu .side-menu__btn-wrapper {
  max-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
  top: 60px;
}
@media only screen and (max-width: 768px) {
  .intermediate .side-menu .side-menu__btn-wrapper {
    flex-direction: row;
    max-width: 100%;
  }
}
.intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn {
  min-height: 141px;
  min-width: 59px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px 0 0 10px;
  border: solid 1px #fff;
  transition: 0.3s all;
}
@media only screen and (max-width: 768px) {
  .intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn {
    min-height: 40px;
    min-width: 106px;
    border-radius: 10px 10px 0 0;
    writing-mode: horizontal-tb;
    border-bottom: none;
  }
}
.intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn:hover {
  opacity: 0.9;
}
.intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn:nth-child(1) {
  background-color: #F4A91F;
  cursor: pointer;
  z-index: 1003;
}
.intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn:nth-child(2), .intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn:nth-child(3) {
  position: relative;
  background-color: #8A8A8A;
}
.intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn:nth-child(2) a, .intermediate .side-menu .side-menu__btn-wrapper .side-menu__btn:nth-child(3) a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}
.intermediate .side-menu .side-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 266px;
  max-width: 90vw;
  height: 371px;
  padding: 17px;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  .intermediate .side-menu .side-menu__content {
    width: 100%;
    max-width: 283px;
    height: 335px;
    top: initial;
    bottom: 0;
    left: -6.5px;
    transform: translateY(100%);
    padding: 0 15px 55px;
  }
}
.intermediate .side-menu .side-menu__content.is-active {
  transform: translateX(0);
}
.intermediate .side-menu .side-menu__content.is-active #side-menu__btn {
  z-index: 1003;
}
@media only screen and (max-width: 768px) {
  .intermediate .side-menu .side-menu__content.is-active {
    transform: translateY(0);
  }
}
.intermediate .side-menu .side-menu__content .side-menu__nav {
  width: 100%;
  height: 100%;
}
.intermediate .side-menu .side-menu__content .side-menu__nav .side-menu__list {
  height: 100%;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  align-items: center;
  justify-content: start;
  padding-top: 13px;
}
.intermediate .side-menu .side-menu__content .side-menu__nav .side-menu__list li a {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #555555;
}
.intermediate .side-menu .side-menu__content .side-menu__nav .side-menu__list li a img {
  width: 8px;
  height: 12px;
}
.intermediate .organizational-participants {
  margin-block: 3.5vw;
}
@media only screen and (max-width: 768px) {
  .intermediate .organizational-participants {
    margin-block: 3.5vw 5.5vw;
  }
}
.intermediate .organizational-participants h2 {
  font-size: 2.7vw;
}
@media only screen and (max-width: 768px) {
  .intermediate .organizational-participants h2 {
    font-size: 5.7vw;
  }
}
.intermediate .organizational-participants .background-img {
  margin-top: 3vw;
  height: 5vw;
  width: 100%;
  background-image: url(../img/logos.png) repeat-x;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .intermediate .organizational-participants .background-img {
    margin-top: 5vw;
  }
}
.intermediate .organizational-participants .background-img {
  width: 100%;
  height: 5vw;
  background: url(../img/logos.png) repeat-x;
  background-position: 0 0;
  background-size: cover;
  animation: bgroop 30s linear infinite;
}
@media only screen and (max-width: 768px) {
  .intermediate .organizational-participants .background-img {
    animation: bgroop 45s linear infinite;
    height: 12vw;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3318px 0;
  }
}
.intermediate .news {
  background-color: #F7F7F7;
}
.intermediate .news .inner {
  padding: 34px 0 37px;
}
.intermediate .news .read {
  display: block;
  text-align: center;
  margin: 0 20px 1.5em;
  background-color: #FFF;
  border-radius: 10px;
  padding: 1em 0.5em;
  font-size: 20px;
  line-height: 1.4em;
  font-family: "wfbd";
}
.intermediate .news .read span {
  font-size: 16px;
  line-height: 1.4em;
  font-family: "wfbd";
}
.intermediate .news_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.intermediate .news_wrap h2 {
  font-size: 20px;
  margin: 0 73px 0 0;
}
.intermediate .news_wrap ul,
.intermediate .news_wrap .news_list {
  width: calc(100% - 200px);
  box-sizing: border-box;
  padding: 0 40px;
}
.intermediate .news_wrap li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 13px;
}
.intermediate .news_wrap li:last-child {
  margin-bottom: 0;
}
.intermediate .news_wrap li span {
  font-size: 16px;
  line-height: 1.5em;
  /*font-family: "wfbd";*/
  margin-right: 20px;
}
.intermediate .news_wrap h2.news_ttl,
.intermediate .news_post .news_ttlsub {
  border-right: 4px dotted #C2C2C2;
  width: 200px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}
.intermediate .news_top,
.intermediate .news_post {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}
.intermediate .news_post {
  margin: 40px 0 0;
}
.intermediate .news_wrap .news_link {
  display: block;
  padding: 30px 20px;
  background-color: #55c2f0;
  color: #fff;
  font-family: "wfbd";
  border-radius: 10px;
  position: relative;
  width: 100%;
  transition: 0.5s;
}
.intermediate .news_list .news_link {
  background: url(../../img/btn/alow1.png) no-repeat left center;
  max-width: -moz-max-content;
  max-width: max-content;
  display: block;
  margin: 20px 0 0 auto;
  color: #69cfe3;
  padding: 0 0 0 20px;
  font-size: 100%;
  height: 16px;
}
.intermediate .news_list .news_link::before {
  display: none;
}
.intermediate .news_wrap .news_link::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s;
}
.intermediate .news_wrap .news_link:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.intermediate .news_list {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  width: 95%;
  font-size: 12px;
  font-family: "wfbd";
  font-weight: bold;
}
.intermediate .news_list .osirase {
  width: 100%;
  color: #646464;
  display: block;
  margin-top: 0px;
  clear: both;
  padding: 0;
  line-height: 1.8em;
  box-sizing: border-box;
}
.intermediate .news_list .osirase a {
  color: #555555;
}
.intermediate .news_list dl {
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 10px 0 0px 10px;
}
.intermediate .news_list dl:first-child {
  border-top: 1px dotted #949494;
}
.intermediate .news-item_category {
  display: inline-block;
  background: #87d8e8;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
  padding: 2px 5px;
  margin-left: 10px;
  font-size: 14px;
  width: 160px;
}
.intermediate .news_list .news_item:first-child {
  border-top: 1px dotted #949494;
}
.intermediate .news_item {
  padding: 10px;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #949494;
}
.intermediate .learn h2 {
  text-align: center;
}
.intermediate .learn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: top;
}
.intermediate .learn_wrap li {
  font-size: 20px;
  line-height: 1.2;
  position: relative;
}
.intermediate .learn_wrap li > div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.intermediate .learn_wrap li > div::before {
  content: url(../img/icon_check.png);
  margin-right: 12px;
}
.intermediate section.line {
  border-left: 0;
  border-right: 0;
  padding: 50px 0;
  background-color: #f2f5dc;
}
.intermediate section.line h2 {
  font-size: 170%;
  width: 100%;
  color: #4cbf2c;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.intermediate .line_area {
  border: 5px solid #4cbf2c;
  max-width: 1000px;
  margin: auto;
  padding: 20px 30px 30px;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background-color: #fff;
  width: 95%;
}
.intermediate .line_area .line_text {
  width: calc(100% - 205px);
  font-size: 115%;
}
.intermediate .line_area .line_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  margin-left: 20px;
}
.intermediate .line_area .line_btn img {
  width: 100%;
  height: auto;
}
.intermediate .line_area .btnArea {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.intermediate .line_area .btnArea a img {
  width: 100%;
}
.intermediate .line_area .btnArea a:nth-child(1) {
  max-width: 500px;
  color: #55C2F0;
}
.intermediate .line_area .btnArea a:nth-child(2) {
  max-width: 200px;
}
.intermediate .about_hfs {
  background-color: #FCF3DF;
}
.intermediate .about_hfs h2 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .intermediate .about_hfs h2 {
    margin-bottom: 5px;
  }
}
.intermediate .about_hfs .disc {
  text-align: center;
  font-size: 18px;
}
.intermediate .about_hfs .cont_wrap {
  padding: 35px 58px 40px;
  margin: 40px 0;
  text-align: center;
}
.intermediate .about_hfs .cont_wrap h3 {
  font-size: 32px;
  margin-bottom: 25px;
}
.intermediate .about_hfs .cont_wrap p {
  font-size: 18px;
}
.intermediate .about_hfs .cont_wrap ul {
  display: flex;
  justify-content: center;
  margin: 20px 0 25px;
}
.intermediate .about_hfs .box_wrap {
  display: flex;
  justify-content: space-between;
}
.intermediate .about_hfs .box_wrap .box {
  position: relative;
  width: 470px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0px 28px 23px;
  border-radius: 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.intermediate .about_hfs .box_wrap .box.blue {
  border: solid 4px #69CFE3;
}
.intermediate .about_hfs .box_wrap .box.pink {
  border: solid 4px #FF8296;
}
.intermediate .about_hfs .box_wrap .box_ttl {
  position: absolute;
  display: inline-block;
  top: -2px;
  left: 30%;
  padding: 11px 51px;
  font-size: 24px;
  color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.intermediate .title {
  display: block;
  width: 198px;
  pointer-events: none;
  padding: 16px 0;
  font-size: 24px;
  text-align: center;
  color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.intermediate input {
  display: none;
}
.intermediate .toggle {
  list-style: none;
}
.intermediate .toggle .personal-side-accordion .interview-list__btn {
  padding-top: 30px;
  margin-top: -61px;
  background-color: white;
}
@media only screen and (max-width: 768px) {
  .intermediate .toggle .personal-side-accordion .interview-list__btn {
    display: none;
  }
}
.intermediate .about_hfs .box_wrap .box.blue .title {
  background: #69CFE3;
}
.intermediate .about_hfs .box_wrap .box.pink .title {
  background: #FF8296;
}
.intermediate .about_hfs .box_wrap div p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .intermediate .about_hfs .box_wrap div p {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
.intermediate .about_hfs .box_wrap div ol > li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .intermediate .about_hfs .box_wrap div ol > li {
    margin-bottom: 5px;
    font-size: 15px;
  }
}
.intermediate .about_hfs .box_wrap div ul {
  margin-bottom: 30px;
}
.intermediate .about_hfs .box_wrap div ul > li {
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .intermediate .about_hfs .box_wrap div ul > li {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px 8px;
  }
}
.intermediate .about_hfs .box_wrap div h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .intermediate .about_hfs .box_wrap div h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
.intermediate .about_hfs .box_wrap .box_catch {
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
  margin: 26px 0 30px;
}
.intermediate .about_hfs .box_wrap .accordion-wrap {
  display: flex;
  flex-direction: column-reverse;
}
.intermediate .about_hf {
  background-color: #D2ECFA;
}
.intermediate .about_hf .inner {
  padding: 55px 10px 60px;
}
.intermediate .about_hf .disc {
  font-size: 18px;
  line-height: 1.6;
}
.intermediate .about_hf .cont_wrap {
  padding: 40px 0 60px;
  margin-top: 35px;
}
.intermediate .about_hf .cont_wrap h3 {
  font-size: 32px;
  text-align: center;
  color: #F4A91F;
  margin-bottom: 45px;
}
.intermediate .about_hf .cont {
  display: flex;
  justify-content: center;
}
.intermediate .about_hf .cont .img {
  margin-right: 30px;
}
.intermediate .about_hf .list li {
  font-size: 20px;
  line-height: 1.82;
  margin-bottom: 8px;
}
.intermediate .about_hf .list li:last-child {
  margin-bottom: 45px;
}
.intermediate .about_hf .list li::before {
  content: url(../img/icon_attention.png);
  vertical-align: text-top;
  margin-right: 5px;
}
.intermediate .voice_inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 55px 10px 0;
}
.intermediate .voice h2 {
  margin-bottom: 45px;
}
.intermediate .sliderWide {
  position: relative;
}
.intermediate .sliderWide::before {
  content: "";
  position: absolute;
  top: -12px;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 4px solid #C2C2C2;
  border-bottom: 2px solid #C2C2C2;
  z-index: -1;
}
.intermediate .sliderWide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -12px;
  left: 0;
  right: 0;
  border-top: 2px solid #C2C2C2;
  border-bottom: 4px solid #C2C2C2;
  z-index: -1;
}
.intermediate .slider li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 2px solid #C2C2C2;
}
.intermediate .slider li:first-child {
  border-top: 0;
}
.intermediate .slider li img {
  max-width: 450px;
  margin: 0 30px 0 0;
}
.intermediate .slider li p {
  font-size: 18px;
}
.intermediate .voice .inner {
  padding: 0 10px 52px;
}
.intermediate .voice_ttl {
  background-color: #F7F7F7;
  border-radius: 12px;
  font-size: 24px;
  text-align: center;
  padding: 20px 0;
}
.intermediate .voice_name {
  display: block;
  margin-top: 20px;
  line-height: 1.6;
}
.intermediate .gift {
  margin-top: 90px;
}
.intermediate .gift_wrap ul {
  display: flex;
  justify-content: space-around;
  margin-top: 23px;
}
.intermediate .gift_wrap ul li {
  text-align: center;
}
.intermediate .gift_wrap ul li p {
  font-size: 20px;
}
.intermediate .gift_wrap ul li .notice {
  font-size: 12px;
  margin-top: 0;
}
.intermediate .gift_wrap ul li img {
  display: block;
  width: 297px;
  height: 178px;
  margin: 20px auto 15px;
}
.intermediate .group {
  margin-top: 58px;
}
.intermediate .group ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.intermediate .group ul li {
  margin-bottom: 6px;
}
.intermediate .frameBox {
  margin: 0 auto;
  padding: 30px 0 30px;
}
.intermediate .frameBox dl {
  width: 100%;
  border: #b8a891 1px solid;
  border-radius: 10px;
}
.intermediate .frameBox dt {
  background-color: #b8a891;
  border-radius: 10px 10px 0 0;
  color: #FFF;
  font-size: 26px;
  line-height: 1.4em;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0;
}
.intermediate .frameBox dd {
  display: flex;
  margin: 0;
  padding: 30px 60px;
  justify-content: space-between;
}
.intermediate .frameBox dd .frameData {
  width: 50%;
}
.intermediate .frameBox dd .frameData p {
  font-size: 18px;
  line-height: 1.6em;
  margin: 0 0 1em;
}
.intermediate .frameBox dd .frameData p.price {
  font-size: 20px;
  line-height: 1.6em;
  font-weight: bold;
}
.intermediate .frameBox dd .frameData p.price span {
  font-size: 12px;
}
.intermediate .frameBox dd figure {
  width: 46%;
  margin: 0;
  padding: 0;
  background: #ecedee;
}
.intermediate .flow {
  background-color: #F7F7F7;
}
.intermediate .flow .inner {
  text-align: center;
  padding: 50px 10px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .intermediate .flow .inner .flow_balloon {
    max-width: 18%;
    position: absolute;
    top: 35px;
    right: 4%;
  }
}
.intermediate .flow .inner .flow_ttl {
  font-size: 24px;
  font-family: "wfbd";
}
.intermediate .flow .inner .flow_catch {
  font-size: 18px;
  margin-bottom: 35px;
}
.intermediate .flow .flow_wrap .flow_box {
  max-width: 714px;
  padding: 30px 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 40px;
  position: relative;
}
.intermediate .flow .flow_wrap .flow_box:nth-child(2) {
  padding: 19px 0;
}
.intermediate .flow .flow_wrap .flow_box:nth-child(3) {
  margin-bottom: 60px;
}
.intermediate .flow .flow_wrap .flow_box:nth-child(3)::after {
  content: none;
  background: none;
}
.intermediate .flow .flow_wrap .flow_box::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/icon_flow.png) no-repeat;
  width: 44px;
  height: 22px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
}
.intermediate .flow .flow_wrap .flow_box ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: inherit;
}
.intermediate .flow .flow_wrap .flow_box ul li:first-child {
  color: #55C2F0;
  font-size: 28px;
  font-family: "wfbd";
  border-right: 4px dotted #C2C2C2;
  flex-basis: 100px;
  margin-right: 30px;
}
.intermediate .flow .flow_wrap .flow_box ul li:nth-child(2) {
  text-align: left;
  flex: 5;
}
.intermediate .flow .flow_wrap .flow_box li p {
  font-size: 24px;
  font-family: "wfbd";
  line-height: 1.5;
  margin: 0 0 7px;
}
.intermediate .flow .flow_wrap .flow_box li p:last-of-type {
  font-size: 16px;
  font-family: "wfre";
  line-height: 1.4;
  margin: 0;
}
.intermediate .flow .flow_wrap .flow_box span {
  display: block;
  font-size: 12px;
}
.intermediate .flow .flow_wrap .flow_box img {
  height: 132px;
  position: absolute;
  right: 35px;
  bottom: 10px;
}
.intermediate .overview {
  background-color: #fff;
  padding: 30px 80px;
  margin-top: 60px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.intermediate .overview_ttl {
  font-size: 24px;
  margin-bottom: 35px;
}
.intermediate .overview table {
  text-align: left;
}
.intermediate .overview table th {
  width: 238px;
}
.intermediate .overview table,
.intermediate td,
.intermediate th {
  border-collapse: collapse;
  border-top: 2px solid #C2C2C2;
}
.intermediate .overview th.noBorder {
  border-top: none;
}
.intermediate .overview table th,
.intermediate .overview table td {
  font-size: 18px;
  padding: 14px 0;
}
.intermediate .overview table .table_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.intermediate .overview table .table_flex li:first-child {
  flex: 1;
}
.intermediate .overview table .table_flex li:nth-child(2) {
  flex: 2;
}
.intermediate .overview table .table_flex li:last-child {
  flex: 7;
  text-align: right;
}
.intermediate .overview table .table_flex li p {
  margin-bottom: 8px;
}
.intermediate .overview table .table_flex li p:last-child {
  margin-bottom: 0;
}
.intermediate .overview table .notice {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-top: -1px;
}
.intermediate .overview table .note {
  font-size: 14px;
}
.intermediate .overview table img {
  margin-top: 35px;
}
.intermediate .overview table .post {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin: 12px 0 28px;
}
.intermediate .overview table .career {
  font-size: 16px;
}
.intermediate .overview .table__in {
  width: 100%;
  margin-bottom: 10px;
}
.intermediate .overview .table__in,
.intermediate .overview .table__in th,
.intermediate .overview .table__in td {
  vertical-align: unset;
  border-top: none;
}
.intermediate .overview .table__in th,
.intermediate .overview .table__in td {
  padding: 5px 0;
}
@media only screen and (max-width: 768px) {
  .intermediate .overview .table__in th,
  .intermediate .overview .table__in td {
    display: table-cell;
  }
}
.intermediate .overview .table__in th {
  font-weight: normal;
  width: auto;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .intermediate {
    /* お知らせ */
    /* LINE */
    /* こんなことが学べます */
    /* ヒアリングフレイルサポーターとは */
    /* ヒアリングフレイルとは */
    /* 受講者の声 */
    /* 受講者の声 プレゼント */
    /*frameBox*/
    /* 受講までの流れ */
    /* 受講までの流れ table */
    /* news */
  }
  .intermediate .title {
    pointer-events: all;
    width: 100%;
    padding: 14px 0;
    border-radius: 6px;
    font-size: 15px;
  }
  .intermediate .toggle {
    width: 100%;
    height: 0;
    padding: 0 8px;
    /* transition: .2s; */
    overflow: hidden;
  }
  .intermediate input:checked ~ .toggle {
    height: auto;
    padding: 0;
  }
  .intermediate .news .read {
    text-align: left;
    margin: 0 0 0.5em;
    padding: 1em 0.8em;
    font-size: 18px;
    line-height: 1.3em;
  }
  .intermediate .news .read span {
    font-size: 14px;
    line-height: 1.2em;
    display: block;
    padding-top: 0.5em;
  }
  .intermediate .news_wrap {
    flex-direction: column;
  }
  .intermediate .news_wrap h2 {
    font-size: 24px;
    margin: 0 0 13px 0;
  }
  .intermediate .news_wrap li {
    flex-direction: column;
    font-size: 15px;
    margin-bottom: 13px;
  }
  .intermediate .news_wrap li div {
    width: 100%;
    overflow: hidden;
  }
  .intermediate .news_wrap li span {
    display: block;
    font-size: 16px;
    margin: 0 0 1px 0;
  }
  .intermediate .news .inner {
    padding: 25px 20px 30px;
  }
  .intermediate .line_area .line_text,
  .intermediate .line_area .line_btn {
    width: 100%;
  }
  .intermediate section.line h2 {
    font-size: 125%;
    text-align: left;
  }
  .intermediate section.line h2 br {
    display: none;
  }
  .intermediate .line_area {
    padding: 20px;
  }
  .intermediate section.line {
    padding: 20px 0;
  }
  .intermediate .line_area .line_btn {
    max-width: 180px;
    margin: 20px auto 0;
  }
  .intermediate .learn .inner {
    padding: 28px 20px 5px;
  }
  .intermediate .learn h2 {
    text-align: center;
    margin-bottom: 25px;
  }
  .intermediate .learn_wrap {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
  }
  .intermediate .learn_wrap li > div::before {
    content: "";
    display: inline-block;
    background: url(../img/icon_check.png) no-repeat;
    background-size: 100%;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .intermediate .learn_wrap li {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .intermediate .learn_wrap li div {
    display: flex;
    align-items: center;
    flex-basis: 100%;
    line-height: 1.4;
    position: relative;
    margin-bottom: 9px;
  }
  .intermediate .learn_wrap li.item2 {
    margin-bottom: 0;
  }
  .intermediate .learn_wrap li.item2 div {
    margin-bottom: 18px;
  }
  .intermediate .about_hfs .inner {
    padding: 30px 10px;
  }
  .intermediate .about_hfs h2 {
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .intermediate .about_hfs .disc {
    font-size: 15px;
    text-align: left;
  }
  .intermediate .about_hfs .cont_wrap {
    padding: 10px 10px 32px;
    margin: 10px 0 15px;
    text-align: left;
    border-radius: 6px;
  }
  .intermediate .about_hfs .cont_wrap h3 {
    font-size: 18px;
    letter-spacing: 0.04em;
    margin-bottom: 17px;
    line-height: 1.4;
  }
  .intermediate .about_hfs .cont_wrap p {
    font-size: 15px;
    word-break: break-all;
  }
  .intermediate .about_hfs .box_wrap {
    flex-direction: column;
  }
  .intermediate .about_hfs .box_wrap .box {
    padding: 0;
    margin-bottom: 15px;
    border-radius: 6px;
  }
  .intermediate .about_hfs .box_wrap .box.blue {
    width: 100%;
    border: none;
  }
  .intermediate .about_hfs .box_wrap .box.pink {
    width: 100%;
    border: none;
  }
  .intermediate .about_hfs .box_wrap .title {
    position: relative;
  }
  .intermediate .title::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    margin: auto;
    width: 13px;
    height: 1.5px;
    background-color: #fff;
    transition: 0.2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .intermediate .title::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    margin: auto;
    width: 13px;
    height: 1.5px;
    background-color: #fff;
    transition: 0.3s;
  }
  .intermediate input:checked + .title::before {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  .intermediate input:checked + .title::after {
    background-color: transparent;
  }
  .intermediate .about_hfs .box_wrap li {
    padding: 0 10px 18px;
  }
  .intermediate .about_hfs .box_wrap .box_catch {
    font-size: 18px;
    line-height: 1.4;
    margin: 18px 0 10px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .intermediate .about_hfs .box_wrap .box_catch {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .intermediate .about_hfs .box_wrap p {
    font-size: 15px;
  }
  .intermediate .about_hfs .cont_wrap ul {
    flex-wrap: wrap;
  }
  .intermediate .about_hfs .cont_wrap ul li:nth-of-type(1) {
    width: 46.875%;
  }
  .intermediate .about_hfs .cont_wrap ul li:nth-of-type(2) {
    width: 52.1875%;
  }
  .intermediate .about_hfs .cont_wrap ul li:nth-of-type(3) {
    width: 46.875%;
  }
  .intermediate .about_hfs .cont_wrap ul li:nth-of-type(4) {
    width: 53.125%;
  }
  .intermediate .about_hf .inner {
    padding: 30px 10px;
  }
  .intermediate .about_hf h2 {
    margin-bottom: 20px;
  }
  .intermediate .about_hf .disc {
    font-size: 15px;
    margin: 0 10px;
  }
  .intermediate .about_hf .cont_wrap {
    padding: 15px 10px;
    margin-top: 15px;
    border-radius: 6px;
  }
  .intermediate .about_hf .cont_wrap h3 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
  }
  .intermediate .about_hf .cont {
    flex-direction: column-reverse;
  }
  .intermediate .about_hf .cont .img {
    margin-right: 0;
  }
  .intermediate .about_hf .list li {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .intermediate .about_hf .list li:last-child {
    margin-bottom: 0;
  }
  .intermediate .about_hf .list li::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../img/icon_attention.png);
    background-size: contain;
    vertical-align: middle;
    vertical-align: text-top;
    margin-right: 5px;
  }
  .intermediate .about_hf a {
    width: 100%;
  }
  .intermediate .voice .voice_inner {
    padding: 35px 0 0 30px;
  }
  .intermediate .voice h2 {
    margin-bottom: 27px;
  }
  .intermediate .sliderArea {
    background: #fff;
    overflow: hidden;
  }
  .intermediate .sliderWide {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  .intermediate .sliderWide::before,
  .intermediate .sliderWide::after {
    border-top: 0;
    border-bottom: 0;
  }
  .intermediate .sliderWide .slick-arrow {
    transition-duration: 0.3s;
  }
  .intermediate .sliderWide:hover .slick-arrow {
    opacity: 1;
  }
  .intermediate .slider {
    max-width: 315px;
    margin: 0 -43px;
    padding: 0;
  }
  .intermediate .slider li {
    border-top: 0;
  }
  .intermediate .slider .slick-list {
    overflow: visible;
    width: 315px;
  }
  .intermediate .slider .slick-slide {
    height: auto !important;
    padding: 21px 7px;
    opacity: 0.5;
    transition-duration: 0.3s;
    position: relative;
  }
  .intermediate .slider .slick-slide.slick-current {
    opacity: 1;
  }
  .intermediate .slider .slick-slide a {
    display: block;
  }
  .intermediate .slider .slick-slide a:hover {
    display: block;
    opacity: 0.7;
  }
  .intermediate .slider li p {
    font-size: 15px;
  }
  .intermediate .slider img {
    height: 200px;
    width: 100%;
  }
  .intermediate .slick-prev,
  .intermediate .slick-next {
    background-image: none;
    z-index: 1;
  }
  .intermediate .slick-dots {
    bottom: -33px;
  }
  .intermediate .slider .slick-slide::before {
    content: "";
    border-top: 2px solid #C2C2C2;
    border-bottom: 1px solid #C2C2C2;
    position: absolute;
    top: 0;
    z-index: 9999;
    left: 5px;
    right: 8px;
    padding: 3px;
  }
  .intermediate .slider .slick-slide::after {
    content: "";
    border-top: 1px solid #C2C2C2;
    border-bottom: 2px solid #C2C2C2;
    position: absolute;
    bottom: 0;
    z-index: 9999;
    left: 5px;
    right: 8px;
    padding: 3px;
  }
  .intermediate .slider .slick-slide p {
    padding-bottom: 5px;
    margin-top: 14px;
  }
  .intermediate .slick-prev,
  .intermediate .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 31%;
    display: block;
    width: 22.5px;
    height: 62.5px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    outline: none;
    background: #555;
  }
  .intermediate .slick-prev {
    left: -25px;
  }
  .intermediate .slick-next {
    right: 0;
  }
  .intermediate .slick-prev:before,
  .intermediate .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 62.5px;
    opacity: 0.75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .intermediate .slick-prev:before {
    content: "←";
  }
  .intermediate .slick-next:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -4px;
  }
  .intermediate .slick-prev:hover,
  .intermediate .slick-prev:focus,
  .intermediate .slick-next:hover,
  .intermediate .slick-next:focus {
    color: #fff;
    outline: none;
    background: #555;
  }
  .intermediate .slick-prev:hover:before,
  .intermediate .slick-prev:focus:before,
  .intermediate .slick-next:hover:before,
  .intermediate .slick-next:focus:before {
    opacity: 1;
  }
  .intermediate .slick-prev.slick-disabled:before,
  .intermediate .slick-next.slick-disabled:before {
    opacity: 0.25;
  }
  .intermediate .voice .inner {
    padding: 30px 10px 18px;
  }
  .intermediate .gift {
    margin-top: 30px;
  }
  .intermediate .voice_wrap {
    flex-direction: column;
  }
  .intermediate .voice_ttl {
    font-size: 18px;
    padding: 12px 0;
    border-radius: 6px;
  }
  .intermediate .gift_wrap ul {
    flex-direction: column;
    margin-top: 0;
  }
  .intermediate .gift_wrap ul li {
    text-align: center;
  }
  .intermediate .gift_wrap ul li p {
    font-size: 15px;
    margin-top: 13px;
  }
  .intermediate .gift_wrap ul li .notice {
    font-size: 10px;
    margin-top: 0;
  }
  .intermediate .gift_wrap ul li img {
    display: block;
    width: 201px;
    height: 133px;
    margin: 5px auto;
  }
  .intermediate .group {
    margin-top: 28px;
  }
  .intermediate .group ul {
    justify-content: space-around;
    margin-top: 20px;
  }
  .intermediate .group ul li {
    margin-bottom: 7px;
  }
  .intermediate .group li img {
    width: 156px;
  }
  .intermediate .frameBox {
    margin: 0 auto;
    padding: 6% 0 4%;
  }
  .intermediate .frameBox dl {
    width: 100%;
    border: #b8a891 1px solid;
    border-radius: 10px;
  }
  .intermediate .frameBox dt {
    background-color: #b8a891;
    border-radius: 10px 10px 0 0;
    color: #FFF;
    font-size: 4vw;
    line-height: 1.4em;
    font-weight: bold;
    text-align: center;
    padding: 0.5em 0;
  }
  .intermediate .frameBox dd {
    display: block;
    margin: 0;
    padding: 6% 5%;
  }
  .intermediate .frameBox dd .frameData {
    width: 100%;
  }
  .intermediate .frameBox dd .frameData p {
    font-size: 14px;
    line-height: 1.6em;
    margin: 0 0 1em;
  }
  .intermediate .frameBox dd .frameData p.price {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding-top: 1em;
  }
  .intermediate .frameBox dd .frameData p.price span {
    font-size: 12px;
  }
  .intermediate .frameBox dd figure {
    width: 100%;
  }
  .intermediate .flow .inner {
    padding: 25px 10px 28px;
  }
  .intermediate .flow .inner .flow_ttl {
    font-size: 15px;
  }
  .intermediate .flow .inner .flow_catch {
    font-size: 15px;
    margin: 0 16px 13px 16px;
    text-align: left;
  }
  .intermediate .flow h2 {
    margin-bottom: 25px;
  }
  .intermediate .flow .flow_wrap .flow_box {
    border-radius: 6px;
    padding: 18px 8px;
    margin-bottom: 30px;
  }
  .intermediate .flow .flow_wrap .flow_box:nth-child(2) {
    padding: 18px 8px;
  }
  .intermediate .flow .flow_wrap .flow_box:nth-child(3) {
    margin-bottom: 15px;
  }
  .intermediate .flow .flow_wrap .flow_box::after {
    background: url(../img/icon_flow.png) no-repeat;
    background-size: 33px 16px;
    width: 33px;
    height: 16px;
    right: 50%;
    bottom: -22px;
  }
  .intermediate .flow .flow_wrap .flow_box span {
    font-size: 10px;
  }
  .intermediate .flow .flow_wrap .flow_box li p {
    font-size: 18px;
  }
  .intermediate .flow .flow_wrap .flow_box li p:last-of-type {
    font-size: 15px;
  }
  .intermediate .flow .flow_wrap .flow_box ul {
    align-items: flex-start;
  }
  .intermediate .flow .flow_wrap .flow_box ul li:first-child {
    font-size: 21px;
    flex-basis: 66px;
    margin-right: 22px;
    border-right: 4px dotted #C2C2C2;
  }
  .intermediate .flow .flow_wrap .flow_box ul li:nth-child(2) {
    font-size: 15px;
    flex: 3;
  }
  .intermediate .overview {
    padding: 25px 10px 13px;
    margin-top: 15px;
    border-radius: 6px;
  }
  .intermediate .overview_ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .intermediate .overview table,
  .intermediate td,
  .intermediate th {
    border-collapse: collapse;
    border-top: 1px solid #C2C2C2;
  }
  .intermediate .overview table {
    border-top: 0;
  }
  .intermediate .overview table th,
  .intermediate .overview table td {
    display: block;
    font-size: 15px;
  }
  .intermediate .overview table th {
    width: 100%;
    padding: 8px 0 5px;
  }
  .intermediate .overview table td {
    border-top: 0;
    padding: 0 0 6px;
  }
  .intermediate .overview table tr:nth-of-type(9) td {
    line-height: 1.4;
    margin-top: 3px;
  }
  .intermediate .overview table .table_flex li:last-child {
    flex: 3;
  }
  .intermediate .overview table .table_flex li p {
    margin-bottom: 0px;
    line-height: 1.5;
  }
  .intermediate .overview table .note {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .intermediate .overview table .notice {
    font-size: 10px;
  }
  .intermediate .overview table .instructor_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
  }
  .intermediate .overview table .instructor {
    font-size: 15px;
  }
  .intermediate .overview table img {
    margin: 0 10px 0 0;
    width: 118px;
    height: auto;
  }
  .intermediate .overview table .post {
    font-size: 10px;
    margin: 0;
  }
  .intermediate .overview table .career {
    font-size: 12px;
    word-break: break-all;
    letter-spacing: 0.04em;
  }
  .intermediate .news_wrap h2.news_ttl,
  .intermediate .news_post .news_ttlsub {
    width: 100%;
    border-right: none;
    border-bottom: 4px dotted #c2c2c2;
  }
  .intermediate .news_wrap ul,
  .intermediate .news_wrap .news_list {
    width: 100%;
    padding: 0;
  }
  .intermediate .news_post .news_ttlsub {
    display: none;
  }
  .intermediate .news_post .news_ttlsub br {
    display: none;
  }
  .intermediate .news_wrap .news_link {
    padding: 15px 20px;
    margin-top: 5px;
  }
}
.intermediate .hfsTopics {
  width: 100%;
  background-color: rgb(210, 236, 250);
}
.intermediate .hfsTopics .inner {
  padding: 25px 20px 40px;
}
.intermediate .hfsTopics h2 {
  margin: 0;
  padding: 0.5em 0 0.8em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intermediate .hfsTopics h2 {
    font-size: 19px;
  }
}
.intermediate .hfsTopics .person-count {
  font-size: 55px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .intermediate .hfsTopics .person-count {
    font-size: 28px;
  }
}
.intermediate .hfsTopics p {
  font-size: 18px;
  line-height: 1.6;
}
.intermediate .open .inner {
  padding: 55px 0 40px;
}
.intermediate .open h2 {
  font-size: 32px;
  line-height: 1.4375;
}
@media only screen and (max-width: 768px) {
  .intermediate .open h2 {
    font-size: 24px;
    padding: 0 20px;
  }
}
.intermediate .open .column__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .intermediate .open .column__wrap {
    padding: 0 20px;
  }
}
.intermediate .open p {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .intermediate .open p {
    margin-top: 10px;
  }
}
.intermediate .open .course-box {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
  color: inherit;
  max-width: 380px;
  width: 39.5833333333%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .intermediate .open .course-box {
    max-width: unset;
    width: 100%;
  }
}
.intermediate .open .course-box:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 769px) {
  .intermediate .open .course-box:not(:nth-of-type(2n + 1)) {
    margin-left: 7.9166666667%;
  }
}
@media only screen and (max-width: 768px) {
  .intermediate .open .course-box:not(:nth-of-type(2n + 1)) {
    margin-top: 20px;
  }
}
.intermediate .open .course-box__header {
  position: relative;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 16px 0;
}
.intermediate .open .course-box__header .ico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  display: flex;
  align-items: center;
  max-width: 54px;
  width: 14.2105263158%;
  margin: auto 0;
}
@media only screen and (max-width: 768px) {
  .intermediate .open .course-box__header .ico {
    width: 14.328358209%;
  }
}
.intermediate .open .course-box__header .ico img {
  max-width: 100%;
}
.intermediate .open .course-box__header .heading {
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .intermediate .open .course-box__header .heading {
    font-size: 16px;
  }
}
.intermediate .open .course-box__header .arrow {
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  background: url(../img/ico_arrow_course_01.svg) no-repeat center/100% auto;
  width: 12px;
  margin: auto 0;
}
.intermediate .open .course-box__header .arrow::before {
  content: "";
  display: block;
  padding-top: 158.3333333333%;
}
.intermediate .open .course-box__content {
  flex: 1;
  font-size: 16px;
  line-height: 1.777;
  border-radius: 0 0 6px 6px;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .intermediate .open .course-box__content {
    font-size: 14px;
  }
}
.intermediate .open .course-box--01 .course-box__header {
  background: #F6AB1F;
}
.intermediate .open .course-box--01 .course-box__content {
  background: #FFF2EB;
}
.intermediate .open .course-box--02 .course-box__header {
  background: #528FEF;
}
.intermediate .open .course-box--02 .course-box__content {
  background: #EBF6FE;
}
.intermediate .interview {
  position: relative;
  background: #F7F7F7;
  padding: 48px 0 60px;
  overflow: hidden;
}
.intermediate .interview h2 {
  margin-bottom: 35px;
}
.intermediate .interview .interview-swiper {
  width: 80%;
  max-width: 970px;
  margin-inline: auto;
  overflow: hidden;
  padding-inline: 15px;
  padding-block: 15px;
}
.intermediate .interview .interview-swiper .swiper-slide {
  min-height: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .intermediate .interview .interview-swiper {
    width: 100%;
  }
  .intermediate .interview .interview-swiper .swiper-slide {
    padding-inline: 20px;
  }
}
.intermediate .interview .interview-swiper .swiper-button-prev {
  left: calc(50% - 545px);
}
@media only screen and (max-width: 768px) {
  .intermediate .interview .interview-swiper .swiper-button-prev {
    left: 0;
  }
}
.intermediate .interview .interview-swiper .swiper-button-next {
  right: calc(50% - 545px);
}
@media only screen and (max-width: 768px) {
  .intermediate .interview .interview-swiper .swiper-button-next {
    right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .intermediate .interview .interview-swiper .swiper-button-prev {
    left: 10px;
  }
  .intermediate .interview .interview-swiper .swiper-button-next {
    right: 10px;
  }
}
.intermediate .interview .interview-swiper .swiper-button-prev {
  color: #fff;
  padding: 0;
  background-color: #8A8A8A;
  border-radius: 9999px;
}
.intermediate .interview .interview-swiper .swiper-button-prev::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  rotate: 45deg;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.intermediate .interview .interview-swiper .swiper-button-next {
  color: #fff;
  padding: 0;
  background-color: #8A8A8A;
  border-radius: 9999px;
}
.intermediate .interview .interview-swiper .swiper-button-next::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  rotate: 45deg;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media only screen and (max-width: 768px) {
  .intermediate .interview-list {
    display: flex;
    gap: 0;
  }
}
.intermediate .interview-list__item {
  background: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  width: 100%;
  height: 100%;
  padding: 32px 24px;
}
@media only screen and (max-width: 768px) {
  .intermediate .interview-list__item {
    width: 100%;
  }
}
.intermediate .interview-list__item--sub {
  padding: 24px;
  height: 100%;
}
.intermediate .interview-list__item--sub .header__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  margin-top: unset;
  padding-left: 1.2em;
}
.intermediate .interview-list__item--sub .interview-list__post,
.intermediate .interview-list__item--sub .interview-list__name {
  text-align: left;
}
.intermediate .interview-list__item--sub .interview-list__post {
  font-size: 14px;
  line-height: 1.4;
  min-height: unset;
  margin-top: unset;
}
.intermediate .interview-list__item--sub .interview-list__name {
  font-size: 16px;
  line-height: 1.5;
}
.intermediate .interview-list__item--sub .interview-list__comment {
  margin-top: 16px;
  margin-bottom: 0;
  min-height: 1500px;
}
@media only screen and (min-width: 769px) {
  .intermediate .interview-list__item--sub .interview-list__comment {
    min-height: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .intermediate .interview-list__item--sub .interview-list__comment {
    min-height: 140px;
  }
}
.intermediate .interview-list__header {
  display: flex;
  align-items: center;
  min-height: 150px;
}
.intermediate .interview-list .header__img {
  width: 33.0578512397%;
}
.intermediate .interview-list .header__img .interview-list__img {
  width: 100%;
}
.intermediate .interview-list__img {
  max-width: 120px;
  width: 47.619047619%;
}
.intermediate .interview-list__img img {
  max-width: 100%;
}
.intermediate .interview-list__img--logo {
  width: 100%;
  max-width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intermediate .interview-list__post {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  min-height: 4.2em;
  margin-top: 20px;
}
.intermediate .interview-list__name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.intermediate .interview-list__comment {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
.intermediate .interview-list__btn {
  margin-top: auto;
}
.intermediate .interview-list__btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #87CDE0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  max-width: 300px;
  width: 100%;
  height: 51px;
}
@media only screen and (max-width: 768px) {
  .intermediate .interview-list__btn a {
    padding-inline: 25px;
    justify-content: space-between;
  }
}
.intermediate .interview-list__btn a::after {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 12px;
  height: 19px;
  background: url(../img/ico_arrow_01.svg) no-repeat center/contain;
}
.intermediate .interview-list__btn a:hover {
  opacity: 0.7;
}
.intermediate .interview-list__btn a .open {
  display: block;
}
.intermediate .interview-list__btn a .close {
  display: none;
}
.intermediate .interview-list__btn.is-active a::after {
  transform: translateY(-50%) rotate(-90deg);
}
.intermediate .interview-list__btn.is-active a .close {
  display: block;
}
.intermediate .interview-list__btn.is-active a .open {
  display: none;
}
.intermediate .interview-list__location {
  text-align: center;
  font-size: 14px;
}
.intermediate .organization .inner {
  padding: 0 10px 35px;
}
.intermediate .instructor {
  background: #F7F7F7;
}
@media only screen and (max-width: 768px) {
  .intermediate .instructor .inner {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .intermediate .instructor .inner:nth-child(2) {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
.intermediate .instructor h2 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .intermediate .instructor h2 {
    margin-bottom: 0;
  }
}
.intermediate .instructor .instructor-swiper-wrap {
  position: relative;
}
.intermediate .instructor .instructor-swiper-wrap .instructor-swiper {
  padding: 15px;
  position: relative;
  overflow: hidden;
}
.intermediate .instructor .instructor-swiper-wrap .swiper-button-prev {
  left: calc(50% - 515px);
  color: #fff;
  padding: 0;
  background-color: #8A8A8A;
  border-radius: 9999px;
}
.intermediate .instructor .instructor-swiper-wrap .swiper-button-prev::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  rotate: 45deg;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media only screen and (max-width: 768px) {
  .intermediate .instructor .instructor-swiper-wrap .swiper-button-prev {
    left: 10px;
  }
}
.intermediate .instructor .instructor-swiper-wrap .swiper-button-next {
  right: calc(50% - 515px);
  color: #fff;
  padding: 0;
  background-color: #8A8A8A;
  border-radius: 9999px;
}
.intermediate .instructor .instructor-swiper-wrap .swiper-button-next::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  rotate: 45deg;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media only screen and (max-width: 768px) {
  .intermediate .instructor .instructor-swiper-wrap .swiper-button-next {
    right: 10px;
  }
}
.intermediate .instructor-list__item {
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  width: auto;
  flex-shrink: 0;
  padding: 32px 24px 24px;
}
.intermediate .instructor-list__img {
  max-width: 200px;
  width: 100%;
}
.intermediate .instructor-list__img img {
  max-width: 100%;
}
.intermediate .instructor-list__post {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .intermediate .instructor-list__post {
    margin-bottom: 30px;
  }
}
.intermediate .instructor-list__bottom {
  margin-top: auto;
}
.intermediate .instructor-list__name {
  position: relative;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
.intermediate .instructor-list__name::before {
  content: attr(data-title);
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  white-space: nowrap;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}
.intermediate .instructor-list__btn {
  margin-top: 24px;
}
.intermediate .instructor-list__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/ico_arrow_01.svg) no-repeat right 6% center/12px 19px, #F8D95C;
  color: #555;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  max-width: 300px;
  width: 100%;
  height: 51px;
}
.intermediate .instructor-list__btn a:hover {
  opacity: 0.7;
}
.intermediate .instructor-list__btn .swiper-button-prev,
.intermediate .instructor-list__btn .swiper-button-next {
  color: #fff;
  padding: 15px;
  background-color: #8A8A8A;
  border-radius: 9999px;
}
.intermediate .s-faq {
  width: 990px;
  max-width: 80vw;
  margin: 0 auto 0;
  padding-bottom: 100px;
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq {
    max-width: 100vw;
    margin-top: 70px;
  }
}
.intermediate .s-faq__title h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.intermediate .s-faq__link-list-wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
  width: 100%;
  height: 40px;
  max-width: 990px;
  margin-inline: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.intermediate .s-faq__link-list-wrapper .link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq__link-list-wrapper .link-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    padding-inline: 3vw;
  }
}
.intermediate .s-faq__link-list-wrapper .link-list__item {
  border-left: 1px solid #555555;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.intermediate .s-faq__link-list-wrapper .link-list__item:last-child {
  border-right: 1px solid #555555;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq__link-list-wrapper .link-list__item:nth-child(2) {
    border-right: 1px solid #555555;
  }
}
.intermediate .s-faq__link-list-wrapper .link-list__item a {
  position: relative;
  padding-inline: 20px;
  display: block;
  width: 100%;
  height: 100%;
}
.intermediate .s-faq__link-list-wrapper .link-list__item a .link-list__item__arrow {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #555555;
  border-bottom: 2px solid #555555;
  right: 20px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
}
.intermediate .s-faq-content-container {
  padding-inline: 10px;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-content-container {
    padding: 0 10px;
  }
}
.intermediate .s-faq-content-subtitle h3 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #555555;
  margin-top: 55px;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-content-subtitle h3 {
    font-size: 24px;
  }
}
.intermediate .s-faq-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-inline: auto;
  margin-top: 40px;
}
.intermediate .s-faq-el {
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
.intermediate .s-faq-el__dt .ic, .intermediate .s-faq-el__dd .ic {
  font-size: 20px;
  line-height: 1.2;
  transform: translateY(-2px);
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-el__dt .ic, .intermediate .s-faq-el__dd .ic {
    font-size: 17px;
  }
}
.intermediate .s-faq-el__dt {
  padding: 23px 32px 23px 23px;
  display: grid;
  align-items: center;
  grid-template-columns: 40px auto 40px;
  font-size: 18px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-el__dt {
    padding: 20px 17px;
    font-size: 15px;
    grid-template-columns: 30px auto 30px;
  }
}
.intermediate .s-faq-el__dt .plus {
  align-self: end;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #555555;
  border-radius: 9999px;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-el__dt .plus {
    align-self: center;
  }
}
.intermediate .s-faq-el__dt .plus::after, .intermediate .s-faq-el__dt .plus::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 1.5px;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.intermediate .s-faq-el__dt .plus::before {
  transition: 0.3s;
  transform: translate(-50%, -50%) rotate(90deg);
}
.intermediate .s-faq-el__dt.is-active .plus::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.intermediate .s-faq-el__dd {
  display: none;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-el__dd {
    font-size: 15px;
  }
}
.intermediate .s-faq-el__dd div {
  padding: 0 32px 23px 23px;
  display: grid;
  align-items: start;
  grid-template-columns: 40px auto;
}
@media only screen and (max-width: 768px) {
  .intermediate .s-faq-el__dd div {
    padding: 0 17px 20px 17px;
    grid-template-columns: 30px auto;
  }
}
.intermediate .s-faq-el__dd .s-faq-el__dd-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.intermediate .s-faq-el__dd .ic {
  color: #555555;
}
.intermediate .modaal-container {
  border-radius: 8px;
}
.intermediate .modaal-content-container {
  padding: 3.125% 5% 5%;
}
@media only screen and (max-width: 768px) {
  .intermediate .modaal-content-container {
    padding: 10px;
  }
}
.intermediate .modaal-inner-wrapper {
  padding: 10px;
}
.intermediate .modal .close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 10;
  background: url(../img/ico_close_01.svg) no-repeat center/100% auto;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .close {
    top: 10px;
    right: 10px;
  }
}
.intermediate .modal h2 {
  color: #555;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal h2 {
    font-size: 24px;
  }
}
.intermediate .modal .column__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .column__wrap {
    flex-direction: column;
  }
}
.intermediate .modal .column--img {
  max-width: 180px;
  width: 20.8333333333%;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .column--img {
    max-width: unset;
    width: 100%;
  }
}
.intermediate .modal .column--text {
  max-width: 636px;
  width: 73.6111111111%;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .column--text {
    max-width: unset;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .img {
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
  }
}
.intermediate .modal .img img {
  max-width: 100%;
}
.intermediate .modal .name {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .name {
    font-size: 24px;
    text-align: center;
  }
}
.intermediate .modal .post {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 22px;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .post {
    font-size: 14px;
  }
}
.intermediate .modal .career {
  font-size: 16px;
  line-height: 1.875;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal .career {
    font-size: 14px;
  }
}
.intermediate .modal--interview .column--img {
  max-width: 120px;
  width: 13.8888888889%;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal--interview .column--img {
    max-width: unset;
    width: 100%;
  }
}
.intermediate .modal--interview .column--img__logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  max-width: 160px;
  width: 18.5185185185%;
}
@media only screen and (max-width: 768px) {
  .intermediate .modal--interview .column--img__logo .img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .intermediate .modal--interview .img {
    max-width: 120px;
    width: 100%;
    margin: 0 auto;
  }
}
.intermediate .modal--interview .img img {
  max-width: 100%;
}
.intermediate .modal--interview .post {
  margin-top: 18px;
}
.intermediate .modal--interview .name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  body.menu-open {
    position: relative;
    width: 100%;
  }
}/*# sourceMappingURL=page_hfs-middle.css.map */