@charset "utf-8";

:root {
  --color-key: #262626;
  --color-accent: #FF0033;
  --color-accent2: #FF00B3;
  --color-accent3: #0033FF;
  --bg-gradation: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent2) 100%);
  --bg-white: #f1f1f1;
  --body-color: #fff;
  --body-bg: #262626;
  --red: #FF0033;
  --yellow: #F1F607;
  --font-sans-serif: 'Noto Sans JP', sans-serif;
  --font-en: 'Rubik', sans-serif;
  --font-size-base: 16px;
  --font-weight-base: 700;
  --font-weight-bold: 900;
  --z-index-footer-nav: 90;
  --z-index-header: 100;
  --z-index-header-toggle: 200;
  --height-header: 90px;
  --content-inner: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
  font-size: inherit;
  margin: 0;
}

img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  line-height: initial;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
}

form,
label {
  margin-bottom: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

dd {
  margin-bottom: 1em;
  margin-left: 1.5em;
}

a,
button {
  color: var(--body-color);
  cursor: pointer;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

th {
  font-weight: var(--font-weight-base);
  text-align: left;
}

th,
td {
  padding: .3em 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--body-bg);
  margin: 0;
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: 2;
  color: var(--body-color);
  word-break: normal;
  overflow-wrap: break-word;
}

/* --------------------------------
  header
-------------------------------- */
.header {
  height: var(--height-header);
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: transform .3s;
  width: 100%;
  z-index: var(--z-index-header);
  transform: translateY(-100%);
  will-change: transform;
}

.header.is-scroll {
  transform: translateY(0%);
}

.header__right .button {
  font-size: 18px;
  height: 60px;
  padding: 19px 0 0;
  width: 250px;
}

.header__toggle {
  display: none;
}

/* --------------------------------
  グローバルナビ
-------------------------------- */
.gnav__item-link {
  color: var(--body-color);
  font-weight: var(--font-weight-bold);
  display: block;
  letter-spacing: .05em;
}

/* --------------------------------
  ファーストビュー
-------------------------------- */
.hero {
  background: url(../img/hero-bg.jpg) center bottom / 1920px no-repeat;
  padding-top: 80px;
  position: relative;
  z-index: 0;
  text-align: center;
  white-space: nowrap;
}

.hero .title-01__left,
.hero .title-01__right {
  padding: .15em .4em .25em;
}

.hero .title-01__left {
  font-size: 36px;
}

.hero__kei {
  background: url(../img/kei.png) left center / 48px no-repeat;
  color: var(--body-bg);
  display: inline-block;
  height: 48px;
  letter-spacing: 0;
  padding: 4px 0 0 54px;
}

.hero__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: var(--font-weight-bold);
  letter-spacing: .05em;
  line-height: 1.5;
  margin: 25px 0 40px;
}

.hero__title-item {
  display: block;
  font-style: italic;
  margin-right: -20px;
  position: relative;
}

.hero__title-item::before {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
}

.hero__title-item .text-gradation {
  padding-right: .1em;
}

.hero__title-sm {
  font-size: 46px;
}

.hero__title-sm::before {
  width: 97%;
}

.hero__title-lg {
  font-size: 60px;
}

.hero__title-lg::before {
  width: 94%;
}

.hero__button {
  margin-top: 40px;
}

/* --------------------------------
  タイトル
-------------------------------- */
.title {
  display: block;
  font-weight: var(--font-weight-bold);
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 1em;
}

.title__item {
  display: inline-block;
  padding: .3em .7em .5em;
  position: relative;
}

.title__item::before {
  border: 2px solid;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skewX(-15deg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.title-01 {
  line-height: 1;
  display: flex;
  justify-content: center;
}

.title-01__left,
.title-01__right {
  display: flex;
  align-items: center;
  padding: .2em .7em .4em;
}

.title-01__left {
  font-size: 34px;
}

.title-01__right {
  font-size: 40px;
}

.title-01__left::before {
  background-color: #fff;
}

.title-01__right::before {
  border-left: none;
}

.title-02 {
  font-size: 32px;
  line-height: 1.3;
}

.title-02 .title__item::before {
  background-color: #fff;
}

.title-md {
  font-size: 24px;
}

.title-lg {
  font-size: 40px;
}

/* --------------------------------
  ボタン
-------------------------------- */
.button-wrap {
  margin-top: 80px;
}

.button-wrap-sm {
  margin-top: 60px;
}

.button {
  border-radius: 100px;
  cursor: pointer;
  display: block;
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .05em;
  line-height: 1;
  margin: 0 auto;
  padding: 1.2em 0 1.45em;
  text-align: center;
  width: 480px;
  -webkit-appearance: none;
}

.button-sm {
  align-items: center;
  display: flex;
  font-size: var(--font-size-base);
  justify-content: center;
  line-height: 1.3;
  min-height: 60px;
  padding: 0.5em 0 0.7em;
  width: 300px;
}

.button-key {
  background-color: var(--color-key);
  color: #fff;
}

.button-twitter {
  background-color: #1d9bf0;
  color: #fff;
}

.button-cta {
  background-image: var(--bg-gradation);
  box-shadow: 0 8px 24px rgba(255, 0, 51, .4);
  color: #fff;
  position: relative;
}

.button-accent3 {
  background-color: var(--color-accent3);
  box-shadow: 0 8px 24px rgba(0, 51, 255, .4);
  color: #fff;
}

.button__text {
  background-color: #fff;
  border-radius: 10em;
  border: 2px solid var(--color-accent);
  color: var(--body-bg);
  display: inline-block;
  font-size: 60%;
  font-weight: var(--font-weight-base);
  left: 50%;
  line-height: 1;
  padding: 0.5em;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.button-line {
  background-color: #07B53B;
  color: #fff;
  font-size: 18px;
  height: 62px;
  margin: 1.5em 0 2em;
  width: 100%;
}

/* --------------------------------
  コンテンツ
-------------------------------- */
.content {
  padding-top: 140px;
}

.content__head {
  text-align: center;
}

.content__head-text {
  font-size: 20px;
  margin-top: 1em;
}

.content__title {
  font-size: 48px;
  font-style: italic;
  font-weight: var(--font-weight-bold);
  letter-spacing: .05em;
  line-height: 1.4;
}

.content__title-en {
  font-family: var(--font-en);
  font-size: 20px;
  font-style: italic;
  font-weight: var(--font-weight-bold);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 1em;
}

.content__body {
  margin-top: 80px;
}

.content__body-text {
  font-size: 20px;
  max-width: 850px;
  margin: 2em auto 0;
}

.content__child {
  margin-top: 120px;
}

/*背景白*/
.content-white {
  background-color: var(--bg-white);
  border-left: 8px solid var(--body-bg);
  border-right: 8px solid var(--body-bg);
  color: var(--body-bg);
  margin-top: 140px;
  padding: 100px 0;
}

.content-white .content__title-en {
  padding: 0 0.2em 0.2em 0;
}

/*はじめに*/
.beginning {
  margin-top: 0 !important;
  padding: 80px 0;
}

.beginning .content__head {
  text-align: left;
}

.beginning .content__title {
  font-size: 14px;
  display: inline;
  margin-left: .6em;
}

.beginning__title {
  margin: 35px 0 30px;
}

/*強オスサロンとは*/
.about .content__title {
  position: relative;
}

.about__img {
  margin: -30px 0 50px;
}

.about-list {
  margin-top: 80px;
}

.about__list-item {
  display: flex;
  justify-content: space-between;
}

.about-list__num {
  align-self: flex-start;
  font-size: 56px;
}

.about-list__text {
  font-size: 20px;
  line-height: 1.8;
  margin-top: -.2em;
  text-align: justify;
  width: 80%;
}

/*自己紹介*/
.intro-key {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
}

.intro-key__text {
  margin-left: 30px;
}

.intro-text-wrap {
  text-align: center;
}

.intro-text {
  display: inline-block;
  font-size: 20px;
  line-height: 2.4;
  margin-top: 80px;
  text-align: left;
}

/*強オスサロンの詳細*/
.channel-lists {
  display: flex;
  margin: 0 -10px;
}

.channel-list {
  padding: 0 10px;
  width: calc(100%/ 6);
}

.channel {
  height: 120px;
  position: relative;
}

.channel::before,
.event__img::before,
.plan::before,
.plan__text::before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
  z-index: -1;
}

.channel::after {
  background: url(../img/icon/tag.svg) center / 100% no-repeat;
  content: "";
  display: block;
  height: 1.5em;
  position: absolute;
  right: .3em;
  top: .8em;
  width: 1.5em;
}

.channel-list:nth-child(1) .channel::before,
.channel-list:nth-child(10) .channel::before,
.plan-01::before {
  background-image: linear-gradient(45deg, #0033FF 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(2) .channel::before,
.channel-list:nth-child(11) .channel::before {
  background-image: linear-gradient(45deg, #CC00FF 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(3) .channel::before,
.channel-list:nth-child(12) .channel::before {
  background-image: linear-gradient(45deg, #FF0033 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(4) .channel::before {
  background-image: linear-gradient(45deg, #FFCC00 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(5) .channel::before {
  background-image: linear-gradient(45deg, #33FF00 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(6) .channel::before {
  background-image: linear-gradient(45deg, #00FFCC 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(7) .channel::before {
  background-image: linear-gradient(45deg, #00B3FF 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(8) .channel::before,
.plan-02::before {
  background-image: linear-gradient(45deg, #FF00B3 0%, rgba(38, 38, 38, 0) 100%);
}

.channel-list:nth-child(9) .channel::before {
  background-image: linear-gradient(45deg, #FF4D00 0%, rgba(38, 38, 38, 0) 100%);
}

.channel__title {
  bottom: 0;
  left: .5em;
  position: absolute;
}

.event__img {
  background: center / 50% no-repeat;
  height: 140px;
  position: relative;
}

.event__img-num {
  font-size: 40px;
  left: .8em;
  line-height: 1;
  position: absolute;
  top: -.5em;
}

.event-list:nth-child(1) .event__img {
  background-image: url(../img/event01.png);
}

.event-list:nth-child(2) .event__img {
  background-image: url(../img/event02.png);
}

.event-list:nth-child(3) .event__img {
  background-image: url(../img/event03.png);
}

.event-list:nth-child(1) .event__img::before {
  background-image: linear-gradient(45deg, #0033FF 0%, rgba(38, 38, 38, 0) 100%);
}

.event-list:nth-child(2) .event__img::before {
  background-image: linear-gradient(45deg, #FF0033 0%, rgba(38, 38, 38, 0) 100%);
}

.event-list:nth-child(3) .event__img::before {
  background-image: linear-gradient(45deg, #33FF00 0%, rgba(38, 38, 38, 0) 100%);
}

.event__title {
  font-size: 24px;
  margin-top: 1em;
  text-align: center;
}

.event__title-item {
  display: inline-block;
  line-height: 1;
  padding: .2em;
}

.event-list:nth-child(1) .event__title-item {
  background-color: #0033FF;
}

.event-list:nth-child(2) .event__title-item {
  background-color: #FF0033;
}

.event-list:nth-child(3) .event__title-item {
  background-color: #29CC00;
}

.event02-lists {
  text-align: center;
}

/*利用者の声*/
.voice__head {
  padding-top: 48.25%;
  position: relative;
  z-index: 0;
}

.voice__head:before {
  background: center / 100% no-repeat;
  content: "";
  display: block;
  height: 100%;
  left: -2%;
  position: absolute;
  top: 0;
  width: 104%;
  z-index: -1;
}

.voice-list:nth-child(1) .voice__head::before {
  background-image: url(../img/voice01.jpg);
}

.voice-list:nth-child(2) .voice__head::before {
  background-image: url(../img/voice02.jpg);
}

.voice-list:nth-child(3) .voice__head::before {
  background-image: url(../img/voice03.jpg);
}

.voice__head-title {
  bottom: 0;
  color: #fff;
  font-size: 120%;
  left: 1em;
  line-height: 1.1;
  position: absolute;
}

.voice__head-title .sm {
  font-size: 70%;
}

.voice__body {
  text-align: justify;
}

.voice__body-title {
  font-size: 115%;
  margin-top: 1.2em;
}

.voice-list:nth-child(odd) .voice__body-title {
  color: #0033FF;
}

.voice-list:nth-child(even) .voice__body-title {
  color: #FF00B3;
}

/*サロン会費*/
.plan {
  max-width: 650px;
  margin: 30px auto 0;
  position: relative;
}

.plan-02 {
  padding-bottom: 1.2em;
}

.plan__item {
  font-weight: var(--font-weight-bold);
  letter-spacing: .05em;
  line-height: 1;
  padding: 46px 0;
}

.plan__title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.plan__prices {
  align-items: center;
  display: flex;
}

.plan__price {
  font-size: 40px;
  margin-right: .5em;
  padding-bottom: .1em;
}

.plan__monthly {
  font-size: 12px;
}

.plan__monthly .title__item {
  padding: .4em .7em .65em;
}

.plan__text {
  color: var(--body-bg);
  position: relative;
  padding: .5em;
  text-align: center;
}

.plan__text::before {
  background-color: #fff;
}

.plan__batch {
  position: absolute;
  right: -45px;
  top: -25px;
}

/*よくある質問*/
.faq .content__title-en::before {
  background-image: url(../img/title-faq.png);
}

.faq__lists {
  margin: 0 auto;
  max-width: 1000px;
}

.faq__list {
  border: 0px;
  border-top: 2px solid;
  border-image: linear-gradient(to right, var(--color-accent) 0%, var(--color-accent2) 100%) 1;
}

.faq__list:last-child {
  border-bottom: 2px solid;
}

.faq-box__head {
  background: url(../img/icon/faq-toggle.svg) center right 20px / 26px no-repeat;
  cursor: pointer;
  padding: 30px 66px 30px 0;
  position: relative;
}

.is-open .faq-box__head {
  background-image: url(../img/icon/faq-toggle-off.svg);
}

.title-faq {
  font-size: 20px;
  line-height: 1.6;
  padding-left: 72px;
  position: relative;
}

.title-faq::before,
.faq-box__body > p::before {
  background: center / 100% no-repeat;
  border-radius: 50%;
  content: "";
  display: block;
  height: 34px;
  left: 20px;
  position: absolute;
  width: 34px;
}

.title-faq::before {
  background-image: url(../img/faq-q.jpg);
  top: -1px;
}

.faq-box__body {
  height: 0;
  overflow: hidden;
  transition: height .3s;
}

.faq-box__body > p {
  position: relative;
  font-size: 18px;
  padding: 15px 66px 30px 72px;
}

.faq-box__body > p::before {
  background-image: url(../img/faq-a.jpg);
  top: 20px;
}

/*申し込みフォーム*/
.form-list {
  counter-increment: step;
  margin: 0 auto 3em;
  max-width: 550px;
  padding-top: 2em;
  position: relative;
}

.form-list::before,
.form-list::after {
  position: absolute;
}

.form-list::before {
  background-image: var(--bg-gradation);
  color: #fff;
  content: "STEP."counter(step, decimal-leading-zero);
  display: inline-block;
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  left: 50%;
  line-height: 1;
  top: -0.5em;
  transform: translateX(-50%);
  z-index: 1;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-list::after {
  background-image: linear-gradient(90deg, #ff0033 0%, #ff0065 40%, var(--body-bg) 40%, var(--body-bg) 60%, #ff0081 60%, #ff00b3 100%);
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  top: 0;
}

.form-list__body {
  margin: 0;
}

.form-list__input {
  background-color: #fff;
  border: 1px solid rgba(0, 51, 255, .2);
  padding: 1em .8em;
  width: 100%;
}

.form-list__input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.form-list__check {
  width: 1.3em;
  height: 1.3em;
  margin: 0.3875em 0.3875em 0 0;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid rgba(0, 51, 255, .2);
  -webkit-appearance: none;
  appearance: none;
  color-adjust: exact;
}

.form-list__check:checked {
  background-image: url(../img/icon/check-white.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: var(--color-accent3);
}

.title-form {
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.label-form {
  background-color: var(--red);
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-base);
  line-height: 1;
  margin-left: auto;
  padding: .4em 0 .5em;
  text-align: center;
  width: 4.4em;
}

.text-form {
  margin-bottom: 1em;
}

/*error message*/
.error_blank,
.error_format,
.error_match {
  color: red;
  display: block;
  font-size: 95%;
  line-height: 1.5;
  margin-top: 0.4em;
}

/*loading*/
.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}

.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  transform: translateZ(0);
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 今すぐ申し込みの方はこちら */
.apply {
  padding: 60px 0 80px;
}

.apply .content__body {
  margin-top: 40px;
}

.apply-list {
  padding: 0 20px;
}

.title-apply {
  font-size: 22px;
  margin-bottom: .5em;
}

/* --------------------------------
  メダル
-------------------------------- */
.medals {
  display: flex;
  justify-content: center;
}

.medal {
  margin-top: 30px;
  padding: 0 10px;
}


/* --------------------------------
  footer
-------------------------------- */
.footer {
  margin-top: 140px;
}

.footer-menus-wrap {
  border-top: 4px solid rgba(255, 255, 255, .1);
  padding: 30px 20px 40px;
}

.footer-menus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu__link {
  color: var(--body-color);
  display: block;
  line-height: 1;
  margin: .9em;
}

.footer__copy {
  color: #fff;
  font-size: 11px;
  line-height: 1;
  opacity: .5;
  padding: 2em 0;
  text-align: center;
}

/* --------------------------------
  aリンク
-------------------------------- */
.link {
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

/* --------------------------------
  ユーティリティー
-------------------------------- */
.inline-block {
  display: inline-block;
}

.font-weight-bold {
  font-weight: var(--font-weight-bold);
}

.font-weight-base {
  font-weight: var(--font-weight-base);
}

.text-gradation {
  background-image: var(--bg-gradation);
  color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-key {
  color: var(--color-key);
}

.text-yellow {
  color: var(--yellow);
}

.text-red {
  color: var(--red);
}

.text-accent3 {
  color: var(--color-accent3);
}

.text-glitch {
  display: inline-block;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  position: relative;
}

.text-glitch::before,
.text-glitch::after {
  content: attr(data-text);
  mix-blend-mode: screen;
  position: absolute;
}

.text-glitch::before {
  color: var(--color-accent);
  left: -.05em;
  top: -.05em;
}

.text-glitch::after {
  color: var(--color-accent3);
  right: -.05em;
  bottom: -.05em;
}

.bg-gradation {
  background-image: var(--bg-gradation);
  color: var(--bg-white);
  ;
  display: inline-block;
  line-height: 1.1;
  padding-bottom: .1em;
}

.under-gradation {
  border: 0px;
  border-bottom: .15em solid;
  border-image: linear-gradient(to right, var(--color-accent) 0%, var(--color-accent2) 100%) 1;
}

.under {
  border-bottom: .15em solid;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.xs {
  font-size: 55%;
}

.sm {
  font-size: 87.25%;
}

.lg {
  font-size: 115%;
}

.xl {
  font-size: 150%;
}

/* ================================================================
  PC版のみレイアウト
================================================================ */
@media screen and (min-width: 768px) {

  body,
  .header {
    min-width: calc(var(--content-inner) + 80px);
  }

  .header {
    background-color: var(--body-bg);
  }

  .header__inner {
    display: flex;
    margin: 0 auto;
    max-width: var(--content-inner);
  }

  .header__right {
    display: flex;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .header__right .button {
    margin-left: 15px;
  }

  .gnavs {
    align-items: center;
    display: flex;
  }

  .gnav__item {
    margin: 30px 30px 0 0;
  }

  .hero {
    height: 640px;
  }

  .hero__inner {
    position: relative;
  }

  .hero__medal {
    position: absolute;
    right: 50px;
    top: 0;
  }

  .button:hover {
    opacity: .8;
  }

  .hero__inner,
  .content__inner {
    margin: 0 auto;
    width: var(--content-inner);
  }

  .beginning .content__inner {
    display: flex;
  }

  .beginning .content__body {
    flex: 1;
    margin: 0 0 0 130px;
  }

  .about-lists {
    display: flex;
    flex-wrap: wrap;
    margin: -80px -40px 0;
  }

  .about-list {
    padding: 0 40px;
    width: 50%;
  }

  .intro-key {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 80px auto 25px;
  }

  .channel-lists {
    flex-wrap: wrap;
    margin-top: -20px;
  }

  .channel-list {
    margin-top: 20px;
  }

  .event-lists {
    display: flex;
    margin: 0 -20px;
  }

  .event-list {
    padding: 0 20px;
    width: calc(100% / 3);
  }

  .event02-list {
    display: inline-block;
    margin: 0 20px;
    vertical-align: top;
  }

  .voice-lists {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }

  .voice-list {
    display: flex;
    padding: 0 20px;
    width: calc(100% / 3);
  }

  .voice__body-title {
    align-items: center;
    display: flex;
    min-height: 3em;
  }

  .plan-01 {
    margin-top: 60px;
  }

  .plan__item {
    align-items: center;
    display: flex;
  }

  .plan__title {
    flex: 1;
    text-align: right;
    padding-right: 2.5em;
  }

  .plan__prices {
    width: 55%;
  }

  .plan__text {
    max-width: 475px;
    margin: 0 auto;
  }

  .title-form {
    align-items: center;
    display: flex;
    font-size: 18px;
  }

  .title-form br {
    display: none;
  }

  .apply-lists {
    display: flex;
    justify-content: center;
  }

  .pc-none {
    display: none;
  }

}

@media screen and (max-width: 1490px) and (min-width: 768px) {
  .header__inner {
    max-width: 100%;
  }
  .gnav__item {
    margin: 30px 0 0 15px;
  }
}

/* ================================================================
  スマホ版レイアウト
================================================================ */
@media screen and (max-width: 767px) {
  :root {
    --font-size-base: 1.4rem;
    --height-header: 16vw;
  }

  html {
    font-size: 2.66667vw;
  }

  img {
    width: 100%;
  }

  .sp-none {
    display: none;
  }

  .is-open .header {
    transform: translateY(0%);
  }

  .header__inner {
    background-color: rgba(38, 38, 38, .95);
    height: 100vh;
    opacity: 0;
    padding: 21.33333vw 0;
    transition: .3s;
    visibility: hidden;
  }

  .is-open .header__inner {
    opacity: 1;
    visibility: visible;
  }

  .header__right {
    margin-top: 1em;
  }

  .header__right .button {
    margin: 1em auto 1.5em;
    font-size: 1.6rem;
    height: 14.933vw;
    padding-top: 4.533vw;
    width: 80vw;
  }

  .header__toggle {
    display: block;
    background-color: #fff;
    box-shadow: 0 1.06666vw 3.2vw rgba(0, 0, 0, .1);
    border-radius: 50%;
    position: fixed;
    top: 2.933vw;
    right: 3.2vw;
    width: 10.133vw;
    height: 10.133vw;
    z-index: var(--z-index-header-toggle);
  }

  .header__toggle-line {
    background-image: var(--bg-gradation);
    border-radius: 0.8vw;
    display: inline-block;
    left: 3.2vw;
    position: absolute;
    top: calc(50% - 0.4vw);
    transition: transform .3s;
    will-change: transform;
    height: 0.8vw;
    width: 3.733vw;
  }

  .header__toggle-line:nth-of-type(1) {
    margin-top: -1.6vw;
  }

  .header__toggle-line:nth-of-type(3) {
    margin-top: 1.6vw;
  }

  .is-open .header__toggle-line:nth-of-type(1) {
    margin-top: 0;
    transform: rotate(45deg);
  }

  .is-open .header__toggle-line:nth-of-type(2) {
    opacity: 0;
  }

  .is-open .header__toggle-line:nth-of-type(3) {
    margin-top: 0;
    transform: rotate(-45deg);
  }

  .gnav__item-link {
    font-size: 1.6rem;
    padding: .8em;
    text-align: center;
  }

  .hero {
    background-size: 190%;
    background-repeat: repeat-y;
    padding: 10.667vw 0;
  }

  .hero__inner {
    padding: 0 5.333vw;
  }

  .hero .title-01__left {
    font-size: 2.5rem;
  }

  .hero .title-01__right {
    width: 56%;
  }

  .hero__kei {
    background: url(../img/kei.png) left center / 9.6vw no-repeat;
    height: 9.6vw;
    padding: 1.067vw 0 0 10.667vw;
  }

  .hero__title {
    margin: 4.8vw 0 6.667vw;
  }

  .hero__title-item {
    margin-right: -5.333vw;
  }

  .hero__title-item::before {
    height: 0.8vw;
  }

  .hero__title-sm {
    font-size: 2.5rem;
  }

  .hero__title-lg {
    font-size: 3.4rem;
  }

  .hero .title-md {
    font-size: 1.5rem;
  }

  .hero__button {
    margin-top: 6.667vw;
  }

  .hero__medal {
    margin: 6.667vw auto 0;
    width: 40vw;
  }

  .title-01__left {
    font-size: 2rem;
  }

  .title-01__right {
    font-size: 2.8rem;
  }

  .title-02 {
    font-size: 2rem;
  }

  .title-lg {
    font-size: 2.8rem;
  }

  .title-md {
    font-size: 2rem;
  }

  .button-wrap {
    margin-top: 16vw;
  }

  .button-wrap-sm {
    margin-top: 10.667vw;
  }

  .button {
    font-size: 1.8rem;
    width: 100%;
  }

  .button-sm {
    font-size: 1.3rem;
    min-height: 10.667vw;
    width: 80%;
  }

  .button__text {
    border-width: 1px;
    font-size: 65%;
  }

  .button-line {
    font-size: 1.6rem;
    height: 15.467vw;
  }

  .content {
    padding-top: 16vw;
  }

  .content__title {
    font-size: 2.8rem;
  }

  .content__title img {
    height: 1.4em;
    width: auto;
  }

  .content__title-en {
    font-size: 1.4rem;
  }

  .content__inner {
    padding: 0 5.333vw;
  }

  .content__head-text {
    font-size: 1.4rem;
    text-align: left;
  }

  .content__body {
    margin-top: 10.667vw;
  }

  .content__body-text {
    font-size: 1.4rem;
  }

  .content__child {
    margin-top: 16vw;
  }

  .content-white {
    border-left-width: 2.133vw;
    border-right-width: 2.133vw;
    margin-top: 16vw;
    padding: 10.667vw 0 16vw;
  }

  .beginning .content__title {
    font-size: 1.2rem;
  }

  .beginning .content__body {
    font-size: 1.3rem;
    margin-top: 0;
  }

  .beginning__title {
    margin: 8vw 0;
    padding-right: 8vw;
  }

  .about__img {
    margin: -4.533vw -5.333vw 8vw;
  }

  .about-list {
    margin-top: 10.667vw;
  }

  .about-list__num {
    font-size: 3.2rem;
  }

  .about-list__text {
    font-size: 1.4rem;
  }

  .intro-key {
    font-size: 4.8vw;
    text-align: center;
  }

  .intro-key__icon {
    height: 21.333vw;
    width: 21.333vw;
  }

  .intro-key__text {
    margin: 4vw 0 0;
  }

  .intro-text {
    font-size: 1.4rem;
    margin-top: 10.667vw;
    line-height: 2.2;
  }

  .details__discord {
    padding: 0 22%;
  }

  .channel-lists-wrap {
    overflow-x: auto;
    margin: 0 -5.333vw;
    padding-left: 10%;
  }

  .channel-lists {
    margin: 0 -1.333vw;
  }

  .channel-list {
    padding: 0 1.333vw;
    flex: 0 0 40%;
  }

  .channel {
    height: 24vw;
  }

  .channel__title {
    font-size: 1.2rem;
  }

  .channel::after {
    height: 1.2em;
    right: 0;
    top: .6em;
    width: 1.2em;
  }

  .event-list {
    margin-top: 13.333vw;
  }

  .event__img {
    height: 32vw;
    margin: 0 auto;
    width: 90%;
  }

  .event__img-num {
    font-size: 3.2rem;
  }

  .event__title {
    font-size: 2rem;
  }

  .event02-list:not(:last-child) {
    margin-bottom: 10.667vw;
  }

  .activity-img-wrap {
    overflow-x: auto;
    margin: 0 -5.333vw;
    padding: 0 5.333vw;
  }

  .activity-img {
    min-width: 160vw;
  }

  .voice-list:not(:last-child) {
    margin-bottom: 10.667vw;
  }

  .plan {
    margin-top: 10.667vw;
    width: 90%;
  }

  .plan__item {
    padding: 5.333vw 0;
  }

  .plan__title {
    font-size: 1.8rem;
    text-align: center;
  }

  .plan__prices {
    margin-top: 1.5em;
    justify-content: center;
  }

  .plan__price {
    font-size: 2.8rem;
  }

  .plan__monthly {
    font-size: 1.1rem;
  }

  .plan__text {
    font-size: 1.2rem;
    width: 91%;
  }

  .plan__batch {
    right: -9.333vw;
    top: -34.667vw;
    width: 18.667vw;
  }

  .faq-box__head {
    background-position: center right 1.33333vw;
    background-size: 5.333vw;
    padding: 5.333vw 9.333vw 5.333vw 0;
  }

  .title-faq {
    font-size: 1.4rem;
    padding-left: 11.467vw;
  }

  .title-faq::before,
  .faq-box__body > p::before {
    height: 6.933vw;
    width: 6.933vw;
    left: 1.333vw;
  }

  .faq-box__body > p {
    font-size: 1.2rem;
    padding: 2.667vw 0 4vw 11.467vw;
  }

  .contact .content__inner {
    padding: 0 2.667vw;
  }

  .form-list::before {
    border-left: 1px solid var(--body-bg);
    border-right: 1px solid var(--body-bg);
    font-size: 1.8rem;
  }

  .form-list::after {
    background-image: linear-gradient(90deg, #ff0033 0%, #ff0065 35%, var(--body-bg) 35%, var(--body-bg) 65%, #ff0081 65%, #ff00b3 100%);
  }

  .title-form {
    font-size: 1.6rem;
    position: relative;
  }

  .form-list__input {
    font-size: 1.6rem;
  }

  .label-form {
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 0;
  }

  .apply .content__body {
    margin-top: 5.33333vw;
  }

  .apply-list {
    padding: 0 5.333vw;
    margin-top: 5.333vw;
  }

  .title-apply {
    font-size: 1.8rem;
  }

  .medals {
    margin: 0 -1.333vw;
  }

  .medal {
    margin-top: 8vw;
    padding: 0 1.333vw;
  }

  .footer {
    margin-top: 21.333vw;
    padding-bottom: 21.333vw;
  }

  .footer-menus-wrap {
    padding: 5.333vw 5.333vw 6.667vw;
  }

  .footer-menu__link {
    font-size: 1.3rem;
  }

  .footer__copy {
    font-size: .9rem;
  }

  .footer-nav {
    background-color: rgba(0, 0, 0, .2);
    bottom: 0;
    height: 10.667vw;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: var(--z-index-footer-nav);
    transform: translateY(21.33333vw);
    transition: transform ease-in-out .5s;
    will-change: transform;
  }

  .is-scroll.footer-nav {
    transform: translateY(0px);
  }

  .footer-nav .button-cta {
    font-size: 1.6rem;
    height: 13.333vw;
    margin-top: -5.333vw;
    padding: 4vw 0 0;
    width: 89.333vw;
  }

  .footer-nav .button-cta::before {
    content: none;
  }

  .under-gradation {
    border-bottom-width: 0.533vw;
  }

  .pc-none {
    display: block;
  }

}