@charset "UTF-8";
/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/noto-sans-jp/noto-sans-jp-v56-japanese_latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/noto-sans-jp/noto-sans-jp-v56-japanese_latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Reset.css */
/* ボックスサイズの計算方法を統一 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* マージンとパディングをリセット */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* ボディのデフォルトスタイルを設定 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* リストのスタイルを削除 */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 画像とiframeの最大幅を設定 */
img, iframe {
  max-width: 100%;
  display: block;
}

/* フォームの要素のフォントを継承 */
input, button, textarea, select {
  font: inherit;
}

/* テーブルのボーダーを結合 */
table {
  border-collapse: collapse;
}

/* アンカーのテキスト装飾を削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* フォーカス時のアウトラインをリセット */
:focus {
  outline: none;
}

/* HTML5要素のデフォルト表示を設定 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

.p-fv__title-2 span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

:root {
  --header-h: 80px;
  --header-h-sp: 70px;
  --size-sp-cta-button: clamp(300px, 8.9485458613vw + 271.3646532438px, 340px);
  --color-black: #383838;
  --color-line-green: #00b900;
  --color-grey: #6E6E6E;
  --color-light-grey: #e9e9e9;
  --color-pale-orange: #ff9970;
  --color-card-orange: #fb8b01;
  --color-accent: #f65514;
  --color-accent-rgb: 246, 85, 20;
  --color-accent-light: #fb8b01;
  --color-study-basic: #f39c12;
  --color-study-basic-bg: #ffeed5;
  --color-study-intermediate: #f57c00;
  --color-study-intermediate-bg: #fff1e8;
  --color-study-advanced: #e64a19;
  --color-study-advanced-bg: #ffe6e0;
  --font-size-2xs: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  --font-size-xs: clamp(12px, 0.1657458564vw + 11.3784530387px, 13.5px);
  --font-size-sm: clamp(14px, 0.1104972376vw + 13.5856353591px, 15px);
  --font-size-base: clamp(16px, 0.4419889503vw + 14.3425414365px, 20px);
  --font-size-lg: clamp(18px, 0.773480663vw + 15.0994475138px, 25px);
  --font-size-xl: clamp(20px, 1.1049723757vw + 15.8563535912px, 30px);
  --font-size-2xl: clamp(22px, 1.9889502762vw + 14.5414364641px, 40px);
  --font-size-3xl: clamp(28px, 2.4309392265vw + 18.8839779006px, 50px);
  --font-size-4xl: clamp(32px, 3.0939226519vw + 20.3977900552px, 60px);
  --font-size-5xl: clamp(70px, 5.5248618785vw + 49.2817679558px, 120px);
}

[data-page=videolearning] {
  --color-accent: #fb4001;
  --color-accent-rgb: 251, 64, 1;
  --color-accent-light: #ff6426;
}

[data-page=business] {
  --color-accent: #1372f6;
  --color-accent-rgb: 19, 114, 246;
  --color-accent-light: #00defc;
  --color-study-basic: #66b2ff;
  --color-study-basic-bg: #f2f7ff;
  --color-study-intermediate: #1a80ff;
  --color-study-intermediate-bg: #e5efff;
  --color-study-advanced: #1372f6;
  --color-study-advanced-bg: #d6e6ff;
}

[data-page=vocal] {
  --color-accent: #21c240;
  --color-accent-rgb: 33, 194, 64;
  --color-accent-light: #8ED94A;
}

[data-page=acting] {
  --color-accent: #9821c2;
  --color-accent-rgb: 152, 33, 194;
  --color-accent-light: #ef6687;
  --color-study-basic: var(--color-accent-light);
  --color-study-basic-bg: color-mix(in srgb, white 90%, var(--color-study-basic));
  --color-study-intermediate: color-mix(in srgb, var(--color-accent) 50%, var(--color-accent-light));
  --color-study-intermediate-bg: color-mix(in srgb, white 90%, var(--color-study-intermediate));
  --color-study-advanced: var(--color-accent);
  --color-study-advanced-bg: color-mix(in srgb, white 90%, var(--color-study-advanced));
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.anim-appear {
  --appear-bg: linear-gradient(to right, var(--color-accent-light), var(--color-accent));
  display: inline-block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transform: translatex(-30px);
  opacity: 1;
  transition: transform 0.8s ease-out;
}

.anim-appear::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--appear-bg);
  z-index: 1;
  transform: translateX(0);
}

.anim-appear.is-active {
  transform: translateX(0);
}

.anim-appear.is-active::after {
  animation: appearBar 0.5s 0.1s ease-in-out forwards;
}

.anim-appear.is-active::before {
  animation: revealText 0.5s 0.1s ease-in-out forwards;
}

@keyframes appearBar {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes revealText {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes jicoo-spin {
  to {
    transform: rotate(360deg);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
}

@font-face {
  font-family: "AlteDIN";
  src: url("/font/DIN.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "AlteDIN";
  src: url("/font/DING.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
.text-accent-color {
  color: var(--color-accent);
}

.section {
  width: 100%;
  padding: 40px 0;
  position: relative;
}
.section--cta, .section--cta-vl {
  padding-top: 80px;
}
.section--reco {
  padding: 0;
}
.section--faq, .section--flow, .section--howto, .section--recommend-recitation {
  padding-bottom: 50px;
}
.section--market, .section--service, .section--support, .section--concept-vl {
  padding-top: 0;
}
.section--about-business {
  padding-bottom: 60px;
}
.section--problem {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
  .section--see {
    padding-top: 80px;
  }
  .section--reco, .section--market {
    padding: 0;
  }
  .section--faq, .section--flow, .section--howto, .section--two, .section--recommend-recitation {
    padding-bottom: 50px;
  }
  .section--step {
    padding-bottom: 50px;
  }
  .section--service, .section--support, .section--concept-vl {
    padding-top: 0;
  }
  .section--last {
    padding: 20px 0;
  }
  .section--campaign {
    padding-top: 100px 0;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1360px) {
  .container {
    padding: 0;
  }
}
.container--fv {
  height: calc(100vh - var(--header-h));
}
@media screen and (min-width: 1920px) {
  .container--fv {
    height: calc(80vh - var(--header-h));
  }
}
@media screen and (max-width: 1365px) {
  .container--fv {
    height: calc(100vh - var(--header-h));
  }
}
@media screen and (max-width: 599px) {
  .container--fv {
    height: 650px;
  }
}
@media screen and (max-width: 374px) {
  .container--fv {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  .container--step {
    padding: 0;
  }
}
@media screen and (max-width: 374px) {
  .container--reservation {
    padding: 0 15px;
  }
}

.is-pc-hide {
  display: var(--display-pc, block) !important;
}
@media screen and (max-width: 1365px) {
  .is-pc-hide {
    display: none !important;
  }
}

.is-pc-show {
  display: none !important;
}
@media screen and (max-width: 1365px) {
  .is-pc-show {
    display: var(--display-mb, block) !important;
  }
}

.is-tablet-portrait-hide {
  display: var(--display-pc, block) !important;
}
@media screen and (max-width: 767px) {
  .is-tablet-portrait-hide {
    display: none !important;
  }
}

.is-tablet-portrait-show {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .is-tablet-portrait-show {
    display: var(--display-mb, block) !important;
  }
}

.is-mobile-hide {
  display: var(--display-pc, block) !important;
}
@media screen and (max-width: 599px) {
  .is-mobile-hide {
    display: none !important;
  }
}

.is-mobile-show {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .is-mobile-show {
    display: var(--display-mb, block) !important;
  }
}

.is-mobile-small-hide {
  display: var(--display-pc, block) !important;
}
@media screen and (max-width: 374px) {
  .is-mobile-small-hide {
    display: none !important;
  }
}

.is-mobile-small-show {
  display: none !important;
}
@media screen and (max-width: 374px) {
  .is-mobile-small-show {
    display: var(--display-mb, block) !important;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.animation-button {
  animation: pulse 2s infinite ease-in-out;
}
@media screen and (max-width: 767px) {
  .animation-button {
    animation: pulse2 2s infinite ease-in-out;
  }
}

@keyframes scroll-anim {
  0% {
    opacity: 0;
    translate: 0 -20px;
  }
  8% {
    opacity: 0;
    translate: 0 -20px;
  }
  12% {
    opacity: 0.9;
    translate: 0 0;
  }
  100% {
    opacity: 0.9;
  }
}
.p-fv {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
}
@media screen and (min-width: 1920px) {
  .p-fv {
    height: calc(80vh - var(--header-h));
  }
}
@media screen and (max-width: 1365px) {
  .p-fv {
    height: calc(100vh - var(--header-h));
  }
}
@media screen and (max-width: 599px) {
  .p-fv {
    margin-top: var(--header-h-sp);
    height: 650px;
  }
}
@media screen and (max-width: 374px) {
  .p-fv {
    height: 600px;
  }
}
.p-fv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-fv__wrap {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-fv__wrap {
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 599px) {
  .p-fv__wrap {
    width: 95%;
    bottom: -100px;
  }
}
@media screen and (max-width: 599px) and (max-width: 599px) {
  body[data-page=recitation] .p-fv__wrap, body[data-page=vocal] .p-fv__wrap {
    bottom: -80px;
  }
}
@media screen and (max-width: 599px) {
  .p-fv__wrap-contents {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-fv__sub {
  margin-bottom: 25px;
  font-size: var(--font-size-xl);
  letter-spacing: 0.16em;
  font-weight: 700;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-fv__sub {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 599px) {
  .p-fv__sub {
    font-size: var(--font-size-lg);
  }
  body[data-page=recitation] .p-fv__sub {
    font-size: var(--font-size-base);
  }
}
.p-fv__title, .p-fv__title-2 {
  display: inline-block;
  background-color: white;
  font-size: var(--font-size-3xl);
  letter-spacing: 0.1em;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-fv__title, .p-fv__title-2 {
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 599px) {
  body[data-page=recitation] .p-fv__title, body[data-page=vocal] .p-fv__title, body[data-page=recitation] .p-fv__title-2, body[data-page=vocal] .p-fv__title-2 {
    font-size: 26px;
  }
}
.p-fv__title-2 span {
  background-image: linear-gradient(to bottom right, var(--color-accent), var(--color-accent-light));
}
.p-fv__add {
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-fv__add {
    -moz-column-gap: 8px;
         column-gap: 8px;
    margin-bottom: 10px;
  }
}
.p-fv__add-text {
  line-height: 1;
  font-weight: 700;
  font-size: var(--font-size-lg);
  letter-spacing: 0.16em;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-fv__add-text {
    letter-spacing: 0.05em;
  }
}
.p-fv__anker {
  display: block;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .p-fv__anker {
    width: var(--size-sp-cta-button);
    margin: 0 auto;
  }
}
.p-fv__button-img {
  width: 100%;
}

.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1365px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__pointer {
  pointer-events: none;
}
.l-hamburger__nav {
  position: fixed;
  background-color: white;
  width: 50%;
  height: 100dvh;
  z-index: 1001;
  opacity: 0;
  top: -150rem;
  right: 0;
  transition: all 0.7s;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .l-hamburger__nav {
    width: 100%;
  }
}
.l-hamburger__ul {
  height: calc(100dvh + 70px);
  text-align: center;
  margin-top: 70px;
  position: relative;
  padding-top: min(90px, 6.25vw);
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .l-hamburger__ul {
    padding: 18px 30px;
    margin-top: 0;
  }
}
.l-hamburger__li {
  padding-bottom: 4rem;
}
.l-hamburger__li.is-open .l-hamburger__submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.l-hamburger__li.is-open .l-hamburger__arrow {
  transform: rotate(180deg);
}
.l-hamburger__wrapping {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  margin-top: -20px;
  margin-left: 20px;
}
.l-hamburger__school-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.l-hamburger__sub {
  font-size: 18px;
  font-weight: 700;
  color: white !important;
  padding-left: 41px;
  position: relative;
  margin-left: 1rem;
}
.l-hamburger__sub:not(:last-child) {
  margin-bottom: 10px;
}
.l-hamburger__sub::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: white;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.l-hamburger__a {
  color: white;
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 23px;
       column-gap: 23px;
}
.l-hamburger__contact {
  width: 400px;
  display: block;
  margin: 0;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-hamburger__contact {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .l-hamburger__contact {
    width: 100%;
    margin-top: -5px;
    margin-bottom: 20px;
  }
}
.l-hamburger__contact-line {
  width: 400px;
  display: block;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .l-hamburger__contact-line {
    width: 100%;
  }
}
.l-hamburger__contact-img {
  width: 100%;
}
.l-hamburger__arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
  transform-origin: center 3px;
}
.l-hamburger__button {
  display: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  position: fixed;
  right: 2%;
  top: calc((var(--header-h) - 60px) / 2);
  background-color: transparent;
  z-index: 1001;
  transition: all 0.5s;
}
@media screen and (max-width: 1365px) {
  .l-hamburger__button {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger__button {
    top: calc((var(--header-h-sp) - 60px) / 2);
  }
}
.l-hamburger__japanese {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: white;
}
.l-hamburger__english {
  color: white;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
}
.l-hamburger__hum {
  display: none;
  height: 3px;
  width: 4rem;
  background-color: var(--color-black);
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 2rem;
  z-index: 1001;
  border-radius: 3px;
}
.l-hamburger__hum::before, .l-hamburger__hum::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 4rem;
  background-color: var(--color-black);
  position: absolute;
  top: -1.2rem;
  left: 0;
  transition: all 0.25s;
  border-radius: 3px;
}
.l-hamburger__hum::after {
  top: 1.2rem;
}
@media screen and (max-width: 1365px) {
  .l-hamburger__hum {
    display: inline-block;
  }
}
.l-hamburger.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-hamburger.open .l-hamburger__nav {
    top: 70px;
    height: calc(100% - 70px);
  }
}
.l-hamburger.open .l-hamburger__button span {
  background-color: transparent;
}
.l-hamburger.open .l-hamburger__button span::before {
  transform: translateY(1.2rem) rotate(-315deg);
}
.l-hamburger.open .l-hamburger__button span::after {
  transform: translateY(-1.2rem) rotate(315deg);
}

.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
}

.open .l-hamburger__button span {
  background-color: transparent;
}

.open .l-hamburger__button span::before {
  transform: translateY(1.2rem) rotate(-315deg);
}

.open .l-hamburger__button span::after {
  transform: translateY(-1.2rem) rotate(315deg);
}

.l-header {
  height: var(--header-h);
  line-height: var(--header-h);
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 1000;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: var(--header-h-sp);
    line-height: var(--header-h-sp);
  }
}
.l-header__wrap {
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  line-height: var(--header-h);
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    height: var(--header-h-sp);
    line-height: var(--header-h-sp);
  }
}
.l-header__left {
  width: min(300px, 20.8333333333vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.l-header__left:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__left {
    width: 220px;
  }
}
.l-header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(30px, 2.0833333333vw);
       column-gap: min(30px, 2.0833333333vw);
}
@media screen and (max-width: 1365px) {
  .l-header__right {
    display: none;
  }
}
.l-header__logo {
  width: 100%;
}
.l-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: min(25px, 1.7361111111vw);
       column-gap: min(25px, 1.7361111111vw);
}
.l-header__li {
  position: relative;
}
.l-header__li--has-dropdown:hover .l-header__dropdown {
  opacity: 1;
  visibility: visible;
}
.l-header__a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  height: min(90px, 6.25vw);
  row-gap: min(6px, 0.4166666667vw);
  cursor: pointer;
}
.l-header__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-header__japanese {
  font-size: min(17px, 1.1805555556vw);
  line-height: 1;
  font-weight: 700;
}
.l-header__english {
  font-size: min(12px, 0.8333333333vw);
  line-height: 1;
  color: var(--color-accent);
  font-weight: 700;
}
.l-header__dropdown {
  position: fixed;
  top: var(--header-h);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100%;
  padding: 20px 40px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .l-header__dropdown {
    display: none;
  }
}
.l-header__dropdown-inner {
  max-width: 1322px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 0.5fr 2fr 2fr 0.5fr 2fr;
  grid-template-areas: "title-va . ." "item-nm item-pro item-vl" "item-hr item-re ." "title-sp title-vo title-ac" "item-sp item-vo item-ac";
}
.l-header__dropdown-inner-title--voice-actor {
  background: linear-gradient(to right, #ff3d00, #fca600);
  grid-area: title-va;
}
.l-header__dropdown-inner-title--speaking {
  background: linear-gradient(to right, #0057ff, #00defc);
  grid-area: title-sp;
}
.l-header__dropdown-inner-title--vocal {
  background: linear-gradient(to right, #21c240, #bfef66);
  grid-area: title-vo;
}
.l-header__dropdown-inner-title--acting {
  background: linear-gradient(to right, #9821c2, #ef6687);
  grid-area: title-ac;
}
.l-header__dropdown-inner-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding-left: 1rem;
}
.l-header__dropdown-item {
  position: relative;
  overflow: hidden;
  display: block;
  transition: all 0.3s;
  white-space: nowrap;
  opacity: 0.7;
  border-radius: 8px;
  flex: 1;
}
.l-header__dropdown-item--normal {
  grid-area: item-nm;
}
.l-header__dropdown-item--pro {
  grid-area: item-pro;
}
.l-header__dropdown-item--speaking {
  grid-area: item-sp;
}
.l-header__dropdown-item--videolearning {
  grid-area: item-vl;
}
.l-header__dropdown-item--vocal {
  grid-area: item-vo;
}
.l-header__dropdown-item--homerecording {
  grid-area: item-hr;
}
.l-header__dropdown-item--recitation {
  grid-area: item-re;
}
.l-header__dropdown-item--acting {
  grid-area: item-ac;
}
.l-header__dropdown-item:hover {
  opacity: 1;
}
.l-header__dropdown-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.l-header__dropdown-white {
  color: white !important;
  margin: 0 10%;
  font-size: min(22px, 1.5277777778vw);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  display: inline-block;
}
.l-header__button {
  width: min(320px, 22.2222222222vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.l-header__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-header__button-img {
  width: 100%;
}
.l-header__dropdown-inner--speaking {
  display: flex;
  flex-direction: row;
}
.l-header__dropdown-lower {
  display: flex;
  flex-direction: row;
}

/*
  下層ページ用のヘッダー
 */
.l-l-header-lower-page {
  height: min(90px, 6.25vw);
  line-height: min(90px, 6.25vw);
  width: 100%;
  background-color: white;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-l-header-lower-page {
    height: 70px;
    line-height: 70px;
  }
}
.l-l-header-lower-page__wrap {
  padding-right: min(15px, 1.0416666667vw);
  padding-left: min(15px, 1.0416666667vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: min(90px, 6.25vw);
  line-height: min(90px, 6.25vw);
}
@media screen and (max-width: 767px) {
  .l-l-header-lower-page__wrap {
    height: 70px;
    line-height: 70px;
  }
}
.l-l-header-lower-page__left {
  width: min(300px, 20.8333333333vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.l-l-header-lower-page__left:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-l-header-lower-page__left {
    width: 220px;
  }
}
.l-l-header-lower-page__logo {
  width: 100%;
}

/*
  下層ページ用のヘッダー
 */
.l-l-header-lower-page {
  height: min(90px, 6.25vw);
  line-height: min(90px, 6.25vw);
  width: 100%;
  background-color: white;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-l-header-lower-page {
    height: 70px;
    line-height: 70px;
  }
}
.l-l-header-lower-page__wrap {
  padding-right: min(15px, 1.0416666667vw);
  padding-left: min(15px, 1.0416666667vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: min(90px, 6.25vw);
  line-height: min(90px, 6.25vw);
}
@media screen and (max-width: 767px) {
  .l-l-header-lower-page__wrap {
    height: 70px;
    line-height: 70px;
  }
}
.l-l-header-lower-page__left {
  width: min(300px, 20.8333333333vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.l-l-header-lower-page__left:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-l-header-lower-page__left {
    width: 220px;
  }
}
.l-l-header-lower-page__logo {
  width: 100%;
}

.p-cta {
  position: relative;
  overflow: hidden;
}
.p-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
  opacity: 0.6;
  z-index: 1;
}
.p-cta__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-cta__wrap {
  background-color: color-mix(in srgb, white 90%, transparent);
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-cta__wrap {
    padding: 15px;
  }
}
.p-cta__title {
  font-size: var(--font-size-xl);
  letter-spacing: 0.08em;
  color: white;
  background-color: var(--color-accent);
  border-radius: 30px;
  border: 4px solid white;
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-weight: 600;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    margin: 0 auto 12px;
    padding: 0 20px;
    position: static;
    transform: none;
  }
}
@media screen and (max-width: 599px) {
  .p-cta__title {
    font-size: var(--font-size-lg);
    padding: 0 10px;
  }
}
.p-cta__img {
  width: 85%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .p-cta__img {
    width: 65%;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .p-cta__img {
    width: 90%;
  }
}
.p-cta__text {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-bottom: 12px;
  }
}
.p-cta__rate {
  position: relative;
  display: inline-block;
}
.p-cta__asterisk {
  position: absolute;
  top: 0;
  right: -0.4em;
  font-size: 0.5em;
}
.p-cta__sub {
  margin-bottom: min(18px, 1.935483871vw);
  font-size: var(--font-size-2xs);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-cta__sub {
    margin-bottom: 12px;
  }
}
.p-cta__button {
  display: inline-block;
  width: 60%;
  margin: 0 auto;
  transition: all 0.3s;
}
.p-cta__button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-cta__button {
    width: var(--size-sp-cta-button);
  }
}
.p-cta__button-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style-pre.css.map */