@charset "utf-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts//noto-sans-jp-v53-japanese-regular.woff2") format("woff2"),
    url("../fonts//noto-sans-jp-v53-japanese-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts//noto-sans-jp-v53-japanese-700.woff2") format("woff2"),
    url("../fonts//noto-sans-jp-v53-japanese-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts//inter-v18-latin-regular.woff2") format("woff2"),
    url("../fonts//inter-v18-latin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts//inter-v18-latin-700.woff2") format("woff2"),
    url("../fonts//inter-v18-latin-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.animation {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.animation:not(.text-marker) {
  opacity: 0;
}

.fade.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: fadein;
  animation-name: fadein;
}
.fadeup.animated {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
}
.fadedown.animated,
.fadeup.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.fadedown.animated {
  -webkit-animation-name: fadedown;
  animation-name: fadedown;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.fadeleft.animated {
  -webkit-animation-name: fadeleft;
  animation-name: fadeleft;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
}
.fadeleft.animated,
.faderight.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.faderight.animated {
  -webkit-animation-name: faderight;
  animation-name: faderight;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}
.blur.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: blur-in;
  animation-name: blur-in;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.text-marker {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffef00),
    to(#ffef00)
  ) !important;
  background-image: linear-gradient(90deg, #ffef00, #ffef00) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 50%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.text-marker.animated {
  background-size: 100% 50%;
}
.text-smooth {
  clip-path: inset(0 100% 0 0);
  color: var(--text-color);
  display: inline-block;
  -webkit-transition: clip-path 0.5s ease-in-out, color 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: clip-path 0.5s ease-in-out, color 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: clip-path 0.5s ease-in-out, color 0.4s ease-in-out,
    transform 0.4s ease-in-out;
  transition: clip-path 0.5s ease-in-out, color 0.4s ease-in-out,
    transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.text-smooth,
.text-smooth.animated {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.text-smooth.animated {
  clip-path: inset(0);
  opacity: 1;
}
.text-smooth.color-changed {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.bouncein.animated {
  -webkit-animation: bounce 3s ease-in-out infinite;
  animation: bounce 3s ease-in-out infinite;
  opacity: 1;
}

.zoomin.animated {
  -webkit-animation: zoomIn 0.6s ease-in-out;
  animation: zoomIn 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

body,
html {
  background: #abe900;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #040000;
  font-family: Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro,
    メイリオ, Meiryo, 游ゴシック, Yu Gothic, ＭＳ Ｐゴシック, MS PGothic,
    sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
  /* font-weight: 500; */
  line-height: 1.6;
  margin: 0;
  overflow: overlay;
  padding: 0;
  scroll-behavior: smooth;
}

.svg-symbol {
  display: none;
}
.en,
.number {
  font-family: Inter, Arial, Liberation Sans, Nimbus Sans, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  margin: 0;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.2rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1rem);
}
p {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 2em;
  text-align: justify;
}
a {
  font-size: clamp(1rem, 2vw, 1rem);
  text-decoration: none;
}
a:link,
a:visited {
  color: inherit;
  text-decoration: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
em {
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

html::-webkit-scrollbar {
  overflow: hidden;
  width: 3px;
}
html::-webkit-scrollbar:horizontal {
  height: 3px;
}
html::-webkit-scrollbar-button {
  display: none;
}
html::-webkit-scrollbar-thumb {
  background: #1ea939;
}
html::-webkit-scrollbar-corner {
  background: #fff;
}
html::-webkit-scrollbar-track {
  background: transparent;
}

.icon-deco {
  width: 100%;
  height: auto;
  max-width: 768px;
  color: #3498db; /* 好きな色に変更OK */
  display: block;
}

.flip-horizontal {
  transform: scaleX(-1);
}

.flip-vertical {
  transform: scaleY(-1);
}

.main-content {
  -webkit-box-shadow: 7px 7px 11px #00000065;
  box-shadow: 7px 7px 11px #00000065;
  margin: 2% auto 0 auto;
  max-width: 480px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 500px) {
  .main-content {
    margin: 0 auto;
  }
}

.header {
}

.header__container {
  width: 100%;
  position: relative;
  height: 64px;
}

@media screen and (max-width: 960px) {
  .header__container {
    width: 100%;
    position: relative;
    height: 65px;
  }
}

@media screen and (max-width: 500px) {
  .header__container {
    width: 100%;
    position: relative;
    height: 49px;
  }
}

.header__image {
  width: 43%;
  position: absolute;
  left: 2%;
  top: 11%;
}
.header__text {
  position: absolute;
  width: 50%;
  color: #fff;
  background: #333;
  font-size: 0.8rem;
  right: 0;
  padding: 1% 2% 2% 4%;
  box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .header__text {
    position: absolute;
    width: 46%;
    color: #fff;
    background: #333;
    font-size: 0.8rem;
    right: 0;
    padding: 2% 2% 3% 4%;
    box-sizing: border-box;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .header__text {
    position: absolute;
    width: 50%;
    color: #fff;
    background: #333;
    font-size: 0.8rem;
    right: 0;
    padding: 1% 2% 1% 4%;
    box-sizing: border-box;
    text-align: left;
  }
}

.hero_ {
}
.hero__container {
}
.hero__background {
  position: relative;
}

.hero__deco {
  position: absolute;
  color: #ffffff;
  z-index: 9999;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.hero__image {
}
.hero__title {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
}

.hero__cta {
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  margin: 0 auto;
  margin-top: -33%;
  z-index: 9999;
  position: relative;
  width: 98%;
}
.hero__title-image--style-02 {
}
.hero__title-image--style-03 {
}

.hero__cta-button {
  display: block;
  margin: 5% auto;
  width: 90%;
  position: relative;
  z-index: 2;
}
.hero__cta-text {
  color: #333;
  font-weight: bold;
}

.hero__cta-text:before,
.hero__cta-text:after {
  content: "▼";
}

.hero__cta-text {
  display: inline-block;
  animation: fadeDownLoop 2s ease-in-out infinite;
}

@keyframes fadeDownLoop {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__cta-text:link,
.hero__cta-text:visited {
  color: #333;
}

.intro {
  margin-top: 5%;
}
.intro__container {
  padding: 0 0 1% 0;
  background: #ff4615;
  margin-top: -2px;
}

.intro__title--box {
  background: #ff4615;
  color: #fff;
  padding: 10% 5%;
  text-align: left;
}

.intro__deco--top {
  color: #ff4615;
}

.intro__deco--bottom {
  transform: scaleX(-1) scaleY(-1);
  color: #ff4615;
  margin-top: -1px;
}

.intro__en-label {
  font-weight: bold;
  font-size: 1.5rem;
}
.intro__title {
  margin: 0;
  font-size: 2rem;
}

.intro__description {
  margin: 0 auto;
  color: #fff;
  width: 90%;
}

.intro__movie-frame {
  width: 90%;
  margin: 5% auto 0 auto;
}

.intro__list {
  text-align: left;
  margin: 0 auto 7% auto;
  width: 93%;
}
.intro__list-item {
  margin: 7% 0;
  background: #fff;
  padding: 4%;
  border-radius: 20px;
}

.intro__list-item--title {
  text-align: center;
  background: #ff4615;
  color: #fff;
  width: 50%;
  border-radius: 50px;
  margin: 5% auto;
}

.intro__child-list {
  width: 90%;
  margin: 5% auto;
}
.intro__child-list-item {
  border-bottom: 1px dotted;
  padding: 2% 0;
}

.intro__child-list-item--text {
  font-size: 1rem;
  width: 80%;
  display: inline-block;
  vertical-align: top;
}
.intro__child-list-item--check {
  fill: #333333;
  width: 1rem;
  margin-top: 2%;
  margin-right: 4%;
  vertical-align: top;
  display: inline-block;
}

.schedule {
}
.schedule__container {
  margin-top: 10%;
}

.schedule__title--box {
  padding: 10% 5%;
  text-align: left;
  margin-top: -1px;
}

.schedule__list-item--img-box {
  margin: 5% 0;
  width: 100%;
}

.schedule__deco--top {
  color: #ffffff;
}

.schedule__en-label {
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
}

.schedule__title {
  margin: 2% 0;
  font-size: 1.2rem;
}

.schedule__list {
  width: 90%;
  margin: 0% auto;
}
.schedule__list-item {
  border-radius: 10px;
  margin: 7% 0;
  position: relative;
  box-sizing: border-box;
}
.schedule__list-item--style-001 {
  display: block;
  font-size: 1.5rem;
  background: #07cece;
  color: #fff;
  border-radius: 50px;
  width: 75%;
  margin: 0 auto;
}
.schedule__list-item--style-002 {
  line-height: 1;
  display: block;
  margin: 5% 0 0 0;
}

.voice {
  margin-top: 10%;
}
.voice__container {
  padding: 13% 0 1% 0;
  background: #333333;
  margin-top: -1px;
}

.voice__deco--top {
  color: #333333;
}

.voice__deco--bottom {
  transform: scaleX(-1) scaleY(-1);
  color: #333333;
  margin-top: -1px;
}

.voice__en-label {
  font-weight: bold;
  font-size: 5.5rem;
  color: #fff;
  line-height: 1;
}

.voice__title {
  margin: 2% 0;
  font-size: 1.2rem;
  color: #fff;
}

.voice__list {
  width: 90%;
  margin: 10% auto;
}
.voice__list-item {
  background: #ffffff;
  border-radius: 10px;
  margin: 5% 0;
  position: relative;
  padding: 7% 4%;
  box-sizing: border-box;
}

.voice__list-item--title {
  text-align: center;
  font-size: 1.4rem;
}

.flow__container {
  padding: 15% 0;
  text-align: center;
  margin: 0 auto;
}

.flow__en-label {
  font-weight: bold;
  font-size: 5.5rem;
  line-height: 1;
}

.flow__title {
  margin: 2% 0;
  font-size: 1.2rem;
}

.flow__list {
  list-style: none;
  padding: 0;
  position: relative;
  margin: 15% auto 18% auto;
  width: 80%;
}

.flow__list-item {
  align-items: flex-start;
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}

.flow__step-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #1ea939;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.flow__list-item::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #1ea939;
  top: 0;
  bottom: -1rem;
  left: 1rem;
}

.flow__list-item--box {
}

.flow__list-item--title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  margin: 0 0 0 5%;
}

.flow__cta-button {
  display: block;
  margin: 0 auto;
  width: 90%;
  margin-top: -15%;
}
.flow__cta-button-image {
}

.job__container {
  padding: 2% 0 10% 0;
  text-align: center;
}

.job__en-label {
  font-weight: bold;
  font-size: 5.5rem;
  line-height: 1;
}

.job__title {
  margin: 2% 0;
  font-size: 1.2rem;
}

.job__list {
  list-style: none;
  position: relative;
  width: 90%;
  margin: 10% auto 10% auto;
  padding: 2%;
  text-align: center;
  border: 1px solid #333333;
}

.job__list-item--title {
  background: #333333;
  color: #fff;
  margin: 0;
  padding: 1%;
}
.job__list-item--text {
  margin: 0;
  padding: 8% 2%;
}

.job__cta-button {
  display: block;
  margin: 0 auto;
  width: 90%;
}
.job__cta-button-image {
}

.faq {
}
.faq__container {
  padding: 5% 0 10% 0;
  background: #cee843;
  margin-top: -1px;
}

.faq__deco--top {
  color: #cee843;
}

.faq__en-label {
  font-weight: bold;
  font-size: 5.5rem;
  line-height: 1;
}

.faq__title {
  margin: 2% 0;
  font-size: 1.2rem;
}

.faq__list {
  padding: 0;
  width: 90%;
  list-style: none;
  margin: 12% auto;
}

.faq__item {
  border-bottom: 1px solid #040000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}

.faq__item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq__question,
.faq__answer {
  margin: 0;
  align-items: center;
  margin-bottom: 5%;
}

.faq__list-item--title-question {
  content: "Q";
  background: #333333;
  border: 1px solid #333333;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 1.9rem;
  text-align: center;
  font-size: 1rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 3%;
}

.faq__list-item--discription-answer {
  content: "A";
  background: #ff4615;
  border: 1px solid #ff4615;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 1.9rem;
  text-align: center;
  font-size: 1rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 3%;
}

.faq__list-item--title-text {
  display: inline-block;
  width: 84%;
  font-size: 1.2rem;
  vertical-align: middle;
}

.faq__list-item--discription-text {
  display: inline-block;
  width: 84%;
  font-size: 1rem;
  vertical-align: top;
  padding-right: 5%;
  box-sizing: border-box;
  line-height: 1.7em;
  text-align: left;
}

.footer {
  margin-top: -15%;
}

.footer__deco--top {
  color: #ff4615;
}

.footer__container {
  background: #ff4615;
  margin-top: -1px;
  padding: 10% 0 20% 0;
}

.footer__title {
  font-size: 1.4rem;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  margin-bottom: 9%;
}

.footer__image {
  width: 14%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2%;
}
.footer__title--style-001 {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 2rem;
}

.footer__list {
  text-align: left;
  font-size: 1rem;
  width: 86%;
  margin: 0 auto;
  color: #fff;
}
.footer__list-item {
  margin: 2% 0;
}
.footer__list-item:last-child {
  margin-bottom: 0;
}

.footer__list-item--title {
  display: inline-block;
  width: 25%;
  margin-right: 7%;
}
.footer__list-item--text {
  display: inline-block;
  width: 66%;
  vertical-align: top;
}

.footer__map {
  height: 400px;
  margin: 7% auto;
  max-width: 500px;
  position: relative;
  width: 90%;
}
.footer__map--iframe {
  border: none;
  height: 100%;
  width: 100%;
}

.footer__cta-button-image {
  background: #1ea939;
  width: 100%;
}
.footer__cta-button {
  display: block;
  bottom: 0;
  max-width: 480px;
  position: fixed;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}
