@charset "UTF-8";

html {}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8em;
  letter-spacing: 0.08em;
  min-width: 320px;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

html.ja .en-content,
html.ja .ko-content,
html.ja .th-content,
html.ja .tw-content,
html.en .ja-content,
html.en .ko-content,
html.en .th-content,
html.en .tw-content,
html.ko .ja-content,
html.ko .en-content,
html.ko .th-content,
html.ko .tw-content,
html.th .ja-content,
html.th .en-content,
html.th .ko-content,
html.th .tw-content,
html.zh-TW .ja-content,
html.zh-TW .en-content,
html.zh-TW .ko-content,
html.zh-TW .th-content {
  display: none !important;
}

/* html.en .ja-img,
html.ko .ja-img,
html.th .ja-img,
html.zh-TW .ja-img {
  display: none !important;
} */

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  color: #333;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  padding: 20px;
  display: flex;
  gap: 15px;
}

/* Languageボタン */
.language-btn {
  background: rgba(255, 255, 255, 0.8);
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.language-btn::after {
  content: '▼';
  margin-left: 8px;
  font-size: 10px;
}

/* ハンバーガーボタン */
.hamburger-btn {
  background: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, .16);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1002;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: black;
  transition: all 0.3s ease;
}

/* ハンバーガーメニューがアクティブな時の×マーク */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* メニューオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.menu-overlay.active {
  transform: translateX(0);
}

/* メニューコンテンツ */
.menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active .menu-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.menu-item {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  transform: translateY(30px);
  opacity: 0;
}

.menu-item+.menu-item {
  border-top: 1px solid #ccc;
}

.menu-overlay.active .menu-item {
  transform: translateY(0);
  opacity: 1;
}

.menu-overlay.active .menu-item:nth-child(1) {
  transition-delay: 0.4s;
}

.menu-overlay.active .menu-item:nth-child(2) {
  transition-delay: 0.45s;
}

.menu-overlay.active .menu-item:nth-child(3) {
  transition-delay: 0.5s;
}

.menu-overlay.active .menu-item:nth-child(4) {
  transition-delay: 0.55s;
}

.menu-overlay.active .menu-item:nth-child(5) {
  transition-delay: 0.6s;
}

.menu-overlay.active .menu-item:nth-child(6) {
  transition-delay: 0.65s;
}

.menu-item:hover {
  color: #ccc;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 20px;
  padding-right: 20px;
  transition-delay: unset !important;
}

.menu-item:last-child {
  border-bottom: none;
}

/* 背景のぼかし */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* メインコンテンツ */
.main-content {}

.main-content.menu-open {
  filter: blur(1px);
}

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #333;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
}

nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  padding: 3rem calc((100% - 1000px) / 2);
}

nav ul li {
  height: 100%;
  text-align: center;
  border-left: 1px solid #ddd;
}

nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  padding: 0 2rem;
}

nav ul li a span {
  line-height: 1.2em;
}

nav ul li a g {
  display: block;
  width: 1rem;
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  margin-inline: auto;
}

nav ul li.--green a span {
  color: #00AD2F;
}

nav ul li.--green a g {
  border-right: 3px solid #00AD2F;
  border-bottom: 3px solid #00AD2F;
}

nav ul li.--red a span {
  color: #DA2828;
}

nav ul li.--red a g {
  border-right: 3px solid #DA2828;
  border-bottom: 3px solid #DA2828;
}

h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2em;
}

h2 sub {
  display: block;
  font-size: 50%;
  font-weight: normal;
  margin-bottom: 1.5rem;
  opacity: .6;
}

.btn-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.btn-main a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  height: 60px;
  padding: 2rem;
  border-radius: 999px;
}

.btn-main a span {
  font-size: 2.2rem;
  color: #fff;
}

.btn-main a span small {
  font-size: 80%;
}

.btn-main .--red {
  background: #DA2828;
}

.btn-main .--green {
  background: #00AD2F;
}

.campaign {
  border: 1.4rem solid #fff;
}

.campaign-info {
  padding: 3px;
  font-weight: 600;
  text-align: center;
  background: #d0a353;
}

.campaign-info span {
  color: #fff;
  text-shadow: 1px 1px 4px #966500;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 8rem 0;
  /* background: linear-gradient(160deg, #00AD2F 50%, #DA2828 50%); */
  background-image: url("../images/about-back.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding: 40px;
  border-radius: 3rem;
  background: #fff;
}

.about-discount {
  border: 3px solid #BE943B;
  border-radius: 1.5rem;
  background: #FFFBF1;
}

.about-discount_01 {
  min-height: 130px;
  display: flex;
  justify-content: center;
  padding: 1.6rem 3rem;
}

.about-discount_01 h3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.3rem;
}

.about-discount_01 h3 sub {
  max-width: 50%;
}

.about-discount_01 h3 span {
  gap: 0.6rem;
  font-size: 6.4rem;
  font-weight: 600;
}

.about-discount_01 h3 span strong {
  font-size: 160%;
  letter-spacing: -0.05em;
  color: #A47B24;
}

.about-discount_01 h3 span em {
  font-size: 120%;
  margin-inline: -0.8rem;
  color: #A47B24;
}

.about-discount_01 h3 b {
  position: absolute;
  top: -10%;
  right: 1%;
  font-size: 1.8rem;
  width: 31%;
  padding-left: 2%;
  text-align: center;
  color: #a47b24;
  background-image: url(../images/about-fukidashi.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.about-discout_02 {
  padding: 5px 2px 2px;
  border-radius: 0 0 1rem 1rem;
  background: #BE943B;
}

.about-discout_02-inner {
  padding: 1.6rem 3rem;
  border: 1px dashed #fff;
  border-radius: 1rem;
}

.about-discout_02-inner h4 {
  color: #fff;
  text-align: center;
}

.about-discout_02-inner h4 sub {
  display: block;
}

.about-discout_02-inner h4 span {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.2em;
}

.about-discout_02-inner h4 span em,
.about-discout_02-inner h4 span strong {
  font-size: 125%;
}

.about-discout_02-inner h4 span strong {
  background: linear-gradient(to top, transparent 10%, transparent 10%, #DA2828 10%, #DA2828 30%, transparent 30%);
}

/* .about-discout_02-inner h4 span strong::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  background: #DA2828;
} */

.about-discout_02-inner h4 span small {
  font-size: 80%;
}

.about-discout_02-inner .notes {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.about-dates {
  padding: 2rem 3rem;
  border: 2px solid #00AD2F;
  border-radius: 1rem;
  background: #E3F9E9;
}

.about-dates h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.about-dates h3 sub {
  font-size: 140%;
}

.about-dates h3 span {
  color: #00AD2F;
}

.about-dates h3 span strong {
  font-size: 140%;
}

.about-dates .notes {
  text-align: center;
}

.about-detail {
  padding: 4rem;
  border: 1px solid #DADADA;
  border-radius: 1rem;
  background: #F8F8F8;
}

.about .arch {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  transform: scale(1, -1);
}

.course {
  padding: 8rem 0;
  background: #FFF3D9;
}

.course-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.course-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.course-toyota {
  width: 25%;
}

.course-toyota_logo {
  width: 70%;
  margin-bottom: 2rem;
}

.course-toyota_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-toyota_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  background: #00AD2F;
  border-radius: 1rem;
}

.course-toyota_list li a span {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.course-toyota_list li a g {
  display: block;
  width: 2rem;
}

.course-map {
  position: relative;
  width: 47%;
  background-image: url("../images/course-map_base.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.course-map_line {
  position: relative;
  transition: .5s;
  z-index: 1;
}

.course-map_dands {
  position: absolute;
  inset: 0;
  transition: .3s;
}

.course-map_icon {
  position: absolute;
  width: 6%;
  transition: .2s;
  z-index: 1;
}

.course-map_icon.active {
  transform: scale(1.6) translateY(-15%);
}

.course-map_icon.--01 {
  top: 20%;
  left: 14%;
}

.course-map_icon.--02 {
  top: 25%;
  left: 8%;
}

.course-map_icon.--03 {
  top: 24%;
  left: 79%;
}

.course-map_icon.--04 {
  top: 33%;
  left: 55%;
}

.course-map_icon.--05 {
  top: 66%;
  left: 66%;
}

.course-map_icon.--06 {
  top: 75%;
  left: 30%;
}

.course-map_icon.--07 {
  top: 86%;
  left: 31%;
}

.course-dands {
  width: 28%;
}

.course-dands_main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-dands_item {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.course-dands_item:last-child {
  border-bottom: none;
}

.course-dands_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  cursor: pointer;
  transition: 0.3s ease;
  user-select: none;
  font-weight: 600;
}

.course-dands_header:hover {
  opacity: .8;
}

.course-dands_header span {
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 1.2em;
}

.course-dands_header small {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1em;
  margin-left: 1rem;
}

.course-dands_header g {
  color: #fff;
}

.course-dands_icon {
  font-size: 2rem;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.course-dands_content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.course-dands_inner {
  padding: 1rem;
}

.course-dands_item.active .course-dands_icon {
  transform: rotate(180deg);
}

.course-dands_item.active .course-dands_header {
  background-color: #f8f9fa;
}

.course-dands h3 {
  margin: 2rem 0 1rem;
}

.course-dands_sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advantage {
  position: relative;
}

.advantage .arch {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
}

.advantage-sec.--green {
  padding: 8rem 0 4rem;
  background: #00AD2F;
}

.advantage-sec.--red {
  padding: 4rem 0 8rem;
  background: #DA2828;
}

.advantage-inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.advantage-inner h2 {
  color: #fff;
}

.advantage-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.advantage-img {
  width: 60%;
}

.advantage-main {
  width: 100%;
}

.advantage-main h3 {
  margin-bottom: 2rem;
  padding: 2rem;
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  border-left: 3px solid #fff;
  background: rgba(0, 0, 0, 0.1);
}

.advantage-main ol li {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px 0 0 999px;
}

.advantage-main ol li+li {
  margin-top: 1.2rem;
}

.advantage-main ol li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  aspect-ratio: 1 / 1;
  font-weight: 500;
  background: #fff;
  border-radius: 999px;
}

.advantage-sec.--green .advantage-main ol li span {
  color: #00AD2F;
}

.advantage-sec.--red .advantage-main ol li span {
  color: #DA2828;
}

.advantage-main ol li h4 {
  width: calc(100% - 4rem);
  font-size: 2.4rem;
  color: #fff;
  padding: 2rem;
}

.modelcourse {
  padding: 8rem 0;
  background: #FFF3D9;
}

.modelcourse-inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.modelcourse-cs {
  padding: 3rem;
  text-align: center;
  background: #fff;
  border: 1px solid #DADADA;
}

.cta {
  padding: 8rem 0;
}

.cta-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.cta-box {
  width: 100%;
  padding: 3rem;
  border-radius: 2rem;
}

.cta-box.--red {
  background: #DA2828;
}

.cta-box.--green {
  background: #00AD2F;
}

.cta-box h3 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-box .btn-main a {
  background: #fff;
}

.cta-box .btn-main a.--red span {
  color: #DA2828;
}

.cta-box .btn-main a.--green span {
  color: #00AD2F;
}

footer {
  background: #FFF3D9;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding: 5rem 0;
}

.foot-logo {
  width: 200px;
}

.foot-nav {
  display: flex;
  gap: 3rem;
}

.foot-nav li {
  text-align: center;
}

.foot-nav li a {
  color: #9F7418;
  text-decoration: underline;
}

.foot-nav li a:hover {
  text-decoration: unset;
}

.foot-copy {
  display: flex;
}

.foot-copy_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

.foot-copy_inner.--red {
  background: #DA2828;
}

.foot-copy_inner.--green {
  background: #00AD2F;
}

.foot-copy_inner span {
  font-size: 1.2rem;
  color: #fff;
}







.stt-lang-select {
  top: 20px !important;
  right: 85px !important;
  bottom: unset !important;
  border-radius: 20px !important;
}

.stt-lang-select.on .stt-select {
  display: flex !important;
  flex-direction: column !important;
}

.stt-lang-select .stt-item[data-value="en"] {
  order: 1;
}

.stt-lang-select .stt-item[data-value="th"] {
  order: 2;
}

.stt-lang-select .stt-item[data-value="zh-TW"] {
  order: 3;
}

.stt-lang-select .stt-item[data-value="ko"] {
  order: 4;
}

.stt-lang-select .stt-item[data-value="ja"] {
  order: 5;
}