@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --blue: #b6dfe3;
  --deep-blue: #34b6c3;
  --en: 'Century Gothic', 'Arial', sans-serif;
  --def: "Zen Kaku Gothic Antique", serif;
  --text-color: #333333
}

body {
  color: var(--text-color);
  /* RGB */
  background-color: #ffffff;
  font-family: var(--def);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.1rem;
}

.en {
  font-family: var(--en);
}

a {
  color: var(--text-color);
}

a:hover {
  opacity: 0.5;
}

.clarity a:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blue {
  color: var(--blue);
}

.bold {
  font-weight: 700;
}

.mid {
  font-weight: 500;
}

.right {
  text-align: right;
}

.left {
  text-align: justify;
}

.fadeInUpTrigger,
.fadeInRightTrigger,
.fadeInLeftTrigger {
  opacity: 0;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

/* header */
header {
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.16);
}

.header_inner {
  margin: 0 auto 0 2vw;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_left {
  display: flex;
  align-items: center;
}

header .logo {
  width: 180px;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sp_tel,
.sp_mail {
  max-width: 23px;
}

.ham_btn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 999;
  margin: 0;
  right: 5px;
  background: #37d3e2;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 12px;
  height: 1px;
  background: #ffffff;
  width: 26px;
  top: 26px;
}

.ham_btn span:nth-of-type(1) {
  top: 10px;
}

.ham_btn span:nth-of-type(2) {
  top: 18px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 27px;
  left: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.ham_btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 1px;
  left: -5px;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 2px;
  left: 8px;
}

.nav_wrap {
  padding: 60px 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--blue);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  transition: opacity .6s ease, visibility .6s ease;
  line-height: 1.45;
}

.nav_wrap ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
}

.nav_wrap li a {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  font-size: clamp(1.6rem, 4vw, 2.0rem);
  letter-spacing: 0.02em;
}

.nav_wrap li a span {
  font-family: var(--en);
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
  color: #219dae;
}

.nav_wrap.show {
  visibility: visible;
  opacity: 1;
}

/* MV */
.MV {
  position: relative;
  aspect-ratio: 480/520;
}

.MV .MV_slide {
  aspect-ratio: 480/520;
}

.MV .MV_slide .slide {
  width: 100%;
  aspect-ratio: 480/520;
  background-image: url(../img/mv01.webp);
  background-size: cover;
  background-position: 30% center;
}

.MV .MV_slide .slide:nth-of-type(2) {
  background-image: url(../img/mv02.webp);
  background-position: 60% center;
}

.mv_deco {
  position: absolute;
  width: 100%;
  aspect-ratio: 480/140;
  background-image: url(../img/sp_mv-deco.webp);
  background-size: cover;
  background-position: center;
  bottom: 0;
  left: 0;
  transform: translateY(80%);
  z-index: 5;
}

.mv_text {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  bottom: 5%;
  text-align: center;
  width: 100%;
}

.mv_text h2 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: min(7vw, 5.0rem);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 4px 0 8px rgba(0, 0, 0, 0.4);
  word-break: keep-all;
}

.mv_text h2 span {
  font-family: var(--en);
  font-size: min(4vw, 3.3rem);
  font-weight: 500;
}

/* 共通 */
section {
  position: relative;
  padding: min(10vw, 100px) 0 min(12vw, 120px)
}

.inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(10vw, 80px);
}

.section_ttl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(3vw, 20px);
}

.section_ttl {
  font-size: clamp(3.0rem, 12vw, 6.0rem);
  display: block;
  font-weight: 500;
  font-family: var(--en);
  line-height: 1.5;
  position: relative;
}

.section_ttl::before {
  content: "";
  width: 82px;
  height: 3px;
  border-radius: 2px;
  background-color: #37d3e2;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.section_ttl::first-letter {
  color: #37d3e2;
}

.section_ttl-wrap span {
  font-size: clamp(2rem, 6vw, 3.0rem);
  display: block;
  line-height: 3;
}

#top_news {
  padding-top: 25vw;
  background-color: var(--blue);
}

#top_news .section_ttl {
  font-size: clamp(3.0rem, 8vw, 6.0rem);
  display: block;
  font-weight: 500;
  font-family: var(--en);
  line-height: 1.5;
  position: relative;
}

#top_news .inner {
  background-color: #ffffff;
  padding: 5%;
  border-radius: 50px;
  gap: min(5vw, 40px);
}

#top_news .section_ttl-wrap {
  gap: min(3vw, 20px);
}

#top_news .section_ttl-wrap a {
  color: #219dae;
  font-weight: 600;
  padding-right: 2rem;
  position: relative;
}

#top_news .section_ttl-wrap a:after {
  content: "";
  width: clamp(0.8rem, 2vw, 1rem);
  aspect-ratio: 1;
  border-bottom: 2px solid #219dae;
  border-right: 2px solid #219dae;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translateY(-50%) rotate(-45deg);
}

#top_news .section_ttl::before {
  right: auto;
  left: 0;
}

.news_list-inner {
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-color: var(--blue) #ffffff;
}

.news_list-inner li {
  padding: 20px 0;
  border-bottom: 2px dashed var(--blue);
  font-weight: 600;
}

.news_list-inner li a {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat {
  color: #ffffff;
  padding: 0 min(4vw, 14px);
  background-color: #37d3e2;
  display: flex;
  width: auto;
  margin: 0 auto 0 0;
  border-radius: calc(infinity * 1px);
  line-height: 1.8;
}

#top_greeting {
  background-color: var(--blue);
}

#top_greeting .deco {
  position: absolute;
  width: min(95%, 820px);
  aspect-ratio: 430/200;
  background-image: url(../img/deco01.webp);
  background-size: cover;
  background-position: 0 0;
  top: 0;
  right: 0;
}

.inner {
  position: relative;
  z-index: 3;
}

#top_greeting .section_ttl-wrap {
  color: #ffffff;
  align-items: flex-start;
}

#top_greeting .section_ttl::before {
  right: auto;
  left: 0;
}

.content_textWrap {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 40px);
}

.section_lead {
  font-size: clamp(2rem, 6vw, 4.0rem);
  font-weight: 600;
  line-height: 1.5;
  word-break: keep-all;
}

#top_greeting .inner {
  width: 100%;
}

#top_greeting .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#top_greeting .section_lead {
  margin-top: min(8vw, 80px);
}

.greeting_img {
  width: 100%;
  aspect-ratio: 4/3;
  background-image: url(../img/top_about-img01.webp);
  background-size: cover;
}

#top_greeting .deco_bg {
  position: absolute;
  width: 100%;
  aspect-ratio: 4/3;
  background-image: url(../img/TOP-1_02.webp);
  background-size: cover;
  background-position: center;
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;
}

.school {
  background-image: url(../img/school_bg.webp);
  background-size: cover;
  padding-top: 40vw;
}

#top_troubles .deco {
  width: 60%;
  position: absolute;
  z-index: 3;
  top: 20vw;
  left: 0;
  transform: translateY(-40%);
}

.school .section_ttl-wrap {
  align-items: flex-end;
}

.school ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 10px;
  width: 90%;
}

.school ul li {
  background-color: #88dbe3;
  border-radius: 20px;
  padding: min(3em, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(2vw, 14px);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.school ul li .content_lead {
  font-weight: 600;
  font-size: clamp(1.8rem, 1em, 2.2rem);
  line-height: 1.5;
  word-break: keep-all;
  width: auto;
  margin: 0 auto;
  text-align: center;
}

#top_about .section_ttl-wrap {
  gap: 30px;
}

#top_about .section_ttl::before {
  right: 50%;
  transform: translateX(50%);
}

#top_about .section_ttl-wrap .deco {
  max-width: 100px;
}

#top_about .section_lead {
  text-align: center;
}

ol {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 100px);
  list-style: none;
}

#top_about .content_item {
  border: 1px solid var(--deep-blue);
  padding: min(3em, 20px);
  display: flex;
  flex-direction: column;
  gap: min(2vw, 40px);
}

#top_about .content_item .point {
  width: min(50%, 180px);
}

#top_about .content_item h3 {
  font-size: clamp(1.6rem, 4vw, 4.0rem);
}

#top_about .deco01 {
  position: absolute;
  bottom: 0;
  width: 20%;
  right: 0;
  transform: translateY(50%);
  z-index: 2;
}

#top_about .deco02 {
  position: absolute;
  bottom: 0;
  width: 50%;
  left: 0;
  transform: translateY(50%);
  z-index: 2;
}

#top_price {
  background-color: #b6dfe3;
  padding: 0;
}

#top_price .upper_bg {
  width: 100%;
  aspect-ratio: 1920/131;
  background-image: url(../img/TOP_05.webp);
  background-size: contain;
  margin-bottom: -1px;
}

#top_price .bottom_bg {
  width: 100%;
  aspect-ratio: 4/3;
  background-image: url(../img/price_bg-deco.webp);
  background-size: cover;
  background-position: 60% center;
}

#top_price .section_ttl {
  color: #ffffff;
  display: flex;
}

#top_price .section_ttl::first-letter {
  color: #ffffff;
}

#top_price .section_ttl span {
  color: #219dae;
  font-size: clamp(3.0rem, 12vw, 6.0rem);
  display: block;
  font-weight: 500;
  font-family: var(--en);
  line-height: 1.5;
}

#top_price .section_ttl::before {
  background-color: #219dae;
  right: 50%;
  transform: translateX(50%);
}

#top_price .content {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#top_price .content_price {
  background-color: #ffffff;
  text-align: center;
  padding: min(10vw, 40px) 0;
  border-radius: 30px;
}

#top_price .content_price p {
  font-size: min(5vw, 2.8rem);
}

#top_price .content_price p.note {
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
}

.flow {
  background-color: #b6dfe3;
  padding-top: 0;
  border-bottom: 10px solid #219dae;
  ;
}

.flow .section_ttl-wrap {
  align-items: flex-start;
  color: #ffffff;
}

.flow .section_ttl::first-letter {
  color: #ffffff;
}

.flow .section_ttl::before {
  background-color: #219dae;
  right: auto;
  left: 0;
}

.flow ol {
  gap: min(5vw, 60px);
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
}

.flow ol li {
  background-color: #ffffff;
  padding: min(3em, 20px);
  border-radius: min(5vw, 30px);
  display: flex;
  align-items: flex-end;
  position: relative;
}

.flow ol li::before {
  content: "";
  width: 0;
  height: 0;
  border-right: min(3vw, 15px) solid transparent;
  border-left: min(3vw, 15px) solid transparent;
  border-top: min(5vw, 20px) solid #ffffff;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.flow ol li:last-child:before {
  display: none;
}

.flow ol li .flow_icon {
  width: 30%;
  max-width: 175px;
}

.flow ol li .text_wrap {
  width: 70%;
  max-width: 577px;
}

.flow ol li .text_wrap h3 {
  color: var(--deep-blue);
  font-size: clamp(1.4rem, 3.7vw, 2rem);
}

#ninja_works {
  background-image: url(../img/sp-works_bg.webp);
  background-size: cover;
  padding-bottom: 0;
}

#ninja_works .section_ttl::before {
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
}

#ninja_works .section_lead {
  color: #219dae;
  text-align: center;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
}

.ninja_works {
  max-width: 400px;
  margin: 0 auto;
}

#ninja_works ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.5;
  font-weight: 600;
}

#ninja_works .bg02 {
  margin: min(8vw, 80px) auto;
  padding: min(5vw, 40px) 0 min(8vw, 80px);
  background-color: #ffffff;
}

#ninja_works .content {
  padding: min(5vw, 40px) min(2vw, 20px) min(8vw, 80px);
  border-radius: 30px;
  border: 1px solid #219dae;
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#ninja_works .content_img {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}

#ninja_works .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
  align-items: center;
  text-align: left;
  font-size: clamp(1.6rem, 3.7vw, 2.4rem);
}

#ninja_works .content_textWrap ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.more {
  width: 70%;
  max-width: 290px;
  padding: 8px 20px 8px 8px;
  border-radius: calc(infinity*1px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--deep-blue);
  position: relative;
  font-size: clamp(1.6rem, 6vw, 2.0rem);
  font-weight: 600;
}

.more::after {
  content: "";
  width: clamp(0.8rem, 2vw, 1rem);
  aspect-ratio: 1;
  border-bottom: 2px solid var(--text-color);
  border-right: 2px solid var(--text-color);
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 1;
  transform: translateY(-50%) rotate(-45deg);
}

.company {
  background-color: var(--blue);
}

.company .section_ttl-wrap {
  align-items: flex-start;
  position: relative;
}

.company .section_ttl::before {
  right: auto;
  left: 0;
}

.company .section_ttl-wrap .deco {
  width: 60%;
  position: absolute;
  right: 0;
  bottom: -2vw;
}

.company .content {
  display: flex;
  flex-direction: column;
  gap: min(10vw, 80px);
}

.company .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

dl {
  width: 100%;
  max-width: 520px;
}

.description-item {
  display: flex;
  flex-direction: column;
}

.description-item dt {
  padding: 8px;
  border-bottom: 1px solid var(--deep-blue);
}

.description-item dd {
  padding: 8px;
  border-bottom: 1px solid var(--deep-blue);
}

.contact {
  background-image: url(../img/contact_bg.webp);
  background-size: cover;
}

.contact .section_ttl-wrap {
  gap: 0;
}

.contact .section_ttl {
  color: #ffffff;
  display: flex;
}

.contact .section_ttl::first-letter {
  color: #ffffff;
}

.contact .section_ttl span {
  color: #219dae;
  font-size: clamp(3.0rem, 12vw, 6.0rem);
  display: block;
  font-weight: 500;
  font-family: var(--en);
  line-height: 1.5;
}

.contact .section_ttl::before {
  background-color: #219dae;
  right: 50%;
  transform: translateX(50%);
}

.contact .section_ttl-wrap span {
  color: #ffffff;
}

.contact p {
  text-align: center;
  color: #ffffff;
  word-break: keep-all;
}

.contact_btn--wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

.contact_btn {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.contact_map {
  width: 100%;
  height: 450px;
	margin-top: 5rem;
	margin-bottom: 5rem;
}
.contact_map2 {
  width: 100%;
  height: 450px;
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.contact .contact_map iframe {
  display: block;
}
.contact_map p{
  text-align: center;
    font-size: x-large;
    font-weight: bold;
}
.contact_map2 p{
	text-align: center;
    font-size: x-large;
    font-weight: bold;
}
footer .inner {
  padding: 40px 0;
  margin-bottom: 480px;
  margin: 0 auto;
}

.footer_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(5vw, 40px);
}

.footer_left a {
  width: 70%;
  max-width: 260px;
  margin: 0 auto;
}

.footer_logo {
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
}

.footer_nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(2vw, 12px);
  width: 90%;
  margin: 0 auto;
}

.footer_nav ul a {
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(1.6rem, 4vw, 2.0rem);
  line-height: 1.2;
  font-weight: 600;
}

.footer_nav ul a span {
  font-family: var(--en);
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
  color: var(--deep-blue);
}

#go_top {
  width: 50px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 10;
}

.cr {
  padding: 16px 0;
  background-color: var(--deep-blue);
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    height: 100px;
    left: 0;
    z-index: 100;
    width: 100%;
  }

  .header_left {
    gap: 20px;
  }

  header .logo {
    width: 300px;
    min-width: 300px;
  }

  .header_pc-tel {
    width: 200px;
    display: none;
  }

  /* pcスタイル */
  @media screen and (min-width: 1280px) {
    .header_pc-tel {
      display: block;
    }
  }

  .header_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0;
    padding-right: 1vw;
  }

  .header_right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    max-width: 930px;
    width: 70%;
    height: 100px;
  }

  .pc_nav {
    width: 100%;
    z-index: 50;
    display: flex;
    align-items: center;
    height: 100px;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 100px;
  }

  .pc_nav ul a {
    text-decoration: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-size: clamp(1.4rem, 1vw, 1.8rem);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    height: 100px;
    padding-bottom: 20px;
  }

  .pc_nav ul a:hover {
    opacity: 1;
  }

  .pc_nav ul a span {
    font-family: var(--en);
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    color: var(--deep-blue);
  }

  .pc_nav .U_line a::after {
    content: "";
    width: 8px;
    height: 11px;
    background-color: var(--deep-blue);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .3s;
  }

  .pc_nav .U_line>a:hover:after {
    opacity: 1;
  }

  .pc_nav .U_line.active>a::after {
    opacity: 1;
  }

  .float_wrap.fixed .U_line a::after {
    bottom: 0;
    transform: translateY(147%);
  }

  .header_contact {
    width: 100%;
    max-width: 160px;
  }

  .header_contact a {
    width: 160px;
  }

  .MV {
    aspect-ratio: 1920/900;
  }

  .MV .MV_slide {
    aspect-ratio: 1920/900;
  }

  .MV .MV_slide .slide {
    aspect-ratio: 1920/900;
  }

  .mv_text {
    width: 90%;
    max-width: 1280px;
    top: auto;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
  }

  .mv_deco {
    position: absolute;
    width: 100%;
    aspect-ratio: 1920/300;
    background-image: url(../img/mv_deco.webp);
    background-size: cover;
    background-position: center;
    bottom: 0;
    left: 0;
    transform: translateY(30%);
    z-index: 5;
  }

  .inner {
    max-width: 1280px;
  }

  #top_news {
    padding: 8vw 0;
  }

  #top_news .inner {
    flex-direction: row;
    padding: 60px 40px;
  }

  #top_news .section_ttl-wrap {
    text-align: left;
    width: 280px;
  }

  .news_list_wrap {
    display: flex;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
    transform: translateX(10%);
    position: relative;
  }

  .news_list-inner {
    width: calc(100% - 280px);
    position: relative;
    margin: 0 auto 0 0;
  }

  .news_list-inner ul li a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 40px;
    padding: 14px 0;
  }

  .cat {
    margin: 0;
  }

  #top_greeting .inner {
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
  }

  #top_greeting .greeting_img {
    position: absolute;
    width: 45vw;
    height: 100%;
    left: 55%;
    z-index: 1;
  }

  #top_greeting .content_textWrap {
    width: 50%;
    margin: 0 auto 0 0;
  }

  #top_greeting .section_lead {
    margin: 0;
  }

  #top_greeting .deco {
    width: 40%;
    aspect-ratio: 821 / 341;
    background-image: url(../img/deco01.webp);
    background-size: contain;
    top: 0;
    right: 50%;
    z-index: 5;
    transform: translate(50%, -40%);
  }

  #top_greeting .deco_bg {
    position: absolute;
    width: 100%;
    aspect-ratio: 1920/300;
    background-image: url(../img/TOP-1_02.webp);
    background-size: cover;
    background-position: center;
    bottom: 0;
    transform: translateY(86%);
    z-index: 2;
  }

  #top_troubles .deco {
    width: 30%;
    top: 0;
    left: 0;
    transform: translateY(-10%);
  }

  .school {
    padding-top: 10vw;
    padding-bottom: 200px;
  }

  .school .inner {
    max-width: 1700px;
    align-items: center;
  }

  .school .section_ttl-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }

  .section_lead {
    font-size: clamp(2rem, 6vw, 5.0rem);
  }

  .school ul {
    margin-top: min(2vw, 80px)
  }

  #top_about .inner {
    max-width: 1440px;
    padding-bottom: min(5vw, 120px);
  }

  #top_about .content_item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    border: none;
  }

  #top_about .text_wrap {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: min(5%, 40px);
  }

  #top_about .text_wrap::before {
    content: "";
    width: 170%;
    height: calc(100% + 120px);
    border: 1px solid var(--deep-blue);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  #top_about .content_img {
    width: 48%;
    z-index: 2;
  }

  #top_about .content_item:nth-of-type(even) {
    flex-direction: row;
  }

  #top_about .content_item:nth-of-type(even) .text_wrap {
    width: 48%;
    padding-left: 0;
    padding-right: min(5%, 40px);
  }

  #top_about .content_item:nth-of-type(even) .text_wrap::before {
    left: auto;
    right: 0;
    transform: translateY(-50%);
  }

  #top_about .deco01 {
    width: 15%;
    transform: translateY(50%);
  }

  #top_about .deco02 {
    width: 40%;
  }

  #top_price .content {
    display: flex;
    flex-direction: row;
    gap: min(5vw, 40px);
  }

  #top_price .content>* {
    width: 50%;
  }

  #top_price .bottom_bg {
    aspect-ratio: 1920/380;
    margin-top: min(5vw, 120px);
  }

  .flow ol li {
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
  }

  .flow ol li .text_wrap h3 {
    font-size: clamp(1.4rem, 3.7vw, 3rem);
  }

  #ninja_works {
    background-image: url(../img/works_bg.webp);
    background-repeat: repeat;
  }

  #ninja_works>.inner {
    max-width: 1600px;
    gap: 40px;
  }

  #ninja_works>.inner ul {
    margin-bottom: min(10vw, 120px);
  }

  #ninja_works .center {
    text-align: center;
  }

  #ninja_works .content {
    flex-direction: row;
    align-items: center;
    padding-right: 80px;
    padding-left: 80px;
  }

  #ninja_works .content_textWrap {
    padding-top: 40px;
    width: 600px;
  }

  .company .inner {
    gap: 0;
  }

  .company .content {
    flex-direction: row-reverse;
    gap: min(10vw, 80px);
    justify-content: space-between;
    align-items: center;
  }

  .company .content_textWrap {
    width: 530px;
  }

  .company .content_img {
    width: 50%;
  }

  dl {
    width: 100%;
    max-width: none;
  }

  .description-item {
    flex-direction: row;
    width: 100%;
    font-size: 1.6rem;
  }

  .description-item dt {
    padding: 12px 0;
    width: 120px;
  }

  .description-item dd {
    padding: 12px 0;
    width: calc(100% - 120px);
  }

  .company .section_ttl-wrap .deco {
    width: 30%;
    position: absolute;
    right: 0;
    bottom: auto;
    top: 0;
  }

  .contact_btn--wrap {
    flex-direction: row;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
  }

  footer {
    container-type: inline-size;
    container-name: footer;
    gap: 20px;
  }

  footer .inner {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    padding: 60px 4vw 40px;
    max-width: 1800px;
  }

  .footer_logo {
    width: 100%;
    max-width: 500px;
    margin: 0;
  }

  .footer_nav {
    width: 100%;
    max-width: 740px;
    padding: 0;
    position: relative;
    z-index: 10;
  }

  .footer_nav ul {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .footer_nav ul li {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .footer_nav ul a {
    font-size: 1.8rem;
    align-items: center;
  }

  #go_top {
    width: 80px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 900;
  }
}

/* 下層共通 */
.U_MV {
  position: relative;
}

.U_MV .u_ttl {
  background-image: url(../img/h2_ttl-bg.webp);
  background-size: cover;
  background-position: 20% top;
  padding: max(14vw, 100px) 0 max(8vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: min(7.2vw, 6.0rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

#spraying_info {
  background-color: var(--blue);
  padding-top: 27vw;
}

#spraying_info .deco {
  width: 40%;
  position: absolute;
  right: 0;
  top: 10vw;
  z-index: 5;
}

#spraying_info ul.info_item-wrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 60px);
}

#spraying_info ul.info_item-wrap .info_item {
  background-color: #ffffff;
  padding: min(2vw, 20px) min(2vw, 40px) min(5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: min(3vw, 20px);
}

#spraying_info ul.info_item-wrap .info_item h3 {
  background-color: #34b6c3;
  color: #ffffff;
  padding: 0 min(2vw, 20px);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

#spraying_info ul.info_item-wrap .info_item ol {
  gap: min(2vw, 20px);
  counter-reset: list-counter;
  line-height: 1.8;
}

#spraying_info ul.info_item-wrap .info_item ol li {
  padding-left: min(5vw, 60px);
  counter-increment: list-counter;
  position: relative;
}

#spraying_info ul.info_item-wrap .info_item ol li::before {
  content: counter(list-counter, decimal-leading-zero);
  position: absolute;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #34b6c3;
  width: min(5vw, 20px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: bold;
  top: min(3.4vw, 20px);
  left: min(4vw, 50px);
  transform: translate(-100%, -50%);
}

#spraying_info .deco_bg {
  position: absolute;
  width: 100%;
  aspect-ratio: 4/1;
  background-image: url(../img/spraying_bg_02.webp);
  background-size: cover;
  background-position: center;
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;
}

#spraying_flow {
  padding-top: 10vw;
  padding-bottom: 200px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #spraying_info {
    padding-top: 10vw;
  }

  #spraying_info .deco {
    top: 0;
    z-index: 1;
  }

  #spraying_info .deco_bg {
    position: absolute;
    width: 100%;
    aspect-ratio: 1920 / 300;
    background-size: cover;
    background-position: center;
    bottom: 0;
    transform: translateY(60%);
    z-index: 2;
  }

  #spraying_flow {
    padding-top: 10vw;
    padding-bottom: 200px;
  }
}

#company_greeting {
  padding-top: 27vw;
  background-color: var(--blue);
}

#company_greeting .section_ttl-wrap {
  align-items: flex-start;
  margin: 0 0 0 auto;
  gap: 10px;
}

#company_greeting .section_ttl::before {
  right: auto;
  left: 0;
}

#company_greeting .content {
  padding: min(5vw, 60px) min(5vw, 80px);
  background-color: #ffffff;
  border-radius: 30px;
}

#company_greeting .content p {
  display: flex;
  flex-direction: column;
  gap: min(2vw, 20px);
}

#company_greeting .content span {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 0 auto;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #company_greeting {
    padding-top: 60px;
    font-size: 1.8rem;
  }
}

#school_lead {
  background-color: var(--blue);
  padding-top: 27vw;
  text-align: center;
}

#school_lead .inner {
  gap: min(5vw, 40px);
}

#school_lead .deco {
  width: 50%;
  position: absolute;
  top: 5vw;
  z-index: 5;
  transform: rotate(-10deg);
}

#school_lead .section_lead {
  font-size: clamp(1.6rem, 5.0vw, 5.0rem);
}

#school_troubles {
  padding: min(10vw, 100px) 0 min(12vw, 200px);
}

#school_troubles .section_ttl-wrap {
  align-items: flex-end;
}

#school_troubles .section_ttl {
  font-size: clamp(3.0rem, 10vw, 6.0rem);
}

#school_troubles .section_lead {
  text-align: center;
}

#school_troubles ul {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

#school_troubles ul li {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: min(3em, 20px) min(1.5em, 10px);
}

#school_troubles ul li .content_lead {
  font-size: clamp(1.6rem, 1.4em, 2.2rem);
}

#school_point {
  background-image: url(../img/works_bg.webp);
  background-size: cover;
}

#school_point .section_ttl::before {
  right: 50%;
  transform: translateX(50%);
}

#school_point .section_lead {
  text-align: center;
}

#school_point .section_lead span {
  font-size: clamp(3rem, 9vw, 6.0rem);
}

#school_point .inner {
  width: 100%;
  max-width: none;
}

#school_point ol {
  gap: 0;
}

#school_point .content_item {
  padding: min(5vw, 60px) 0;
  background-color: #ffffff;
}

#school_point .content_item .item_inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(5vw, 80px);
}

#school_point .text_wrap {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 20px);
}

#school_point .text_wrap h4 {
  font-size: clamp(1.8rem, 4vw, 4.0rem);
  display: block;
  font-weight: 500;
  font-family: var(--en);
  line-height: 1.5;
  position: relative;
}

#school_point .text_wrap h4::before {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 2px;
  background-color: #37d3e2;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#school_point .text_wrap h4::first-letter {
  color: #37d3e2;
}

#school_point .text_wrap .content_lead {
  font-size: clamp(1.8rem, 4vw, 4.0rem);
  font-weight: 500;
  word-break: keep-all;
  font-weight: 500;
}

#school_point .content_item:nth-of-type(2) {
  background-color: var(--blue);
}

#school_point .content_item:nth-of-type(2) .text_wrap h4 {
  color: #ffffff;
}

#school_price {
  background-color: #ffffff;
  padding-bottom: 300px;
}

#school_price .section_ttl::before {
  right: 50%;
  transform: translateX(50%);
}

#school_price ul {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#school_price ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: min(3vw, 30px);
  padding: min(5vw, 40px) min(3vw, 20px);
  background: linear-gradient(135deg, #b6dfe3 10%, #34b6c3 90%);
  border-radius: 30px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
}

#school_price ul li h4 {
  font-size: clamp(1.4rem, 4vw, 3.0rem);
}

#school_price ul li .price {
  font-size: clamp(2rem, 8vw, 5.0rem);
  font-weight: 600;
  line-height: 1;
}

#school_price ul li .price span {
  font-size: clamp(1.4rem, 4vw, 3.0rem);
}

.school_btn {
  margin: 0 auto;
  width: 80%;
  max-width: 260px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #school_lead {
    padding-top: 10vw;
  }

  #school_lead .deco {
    width: 28%;
    top: 5vw;
    z-index: 1;
  }

  #school_troubles ul {
    gap: 20px;
  }

  #school_troubles ul li {
    padding: min(3em, 20px) min(1.5em, 20px);
  }

  #school_troubles ul li .content_lead {
    font-size: clamp(1.6rem, 1.4em, 2.6rem);
  }

  #school_point .content_item .item_inner {
    max-width: 1800px;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  #school_point .text_wrap {
    width: 60%;
    font-size: min(1.4vw, 2.0rem);
    padding: 0 min(5vw, 90px);
  }

  #school_point .content_img {
    width: 40%;
  }

  #school_point .content_item:nth-of-type(2) .item_inner {
    flex-direction: row;
  }

  #school_price .inner {
    max-width: 1400px;
  }

  #school_price ul {
    flex-direction: row;
  }
}

#merchandise_01 {
  background-color: var(--blue);
  padding-top: 27vw;
  text-align: center;
  padding-bottom: 200px;
}

.merchandise_item-wrap {
  display: flex;
  flex-direction: column;
  gap: min(12vw, 200px);
}

.merchandise_item {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 40px);
}

.merchandise_item h4 {
  font-size: clamp(1.4rem, 3.8vw, 4.0rem);
  text-align: left;
}

#merchandise_01 .item_inner {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 40px);
}

#merchandise_01 .item_img {
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
}

#merchandise_01 .text_wrap {
  text-align: justify;
  line-height: 1.8;
}

#merchandise_01 .text_wrap ul {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 30px);
}

#merchandise_01 .text_wrap ul h5 {
  font-size: clamp(1.4rem, 3.8vw, 2rem);
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #merchandise_01 {
    padding-top: 10vw;
  }

  #merchandise_01 .inner {
    max-width: 1600px;
  }

  #merchandise_01 .item_inner {
    flex-direction: row;
  }

  #merchandise_01 .merchandise_item:nth-of-type(even) .item_inner {
    flex-direction: row-reverse;
  }

  #merchandise_01 .item_img {
    width: 45%;
  }

  #merchandise_01 .text_wrap {
    width: 50%;
  }
}

.contact_bg {
  width: 100%;
  height: 27vw;
  background-color: var(--blue);
}

#contact_01 .inner {
  gap: min(5vw, 40px);
}

#contact_01 .section_ttl::before {
  right: 50%;
  transform: translateX(50%);
}

.contact_lead p {
  word-break: keep-all;
  text-align: center;
}

.contact_tel {
  width: 80%;
  max-width: 260px;
  margin: 0 auto;
}

form {
  width: 100%;
  max-width: 780px;
  margin: min(20vw, 80px) auto 200px;
  text-align: left;
  font-weight: 900;
}

.must {
  color: #ff0000;
  margin-left: 20px;
}

.form_item--ttl {
  border-bottom: 0.5px solid var(--blue);
  padding: 0 4px 20px;
  margin: 0 0 20px;
  line-height: 1;
}

.form_item--input {
  border-bottom: 0.5px solid var(--blue);
  padding: 0 4px 20px;
  margin: 0 0 20px;
}

.form_item.last .form_item--input {
  border-bottom: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 3px;
  border: 1px solid #757575;
  border-radius: 9px;
}

select {
  display: block;
  height: 48px;
  width: 200px;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 3px;
  border: 1px solid #757575;
  border-radius: 9px;
}

input[type="radio"] {
  margin: 0 3px 2px 5px;
}

input[type="number"] {
  max-width: 120px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
  border-radius: 9px;
}

.form_submit button {
  width: 100%;
  max-width: 294px;
  background-color: var(--deep-blue);
  padding: 16px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.form_submit button:hover {
  opacity: 0.7;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

#contact_wrapper .recruit {
  display: none;
}

@media screen and (min-width: 960px) {
  .contact_bg {
    height: 10vw;
  }

  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 40%;
    margin: 0;
    height: 80px;
    line-height: 1;
  }

  .form_item--input {
    width: 60%;
    margin: 0;
    padding: 20px 60px 20px 30px;
    border-left: 0.5px solid var(--blue);
    height: 80px;
  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(6) .form_item--ttl {
    border-bottom: none;
    padding-bottom: 260px;
  }

  .form_item:nth-of-type(6) .form_item--input {
    border-bottom: none;
  }

  .form_item--input.big {
    padding: 16px 60px 15px 30px;
    height: 300px;
  }
}