@charset "UTF-8";
/* 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;
}

/* 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;
}
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
:root {
  --size-sp-cta-button: 340px;
}

@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, #fb8b01, #ea3b24);
  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;
  position: fixed;
  width: 100%;
}

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: #383838;
}

@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;
}
.container {
  width: 100%;
  max-width: 118rem;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  margin-right: auto;
  margin-left: auto;
}

.container-cam {
  width: 100%;
  max-width: 118rem;
  padding-right: 4rem;
  padding-left: 4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-cam {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-support {
  max-width: 900px;
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}

.container-gift {
  width: 100%;
  max-width: 110.4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}

.container-last {
  width: 100%;
  max-width: 143rem;
  padding-right: 6rem;
  padding-left: 6rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-last {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-bonne {
  width: 100%;
  max-width: 129rem;
  padding-right: 4rem;
  padding-left: 4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-bonne {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-reservation {
  width: 100%;
  max-width: 118rem;
  padding-right: 4rem;
  padding-left: 4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-reservation {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-reco {
  width: 100%;
  max-width: 123rem;
  padding-right: 4rem;
  padding-left: 4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-reco {
    padding-right: 48px;
    padding-left: 48px;
  }
}

.container-cta-1 {
  width: 100%;
  max-width: 93rem;
  padding-right: 4rem;
  padding-left: 4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-cta-1 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-cta-2 {
  width: 100%;
  max-width: 82rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-cta-2 {
    padding-right: 1.8rem;
    padding-left: 1.8rem;
  }
}

.container-two {
  width: 100%;
  max-width: 118rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 760px) {
  .container-two {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-policy {
  width: 100%;
  max-width: 107rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 760px) {
  .container-policy {
    padding-right: 3.3rem;
    padding-left: 3.3rem;
  }
}

.container-study {
  width: 100%;
  max-width: 118rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5rem;
  padding-left: 5rem;
}
@media screen and (max-width: 760px) {
  .container-study {
    padding-right: 2.3rem;
    padding-left: 2.3rem;
  }
}

.container-howto {
  width: 100%;
  max-width: 133rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5rem;
  padding-left: 5rem;
}
@media screen and (max-width: 760px) {
  .container-howto {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-flow {
  width: 100%;
  max-width: 143rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 760px) {
  .container-flow {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.container-fv {
  width: 100%;
  max-width: 123rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 760px) {
  .container-fv {
    padding-left: 2rem;
    padding-right: 1.5rem;
  }
}

.container-about {
  width: 100%;
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 760px) {
  .container-about {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container-occupation {
  width: 100%;
  max-width: 133rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 760px) {
  .container-occupation {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container-plan {
  width: 100%;
  max-width: 127rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-plan {
    padding: 0 4.7rem;
  }
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none !important;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

@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: 760px) {
  .animation-button {
    animation: pulse2 2s infinite ease-in-out;
  }
}

.sp-sticky-button {
  display: none;
  opacity: 0;
  pointer-events: none;
  background-color: transparent;
  width: 100%;
}
.sp-sticky-button img {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .sp-sticky-button {
    position: fixed;
    position: -webkit-fixed;
    opacity: 1;
    pointer-events: auto;
    opacity: 0;
    pointer-events: none;
    bottom: 3%;
    justify-content: center;
  }
}

/* 
  TOPページのページバックバナー
*/
.p-stopping {
  -webkit-tap-highlight-color: transparent;
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  word-break: break-all;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.p-stopping.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-stopping__container {
  position: relative;
  max-width: 40%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: visible;
  padding: 10px;
}

.p-stopping__link {
  display: block;
  cursor: pointer;
}

.p-stopping__img {
  display: block;
  max-width: 100%;
  max-height: 50vh;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.p-stopping__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #888;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.p-stopping__close::before,
.p-stopping__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: white;
}

.p-stopping__close::before {
  transform: rotate(45deg);
}

.p-stopping__close::after {
  transform: rotate(-45deg);
}

@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;
  }
}
.pc-sticky-button-img {
  position: fixed;
  display: inline-block;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  max-width: 200px;
  opacity: 0;
  pointer-events: none; /* 非表示時はクリックできないように */
  transition: opacity 0.3s ease;
}

/* PCのみ表示にしたい場合（スマホでは非表示） */
@media screen and (max-width: 767px) {
  .pc-sticky-button-img {
    display: none;
  }
}
.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__pointer {
  pointer-events: none;
}
.l-hamburger__nav {
  position: fixed;
  background-color: #fff;
  color: #383838;
  width: 100%;
  height: 100dvh;
  z-index: 1001;
  opacity: 0;
  top: -150rem;
  transition: all 0.7s;
  background: linear-gradient(to bottom, #ea3b24, #fb8b01);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.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: 760px) {
  .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: #fff !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: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.l-hamburger__a {
  color: #fff;
  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: 760px) {
  .l-hamburger__contact {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .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: 760px) {
  .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: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  position: fixed;
  right: 2%;
  top: 3.3rem;
  background-color: transparent;
  z-index: 1001;
  transition: all 0.5s;
  transform: translateY(-2rem);
}
@media screen and (max-width: 1200px) {
  .l-hamburger__button {
    display: inline-block;
    top: 1.9rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-hamburger__button {
    top: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .l-hamburger__button {
    top: 1.2rem;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__button {
    top: 2rem;
  }
}
.l-hamburger__japanese {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.l-hamburger__english {
  color: #fff;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
}
.l-hamburger__hum {
  display: none;
  height: 3px;
  width: 4rem;
  background-color: #383838;
  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: #383838;
  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: 1200px) {
  .l-hamburger__hum {
    display: inline-block;
  }
}
.l-hamburger.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
}
@media screen and (max-width: 760px) {
  .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);
}

body.is-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.l-header {
  height: min(90px, 6.25vw);
  line-height: min(90px, 6.25vw);
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  top: 0;
}
@media screen and (max-width: 760px) {
  .l-header {
    height: 70px;
    line-height: 70px;
  }
}
.l-header__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: 760px) {
  .l-header__wrap {
    height: 70px;
    line-height: 70px;
  }
}
.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: 760px) {
  .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: 1200px) {
  .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 {
  color: #383838;
  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: #f65514;
  font-weight: 700;
}
.l-header__dropdown {
  position: fixed;
  top: min(90px, 6.25vw);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100%;
  padding: 20px 40px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 760px) {
  .l-header__dropdown {
    display: none;
  }
}
.l-header__dropdown-inner {
  max-width: 1322px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-header__dropdown-inner-title--voice-actor {
  background: linear-gradient(to right, #ff3d00, #fca600);
  -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-inner-title--speaking {
  background: linear-gradient(to right, #0057ff, #00defc);
  -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-inner--voice-actor {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.l-header__dropdown-item {
  display: block;
  width: clamp(360px, 50vw - 240px, 430px);
  transition: all 0.3s;
  white-space: nowrap;
  opacity: 0.7;
  background-size: cover;
  border-radius: 8px;
}
.l-header__dropdown-item--normal {
  background-image: url("../img/header/通常レッスンコース.png");
}
.l-header__dropdown-item--pro {
  background-image: url("../img/header/声優養成コース.png");
}
.l-header__dropdown-item--speaking {
  background-image: url("../img/header/話し方改善コース.png");
}
.l-header__dropdown-item--videolearning {
  background-image: url("../img/header/動画学習コース.png");
}
.l-header__dropdown-item--vocal {
  background-image: url("../img/header/ボーカルコース.png");
  display: none;
}
.l-header__dropdown-item--company {
  background-image: url("../img/header/企業向け研修.png");
  display: none;
}
.l-header__dropdown-item:hover {
  opacity: 1;
}
.l-header__dropdown-white {
  color: #fff !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-l-header-lower-page {
  height: min(90px, 6.25vw);
  line-height: min(90px, 6.25vw);
  width: 100%;
  background-color: #fff;
  z-index: 3;
}
@media screen and (max-width: 760px) {
  .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: 760px) {
  .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: 760px) {
  .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: #fff;
  z-index: 3;
}
@media screen and (max-width: 760px) {
  .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: 760px) {
  .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: 760px) {
  .l-l-header-lower-page__left {
    width: 220px;
  }
}
.l-l-header-lower-page__logo {
  width: 100%;
}

.p-cta {
  background: url(../img/cta/bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: min(86px, 9.247311828vw);
  padding-bottom: min(54px, 5.8064516129vw);
}
@media screen and (max-width: 760px) {
  .p-cta {
    background: url(../img/cta/bg-sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 29px;
    padding-bottom: 29px;
  }
}
.p-cta__wrap {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  text-align: center;
  padding-top: min(31px, 3.3333333333vw);
  padding-bottom: min(31px, 3.3333333333vw);
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-cta__wrap {
    padding: 15px 12px;
  }
}
.p-cta__title {
  font-size: min(32px, 3.4408602151vw);
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #f65514;
  border-radius: min(31px, 3.3333333333vw);
  border: 4px solid #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: min(-31px, -3.3333333333vw);
  left: 50%;
  transform: translateX(-50%);
  width: min(568px, 61.0752688172vw);
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .p-cta__title {
    margin: 0 auto;
    position: static;
    width: 322px;
    font-size: 18px;
    border-radius: 17px;
    border: 2px solid #fff;
    margin-bottom: 13px;
    transform: none;
  }
}
.p-cta__img {
  width: min(692px, 74.4086021505vw);
  margin: 0 auto;
  margin-bottom: min(20px, 2.1505376344vw);
}
@media screen and (max-width: 760px) {
  .p-cta__img {
    width: 291px;
    margin-bottom: 13px;
  }
}
.p-cta__text {
  margin-top: min(18px, 1.935483871vw);
  font-size: min(22px, 2.3655913978vw);
  font-weight: 700;
  margin-bottom: min(8px, 0.8602150538vw);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 760px) {
  .p-cta__text {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: none;
  }
}
.p-cta__sub {
  margin-bottom: min(18px, 1.935483871vw);
  font-size: min(12px, 1.2903225806vw);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #383838;
}
@media screen and (max-width: 760px) {
  .p-cta__sub {
    font-size: 10px;
    margin-bottom: 13px;
  }
}
.p-cta__button {
  width: min(490px, 52.688172043vw);
  margin: 0 auto;
  display: block;
  transition: all 0.3s;
}
.p-cta__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-cta__button {
    width: 340px;
    margin: 0 auto;
  }
}
.p-cta__button-img {
  width: 100%;
}

.p-cta-2 {
  background: url(../img/cta-2/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: min(63px, 7vw);
  padding-bottom: min(63px, 7vw);
}
@media screen and (max-width: 760px) {
  .p-cta-2 {
    background: url(../img/cta-2/bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
.p-cta-2__sub {
  margin: 0 auto;
  font-size: min(34px, 3.7777777778vw);
  letter-spacing: 0.06em;
  width: min(821px, 91.2222222222vw);
  height: min(68px, 7.5555555556vw);
  border-radius: 31px;
  background-color: #fff;
  color: #f65514;
  font-weight: 700;
  margin-bottom: min(15px, 1.6666666667vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-cta-2__sub span {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .p-cta-2__sub {
    margin: 0 auto;
    font-size: 20px;
    width: 274px;
    height: 36px;
    margin-bottom: 20px;
  }
}
.p-cta-2__title {
  text-align: center;
  font-size: min(49px, 5.4444444444vw);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: min(32px, 3.5555555556vw);
  line-height: 1.4;
}
@media screen and (max-width: 760px) {
  .p-cta-2__title {
    font-size: 20px;
    letter-spacing: 0.13em;
    margin-bottom: 20px;
  }
}
.p-cta-2__button {
  width: min(507px, 56.3333333333vw);
  margin: 0 auto;
  display: block;
  transition: all 0.3s;
}
.p-cta-2__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-cta-2__button {
    width: 340px;
    margin: 0 auto;
  }
}
.p-cta-2__button-img {
  width: 100%;
}

.p-fv {
  position: relative;
  overflow: hidden;
  margin-top: min(90px, 6.25vw);
  height: calc(100vh - 80px);
}
@media screen and (max-width: 760px) {
  .p-fv {
    height: 560px;
    margin-top: 70px;
  }
}
@media screen and (min-width: 1920px) {
  .p-fv {
    height: 70vh;
  }
}
.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: 760px) {
  .p-fv__wrap {
    left: 50%;
    transform: translateX(-50%);
    bottom: 3%;
  }
}
.p-fv__sub {
  margin-bottom: min(26px, 2.1138211382vw);
  font-size: min(32px, 2.6016260163vw);
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-fv__sub {
    font-size: 16px;
    letter-spacing: 0.11em;
    margin-bottom: 7px;
  }
}
.p-fv__title {
  margin-bottom: min(26px, 2.1138211382vw);
  background-color: #fff;
  color: #383838;
  margin-bottom: min(20px, 1.6260162602vw);
  font-size: min(52px, 4.2276422764vw);
  display: inline-block;
  padding-right: min(15px, 1.2195121951vw);
  padding-left: min(15px, 1.2195121951vw);
  letter-spacing: 0.1em;
  margin-top: 0;
}
@media screen and (max-width: 760px) {
  .p-fv__title {
    font-size: 26px;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 7px;
  }
}
.p-fv__title-2 {
  background-color: #fff;
  margin: 0;
  font-size: min(52px, 4.2276422764vw);
  padding-right: min(15px, 1.2195121951vw);
  padding-left: min(15px, 1.2195121951vw);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: min(26px, 2.1138211382vw);
}
.p-fv__title-2 span {
  background: linear-gradient(to bottom right, #ea3b24, #fb8b01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
@media screen and (max-width: 760px) {
  .p-fv__title-2 {
    margin-bottom: 7px;
    font-size: 26px;
    padding-right: 5px;
    padding-left: 5px;
  }
}
.p-fv__add {
  margin-bottom: min(26px, 2.1138211382vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(24px, 1.9512195122vw);
       column-gap: min(24px, 1.9512195122vw);
}
@media screen and (max-width: 760px) {
  .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: min(24px, 1.9512195122vw);
  letter-spacing: 0.16em;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-fv__add-text {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
.p-fv__anker {
  display: block;
  width: min(520px, 42.2764227642vw);
}
@media screen and (max-width: 760px) {
  .p-fv__anker {
    width: 340px;
    margin: 0 auto;
  }
}
.p-fv__button-img {
  width: 100%;
}/*# sourceMappingURL=style-pre.css.map */