body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Segoe UI", sans-serif;
  color: #515050;
  background: #fff;
}

a {
  text-decoration: none;
}

.sp_content {
  display: none;
}

.pc_content {
  display: none;
  @media screen and (max-width: 768px) {
    display: block;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 2;
}

.header-title {
  font-size: 0.8em;
  background: #085640;
  color: #fff;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 4px 0 3px;
  height: 24px;
}

.header-inner_flex {
  display: flex;
  justify-content: space-between;
  background: #fff;
  height: 80px;
  box-shadow: 0 4px 7px -4px rgba(0, 0, 0, 0.1);
}

.header-logo {
  padding: 24px 0 24px 26px;
}

.header-nav {
  display: flex;
}
.header-nav_list {
  display: flex;
  max-width: 600px;
  flex-wrap: wrap;
  padding: 17px 0 24px;
}

.header-nav_item {
  font-size: 0.875rem;
  margin-left: 3%;
  margin-bottom: 9px;
  position: relative;
}

.header-nav_item a {
  color: #515050;
  position: relative;
}

.header-nav_item a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #085640;
  transform: scaleX(0);
  /* æåã¯éè¡¨ç¤º */
  transform-origin: left;
  /* å·¦ããä¼¸ã°ã */
  transition: transform 0.3s ease;
}

.header-nav_item a:hover::before {
  transform: scaleX(1);
  /* ããã¼æã«å¨ä½è¡¨ç¤º */
}

.header-nav_sublist {
  background: #fff;
  width: fit-content;
  border-radius: 5px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  padding: 15px 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  /* è¦ªã®ä¸ã«è¡¨ç¤º */
  left: 0;
  z-index: 100;
}

.header-nav_item:hover .header-nav_sublist {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-nav_subitem {
  margin-bottom: 10px;
}

.header-nav_subitem:last-child {
  margin-bottom: 0;
}

.header-nav_subitem a {
  display: block;
  white-space: nowrap;
}

.header-nav_btn {
  background: #e25959;
  width: 25vw;
  max-width: 391px;
  height: 80px;
  padding: 18px 0 15px;
  flex-shrink: 0;
  position: relative;
}

.header-nav_btn:hover {
  opacity: 0.8;
  cursor: pointer;
}

.header-nav_btn::before {
  content: "";
  background-image: url(../img/top/event_available.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3vw;
  max-width: 41px;
  height: 3vw;
  max-height: 41px;
  display: block;
  margin-top: 5px;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
}

.header-nav_btn::after {
  content: "";
  background-image: url(../img/top/arrow_forward_ios.svg);
  background-repeat: no-repeat;
  width: 1.38vw;
  max-width: 21px;
  height: 1.38vw;
  max-height: 21px;
  display: block;
  margin-top: 5px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}

.header-nav_btn_link {
  display: block;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
}

.header-nav_btn_subtext,
.header-nav_btn_text {
  display: block;
  font-weight: 600;
}

.header-nav_btn_subtext {
  margin-bottom: 4px;
}

.sp-header-nav {
  display: none;
}

/* 1200pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 1200px) {
  .header-nav {
    display: none;
  }

  .sp-header-nav {
    display: block;
    position: relative;
  }

  .sp_menu {
    width: 80px;
    height: 80px;
    background: #085640;
    position: relative;
  }

  .sp_menu-inner {
    width: 46%;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sp_menu-border {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: 0.5s;
  }

  .sp_menu-border.border02 {
    margin-top: 10px;
  }

  /*ãã³ãã¼ã¬ã¼ã¡ãã¥ã¼éããéã®ã¹ã¿ã¤ã«*/
  .sp_menu.active .sp_menu-border.border01 {
    transform: translate(0, 6px);
  }

  .sp_menu.active .sp_menu-border.border02 {
    transform: translate(0, -5px);
  }

  .header-nav__sp {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 104px;
    left: 0;
    background: rgba(248, 243, 234, 0.9);
    z-index: 100;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOSã§ã¹ã ã¼ãºã« */
  }

  .header-nav__sp-inner {
    position: relative;
  }

  .sp-header-nav_list {
    width: 100%;
    max-width: 450px;
    height: calc(100vh + 45px);
    padding-bottom: 45px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .sp-header-nav_list a {
    color: #515050;
  }

  .sp-header-nav_item {
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(81, 80, 80, 0.7);
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .sp-header-nav_item::before {
    display: block;
    content: "";
    background-image: url(../img/top/sp_nav_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 12px;
    translate: 0 -50%;
  }

  .sp-header-nav_item:first-child {
    border-radius: 50px;
    background: #085640;
    position: relative;
	  margin-bottom: 30px;
    &::before {
      content: "";
      width: 22.64px;
      height: 2px;
      background: #fff;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(0, -50%);
      @media screen and (max-width: 768px) {
        width: 15px;
        height: 1px;
      }
    }
    &::after {
      content: "";
      width: 3.58px;
      height: 3.58px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      right: 22.64px;
      transform: translate(0, -50%);
      @media screen and (max-width: 768px) {
        right: 15px;
        width: 3px;
        height: 3px;
      }
    }
    & a {
      color: #fff;
      text-align: center;
    }
  }
  
  .sp-header-nav_item a {
    display: inline-block;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 5px;
  }
  
  /*SPããã®ééã¹ã¿ã¤ã«*/
  .header-nav__sp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  /* è¡¨ç¤ºæ */
  .header-nav__sp.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
  }
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  .header-inner_flex {
    align-items: center;
    height: 60px;
  }

  .header-logo {
    width: 180px;
    padding: 0 0 0 26px;
  }

  .sp_menu {
    width: 60px;
    height: 60px;
  }

  .header-nav__sp {
    top: 84px;
  }

  .sp-header-nav_list {
    max-width: 86%;
    top: 5%;
    height: fit-content;
  }
  .sp-header-nav_item {
    font-size: 1rem;
  }
}

/* 540pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 540px) {
  .header-logo {
    width: 40vw;
    padding: 0 0 0 16px;
  }
}

/*MV*/

section#mv {
  padding-top: 104px;
}

.mv-container {
  position: relative;
  max-height: calc(100vh - 80px);
}

.mv_copy-container {
  position: absolute;
  top: 10%;
  left: 4%;
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho",
    serif;
  /*transform: translate(0 , -50%);*/
}

.mv_trouble-flex {
  display: flex;
}

.mv-trouble {
  background: #858585;
  color: #fff;
  padding: 5px 14px 3px;
  margin-right: 13px;
  font-size: 1.71vw;
  letter-spacing: 0.05em;
}

.mv-trouble:last-child {
  margin-right: 0;
}

.mv-benefit {
  font-size: 1.98vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-top: 14px;
}

.mv_copy-bottom {
  margin-top: 36px;
}

.mv_subcopy {
  font-size: 1.85vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #515050;
}

.mv_maincopy {
  font-size: 2.57vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #085640;
  margin-top: 18px;
}

.mv_maincopy-bock {
  display: inline-block;
  background: #fff;
  margin-bottom: 20px;
  padding: 5px 14px 3px;
}

.mv_strongpoint {
  position: absolute;
  bottom: 2vh;
  left: 4%;
}

.mv_strongpoint-flex {
  display: flex;
}

.mv_strongpoint-container {
  width: 13.6vw;
  position: relative;
  margin-right: 17px;
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho",
    serif;
}

.mv_strongpoint-container:nth-child(2) {
  transform: translateY(-40px);
}

.mv_strongpoint-container:last-child {
  margin-right: 0;
}

.mv_strongpoint-container img {
  width: 100%;
}

.mv_strongpoint-txt {
  text-align: center;
  font-size: 1.5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.mv_marker-yellow {
  background: linear-gradient(rgba(255, 211, 113, 0.7), rgba(255, 211, 113, 0.7));
  background-repeat: no-repeat;
  background-size: 100% 40%;
  /* æ¨ªå¹100%ãç¸¦40%ã«ãã¼ã«ã¼ */
  background-position: 0 100%;
  /* ä¸ã«éç½® */
}

.mv_strongpoint_big {
  font-size: 2.6vw;
}

/* ï¼ï¼ï¼ï¼pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (min-width: 1500px) {
  .mv-container {
    max-height: 100%;
  }
}

/* 1062pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 1062px) {
  .mv_copy-bottom {
    margin-top: 18px;
  }
  .mv_strongpoint {
    bottom: -20px;
  }

  .mv_strongpoint-container:nth-child(2) {
    transform: translateY(-23px);
  }
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  section#mv {
    padding-top: 84px;
  }
}

/* 680pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 680px) {
  .mv-container {
    max-height: calc(100vh - 84px);
  }

  .mv-container img.kv,
  .mv-container picture.kv,
  .mv-container source.kv {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 84px);
    object-fit: cover;
  }

  .mv_copy-container {
    top: 22px;
  }

  .mv-trouble {
    font-size: 3.4vw;
    margin-right: 7px;
  }

  .mv-benefit {
    font-size: 4.57vw;
    margin-top: 6px;
  }

  .mv_subcopy {
    font-size: 4.57vw;
  }

  .mv_maincopy {
    margin-top: 10px;
  }

  .mv_maincopy-bock {
    font-size: 4.4vw;
    margin-bottom: 10px;
  }

  .mv_strongpoint {
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .mv_strongpoint-flex {
    justify-content: center;
  }

  .mv_strongpoint-container {
    width: 30vw;
	  height: auto;
        aspect-ratio: 1 / 1;
    margin-right: 3.8%;
  }

  .mv_strongpoint-txt {
    font-size: 3.06vw;
  }

  .mv_strongpoint_big {
    font-size: 4.99vw;
  }
}

/*ååãªãã¡ã¼ããã¼*/

section#offer {
  padding: 45px 0 44px;
}

section#offer .inner {
  max-width: 960px;
  margin: 0 auto;
}

.offer-banner-link {
  display: block;
}

.offer-banner-link:hover {
  opacity: 0.8;
}

/* 1000pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 1000px) {
  section#offer .inner {
    padding: 10px 10% 0;
  }
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  section#offer {
    padding: 45px 0 30px;
  }
  section#offer .inner {
    padding: 10px 5% 0;
  }
}

/*ã³ã³ã»ãã*/

section#top-concept {
  padding: 44px 0 110px;
}

section#top-concept .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top-concept__content {
  width: 100%;
  display: flex;
  justify-self: center;
}

.top-concept__text {
  margin-right: 6%;
  width: 42%;
  line-height: 2;
}

.top-concept__ttl {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho",
    serif;
  font-size: 2.125rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #515050;
  margin-bottom: 42px;
}

.top-concept__paragraph {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho",
    serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #515050;
}

.btn--primary {
  display: block;
  padding: 14px 0;
  background: #085640;
  max-width: 317px;
  text-align: center;
  border-radius: 50px;
  margin-top: 42px;
  font-weight: 600;
  position: relative;
}

.btn--primary.sp-content {
  display: none;
}

.btn--primary:hover {
  opacity: 0.8;
}

.btn--primary::after {
  content: "";
  width: 3.58px;
  height: 3.58px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 22.64px;
  transform: translate(0, -50%);
  @media screen and (max-width: 768px) {
    right: 15px;
    width: 3px;
    height: 3px;
  }
}

.btn--primary::before {
  content: "";
  width: 22.64px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  @media screen and (max-width: 768px) {
    width: 15px;
    height: 1px;
  }
}

.btn--primary span {
  font-size: 1rem;
  color: #fff;
}

.concept-photo__wrapper--pc {
  width: 52%;
}

.concept-photo {
  display: flex;
}

.concept-photo__left {
  width: calc(41.5% - 14px);
  margin-right: 28px;
}

.concept-photo__right {
  width: calc(55.5% - 14px);
  padding-top: 57px;
}

.pc-concept-photo__image:first-child {
  margin-bottom: 28px;
}

.concept-photo__right .pc-concept-photo__image:last-child {
  width: 66%;
}

.concept-photo__wrapper--sp {
  display: none;
}

/* 1300pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 1300px) {
  .top-concept__text {
    padding: 0 4.2% 40px;
    margin-right: 0;
    width: 48%;
  }

  .top-concept__ttl {
    font-size: 1.75rem;
  }

  .top-concept__paragraph {
    font-size: 1rem;
  }
}

/* 974pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 974px) {
  .concept-photo {
    width: 100%;
  }

  .top-concept__content {
    display: block;
  }
  .concept-photo__wrapper--pc {
    display: none;
  }

  .concept-photo__wrapper--sp {
    display: block;
  }

  .top-concept__text {
    width: 100%;
  }

  .top-concept__ttl {
    font-size: 2rem;
  }

  .top-concept__paragraph {
    font-size: 1.5rem;
  }

  .sp-concept-photo__container {
    margin-right: 13px;
    width: 100%;
  }

  .sp-concept-photo__container:first-child {
    width: calc(100% - 120px);
  }

  .sp-concept-photo__container:last-child picture:last-child {
    width: calc(100% - 100px);
  }

  .sp-concept-photo__container img,
  .sp-concept-photo__container picture {
    width: 100%;
  }

  .sp-concept-photo__container:first-child {
    margin-top: 23px;
  }

  .sp-concept-photo__container:last-child {
    margin-right: 0%;
  }

  .sp-concept-photo__image:first-child {
    margin-bottom: 13px;
  }

  .btn--primary.pc-content {
    display: none;
  }

  .btn--primary.sp-content {
    display: block;
    margin: 42px auto 0;
  }
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  section#top-concept {
    padding: 30px 0 60px;
  }
  .top-concept__text {
    padding: 0 4% 40px;
  }
  .top-concept__ttl {
    font-size: 1.375rem;
    margin-bottom: 30px;
  }
  .top-concept__paragraph {
    font-size: 1rem;
  }

  .sp-concept-photo__container:first-child {
    width: calc(100% - 60px);
  }

  .sp-concept-photo__container:last-child picture:last-child {
    width: calc(100% - 40px);
  }
}

section#features {
  padding: 112px 0 120px;
  background: #e7ecf2;
}

section#features .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.ttl--primary {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
}

.dot--center {
  text-align: center;
  margin-bottom: 70px;
  font-weight: 400;
}

.dot--center::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #085640;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translate(-50%, 0);
}

.dot--center::after {
  content: "";
  width: 1px;
  height: 45px;
  background: #085640;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translate(-50%, 0);
}

.features__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.features__card {
  background: #fff;
  padding: 34px 18px;
  border-radius: 5px;
  width: calc(50% - 15px);
}

.features__subttl__wrapper {
  display: flex;
}

.features__num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  background: #085640;
  color: #fff;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  text-align: center;
  margin-right: 12px;
}

.features__subttl {
  display: block;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 13px;
}

.features_ttx {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 15px;
}

.marker-yellow {
  background: linear-gradient(rgba(255, 211, 113, 0.7), rgba(255, 211, 113, 0.7));
  background-repeat: no-repeat;
  background-size: 100% 40%;
  /* æ¨ªå¹100%ãç¸¦40%ã«ãã¼ã«ã¼ */
  background-position: 0 100%;
  /* ä¸ã«éç½® */
}

.features__btn {
  max-width: 360px;
  margin: 60px auto 0;
}

/* 1000pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 1000px) {
  section#features .inner {
    padding: 0 4%;
  }
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  section#features {
    padding: 112px 0 60px;
    background: #e7ecf2;
  }

  .features__content {
    display: block;
  }

  .features__card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 45px;
  }

  .features__ttl {
    font-size: 1.25rem;
    margin-bottom: 45px;
  }

  .features__num {
    font-size: 1.125rem;
  }

  .features__subttl {
    font-size: 1.125rem;
  }
}

/*ç¾å®¹ç®èç§å»æ¨è¦*/

section#doctor {
  padding: 120px 0;
}

section#doctor .inner {
  padding: 6%;
}

.doctor__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 895px;
  margin: 0 auto;
}

.doctor__img {
  margin-right: 4.2%;
  width: 36.2%;
}

.doctor__prpfile {
  width: 59.6%;
}

.doctor__title,
.doctor__affiliation {
  display: block;
}

.doctor__title {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.doctor__affiliation {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.doctor__name {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  margin-bottom: 17px;
}

.doctor__message .small{
	font-size: 14px;
}

/* 920pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 920px) {
  section#doctor .inner {
    padding: 6%;
  }

  .doctor__img {
    width: 52%;
  }
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  section#doctor {
    padding: 60px 0;
  }
  .doctor__ttl {
    font-size: 1.375rem;
    margin-bottom: 45px;
  }

  .doctor__ttl .sp_content {
    display: block;
  }

  .doctor__content {
    display: block;
  }

  .doctor__img {
    width: 65%;
    margin: 0 auto 40px;
  }

  .doctor__name {
    margin-bottom: 18px;
  }

  .doctor__prpfile {
    width: 100%;
  }
}

/*ã³ã¼ã¹ã»æé*/

section#course {
  padding: 80px 0 100px;
  background: #f5f5f5;
}

section#course .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.course__ttl {
  text-align: center;
  width: fit-content;
  margin: 0 auto 60px;
}

.dot--left::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #085640;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translate(0, -50%);
}

.dot--left::after {
  content: "";
  width: 45px;
  height: 1px;
  background: #085640;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translate(-50%, 0);
}

.first-course {
  max-width: 732px;
  margin: 0 auto 80px;
  background: #fff;
  padding: 40px 15px 40px;
  border-radius: 10px;
}

.first-course__ttl {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 27px;
}

.first-course__microcopy {
  display: block;
  font-size: 1.06rem;
}

.first-course-img__wrap {
  display: flex;
  width: 100%;
  max-width: 532px;
  margin: 0 auto;
  position: relative;
}

.first-course-img__txt {
  background: #085640;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  left: 0;
  bottom: 0;
  letter-spacing: 0.05em;
}

.first-course-img_container {
  width: calc(100% / 3);
}

.first-course-img_container:nth-child(2) {
  margin: 0 10px;
}

.first-course-price__wrap {
  max-width: 532px;
  margin: 24px auto 30px;
}

.course-price__container {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.course-price__container:last-child {
  margin-bottom: 0;
}

.course-price__ttl {
  color: #085640;
  font-size: 1.23rem;
  letter-spacing: 0.05em;
  border: 1px solid #085640;
  padding: 3px 10px 2px;
  margin-right: 14px;
}

.course-price__txt {
  font-size: 1.56rem;
  font-weight: 600;
}

.course-price__txt .small {
  font-size: 1.125rem;
  padding-left: 3px;
}

.course-price__detail {
  max-width: 532px;
  margin: 0 auto;
  padding: 27px 6%;
  background: #f8f3ea;
  border-radius: 10px;
  font-size: 1.125rem;
}

.course-price--strong {
  font-weight: 600;
}

.price-strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  section#course {
    padding: 60px 0 10px;
  }

  .course__ttl {
    margin: 0 0 60px 60px;
    font-size: 1.25rem;
  }

  .first-course {
    margin: 0 auto 60px;
  }

  .first-course__ttl {
    font-size: 1.375rem;
    margin-bottom: 17px;
  }

  .first-course__microcopy {
    font-size: 0.875rem;
  }

  .first-course-img__txt {
    font-size: 0.75rem;
  }

  .first-course-price__wrap {
    margin: 21px auto 16px;
  }

  .course-price__container {
    margin-bottom: 10px;
  }

  .course-price__ttl {
    font-size: 1.125rem;
  }

  .course-price__txt {
    font-size: 1.25rem;
  }

  .first-course-price__txt .small {
    font-size: 0.93rem;
  }

  .first-course-price__detail {
    font-size: 1rem;
  }
}

.subscription__ttl__wrapper {
  text-align: center;
}

.subscription__ttl {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #085640;
  /*background: #fff;*/
  /*padding: 3px 10px 2px;*/
  width: fit-content;
  margin: 0 auto 60px;
}

.subscription__ttl .ttl-white-bg{
	background: #fff;
	padding: 3px 10px 2px;
}

.subscription__wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.subscription-card {
  background: #fff;
  padding: 26px 16px 16px;
  width: calc(100% / 3);
}

.subscription-card:nth-child(2) {
  margin: 0 25px;
}

.subscription-card__ttl {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: #085640;
  padding: 3px 10px 2px;
  width: fit-content;
  margin: 0 auto 20px;
}

.subscription-plan {
  width: fit-content;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.subscription-card-img,
.subscription-card-img source,
.subscription-card-img img {
  width: 100%;
}

.subscription-card-img {
  margin-bottom: 20px;
}

.subscription-detail {
  padding: 22px 20px;
  background: #f8f3ea;
  border-radius: 10px;
}

.subscription .course-price__ttl {
  font-size: 1rem;
  margin-right: 10px;
}

.subscription .course-price__txt .small {
  font-size: 0.93rem;
}

.subscription .price-strong {
  font-size: 1.125rem;
}

.subscription-detail__ttl {
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding-bottom: 3px;
  width: fit-content;
  border-bottom: 1px solid #515050;
  margin-bottom: 16px;
}

.subscription-detail__list li {
  padding: 0 0 0 22px;
  margin-bottom: 10px;
  position: relative;
}

.subscription-detail__list li::before {
  content: "";
  background-image: url(../img/top/subscription-detail__check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
}

/* 768pxä»¥ä¸ã§ã®ã¬ã¹ãã³ã·ããã¶ã¤ã³ */
@media screen and (max-width: 768px) {
  .subscription__ttl {
    margin-inline: auto;
    font-size: 1.25rem;
    display: inline;
    line-height: 1.8;
  }

  .subscription__ttl .sp_content {
    display: block;
  }

  .subscription-card__ttl {
    font-size: 1.125rem;
  }

  .subscription__wrapper {
    flex-direction: column;
    padding: 0 4%;
    gap: 132px;
    margin-top: 1.5rem;
  }

  .subscription-card {
    width: 100%;
    padding: 40px 15px 130px;
    border-radius: 10px;
  }

  .subscription-card:nth-child(2) {
    margin: 0;
  }

  .subscription-detail {
    position: absolute;
    right: 0;
    width: 90%;
  }

  .subscription-detail__list li {
    font-size: 0.875rem;
  }
}

.course__btn {
  margin: 80px auto 0;
  @media screen and (max-width: 768px) {
    margin: 60px auto;
  }
}

section#flow {
  padding: 6.25rem 0;
  @media screen and (max-width: 768px) {
    padding: 40px 0 10px;
    background: #f8f3ea;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #085640;
    }
  }

  .flow__ttl {
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: #085640;
    text-align: center;
  }
  .flow__container.pc {
    position: relative;
	  max-width: 1200px;
        margin: 0 auto;
    @media screen and (max-width: 768px) {
      display: block;
    }
    .flow__content__wrapper {
      overflow-x: scroll;
      padding: 3.188rem 3.32rem 4.5rem;
      border-radius: 5px 0 0 5px;
      box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.15);
      max-width: 1200px;
      margin: 0 auto;
		@media screen and (max-width: 768px){
			overflow-x: initial;
			box-shadow: initial;
			padding: 0;
		}
    }
    .flow__content {
      background: #fff;
      width: 102.5rem;
      display: flex;
      gap: 1.625rem;
		@media screen and (max-width: 768px){
			display: block;
			width: 100%;
			background: initial;
		}
      .flow__card {
		  width: 300px;
		  @media screen and (max-width: 768px){
			  width: 100%;
		  }
		  picture img{
			  width: 100%;
			  @media screen and (max-width: 768px){
				   max-width: 219px;
				  margin: 0 auto;
			  }
		  }
        .flow__card__ttl {
          font-size: 1.25rem;
          letter-spacing: 0.05em;
          color: #515050;
          margin-top: 1rem;
			@media screen and (max-width: 768px){
				text-align: center;
			}
          span {
            &:nth-child(2) {
              margin-left: 0.5rem;
            }
          }
        }
        p {
          margin-top: 0.5rem;
          margin-right: 2rem;
			@media screen and (max-width: 768px){
				margin: 0.5rem auto 2rem;
				max-width: 287px;
			}
        }
      }
    }
    .scroll_txt {
      position: absolute;
      bottom: 15px;
      right: 10px;
      letter-spacing: 0.05em;
		@media screen and (max-width: 768px){
			display: none;
		}
    }
	  
  }
  .flow__container.sp {
    display: none;
    padding: 0 6%;
    @media screen and (max-width: 768px) {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .flow__card {
      picture {
        display: block;
        padding: 0 2.5rem;
      }
      .flow__card__ttl {
        text-align: center;
        margin-top: 1rem;
        span {
          &:nth-child(2) {
            margin-left: 0.5rem;
          }
        }
      }
      p {
        margin-top: 0.5rem;
        font-size: 1rem;
      }
    }
  }
}

section#voice {
  background: #e7ecf2;
  padding: 6.25rem 0;
  @media screen and (max-width: 768px) {
    padding: 40px 0 1px;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #515050;
    }
  }

  .voice__container {
    max-width: 1200px;
    margin: 0 auto;
    .voice__content {
      display: flex;
      gap: 1rem;
      @media screen and (max-width: 768px) {
        flex-direction: column;
		  gap: 45px;
      }
      .voice__card {
        width: calc(100% / 4);
		  background: #fff;
        @media screen and (max-width: 768px) {
          width: 100%;
        }
		  .voice__card-ttl{
			  width: 100%;
			  text-align: center;
			  margin: 15px 0 10px;
			  font-size: 17px;
		  }
		  .voice__card-txt{
			  padding: 0 10px 20px;
		  }
      }
    }
  }
}

section#shop_list {
  padding: 6.25rem 0;
  @media screen and (max-width: 768px) {
    padding: 40px 0 0;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #085640;
    }
    .shop_list__container {
      .shop_list__content {
        & > ul {
          display: flex;
          flex-direction: column;
          gap: 25px;
          width: 100%;
          max-width: 800px;
          margin: 0 auto;
          li {
            width: 100%;
            details {
              color: #fff;
              font-weight: 600;
              display: inline-block;
              width: 100%;
              overflow: hidden;
              transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
              padding-bottom: 0;
            }
            details[open] {
              padding-bottom: 2rem;
              transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }
            details[open] summary:before {
              transform: rotate(90deg);
            }

            summary {
              background: #085640;
              position: relative;
              padding: 0.5rem 2rem;
              list-style: none;
              cursor: pointer;
              user-select: none;
              outline: none;
              transition: background 0.3s;
              &::before {
                content: "";
                position: absolute;
                top: 50%;
                right: 22px;
                translate: 0 -50%;
                background: url(../img/top/arrow_forward_ios.svg) no-repeat center center / contain;
                width: 1.5rem;
                height: 1.5rem;
                transition: transform 0.3s;
              }
            }
            .shop_details_container {
              background: #fff;
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 5rem 1rem;
              padding: 2rem;
              opacity: 0;
              transform: translateY(-10px);
              transition: opacity 0.4s, transform 0.4s;
              pointer-events: none;
              @media screen and (max-width: 768px) {
                padding: 1rem 0;
              }
            }
            details[open] .shop_details_container {
              opacity: 1;
              transform: translateY(0);
              pointer-events: auto;
              transition: opacity 0.4s, transform 0.4s;
            }
            .shop_details_contents {
              display: flex;
              flex-direction: column;
              gap: 1rem;
              @media screen and (max-width: 768px) {
                justify-content: space-between;
              }
              .shop_name {
                font-size: 1.25rem;
                letter-spacing: 0.05em;
                color: #515050;
                @media screen and (max-width: 768px) {
                  font-size: 0.9rem;
                }
              }
              a {
                display: block;
                picture {
                  display: inline-block;
                  img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                  }
                }
                &.btn--primary {
                  max-width: 250px;
                  @media screen and (max-width: 768px) {
 Â  Â  Â  Â  Â  Â  Â  Â  Â  Â max-width: 100%;
					  width: 100%;
                    margin-top: 0.5rem;
                    padding: 4px 0;
                    font-weight: 400;
                  }
                  span {
                    @media screen and (max-width: 768px) {
                      font-size: 0.75rem;
						font-weight: 600;
                    }
                  }
                }
              }
              address {
                font-style: normal;
                ul {
                  li {
                    font-size: 1rem;
                    color: #515050;
                    font-weight: 500;
                    @media screen and (max-width: 768px) {
                      font-size: 0.75rem;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

section#faq {
  padding: 6.25rem 0;
  background: #e7ecf2;
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #085640;
    }
    .faq__container {
      .faq__contents {
        & > ul {
          display: flex;
          flex-direction: column;
          gap: 25px;
          width: 100%;
          max-width: 800px;
          margin: 0 auto;
          li {
            width: 100%;
            details {
              color: #fff;
              font-weight: 600;
              display: inline-block;
              width: 100%;
              overflow: hidden;
              transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
              padding-bottom: 0;
            }
            details[open] {
              transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }
            details[open] summary:after {
              transform: rotate(90deg);
            }
            summary {
              background: #085640;
              position: relative;
              padding: 0.5rem 3rem;
              list-style: none;
              cursor: pointer;
              user-select: none;
              outline: none;
              transition: background 0.3s;
              &:before {
                content: "Q.";
                color: #fff;
                font-size: 1.25rem;
                font-weight: 600;
                letter-spacing: 0.05em;
                position: absolute;
                top: 0.3rem;
                left: 15px;
                font-family: "Montserrat", sans-serif;
              }
              &:after {
                content: "";
                position: absolute;
                top: 0.7rem;
                right: 22px;
                background: url(../img/top/arrow_forward_ios.svg) no-repeat center center / contain;
                width: 1.1rem;
                height: 1.1rem;
                transition: transform 0.3s;
              }
            }
            .shop_details_container {
              background: #fff;
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 5rem 1rem;
              padding: 2rem;
              opacity: 0;
              transform: translateY(-10px);
              transition: opacity 0.4s, transform 0.4s;
              pointer-events: none;
            }
            details[open] .shop_details_container {
              opacity: 1;
              transform: translateY(0);
              pointer-events: auto;
              transition: opacity 0.4s, transform 0.4s;
            }
            .faq__answer {
              p {
                font-size: 1.1rem;
                line-height: 150%;
                padding-left: 3rem;
                color: #515050;
                font-weight: 400;
                margin-top: 1.5rem;
                position: relative;
                &:before {
                  content: "A.";
                  position: absolute;
                  top: 0;
                  left: 23px;
                  font-weight: 600;
                  font-family: "Montserrat", sans-serif;
                }
                span {
                  background: linear-gradient(
                    to bottom,
                    transparent 0%,
                    transparent calc(100% - 8px),
                    #ffd371 100%,
                    #ffd371 100%
                  );
                }
              }
            }
          }
        }
      }
    }
  }
}

section#info {
  padding: 6.25rem 0;
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #515050;
    }
  }

  .news_container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    ul {
      border-top: 1px solid #515050;
      li {
        border-bottom: 1px solid #515050;
        a {
          display: flex;
          color: #515050;
          gap: 1rem;
          align-items: center;
          padding: 1.5rem 0 1.5rem 5rem;
          @media screen and (max-width: 768px) {
            flex-direction: column;
            padding: 0.5rem;
            align-items: flex-start;
            gap: 0.5rem;
          }
          .news_ttl {
            display: flex;
            gap: 1rem;
            align-items: center;
          }
          time {
            color: #515050;
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 150%;
          }
          span {
            color: #fff;
            background: #085640;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 2px;
          }
          p {
            font-size: 1rem;
            line-height: 150%;
            font-weight: 600;
          }
        }
      }
    }
  }
}

section#sns {
  padding: 6.25rem 0;
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #515050;
    }
  }

  .sns_container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
}

section#recruit {
  padding: 6.25rem 0;
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }

  .inner {
    padding: 0 10rem;
    @media screen and (max-width: 768px) {
      padding: 0 4%;
    }
    & > h2 {
      color: #515050;
      font-weight: 600;
      margin: 0 auto 4.5rem;
    }
  }

  .recruit_container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
}

section#cta {
  padding: 0.8rem 0;
  background: #e25959;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  a {
    display: block;
    picture {
      display: inline-block;
    }
  }
}

footer {
  padding-bottom: 5.25rem;
  .footer_main_container {
    padding: 3rem 1.5rem;
    @media screen and (max-width: 768px) {
      padding: 3rem 0 3.5rem;
    }
    background: #085640;
  }
  .inner {
    padding: 0 1rem;
    @media screen and (max-width: 768px) {
      padding: 0 21px;
    }
  }
  .footer-logo {
    background: #fff;
    width: fit-content;
	  padding: 9px 0 0;
    a {
      display: inline-block;
      width: 100%;
    }
    picture {
      img {
      }
    }
  }
  .footer-nav {
    display: flex;
    width: 100%;
    max-width: 580px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 18px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 10px;
    }
    li {
      a {
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Segoe UI", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 21px */
        display: flex;
        align-items: center;
        &::before {
          content: "";
          display: inline-block;
          width: 15px;
          height: 15px;
          flex-shrink: 0;
          aspect-ratio: 1/1;
          background: url(../img/top/arrow_forward_ios.svg) no-repeat center center / contain;
        }
      }
    }
  }
  .footer_sub_container {
    background: #fff;
    padding: 2rem 1.5rem 1.5rem;
    @media screen and (max-width: 768px) {
      padding: 1.5rem 7px;
    }
    ul {
      display: flex;
      flex-direction: column;
      li {
        a {
          color: #515050;
          font-family: "Noto Sans JP";
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%; /* 21px */
        }
      }
    }
    p {
      color: #515050;
      text-align: center;
      font-family: "Noto Sans JP";
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%; /* 18px */
      @media screen and (max-width: 768px) {
        margin-top: 20px;
      }
    }
  }
}


@media screen and (max-width: 768px){
	#course .btn--primary.course__btn{
		margin-top: 110px;
	}
}

.sns{
	max-width: 800px;
	margin: 0 auto;
}