@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #6f6f6f;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  line-height: 1.5;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

.main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

.container-out {
  width: 1460px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container-out {
    padding: 0 15px;
  }
}

.container-in {
  width: 1340px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container-in {
    padding: 0 15px;
  }
}

.btn_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .btn_wrapper {
    flex-direction: column;
  }
}

.btn_wrapper .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 330px;
  height: 65px;
  border-radius: 999px;
}

.btn_wrapper .btn a img {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .btn_wrapper .btn a img {
    margin-right: 10px;
  }
}

.btn_wrapper .line a {
  background-color: #b6c28c;
}

.btn_wrapper .line a img {
  width: 37px;
}

.btn_wrapper .contact_btn a {
  background-color: #cea9ab;
}

.btn_wrapper .contact_btn a img {
  width: 36px;
}

/* ===============================================
# cta
=============================================== */
.cta {
  position: fixed;
  right: -20px;
  bottom: -20px;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .cta {
    right: 0;
    bottom: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cta .wrapper {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .cta .wrapper .cta_btn {
    width: 50%;
  }
}

.cta .wrapper .cta_btn a {
  --feather: 20px;
  --bg: #999;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 11.4583vw, 220px);
  height: clamp(180px, 11.4583vw, 220px);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  /* 背景はCSSカスタムプロパティで渡す */
  background: var(--bg);
  /* フチだけをフェード（Safari対応で -webkit- も併記） */
  -webkit-mask: radial-gradient(closest-side, #000 calc(100% - var(--feather)), transparent 100%);
  mask: radial-gradient(closest-side, #000 calc(100% - var(--feather)), transparent 100%);
}

@media screen and (max-width: 767px) {
  .cta .wrapper .cta_btn a {
    width: 100%;
    height: 60px;
    border-radius: unset;
    -webkit-mask: unset;
    mask: unset;
  }
}

.cta .wrapper .cta_btn a img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 37px;
}

@media screen and (max-width: 767px) {
  .cta .wrapper .cta_btn a img {
    display: inline;
    margin-bottom: 0;
    width: 25px;
  }
}

@media screen and (max-width: 767px) {
  .cta .wrapper .cta_btn a div {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

.cta .wrapper .cta_btn-line a {
  background-color: #b2cebc;
}

.cta .wrapper .cta_btn-contact {
  margin-top: -50px;
}

@media screen and (max-width: 767px) {
  .cta .wrapper .cta_btn-contact {
    margin-top: 0;
  }
}

.cta .wrapper .cta_btn-contact a {
  background-color: #cbb7c6;
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 20px;
  }
}

#header.change-color {
  background-color: #e5cde1;
  transition: 0.1s;
}

#header.change-color::after {
  position: absolute;
  content: "";
  background: url(../img/bg-header-bottom.webp) center center/cover no-repeat;
  height: 0.885416vw;
  bottom: -0.885416vw;
  left: 0;
  right: 0;
}

#header > .inner {
  padding-bottom: 10px;
  padding-top: 5px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #header > .inner {
    display: block;
    padding-bottom: 8px;
    padding-top: 5px;
  }
}

.header-left {
  margin-right: auto;
}

.header-logo {
  line-height: 1;
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

.header-logo a img {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .header-logo a img {
    width: 70px;
  }
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-right {
  margin-left: auto;
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 30px;
  line-height: 30px;
  gap: clamp(20px, 2.083vw, 40px);
}

.header-nav li > a {
  color: #fff;
  display: block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  text-align: center;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-icon {
  color: #d5b1b1;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 15px;
  z-index: 41;
  background-color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: #e9dbd5;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.drawer-content::before {
  position: absolute;
  content: "";
  background: url(../img/bg-drawer.webp) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.drawer_bg {
  padding: 100px 16px 100px;
  height: 100vh;
  overflow: auto;
  position: relative;
}

.drawer_bg::before {
  position: absolute;
  content: "";
  background: url(../img/drawer-left.webp) center center/cover no-repeat;
  width: 180px;
  height: 174px;
  left: 0;
  top: 0;
}

.drawer_bg::after {
  position: absolute;
  content: "";
  background: url(../img/drawer-right.webp) center center/cover no-repeat;
  width: 180px;
  height: 174px;
  right: 0;
  bottom: 0;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px dotted #d5b1b1;
  color: #d5b1b1;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
  text-align: center;
}

.fa-times::before {
  color: #d5b1b1;
}

/* ===============================================
# fv
=============================================== */
.fv {
  background: url(../img/fv.webp) center center/cover no-repeat;
  width: 100%;
  height: 110vh;
  position: relative;
}

.fv::before {
  position: absolute;
  content: "";
  background: url(../img/fv-item-right.webp) center center/cover no-repeat;
  width: clamp(251px, 18.28125vw, 351px);
  height: clamp(239px, 17.65625vw, 339px);
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .fv::before {
    width: 109px;
    height: 107px;
  }
}

.fv::after {
  position: absolute;
  content: "";
  background: url(../img/fv-item-left.webp) center center/cover no-repeat;
  width: clamp(482px, 30.31249vw, 582px);
  height: clamp(471px, 29.73958vw, 571px);
  left: 0;
  bottom: -8%;
}

@media screen and (max-width: 767px) {
  .fv::after {
    width: 148px;
    height: 148px;
    bottom: 0;
  }
}

.fv_txt_box {
  position: absolute;
  left: 3%;
  top: 42%;
  transform: translateY(-50%);
  z-index: 1;
  background: url(../img/fv-head-bg.webp) center center/cover no-repeat;
  padding: 80px 60px 106px 50px;
}

@media screen and (max-width: 767px) {
  .fv_txt_box {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 80px 20px 106px 20px;
    width: 100%;
    text-align: center;
  }
}

.fv_txt_box .read {
  display: inline-block;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #a87171;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv_txt_box .read {
    font-size: 20px;
  }
}

.fv_txt_box .read::before {
  position: absolute;
  content: "";
  background: url(../img/fv-read-left.png) center center/cover no-repeat;
  width: 32px;
  height: 46px;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.fv_txt_box .read::after {
  position: absolute;
  content: "";
  background: url(../img/fv-read-right.png) center center/cover no-repeat;
  width: 32px;
  height: 46px;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.fv_txt_box .ttl {
  margin-top: 20px;
  font-size: clamp(60px, 4.21875vw, 81px);
  font-weight: bold;
  letter-spacing: -0.06em;
  line-height: 1.1;
  color: #a87171;
}

@media screen and (max-width: 767px) {
  .fv_txt_box .ttl {
    font-size: 32px;
    line-height: 1.3;
  }
}

.fv_txt_box .ttl .f-color {
  color: #c79898;
}

.fv_txt_box .ttl .f-small {
  font-size: clamp(40px, 3.125vw, 60px);
}

@media screen and (max-width: 767px) {
  .fv_txt_box .ttl .f-small {
    font-size: 28px;
  }
}

.fv_illust {
  position: absolute;
  left: 15%;
  bottom: -12%;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .fv_illust {
    bottom: 0;
  }
}

.fv_illust img {
  width: clamp(294px, 20.52083vw, 394px);
}

@media screen and (max-width: 767px) {
  .fv_illust img {
    width: 150px;
  }
}

/* ===============================================
# sec1
=============================================== */
.sec1 {
  position: relative;
}

.sec1::before {
  position: absolute;
  content: "";
  background: url(../img/bg-main.webp) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* ===============================================
# アバウト
=============================================== */
.about {
  padding-top: 150px;
  padding-bottom: 200px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 230px;
  }
}

.about::before {
  position: absolute;
  content: "";
  background: url(../img/bg-about-top.webp) center center/cover no-repeat;
  top: -260px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about_inner {
  position: relative;
  z-index: 3;
}

.about_inner::before {
  position: absolute;
  content: "";
  background: url(../img/about-left.webp) center center/cover no-repeat;
  width: 28.697916vw;
  height: 34.89583vw;
  left: 0;
  top: -60px;
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .about_inner::before {
    width: 150px;
    height: 180px;
    top: -117px;
  }
}

.about_inner::after {
  position: absolute;
  content: "";
  background: url(../img/about-right.webp) center center/cover no-repeat;
  width: 36.875vw;
  height: 39.7916vw;
  right: 0;
  bottom: -60%;
}

@media screen and (max-width: 767px) {
  .about_inner::after {
    width: 225px;
    height: 244px;
    bottom: -260px;
  }
}

.about_ttl {
  text-align: center;
}

.about_ttl .en_ttl {
  font-size: clamp(80px, 7.55208vw, 145px);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #c79898;
}

@media screen and (max-width: 767px) {
  .about_ttl .en_ttl {
    font-size: 40px;
    line-height: 1.2;
  }
}

.about_ttl .ja_ttl {
  font-size: clamp(24px, 2.083vw, 40px);
  font-weight: bold;
  color: #9d9d9d;
}

@media screen and (max-width: 767px) {
  .about_ttl .ja_ttl {
    font-size: 18px;
    margin-top: 5px;
  }
}

.about_txt-box {
  margin-top: clamp(100px, 6.25vw, 120px);
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 2.333;
}

@media screen and (max-width: 767px) {
  .about_txt-box {
    margin-top: 40px;
    line-height: 2;
    text-align: justify;
  }
}

.about_txt-box .top {
  max-width: 740px;
  margin-left: clamp(110px, 14.4583vw, 220px);
}

@media screen and (max-width: 767px) {
  .about_txt-box .top {
    max-width: 100%;
    margin-left: 0;
  }
}

.about_txt-box .bottom {
  max-width: 680px;
  margin-top: clamp(30px, 2.60416vw, 50px);
  margin-left: clamp(40px, 7.2916vw, 140px);
}

@media screen and (max-width: 767px) {
  .about_txt-box .bottom {
    max-width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

/* ===============================================
# お悩み
=============================================== */
.worries {
  position: relative;
  z-index: 2;
}

.worries .container-out {
  padding: 0;
}

.worries_box {
  padding: 100px clamp(150px, 9.73958vw, 187px) 26px;
  position: relative;
}

.worries_box::before {
  position: absolute;
  content: "";
  background: url(../img/bg-worries.webp) center center/cover no-repeat;
  width: 1350px;
  height: 752px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .worries_box::before {
    height: 980px;
  }
}

@media screen and (max-width: 767px) {
  .worries_box {
    padding: 60px 15px 28px;
  }
}

.worries_box .ttl {
  font-weight: bold;
  line-height: 1.2;
  margin-left: 60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .worries_box .ttl {
    margin-left: 0;
  }
}

.worries_box .ttl::after {
  position: absolute;
  content: "";
  background: url(../img/worries-ttl-bottom.webp) center center/cover no-repeat;
  width: clamp(550px, 45.625vw, 876px);
  height: clamp(15px, 1.40625vw, 27px);
  left: 0;
  bottom: clamp(-30px, -1.5625vw, -15px);
}

@media screen and (max-width: 767px) {
  .worries_box .ttl::after {
    width: 100%;
    height: 10px;
    bottom: -13px;
  }
}

.worries_box .ttl .f-small {
  font-size: clamp(28px, 1.97916vw, 38px);
  color: #8d8d8d;
}

@media screen and (max-width: 767px) {
  .worries_box .ttl .f-small {
    font-size: 20px;
  }
}

.worries_box .ttl .bottom {
  font-size: clamp(48px, 3.38542vw, 65px);
  color: #9da78e;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .worries_box .ttl .bottom {
    font-size: 32px;
    margin-left: 20px;
  }
}

.worries_box .ttl .bottom .f-color {
  color: #a9b2ac;
  font-size: clamp(38px, 2.7083vw, 52px);
}

@media screen and (max-width: 767px) {
  .worries_box .ttl .bottom .f-color {
    font-size: 24px;
  }
}

.worries_box .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .worries_box .wrapper {
    flex-direction: column;
    margin-top: 35px;
  }
}

.worries_box .wrapper .illust {
  margin-top: -60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .worries_box .wrapper .illust {
    margin-top: 30px;
    margin-left: 80px;
  }
}

.worries_box .wrapper .illust img {
  width: clamp(200px, 13.75vw, 264px);
}

@media screen and (max-width: 767px) {
  .worries_box .wrapper .illust img {
    width: 100px;
  }
}

.worries_box .worries_list {
  margin-top: 20px;
}

.worries_box .worries_list li {
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 15px;
  padding-left: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .worries_box .worries_list li {
    padding-left: 30px;
  }
}

.worries_box .worries_list li::after {
  position: absolute;
  content: "";
  background: url(../img/worries-check.png) center center/cover no-repeat;
  width: 21px;
  height: 21px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.worries_box .worries_list li:first-child {
  margin-top: 0;
}

.worries_box .worries_list li span {
  color: #907676;
  border-bottom: 2px dotted #a87171;
}

.worries_box .btn_wrapper {
  justify-content: right;
  margin-top: -2px;
}

@media screen and (max-width: 767px) {
  .worries_box .btn_wrapper {
    margin-top: -1px;
  }
}

/* ===============================================
# 期待できること
=============================================== */
.effect {
  padding-top: clamp(120px, 10.416vw, 200px);
  padding-bottom: clamp(120px, 10.9375vw, 210px);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .effect {
    padding-top: 100px;
    padding-bottom: 130px;
  }
}

.effect_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

@media screen and (max-width: 767px) {
  .effect_ttl {
    flex-direction: column;
    gap: 0;
  }
}

.effect_ttl .en_ttl {
  font-size: clamp(80px, 6.25vw, 120px);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #c79898;
}

@media screen and (max-width: 767px) {
  .effect_ttl .en_ttl {
    font-size: 40px;
  }
}

.effect_ttl .ja_ttl-wrap {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .effect_ttl .ja_ttl-wrap {
    text-align: center;
  }
}

.effect_ttl .ja_ttl-wrap .ja_ttl {
  font-size: clamp(32px, 2.1875vw, 42px);
}

@media screen and (max-width: 767px) {
  .effect_ttl .ja_ttl-wrap .ja_ttl {
    font-size: 24px;
  }
}

.effect_ttl .ja_ttl-wrap .txt {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.effect_img {
  margin-top: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .effect_img {
    margin-top: 30px;
  }
}

.effect_img::before {
  position: absolute;
  content: "";
  background: url(../img/effect-right.webp) center center/cover no-repeat;
  width: 328px;
  height: 184px;
  right: -100px;
  top: -50px;
}

@media screen and (max-width: 767px) {
  .effect_img::before {
    width: 100px;
    height: 50px;
    right: -32px;
    top: -5px;
  }
}

.effect_img::after {
  position: absolute;
  content: "";
  background: url(../img/effect-left.webp) center center/cover no-repeat;
  width: 328px;
  height: 184px;
  left: -100px;
  bottom: -50px;
}

@media screen and (max-width: 767px) {
  .effect_img::after {
    width: 100px;
    height: 50px;
    left: -30px;
    bottom: 0;
  }
}

.effect_wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .effect_wrapper {
    margin-top: 35px;
    flex-direction: column;
  }
}

.effect_wrapper .item .item_ttl {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .effect_wrapper .item .item_ttl {
    flex-direction: column;
    gap: 0;
  }
}

.effect_wrapper .item .item_ttl .en_ttl {
  font-size: clamp(36px, 1.875vw, 50px);
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .effect_wrapper .item .item_ttl .en_ttl {
    font-size: 32px;
  }
}

.effect_wrapper .item .item_ttl .ja_ttl {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 12px 30px;
  border-radius: 999px;
}

@media screen and (max-width: 767px) {
  .effect_wrapper .item .item_ttl .ja_ttl {
    padding: 10px 20px;
  }
}

.effect_wrapper .item .effect_list {
  margin-top: 35px;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .effect_wrapper .item .effect_list {
    margin-top: 30px;
    padding-left: 0;
  }
}

.effect_wrapper .item .effect_list li {
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 15px;
  padding-left: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .effect_wrapper .item .effect_list li {
    padding-left: 30px;
  }
}

.effect_wrapper .item .effect_list li::before {
  width: 21px;
  height: 21px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.effect_wrapper .item .effect_list li:first-child {
  margin-top: 0;
}

.effect_wrapper .baby .item_ttl .en_ttl {
  color: #d5b1b1;
}

.effect_wrapper .baby .item_ttl .ja_ttl {
  background-color: #d5b1b1;
}

.effect_wrapper .baby .effect_list li::before {
  position: absolute;
  content: "";
  background: url(../img/icon-check-pink.png) center center/cover no-repeat;
}

.effect_wrapper .baby .effect_list li span {
  color: #d5b1b1;
}

@media screen and (max-width: 767px) {
  .effect_wrapper .family {
    margin-top: 60px;
  }
}

.effect_wrapper .family .item_ttl .en_ttl {
  color: #a9b2ac;
}

.effect_wrapper .family .item_ttl .ja_ttl {
  background-color: #a9b2ac;
}

.effect_wrapper .family .effect_list li::before {
  position: absolute;
  content: "";
  background: url(../img/icon-check-green.png) center center/cover no-repeat;
}

.effect_wrapper .family .effect_list li span {
  color: #9bc9ab;
}

/* ===============================================
# レッスン
=============================================== */
.lesson {
  background-color: #f8edf6;
  padding: 0 40px 30px;
  margin-top: clamp(150px, 10.416vw, 200px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .lesson {
    margin-top: 0;
    padding: 0 0 30px;
  }
}

.lesson::before {
  position: absolute;
  content: "";
  background: url(../img/bg-lesson-top.png) center center/cover no-repeat;
  width: 100%;
  height: 10.15625vw;
  top: -10.15625vw;
  left: 0;
  right: 0;
}

.lesson::after {
  position: absolute;
  content: "";
  background: url(../img/bg-lesson-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 5.208333vw;
  bottom: -5.208333vw;
  left: 0;
  right: 0;
}

.lesson_inner {
  max-width: 1640px;
  margin: 0 auto;
}

.lesson_inner .wrapper {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .lesson_inner .wrapper {
    flex-direction: column;
  }
}

.lesson_inner .content_box {
  width: 57.32%;
  margin-right: -100px;
  margin-top: 200px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 670px;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box {
    width: 100%;
    margin-right: 0;
    margin-top: 60px;
    padding: 0 15px;
  }
}

.lesson_inner .content_box::after {
  position: absolute;
  content: "";
  background: url(../img/bg-box-lesson.webp) center center/cover no-repeat;
  width: clamp(840px, 48.95833vw, 940px);
  height: clamp(632px, 37.5vw, 720px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box::after {
    top: 72%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 100%;
    height: 97%;
  }
}

.lesson_inner .content_box .illust_left {
  position: absolute;
  left: -18%;
  top: 0;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .illust_left {
    display: none;
  }
}

.lesson_inner .content_box .illust_left img {
  width: clamp(150px, 11.4583vw, 220px);
}

.lesson_inner .content_box .illust_right {
  position: absolute;
  right: -27%;
  bottom: -49px;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .illust_right {
    display: none;
  }
}

.lesson_inner .content_box .illust_right img {
  width: clamp(200px, 16.14583vw, 310px);
}

.lesson_inner .content_box .lesson_ttl {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .lesson_ttl {
    flex-direction: column;
    gap: 0;
    align-items: baseline;
  }
}

.lesson_inner .content_box .lesson_ttl .en_ttl {
  font-size: clamp(60px, 4.6875vw, 90px);
  letter-spacing: 0.06em;
  color: #c79898;
  position: relative;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .lesson_ttl .en_ttl {
    font-size: 40px;
  }
}

.lesson_inner .content_box .lesson_ttl .en_ttl::after {
  position: absolute;
  content: "";
  background: url(../img/icon-ttl-kira.webp) center center/cover no-repeat;
  width: 40px;
  height: 56px;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .lesson_ttl .en_ttl::after {
    width: 30px;
    height: 46px;
  }
}

.lesson_inner .content_box .lesson_ttl .ja_ttl {
  font-size: 23px;
  letter-spacing: 0.04em;
  color: #adccb8;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .lesson_list {
    margin-top: 60px;
  }
}

.lesson_inner .content_box .lesson_list li {
  font-size: 16px;
  font-weight: bold;
  color: #d69292;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .lesson_inner .content_box .lesson_list li {
    margin-top: 15px;
  }
}

.lesson_inner .lesson_img {
  width: 47.56%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .lesson_inner .lesson_img {
    margin-top: 30px;
    width: 64.56%;
    position: relative;
    z-index: 2;
  }
}

.lesson_inner .lesson_img img {
  width: clamp(400px, 39.583vw, 760px);
  height: clamp(400px, 39.583vw, 760px);
}

.lesson_woman {
  position: absolute;
  bottom: -5.208333vw;
  right: 13%;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .lesson_woman {
    right: 5%;
  }
}

.lesson_woman img {
  display: block;
  width: clamp(180px, 11.97916vw, 230px);
}

@media screen and (max-width: 767px) {
  .lesson_woman img {
    width: 100px;
  }
}

/* ===============================================
# 受講生の声
=============================================== */
.voice {
  background: url(../img/bg-voice.webp) center center/cover no-repeat;
  padding: 300px 0 200px;
  padding: clamp(150px, 15.625vw, 300px) 0 clamp(100px, 10.41667vw, 200px);
}

@media screen and (max-width: 767px) {
  .voice {
    padding: 150px 0 100px;
  }
}

.voice .btn_wrapper {
  justify-content: center;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .voice .btn_wrapper {
    margin-top: 60px;
  }
}

.voice_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: bold;
}

.voice_ttl .ja_ttl {
  font-size: 42px;
  color: #9d9d9d;
}

@media screen and (max-width: 767px) {
  .voice_ttl .ja_ttl {
    font-size: 32px;
  }
}

.voice_ttl .en_ttl {
  font-size: 21px;
  letter-spacing: 0.1em;
  color: #c79898;
}

.voice_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .voice_wrapper {
    flex-direction: column;
    margin-top: 40px;
  }
}

.voice_wrapper .item {
  width: 29%;
}

@media screen and (max-width: 767px) {
  .voice_wrapper .item {
    width: 100%;
    margin-top: 30px;
  }
  .voice_wrapper .item:first-child {
    margin-top: 0;
  }
}

.voice_wrapper .item .item_img {
  text-align: center;
}

.voice_wrapper .item .item_img img {
  width: clamp(200px, 12.5vw, 240px);
}

@media screen and (max-width: 767px) {
  .voice_wrapper .item .item_img img {
    width: 180px;
  }
}

.voice_wrapper .item .content {
  background-color: #f8edf6;
  padding: 50px 30px 30px;
  border-radius: 10px;
  margin-top: -20px;
  min-height: 280px;
}

@media screen and (max-width: 767px) {
  .voice_wrapper .item .content {
    padding: 40px 15px 30px;
    min-height: auto;
    margin-top: -25px;
  }
}

.voice_wrapper .item .content .txt {
  font-size: 16px;
  font-weight: bold;
  color: #d69292;
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-align: justify;
}

.voice_wrapper .item .content .name {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 35px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .voice_wrapper .item .content .name {
    margin-top: 20px;
  }
}

/* ===============================================
# 料金
=============================================== */
.price {
  padding-top: 190px;
  padding-bottom: 170px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .price {
    padding-top: 80px;
  }
}

.price::before {
  position: absolute;
  content: "";
  background: url(../img/bg-price-top.webp) center center/cover no-repeat;
  width: 100%;
  height: 4.0104vw;
  top: -4.0104vw;
  left: 0;
  right: 0;
}

.price .top {
  text-align: center;
}

.price .top .price_ttl {
  font-weight: bold;
}

.price .top .price_ttl .ja_ttl {
  display: inline-block;
  font-size: clamp(36px, 2.1875vw, 42px);
  color: #ebd0d0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .price .top .price_ttl .ja_ttl {
    font-size: 28px;
  }
}

.price .top .price_ttl .ja_ttl::after {
  position: absolute;
  content: "";
  background: url(../img/icon-ttl-kira.webp) center center/cover no-repeat;
  width: 40px;
  height: 56px;
  right: -50px;
  top: -20px;
}

@media screen and (max-width: 767px) {
  .price .top .price_ttl .ja_ttl::after {
    width: 30px;
    height: 46px;
  }
}

.price .top .price_ttl .en_ttl {
  font-size: clamp(70px, 4.6875vw, 90px);
  letter-spacing: 0.06em;
  color: #c79898;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .price .top .price_ttl .en_ttl {
    font-size: 40px;
  }
}

.price .top .read {
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .price .top .read {
    margin-top: 20px;
    font-size: 14px;
    text-align: justify;
  }
}

.price_wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .price_wrapper {
    flex-direction: column;
  }
}

.price_wrapper .price_img {
  position: absolute;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .price_wrapper .price_img {
    bottom: 40px;
  }
}

.price_wrapper .price_img img {
  width: 42.916vw;
}

@media screen and (max-width: 767px) {
  .price_wrapper .price_img img {
    width: 230px;
  }
}

.price_wrapper .content {
  width: 55.07%;
  margin-left: auto;
  margin-top: 80px;
  border-top: 2px dotted #d5b1b1;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 180px;
  }
}

.price_wrapper .content .price-box-item {
  padding-bottom: 25px;
  border-bottom: 2px dotted #d5b1b1;
  margin-bottom: 25px;
}

.price_wrapper .content .price-box-item:last-child {
  margin-bottom: 0;
}

.price_wrapper .content .price-box-content {
  cursor: pointer;
  padding: 0 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-box-content {
    padding: 0;
  }
}

.price_wrapper .content .price-box-content::before {
  position: absolute;
  content: "";
  background-color: #d5b1b1;
  border-radius: 999px;
  width: 25px;
  height: 25px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.price_wrapper .content .price-box-content::after {
  content: "+";
  position: absolute;
  right: 25.5px;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-box-content::after {
    top: -2px;
    right: 25.5px;
  }
}

.price_wrapper .content .price-box-content .ttl {
  font-size: 26px;
  font-size: clamp(22px, 1.35416vw, 26px);
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-left: 20px;
  margin-top: 20px;
  color: #818181;
  height: 33px;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-box-content .ttl {
    font-size: 18px;
    margin-left: 0;
    height: auto;
  }
}

.price_wrapper .content .price-acd-area {
  margin-top: 10px;
  padding: 0 clamp(20px, 2.9282vw, 40px);
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-acd-area {
    margin-top: 25px;
    padding: 0;
  }
}

.price_wrapper .content .price-acd-area .content_price {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  background-color: #d5b1b1;
  padding: 10px 24px;
  border-radius: 999px;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-acd-area .content_price {
    display: block;
    padding: 8px 20px;
  }
}

.price_wrapper .content .price-acd-area .txt {
  font-size: 16px;
  font-weight: bold;
  margin-top: 25px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: justify;
}

.price_wrapper .content .price-acd-area .content_txt {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 20px;
  background-color: #f4f4f4;
  color: #6f6f6f;
  padding: 20px 30px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-acd-area .content_txt {
    padding: 15px 10px;
  }
}

.price_wrapper .content .price-box-item.open .price-box-content::after {
  content: "−";
  right: 20px;
  top: 4px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .price_wrapper .content .price-box-item.open .price-box-content::after {
    top: 1px;
  }
}

.price_woman-img {
  position: absolute;
  bottom: 0;
  left: 25%;
}

@media screen and (max-width: 767px) {
  .price_woman-img {
    left: unset;
    right: 5%;
  }
}

.price_woman-img img {
  width: 13.75vw;
}

@media screen and (max-width: 767px) {
  .price_woman-img img {
    width: 120px;
  }
}

/* ===============================================
# 支払い方法
=============================================== */
.guide {
  padding-bottom: 400px;
  padding-bottom: clamp(200px, 20.8333vw, 400px);
}

@media screen and (max-width: 767px) {
  .guide {
    padding-bottom: 320px;
  }
}

.guide_box {
  padding: clamp(100px, 6.77083vw, 130px) clamp(60px, 4.6875vw, 90px) clamp(120px, 8.85416vw, 170px);
  border: 2px solid #d5b1b1;
  border-radius: 20px;
  outline: 2px solid #d5b1b1;
  outline-offset: -7px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .guide_box {
    padding: 60px 15px;
  }
}

.guide_box .btn_wrapper {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .guide_box .btn_wrapper {
    bottom: -200px;
  }
}

.guide_ttl {
  text-align: center;
  font-weight: bold;
}

.guide_ttl .en_ttl {
  font-size: 21px;
  letter-spacing: 0.1em;
  color: #d79595;
}

.guide_ttl .ja_ttl {
  font-size: clamp(36px, 2.1875vw, 42px);
  color: #9d9d9d;
}

@media screen and (max-width: 767px) {
  .guide_ttl .ja_ttl {
    font-size: 24px;
  }
}

.guide_wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0px, 3.125vw, 60px);
}

@media screen and (max-width: 767px) {
  .guide_wrapper {
    margin-top: 40px;
    flex-direction: column;
  }
}

.guide_wrapper .item {
  width: clamp(280px, 18.75vw, 360px);
  height: clamp(280px, 18.75vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 20px solid #d79595;
  border-radius: 50%;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .guide_wrapper .item {
    width: 280px;
    height: 280px;
    border: 15px solid #d79595;
  }
}

.guide_wrapper .item:nth-child(2) {
  border: 20px solid #d5b1b1;
}

@media screen and (max-width: 767px) {
  .guide_wrapper .item:nth-child(2) {
    border: 15px solid #d5b1b1;
  }
}

.guide_wrapper .item .ttl {
  display: inline-block;
  font-size: clamp(24px, 1.5625vw, 30px);
  color: #cea9ab;
  border-bottom: 2px dotted #262626;
}

@media screen and (max-width: 767px) {
  .guide_wrapper .item .ttl {
    font-size: 20px;
  }
}

.guide_wrapper .item .txt {
  margin-top: 20px;
  line-height: 1.666;
}

@media screen and (max-width: 767px) {
  .guide_wrapper .item .txt {
    margin-top: 10px;
  }
}

.guide_list {
  margin-top: 60px;
}

.guide_list li {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.guide_list li:first-child {
  margin-top: 0;
}

.guide_list li .icon {
  width: 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .guide_list li .icon {
    width: 40px;
  }
}

.guide_list li .icon .bank {
  width: 28px;
}

@media screen and (max-width: 767px) {
  .guide_list li .icon .bank {
    width: 20px;
  }
}

.guide_list li .icon .card {
  width: 42px;
}

@media screen and (max-width: 767px) {
  .guide_list li .icon .card {
    width: 35px;
  }
}

.guide_list li .icon .paypay {
  width: 30px;
}

@media screen and (max-width: 767px) {
  .guide_list li .icon .paypay {
    width: 22px;
  }
}

.guide_list li .content {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  width: calc(100% - 80px);
}

@media screen and (max-width: 767px) {
  .guide_list li .content {
    width: calc(100% - 40px);
  }
}

.guide_list li .content .txt {
  margin-top: 5px;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .guide_list li .content .txt {
    margin-left: 10px;
    text-align: justify;
  }
}

/* ===============================================
# 講師紹介
=============================================== */
.lecturer {
  background-color: #e3f8f0;
  padding-top: 120px;
  padding-bottom: 70px;
  position: relative;
}

.lecturer::before {
  position: absolute;
  content: "";
  background: url(../img/bg-lecturer-top.png) center center/cover no-repeat;
  width: 100%;
  height: 6.14583vw;
  top: -6.14583vw;
  left: 0;
  right: 0;
}

.lecturer::after {
  position: absolute;
  content: "";
  background: url(../img/bg-lecturer-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 9.5833vw;
  bottom: -9.5833vw;
  left: 0;
  right: 0;
}

.lecturer_top {
  position: relative;
  padding-bottom: 34px;
}

.lecturer_ttl {
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .lecturer_ttl {
    flex-direction: column;
    gap: 0;
  }
}

.lecturer_ttl .en_ttl {
  font-size: 60px;
  letter-spacing: 0.06em;
  color: #75ada3;
  position: relative;
}

@media screen and (max-width: 767px) {
  .lecturer_ttl .en_ttl {
    font-size: 40px;
    line-height: 1;
  }
}

.lecturer_ttl .en_ttl::before {
  position: absolute;
  content: "";
  background: url(../img/lesson-box-left.webp) center center/cover no-repeat;
  width: 252px;
  height: 160px;
  left: -150px;
  top: -100px;
  transform: rotate(10deg);
}

@media screen and (max-width: 767px) {
  .lecturer_ttl .en_ttl::before {
    width: 153px;
    height: 60px;
    left: -44px;
    top: -70px;
    transform: rotate(16deg);
  }
}

.lecturer_ttl .ja_ttl {
  font-size: 24px;
  color: #93bcb5;
}

.lecturer_movie {
  aspect-ratio: 680 / 380;
  width: 100%;
  max-width: 680px;
  margin-top: 30px;
  margin-left: clamp(20px, 6.25vw, 120px);
}

@media screen and (max-width: 767px) {
  .lecturer_movie {
    margin-left: 0;
  }
}

.lecturer_movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.lecturer_woman {
  position: absolute;
  bottom: 0;
  right: 10%;
}

@media screen and (max-width: 767px) {
  .lecturer_woman {
    top: -73px;
    bottom: unset;
  }
}

.lecturer_woman img {
  width: clamp(250px, 13.28125vw, 255px);
}

@media screen and (max-width: 767px) {
  .lecturer_woman img {
    width: 120px;
  }
}

.lecturer_bottom {
  background-color: #75ada3;
  padding: 70px 90px;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .lecturer_bottom {
    padding: 40px 15px;
  }
}

.lecturer_bottom .txt {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-align: justify;
}

/* ===============================================
# sec2
=============================================== */
.sec2 {
  background: url(../img/bg-sec2.webp) center center/cover no-repeat;
}

/* ===============================================
# よくある質問
=============================================== */
.faq {
  margin-top: -200px;
  padding: 400px 40px 0;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 300px 15px 0;
  }
}

.faq_box {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 27px;
  padding: 130px clamp(60px, 7.8125vw, 150px) 140px;
}

@media screen and (max-width: 767px) {
  .faq_box {
    padding: 60px 15px;
  }
}

.faq_top {
  text-align: center;
}

.faq_ttl {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .faq_ttl {
    padding-bottom: 30px;
  }
}

.faq_ttl .en_ttl {
  font-size: 21px;
  letter-spacing: 0.1em;
  color: #d79595;
}

.faq_ttl .ja_ttl {
  font-size: 42px;
  color: #9d9d9d;
}

@media screen and (max-width: 767px) {
  .faq_ttl .ja_ttl {
    font-size: 24px;
  }
}

.faq_woman {
  position: absolute;
  bottom: 0;
  left: -170px;
}

@media screen and (max-width: 767px) {
  .faq_woman {
    bottom: -17px;
    left: -78px;
  }
}

.faq_woman img {
  width: 150px;
}

@media screen and (max-width: 767px) {
  .faq_woman img {
    width: 75px;
  }
}

.faq-box-item {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .faq-box-item {
    margin-top: 25px;
  }
}

.faq-box-item:first-child {
  margin-top: 0;
}

.faq-box-content {
  background-color: #d5b1b1;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}

.faq-box-content::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #ffffff;
  border-right: 0;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .faq-box-content::after {
    right: 15px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #ffffff;
  }
}

.faq-box-content .txt {
  font-size: 20px;
  font-weight: bold;
  color: #fbfbfb;
  padding: 18px 70px;
}

@media screen and (max-width: 767px) {
  .faq-box-content .txt {
    padding: 10px 30px 10px 15px;
    font-size: 16px;
  }
}

.faq-box-item.open .faq-box-content::after {
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.faq-acd-area {
  margin: 20px 40px 0;
}

@media screen and (max-width: 767px) {
  .faq-acd-area {
    margin: 15px 0 0;
  }
}

.faq-acd-area .txt {
  font-weight: bold;
  line-height: 2;
  text-align: justify;
}

/* ===============================================
# お問い合わせ
=============================================== */
.contact {
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}

.contact_woman {
  position: absolute;
  bottom: 0;
  right: 10%;
}

@media screen and (max-width: 767px) {
  .contact_woman {
    right: 0;
  }
}

.contact_woman img {
  width: 18.02083vw;
}

@media screen and (max-width: 767px) {
  .contact_woman img {
    width: 100px;
  }
}

.contact_ttl {
  text-align: center;
  font-weight: bold;
}

.contact_ttl .en_ttl {
  font-size: clamp(80px, 7.55208vw, 145px);
  letter-spacing: 0.1em;
  color: #c79898;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .contact_ttl .en_ttl {
    font-size: 40px;
  }
}

.contact_ttl .ja_ttl {
  font-size: 32px;
  color: #9d9d9d;
}

@media screen and (max-width: 767px) {
  .contact_ttl .ja_ttl {
    font-size: 24px;
  }
}

.contact-box {
  max-width: 866px;
  margin: 90px auto 0;
}

@media screen and (max-width: 767px) {
  .contact-box {
    margin-top: 40px;
  }
}

.contact-note-txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact-note-txt {
    padding-left: 0;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
  }
}

.contact-note-txt a {
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-required-txt span {
  color: #e81919;
}

.contact-contents__item--required {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    display: block;
    padding: 0 10px 15px;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required + .contact-contents__item--required {
    margin-top: 25px;
  }
}

.contact-contents__item--required:last-child {
  border-bottom: none;
}

.contact-contents__item-title {
  width: 200px;
  height: 60px;
  line-height: 60px;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
    margin-bottom: 5px;
    height: auto;
    line-height: 1;
  }
}

.contact-contents__item-input--text {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
    margin-top: 10px;
  }
}

.contact-contents__item-textarea {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
    margin-top: 10px;
  }
}

.contact_read {
  margin-top: 60px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact_read {
    margin-top: 0;
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
  }
}

.contact_btn-wrap {
  text-align: center;
}

.contact-contents__submit {
  display: inline-block;
  text-align: center;
  margin: 23px auto 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-contents__submit {
    margin-top: 20px;
  }
}

.contact-contents__submit::after {
  position: absolute;
  content: "";
  background: url(../img/icon-main.png) center center/cover no-repeat;
  width: 36px;
  height: 25px;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .contact-contents__submit::after {
    width: 25px;
    height: 17px;
    left: 37px;
  }
}

.contact-contents__btn {
  width: 330px;
  height: 65px;
  border: none;
  background-color: #cea9ab;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: all 0.5s ease;
  padding-left: 20px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-contents__btn {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 60px;
  padding-left: 10px;
  background: rgba(213, 177, 177, 0.2);
  border-radius: 40px;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"], input[type="tel"] {
    height: 40px;
  }
}

textarea {
  width: 100%;
  min-height: 200px;
  resize: vertical;
  border: none;
  background: rgba(213, 177, 177, 0.2);
  border-radius: 40px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  textarea {
    min-height: 120px;
  }
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .wpcf7-radio {
    flex-direction: column;
    align-items: baseline;
  }
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 10px;
  }
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 5px;
  border: none;
  background-color: #efedeb;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "✔︎";
  color: #c79898;
  font-size: 24px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.form-privacy {
  text-align: center;
  margin-top: 33px;
  color: #9F7779;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .form-privacy {
    margin-top: 25px;
  }
}

.form-privacy a {
  color: #9F7779;
  border-bottom: 1px dotted #8B6063;
}

.form-privacy input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.form-privacy .wpcf7-acceptance {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .form-privacy .wpcf7-acceptance {
    flex-direction: column;
    align-items: baseline;
  }
}

.form-privacy span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-privacy span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 5px;
  border: none;
  background-color: #efedeb;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.form-privacy span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "✔︎";
  color: #c79898;
  font-size: 24px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.form-privacy input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

/* ===============================================
# フッター
=============================================== */
.footer {
  background-color: #c79898;
  padding: 80px 0 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 15px;
    margin-bottom: 60px;
  }
}

.footer::after {
  position: absolute;
  content: "";
  background: url(../img/bg-footer-top.webp) center center/cover no-repeat;
  height: 8.072916vw;
  top: -8.072916vw;
  left: 0;
  right: 0;
}

.footer .wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .footer .wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.footer .wrapper .policy_btn a {
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.footer .wrapper .copy {
  padding-left: 20px;
  border-left: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .footer .wrapper .copy {
    padding-left: 0;
    border: none;
  }
}

.footer .wrapper .copy .txt {
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .footer .wrapper .copy .txt {
    font-size: 14px;
  }
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.policy_mv {
  background-color: #e5cde1;
  padding: 150px 0 100px;
}

@media screen and (max-width: 767px) {
  .policy_mv {
    padding: 90px 0 50px;
  }
}

.policy_mv .content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy_mv .content .ttl {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .policy_mv .content .ttl {
    font-size: 32px;
  }
}

.policy {
  padding-top: 100px;
  padding-bottom: 180px;
  background: url(../img/bg-main.webp) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .policy {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.policy::before {
  top: -10%;
  right: 15%;
}

@media screen and (max-width: 767px) {
  .policy::before {
    top: -5%;
    right: 0;
  }
}

.policy::after {
  bottom: 0;
}

.policy .wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.policy .wrapper .item {
  margin-bottom: 60px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item {
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
}

.policy .wrapper .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy .wrapper .item .ttl {
  font-size: 18px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .ttl {
    font-size: 16px;
  }
}

.policy .wrapper .item .txt {
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 15px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .txt {
    padding-left: 10px;
  }
}
