@charset "UTF-8";

/*---------------------------------------------

	全ページ共通

---------------------------------------------*/
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 17px;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.3vw;
    /*文字量L-3.3vw/文字量M-3.5vw  */
  }
}

body {
  min-width: 900px;
  color: #77583b;
  letter-spacing: 0.19rem;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  /*bold700 Medium 500 regular400 light 300*/
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  display: none;
  line-height: 2;
}

.en_body {
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 540px) {
  body {
    min-width: initial;
  }
}

footer {
  margin-top: auto;
}

/* ↓ ふんわり表示 ------------------------*/
/* 画面外 */
.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.7s;
}

/* 画面内 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 540px) {
  .fadein {
    opacity: 1;
    transform: initial;
  }
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-l {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-s {
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1450px) {
  .pcWidth-xl {
    max-width: 1600px;
  }

  .pcWidth-l {
    max-width: 1300px;
  }

  .pcWidth-m {
    max-width: 1024px;
  }

  .pcWidth-s {
    max-width: 960px;
  }
}

/*セクションの上下のマージン*/
.secOuter-s {
  padding: 4rem 0px 5rem 0px;
}

.secOuter-m {
  padding: 5rem 0px 6.5rem 0px;
}

.secOuter-l {
  padding: 7rem 0px 8rem 0px;
}

@media screen and (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0px 4.2rem 0px;
  }

  .secOuter-m {
    padding: 3.5rem 0px 4.8rem 0px;
  }

  .secOuter-l {
    padding: 4.2rem 0px 4.8rem 0px;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
.textalign-center {
  text-align: center;
}

.textalign-left {
  text-align: left;
}

.textalign-right {
  text-align: right;
}

a {
  color: #77583b;
  text-decoration: none;
}

.flex {
  display: flex;
}

.reverce {
  flex-direction: row-reverse;
}

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

img {
  width: 100%;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.sec_head {
  height: 9rem;
  margin-bottom: 2rem;
  text-align: center;
}

.en_body .sec_head {
  height: 7rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.sec_head2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
}

.sec_head2 .line {
  width: 3rem;
  height: 1px;
  background-color: #333;
}

@media screen and (max-width: 540px) {
  .sec_head {
    height: 7.5rem;
  }

  .sec_head2 .line {
    width: 2rem;
    height: 1px;
    background-color: #333;
  }
}

.sec_head2 .eng {
  font-size: 3rem;
  font-family: "Grape Nuts", cursive;
  background: linear-gradient(91deg, #55add2 -14.38%, #8d66df 107.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  font-family: "Zen Old Mincho", serif;
}

@media screen and (max-width: 540px) {
  .sec_head2 .eng {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
}

.sec_head2 .text {
  margin: 0 2rem;
}

@media screen and (max-width: 540px) {
  .sec_head2 .text {
    margin: 0 1.5rem;
  }
}

.sec_head_s {
  font-size: 1.3rem;
  font-weight: 600;
  padding-left: 0.75rem;
  line-height: 1.4;
  border-left: 3px solid;
  margin-bottom: 2rem;
}

.sec_brue {
  background-color: #f2f7fa;
}

.sec_head3 {
  text-align: center;
  margin-bottom: 4rem;
}

.sec_head3 .eng {
  color: #ff7b5a;
  font-size: 2rem;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
}

.sec_head3 .jpn {
  font-size: 2.5rem;
  line-height: 1.3;
}

@media screen and (max-width: 540px) {
  .sec_head3 {
    text-align: center;
    margin-bottom: 2rem;
  }

  .sec_head3 .jpn {
    font-size: 2rem;
  }

  .sec_head3 .eng {
    font-size: 1.2rem;
  }
}

.grape {
  font-family: "Grape Nuts", cursive;
}

/* ↓ ナビゲーションバー ------------------------*/
.globalmenu {
  padding: 0.75rem 1.5rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 540px) {
  .globalmenu {
    padding: 0.1rem 0.5rem;
    width: 100%;
  }
}

.globalmenu-left {
  width: 4rem;
}

.globalmenu-right {
  display: flex;
  align-items: center;
}

.globalmenu-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.globalmenu-right ul li {
  margin-left: 1.5rem;
}

@media screen and (max-width: 1040px) {
  .globalmenu-right ul li {
    margin-left: 1.5rem;
  }
}

@media screen and (max-width: 960px) {
  .globalmenu-right ul {
    display: none;
  }
}

.header_sp_item {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .header_sp_item {
    display: none;
  }
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
}

@media screen and (max-width: 960px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 3;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    transform: scale(0.8, 0.8);
    transform: scale(0.6, 0.6);
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0.5rem;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  /*    left: 6px;*/
  background: #333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ↓ スマホメニュー ------------------------*/
nav.globalmenu-sp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
}

.globalmenuSp-inner {
  height: 100%;
  color: #333;
  text-align: left;
  margin-left: 6rem;
  margin-top: 6rem;
}

@media screen and (max-width: 540px) {
  .globalmenuSp-inner {
    margin-left: 3rem;
    margin-top: 5rem;
  }
}

.globalmenuSp-inner ul {
  font-size: 1.3rem;
}

.globalmenuSp-inner ul li {
  margin-bottom: 1rem;
}

nav.globalmenu-sp.active {
  display: block;
  opacity: 10;
}

.cv_float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 12rem;
  z-index: 100;
  transition: 0.3s ease;
}

.cv_float:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
  opacity: 1;
}

@media screen and (max-width: 540px) {
  .cv_float {
    bottom: 0.5rem;
    right: 0rem;
    width: 10rem;
  }
}

/*---------------------------------------------

TOP

---------------------------------------------*/
/* ↓ セクション ｜ ファーストビュー ------------------------*/

.sec-fv {
  background-image: url(../img/back_fv.jpg);
  background-position: right;
  background-size: cover;
  padding: 5rem auto;
  height: 75vh;
  min-height: 600px;
  max-height: 700px;
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.switch-lang {
  position: absolute;
  bottom: -3vw;
  width: 100%;
  font-weight: 400;
  font-size: 0.8rem;
  left: 0;
  padding-right: 5vw;
  display: inline-block;
  letter-spacing: 0.1rem;
  text-align: right;
}
.switch-lang::after {
  content: "▶︎";
  display: inline-block;
  font-size: 0.8rem;
  font-family: Arial, sans-serif;
  font-size: 0.7rem; /* 好きなサイズに変更 */
  margin-left: 1vw;
}

@media screen and (max-width: 540px) {
  .sec-fv {
    display: none;
  }
}

.sec-fv .text {
  width: 50%;
  max-width: 640px;
  position: relative;
}

@media screen and (max-width: 540px) {
  .sec-fv .text {
    width: 100%;
  }
}

.sec-fv_sp {
  padding-top: 2rem;
  position: relative;
}
.sec-fv_sp .switch-lang_sp {
  padding-top: 2rem;
  position: absolute;
  top: 17.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
}
.sec-fv_sp .switch-lang_sp::after {
  content: "▶︎";
  display: inline-block;
  font-size: 0.8rem;
  vertical-align: middle;
  font-family: Arial, sans-serif;
  font-size: 0.5rem; /* 好きなサイズに変更 */
  margin-left: 1.5vw;
}
@media screen and (min-width: 541px) {
  .sec-fv_sp {
    display: none;
  }
}

/* ↓ セクション ｜ キャンペーン ------------------------*/
.sec_campaign {
  background-image: url(../img/back_campaign.jpg);
  background-position: center;
  background-size: cover;
  padding: 4rem;
}

@media screen and (max-width: 540px) {
  .sec_campaign {
    padding: 2rem 0;
  }
}

.sec_campaign .sec_inner {
  background-color: #fff;
  padding: 4rem 5rem;
}

@media screen and (max-width: 540px) {
  .sec_campaign .sec_inner {
    background-color: #fff;
    padding: 3rem 2rem;
  }
}

.sec_campaign .sec_inner .text {
  margin-bottom: 2rem;
}

.cvbtn {
  position: relative;
  /* static以外を指定 */
  z-index: 0;
  /* グラデーションよりも上に配置 */
  width: 100%;
  display: block;
  text-align: center;
  margin: auto;
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0px 0px 25px rgba(74, 58, 121, 0.65);
  transition: all 0.6s;
  /* アニメーション実行時間 */
}

@media screen and (max-width: 540px) {
  .cvbtn {
    font-size: 1.8rem;
    color: #fff;
  }
}

.btn_p {
  background: linear-gradient(0.25turn, #edbff4, #9fa8f6);
  transition: 0.3s ease;
}

.sec_insta #sb_instagram .sbi_follow_btn a,
.sec_insta #sb_instagram .sbi_follow_btn a,
.sec_insta #sb_instagram #sbi_load .sbi_load_btn {
  background: linear-gradient(0.25turn, #edbff4, #9fa8f6) !important;
  transition: 0.3s ease;
  padding: 2rem 6rem !important;
  margin-top: 2rem;
}

#sb_instagram .sbi_follow_btn a:hover,
#sb_instagram .sbi_follow_btn a:focus {
  box-shadow: inset 0 0 2rem 6rem #ff6858 !important;
}

@media screen and (max-width: 540px) {
  #sb_instagram .sbi_follow_btn a:hover,
  #sb_instagram .sbi_follow_btn a:focus {
    box-shadow: initial !important;
  }
}

/* ::before, ::afterで2種類のグラデーションを用意 */
.cvbtn::before,
.cvbtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  /* アニメーション実行時間 */
}

/* グラデーション1 */
.cvbtn::before {
  transition: all 0.6s;
  /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(0.25turn, #edbff4, #9fa8f6);
}

/* グラデーション2 */
.cvbtn::after {
  z-index: -2;
  background: linear-gradient(0.25turn, #9fa8f6, #edbff4);
  transition: all 0.6s;
  /* アニメーション実行時間 */
}

/* ホバー時にグラデーション1を透明にする */
.cvbtn:hover::before {
  opacity: 0;
  transition: 0.3s ease;
}

.cvbtn span {
  font-size: 1.2rem;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.cvbtn .btninner {
  border: 1px solid #fff;
  border-radius: 0.2rem;
  padding: 2rem 0 1.5rem;
}

@media screen and (max-width: 540px) {
  .cvbtn .btninner {
    border: 1px solid #fff;
    border-radius: 0.2rem;
    padding: 1rem 0;
  }

  .cvbtn span {
    font-size: 1.1rem;
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
}

/*---------------------------------------------

	コンセプト

---------------------------------------------*/
.sec_concept {
  overflow-x: hidden;
  overflow-y: hidden;
}

.sec_concept .sec_inner {
  padding-top: 7rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 540px) {
  .sec_concept .sec_inner {
    padding-top: 3rem;
    padding-bottom: 0;
  }
}

.sec_concept .flex .left {
  width: 50%;
}

.sec_concept .flex .right {
  width: 40%;
  padding-left: 2rem;
}

@media screen and (max-width: 540px) {
  .sec_concept .flex .left {
    width: 100%;
  }

  .sec_concept .flex .right {
    width: 100%;
    padding-left: 0rem;
    margin: auto;
    text-align: center;
  }
}

.sec_concept .flex .left .catch {
  width: 80%;
  margin-bottom: 3rem;
}

@media screen and (max-width: 540px) {
  .sec_concept .flex .left .catch {
    width: 85%;
    margin: auto;
    margin-bottom: 3rem;
  }
}

.sec_concept .flex .left .sentence {
  padding-left: 3.5rem;
  line-height: 2;
  font-size: 1.1rem;
}

@media screen and (max-width: 540px) {
  .sec_concept .flex .left .sentence {
    padding-left: 0rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}

.sec_concept .flex .right img {
  width: 60%;
  max-width: 880px;
  position: absolute;
}

@media screen and (max-width: 540px) {
  .sec_concept .flex .right img {
    width: 90%;

    max-width: initial;
    position: relative;
  }
}

/*---------------------------------------------

	特徴

---------------------------------------------*/
.sec_feature {
  padding-top: 2rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 540px) {
  .sec_feature {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .sec_feature .sec_head {
    margin-bottom: 3rem;
  }
}

.feature_row {
  justify-content: space-between;
  margin-bottom: 4rem;
  align-items: center;
}

.feature_row:last-child {
  margin-bottom: 0;
}

.feature_row .left {
  width: 50%;
  z-index: 2;
  min-width: 400px;
}

@media screen and (max-width: 540px) {
  .feature_row {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 6rem;
  }

  .feature_row:last-child {
    margin-bottom: 3rem;
  }

  .feature_row .left {
    min-width: initial;
    width: 80%;
    margin-top: -24rem;
  }
}

.feature_row .right {
  width: 90%;
  margin-left: -20%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 13.73%,
    #fff 86.46%,
    rgba(255, 255, 255, 0) 100%
  );

  padding: 6rem;
  padding-right: 4rem;
  padding-bottom: 4rem;
  padding-left: 25%;
  border-top: 1px solid #29bada;
  border-bottom: 1px solid #29bada;
}

@media screen and (max-width: 540px) {
  .feature_row .right {
    width: 100%;
    margin-left: 0%;
    padding: 2rem;
    padding-top: 5.5rem;
    padding-bottom: 26rem;
  }
}

.feature_row.reverce .right {
  width: 90%;
  margin-left: initial;
  margin-right: -20%;
  padding: 6rem;
  padding-right: 25%;
  padding-bottom: 4rem;
  padding-left: 4rem;
  border-top: 1px solid #29bada;
  border-bottom: 1px solid #29bada;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 13.73%,
    #fff 86.46%,
    rgba(255, 255, 255, 0) 100%
  );
}

.feature_row .right .setence {
  font-size: 0.9rem;
}
.feature_row .right .setence small {
  line-height: 1.6;
  display: inline-block;
}
@media screen and (max-width: 540px) {
  .feature_row.reverce .right {
    margin-right: 0%;
    width: 100%;
    margin-left: 0%;
    padding: 2rem;
    padding-top: 5.5rem;
    padding-bottom: 26rem;
  }
}

.feature_row .right .read {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.feature_row .right .read .note {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.feature_row .right .read {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.feature_row .right .read .head_s {
  top: -3.5rem;
  left: -2rem;
  width: 9rem;
  position: absolute;
}

@media screen and (max-width: 540px) {
  .feature_row .right .read .head_s {
    top: -4rem;
  }
}

/*---------------------------------------------

	cv

---------------------------------------------*/

.sec_cv {
  padding: 5rem;
  background-image: url(../img/back_cv.png);
  background-size: cover;
}

@media screen and (max-width: 1300px) {
  .sec_cv {
    padding: 3.5rem 2rem;
  }
}

/*---------------------------------------------

	sec_youtube

---------------------------------------------*/
.sec_catch {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 1300px) {
  .sec_catch {
    margin-bottom: 2rem;
  }
}

.sec_catch span {
  position: relative;
}

.sec_youtube .sec_catch span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../img/line_strong.svg);
  background-repeat: no-repeat;
  bottom: -0.3rem;
  left: 1rem;
  height: 5px;
  width: 26rem;
}

@media screen and (max-width: 1300px) {
  .sec_youtube .sec_catch span::after {
    height: 3px;
    width: 23rem;
  }
}

.sec_youtube .disc_flex {
  margin-bottom: 5rem;
  justify-content: center;
}

.sec_youtube .left {
  width: 50%;
  padding-right: 4rem;
}

.sec_youtube .right {
  width: 42%;
}

@media screen and (max-width: 1300px) {
  .sec_youtube .left {
    width: 100%;
    padding-right: 0rem;
    margin-bottom: 3rem;
  }

  .sec_youtube .right {
    width: 100%;
  }
}

.youtube_wrap {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}

.youtube_wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.youtube_main {
  margin-bottom: 6rem;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .youtube_main {
    margin-bottom: 4rem;
  }
}

.youtube_sub ul {
  flex-wrap: wrap;
}

.youtube_sub .item {
  width: 46%;
  margin-bottom: 3.5rem;
  position: relative;
  transform: scale(1.05);
}

.youtube_sub .item:nth-child(odd) {
  margin-right: 8%;
}

.youtube_sub a {
  transition: 0.3s ease;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.youtube_sub a:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
}

.youtube_sub a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media screen and (max-width: 540px) {
  .youtube_sub .item {
    width: 80%;
    margin: auto;
    margin-bottom: 3rem;
  }

  .youtube_sub .item:last-child {
    margin-bottom: 0rem;
  }
}

.circle {
  z-index: 5;
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  display: inline-block;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  box-shadow: 0px 2.85189px 14.25947px 0px rgba(255, 233, 218, 0.5);
  background-color: #fff;
}

.circle_inner {
  position: absolute;
  display: inline-block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #f3d8bf;
}

.circle_l {
  top: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
}

.circle_l_inner {
  width: 7.5rem;
  height: 7.5rem;
}

@media screen and (max-width: 540px) {
  .circle_l {
    top: -4.5rem;
    right: -1rem;
    width: 6.5rem;
    height: 6.5rem;
  }

  .circle_l_inner {
    width: 6rem;
    height: 6rem;
  }
}

.circle span {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;
  letter-spacing: 1;
}

.circle span .weight {
  font-weight: 500;
  font-size: 1.2rem;
  background: radial-gradient(
    663.34% 100.02% at 20.28% 39.6%,
    #cc9c21 0%,
    #9c8717 61.46%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
}

.circle span .period {
  font-size: 0.7rem;
  letter-spacing: 0;
  line-height: 1;
}

.circle_l_inner span {
  width: 120%;
}

.circle_l_inner span .weight {
  font-size: 1.5rem;
}

.circle_l_inner span .period {
  font-size: 0.8rem;
}

/*---------------------------------------------

	メニュー

---------------------------------------------*/
.menu_card_area {
  margin-bottom: 3rem;
}

.menu_card_area ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.menu_card_area ul li {
  width: 48%;
  margin: 1%;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .menu_card_area ul li {
    width: 100%;
    margin: 1%;
    margin-bottom: 2rem;
  }
}

.menu_card_area ul li .name {
  padding: 1rem;
  background-color: #7e7cec;
  color: #fff;
  text-align: center;
}

.menu_card_area ul li .menu_info {
  background-color: #fff;
  padding: 2rem 2rem 2rem;
  text-align: center;
}

.menu_card_area ul li .menu_info .fee {
  font-size: 4.5vw;
  line-height: 1.2;
  font-weight: 500;
}

.menu_card_area ul li .menu_info .fee small {
  font-size: 2.8vw;
}

@media screen and (min-width: 1400px) {
  .menu_card_area ul li .menu_info .fee {
    font-size: 3.8vw;
  }
}

.menu_card_area ul li .menu_info .note {
  text-align: left;
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 540px) {
  .menu_card_area ul li .menu_info .note {
    font-size: 0.9rem;
  }
}

.menu_card_area ul li .menu_info .note_other {
  text-align: left;
  font-size: 1.8vw;
  font-weight: 600;
}

.menu_card_area ul li .menu_info .note_other img {
  margin: 1.5rem 0 0.75rem;
}

.menu_card_area ul li .menu_info .note_other span {
  font-size: 0.75rem;
}

@media screen and (max-width: 540px) {
  .menu_card_area ul li .menu_info .note_other {
    font-size: 1.25rem;
  }

  .menu_card_area ul li .menu_info .note_other span {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 540px) {
  .menu_card_area ul li .menu_info {
    background-color: #fff;
    padding: 2rem 3rem 3rem;
    text-align: center;
  }

  .menu_card_area ul li .menu_info .fee {
    font-size: 3rem;
    letter-spacing: 0;
  }

  .menu_card_area ul li .menu_info .fee small {
    font-size: 2rem;
  }
}

.menu_card_area ul li .menu_info .fee span {
  background: linear-gradient(91deg, #55add2 -14.38%, #8d66df 107.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu_card_area ul li .menu_info .icon_area p {
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.menu_card_area ul li .menu_info .icon_area img {
  width: 46%;
  margin-bottom: 1.5rem;
}

.menu_card_area ul li .menu_info .goal {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.menu_card_area ul li .menu_info .goal .flex {
  display: flex;
  align-items: flex-start;
}

.menu_card_area ul li .menu_info .goal span {
  font-size: 0.9rem;
}

@media screen and (max-width: 540px) {
  .menu_card_area ul li .menu_info .goal {
    font-size: 1.2rem;
  }
}

.menu_undernote {
  text-align: left;
  font-size: 0.75rem;
  margin-left: 1.5rem;
  margin-bottom: 3rem;
}

.menu_undernote p {
  padding-left: 1em;
  text-indent: -2.5em;
  line-height: 1.8;
}

.option {
  margin-bottom: 4rem;
}

.option ul li {
  display: flex;
  border-bottom: 1px solid #bfbfbf;
  font-size: 0.9rem;
}

.option ul li:last-child {
  display: flex;
  border: initial;
}

.option ul .items {
  background-color: #ece8ff;
}

.option ul .items_row {
  background-color: #fff;
}

.option ul li .item {
  text-align: center;
  border-right: 1px solid #bfbfbf;
  padding: 1rem 0;
}

.option ul li .item:last-child {
  border: initial;
}

.option ul li .column1 {
  width: 20%;
}

.option ul li .column2 {
  width: 10%;
}

.option ul li .column3 {
  width: 40%;
}

.option ul li .column4,
.option ul li .column5 {
  width: 15%;
}

.option ul li .column3 {
  text-align: left;
  padding-left: 1rem;
}

.campaign_box {
  background-color: #fff;
  padding: 2.5rem;
  display: flex;
  box-shadow: 0px 4px 30px 0px rgba(157, 152, 126, 0.15);
  border-radius: 0.5rem;
  justify-content: space-between;
}

.campaign_box .left {
  width: 55%;
  margin-top: -1rem;
}

.campaign_box .right {
  width: 40%;
}

.campaign_box .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 540px) {
  .campaign_box {
    padding: 2rem;
    padding-top: 2rem;
    display: block;
  }

  .campaign_box .left {
    width: 100%;
    margin-top: 0rem;
    margin-bottom: 3rem;
  }

  .campaign_box .right {
    width: 100%;
  }
}

/*---------------------------------------------

	サービス詳細

---------------------------------------------*/
.card_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2rem;
}

.card_list .sikaku {
  position: absolute;
  width: 3.5rem;
}

.card_list .sikaku1 {
  top: 50%;
  left: 33.3333%;
  transform: translate(-50%, -50%);
}

.card_list .sikaku2 {
  top: 50%;
  left: 66.66666%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 540px) {
  .card_list .sikaku1 {
    display: none;
  }

  .card_list .sikaku2 {
    display: none;
  }
}

.card_list .card {
  width: 33.33%;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 540px) {
  .card_list .card {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-bottom: 3rem;
    padding: 1rem;
    padding-bottom: 2rem;
  }
}

.card_list .card:nth-child(3),
.card_list .card:nth-child(6) {
  border-right: initial;
}

.card_list .card:nth-child(4),
.card_list .card:nth-child(5),
.card_list .card:nth-child(6) {
  border-bottom: initial;
}

@media screen and (max-width: 540px) {
  .card_list .card:nth-child(3) {
    border-right: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
  }

  .card_list .card:nth-child(4) {
    border-bottom: 1px solid #bfbfbf;
  }

  .card_list .card:nth-child(2),
  .card_list .card:nth-child(4),
  .card_list .card:nth-child(6) {
    border-right: initial;
  }

  .card_list .card:nth-child(5),
  .card_list .card:nth-child(6) {
    padding-bottom: 0;
  }
}

.card_list .card .head_s {
  font-size: 0.7rem;
  width: 8rem;
  text-align: center;
  margin: auto;
  display: block;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background-color: #29bada;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.card_list .card .head {
  font-size: 1.7rem;
  letter-spacing: 0.02rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 540px) {
  .card_list .card .head_s {
    margin-top: 1rem;
  }

  .card_list .card .head {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.card_list .card .disc {
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 2rem;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .card_list .card .disc {
    font-size: 0.9rem;
    text-align: left;
  }
}

.card_list .card .image {
  padding: 0 2.5rem;
}

@media screen and (max-width: 540px) {
  .card_list .card .image {
    padding: 0rem;
    margin-top: auto;
  }
}

.sec_make .sec_catch span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../img/line_strong.svg);
  background-repeat: no-repeat;
  bottom: -0.3rem;
  left: 1rem;
  height: 5px;
  width: 16rem;
}

.sec_make .flex {
  margin-bottom: 5rem;
}

.sec_make .flex .left {
  width: 50%;
}

.sec_make .flex .right {
  width: 50%;
  padding-left: 3rem;
}

@media screen and (max-width: 540px) {
  .sec_make .flex .left {
    width: 100%;
    margin-bottom: 3rem;
  }

  .sec_make .flex .right {
    width: 80%;
    margin: auto;
    padding-left: 0rem;
  }
}

.sec_make .artist_area {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 6rem;
}

.sec_make .artist_area {
  display: flex;
  justify-content: space-between;
}

.sec_make .artist_area .item {
  width: 45%;
  font-size: 1.5rem;
  font-weight: 400;
}

.sec_make .artist_area .item .image {
  margin-bottom: 1.5rem;
}

.sec_make .artist_area .item .name {
  margin-bottom: 1rem;
}

@media screen and (max-width: 540px) {
  .sec_make .artist_area {
    margin-bottom: 4rem;
  }

  .sec_make .artist_area .item .image {
    margin-bottom: 1rem;
  }

  .sec_make .artist_area .item .name {
    font-size: 1rem;
  }
}

.sec_make .artist_area .item a {
  width: 2.5rem;
  display: inline-block;
}

.btn_youtube {
  width: 32rem;
  margin: auto;
  margin-top: 5rem;
  transition: 0.3s ease;
}

.btn_youtube:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

@media screen and (max-width: 540px) {
  .btn_youtube {
    width: 100%;
  }
}

/*---------------------------------------------

	インスタ

---------------------------------------------*/
.sec_insta {
  padding: 6rem;
  background-image: url(../img/back_insta.jpg);
  background-size: cover;
}

.sec_insta .head {
  font-size: 4rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.35rem;
}

@media screen and (max-width: 540px) {
  .sec_insta {
    padding: 4rem 0rem;
  }

  .sec_insta .head {
    font-size: 2.5rem;
  }
}

/*---------------------------------------------

	トレーナー

---------------------------------------------*/

.sec_trainer .sec_inner {
  padding: 5rem 0;
}

@media screen and (max-width: 540px) {
  .sec_trainer .sec_inner {
    padding: 4rem 0;
  }
}

@media screen and (max-width: 540px) {
  .sec_trainer .pcWidth-m {
    width: 80%;
  }
}

.sec_trainer .flex {
  justify-content: space-between;
}

.sec_trainer .left {
  width: 50%;
}

.sec_trainer .left .head_s {
  border-left: 3px solid #55add2;
  background: linear-gradient(91deg, #55add2 -14.38%, #8d66df 107.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 0.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.sec_trainer .right {
  width: 45%;
}

@media screen and (max-width: 540px) {
  .sec_trainer .left {
    width: 100%;
    margin-bottom: 3rem;
  }

  .sec_trainer .right {
    margin-top: initial;
    width: 100%;
  }
}

.sec_trainer .info .name {
  font-size: 2.2rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .sec_trainer .info {
    text-align: center;
  }

  .sec_trainer .info .name {
    display: inline-block;
  }
}

.sec_trainer .info .eng {
  position: absolute;
  left: 4rem;
  bottom: -1.5rem;
  width: 15rem;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .sec_trainer .info .eng {
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.5rem;
  }
}

.sec_trainer .info .sns {
  display: flex;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .sec_trainer .info .sns {
    justify-content: center;
    margin-top: 1rem;
  }
}

.sec_trainer .info .sns .item {
  width: 2rem;
}

.sec_trainer .info .sns .item:first-child {
  margin-right: 0.5rem;
}

.trainer_list li {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid #29bada;
}
.trainer_list li:last-child {
  padding-bottom: initial;
  margin-bottom: initial;
  border-bottom: initial;
}
/*---------------------------------------------

	アクセス

---------------------------------------------*/

.sec_access .sec_inner {
  padding: 5rem 0 7rem;
}

@media screen and (max-width: 540px) {
  .sec_access .sec_inner {
    padding: 3rem 0 4rem;
  }
}

.storeitem {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid;
}

.storeitem:last-child {
  border-bottom: 0px solid;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
}

.storename {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 500;
  background: linear-gradient(91deg, #55add2 -14.38%, #8d66df 107.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.storename small {
  font-size: 0.9rem;
  font-weight: 500;
  background: initial;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #77583b;
}

.sec_access .sec_inner .left {
  width: 50%;
}

.sec_access .sec_inner .right {
  width: 50%;
}

@media screen and (max-width: 540px) {
  .sec_access .sec_inner .left {
    width: 100%;
    margin-bottom: 2rem;
  }

  .sec_access .sec_inner .right {
    width: 100%;
  }
}

.sec_access .sec_head_s {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.sec_access .train {
  margin-bottom: 2.5rem;
}

.sec_access .sns {
  display: flex;
}

.sec_access .sns .item {
  width: 2rem;
}

.sec_access .sns .item:first-child {
  margin-right: 0.5rem;
}

.sec_access .number {
  font-size: 1.2rem;
}

.sec_access iframe {
  width: 100%;
}

/*---------------------------------------------

	お客様の声

---------------------------------------------*/
.sec_catch_voice {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 540px) {
  .sec_catch_voice {
    margin-bottom: 1rem;
  }
}

.sec_voice ul li {
  margin-bottom: 5rem;
}

.sec_voice ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 540px) {
  .sec_voice ul li {
  }
}

.sec_voice ul li .flex {
  justify-content: space-between;
}

.sec_voice ul li .left {
  width: 45%;
}

.sec_voice ul li .right {
  width: 48%;
  margin-top: 5rem;
}

.sec_voice ul li .right .imageinner {
  height: auto;
  width: auto;
  position: relative;
}

.sec_voice ul li .right .circle {
  bottom: -1rem;
  right: -1rem;
  top: initial;
}

@media screen and (max-width: 540px) {
  .sec_voice ul li .left {
    width: 100%;
  }

  .sec_voice ul li .right {
    width: 100%;
    margin-top: 3rem;
  }
}

.sec_voice ul li {
  justify-content: space-between;
}

.sec_voice ul li .icon {
  width: 8rem;
  margin-left: -1rem;
  margin-bottom: -1rem;
}

.sec_voice ul li .head_s {
  font-weight: 500;
}

.sec_voice ul li .name {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.eng_access {
  letter-spacing: 0;
  font-size: 0.9rem;
}

.language-switcher select {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  margin-left: 1rem;
}
/*---------------------------------------------

	フッター

---------------------------------------------*/
.footer_banner {
  margin-bottom: 2rem;
}

.footer_banner a img {
  transition: 0.3s ease;
}

.footer_banner a img:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}

.footer-menu {
  background: #473d34;
  text-align: center;
  padding: 2rem 1rem;
}

.footerMenu-logo img {
  width: 10rem;
}

.footerMenu-menus {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footerMenu-menus a {
  color: white;
}

.footerMenu-copy {
  font-size: 0.8rem;
  letter-spacing: normal;
  color: white;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
