@charset "UTF-8";

:root {
  /* カラーの定義 */
  --color-orange: #ff8214;
  --color-blue: #3e74dc;
  --color-green: #86c300;
  --color-pink: #ff8791;
  --color-mint: #49c265;
  --color-purple: #d9a1e5;
  
  /* テキストカラーの定義 */
  --color-text: #333333; 

  /* グラデーションの定義 */
  /* --color-gradation-blue: linear-gradient(to right, #2aaedc 0%, #2a42dc 100%); */
  --color-gradation-blue: linear-gradient(to right, #2aaedc, #2a42dc, #2aaedc) 0 50% / 300% 100%;
  /* --color-gradation-red: linear-gradient(to right, #ff6414 0%, #ff3214 100%); */
  --color-gradation-red: linear-gradient(to right, #ff6414, #ff3214, #ff6414) 0 50% / 300% 100%;
  
  /* フォントファミリー */
  --font-family-m_plus: "M PLUS 1", sans-serif; 
  --font-family-jost: "Jost", sans-serif; 
  --font-family-noto: "Noto Sans JP", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-noto);
  line-height: 1.4em;
  position: relative;
}
body.navFixed {
  overflow: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-family-m_plus);
  line-height: 1.5em;
}
p {
  line-height: 1.5em;
}
a {
  transition: .3s;
}
a[href^="tel:"] {
  pointer-events: none;
  transition: .3s;
}
.spv {
  display: none;
}
header {
  background-color: var(--color-orange);
  height: 100vh;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.low header {
  height: 430px;
}
header .wrap {
  border-radius: 20px;
  overflow: hidden;
}
header h1 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.top header h1 {
  pointer-events: none;
}
.low header h1 {
  width: auto;
  bottom: inherit;
  left: 40px;
  top: 40px;
  position: absolute; 
  z-index: 10;
  /* アニメーション設定 */
  opacity: 0;
  transform: translateY(-20px);
  
  animation: gnavFadeIn 1.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s; 
}
@keyframes gnavFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

header h1 a {
  display: block;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.top header h1 a {
  pointer-events: none;
}
.low header h1 a {
  display: inline-block;
  width: auto;
  margin-inline: auto;
}

/* --- アニメーションの定義 --- */
@keyframes slide-up-simple {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
@keyframes pyokon-bounce-center {
  0% {
      opacity: 0;
      transform: translateX(-50%) translateY(100px);
  }
  60% {
      opacity: 1;
      transform: translateX(-50%) translateY(-20px);
  }
  80% {
      transform: translateX(-50%) translateY(5px);
  }
  100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
  }
}
header h1 a img:nth-child(1) {
  display: block;
  width: 20.6vw;
  max-width: 316px;
  position: absolute;
  bottom: 58%;
  left: 50%;
}
.top header h1 a img:nth-child(1) {
  opacity: 0;
  animation: pyokon-bounce-center 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards;
}
header h1 a img:nth-child(2) {
  display: block;
  width: 47vw;
  max-width: 720px;
  position: relative;
  opacity: 0;
  animation: slide-up-simple 0.6s ease-out 0.2s forwards;
}

/* スクロールエフェクト（ここから） */
.js-effect {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.8s ease, 
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-effect.is-active {
  opacity: 1;
  transform: translateY(0);
}
.js-effect.is-active:nth-child(1) { transition-delay: 0.1s; }
.js-effect.is-active:nth-child(2) { transition-delay: 0.2s; }
.js-effect.is-active:nth-child(3) { transition-delay: 0.3s; }
.js-effect.is-active:nth-child(4) { transition-delay: 0.4s; }
.js-effect.is-active:nth-child(5) { transition-delay: 0.5s; }
.js-effect.is-active:nth-child(6) { transition-delay: 0.6s; }
.js-effect.is-active:nth-child(7) { transition-delay: 0.7s; }
.js-effect.is-active:nth-child(8) { transition-delay: 0.8s; }
/* スクロールエフェクト（ここまで） */


.low header h1 a img {
  width: 252px;
  position: static;
  transform: translateX(0);
}
.low header h2 {
  width: auto;
  position: absolute;
  bottom: 110px;
  left: calc(100% - 1080px);
  z-index: 5;
  color: var(--color-orange);
  font-size: 5rem;
  font-family: var(--font-family-m_plus);
  font-weight: 500;
  opacity: 0;
  animation: slide-up-simple 0.8s ease-out 0.8s forwards;
  margin-top: 10px; 
}
@keyframes slide-up-simple {
  0% {
    opacity: 0;
    transform: translateY(30px); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header .fv_img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: calc(100vh - 40px);
  position: relative;
  z-index: 1;
}
.low header .fv_img {
  height: 410px;
  background-color: #fff;
  background-image: url(../images/img_fv_low.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header .fv_img li {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header .fv_img li:nth-child(1) {
  background-image: url(../images/img_fv_1.webp);
}
header .fv_img li:nth-child(2) {
  background-image: url(../images/img_fv_2.webp);
}
header .fv_img li:nth-child(3) {
  background-image: url(../images/img_fv_3.webp);
}
header .fv_img li {
  background-image: url(../images/img_fv_3.webp);
  background-size: cover;
  background-position: center;
  /* アニメーション設定 */
  filter: blur(30px); 
  transform: scale(1.1); 
  /* opacity: .7; */
  animation: fvImageReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.5s; 
}
@keyframes fvImageReveal {
    0% {
      filter: blur(30px);
      transform: scale(1.1);
      /* opacity: .7; */
    }
    100% {
      filter: blur(0); 
      transform: scale(1);
      /* opacity: 1; */
    }
}
header .c_copy {
  max-width: 108px;
  position: absolute;
  top: calc(10% + 30px);
  left: 22%;
  z-index: 5;
  /* アニメーション設定 */
  opacity: 0;
  transform: translateY(30px); 
  animation: copyFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.8s;
}
@keyframes copyFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
header .btn_line {
  position: absolute;
  bottom: 50px;
  left: 4%;
  z-index: 5;
  /* アニメーション設定 */
  opacity: 0;
  transform: translateX(-100px); 
  animation: btnLineInLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes btnLineInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.low header .btn_line {
  top: inherit;
  bottom: 20px;
  left: 40px;
}
.btn_line a {
  max-width: 240px;
  padding: 10px 15px;
  border: 2px solid #fff;
  background-color: #06c755;
  border-radius: 10px;
}
.btn_line a:hover {
  background-color: var(--color-orange);
}
.btn_line a img {
  width: 100%;
}
header .c_copy img {
  width: 100%;
}
header nav.gnav {
  position: absolute;
  top: 42px;
  right: 42px;
  z-index: 5;
  margin-left: 42px;
  opacity: 0;
  transform: translateY(-20px); 
  animation: gnavFadeIn 1.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s; 
}
@keyframes gnavFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header .g_navi {
  background-color: #fff;
  font-family: var(--font-family-m_plus);
  border-radius: 50px;
  padding: 5px 5px 5px 30px;
}
header .g_navi li {
  display: grid;
  place-content: center;
}
header .g_navi li + * {
  margin-left: 5px;
}
header .g_navi li a,
header .g_navi li a img {
  transition: .3s;
}
header .g_navi li > a:hover {
  color: #fff;
  background-color: #ff6414;
}
header .g_navi li:first-child a:hover img {
  filter: brightness(0) invert(1);
}
header .g_navi li > a {
  padding: 8px 12px;
  color: var(--color-text);
  font-size: 1.5rem;
  border-radius: 50px;
}
header .g_navi li div {
  display: flex;
}
header .g_navi li div a {
  display: block;
  color: #fff;
  transition: .3s;
}
header .g_navi li > a img {
  width: 21px;
}
header .g_navi li div a span {
  display: block;
  transform: translateY(-.1em);
}
header .g_navi li div a:nth-child(1) {
  border-radius: 50px 0 0 50px;
  background: var(--color-gradation-blue);
  padding: 10px 20px 10px 30px;
}
header .g_navi li div a:nth-child(2) {
  border-radius: 0 50px 50px 0;
  background: var(--color-gradation-red);
  padding: 10px 30px 10px 20px;
}
header .g_navi li div a:hover {
  background-position: 100% 50%;
}

.sns_list {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-orange);
  padding: 130px 20px 20px;
  border-radius: 20px 0 0 0;
  z-index: 1;
  /* アニメーション設定 */
  opacity: 0;
  transform: translateX(100%);
  animation: snsListIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.8s;
}
@keyframes snsListIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes snsItemFade {
    to { opacity: 1; }
}

.sns_list .sns {
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.sns_list .sns p {
  width: 110px;
  font-family: var(--font-family-jost);
  position: absolute;
  top: -60px;
  right: -45px;
  font-size: 1.5rem;
  color: #fff;
  transform: rotate(90deg);
}
.sns_list .sns li + * {
  border-top: 1px solid #fff;
  padding: 7px 0;
}
.sns_list .sns a {
  transition: .3s;
}
.sns_list .sns a:hover {
  opacity: .7;
}
.sp_btn {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
}
.sp_btn button {
  width: 60px;
  height: 60px;
  border: none;
  background-color: var(--color-orange);
  border-radius: 8px;
  cursor: pointer;
}
.sp_btn button span {
  display: block;
  border-top: 1px solid #fff;
  width: 80%;
  margin: 12px auto;
  transition: .3s;
}
.sp_btn.active button span:nth-child(1) {
  width: 110%;
  transform: rotate(30deg) translate(4px, 12px);
}
.sp_btn.active button span:nth-child(2) {
  opacity: 0;
}
.sp_btn.active button span:nth-child(3) {
  width: 110%;
  transform: rotate(-30deg) translate(4px, -12px);
}
.bg_orange {
  background-color: var(--color-orange);
}
.bg_blue {
  background-color: var(--color-blue);
}
.bg_green {
  background-color: var(--color-green);
}
main .wrap {
  max-width: 1280px;
  margin-inline: auto;
}
.btn_box {
  width: fit-content;
  margin-inline: auto;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.btn_box > * + * {
  margin-left: 20px;
}
.btn a {
  width: fit-content;
  min-width: 410px;
  font-family: var(--font-family-m_plus);
  padding: 25px 60px;
  border-radius: 50px;
  text-align: center;
  position: relative;
  font-size: 2.6rem;
  color: #fff;
  background-color: #fff;
}
.btn a:hover {
  color: #fff !important;
  background-color: var(--color-orange) !important;
}
.btn a span {
  display: block;
  transform: translateY(-.1em);
}

.btn.small a {
  width: fit-content;
  min-width: 165px;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  position: relative;
  font-size: 2.6rem;
  color: #fff;
}
.btn.small.blue_f a {
  background-color: var(--color-blue);
  font-size: 2rem;
  font-family: var(--font-family-jost);
}
.btn.small.blue_f a span {
  transform: none;
}

.btn.blue a {
  background: var(--color-gradation-blue);
}
.btn.red a {
  background: var(--color-gradation-red);
}
.btn a:hover {
	background-position: 100% 50%;
}
.btn a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 32px;
  top: calc(50% - 7px);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: .3s;
}
.btn a:hover::after {
  border-color: #fff !important;
}
.btn.small a::after {
  width: 8px;
  height: 8px;
  right: 20px;
  top: calc(50% - 4px);
}
.btn.txt_orange a {
  color: var(--color-orange);
  background-color: #fff;
  border: 1px solid var(--color-orange);
}
.btn.txt_orange a:hover {
  border: 1px solid #fff;
}
.btn.txt_orange a::after {
  color: var(--color-orange);
  border-color: var(--color-orange);
}
.btn.txt_blue a {
  color: var(--color-blue);
  background-color: #fff;
}
.btn.txt_blue a::after {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.btn.txt_green a {
  color: var(--color-green);
  background-color: #fff;
}
.btn.txt_green a::after {
  color: var(--color-green);
  border-color: var(--color-green);
}
.btn.lingling a > img {
  display: block;
  max-width: 300px;
  margin-inline: auto;
}
.btn.lingling a > img + * {
  margin-top: 30px;
}

section > .wrap {
  padding: 60px 0;
}
section .inner + *  {
  margin-top: 40px;
}
.low #program .inner + .inner  {
  margin-top: 80px;
}
.low #academy .inner + .inner  {
  margin-top: 150px;
}

#intro  {
  color: #fff;
  position: relative;
  overflow: hidden;
}
#support  {
  overflow: hidden;
}
#intro .inner + *  {
  margin-top: 80px;
}
#intro .wrap,
#support .wrap  {
  padding-bottom: 100px;
}
#intro .inner:nth-child(1) p {
  font-size: 2.4rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 30px;
}
#intro .inner > h2,
#support .inner > h2 {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}
.company #intro .inner > h2 {
  margin-bottom: 40px;
}
#intro .inner > h2 + p,
#support .inner > h2 + p {
  font-size: 2.2rem;
}
#support h2, #support h3, #support p {
  color: var(--color-orange);
}
.base_layout .flexbox:nth-child(even) {
  flex-direction: row-reverse;
}
.base_layout > .flexbox {
  margin-top: 60px;
  position: relative;
}
.base_layout > .flexbox > * {
  position: relative;
  z-index: 10;
}
.base_layout > .flexbox:nth-child(odd) {
  margin-left: calc(((100vw - 1280px) / 2)* -1);
}
.base_layout > .flexbox:nth-child(even) {
  margin-right: calc(((100vw - 1280px) / 2)* -1);
}
.base_layout > .flexbox > img  {
  position: absolute;
  z-index: 1;
  opacity: .12;
}
.base_layout > .flexbox:nth-child(even) .txt_box > p {
  padding-right: 20px;
}
.top #intro .base_layout > .flexbox > img:nth-child(1)  {
  width: 160px;
  bottom: -60px;
  right: 0;
}
.top #intro .base_layout > .flexbox > img:nth-child(2)  {
  width: 300px;
  bottom: 0;
  right: 170px;
}
.top #intro .base_layout > .flexbox + .flexbox > img:nth-child(1)  {
  width: 280px;
  top: -120px;
  left: -100px;
}
.top #intro .base_layout > .flexbox + .flexbox > img:nth-child(2)  {
  width: 97%;
  bottom: -190px;
  left: 20px;
}
#support .base_layout > .flexbox > img:nth-child(1)  {
  width: 240px;
  top: -270px;
  right: 0;
}
#support .base_layout > .flexbox > img:nth-child(2)  {
  width: 450px;
  bottom: 0;
  right: -50px;
}
#support .base_layout > .flexbox + .flexbox > img:nth-child(1)  {
  width: 250px;
  top: inherit;
  bottom: -65px;
  left: -60px;
}
#support .base_layout > .flexbox + .flexbox > img:nth-child(2)  {
  width: 500px;
  bottom: -65px;
  left: 200px;
}

.base_layout .txt_box {
  width: 40%;
  padding-top: 40px;
}
.base_layout .txt_box img {
  border-radius: 20px;
}
/* .base_layout > .flexbox + .flexbox .txt_box {
  padding-top: 260px;
} */
/* #support .base_layout > .flexbox .txt_box {
  padding-top: 120px;
} */
/* #support .base_layout > .flexbox + .flexbox .txt_box {
  padding-top: 180px;
} */
.base_layout .img_box {
  width: 60%;
  height: fit-content;
  overflow: hidden;
}
.base_layout .flexbox:nth-child(odd) .img_box {
  border-radius: 0 20px 20px 0;
}
.base_layout .flexbox:nth-child(even) .img_box {
  border-radius: 20px 0 0 20px;
}
.base_layout .txt_box h3 {
  font-size: 2.8rem;
  border-bottom: 1px solid #fff;
  padding: 0 0 10px 20px;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 20px;
}
/* .base_layout .flexbox:nth-child(even) .txt_box h3 {
  text-align: right;
  padding: 0 20px 10px 0;
} */
/* .base_layout .flexbox:nth-child(even) .txt_box p {
  width: fit-content;
  padding: 10px 20px 0 0;
  float: right;
} */
#support .base_layout .txt_box h3 {
  border-bottom: 1px solid var(--color-orange);
}
.base_layout .txt_box > p {
  font-size: 2rem;
  padding: 0 0 0 20px;
}
.base_layout .txt_box > p span {
  display: block;
}
.base_layout .txt_box > p span + * {
  margin-top: .8em;
}
.base_layout .txt_box .list {
  padding-left: 20px;
}
.base_layout > .flexbox:nth-child(even) .txt_box .list {
  padding-right: 20px;
}
.base_layout .txt_box .list + div {
  padding-left: 20px;
  margin-top: 20px;
}
.base_layout .txt_box .list + div img {
  width: 100%;
}
.base_layout .txt_box .list li + * {
  padding-top: 10px;
}
.base_layout .txt_box .list h4 {
  font-size: 2.2rem;
  vertical-align: middle;
  position: relative;
  padding-left: 0.7em;
  line-height: 1.3em;
}
.base_layout .txt_box .list h4 + * {
  margin-top: 6px;
}
.base_layout .txt_box .list h4::before {
  content: "●";
  font-size: 1rem;
  vertical-align: middle;
  position: absolute;
  top: 5px;
  left: 0;
}
.base_layout .txt_box .list h4 span {
  display: inline;
}
.base_layout .txt_box .list h4 a {
  font-size: 1.6rem;
  vertical-align: middle;
  margin: 0 1em 0 1em;
  border-bottom: 1px solid #fff;
  transition: .3s;
  position: relative;
  padding: 0 20px 0 5px;
}
.base_layout .txt_box .list h4 a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  right: 8px;
  top: calc(50% - 2px);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: .3s;
}
.base_layout .txt_box .list h4 a:hover {
  border-color: transparent;
}

.base_layout .txt_box .list p {
  font-size: 1.8rem;
  padding-left: .8em;
}

.img_box img {
  width: 100%;
}
.txt_white .ct_title {
  color: #fff;
}
.txt_white h3,
.txt_white h3 + p {
  color: #fff;
}
.ct_title {
  position: relative;
  padding-top: 100px;
  margin-bottom: 60px;
}
.ct_title h2 {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid;
  position: relative;
  z-index: 2;
}
.low .ct_title h2 {
  font-size: 5rem;
  line-height: 1.2em;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.txt_white .ct_title h2 {
  border-color: #fff;
}
.ct_title p {
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.ct_title span {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  margin: 0 !important;
  opacity: .15;
}
.low .ct_title h2 + p {
  max-width: 960px;
  margin-inline: auto;
}

.txt_orange .ct_title,
.txt_orange h3 {
  color: var(--color-orange);
}
.inner > h3 {
  font-size: 3.8rem;
  line-height: 1.2em;
  margin-bottom: 15px;
  font-weight: 500;
}
.inner > h3 + p {
  font-size: 1.8rem;
  margin-top: -10px;
}
.inner > h3 + p + * {
  margin-top: 20px;
}
.pg_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pg_list.single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pg_list + ul {
  margin-top: 20px;
}
.pg_list li {
  background-color: #fff;
  padding: 22px 30px 30px;
  border-radius: 20px;
}
.pg_list li > div {
  margin-top: 20px;
}
.pg_list li > div > * + * {
  margin-top: 10px;
}
.pg_list h4 {
  color: var(--color-blue);
  font-size: 2.8rem;
  font-weight: 500;
}
.pg_list h5 {
  width: fit-content;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-orange);
  padding-left: 1em;
  text-indent: -1em;
  /* background-color: #ffe6cf; */
  /* padding: 10px 20px; */
}
.pg_list p {
  font-size: 1.8rem;
  margin-top: 10px;
}
.pg_list dl {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.pg_list dl > * {
  font-size: 2rem;
  line-height: 1.3em;
}
.pg_list dl dt {
  margin-right: 10px;
  position: relative;
  padding-left: .8em;
}
.pg_list dl dt::before {
  content: "●";
  font-size: 1rem;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  left: 0;
}
.pg_list dl span {
  font-size: 1.6rem;
  line-height: 1em;
  color: #fff;
  padding: 8px 10px;
}
.pg_list dl span.orange {
  background-color: var(--color-orange);
}
.pg_list dl span.green {
  background-color: var(--color-green);
}
.pg_list dl span.blue {
  background-color: var(--color-blue);
}
.box_a {
  border-radius: 20px;
  overflow: hidden;
}
.box_a dt {
  width: 50%;
  padding: 30px;
  background-color: #fff;
  font-size: 1.8rem;
}
.box_a dd {
  width: 50%;
}
.box_a img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
p.stg {
  font-size: 2.2rem;
  margin: 20px 0 0;
  color: #fff;
}

#academy .box_a dt {
  width: calc(100% - 740px);
}
#academy .box_a dd {
  width: 740px;
}
#academy .box_a dt h4 {
  font-size: 2.8rem;
  color: var(--color-green);
  font-weight: 500;
  margin-bottom: 10px;
}
#academy .box_a dt h5 {
  width: fit-content;
  font-size: 2.8rem;
  font-family: var(--font-family-jost);
  color: #fff;
  font-weight: 600;
  background-color: var(--color-orange);
  text-align: center;
  padding: 15px 30px;
  margin: 20px auto 0;
}
.box_a dd.flexbox img:nth-child(1) {
  width: 400px;
}
.box_a dd.flexbox img:nth-child(2) {
  width: 340px;
}
.std_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.std_list li {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.std_list .txt_box {
  padding: 20px;
}
.std_list h4 {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-green);
}
.std_list p {
  margin-top: 8px;
  font-size: 1.6rem;
}
.tch_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: #fff;
}
.tch_list .img_box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}
.tch_list .name {
  max-width: 330px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #333;
  padding: 15px 20px;
  border-radius: 20px 0 0 0;
}
.tch_list li:nth-child(1) .name {
  background-color: var(--color-pink);
}
.tch_list li:nth-child(2) .name {
  background-color: var(--color-mint);
}
.tch_list li:nth-child(3) .name {
  background-color: var(--color-purple);
}
.tch_list .name h4 {
  margin-bottom: 8px;
}
.tch_list .name h4 strong {
  font-size: 2.4rem;
  vertical-align: baseline;
  margin-right: 1em;
}
.tch_list .name h4 span {
  font-size: 2rem;
  opacity: .6;
  vertical-align: baseline;
}
.tch_list .name h4 small {
  font-size: 1.6rem;
  vertical-align: baseline;
}
.tch_list p {
  font-size: 1.8rem;
}
.flow_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  color: #fff;
  margin-top: 30px;
}
.flow_list li {
  background-color: var(--color-orange);
  border-radius: 20px;
  padding: 5px;
  position: relative;
}
.flow_list li:nth-child(even) {
  background-color: var(--color-blue);
  border-radius: 20px;
  padding: 5px;
  position: relative;
}
.flow_list h4 {
  display: grid;
  place-content: center;
  font-size: 2.4rem;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  height: 100px;
}
.flow_list h4 small {
  font-size: 2rem;
}
.flow_list p {
  font-size: 1.6rem;
  padding: 15px;
}
.flow_list .num {
  display: grid;
  place-content: center;
  width: 58px;
  height: 58px;
  font-size: 4rem;
  font-family: var(--font-family-jost);
  text-align: center;
  border-radius: 30px;
  background-color: #fff;
  color: var(--color-orange);
  border: 3px solid var(--color-orange);
  position: absolute;
  left: -10px;
  top: -15px;
}
.flow_list li:nth-child(even) .num {
  color: var(--color-blue);
  border: 3px solid var(--color-blue);
}
.flow_box {
  padding: 20px;
  border-radius: 20px;
  background-color: #ffecdc;
}
.flow_box + * {
  margin-top: 40px;
}
.bnr_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bnr_list li a {
  display: block;
  aspect-ratio: 3/1;
  background-color: #c8ffff;
}
.bnr_list li a:hover {
  opacity: .7;
}
.info_box + * {
  margin-top: 30px;
}
.info_box .left {
  /* padding: 40px 40px 90px; */
  padding: 40px;
  position: relative;
}
.info_box h3 strong {
  display: block;
  font-size: 4rem;
  color: var(--color-orange);
  font-weight: 500;
}
.info_box h3 span {
  display: block;
  font-family: var(--font-family-jost);
  font-size: 2rem;
  color: #ffc089;
  margin-top: 20px;
}
.news_box {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.news_box .flexbox {
  min-height: 200px;
}
.news_box .left {
  width: 280px;
}
.news_box .left .btn_box {
  width: 100%;
  margin: 0;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.news_box .left .btn_box li {
  width: fit-content;
  margin-inline: auto;
}
.news_box .right {
  width: calc(100% - 280px);
  align-self: center;
}
.news_list li a {
  display: flex;
  padding: 25px 0;
  position: relative;
}
.news_list li a:hover {
  background-color: #ffead8;
}
.news_list li + * {
  border-top: 1px solid var(--color-orange);
}
.news_list time {
  display: block;
  font-family: var(--font-family-jost);
  color: var(--color-orange);
  text-align: center;
  padding: 0 30px;
}
.news_list p {
  display: block;
  width: calc(100% - 130px);
  padding: 0 40px 0 20px;
}
.news_list a::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 12px;
  position: absolute;
  right: 25px;
  top: calc(50% - 13px);
  background-image: url(../images/arrow_m_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.news_list .no_link a {
  pointer-events: none;
}
.news_list .no_link a::after {
  content: "";
  display: none;
}
.access_box {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.access_box .left {
  width: 380px;
}
.access_box .right {
  width: calc(100% - 380px);
}
.access_box .left > div {
  max-width: 300px;
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.access_box .left > div p {
  font-size: 1.8rem;
  font-family: var(--font-family-jost);
}
.access_box .left > div p + * {
  margin-top: 10px;
}
.access_box .left > div p a {
  font-size: 2.8rem;
}
.access_box .left > div p span {
  display: block;
  font-weight: 600;
  color: var(--color-orange);
}

footer {
  position: relative;
  background-color: var(--color-orange);
  padding: 20px;
}
footer .wrap {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 20px 30px 60px;
  background-image: url(../images/bg_taipei101.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 30% center;
}
footer .inner {
  z-index: 10;
}
footer h1 {
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-orange);
}
footer h1 img {
  width: 62px;
  vertical-align: middle;
  margin-left: 10px;
}
footer .ft_navi {
  margin: 20px 0 90px;
  padding-right: 380px;
}
footer .ft_navi ul {
  justify-content: flex-start;
  margin-left: -15px;
}
footer .ft_navi li {
  margin-right: 5px;
  padding: 3px 0;
}
footer .ft_navi li:last-child {
  margin-right: 0;
}
footer .ft_navi li a {
  font-family: var(--font-family-m_plus);
  padding: 3px 15px;
  border-radius: 50px;
}
footer .ft_navi li a:hover {
  background-color: var(--color-orange);
  color: #fff;
}
footer .chara {
  position: absolute;
  right: 110px;
  bottom: 20px;
  z-index: 1;
}
footer .chara img {
  width: 360px;
}
footer small {
  font-size: 1.3rem;
  font-family: var(--font-family-jost);
}
.univ_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: start;
}
.univ_list li {
	/* border: 3px solid var(--color-orange); */
	border-radius: 15px;
	background-color: #fff;
	overflow: hidden;
}
.univ_list li > div {
	height: calc(100% - 50px);
	padding: 15px;
	gap: 10px;
}
.univ_list li h4 {
	background-color: var(--color-orange);
	padding: 15px;
	font-size: 2.6rem;
	line-height: 1.3em;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.univ_list li p {
	font-size: 2rem;
}
.univ_list li i {
	display: block;
	width: 30%;
	text-align: center;
}
.univ_list li i img {
	max-width: 70px;
}
.univ_list li i + p {
	width: 70%;
}
.univ_list .flexbox {
	align-items: center;
}
.univ_list li h5 {
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--color-orange);
	background-color: #ffecdc;
	padding: 10px;
}
.univ_list .g_box dl + dl {
	margin-top: 15px;
}
.univ_list li dt {
	font-size: 2.2rem;
	font-weight: bold;
	color: var(--color-orange);
}
.univ_list li dt::before {
	content: "●";
	font-size: .7em;
	vertical-align: middle;
	margin-right: .3em;
}
.univ_list li dd {
	font-size: 2rem;
	line-height: 1.5em;
	margin-top: .5em;
	padding-left: 1em;
}
.univ_list .g_box {
	padding: 20px;
}
.univ_list .g_box > * + * {
	margin-top: 20px;
}
.univ_list .g_box .km_box {
	border-top: 1px solid #d2d2d2;
	padding-top: 20px;
}
.univ_list .g_box .km_box span {
	display: inline-block;
	font-size: 1.6rem;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5em;
}
.univ_list .g_box .km_box span + * {
	margin-top: 5px;
}
.univ_list .g_box .p_wrap {
  background-color: #e9f3ff;
  border-radius: 10px;
  padding: 20px;
}
.univ_list .g_box .img_box {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 10px;
}
.univ_list .g_box .p_wrap p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

#intro .inner.top_area {
  padding-top: 40px;
}
#intro .inner.top_area .flexbox {
  margin-right: calc(((100vw - 1280px) / 2) * -1);
  transform: translateY(-70px);
  margin-bottom: -70px;
}
#intro .inner.top_area p {
  text-align: left;
  position: relative;
  z-index: 10;
}
#intro .inner.top_area .flexbox .left {
  width: 50%;
  text-align: center;
}
#intro .inner.top_area .flexbox .left img {
  transform: translateY(-30px);
}
#intro .inner.top_area .flexbox .right {
  width: 50%;
  text-align: right;
}
#intro .inner.top_area .flexbox .right img + * {
  margin-top: 20px;
  border-radius: 20px 0 0 20px;
}
#intro .inner.top_area .flexbox .right img:nth-child(1) {
  margin-right: 30px;
  opacity: .15;
}
.txt_left {
  text-align: left !important;
}
.txt_center {
  text-align: center !important;
}
.txt_right {
  text-align: right !important;
}

.layout_1 .flexbox {
  flex-direction: row-reverse;
}
.layout_1 .img_box {
  width: 50%;
}
.layout_1 .txt_box {
  width: 50%;
  color: #fff;
}

.low #program .base_layout .txt_box {
  padding-top: 0;
  color: #fff;
}
.low #program .base_layout .img_box {
  padding-top: 100px;
}
.low #program .base_layout .flexbox .img_box img {
  border-radius: 20px 0 0 20px;
}
.low #program .base_layout > .flexbox > img {
  width: 350px;
  bottom: -50px;
  left: -100px;
}

.strong_list li + * {
  margin-top: 30px;
}
.strong_list h3 {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2em;
  padding-left: 1.4em;
  text-indent: -.4em;
  margin-bottom: 10px;
}
.strong_list h3:before {
  content: "●";
  display: inline-block;
  font-size: 2rem;
  margin-right: .3em;
  transform: translateY(-4px);
}
.strong_list p {
  font-size: 2rem;
  padding-left: 50px;
}
.grid_layout_2clm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.grid_layout_2clm p {
  font-size: 2rem;
  color: #fff;
  margin-top: 10px;
}
.rds img {
  border-radius: 20px;
}

.classroom .inbox + * {
  margin-top: 40px;
}
.classroom .flexbox {
  margin-top: 20px;
}
.classroom .flexbox .googleMap {
  width: 60%;
  padding-bottom: 30%;
}
.classroom .flexbox .i_map {
  display: grid;
  place-content: center;
  width: 37%;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.classroom .floor {
  margin: 40px 0 20px;
}
.classroom .floor p {
  font-size: 2.2rem;
  line-height: 1.3em;
  color: #fff;
}
.classroom .floor p + p {
  margin-top: 10px;
}
.classroom .floor p span {
  display: table-cell;
  font-size: 1.8rem;
  background-color: #fff;
  padding: 0 15px;
  border-radius: 5px;
  text-align: center;
  color: var(--color-green);
}
.classroom .floor p strong {
  display: table-cell;
  padding-left: 10px;
  color: #fff;
}
.classroom h3 {
  font-size: 3.2rem;
  font-weight: 600;
  position: relative;
}
.classroom h3 span {
  background-color: var(--color-green);
  padding-right: 10px;
  position: relative;
  z-index: 10;
}
.classroom h3::after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #fff;
  position: absolute;
  width: 100%;
  top: 56%;
  right: 0;
  z-index: 1;
}
.classroom h3 + p {
  font-size: 2rem;
}
.cl_room_list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.cl_room_list li {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.cl_room_list li img {
  display: block;
}
.cl_room_list li p {
  background-color: #fff;
  padding: 15px 20px;
  font-size: 1.8rem;
  color: var(--color-green);
}
#contact {
  color: #fff;
}
#contact .wrap {
  padding: 120px 20px;
}
#contact .inner {
  width: fit-content;
  margin-inline: auto;
}
#contact h3 {
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1.2em;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 30px;
  margin-right: 252px;
  position: relative;
}
#contact h3 img {
  display: block;
  max-width: 246px;
  position: absolute;
  top: 0;
  right: -252px;
}
#contact .con_list {
  margin-bottom: 60px;
}
#contact .con_list li {
  font-size: 2.4rem;
  line-height: 1.4em;
  padding-left: 1em;
  text-indent: -1em;
}
#contact .con_list li + * {
  margin-top: 15px;
}

.support #intro .inner.top_area {
  position: relative;
}
.support #intro .inner.top_area .flexbox {
  margin-bottom: 0;
  transform: none;
}
.support #intro .inner.top_area .left {
  width: 47%;
}
.support #intro .inner.top_area .right {
  width: 50%;
}
.support #intro .inner.top_area .left > img {
  position: absolute;
  bottom: -100px;
  left: 10%;
  z-index: 1;
  transform: none;
  opacity: .1;
}

.course_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.course_list > li {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.course_list h4 {
  color: #fff;
  background-color: #000;
  padding: 15px 25px;
}
.course_list > li.orange h4 {
  background-color: var(--color-orange);
}
.course_list > li.green h4 {
  background-color: var(--color-green);
}
.course_list > li.mint h4 {
  background-color: var(--color-mint);
}
.course_list > li.pink h4 {
  background-color: var(--color-pink);
}
.course_list h4 strong {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.3em;
  vertical-align: middle;
}
.course_list h4 span {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.3em;
  vertical-align: middle;
}
.course_list .g_box {
  padding: 20px;
}
.course_list .g_box p {
  font-size: 1.9rem;
}
#program h5.txt {
  width: 80%;
  margin-inline: auto;
  color: #fff;
  font-size: 3.2rem;
  padding: 40px 0;
}
.dt_list {
  column-count: 2;
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}
.dt_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.dt_list.spot {
  column-count: 1;
}
.course_list .flexbox {
  justify-content: flex-start;
  gap: 40px;
}

.service_list li + * {
  margin-top: 40px;
} 
.service_list li > * + * {
  margin-top: 15px;
} 
.service_list h3::before {
  content: "●";
  display: inline-block;
  font-size: 2rem;
  transform: translateY(-3px);
  margin-right: 5px;
} 
.service_list h3 strong {
  font-size: 3.2rem;
  font-weight: 500;
  vertical-align: baseline;
} 
.service_list h3 span {
  font-size: 2.8rem;
  color: #000;
  vertical-align: baseline;
} 
.service_list p {
  font-size: 2rem;
  padding-left: 26px;
} 
.service_list .blue_box {
  border-radius: 20px;
  border: 1px solid var(--color-blue);
  overflow: hidden;
} 
.service_list .blue_box h4 {
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  background-color: var(--color-blue);
  padding: 10px 20px;
} 
.service_list .blue_box p {
  padding: 0;
} 
.service_list .blue_box > div {
  padding: 20px;
} 
.service_list h5 {
  width: fit-content;
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  background-color: var(--color-green);
  padding: 10px 25px;
} 
.service_list small {
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
} 

#flow .inner + .ct_title {
  margin-top: 100px;
}
.company .inner > h2 {
  padding-top: 100px;
}
.company .inner > h2 img {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .15;
}
.company #intro .flexbox {
  align-items: center;
  margin-left: calc(((100vw - 1280px) / 2) * -1);
  margin-top: 40px;
}
.company #intro .flexbox img {
  border-radius: 0 20px 20px 0;
}
.company #intro .flexbox .left {
  width: 30%;
}
.company #intro .flexbox .right {
  width: 68%;
}
.company #intro .flexbox p {
  font-size: 2.4rem;
  text-align: left;
}
.company #intro .flexbox p:last-child {
  font-size: 2.8rem;
  font-weight: 500;
}
#company_info {
  color: #fff;
}
#company_info .inner > h3 {
  font-size: 4rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
}
#company_info .inner > h3 span {
  background-color: var(--color-orange);
  padding-right: 10px;
  position: relative;
  z-index: 10;
}
#company_info .inner > h3::after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #fff;
  position: absolute;
  width: 100%;
  top: 56%;
  right: 0;
  z-index: 1;
}
#company_info .inner > h3 + h4 {
  font-size: 3rem;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}
#company_info .inner p.km {
  padding-left: 1em;
  text-indent: -1em;
}
#company_info .inner .btn_line {
  width: fit-content;
  margin: 40px auto 0;
}
#company_info .inner > h5 {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 40px;
  text-align: center;
}
.normal_list {
  font-size: 1.8rem;
}
.normal_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.normal_list li + li {
  margin-top: 10px;
}
.c_info_box {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: #000;
}
.c_info_box + * {
  margin-top: 40px;
}
.c_info_box h4 {
  font-size: 3rem;
  background-color: #d8e3f8;
  color: var(--color-blue);
  padding: 15px 30px;
}
.c_info_box h4 strong {
  font-weight: 500;
}
.c_info_box h4 span {
  font-size: 2.4rem;
  margin-left: 20px;
}
.c_info_box h4 b {
  font-size: 2.4rem;
  line-height: 1em;
  font-weight: 600;
  background-color: var(--color-blue);
  padding: 5px 10px 9px;
  color: #fff;
  margin-left: 10px;
}
.c_info_box > div {
  padding: 30px;
}
.c_info_box .flexbox .left {
  width: 60%;
}
.c_info_box .flexbox .right {
  width: 35%;
}
.c_info_box p {
  font-size: 2rem;
}
.c_info_box p + small {
  margin-top: 15px;
}
.c_info_box .flexbox ol {
  color: var(--color-orange);
  font-size: 2.4rem;
  line-height: 1.5em;
}
.c_info_box .flexbox ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.c_info_box .flexbox ol li + * {
  margin-top: 5px;
}
.c_info_box .flexbox * + * {
  margin-top: 10px;
}
.c_info_box small {
  display: block;
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
}
.achieve_list li + * {
  margin-top: 10px;
}
.achieve_list h4,
#company_info .block h4 {
  font-size: 2.8rem;
  line-height: 1.3em;
  font-weight: 500;
}
#company_info .inner.school p + * {
  margin-top: .7em;
}
.achieve_list h4 {
  padding-left: 0.8em;
  text-indent: -0.3em;
  line-height: 1.2em;
}
.achieve_list h4:before,
#company_info .block h4:before {
  content: "●";
  display: inline-block;
  font-size: 1.5rem;
  margin-right: 5px;
  transform: translateY(-4px);
}
#company_info .block h4:before {
  transform: translateY(0);
}
.achieve_list p {
  font-size: 2rem;
  padding: 0 0 10px 20px;
}
.photo_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  margin-top: 20px;
}
.photo_list li img {
  border-radius: 20px;
}
.photo_list li p {
  font-size: 1.8rem;
  margin-top: 10px;
}
#company_info .block {
  margin-top: 40px;
}
#company_info .block h4 strong,
#company_info .block h4 span {
  vertical-align: middle;
}
#company_info .block p {
  font-size: 1.8rem;
  margin-top: 10px;
}
#company_info .block > div {
  border: 1px solid #fff;
  padding: 20px;
  margin-top: 20px;
}
#company_info .block > div p {
  margin: 0;
}
.qa_list li {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  color: #000;
}
.qa_list li + * {
  margin-top: 20px;
}
.qa_list b,
.qa_list span {
  display: table-cell;
}
.qa_list b {
  width: 100px;
  font-size: 4rem;
  font-family: var(--font-family-jost);
  font-weight: 500;
  text-align: center;
  color: var(--color-orange);
}
.qa_list span {
  width: calc(100% - 100px);
  font-size: 2rem;
  line-height: 1.5em;
}
.qa_list dt span {
  color: var(--color-orange);
}
.qa_list dt {
  border-bottom: 1px solid var(--color-orange);
}
.qa_list dt > * {
  padding-bottom: 20px;
}
.qa_list dd > * {
  padding-top: 20px;
}
.com_info {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  font-size: 2rem;
}
.com_tab {
  width: 100%;
}
.com_tab th {
  width: 180px;
  color: var(--color-orange);
  padding-left: 20px !important;
}
.com_tab td {
  width: calc(100% - 180px);
  color: #000;
}
.com_tab tr > * {
  padding: 20px 0;
}
.com_tab tr:first-child > * {
  padding-top: 0;
}
.com_tab tr:last-child > * {
  padding-bottom: 0;
}

.com_tab tr + tr > * {
  border-top: 1px solid var(--color-orange);
}
.bnr_group_list li {
  display: inline-block;
}
.bnr_group_list li + * {
  margin-left: 20px;
}
.bnr_group_list a:hover {
  opacity: .7;
}
.bnr_group_list a {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
}
#page-top {
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-orange);
  border-radius: 8px;
  padding: 15px;
  z-index: 10;

  /* 初期状態：右下に固定 */
  position: fixed;
  right: 20px;
  bottom: 20px;
  
  /* 位置が変わる時のアニメーション（秒数はお好みで） */
  transition: all 0.3s ease-out; 
}
#page-top.is-stopped {
  /* 左上にずらす指定 */
  transform: translate(-50px, -10px); 
}
.news_single_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}
.news_single_box > div {
  margin-top: 20px;
}
.news_single_box > div > * + * {
  margin-top: 20px;
}
.news_single_box h3 {
  color: var(--color-orange);
  font-size: 3rem;
  font-family: var(--font-family-m_plus);
  font-weight: 500;
}
.news_single_box time {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-family-jost);
  margin-top: 10px;
}
.news_single_box p {
  display: block;
  font-size: 1.8rem;
  line-height: 1.5em;
}
.news_single_box p + p {
  margin-top: .75em;
}
.info_box.no_post {
  padding: 40px;
}
.wp-block-list {
  list-style: disc;
  padding-left: 1.5em;
}
.entry_content h1 {
  font-size: 3rem;
}
.entry_content h2 {
  font-size: 2.6rem;
}
.entry_content h3 {
  font-size: 2.4rem;
}
.entry_content h4 {
  font-size: 2.2rem;
}
.entry_content h5 {
  font-size: 2rem;
}
.entry_content h6 {
  font-size: 1.8rem;
}
.entry_content b {
  font-weight: bold;
}

.pagination ul.page-numbers {
  display: flex;
  gap: 5px;
  width: fit-content;
  margin-inline: auto;
}
.pagination ul.page-numbers li > *  {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  text-align: center;
  font-family: var(--font-family-jost);
  border-radius: 50px;
}
.pagination ul.page-numbers li > a:hover  {
  background-color: var(--color-blue);
  color: #fff;
}
.pagination ul.page-numbers li > .prev,
.pagination ul.page-numbers li > .next  {
  width: 80px;
}
.pagination ul.page-numbers li > .current  {
  background-color: #ffd5af;
}

@media screen and (max-width: 1390px) {
  .low header h1 a img {
    width: calc(100vw - 1130px) !important;
  }
}

@media screen and (max-width: 1320px) {
  header h1 a img:nth-child(1) {
    width: 272px;
  }
  header h1 a img:nth-child(2) {
    width: 620px;
  }
  .low header h1 {
    top: 120px;
  }  
  .low header h1 a img {
    width: 250px !important;
  }
  .low header nav.gnav {
    width: calc(100vw - 80px);
    min-width: 1060px;
    right: inherit;
    left: 40px;
    margin-left: 0;
  }
  .low header h2 {
    bottom: 110px;
    right: inherit;
    left: 35%;
  }
  main .wrap {
    padding: 60px 20px;
  }
  .base_layout > .flexbox:nth-child(odd) {
    margin-left: -40px;
  }
  .base_layout > .flexbox:nth-child(even) {
    margin-right: -40px;
  }
  .base_layout .img_box {
    width: 55%;
  }
  .base_layout .txt_box {
    width: 45%;
  }
  .about #intro .inner.top_area .flexbox {
    margin-right: 0px;
  }
  .about #intro .inner.top_area .flexbox .left {
    width: 30%;
  }
  .about #intro .inner.top_area .flexbox .right {
    width: 70%;
    margin-right: -20px;
  }
  .flow_list .num {
    width: 50px;
    height: 50px;
    font-size: 3.6rem;
    top: -25px;
  }
  .support #intro .inner.top_area .flexbox {
    margin-right: -40px;
  }
  #intro .inner.top_area {
    padding-top: 0;
  }
  .company #intro .flexbox {
    align-items: flex-start;
    margin-left: -40px;
    margin-top: 0;
  }
  .company #intro .wrap {
    padding-bottom: 0px;
  }
  .company #intro .flexbox .left {
    width: 35%;
  }
  .company #intro .flexbox .right {
    width: 63%;
  }
}

@media screen and (max-width: 1160px) {
  header .btn_line a {
    max-width: 200px;
  }
}

@media (hover: hover) and (max-width: 768px) {
  header .g_navi li > a:hover {
    background-color: inherit;
    color: inherit;
  }
}
@media screen and (max-width: 768px) {
  .pcv {
  display: none;
  }
  .spv {
  display: block;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  header .g_navi li div a:hover {
    color: #fff !important;
  }
  header .btn_line,
  .low header .btn_line {
    bottom: inherit;
    left: inherit;
    top: 30px;
    right: 80px;
  }
  header .btn_line a {
    max-width: 170px;
    padding: 10px 15px;
  }
  .sp_btn {
    display: block;
  }
  .bgbk {
    display: none;
    width: 300vw;
    height: 300vh;
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transition: none;
  }
  header nav.gnav {
    width: 100%;
    position: fixed;
    top: -100%;
    right: 0;
    z-index: 99;
    margin-left: 0;
    padding: 20px;
    opacity: 0;
    transition: .3s;
  }
  .low header nav.gnav {
    width: 100%;
    min-width: inherit;
    right: inherit;
    left: 0;
    margin-left: inherit;
  }
  header nav.gnav.open {
    top: 0;
    opacity: 1;
  }
  header .g_navi {
    display: block;
    border-radius: 20px;
    padding: 40px;
  }
  header .g_navi li {
    display: block;
  }
  header .g_navi li + * {
    margin-left: 0;
  }
  header .g_navi li a {
    display: block;
    width: 100%;
    font-size: 2.8rem;
    padding: 40px 0;
    text-align: center;
  }
  header .g_navi li:first-child a {
    padding-top: 0;
  }
  header .g_navi li:last-child {
    margin-top: 20px;
  }
  header .g_navi li > a img {
    width: 40px;
  }
  header .g_navi li + * {
    /* margin: 40px 0 0; */
  }
  header .g_navi li div a:nth-child(1) {
    padding: 20px 30px 20px 40px;
  }
  header .g_navi li div a:nth-child(2) {
    padding: 20px 40px 20px 30px;
  }
  header .c_copy {
    max-width: 120px;
    top: 3%;
    left: 26.3%;
  }
  main .wrap {
    padding: 30px;
  }
  #intro p {
    text-align: left !important;
  }
  #intro p br {
    display: none;
  }
  #intro .base_layout > .flexbox > img:nth-child(1) {
    width: 100px;
  }
  #intro .base_layout > .flexbox > img:nth-child(2) {
    width: 210px;
    bottom: -30px;
    right: 110px;
  }
  #intro .base_layout > .flexbox + .flexbox > img:nth-child(1) {
    width: 170px;
    top: -140px;
    left: -10px;
  }
  #intro .base_layout > .flexbox + .flexbox > img:nth-child(2) {
    width: 95%;
    bottom: -80px;
  }
    .base_layout > .flexbox {
    display: block;
    margin: 40px 0 0 !important;
  }
  /* .base_layout > .flexbox + * {
    margin: 40px 0 0 !important;
  } */
  .base_layout .img_box {
    width: auto;
    margin-top: 0;
    border-radius: 20px !important;
  }
  .base_layout > .flexbox .txt_box {
    padding-top: 0px !important;
  }
  .base_layout .txt_box {
    width: auto;
    padding-top: 0;
    margin-top: 20px;
  }
  .base_layout .txt_box h3 {
    padding: 0 0 10px 0;
    text-align: left !important;
  }
  .base_layout .txt_box p {
    padding: 0;
    float: none !important;
  }
  .base_layout > .flexbox > img {
    display: none;
  }
  #support .base_layout > .flexbox > img:nth-child(1) {
    width: 180px;
  }
  #support .base_layout > .flexbox > img:nth-child(2) {
    width: 280px;
    bottom: 0;
    right: 0px;
  }
  #support .base_layout > .flexbox + .flexbox > img:nth-child(1) {
    width: 180px;
    left: -10px;
  }
  #support .base_layout > .flexbox + .flexbox > img:nth-child(2) {
    width: 400px;
  }
  .base_layout .txt_box .list {
    padding: 0;
  }
  .base_layout .txt_box .list + div {
    padding-left: 0;
  }
  .btn_box {
    display: block;
  }
  .btn_box > * + * {
    margin: 15px 0 0 0;
  }
  #academy .box_a {
    display: block;
  }
  #academy .box_a dt {
    width: auto;
  }
  .std_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .tch_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .ct_title {
    padding-top: 50px;
  }
  .ct_title h2 {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .ct_title span img {
    height: 68px;
  }
  .ct_title h2 img {
    height: 56px;
  }
  .ct_title h2.two img {
    height: 120px;
  }
  .ct_title p {
    font-size: 2rem;
  }
  .flow_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow_list li:nth-child(3) {
    background-color: var(--color-blue);
  }
  .flow_list li:nth-child(3) .num {
    color: var(--color-blue);
    border: 3px solid var(--color-blue);
  }
  .flow_list li:nth-child(4) {
    background-color: var(--color-orange);
  }
  .flow_list li:nth-child(4) .num {
    color: var(--color-orange);
    border: 3px solid var(--color-orange);
  }
  .bnr_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .info_box .flexbox {
    display: block;
  }
  .info_box .flexbox > * {
    width: auto;
  }
  .pg_list {
    grid-template-columns: 1fr;
  }
  .box_a {
    display: block;
  }
  .box_a dt,
  .box_a dd {
    width: auto;
  }
  .news_box .left .btn_box {
    width: fit-content;
    position: absolute;
    bottom: inherit;
    left: inherit;
    right: 40px;
    top: 40px;
  }
  .news_list li {
    border-top: 1px solid var(--color-orange);
  }
  .access_box .left > div {
    max-width: none;
    bottom: 40px;
    left: inherit;
    right: 40px;
  }
  .access_box .left > div p {
    margin: 0;
  }
  .access_box .left > div p br {
    display: none;
  }
  footer .wrap {
    background-size: cover;
    padding: 20px 20px 30px 30px;
    background-position: center center;
  }
  footer .chara {
    right: 80px;
  }
  footer .chara img {
    width: 270px;
  }
  footer h1 {
    font-size: 3.6rem;
  }
  .low header h1 {
    top: 40px;
  }
  .low header h2 {
    bottom: 20px;
    left: 40px;
  }
  .univ_list {
    display: block;
  }
  .univ_list li + * {
    margin-top: 20px;
  }
  .about #program .base_layout > .flexbox {
    margin: 0 !important;
  }
  .low #program .base_layout .img_box {
    padding: 0;
  }
  .low #program .inner + .inner {
    margin-top: 40px;
  }
  .grid_layout_2clm {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .low #academy .inner + .inner {
    margin-top: 80px;
  }
  .low .ct_title h2 + p {
    text-align: left;
  }
  .low .ct_title h2 + p br {
    display: none;
  }
  .classroom .flexbox {
    display: block;
  }
  .classroom .flexbox .googleMap,
  .classroom .flexbox .i_map {
    width: auto;
  }
  .classroom .flexbox .googleMap {
    padding-bottom: 80%;
  }
  .classroom .flexbox .i_map {
    display: block;
    margin-top: 40px;
  }
  .classroom .flexbox .i_map img {
    width: 100%;
  }
  .cl_room_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow_list .num {
    width: 58px;
    height: 58px;
    font-size: 4rem;
    top: -15px;
  }
  .base_layout .txt_box h3 br {
    display: none;
  }
  .strong_list h3 {
    padding-left: 0.8em;
    margin-bottom: 15px;
  }
  .strong_list p {
    padding-left: 28px;
  }
  .low .ct_title {
    margin-bottom: 20px;
  }
  #contact .wrap {
    padding: 40px 40px 20px;
  }
  #contact h3 {
    margin-right: 310px;
  }
  #contact h3 img {
    right: -280px;
  }
  .low .ct_title h2 {
    font-size: 3.6rem;
  }
  .strong_list h3 {
    font-size: 2.8rem;
  }
  .cl_room_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .support #intro .inner.top_area .flexbox {
    display: block;
    margin: 0;
  }
  .support #intro .inner.top_area .flexbox .left,
  .support #intro .inner.top_area .flexbox .right {
    width: auto;
    position: relative;
  }
  .support #intro .inner.top_area .left > img {
    width: 40%;
    left: 20px;
    bottom: -120px;
  }
  #intro .inner.top_area .flexbox .right img:nth-child(1) {
    margin-right: 0;
    width: 50%;
  }
  .course_list {
    grid-template-columns: 1fr;
  }
  .service_list h3 span {
    display: block;
    font-size: 2.4rem;
    margin-top: 10px;
    padding-left: .5em;
  }
  .service_list li + * {
    margin-top: 30px;
  }
  .service_list p {
    margin-top: 10px;
  }
  .service_list .blue_box p span {
    display: block;
  }
  .service_list .blue_box p span + span {
    padding-left: 1em;
  }
  .company .inner > h2 {
    padding-top: 120px;
  }
  .company #intro .flexbox {
    display: block;
    margin: 0;
  }
  .company #intro .flexbox .left {
    width: auto;
    text-align: center;
  }
  .company #intro .flexbox img {
    width: 60%;
    border-radius: 20px;
  }
  .company #intro .flexbox .right {
    width: auto;
    margin-top: 30px;
  }
  .company #intro .flexbox p:last-child {
    text-align: right !important;
  }
  .company #intro p br {
    display: block;
  }
  .photo_list {
    gap: 40px 20px;
  }
  .bnr_group_list li {
    display: block;
    margin: 0;
  }
  .bnr_group_list li + * {
    margin-top: 20px;
  }
  #company_info .inner > h3 {
    font-size: 3.6rem;
  }
  #company_info .inner > h3 + h4 {
    font-size: 2.8rem;
  }
  .c_info_box .flexbox {
    display: block;
  }
  .c_info_box .flexbox .left {
    width: auto;
  }
  .c_info_box .flexbox .right {
    width: auto;
    margin-top: 20px;
  }
  .com_tab td a {
    text-decoration: underline;
  }
  .about #intro .inner.top_area .flexbox .right {
    margin-right: -30px;
  }
  .classroom p a {
    text-decoration: underline;
  }
  .classroom p a:hover {
    text-decoration: none;
  }
  #program h5.txt {
    width: auto;
    padding: 0;
  }
  .service_list .blue_box p {
    padding: 0 0 0 1em;
    text-indent: -1em;
  } 
  .univ_list .g_box .img_box {
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
  }
  header .g_navi li:first-child a:hover img {
    filter: none;
  }
  .news_box .no_news {
    padding: 20px 40px 40px;
  }
  .low .news_box .no_news {
    padding: 40px;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 90%;
  }
  p {
    font-size: 130% !important;
  }
  header {
    height: 70vh;
    height: 70svh;
    height: 900px;
  }
  header .fv_img {
    height: calc(70vh - 40px);
    height: calc(70svh - 40px);
    height: calc(900px - 40px);
  }
  header .g_navi li div {
    display: grid;
    gap: 20px;
  }
  header .g_navi li div a {
    min-width: 420px;
    border-radius: 50px !important;
    padding: 30px 0 !important;
    text-align: center;
  }
  header .btn_line,
  .low header .btn_line {
    bottom: inherit;
    left: inherit;
    top: 32px;
    right: 110px;
  }
  header .btn_line a {
    max-width: none;
  }
  header h1 a img:nth-child(1) {
    width: 300px;
  }
  .sp_btn button {
    width: 90px;
    height: 90px;
  }
  .btn a {
    min-width: 500px;
  }
  .sns_list .sns p {
    font-size: 1.1rem !important;
    width: 130px;
    top: -50px;
    right: -55px;
  }
  .inner > h3 {
  font-size: 3.6rem;
  }
  #intro .wrap, #support .wrap {
    padding-bottom: 40px;
  }
  .pg_list {
    gap: 40px;
  }
  .pg_list li {
    padding: 32px 40px 40px;
  }
  .box_a dt {
    padding: 40px;
  }
  .std_list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .std_list .txt_box {
    padding: 40px;
  }
  .std_list h4 {
    font-size: 2.8rem;
  }
  .flow_list li:nth-child(3) {
    background-color: var(--color-orange);
  }
  .flow_list li:nth-child(3) .num {
    color: var(--color-orange);
    border: 3px solid var(--color-orange);
  }
  .flow_list li:nth-child(4) {
    background-color: var(--color-blue);
  }
  .flow_list li:nth-child(4) .num {
    color: var(--color-blue);
    border: 3px solid var(--color-blue);
  }
  .tch_list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tch_list .name {
    padding: 25px 30px;
  }
  .ct_title p {
    text-align: left;
  }
  .tch_list .name {
    max-width: 370px;
  }
  .flow_list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .flow_list h4 br {
    display: none;
  }
  .flow_list p {
    padding: 40px;
  }
  .flow_list .num {
    width: 80px;
    height: 80px;
    border-radius: 40px;
  }
  .news_list {
    padding: 0;
  }
  .news_list li a {
    display: block;
    padding: 25px;
  }
  .news_list time {
    text-align: left;
    padding: 0;
  }
  .news_list p {
    padding: 0;
  }
  .low .news_list li:first-child {
    border: none;
  }
  .news_list a::after {
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
  }
  .access_box .left > div p br {
    display: block;
  }
  .info_box .left {
    padding: 40px 40px 25px;
  }
  .access_box .left > div {
    position: static;
    margin-top: 20px;
  }
  .googleMap {
    padding-bottom: 80%;
  }
  footer .ft_navi {
    padding-right: 300px;
  }
  .pg_list dl {
    display: block;
  }
  .pg_list dl dt {
    margin-right: 0;
  }
  .pg_list dl dd {
    margin-left: 20px;
  }
  .flow_list h4 {
    display: block;
    font-size: 2.6rem;
    transform: translateY(-8px);
  }
  .ct_title h2 img {
    height: 64px;
  }
  .info_box h3 strong {
    display: inline-block;
    vertical-align: baseline;
  }
  .info_box h3 span {
    display: inline-block;
    vertical-align: baseline;
    margin: 0 0 0 20px;
  }
  footer .chara img {
    width: 250px;
  }
  .low header h2 {
    font-size: 3.4rem;
  }
  .std_list + .btn_box {
    width: 100%;
    margin-top: 40px;
  }
  .std_list + .btn_box a {
    width: 100%;
  }
  #contact h3 {
    margin-right: 0;
  }
  #contact h3 img {
    right: -180px;
    max-width: 250px;
    top: 70px;
  }
  #contact h3 > * {
    display: block;
  }
  .univ_list li + * {
    margin-top: 40px;
  }
  .company #intro .flexbox img {
    width: auto;
  }
  .company #intro .inner > h2 {
    font-size: 3.2rem;
  }
  .photo_list {
    grid-template-columns: 1fr;
  }
  .com_tab th {
    padding-left: 0 !important;
  }
  #company_info .btn_line a {
    width: 320px;
    max-width: none;
  }
  .about #intro .inner.top_area .flexbox {
    display: block;
  }
  .about #intro .inner.top_area .flexbox .left {
    display: none;
  }
  .about #intro .inner.top_area .flexbox .right {
    width: auto;
    margin-right: 0;
  }
  #intro .inner.top_area .flexbox .right img + * {
    border-radius: 20px;
  }
  #program h5.txt {
    font-size: 2.6rem;
  }
  .pg_list + ul {
    margin-top: 40px;
  }
  .sns_list {
    padding: 160px 15px 10px;
  }
  .sns_list .sns p {
    font-size: 1.5rem !important;
    top: -85px;
    right: -44px;
  }
  .sns_list .sns a img {
    width: 40px;
    height: 40px;
  }
  .sns_list .sns li + * {
    padding: 15px 0;
  }
  #page-top.is-stopped {
    transform: translate(-60px, -10px);
  }
  footer {
    overflow: hidden;
  }
  footer small {
    font-size: 1.2rem;
  }
  .btn_line a img {
    width: 240px;
  }
}