/* -----
変数
-----*/
:root {
  --color-primary: #17243b;
  --color-secondary: #ccf454;
}

/* setting */
.sp-displaynone {
  display: none !important;
}

@media screen and (max-width: 500px) {
  .pc-displaynone {
    display: none !important;
  }
  .sp-displaynone {
    display: initial !important;
  }
}

@media screen and (min-width: 501px) {
  .sp-displaynone {
    display: none !important;
  }
  .pc-displaynone {
    display: initial !important;
  }
}

/* -----
レイアウト
----- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  justify-content: center;
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.9;
  font-feature-settings: "palt";
  letter-spacing: 0.09em;
}

/* 左右 */
.pc-left,
.pc-right {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  width: calc((100vw - 500px) / 2);
  height: 100vh;
}

.pc-left {
  left: 0;
  flex-direction: column;
}

.pc-left__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.pc-left__inner img {
  width: 100%;
  max-width: 300px;
}

.pc-right {
  right: 0;
}

.pc-left img {
  display: block;
  width: 360px;
  margin: auto;
}

.pc-right img {
  display: block;
  width: 160px;
  margin: auto;
}

.pc-right p {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-family: san-serif;
  text-align: center;
}

@media screen and (max-width: 1400px) and (min-width: 1101px) {
  .pc-left img {
    width: 260px;
  }

  .pc-right img {
    width: 120px;
  }
}

@media screen and (max-width: 1100px) {
  .pc-left,
  .pc-right {
    display: none;
  }
}

/* ページ固定ボタン */
.cta-btn-list {
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  z-index: 100;
  filter: drop-shadow(0px -2px 5px #00000010);
}

.cta-btn-list li {
  width: calc(100% / 2 - 10px);
}

.cta-btn-list img {
  width: 100%;
  display: block;
}

/* -----
色ヘルパー
----- */
.bgColor-00 {
  background-color: #e6faff;
}
.bgColor-01 {
  background-color: #becacc;
}

.bgColor-02 {
  background-color: #e2e9ee;
}

/* -----
ボタンアニメーション
----- */
.btn img {
  transition: all ease 0.3s;
}

.btn img:hover {
  filter: brightness(1.1);
}

/* -----
LPのコンテンツ
----- */
.container {
  position: relative;
  max-width: 500px;
}
@media screen and (min-width: 1101px) {
  .filter {
    filter: drop-shadow(0 0 15px #00000011);
  }
}
/* ヘッダー */
.header {
  width: 100%;
  max-width: 500px;
  height: 60px;
  z-index: 3;
  position: absolute; /* fixedからabsoluteに変更 */
  top: 0; /* 上部に配置 */
  left: 0; /* 左端に配置 */
  transition: background-color 0.3s ease;
}

.header__inner {
  width: inherit;
  height: inherit;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
    width: calc(200 / 750 * 100%);
}

.header__logo a img {
  display: block;
  width: 100%;
}

.header__text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  letter-spacing: 0.09em;
  text-align: center;
}

.header__menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  cursor: pointer;
  z-index: 20; /* z-indexを上げて常に最前面に */
  transition: background-color 0.3s ease;
  padding: 0;
}

.header__menu-line {
  width: 45px;
  height: 1px;
  background-color: #de7e2b;
  transition: transform 0.3s ease;
}
.header__menu-line:nth-child(2) {
  margin-top: 5px;
}

.header__menu-button.is-open .header__menu-line:first-child {
  transform: rotate(15deg);
  background-color: #fff;
}

.header__menu-button.is-open .header__menu-line:nth-child(2) {
  transform: translateY(-6px) rotate(-15deg);
  background-color: #fff;
}

.header__menu-button.is-open .header__menu-text {
  color: #fff;
}

.header__menu-text {
  color: #de7e2b;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: Robot, sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  letter-spacing: 0.09em;
  text-align: center;
  line-height: 1;
  margin-top: 8px;
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #de7e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.header__nav.is-open {
  opacity: 1;
  visibility: visible;
}

.header__navList {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.header__navItem a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.lp-main-image img {
  width: 100%;
}

/*---------------
main
---------------*/
.mainImgWrapper {
  position: relative;
}
.lpMain img {
  max-width: 100%;
}
.aboutLinkIcon {
  width: 120px;
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.aboutLinkIcon a {
  display: block;
  width: 100%;
  height: 100%;
}
.aboutLinkIcon img {
  width: 100%;
}
.point__catch {
  margin-top: -1px;
} 
/*-------
couse
-------*/
.course {
  padding: 70px 0 0;
}
.course__head {
  margin: 0 30px;
  position: relative;
}
.course__head::before {
  content: "";
  display: inline-block;
  width: 100svw;
  max-width: 375px;
  height: 13.6svw;
  max-height: 51px;
  background-image: url(../images/ttl-en-course.webp);
    background-size: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  top: -20px;
}
.course__head h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1f5cb0;
  margin-bottom: 10px;
  position: relative;
}
.course__head p {
  font-size: 14px;
  line-height: 1.3;
  position: relative;
}
.courseList {
  padding: 50px 0;
}
.couseListItem__inner {
  transition: transform ease .4s;
  transform: scale(0.95);
}
.couseListItem__link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  overflow: hidden;
}
.couseListItem__image img {
  width: 100%;
  vertical-align: bottom;
}
.couseListItem__txt {
  background-color: #fff;
  padding: 8px 12px;
  height: 160px;
}
.couseListItem__ttl {
  color: #1f5cb0;
  font-weight: bold;
  font-size: 18px;
  border-bottom: solid 2px #1f5cb0;
  margin-bottom: 10px;
}
.couseListItem__desc {
  font-size: 14px;
  line-height: 1.2;
  padding-bottom: 10px;
      letter-spacing: 0.04em;
}
.couseListItem__desc .em {
  color: #1f5cb0;
}
.couseListItem__to {
  background-color: #1f5cb0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 32px;
  position: relative;
}
.couseListItem__to::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(-45deg);
  position: absolute;
  right: 20px;
  top: 12px;
}
/* hover */
.couseListItem:hover .couseListItem__inner{
  transform: scale(1);
}
/* slide */
.slider-wrap {
  position: relative;
}

.slider {
  overflow: visible;
}

.couseListItem {
  padding: 0 10px;
  overflow: visible;
}

/* 矢印ボタン */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}

.slide-arrow.prev {
  left: 10px; 
}

.slide-arrow.next {
  right: 10px;
}

.slide-arrow img {
  width: 40px; /* 矢印画像サイズ */
}

/*---------------
cta
---------------*/
.ctaBlock {
  margin: 20px auto;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ctaBlock01 {}
.ctaBlock02 {
  margin: 30px auto;
}
.typeA {
  background-color: #1f5cb0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  height: 67px;
  transition: all ease .4s;
}
.typeA__sub {
  font-size: 14px;
}
.typeA__sub::before,.typeA__sub::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
.typeA__sub::before {
  transform: skewX(15deg);
  margin-right: 7px;
}
.typeA__sub::after {
  transform: skewX(-15deg);
  margin-left: 7px;
}
.typeA__main {
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.typeA__main::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 9px;
  right: -20px;
  transition: all ease .4s;
}
/* color ver */
.typeA-red {
  background-color: #d23554;
}
/* hover */
.typeA:hover {
  background-color: #fff;
  color: #1f5cb0;
}
.typeA:hover .typeA__sub::before,.typeA:hover .typeA__sub::after {
  background-color: #1f5cb0;
}
.typeA:hover .typeA__main::after {
  border-right: solid 2px #1f5cb0;
  border-bottom: solid 2px #1f5cb0;
  right: -25px;
}
.typeA-red:hover {
  color: #d23554;
}
.typeA-red:hover .typeA__sub::before,.typeA-red:hover .typeA__sub::after {
  background-color: #d23554;
}
.typeA-red:hover .typeA__main::after {
  border-right: solid 2px #d23554;
  border-bottom: solid 2px #d23554;
}
.typeB {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 45px;
  transition: all ease .4s;
  border: solid 1px #fff;
}
.typeB__main {
  font-size: 16px;
  position: relative;
  font-weight: bold;
}
.typeB__main::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: solid 2px #1f5cb0;
  border-bottom: solid 2px #1f5cb0;
  transform: rotate(-45deg);
  position: absolute;
  top: 11px;
  right: -20px;
  transition: all ease .4s;
}
.typeCall {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.04em;
}
.typeCall__txt {
  color: #fff;
  font-size: 11px;
}
.typeCall__num {
  color: #ffef00;
  font-size: 20px;
}
/* hover */
.typeB:hover {
  background-color: #1f5cb0;
  color: #fff;
}
.typeB:hover .typeB__main::after {
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  right: -25px;
}
.contact {
  background-color: #1f5cb0;
  padding: 40px 0 20px;
}
.contact__head {
  position: relative;
  margin-bottom: 40px;
}
.contact__head::before {
  content: "";
  display: inline-block;
  width: 170px;
  height: 34px;
  background-image: url(../images/ttl-en-contact.webp);
    background-size: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  top: -10px;
}
.contact__head::after {
  display: inline-block;
  content: "";
  width: 64px;
  height: 67px;
  background-image: url(../images/ttl-illust-contact.webp);
  background-size: cover;
  position: absolute;
  right: 30px;
  top: 0;
}
.contact__head h2 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}
.contact .ctaBlock {
  margin: 0 auto;
}
/*---------------
フッター
---------------*/
.footer {
  z-index: 12;
  padding-bottom: 60px;
  background-color: #fff;
}

.footer img {
  display: block;
  width: 100%;
  margin: auto;
}

.footer p {
  margin-top: 10px;
}

.footer__inner {
}

.access {
  color: #3e3a39;
  background-color: #fff;
}

.access__inner {
  padding: 40px 20px;
  margin: auto;
}
.access__head {
  position: relative;
}
.accessTtl {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1f5cb0;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}

.access__head::before {
  content: "";
  display: inline-block;
  width: 100svw;
  max-width: 375px;
  height: 10.9svw;
  max-height: 41px;
  background-image: url(../images/ttl-en-access.webp);
    background-size: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  top: -15px;
}
.access-location {
  margin-top: 20px;
}

.access-location:nth-child(3) {
  margin-top: 30px;
}

.access-location__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.access-location__map {
  width: 100%;
  margin-top: 10px;
}
.access-location__map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.access-location__info {
  margin-top: 10px;
}

.access-location__info h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.access-location__info p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 9px;
}

.footer-contact {
  padding: 10px;
  display: flex;
flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.footer-contact__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-contact__info a {
  font-size: 3rem;
  font-weight: 700;
  color: #ffef46;
  text-align: center;
  font-family: Roboto;
  line-height: 1.2;
}

.footer__footer {
  background-color: #3a93ab;
}

.footer__footer-inner {
  padding: 10px 20px 10px;
}

.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logos a {
  width: calc(100% / 2 - 20px);
  height: auto;
}

.footer__buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer__copyright {
  font-size: 1rem;
  color: #999;
  background-color: #fff;
  width: 100%;
}

.footer__copyright p {
  text-align: center;
  margin-top: 0;
  padding: 20px 0;
}
