@charset "UTF-8";
/* =============================================================
mixin
============================================================= */
/* =============================================================
colors
============================================================= */
/* =============================================================
common - 全体に共通するスタイル
============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@500&display=swap");
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 16px;
  color: #333333;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.4444;
}

img {
  width: 100%;
}

.inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.speech-bubble {
  border-radius: 50px;
  padding: 18px 70px;
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .speech-bubble {
    padding: 10px 36px;
    font-size: 20px;
    border-radius: 28px;
  }
}

.util-title {
  text-align: center;
}

.util-title-en {
  font-size: 80px;
  line-height: 1.14;
}
@media screen and (max-width: 767px) {
  .util-title-en {
    font-size: 58px;
  }
}

.util-title-jp {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  .util-title-jp {
    font-size: 13px;
  }
}
.util-title-jp::after {
  position: absolute;
  content: "";
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 8px;
  border-radius: 20px;
  background: #333;
}
@media screen and (max-width: 767px) {
  .util-title-jp::after {
    width: 32px;
    height: 5px;
    border-radius: 15px;
    bottom: -16px;
  }
}

.down__arrows {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .down__arrows {
    margin-top: 0.7em;
  }
}

.down__arrow {
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #FFED58;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .down__arrow {
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 12px solid #FFED58;
  }
}
.down__arrow + .down__arrow {
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  .down__arrow + .down__arrow {
    margin-top: 0.5em;
  }
}

/* =============================================================
header - ヘッダー
============================================================= */
.header {
  background: #fff;
  height: 100px;
  position: fixed;
  width: 100%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header {
    display: none;
  }
  .header.is-active {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  position: relative;
  height: inherit;
  width: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 15px;
  }
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.logo-text {
  color: #777;
  font-size: 12px;
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  .logo-text {
    font-size: 8px;
    margin-left: 0.3em;
    margin-top: 0;
  }
}

.header-button {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header-button {
    margin-left: auto;
    margin-right: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .header-offer-button {
    display: none !important;
  }
}

.offer-button {
  display: inline-block;
  padding: 0.8em 4em 0.8em 2.4em;
  border-radius: 50px;
  background: #2B7DC2;
  color: #fff;
  border: 2px solid #333333;
  position: relative;
}
.offer-button:hover {
  opacity: 0.8;
}
.offer-button::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 2.4em;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .offer-button {
    padding: 5px 30px 5px 20px;
    font-size: 14px;
  }
}

.drawer-icon {
  position: fixed;
  left: 40px;
  top: 50px;
  z-index: 300;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    top: 30px;
    left: 16px;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  transition: all 0.3s ease 0s;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
  transition: all 0.3s ease 0s;
}

.drawer-icon__bars {
  width: 30px;
  height: 22px;
  display: block;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 30px;
  background: #333333;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 9px;
}

.drawer-icon__bar3 {
  top: 18px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #FFED58;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(-100%);
}
.drawer-content.is-active {
  transform: translateX(0);
  transition: all 0.3s ease 0s;
}

.drawer-content__container {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .drawer-content__container {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.drawer-content__items {
  text-align: center;
}

.drawer-content__item + .drawer-content__item {
  margin-top: 14px;
}
.drawer-content__item a {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .drawer-content__item a {
    font-size: 16px;
  }
}
.drawer-content__item a:hover {
  opacity: 0.7;
}

.drawer-content__button {
  margin-top: 2.5em;
}

.drawer-content__button-link {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background: #2B7DC2;
  border-radius: 50px;
  padding: 1.5em 6.5em 1.5em 6em;
  border: 2px solid #333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .drawer-content__button-link {
    font-size: 14px;
    padding: 1em 4.5em 1em 2.3em;
    white-space: nowrap;
  }
}
.drawer-content__button-link:hover {
  opacity: 0.8;
}
.drawer-content__button-link::after {
  content: "";
  position: absolute;
  background: url(../img/button-arrow.png) no-repeat center center/contain;
  width: 27px;
  height: 27px;
  right: 4.5em;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .drawer-content__button-link::after {
    right: 2.4em;
    width: 21px;
    height: 21px;
  }
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/* =============================================================
Top - トップ
============================================================= */
.top {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .top {
    height: auto;
  }
}
@media screen and (min-width: 1701px) {
  .top {
    height: auto;
  }
}

.top__background {
  position: absolute;
  width: 56.1805555556%;
  top: 0;
  right: 0;
}
@media screen and (min-width: 1450px) {
  .top__background {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .top__background {
    display: none;
  }
}

.biggest__top_background {
  width: 75%;
  margin-left: auto;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1700px) {
  .biggest__top_background {
    display: none;
  }
}

.big-pc__top_background {
  position: absolute;
  width: 55%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1449px) {
  .big-pc__top_background {
    display: none;
  }
}
@media screen and (min-width: 1701px) {
  .big-pc__top_background {
    display: none;
  }
}

.tb__top_background {
  position: absolute;
  width: 55%;
  top: 0;
  right: 0;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .tb__top_background {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .tb__top_background {
    display: none;
  }
}

.sp__top_img {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .sp__top_img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp__top_img {
    display: block;
  }
}

.top__container {
  position: absolute;
  bottom: 10%;
  left: 10%;
}
@media screen and (min-width: 1701px) {
  .top__container {
    left: 15%;
    bottom: 50%;
    transform: translateY(50%);
  }
  .top__container::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background-color: #fff;
    z-index: -3;
  }
}
@media screen and (max-width: 1000px) {
  .top__container {
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__container {
    position: static;
    margin-top: -5%;
  }
}

.top__intro {
  padding: 10px 15px;
  background: #FFED58;
  font-weight: 700;
  position: relative;
  font-size: 18px;
}
.top__intro::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../img/top-intro.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__intro::before {
    width: 28px;
    height: 28px;
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .top__intro {
    font-size: 15px;
  }
}

.top__text {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.56px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .top__text {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .top__text {
    font-size: 24px;
    margin-top: 16px;
  }
}
.top__text span {
  font-size: 38px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .top__text span {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .top__text span {
    font-size: 28px;
  }
}

@media screen and (min-width: 440px) {
  .top__text_indention {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
  .top__text_indention {
    display: block;
  }
}

.top__button {
  position: relative;
  display: inline-block;
  margin-top: 65px;
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
  .top__button {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top__button {
    margin-top: 60px;
  }
}

.top__button-text {
  font-size: 15px;
  position: absolute;
  color: #FF0000;
  white-space: nowrap;
  top: 0;
  left: 5%;
  transform: translateY(-100%);
}
.top__button-text::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #FF0000;
  bottom: 0;
  left: -12px;
  transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .top__button-text::before {
    height: 60%;
  }
}
.top__button-text::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #FF0000;
  bottom: 0;
  right: -12px;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .top__button-text::after {
    height: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top__button-text {
    white-space: nowrap;
    font-size: 13px;
    left: 5%;
    text-align: center;
  }
}

.top__button-link {
  padding: 1.3em 7em 1.3em 7em;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  .top__button-link {
    font-size: 16px;
    white-space: nowrap;
    padding: 1.2em 5em 1.2em 3.5em;
  }
}
.top__button-link::after {
  right: 5em;
}
@media screen and (max-width: 767px) {
  .top__button-link::after {
    right: 3em;
  }
}
.top__button-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-80%);
  background: url(../img/top-button.png) no-repeat center center/contain;
  width: 90px;
  height: 90px;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .top__button-link::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__button-link::before {
    width: 70px;
    height: 70px;
    right: 5%;
  }
}

.top__about {
  margin-top: 35px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top__about {
    margin-top: 26px;
  }
}

.top__about-title {
  color: #2B7DC2;
  font-weight: 700;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  .top__about-title {
    font-size: 14px;
  }
}

.top__about-text {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .top__about-text {
    font-size: 12px;
  }
}

/* =============================================================
offer - 申し込み
============================================================= */
@media screen and (max-width: 767px) {
  .offer {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .offer-inner {
    padding: 0;
  }
}

.offer__intro {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .offer__intro {
    font-size: 13px;
  }
}

.offer__intro_big {
  font-size: 20px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .offer__intro_big {
    font-size: 15px;
  }
}

.offer-container {
  position: relative;
  background: #FFED58;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .offer-container {
    margin-top: 32px;
  }
}

.offer__container-inner {
  padding: 80px 0;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .offer__container-inner {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .offer__container-inner {
    padding: 40px 15px 60px;
  }
}

.offer__bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 3px solid #FFED58;
  white-space: nowrap;
  letter-spacing: 2.35px;
}
@media screen and (max-width: 767px) {
  .offer__bubble {
    border: 2px solid #FFED58;
    white-space: nowrap;
    letter-spacing: 1px;
  }
}
.offer__bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 28px solid #fff;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .offer__bubble::after {
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-top: 16px solid #fff;
  }
}
.offer__bubble::before {
  content: "";
  position: absolute;
  background: url(../img/instagram-flag.png) no-repeat center center/contain;
  right: 0;
  top: 0;
  transform: translate(50%, -40%);
  width: 127px;
  height: 115px;
}
@media screen and (max-width: 767px) {
  .offer__bubble::before {
    left: 0;
    transform: translate(10%, -95%);
    width: 80px;
    height: 70px;
  }
}

.offer__question {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .offer__question-text {
    font-size: 14px;
  }
}

.offer__question-items {
  margin-top: 20px;
}

.offer__question-item {
  line-height: 2em;
}
.offer__question-item span {
  padding: 0.3em 0.6em 0.3em 2.1em;
  background: #fff;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .offer__question-item span {
    font-size: 14px;
    display: block;
    text-align: left !important;
    padding: 0.3em 0.6em 0.3em 2.6em;
  }
}
.offer__question-item span::before {
  content: "";
  position: absolute;
  background: url(../img/offer-check.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  left: 9px;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .offer__question-item span::before {
    top: 0.7em;
    transform: translateY(0%);
  }
}
.offer__question-item + .offer__question-item {
  margin-top: 10px;
}

.offer__arrows {
  margin-top: 25px;
}

.offer__arrow {
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 12px solid #333333;
  border-bottom: 0;
}
.offer__arrow + .offer__arrow {
  margin-top: 0.8em;
}

.offer__box {
  max-width: 600px;
  width: 100%;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 50px 20px 30px 20px;
  text-align: center;
  z-index: 1;
}
.offer__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 5%;
  transform: translate(90%, 5%);
  background: url(../img/offer-box.png) no-repeat center center/contain;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 1000px) {
  .offer__box::after {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    background: url(../img/sp-offer-box-people.png) no-repeat center center/contain;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .offer__box::after {
    bottom: 0;
    right: 0;
    transform: translate(0%, 10%);
    background: url(../img/sp-offer-box-people.png) no-repeat center center/contain;
    width: 70px;
    height: 70px;
  }
}

.offer__box-signboard {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
}
@media screen and (max-width: 1000px) {
  .offer__box-signboard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -70%);
    background: url(../img/sp-offer-box-bubble.png) no-repeat center center/contain;
    width: 90px;
    height: 80px;
  }
}

.offer__box-text {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .offer__box-text {
    font-size: 13px;
  }
}

.offer__box-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 82px;
  color: #23B8BC;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .offer__box-title {
    font-size: 20px;
    line-height: 1.444;
  }
}
.offer__box-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -90%);
  background: #FFED58;
  width: 105%;
  height: 20px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .offer__box-title::before {
    display: none;
  }
}

.offer__box-title-fz70 {
  font-size: 70px;
  letter-spacing: 2.1px;
}
@media screen and (max-width: 767px) {
  .offer__box-title-fz70 {
    font-size: 48px;
  }
}

.offer__box-title-fz48 {
  font-size: 48px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .offer__box-title-fz48 {
    font-size: 32px;
  }
}

.offer__box-title_sp-above {
  line-height: 1;
  margin-top: 10px;
  position: relative;
}
.offer__box-title_sp-above::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFED58;
  width: 105%;
  height: 14px;
  z-index: -1;
}

.offer__box-title_sp-below {
  line-height: 1;
  margin-top: 10px;
}
.offer__box-title_sp-below span {
  position: relative;
}
.offer__box-title_sp-below span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFED58;
  width: 105%;
  height: 14px;
  z-index: -1;
}

.offer__detail {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .offer__detail {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 1000px) {
  .offer__date span {
    line-height: 1;
  }
}

.offer__date-text {
  font-size: 20px;
  font-weight: 700;
  padding: 5px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .offer__date-text {
    font-size: 15px;
  }
}

.offer__date_month-day {
  font-size: 64px;
  letter-spacing: 1.9;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .offer__date_month-day {
    font-size: 52px;
  }
}

.offer__date-week {
  padding-left: 5px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .offer__date-week {
    font-size: 20px;
  }
}

.offer__date-time {
  font-size: 18px;
  font-weight: 700;
}

.offer__button {
  margin-left: 28px;
}
@media screen and (max-width: 1000px) {
  .offer__button {
    margin-top: 84px;
  }
}
@media screen and (max-width: 767px) {
  .offer__button {
    margin-top: 74px;
  }
}

@media screen and (max-width: 767px) {
  .offer-button-sp {
    margin-left: 0 !important;
  }
}

.offer-button-link {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #2B7DC2;
  border-radius: 50px;
  padding: 1.5em 6.5em 1.5em 6em;
  border: 2px solid #333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .offer-button-link {
    font-size: 16px;
    padding: 1.2em 5em 1.2em 3.5em;
  }
}
.offer-button-link:hover {
  opacity: 0.8;
}
.offer-button-link::after {
  content: "";
  position: absolute;
  background: url(../img/button-arrow.png) no-repeat center center/contain;
  width: 27px;
  height: 27px;
  right: 4.5em;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .offer-button-link::after {
    width: 18px;
    height: 18px;
    right: 3.5em;
  }
}
.offer-button-link::before {
  position: absolute;
  content: "＼対面orインスタライブで参加希望の方はこちら／";
  top: -8px;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 13px;
  white-space: nowrap;
  color: #333333;
  font-weight: 400;
  letter-spacing: 0.91px;
}
@media screen and (max-width: 767px) {
  .offer-button-link::before {
    font-size: 12px;
    top: -4px;
  }
}

.offer__place {
  margin-top: 50px;
  padding: 10px 0;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .offer__place {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .offer__place {
    display: block;
    margin-top: 20px;
  }
}

.offer__place-name {
  font-weight: 700;
  letter-spacing: 0.96px;
}

.offer__place-address {
  margin-left: 40px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .offer__place-address {
    margin-left: 0;
    font-size: 13px;
  }
}

/* =============================================================
problem - 問題提起
============================================================= */
.problem {
  text-align: center;
  padding: 5em 0 2.5em;
}
@media screen and (max-width: 767px) {
  .problem {
    padding: 2.5em 0;
  }
}

.problem__intro p {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.68px;
}
@media screen and (max-width: 767px) {
  .problem__intro p {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.problem__intro p:nth-child(2) {
  margin-top: 15px;
}
.problem__intro p span {
  font-size: 30px;
  padding: 0 0.3em;
  letter-spacing: 2.1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .problem__intro p span {
    font-size: 18px;
    letter-spacing: 1.25px;
  }
}
.problem__intro p span::after {
  position: absolute;
  content: "";
  background: url(../img/problem-deco.png) no-repeat center center/contain;
  width: 25px;
  height: 17px;
  right: 0;
  top: 0;
  transform: translateY(-90%);
}
@media screen and (max-width: 767px) {
  .problem__intro p span::after {
    width: 17px;
    height: 11px;
  }
}

.problem__img {
  max-width: 550px;
  margin: 2em auto 0;
}

.sp-problem-imgs {
  margin: 15px auto 0;
}

.sp__problem_img {
  width: 40%;
  margin: inherit;
}

.sp__problem_items {
  max-width: 350px;
  width: 70%;
  margin: inherit;
}

.problem__outro {
  margin-top: 1em;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.68px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .problem__outro {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
  }
}
.problem__outro::after {
  position: absolute;
  content: "";
  background: url(../img/problem-outro.png) no-repeat center center/contain;
  right: 0;
  top: 0;
  transform: translate(80%, -20%);
  width: 145px;
  height: 145px;
}
@media screen and (max-width: 767px) {
  .problem__outro::after {
    width: 90px;
    height: 90px;
    transform: translate(85%, 25%);
  }
}
.problem__outro span {
  font-size: 32px;
  padding: 0 0.3em;
  letter-spacing: 2.1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .problem__outro span {
    font-size: 22px;
  }
}
.problem__outro span::after {
  position: absolute;
  content: "";
  background: url(../img/problem-deco.png) no-repeat center center/contain;
  width: 25px;
  height: 17px;
  right: 0;
  top: 0;
  transform: translateY(-90%);
}
@media screen and (max-width: 767px) {
  .problem__outro span::after {
    width: 14px;
    height: 10px;
  }
}

/* =============================================================
about - 講師紹介
============================================================= */
.about {
  padding: 4em 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 3em 0;
  }
}
.about::before {
  content: "";
  position: absolute;
  background: #FFED58;
  width: 97%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -10;
  border-radius: 150px 0px 0px 0px;
  transform: translateX(3%);
}
@media screen and (max-width: 767px) {
  .about::before {
    width: 100%;
    transform: translateX(0%);
  }
}
.about::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #333333;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%) rotate(90deg);
  border-radius: 999px;
  -webkit-animation: pathmove 1.8s ease-in-out infinite;
          animation: pathmove 1.8s ease-in-out infinite;
}
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    bottom: 20px;
    opacity: 0;
  }
  30% {
    height: 2px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -40px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    bottom: 20px;
    opacity: 0;
  }
  30% {
    height: 2px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -40px;
    opacity: 0;
  }
}

.about__inner {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
}

.about__cards {
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .about__cards {
    margin-top: 3.2em;
  }
}

.about__card {
  display: flex;
  padding: 2.2em;
  border-radius: 35px 0 0 0;
  background: #fff;
  position: relative;
}
.about__card + .about__card {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .about__card {
    display: block;
    padding: 1.6em 0.8em 4em;
  }
  .about__card:has(input:checked) .about__card-detail {
    display: block;
  }
  .about__card:has(input:checked) .about__card-detail::after {
    content: none;
  }
}

.about__card-left {
  width: 22%;
}
@media screen and (max-width: 767px) {
  .about__card-left {
    width: 40%;
    margin: 0 auto;
  }
}

.about__card-right {
  width: 75%;
  margin-left: 3%;
}
@media screen and (max-width: 767px) {
  .about__card-right {
    width: 100%;
    margin-left: 0;
  }
}

.about__card-name {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about__card-name {
    font-size: 20px;
    text-align: center;
    margin-top: 0.4em;
  }
}

.about__card-position {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
  .about__card-position {
    font-size: 15px;
    text-align: center;
    margin-top: 0.4em;
  }
}

.about__card-detail {
  margin-top: 0.8em;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .about__card-detail {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    letter-spacing: 0.48px;
  }
  .about__card-detail::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, hsla(0deg, 0%, 100%, 0) 0, hsla(0deg, 0%, 100%, 0.9) 50%, hsla(0deg, 0%, 100%, 0.9) 0, #fff);
    content: "";
  }
}

.about-readmore {
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%);
}

/* =============================================================
learn - 得られること
============================================================= */
.learn {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .learn {
    padding-top: 70px;
  }
}

.learn__text {
  text-align: center;
  font-weight: 700;
}

.learn__intro {
  font-size: 18px;
  letter-spacing: 1.26px;
}
@media screen and (max-width: 767px) {
  .learn__intro {
    font-size: 13px;
    letter-spacing: 0.39px;
  }
}

.learn__intro_big {
  font-size: 20px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .learn__intro_big {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.learn__bubble {
  background: #333333;
  color: #fff;
  margin-top: 0.5em;
  position: relative;
  letter-spacing: 2.355px;
}
@media screen and (max-width: 767px) {
  .learn__bubble {
    font-size: 26px;
    letter-spacing: 1.871px;
  }
}
.learn__bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 21px solid transparent;
  border-left: 21px solid transparent;
  border-top: 28px solid #333333;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .learn__bubble::after {
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    border-top: 22px solid #333333;
  }
}

.learn__items {
  display: flex;
  justify-content: space-between;
  max-width: 930px;
  width: 100%;
  margin: 4em auto 0;
}
@media screen and (max-width: 767px) {
  .learn__items {
    display: block;
    margin: 3em auto 0;
  }
}

.learn__item {
  width: calc(33.3333% - 20px);
  border-radius: 20px;
  background: #FFED58;
  padding: 2em 0.8em;
  position: relative;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .learn__item {
    width: 75%;
    margin: 0 auto;
    max-width: 400px;
    padding: 2.5em 0.8em 1em;
  }
  .learn__item + .learn__item {
    margin-top: 20px;
  }
}

.learn__item-img {
  width: 85px;
  height: 85px;
  margin: 0 auto;
  position: relative;
}
.learn__item-img::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .learn__item-img::after {
    width: 120px;
    height: 120px;
  }
}

.learn__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 1.6em;
}

.learn__item-text {
  margin-top: 1em;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .learn__item-text {
    letter-spacing: 0.48px;
  }
}

.learn__item-number {
  position: absolute;
  font-size: 38px;
  font-weight: 700;
  left: 0.3em;
  top: 0.7em;
  line-height: 0;
}

/* =============================================================
Features - 強み
============================================================= */
.feature {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 65px 0 20px;
  }
}

.feature__intro {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4em;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 1.26px;
}
@media screen and (max-width: 767px) {
  .feature__intro {
    margin-top: 2.8em;
    letter-spacing: 0.56px;
  }
}

.feature__intro_big {
  font-size: 20px;
  display: inline-block;
  padding: 6px 5px;
  background: #FFED58;
  margin-right: 0.5em;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .feature__intro_big {
    letter-spacing: 1.109px;
  }
}

.feature__intro_sp {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .feature__intro_sp {
    display: none;
  }
}

.feature__items {
  max-width: 680px;
  width: 100%;
  margin: 6em auto 0;
}
@media screen and (max-width: 767px) {
  .feature__items {
    margin: 3em auto 0;
  }
}

.margin-top {
  margin-bottom: 10px;
}

.feature__item {
  display: flex;
  align-items: center;
  gap: 0 2em;
}
@media screen and (max-width: 767px) {
  .feature__item {
    display: block;
    gap: 0;
  }
}
.feature__item + .feature__item {
  margin-top: 5em;
}
.feature__item:nth-child(2n) {
  flex-direction: row-reverse;
}

.feature__item-img {
  width: 44.1176470588%;
}
@media screen and (max-width: 767px) {
  .feature__item-img {
    width: 65%;
    margin: 0 auto;
  }
}

.feature__item-texts {
  width: 55.8823529412%;
}
@media screen and (max-width: 767px) {
  .feature__item-texts {
    width: 100%;
    margin: 20px auto 0;
  }
}

.feature__item-title_below {
  margin-top: 0.6em;
}

.feature__item-title_text {
  padding: 6px 5px;
  background: #FFED58;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
.feature__item-detail {
  margin-top: 1.4em;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .feature__item-detail {
    letter-spacing: 0.48px;
  }
}

/* =============================================================
voice - セミナー利用者の実際の声
============================================================= */
.voice {
  padding: 100px 0 60px;
}
@media screen and (max-width: 1000px) {
  .voice {
    padding: 80px 0 40px;
  }
}

.voice-items-container {
  position: relative;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}

/* =============================================================
カルーセル
============================================================= */
#slide {
  padding: 100px 0 0;
}

.swiper-slide {
  height: auto;
}

.swiper-content {
  border: 3px solid #FFED58;
  border-radius: 10px;
  padding: 15px 15px 30px;
  width: 100%;
  position: relative;
  height: 100%;
}
.swiper-content:has(input:checked) .swiper-content-text {
  display: block;
}
.swiper-content:has(input:checked) .swiper-content-text::after {
  content: none;
}

.swiper-content-people {
  display: flex;
  align-items: center;
  gap: 10px;
}

.swiper-content-people-left {
  width: 27.2727272727%;
}

.swiper-content-people-right {
  font-weight: 700;
}

.swiper-content-people-name {
  margin-top: 5px;
  letter-spacing: 1.12px;
}

.swiper-content-people-age {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 0.96px;
}

.swiper-content-title {
  color: #23B8BC;
  font-size: 18px;
  font-weight: 700;
  margin-top: 1.3em;
  letter-spacing: 1.26px;
}

.swiper-content-text {
  margin-top: 1.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  position: relative;
  letter-spacing: 0.96px;
}
.swiper-content-text::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, hsla(0deg, 0%, 100%, 0) 0, hsla(0deg, 0%, 100%, 0.9) 50%, hsla(0deg, 0%, 100%, 0.9) 0, #fff);
  content: "";
}

.readmore {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 14px;
  color: #aaa;
}
.readmore:has(:checked) {
  display: none;
}
.readmore:hover {
  text-decoration: underline;
  color: #333333 !important;
}
.readmore input {
  display: none;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: url(../img/voice-arrow-front.png) no-repeat center center/contain;
  left: 0;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 100;
  margin-top: 0;
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  width: 40px;
  height: 40px;
  background: url(../img/voice-arrow-back.png) no-repeat center center/contain;
  right: 0;
  top: 40%;
  transform: translate(50%, -50%);
  margin-top: 0;
}
.swiper-button-next::after {
  display: none;
}

.pagination-position {
  bottom: -100px;
}

.pagination-position {
  position: relative;
  margin-top: 30px;
}

/* =============================================================
sp-voice - スマホ版 実際の声
============================================================= */
.sp-voice {
  padding: 60px 0 0;
}

.sp-voice-cards {
  margin-top: 60px;
}

.sp-voice-card {
  padding: 20px 15px;
  border-radius: 10px;
  border: 3px solid #FFED58;
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.sp-voice-card + .sp-voice-card {
  margin-top: 20px;
}
.sp-voice-card:has(input:checked) .sp-voice-text {
  display: block;
}
.sp-voice-card:has(input:checked) .sp-voice-text::after {
  content: none;
}

.sp-voice-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-voice-left {
  width: 30.303030303%;
}

.sp-voice-right {
  font-weight: 700;
}

.sp-voice-beautysalon {
  font-size: 14px;
  letter-spacing: 0.96px;
}

.sp-voice-name {
  margin-top: 3px;
  letter-spacing: 1.12px;
}

.sp-voice-age {
  font-size: 14px;
  margin-top: 3px;
  letter-spacing: 0.96px;
}

.sp-voice-title {
  font-size: 18px;
  font-weight: 700;
  color: #23B8BC;
  margin-top: 25px;
  letter-spacing: 1.26px;
}

.sp-voice-text {
  margin-top: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  letter-spacing: 0.96px;
}
.sp-voice-text::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, hsla(0deg, 0%, 100%, 0) 0, hsla(0deg, 0%, 100%, 0.9) 50%, hsla(0deg, 0%, 100%, 0.9) 0, #fff);
  content: "";
}

/* =============================================================
Q&A - よくある質問
============================================================= */
.qa {
  padding: 4em 0;
  margin-top: 4em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa {
    padding: 3em 0;
    margin-top: 5em;
  }
}
.qa::before {
  content: "";
  position: absolute;
  background: #F7F6F5;
  width: 97%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -10;
  border-radius: 150px 0px 0px 0px;
  transform: translateX(3%);
}
@media screen and (max-width: 767px) {
  .qa::before {
    width: 100%;
    transform: translateX(0%);
  }
}
.qa::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #333333;
  left: 50%;
  top: 0;
  transform: translate(-50%, 50%) rotate(90deg);
  border-radius: 999px;
  -webkit-animation: pathmove2 1.8s ease-in-out infinite;
          animation: pathmove2 1.8s ease-in-out infinite;
}
@-webkit-keyframes pathmove2 {
  0% {
    height: 0;
    top: -30px;
    opacity: 0;
  }
  30% {
    height: 2px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
@keyframes pathmove2 {
  0% {
    height: 0;
    top: -30px;
    opacity: 0;
  }
  30% {
    height: 2px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}

.qa__inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.qa__items_free-seminar {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .qa__items_free-seminar {
    margin-top: 70px;
  }
}

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

.qa__items_title {
  font-size: 20px;
  color: #23B8BC;
  font-weight: 700;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .qa__items_title {
    font-size: 18px;
    letter-spacing: 1.26px;
  }
}

.qa__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .qa__item:not(:first-child) {
    margin-top: 10px;
  }
}

.qa-box {
  border-radius: 10px;
  overflow: hidden;
}

.qa-box__q {
  color: #333333;
  background: #fff;
  padding: 18px 56px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  letter-spacing: 1.26px;
}
@media screen and (max-width: 767px) {
  .qa-box__q {
    font-size: 16px;
    padding: 13px 38px;
    letter-spacing: 0.48px;
  }
}
.qa-box__q::before {
  content: "Q";
  position: absolute;
  font-size: 26px;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #23B8BC;
}
@media screen and (max-width: 767px) {
  .qa-box__q::before {
    font-size: 20px;
    left: 10px;
  }
}

.qa-box__icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .qa-box__icon {
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
.qa-box__icon.is-open .qa-box__bar2 {
  display: none;
}

.qa-box__bar1 {
  width: 12px;
  height: 2px;
  background: #333333;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .qa-box__bar1 {
    width: 10px;
    height: 2px;
  }
}

.qa-box__bar2 {
  width: 2px;
  height: 12px;
  background: #333333;
  border-radius: 20px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 767px) {
  .qa-box__bar2 {
    width: 2px;
    height: 10px;
  }
}

.qa-box__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .qa-box__circle {
    width: 20px;
    height: 20px;
  }
}

.qa-box__a {
  background: #fff;
  color: #333333;
  line-height: 1.5;
  padding: 18px 60px 18px 16px;
  display: none;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767px) {
  .qa-box__a {
    padding: 13px 15px 13px 10px;
  }
}

.qa-box__content {
  position: relative;
  padding-left: 40px;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .qa-box__content {
    padding-left: 28px;
    letter-spacing: 0.48px;
  }
}
.qa-box__content::before {
  content: "A";
  font-size: 26px;
  line-height: 1;
  color: #FFED58;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .qa-box__content::before {
    font-size: 20px;
  }
}

/* =============================================================
Contact - お問い合わせフォーム
============================================================= */
@media screen and (max-width: 767px) {
  .contact-inner {
    padding: 0;
  }
}

.contact__intro {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -90%);
}

.contact__intro-text {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact__intro-text {
    font-size: 12px;
  }
}

.contact__bubble {
  margin-top: 10px;
  border: 3px solid #FFED58;
  padding: 18px 130px;
  background: #fff;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact__bubble {
    max-width: 320px;
    text-align: center;
    padding: 10px 50px;
    border: 2px solid #FFED58;
  }
}
.contact__bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 28px solid #fff;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact__bubble::after {
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-top: 16px solid #fff;
  }
}
.contact__bubble::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  transform: translateY(-85%);
  background: url(../img/contact-bubble.png) no-repeat center center/contain;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 767px) {
  .contact__bubble::before {
    width: 70px;
    height: 70px;
    right: 0%;
    transform: translateY(-90%);
  }
}

.contact__container {
  margin-top: 150px;
  padding: 80px 40px;
  background: #FFED58;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__container {
    border-radius: 20px;
    padding: 40px 15px;
  }
}

.contact__text {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 14px;
  }
}
.contact__text::after {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  border-radius: 20px;
  height: 8px;
  background: #333333;
}
@media screen and (max-width: 767px) {
  .contact__text::after {
    width: 23px;
    height: 4px;
    bottom: -15px;
  }
}

.contact-form {
  max-width: 900px;
  width: 100%;
  margin: 80px auto 0;
  background: #F7F6F5;
  padding: 80px 100px;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .contact-form {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 35px 15px;
    margin: 40px auto 0;
  }
}

.contact-form__row {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form__row {
    display: block;
  }
}

.contact-form__label {
  width: 150px;
  text-align: right;
  padding-top: 5px;
  padding-right: 30px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    text-align: left;
  }
}
.contact-form__label label {
  font-weight: 700;
  font-size: 14px;
}
.contact-form__label label.is-required {
  display: inline-block;
  position: relative;
}
.contact-form__label label.is-required::after {
  content: "＊";
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-70%);
  font-weight: 700;
  color: #f00;
  border-radius: 10px;
  text-align: center;
  padding: 3px 13px;
  font-size: 10px;
}
.contact-form__label.contact-form__label_radio {
  padding-top: 0;
}

.contact-form__input {
  width: calc(100% - 150px);
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .contact-form__input {
    margin-top: 10px;
    width: 100%;
  }
}
.contact-form__input [type=text] {
  background: #fff;
  background-image: none;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-family: inherit;
  font-size: 13px;
  padding: 16px 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-form__input [type=text] {
    padding: 12px 10px;
  }
}
.contact-form__input [type=email] {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 13px;
  padding: 16px 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-form__input [type=email] {
    padding: 12px 10px;
  }
}
.contact-form__input textarea {
  height: 240px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 16px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  font-size: 13px;
  width: 100%;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact-form__input textarea {
    padding: 12px 10px;
  }
}

.contact-form__check [type=checkbox] {
  display: none;
}
.contact-form__check span {
  display: inline-block;
  padding-left: 28px;
  padding-right: 10px;
  position: relative;
  line-height: 2.3;
}
.contact-form__check span::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #2B7DC2;
}
.contact-form__check span::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url(../img/checkbox@2x.png) no-repeat center center/contain;
  display: none;
}
.contact-form__check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-form__radio {
  width: calc(100% - 130px);
}
.contact-form__radio [type=radio] {
  display: none;
}
@media (max-width: 768px) {
  .contact-form__radio {
    margin-top: 10px;
    width: 100%;
  }
}
.contact-form__radio span {
  display: inline-block;
  padding-left: 26px;
  margin-right: 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-form__radio span {
    margin-right: 0;
  }
}
.contact-form__radio span::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 1px solid #333333;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
.contact-form__radio span::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #333333;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact-form__radio [type=radio]:checked + span::after {
  display: inline-block;
}

.contact-form__button {
  text-align: center;
  margin-top: 40px;
}
.contact-form__button [type=submit] {
  color: #fff;
  border: 2px solid #333333;
  background-color: #2B7DC2;
  width: 220px;
  display: inline-block;
  font-weight: 700;
  padding: 16px;
  border-radius: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  transition: all 0.3s ease 0s;
  position: relative;
}
.contact-form__button [type=submit]:hover {
  opacity: 0.8;
}
.contact-form__button [type=submit]::after {
  content: "";
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/button-arrow.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
}
.contact-form__button [type=submit].is-full {
  background: #2B7DC2;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.contact-form__button [type=submit].is-full:hover {
  transform: translateY(0.1875em);
}

/* =============================================================
Thanks - サンクスページ
============================================================= */
.thanks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.thanks__logo {
  position: fixed;
  top: 5%;
  left: 5%;
  width: 190px;
}
@media screen and (max-width: 767px) {
  .thanks__logo {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
  }
}

.thanks__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.thanks__contact-message {
  text-align: center;
}

.thanks__contact-message-img {
  width: 205px;
  margin: 0 auto;
}

.thanks__contact-message-title {
  margin-top: 40px;
  font-size: 24px;
  color: #333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .thanks__contact-message-title {
    font-size: 18px;
    margin-top: 28px;
  }
}

.thanks__contact-message-text {
  margin-top: 40px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .thanks__contact-message-text {
    font-size: 16px;
    margin-top: 28px;
  }
}

/* =============================================================
Thanks - サンクスページ
============================================================= */
.false-message {
  display: none;
  text-align: center;
}

.contact-privacy-container {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-privacy-container {
    margin-top: 10px;
  }
}

.privacy-policy {
  margin: 0 auto;
  max-width: 570px;
  width: 100%;
  height: 220px;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    padding: 15px;
  }
}

.privacy-policy__title {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .privacy-policy__title {
    font-size: 16px;
  }
}

.privacy-policy__intro {
  margin-top: 30px;
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .privacy-policy__intro {
    font-size: 14px;
  }
}

.privacy-policy-container {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .privacy-policy-container {
    margin-top: 20px;
  }
}

.privacy-policy__box {
  text-align: left !important;
}
.privacy-policy__box + .privacy-policy__box {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .privacy-policy__box + .privacy-policy__box {
    margin-top: 15px;
  }
}

.privacy-policy__head {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .privacy-policy__head {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .privacy-policy__detail {
    font-size: 14px;
  }
}

.contact-privacy-text {
  margin-top: 5px;
  font-weight: 700;
  font-size: 15px;
}

.contact-privacy {
  display: inline-block;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .contact-privacy {
    margin: 30px auto 0;
  }
}
.contact-privacy [type=checkbox] {
  display: none;
}

.contact-privacyLabel {
  cursor: pointer;
  display: block;
  font-size: 14px;
  padding-left: 30px;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.contact-privacyLabel:before {
  background: #fff;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  transition: 0.2s;
  width: 16px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.contact-privacyLabel:after {
  border-bottom: solid 2px #2B7DC2;
  border-left: solid 2px #2B7DC2;
  content: "";
  display: block;
  height: 5px;
  left: 2px;
  opacity: 0;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  transition: 0.2s;
  width: 10px;
}

input[type=checkbox]:checked + .contact-privacyLabel:after {
  opacity: 1;
}

/* =============================================================
Footer - フッター
============================================================= */
.footer {
  padding: 25px 0;
}

.footer__inner {
  position: relative;
}

.footer__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer__items {
  padding-top: 110px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .footer__items {
    display: block;
    text-align: center;
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .footer__items {
    padding-top: 90px;
  }
}

.footer__item + .footer__item {
  margin-left: 32px;
}
@media screen and (max-width: 1000px) {
  .footer__item + .footer__item {
    margin-left: 0;
    margin-top: 12px;
  }
}

.footer__item-link {
  font-size: 14px;
  color: #333333;
}
.footer__item-link:hover {
  opacity: 0.8;
}

.footer__copyright {
  font-size: 13px;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .footer__copyright {
    margin-top: 60px;
  }
}

.footer__totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  z-index: 300;
}
.footer__totop img {
  height: 60px;
  width: 45px;
}
@media screen and (max-width: 767px) {
  .footer__totop img {
    height: 40px;
    width: 30px;
  }
}
.footer__totop.is-show {
  opacity: 1;
  visibility: visible;
}