@charset "UTF-8";

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
/* * {
	outline: 1px solid magenta;
} */
body {
  font-family: "Kosugi", sans-serif;
  color: #5f5f5f;
  background-image: linear-gradient(100deg, #12a287, #3283c6);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pc {
  display: block;
  padding-bottom: 10vw;
}

.sp {
  display: none;
}

.pc-none {
  display: none;
}

.ttl {
  font-size: 3.5vw;
  color: #fff;
  font-weight: 900;

  text-shadow:
    0 0 0.12vw #3283c6,
    0 0 0.25vw #3283c6,
    0 0 0.45vw #3283c6,
    0 0 0.7vw rgba(50,131,198,.98),
    0 0 1.1vw rgba(50,131,198,.9),
    0 0 1.6vw rgba(50,131,198,.78);

}
.ttl-sub {
  color: #3283c6;
  font-size: 1.5vw;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header-inner {
  width: 100%;
  max-width: none;
  height: 88px;
  margin: 0;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.site-logo {
  display: block;
  width: 300px;
  margin-left: auto;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.6;
}

.main-visual {
  padding-top: 88px;
}

.top-main {
  height: calc(100svh - 88px);
}

.nav-toggle {
  display: none;
}

/* .hamburger {
  display: none;
} */

/* .main-visual {
  padding-top: 72px;
} */

.top-main {
  height: calc(100svh - 72px);
  border-radius: 0;
  z-index: 1;
  position: relative;
}

.top-main img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-bg {
  width: 100%;
  display: block;
}

.fv-overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}

.service__ttl {
  position: relative;
  text-align: center;
  display: block;
  width: fit-content;
  /* line-height: 1.6; */
  margin: 4vw auto 4vw;
  padding: 0 2vw;
  color: #fff;
  font-size: 3vw;
}

.ttl-large {
  font-size: 4vw;
  font-weight: bold;
}

.ttl-small {
  display: block;
  font-size: 3vw;
  margin-top: 1vw;
}

.service__ttl::before,
.service__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0.2vw;
  height: 12vw;
  background: rgba(255, 255, 255);
}

.service__ttl::before {
  transform: rotate(-20deg);
  left: 0;
}

.service__ttl::after {
  transform: rotate(20deg);
  right: 0;
}

.intro2-section {
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 3vw;
  padding-bottom: 4vw;
  font-size: clamp(14px, 2.5vw, 24px);
}

.intro2-change {
  background-color: #3fa9f5;
  padding: 1.2vw 4vw;
  border-radius: 3vw;
}

.intro2-up {
  background-color: #7ac943;
  padding: 1.2vw 4vw;
  border-radius: 3vw;
}

.intro2-skill {
  background-color: #ff931e;
  padding: 1.2vw 4vw;
  border-radius: 3vw;
}

.intro-message p {
  background-color: #fff;
  opacity: 0.7;
  padding: 2vw 0;
  text-align: center;
  width: 80%;
  margin: auto;
  font-weight: bold;
  line-height: 1.8;
  font-size: clamp(14px, 2vw, 22px);
}

.intro-message1 {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #efea45;
}

.intro-message2 {
  padding-top: 1vw;
  font-size: clamp(22px, 3.5vw, 42px);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 5rem;
  gap: 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.btn-flat-border {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35vw;
  padding: 1vw 2vw;
  text-decoration: none;
  color: #ffffff;
  border: solid 2px #ffffff;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border::after {
  content: "";

  position: absolute;

  right: 1.5vw;
  top: 50%;

  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 0.5vw solid transparent;
  border-bottom: 0.5vw solid transparent;
  border-left: 0.8vw solid #fff;
}

.btn-flat-border:hover {
  background: #ffffff;
  color: #3283c6;
}

.btn-flat-border:hover::after {
  border-left-color: #3283c6;
}

.teacher-section {
  background-color: #fff;
  width: 90%;
  margin: auto
}

.teacher-title {
  font-size: 2.5vw;
  text-align: center;
  padding-top: 4vw;
  padding-bottom: 3vw;
}

.teacher-title span {
  line-height: 1.5;
  font-size: 4.5vw;
}

.teacher-name {
  text-align: right;
  width: 90%;
  margin: auto;
  padding-bottom: 2vw;
  font-size: 1.5vw;
}

.teacher-voice-item1 {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 3vw;
}

.teacher-voice-item1 img {
  width: 25vw;
}

.teacher-message-text {
  line-height: 2vw;
  font-size: 1.5vw;
}

.teacher-voice-item2 {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 3vw;
  padding-top: 3vw;
  padding-bottom: 5vw;
}

.teacher-voice-item2 img {
  width: 20vw;
}

/* 吹き出し */
/* .teacher-balloon {
  position: relative;
  display: inline-block;
  margin-bottom: 1vw;
  padding: 2vw 1vw;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 1.5vw;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
  width: 100%;
}

.teacher-balloon:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 15%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.teacher-balloon:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 15%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}

.teacher-balloon p {
  margin: 0;
  padding: 0;
  font-weight: bold;
} */

/* 吹き出しここまで */
.teacher-message-lead {
  font-weight: bold;
}


.circle-content {
  overflow: hidden;
  padding-top: 15vw;
}

.top-circle {
  background-color: #ffffff;
  border-radius: 1000px 1000px 0 0 / 400px 400px 0 0;
  margin: 16px -200px;
  padding: 65px 280px;
  min-height: 300px;
  text-align: center;
}

.top-circle-ttl {
  position: relative;
}

.top-circle-ttl img {
  position: absolute;
  top: -190px;
  left: -35px;
  width: 30vw;
}

.ttl span {
  letter-spacing: 1.2vw;
  font-size: 4.7vw;
  line-height: 1.2;
  display: inline-block;
  transform: translateX(0.5vw);
}

.point-ttl {
  color: #f7931e;
}

.top-circle-ttl {
  color: #3283c6;
  font-size: 2vw;
  padding-bottom: 3vw;
}

.top-circle-ttl p {
  margin-top: 3.5vw;
  font-weight: bold;
  font-size: 1.8vw
}

.top-circle-ttl-4 {
  font-size: 5vw;
}

.point-area {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin-bottom: 5vw;
}

.point-image {
  position: absolute;
  top: -13vw;
  right: -3vw;
  width: 25vw;
}

.point-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  background-image: linear-gradient(90deg, #128e87, #326cc6);
  border-radius: 20px;
  padding: 2vw;
  color: #fff;
  text-align: left;
}

.point-number {
  position: absolute;
  top: 55%;
  right: 2vw;
  transform: translateY(-50%);
  font-size: 21vw;
  font-weight: bold;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
}

.point-title {
  position: relative;
  z-index: 2;
  font-size: 2.3vw;
  font-weight: bold;
  margin-bottom: 1rem;
}

.point-text {
  position: relative;
  z-index: 2;
  font-size: 1.1vw;
  line-height: 1.8;
}

.study-fit-section {
  border: 3px solid #3283c6;
  border-radius: 1vw;
  position: relative;
  width: 90%;
  margin: auto;
  padding-bottom: 4vw;
}

.study-fit-label {
  position: absolute;
  background-color: #fff;
  padding: 0.8vw;
  color: #3283c6;
  font-weight: bold;
  font-size: 2.3vw;
  top: -2vw;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.study-fit-content {
  display: flex;
  justify-content: center;
  padding-top: 5vw;
  padding-bottom: 3vw;
  gap: 3vw;
}

.study-fit-content li {
  text-align: left;
}

.study-fit-content img {
  width: 20vw;
}

/* チェックボックス */
.study-fit-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.study-fit-section li {
  position: relative;
  padding-left: 3vw;
  margin-bottom: 1.5vw;
  font-size: 2.2vw;
  font-weight: bold;
}

.study-fit-section li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 1.7vw;
  height: 1.7vw;
  border-radius: 2px;

  background: #12a287;
}

.study-fit-section li::after {
  content: "";

  position: absolute;

  left: 0.8vw;
  top: 15%;

  width: 0.8vw;
  height: 2.2vw;

  border-right: 3px solid #f7931e;
  border-bottom: 3px solid #f7931e;

  transform: translateY(-50%) rotate(45deg);
}

.study-fit-text {
  font-size: 3vw;

  background: linear-gradient(90deg,
      rgba(18, 162, 135, 0.45),
      rgba(50, 131, 198, 0.45));
  background-repeat: no-repeat;
  background-size: 100% 1vw;
  background-position: bottom;
  display: inline;
}

/* チェックボックスここまで */
.study-fit2 {
  padding-bottom: 10vw;
}

.study-fit-text2 {
  font-size: 2vw;
  line-height: 3.3vw;
  padding-top: 2.5vw;
  color: #3283c6;
}

.study-fit-sectiontext {
  font-size: 3.4vw;
  color: #f7931e;
  font-weight: bold;
}

.circle-word {
  position: relative;
  display: inline-block;
}

.circle-word::before {
  content: "・・・・・";
  position: absolute;
  top: -2.5vw;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.4vw;
  font-size: 3vw;
  color: #f7931e;
}

.interview-box {
  display: flex;
  gap: 3vw;
  text-align: left;
  padding-top: 3vw;
  padding-bottom: 10vw;
  justify-content: space-between;
}

.interview-card {
  width: 50%;
}

.interview-image {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
  display: block;
  margin-bottom: 1vw;
}

.interview-job {
  font-size: 1.2vw;
  margin-bottom: 1vw;
}

.interview-catch {
  display: block;
  font-size: 1.5vw;
  line-height: 1.5;
  margin-bottom: 1vw;
  font-weight: bold;
}

.interview-text {
  line-height: 1.3;
  font-size: 1.4vw;
}

.supportbox {
  position: relative;
}

.supportbox-item {
  display: flex;
  flex-direction: row;
  /* ← ここが肝心 */
  gap: 1.5vw;
  align-items: flex-start;
  width: 100%;
}

.support-item {
  flex: 1;
  /* ← width:100% を削除して flex:1 に */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* カードを1つのボックスにまとめる */
.supportbox-itembox {
  width: 100%;
  border: 2px solid #2d82d8;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8.7vw;
  height: 39vw;
}

.supportbox-supportname {
  background: #2d82d8;
  color: #fff;
  text-align: center;
  padding: 1.5vw;
  margin: 0;
  font-size: 2vw;
}

.support-fukidashi-wrap {
  position: absolute;
  z-index: 2;
  margin-bottom: -3vw;
  margin-left: 1vw;
}

.support-fukidashi {
  width: 22vw;
  height: auto;
  display: block;
}

.support-fukidashi2 {
  top: 1.5vw;
}

.support-fukidashi3 {
  top: -0.8vw;
}

.supportbox-supportname2 {
  display: flex;
  align-items: center;
  font-size: 1.7vw;

}

.supportbox-supportname2 span {
  border: 0.2vw solid #3283c6;
  color: #3283c6;
  padding: 0.5vw 1vw;
  border-radius: 2vw;
  font-size: 1.2vw;
  margin-left: 1vw;
}

.supportbox2 {
  height: 100%;
  background: #fff;
  text-align: left;
  overflow: hidden;
  padding: 1vw;
  box-sizing: border-box;
}

.supportbox2-target {
  margin-top: 0;
  font-size: 1.4vw;
}

.supportbox2 img {
  width: 100%;
  height: 14vw;
  object-fit: cover;
  display: block;
  margin: 1vw 0;
}

.supportbox2 ul {
  font-size: 1.3vw;
  line-height: 1.5;
  padding-left: 2vw;
}

.backup-text {
  color: #3283c6;
}

.backup-text1 {
  font-size: 2.5vw;
  font-weight: bold;
  margin-top: 6vw;
}

.backup-text2 {
  font-size: 1.8vw;
  line-height: 2.5vw;
}

.btn-flat-border2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35vw;
  padding: 1vw 2vw;
  text-decoration: none;
  color: #3283c6;
  border: solid 2px #3283c6;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border2::after {
  content: "";
  position: absolute;
  right: 1.5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.5vw solid transparent;
  border-bottom: 0.5vw solid transparent;
  border-left: 0.8vw solid #3283c6;
}

.btn-flat-border2:hover {
  background: #3283c6;
  color: #ffffff;
}

.btn-flat-border2:hover::after {
  border-left-color: #ffffff;
}

.welfare-lead {
  width: 90%;
  text-align: center;
  margin: auto;
  color: #fff;
}

.ttl-white {
  font-weight: bold;
  margin-top: 10vw;
  font-size: 2.8vw;
}

.welfare-lead img {
  margin: auto;
  padding-bottom: 8vw;
}

.welfare-copy p {
  font-size: 1.4vw;
  padding-bottom: 3vw;
}

.btnbox {
  display: flex;
  gap: 2vw;
  justify-content: center;
}

.cta-box {
  position: relative;

  display: flex;
  justify-content: center;
}

.cta-box p {
  position: absolute;
  top: -4.5vw;
  background: #fff;
  padding: 0 1vw;
  z-index: 2;
  text-align: center;
  color: #12a287;
  padding: 1vw 2vw;
  font-size: 1.3vw;
  border-radius: 0.3vw;
  line-height: 1.6vw;
  font-weight: bold;
}

.btnbox a {
  height: 10vh;
  font-size: 2vw;
  margin-top: 0.5vw;
}

.cta-box:hover p {
  background: #12a287;
  color: #ffffff;
}

.cta-box:hover a {
  background: #ffffff;
  color: #12a287;
}

.cta-box:hover a::after {
  border-left-color: #12a287;
}

.course-section {
  width: 90%;
  margin: auto;
  text-align: center;
  color: #fff;
}

.course-box {
  display: flex;
  color: #606060;
  text-align: left;
  justify-content: space-between;
  gap: 2vw;
}

.course {
  width: 44vw;
  height: 18vw;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 2vw;
  padding-bottom: 4vw;
  text-decoration: none;
  color: #606060;
  transition: .3s;
  position: relative;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 2vw;
  line-height: 2.3vw;
}

.course-arrow {
  position: absolute;
  right: 25vw;
  bottom: 30%;
  transform: translateY(50%);
  width: 0;
  height: 0;
  border-top: 0.8vw solid transparent;
  border-bottom: 0.8vw solid transparent;
  border-left: 1.2vw solid #606060;
}

.course-arrow2 {
  right: 8vw;
}

.course span {
  font-size: 1.5vw;
}

.course:hover {
  transform: translateY(-0.5vw);
  opacity: 0.9;
}

.course1 {
  background-image: url(../img/course1.png);
}

.course2 {
  background-image: url(../img/course2.png);
}

.support-box {
  width: 90%;
  margin: auto;
}

.support-box h2 {
  text-align: center;
  margin-bottom: 5vw;
  color: #fff;
}


/* アコーディオン　ここから */
.accordion {
  max-width: 100%;
  margin-bottom: 1.2vw;
  background-color: #ffffff;
  border-radius: 2vw;
}

/* summary */
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #606060;
  font-weight: 600;
  cursor: pointer;
  font-size: 2vw;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

/* +マーク */
.accordion summary::before,
.accordion summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #cfcfcf;
  content: '';
}

.accordion summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion summary::after {
  transition: rotate .3s;
}

.accordion[open] summary::after {
  rotate: 90deg;
}

/* content */
.accordion-content {
  transform: translateY(-10px);

  opacity: 0;

  transition:
    transform 0.5s,
    opacity 0.5s;
}

.accordion[open] .accordion-content {
  transform: none;
  opacity: 1;
}

/* =======================
list
======================= */

.accordion-list {
  width: 90%;

  margin: auto;

  padding:
    0 0 2vw 0;

  list-style: none;

  color: #606060;
}

.accordion-list li {
  position: relative;

  padding-left: 2.5vw;

  margin-bottom: 1.5vw;

  line-height: 2;
}

/* 黒丸 */

.accordion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2vw;
  width: 1.3vw;
  height: 1.3vw;
  border-radius: 50%;
  background: #606060;
}

/* タイトル */

.accordion-title {
  display: block;
  margin-bottom: 0.5vw;
  font-weight: bold;
  font-size: 1.8vw;
}

/* 本文 */

.accordion-text {
  display: block;
  margin-top: 0;
  line-height: 2.3vw;
  margin-bottom: 2.5vw;
  font-size: 1.5vw;
}

/* アコーディオンここまで */


.cta-section {
  background-color: #fff;
  margin-top: 10vw;
  padding-top: 7vw;
  text-align: center;
  padding-bottom: 10vw;
}

.cta-sectionbox {
  /* display: flex; */
  width: 50%;
  margin: auto;
}

.cta-btn {
  height: 25vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: left;
  text-decoration: none;
  font-size: 2.5vw;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  padding-left: 2vw;
  transition:
    transform .3s,
    opacity .3s,
    filter .3s;
  position: relative;
  overflow: hidden;
}

.cta-btn1::after {
  content: "";

  position: absolute;

  right: 10vw;
  top: 50%;

  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 0.7vw solid transparent;
  border-bottom: 0.7vw solid transparent;
  border-left: 1.1vw solid #fff;

  transition: .3s;
}

.cta-btn2::after {
  content: "";

  position: absolute;

  right: 27vw;
  top: 50%;

  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 0.7vw solid transparent;
  border-bottom: 0.7vw solid transparent;
  border-left: 1.1vw solid #fff;

  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-0.5vw);

  opacity: 0.95;

  filter: brightness(1.05);
}

.cta-btn1 {
  background-image: url(../img/cta1.png);
  margin-bottom: 2vw;
  margin-top: 5vw;
}

.cta-btn2 {
  background-image: url(../img/cta2.png);
}

.footer-contact-section {
  background-color: #fff;
}

.entry-info {
  width: fit-content;
  margin: auto;
}

.entry-info p {
  margin-top: 0;
  text-align: left;
}

.entry-info h2 {
  margin: 0 auto;
  font-size: 5vw;
  text-align: left;
  margin-bottom: 6vw;
}

.entry-info-text {
  font-size: 1.4vw;
  line-height: 2vw;
  color: #3283c6;
}


.site-footer-inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  text-align: center;
}

.school-info {
  width: 70%;
  margin: auto;
  text-align: center;
}

.school-logo {
  width: 45vw;
  max-width: 450vw;
  margin-bottom: -1.5vw;
}

.school-logo-link img {
  display: block;
}

.school-logo-link {
  display: inline-block;
}

.school-address {
  font-size: 1.8vw;
  font-style: normal;
  letter-spacing: 0.3vw;
  padding-bottom: 3vw;
}

.school-contact {
  padding-bottom: 3vw;
}

.school-contact-head {
  display: flex;
  align-items: center;
  gap: 1vw;
  justify-content: center;
}

.school-contact-label {
  font-size: 3vw;
}

.school-contact-head img {
  height: 8vh;
}

.school-tel {
  font-size: 3.8vw;
  letter-spacing: 0.3vw;
}

.site-footer {
  background-color: #3283c6;
  color: #fff;
  padding: 0.5rem 0.5rem;
}

.footer-title {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.footer-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-copy {
  margin: 0;
  font-size: 1vw;
}



@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .site-header-inner {
    width: 100%;
    height: 70px;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .site-logo {
    margin: auto;
  }

  .site-logo img {
    width: 100%;
    height: auto;
  }

  .pc-none {
    display: block;
  }

  .t-none {
    display: none;
  }

  .main-visual {
    padding-top: 0px;
  }

  .top-circle-ttl img {
    top: -200px;
    left: -2vw;
  }

  .top-main {
    height: calc(100svh - 70px);
  }

  .intro-section {
    padding-top: 35vw;
  }

  .intro-message p {
    width: 90%;
    font-size: 2.5vw;
    gap: 1vw;
  }

  .cta-buttons {
    font-size: 2.5vw;
  }

  .teacher-title {
    font-size: 3.3vw;
  }

  .teacher-title span {
    font-size: 6vw;
  }

  .teacher-name {
    font-size: 2vw;
  }

  .teacher-message-text {
    line-height: 2.5vw;
    font-size: 1.8vw;
  }

  .teacher-voice-item1 img {
    width: 25vw;
    object-fit: cover;
  }

  .teacher-voice-item2 img {
    object-fit: cover;
  }

  .point-title {
    font-size: 4.5vw;
  }

  .point-text {
    font-size: 2.2vw;
  }

  .point-number {
    font-size: 40vw;
    right: 4vw;
  }

 .point-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
.top-circle-ttl{
  padding-bottom: 7vw;
}
.point-image {
  position: absolute;
  top: -18vw;
  right: -2vw;
  width: 35vw;
  z-index: 3;
}
  .study-fit-label {
    font-size: 3vw;
    top: -2.5vw;
  }

  

  .study-fit-text2 {
    font-size: 3vw;
    line-height: 4.5vw;
  }

  .study-fit-sectiontext {
    font-size: 5.4vw;
  }

  .circle-word::before {
    top: -4.5vw;
    font-size: 5vw;
  }

  .top-circle {
    padding: 15vw 30vw;
  }

  .top-circle-ttl p {
    font-size: 3vw;
  }

  .point-box {
    padding: 4vw;
  }

  .point-box:nth-of-type(1) {
    order: 1;
  }

  .point-box:nth-of-type(2) {
    order: 3;
  }

  .point-box:nth-of-type(3) {
    order: 4;
  }

  .point-box:nth-of-type(4) {
    order: 5;
  }

  .interview-box {
    flex-direction: column;
  }

  .interview-card {
    width: 100%;
  }

  .interview-job {
    font-size: 2vw;
  }

  .interview-catch {
    font-size: 2.2vw;
  }

  .interview-text {
    font-size: 2vw;
    line-height: 1.5;
  }

  .support-item {
    width: 100%;
  }

  .supportbox-item {
    flex-direction: column;
  }

  .supportbox-itembox {
    width: 100%;
    height: 68vw;
    margin-top: 11vw;
  }

  .supportbox2 {
    padding: 3vw;
  }

  .supportbox2 img {
    width: 100%;
    object-fit: cover;
    height: 40vw;
  }

  .support-img1 {
    top: 5.7vw;
  }
.btn-flat-border2{
  width: 39vw;
}
.backup-text1{
  font-size: 4.5vw;
}
.backup-text2{
      font-size: 2.5vw;
    line-height: 3.5vw;
}
  .ttl {
    font-size: 5vw;
  }

  .ttl span {
    font-size: 6.8vw;
  }

  .ttl-sub {
    font-size: 2vw;
  }

  .support-fukidashi {
    width: 35vw;
  }

  .supportbox-supportname {
    font-size: 3vw;
  }

  .support-fukidashi-wrap {
    right: 0;
    top: -3vw;
  }

  .support-fukidashi2 {
    top: -0.5vw;
    left: 0;
  }

  .support-fukidashi3 {
    width: 27vw;
    top: -0.5vw;
    right: 1vw;
  }

  .support-img {
    height: 10vh;

  }

  .supportbox-supportname2 {
    margin-bottom: 1vw;
  }

  .supportbox-supportname2 p {
    font-size: 3vw;
    margin: 0;
  }

  .supportbox-supportname2 span {
    font-size: 1.5vw;
    border: 0.5vw solid;
    border-radius: 2vw;
    padding: 0.3vw 1.3vw;
    font-weight: bold;
  }

  .supportbox2-target {
    font-size: 1.5vw;
  }

  .supportbox2 ul {
    font-size: 1.8vw;
    line-height: 2.5vw;
  }

  .btnbox a {
    height: 7vh;
        padding-top: 2vw;
  }

  .btn-flat-border {
    width: 38vw;
  }
.cta-box p{
  font-size: 1.7vw;
  line-height: 2.3vw;
}
  .accordion summary {
    font-size: 2.5vw;
  }

  .accordion-title {
    font-size: 2.2vw;
  }

  .accordion-list li::before {
    top: 1.6vw;
  }

  .accordion-text {
    font-size: 1.8vw;
  }

  .cta-sectionbox {
    width: 70%;
  }

  .cta-btn {
    height: 14vh;
  }

  .cta-btn1::after {
    right: 28vw;
  }

  .cta-btn2::after {
    right: 46vw;
  }
}

@media screen and (max-width: 599px) {
  .site-header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .site-logo {
    width: 60vw;
  }

  /* .hamburger {
    width: 30px;
    height: 23px;
  } */

  /* .site-nav {
    top: 64px;
  }

  .site-nav a {
    padding: 1rem 0;
    font-size: 0.9rem;
  } */

  /* .nav-toggle:checked~.hamburger span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .nav-toggle:checked~.hamburger span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  } */

  .main-visual {
    padding-top: 64px;
  }

  .sp .top-main {
    height: auto;

    overflow: hidden;

    position: relative;
  }

  .sp .top-main img {
    width: 100%;

    height: auto;

    display: block;
  }

  .service__ttl {
    margin-bottom: 7vw;
    line-height: 8vw;
    padding: 0 6vw;
    font-size: 4vw;
  }
.ttl-small{
  font-size: 4vw;
    margin-top: -9vw;
}
  .intro-section {
    padding-top: 10vw;
  }

  .intro2-section {
    flex-direction: column;
    width: 60%;
    text-align: center;
    margin: auto;
    font-size: 5vw;
    padding-bottom: 6vw;
  }

  .intro2-change {
    padding: 3vw 4vw;
    border-radius: 5vw;
  }

  .intro2-up {
    padding: 3vw 4vw;
    border-radius: 5vw;
  }

  .intro2-skill {
    padding: 3vw 4vw;
    border-radius: 5vw;
  }

  .intro-message p {
    width: 95%;
    padding: 6vw 0;
    font-size: 3.6vw;
    margin-bottom: 8vw;
  }

  .pc-none {
    display: block;
  }

  .cta-buttons {
    font-size: 5vw;
    display: flex;
    flex-direction: column;
  }

  .btn-flat-border {
    width: 80vw;
    margin: auto;
    padding: 5vw;
  }

  .btn-flat-border::after {
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 2vw solid #fff;
    right: 4.5vw;
  }

  .teacher-section {
    width: 100%;
    margin-top: 20vw;
  }

  .teacher-title {
    font-size: 3.7vw;
    padding: 7vw 0;
  }

  .teacher-title span {
    font-size: 6.7vw;
  }

  .teacher-name {
    font-size: 3.4vw;
    padding-bottom: 5vw;
  }

  .teacher-voice-item1 {
    flex-direction: column;
  }

  .teacher-voice-item1 img {
    width: 100vw;
    height: 30vh;
    object-fit: cover;
    object-position: center 10%;
    display: block;
  }

  .teacher-message-text {
    font-size: 4.2vw;
    line-height: 5.7vw;
  }

  .teacher-voice-item2 {
    flex-direction: column-reverse;
  }

  .teacher-voice-item2 img {
    width: 100%;
  }

  .circle-content {
    padding-top: 30vw;
  }

  .topics-title {
    width: calc(100% - 40px);
    margin: 1rem auto 4rem;
  }

  .top-circle {
           border-radius: 55% 55% 0 0 / 110px 110px 0 0;
    margin: 0;
    padding: 15vw 4vw;
  }

  .top-circle-ttl img {
    top: -30vw;
        left: 5vw;
        width: 35vw;
  }

  .ttl span {
    font-size: 9.5vw;
  }

  .ttl {
    font-size: 6.2vw;
    line-height: 9vw;
    text-shadow:
      0 0 0.2vw #3283c6,
      0 0 0.45vw #3283c6,
      0 0 0.8vw #3283c6,
      0 0 1.3vw rgba(50,131,198,.98),
      0 0 2vw rgba(50,131,198,.9),
      0 0 2.8vw rgba(50,131,198,.78);
  }
.ttl-large{
  font-size: 7vw;
}
  .top-circle-ttl p {
    font-size: 5vw;
    line-height: 6.5vw;
  }

  .point-box {
    border-radius: 3vw;
    padding: 4vw;
  }

  .point-image {
    width: 45vw;
    top: -23.5vw;
  }

  .point-title {
    font-size: 4.5vw;
  }

  .point-text {
    font-size: 3.2vw;
    margin-top: 0;
  }

  .point-number {
    font-size: 45vw;
    right: 2vw;
  }

  .study-fit-section {
    width: 100%;
    padding-bottom: 7vw;
    box-sizing: border-box;
  }

  .point-area {
    padding-bottom: 5vw;
    width: 100%;
  }
.top-circle-ttl{
  padding-bottom: 18vw;
}
  .study-fit-label {
    font-size: 4.5vw;
    top: -3vw;
  }

  .study-fit-content {
    flex-direction: column;
    align-items: center;
    padding: 8vw 0;
  }

  .study-fit-section li {
    margin-bottom: 2.5vw;
    font-size: 4vw;
    padding-left: 5.5vw;
  }

  .study-fit-section li::before {
    width: 3vw;
    height: 3vw;
    border-radius: 0.3vw;
  }

  .study-fit-section li::after {
            left: 1.2vw;
        top: 24%;
        width: 0.8vw;
        height: 3.2vw;
  }

  .study-fit-content img {
    width: 45vw;
  }

  .study-fit-text {
    font-size: 4.5vw;
    background-size: 100% 1.5vw;
    font-weight: bold;
  }

  .study-fit-text2 {
    font-size: 4vw;
    line-height: 6.3vw;
    margin-bottom: 5vw;
  }

  .study-fit-sectiontext {
    font-size: 6.2vw;
  }

  .circle-word::before {
    top: -4.5vw;
    font-size: 6vw;
  }

  .study-fit2 {
    padding-bottom: 20vw;
  }

  .ttl-sub {
    font-size: 4vw;
    font-weight: bold;
    line-height: 1.2;
  }

  .interview-job {
    font-size: 3.5vw;
  }

  .interview-catch {
    font-size: 4vw;
    margin-top: 2vw;
  }

  .interview-text {
    font-size: 3.9vw;
    margin-bottom: 10vw;
  }

  .interview-box {
    object-fit: cover;
        display: block;
        margin-bottom: 1vw;
        width: 100%;
  }
.support-item,
.supportbox-itembox,
.supportbox2 {
  box-sizing: border-box;
}
  .supportbox-itembox {
    height: 90vw;
  }

  .supportbox-item {
    gap: 14vw;
        padding-top: 11vw;
        width: 100%;
  }

  .supportbox-supportname2 p {
    font-size: 4.5vw;
  }

  .supportbox-supportname {
    font-size: 6vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .supportbox-supportname2 {
    font-size: 5.5vw;
  }

  .supportbox-supportname2 span {
    font-size: 3.5vw;
    border-radius: 3vw;
    padding: 0.5vw 3vw;
    margin-left: 3vw;
  }

  .supportbox2-target {
    font-size: 3.5vw;
  }

  .supportbox2 ul {
    font-size: 3.5vw;
    line-height: 5vw;
    margin-left: 3vw;
  }

  .support-fukidashi {
    width: 60vw;
  }

  .support-fukidashi-wrap {
    top: -13vw;
  }

  .support-fukidashi2 {
    transform: translateY(4.3vw);
    left: 3vw;
  }

  .support-fukidashi3 {
    width: 47vw;
    right: 3vw;
    transform: translateY(4vw);
  }

  .backup-text1 {
    font-size: 5.5vw;
    line-height: 1.3;
  }

  .backup-text2 {
    font-size: 4vw;
    line-height: 5vw;
    margin-bottom: 10vw;
  }

  .cta-buttons {
    align-items: center;
        width: 100%;
        margin-bottom: 5vw;

  }

  .btn-flat-border2 {
    width: 90%;
    padding: 4vw 2vw;
  }

  .btn-flat-border2::after {
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 3.5vw solid #3283c6;
    right: 3vw;
  }

  .ttl-white {
    padding-top: 10vw;
    padding-bottom: 4vw;
    font-size: 5.5vw;
    line-height: 7vw;
  }

  .welfare-copy p {
    font-size: 3.5vw;
    line-height: 4.5vw;
  }

  .btnbox {
    flex-direction: column;
    gap: 10vw;
    padding-top: 5vw;
  }

  .cta-box p {
    font-size: 3.5vw;
    top: -9.5vw;
    line-height: 4.5vw;
  }
  .btnbox a {
    height: 5vh;
    font-size: 4.5vw;
    padding-top: 4vw;
    font-weight: bold;
  }

  .course-box {
    flex-direction: column;
    width: 90%;
    margin: auto;
    gap: 5vw;
  }

  .course {
    width: 100%;
    height: 30vw;
    font-size: 5vw;
    line-height: 4.5vw;
    padding: 3vw;
    box-sizing: border-box;
  }

  .course span {
    font-size: 3.4vw;
  }

  .course-arrow {
    border-top: 1.5vw solid transparent;
    border-bottom: 1.5vw solid transparent;
    border-left: 2.3vw solid #606060;
        right: 42vw;
  }
.course-arrow2{
  right: 4vw;
}
  .accordion {
    margin-bottom: 3vw;
  }

  .accordion summary {
    font-size: 5vw;
  }

  .accordion-title {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 1.5vw;
  }

  .accordion-list li::before {
    top: 2vw;
  }

  .accordion-text {
    font-size: 3.8vw;
    line-height: 4.8vw;
    margin-bottom: 4vw;
  }

  .accordion-list {
    padding: 0 0 3vw 0;
  }

  .cta-sectionbox {
    width: 90%;
    padding-top: 1vw;
  }

  .cta-btn {
    font-size: 4vw;
    padding-left: 4vw;
  }

  .cta-btn2::after {
    border-top: 1.5vw solid transparent;
    border-bottom: 1.5vw solid transparent;
    border-left: 3vw solid #fff;
    right: 51vw;
  }

  .cta-btn1::after {
    border-top: 1.5vw solid transparent;
    border-bottom: 1.5vw solid transparent;
    border-left: 3vw solid #fff;
    right: 23vw;
  }
/* .entry-info{
  width: 100%;
} */
.entry-info p{
  padding-top: 5vw;
}
.entry-info-text{
  width:fit-content;

  font-size: 3vw;
    line-height: 4vw;
}
.entry-info h2{
  margin-top: 2vw;
  font-size: 7vw;
}
.school-info{
  width: 90%;
}
.school-logo{
  width: 70vw;
}
.school-address{
  font-size: 3.5vw;
  padding-bottom: 7vw;
}
.school-contact{
  padding-bottom: 10vw;
}
.school-contact-label{
  font-size: 5vw;
}
.school-contact-head img{
  height: 2vh;
}
.school-tel{
  font-size: 5.8vw;
}
.footer-copy{
  font-size: 2vw;
}
  .site-footer {
    padding: 3vw 0;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-tel {
    font-size: 1.3rem;
  }
}