@charset "UTF-8";
@font-face {
  font-family: "SF Compact Text";
  font-style: normal;
  font-weight: 100;
  src: url(../lib/font/SFCompactText/FontsFree-Net-SFCompactText-Light.ttf) format("ttf");
}
@font-face {
  font-family: "SF Compact Text";
  font-style: normal;
  font-weight: 300;
  src: url(../lib/font/SFCompactText/FontsFree-Net-SFCompactText-Regular.ttf) format("ttf");
}
@font-face {
  font-family: "SF Compact Text";
  font-style: normal;
  font-weight: 400;
  src: url(../lib/font/SFCompactText/FontsFree-Net-SFCompactText-Medium.ttf) format("ttf");
}
@font-face {
  font-family: "SF Compact Text";
  font-style: normal;
  font-weight: 600;
  src: url(../lib/font/SFCompactText/FontsFree-Net-SFCompactText-SemiBold.ttf) format("ttf");
}
@font-face {
  font-family: "SF Compact Text";
  font-style: normal;
  font-weight: 700;
  src: url(../lib/font/SFCompactText/FontsFree-Net-SFCompactText-Bold.ttf) format("ttf");
}
@font-face {
  font-family: "SF Compact Text";
  font-style: normal;
  font-weight: 900;
  src: url(../lib/font/SFCompactText/FontsFree-Net-SFCompactText-Heavy.ttf) format("ttf");
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.33333vw;
  }
}

body {
  font-family: "SF Compact Text", sans-serif;
  color: #2a2a2a;
}

p, a, li, dd, dt, th, td {
  font-size: 1.6rem;
  line-height: 1.65;
}
@media screen and (max-width: 750px) {
  p, a, li, dd, dt, th, td {
    font-size: 2.8rem;
  }
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.container, .container--sm {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1405px;
}

.container--sm {
  max-width: 930px;
}

@media screen and (max-width: 750px) {
  .container, .container--sm {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
.ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3rem;
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 9rem;
}
.ttl--line {
  padding-bottom: 3rem;
}
.ttl--line::before, .ttl--line::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8rem;
  height: 1rem;
}
.ttl--line::before {
  right: 50%;
  background-color: #37b16b;
}
.ttl--line::after {
  left: 50%;
  background-color: #2a2a2a;
}
.ttl--line.white::after {
  background-color: #fff;
}

@media screen and (max-width: 750px) {
  .ttl {
    row-gap: 3rem;
    font-size: 4rem;
  }
}
.section {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.lead {
  max-width: 900px;
  font-size: 1.8rem;
  line-height: 2;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 750px) {
  .lead {
    font-size: 2.4rem;
  }
}
.video-wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.video-wrap > * {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg {
  position: relative;
  color: #fff;
}
.bg__left, .bg__right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg__left::before, .bg__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3.5rem;
}
.bg__left::after, .bg__right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 3.5rem);
  background-color: rgba(42, 42, 42, 0.41);
}
.bg__left {
  left: 0;
}
.bg__left::before {
  background-color: #37b16b;
}
.bg__right {
  right: 0;
}
.bg__right::before {
  background-color: #2a2a2a;
}
.bg .container {
  position: relative;
  z-index: 1;
}
.bg .ttl {
  margin-bottom: 5rem;
}

.btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 2.5rem;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-align: center;
  min-width: 38rem;
  height: 7.6rem;
  background-color: #37b16b;
  border: solid 2px #fff;
  border-radius: 100vh;
  padding: 1rem 8rem 1rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn::after {
  content: "\f062";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: 0;
  width: 7.2rem;
  height: 7.2rem;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  background-color: #29834f;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.btn:hover {
  background-color: #3ec377;
}
.btn:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 750px) {
  .btn {
    font-size: 2.8rem;
    min-width: unset;
    line-height: 1.2;
    width: 100%;
    max-width: 60vw;
  }
}
.full-img {
  position: relative;
  width: 100vw;
  height: 48rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.full-img::before, .full-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.full-img::before {
  display: inline-block;
  vertical-align: middle;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.full-img::after {
  background-color: rgba(42, 42, 42, 0.65);
}

section.bg-light {
  position: relative;
}
section.bg-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 14rem;
  background-color: #fff;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.c-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bc-white {
  border-color: #fff !important;
}

.c-black {
  color: #2a2a2a !important;
}

.bg-black {
  background-color: #2a2a2a !important;
}

.bc-black {
  border-color: #2a2a2a !important;
}

.c-green {
  color: #37b16b !important;
}

.bg-green {
  background-color: #37b16b !important;
}

.bc-green {
  border-color: #37b16b !important;
}

.c-light {
  color: #F4F4F4 !important;
}

.bg-light {
  background-color: #F4F4F4 !important;
}

.bc-light {
  border-color: #F4F4F4 !important;
}

.c-blue {
  color: #42a5f5 !important;
}

.bg-blue {
  background-color: #42a5f5 !important;
}

.bc-blue {
  border-color: #42a5f5 !important;
}

.c-indigo {
  color: #5c6bc0 !important;
}

.bg-indigo {
  background-color: #5c6bc0 !important;
}

.bc-indigo {
  border-color: #5c6bc0 !important;
}

.c-purple {
  color: #C45982 !important;
}

.bg-purple {
  background-color: #C45982 !important;
}

.bc-purple {
  border-color: #C45982 !important;
}

.c-pink {
  color: #ec407a !important;
}

.bg-pink {
  background-color: #ec407a !important;
}

.bc-pink {
  border-color: #ec407a !important;
}

.c-red {
  color: #ef5350 !important;
}

.bg-red {
  background-color: #ef5350 !important;
}

.bc-red {
  border-color: #ef5350 !important;
}

.c-orange {
  color: #ffa726 !important;
}

.bg-orange {
  background-color: #ffa726 !important;
}

.bc-orange {
  border-color: #ffa726 !important;
}

.c-yellow {
  color: #ffee58 !important;
}

.bg-yellow {
  background-color: #ffee58 !important;
}

.bc-yellow {
  border-color: #ffee58 !important;
}

.c-teal {
  color: #26a69a !important;
}

.bg-teal {
  background-color: #26a69a !important;
}

.bc-teal {
  border-color: #26a69a !important;
}

.c-cyan {
  color: #26c6da !important;
}

.bg-cyan {
  background-color: #26c6da !important;
}

.bc-cyan {
  border-color: #26c6da !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-0 {
    padding-top: 0rem !important;
  }
}

.pt-5 {
  padding-top: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-5 {
    padding-top: 0.5rem !important;
  }
}

.pt-10 {
  padding-top: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-10 {
    padding-top: 1rem !important;
  }
}

.pt-15 {
  padding-top: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-15 {
    padding-top: 1.5rem !important;
  }
}

.pt-20 {
  padding-top: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-20 {
    padding-top: 2rem !important;
  }
}

.pt-25 {
  padding-top: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-25 {
    padding-top: 2.5rem !important;
  }
}

.pt-30 {
  padding-top: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-30 {
    padding-top: 3rem !important;
  }
}

.pt-35 {
  padding-top: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-35 {
    padding-top: 3.5rem !important;
  }
}

.pt-40 {
  padding-top: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-40 {
    padding-top: 4rem !important;
  }
}

.pt-45 {
  padding-top: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-45 {
    padding-top: 4.5rem !important;
  }
}

.pt-50 {
  padding-top: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-50 {
    padding-top: 5rem !important;
  }
}

.pb-0 {
  padding-bottom: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-0 {
    padding-bottom: 0rem !important;
  }
}

.pb-5 {
  padding-bottom: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-5 {
    padding-bottom: 0.5rem !important;
  }
}

.pb-10 {
  padding-bottom: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-10 {
    padding-bottom: 1rem !important;
  }
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-15 {
    padding-bottom: 1.5rem !important;
  }
}

.pb-20 {
  padding-bottom: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-20 {
    padding-bottom: 2rem !important;
  }
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-25 {
    padding-bottom: 2.5rem !important;
  }
}

.pb-30 {
  padding-bottom: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-30 {
    padding-bottom: 3rem !important;
  }
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-35 {
    padding-bottom: 3.5rem !important;
  }
}

.pb-40 {
  padding-bottom: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-40 {
    padding-bottom: 4rem !important;
  }
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-45 {
    padding-bottom: 4.5rem !important;
  }
}

.pb-50 {
  padding-bottom: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-50 {
    padding-bottom: 5rem !important;
  }
}

.mt-0 {
  margin-top: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-0 {
    margin-top: 0rem !important;
  }
}

.mt-5 {
  margin-top: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-5 {
    margin-top: 0.5rem !important;
  }
}

.mt-10 {
  margin-top: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-10 {
    margin-top: 1rem !important;
  }
}

.mt-15 {
  margin-top: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-15 {
    margin-top: 1.5rem !important;
  }
}

.mt-20 {
  margin-top: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-20 {
    margin-top: 2rem !important;
  }
}

.mt-25 {
  margin-top: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-25 {
    margin-top: 2.5rem !important;
  }
}

.mt-30 {
  margin-top: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-30 {
    margin-top: 3rem !important;
  }
}

.mt-35 {
  margin-top: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-35 {
    margin-top: 3.5rem !important;
  }
}

.mt-40 {
  margin-top: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-40 {
    margin-top: 4rem !important;
  }
}

.mt-45 {
  margin-top: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-45 {
    margin-top: 4.5rem !important;
  }
}

.mt-50 {
  margin-top: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-50 {
    margin-top: 5rem !important;
  }
}

.mb-0 {
  margin-bottom: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-0 {
    margin-bottom: 0rem !important;
  }
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-5 {
    margin-bottom: 0.5rem !important;
  }
}

.mb-10 {
  margin-bottom: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-10 {
    margin-bottom: 1rem !important;
  }
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-15 {
    margin-bottom: 1.5rem !important;
  }
}

.mb-20 {
  margin-bottom: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-20 {
    margin-bottom: 2rem !important;
  }
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-25 {
    margin-bottom: 2.5rem !important;
  }
}

.mb-30 {
  margin-bottom: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-30 {
    margin-bottom: 3rem !important;
  }
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-35 {
    margin-bottom: 3.5rem !important;
  }
}

.mb-40 {
  margin-bottom: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-40 {
    margin-bottom: 4rem !important;
  }
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-45 {
    margin-bottom: 4.5rem !important;
  }
}

.mb-50 {
  margin-bottom: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-50 {
    margin-bottom: 5rem !important;
  }
}

.align-enter {
  text-align: center !important;
}
.align-left {
  text-align: left !important;
}
.align-right {
  text-align: right !important;
}

.scroll-hint-icon {
  z-index: 1;
}

/* 共通 */
.breadcrumbs {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: calc(100% + 3rem);
}
.breadcrumbs span {
  font-size: 1.4rem;
}
.breadcrumbs a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 1.4rem;
}
.breadcrumbs .inner {
  max-width: 1405px;
  width: 100%;
  margin: auto;
  padding: 0 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .breadcrumbs {
    min-width: inherit;
    margin-top: 0;
  }
  .breadcrumbs .inner {
    width: 100%;
    box-sizing: border-box;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    font-size: 12px;
    padding: 5px 10px;
  }
  .breadcrumbs .inner span,
  .breadcrumbs .inner a {
    font-size: 12px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
  transition: all 0.3s ease;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 2rem;
}
.header__logo a {
  display: inline-block;
  margin: 0;
  transition: opacity 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo img {
  width: auto;
  max-width: none;
  height: 2.5rem;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.header__nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav__link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}
.header__nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.header__nav__link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header__nav__btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 2rem 3rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  background-color: #37b16b;
  border: solid 1px #fff;
  border-radius: 0.6rem;
  transition: opacity 0.3s ease;
}
.header__nav__btn a:hover {
  opacity: 0.8;
}
.header.active, .header.header_gnav_active {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(42, 42, 42, 0.2);
}
.header.active .header__logo img, .header.header_gnav_active .header__logo img {
  filter: invert(100%);
}
.header.active .header__nav__link, .header.header_gnav_active .header__nav__link {
  color: inherit;
}
.header.active .header__nav__link::after, .header.header_gnav_active .header__nav__link::after {
  background-color: #2a2a2a;
}
.header.active .header__btn span, .header.header_gnav_active .header__btn span {
  background-color: #2a2a2a;
}

.header__btn {
  position: relative;
  width: 5.5rem;
  height: 3.5rem;
}
.header__btn span {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.5rem;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header__btn span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%);
}
.header__btn span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__btn span:nth-of-type(3) {
  bottom: 0;
  transform: translateX(-50%);
}
.header__btn.active span:nth-of-type(1) {
  top: 45%;
  transform: translateX(-50%) rotate(45deg);
}
.header__btn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__btn.active span:nth-of-type(3) {
  bottom: 45%;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1400px) {
  .header__nav {
    flex-grow: 1;
    justify-content: flex-end;
    padding-right: 1.5rem;
  }
  .header__nav ul {
    display: none;
  }
}
.gnav {
  position: absolute;
  top: 100%;
  right: -100%;
  background-color: #fff;
  padding: 3rem 4rem;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  box-shadow: 0 3px 6px rgba(42, 42, 42, 0.2);
  transition: all 0.3s ease;
}
.gnav.active {
  right: 0;
}
.gnav__menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gnav__link {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 750px) {
  .gnav {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 100%;
    height: calc(100vh - 10.6rem);
    height: calc(100dvh - 10.6rem);
    overflow: auto;
  }
  .gnav__menu {
    gap: 3rem;
  }
}
.mv {
  position: relative;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/new-school/top/bg_mv.jpg);
  background-repeat: no-repeat;
  margin-bottom: 20.5vw;
}
@media (max-width: 1720px) {
  .mv {
    margin-bottom: 18vw;
  }
}
@media (max-width: 1620px) {
  .mv {
    margin-bottom: 17vw;
  }
}
@media (max-width: 1520px) {
  .mv {
    margin-bottom: 15vw;
  }
}
@media (max-width: 1420px) {
  .mv {
    margin-bottom: 14vw;
  }
}
@media (max-width: 1320px) {
  .mv {
    margin-bottom: 12vw;
  }
}
@media (max-width: 1220px) {
  .mv {
    margin-bottom: 10vw;
  }
}
@media (max-width: 1120px) {
  .mv {
    margin-bottom: 5vw;
  }
}
@media (max-width: 1020px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(42, 42, 42, 0.4);
}
.mv__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 2%;
  z-index: 1;
}
.mv__inner::before, .mv__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50vw;
  height: 3.5rem;
}
.mv__inner::before {
  left: 0;
  background-color: rgba(55, 177, 107, 0.9);
}
.mv__inner::after {
  right: 0;
  background-color: rgba(42, 42, 42, 0.9);
}
.mv__img-top {
  margin-bottom: 6rem;
}
.mv__img-top img {
  width: 32vw;
  max-width: 600px;
}
.mv__ttl {
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 7rem;
}
.mv__text {
  position: relative;
  font-size: 4.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 0;
}
.mv__text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  display: inline-block;
  vertical-align: middle;
  width: 60vw;
  height: 32vw;
  max-width: 1169px;
  max-height: 601px;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/new-school/top/img_eg1.png);
  background-repeat: no-repeat;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 1440px) {
  .mv__inner::before, .mv__inner::after {
    height: 2.5vw;
  }
  .mv__img-top {
    margin-bottom: 4vw;
  }
  .mv__ttl {
    font-size: 4.8vw;
    margin-bottom: 5vw;
  }
  .mv__text {
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 750px) {
  .mv {
    margin-bottom: 0;
  }
  .mv__inner {
    height: auto;
    padding-top: 20rem;
  }
  .mv__img-top {
    margin-bottom: 6rem;
  }
  .mv__ttl {
    font-size: 5rem;
    margin-bottom: 4rem;
  }
  .mv__text {
    font-size: 3.6rem;
    margin-bottom: 6rem;
  }
  .mv__text::after {
    position: unset;
    width: 90vw;
    height: 45vw;
    transform: unset;
    margin-top: 2rem;
  }
}
.example__link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.example__link:hover {
  opacity: 0.8;
}
.example__link__inner {
  position: relative;
  border: solid 1px #37b16b;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.example__link__inner::before {
  content: "\f061";
  position: absolute;
  bottom: 0;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  background-color: #37b16b;
  border-radius: 100%;
  transform: translateY(50%);
}
.example__link__img {
  position: relative;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.example__link__img::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  vertical-align: middle;
  width: 6.7rem;
  height: 3.4rem;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/new-school/top/logo.svg);
  background-repeat: no-repeat;
}
.example__link__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  vertical-align: middle;
  width: 18rem;
  height: 9rem;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/new-school/top/img_eg1.png);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
.example__link__img img {
  aspect-ratio: 378/186;
  -o-object-fit: cover;
     object-fit: cover;
}
.example__link__ttl {
  font-size: 2rem;
  font-weight: 700;
  min-height: 3em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 0;
}
.example .slick-prev,
.example .slick-next {
  top: auto;
  bottom: calc(100% + 1rem);
  width: auto;
  height: auto;
  color: inherit;
}
.example .slick-prev::before,
.example .slick-next::before {
  font-size: 2.4rem;
  color: inherit;
}
.example .slick-prev {
  left: 2%;
}
.example .slick-prev::before {
  content: "\f060";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.example .slick-next {
  right: 2%;
}
.example .slick-next::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@media (min-width: 751px) and (max-width: 1023px) {
  .example__link__img::after {
    width: 9rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 750px) {
  .example__link__inner::before {
    width: 6rem;
    height: 6rem;
  }
  .example__link__img {
    margin-bottom: 2rem;
  }
  .example__link__ttl {
    font-size: 3.5rem;
    line-height: 1.3;
  }
  .example .slick-prev::before,
  .example .slick-next::before {
    font-size: 2.8rem;
  }
}
.what {
  position: relative;
  color: #fff;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/new-school/top/bg_what.jpg);
  background-repeat: no-repeat;
}
.what::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 79%;
  background-color: rgba(42, 42, 42, 0.67);
}
.what > * {
  position: relative;
  z-index: 1;
}
.what__lead {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
}
.what .lead {
  margin-bottom: 12rem;
}

@media screen and (max-width: 750px) {
  .what::before {
    height: 89%;
  }
  .what .ttl i {
    font-size: 6.6rem;
  }
  .what__lead {
    font-size: 2.8rem;
  }
  .what .lead {
    margin-bottom: 9rem;
  }
}
.necessity .bg__left {
  background-image: url(../images/new-school/top/bg_necessity_left.jpg);
}
.necessity .bg__right {
  background-image: url(../images/new-school/top/bg_necessity_right.jpg);
}

.problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
.problem__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.problem__item:not(:nth-child(3n)):before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 4rem);
  width: 1px;
  height: 100%;
  background-color: #505050;
}
.problem__item__text {
  min-height: 6em;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 6rem;
}
.problem__item__img {
  margin-left: 3rem;
}

@media screen and (max-width: 750px) {
  .problem__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 0;
  }
  .problem__item {
    justify-content: space-between;
    padding: 4rem 2rem;
  }
  .problem__item::before, .problem__item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: #505050;
  }
  .problem__item::before {
    left: 0;
  }
  .problem__item::after {
    right: 0;
  }
  .problem__item:not(:nth-child(3n))::before {
    left: 0;
  }
  .problem__item:nth-child(odd)::after {
    content: none;
  }
  .problem__item__text {
    min-height: unset;
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
  }
}
.merit .bg__left {
  background-image: url(../images/new-school/top/bg_merit_left.jpg);
}
.merit .bg__right {
  background-image: url(../images/new-school/top/bg_merit_right.jpg);
}
.merit__list {
  counter-reset: counter;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 6rem;
  padding-top: 12rem;
  padding-left: 0;
  list-style: none;
}
.merit__item {
  position: relative;
  width: 30.5%;
  color: #fff;
  padding-top: 25%;
  border-radius: 1rem;
  overflow: hidden;
}
.merit__item__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.merit__item__num {
  position: absolute;
  top: 0;
  left: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #37b16b;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  padding: 1rem 1.5rem 0.5rem;
  z-index: 1;
}
.merit__item__num::before {
  content: "メリット";
  font-size: 1.3rem;
  white-space: nowrap;
}
.merit__item__num::after {
  counter-increment: counter 1;
  content: "" counter(counter);
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
}
.merit__item__ttl {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.4;
  background-color: rgba(55, 177, 107, 0.75);
  padding: 1.7rem 3rem;
  margin-bottom: 0;
  z-index: 1;
}
.merit__item__ttl.minH {
  min-height: 9.6rem;
}
.merit__item__text {
  position: relative;
  height: 100%;
  line-height: 2;
  padding: 1.5rem 3rem;
  background-color: rgba(42, 42, 42, 0.65);
  z-index: 1;
}

@media (min-width: 751px) and (max-width: 1023px) {
  .merit__item {
    width: 47.5%;
  }
}
@media screen and (max-width: 750px) {
  .merit__list {
    width: 550%;
    flex-wrap: nowrap;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .merit__item {
    flex: 1;
    padding-top: 10%;
  }
  .merit__item__num {
    border-bottom-left-radius: 1.05rem;
    border-bottom-right-radius: 1.05rem;
    padding: 1.5rem;
  }
  .merit__item__num::before {
    font-size: 2.275rem;
    margin-bottom: 1rem;
  }
  .merit__item__num::after {
    font-size: 4.6rem;
  }
  .merit__item__ttl {
    font-size: 3.85rem;
  }
  .merit__item__ttl.minH {
    min-height: auto;
  }
}
.strength .bg__left {
  background-image: url(../images/new-school/top/bg_strength_left.jpg);
}
.strength .bg__right {
  background-image: url(../images/new-school/top/bg_strength_right.jpg);
}
.strength__list {
  counter-reset: counter;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  padding-top: 12rem;
  padding-left: 0;
  list-style: none;
}
.strength__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #37b16b;
  border-radius: 1rem;
  overflow: hidden;
  padding: 4rem 3rem;
}
.strength__item__num {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #37b16b;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  padding: 0.5rem 2.7rem;
  z-index: 1;
  transform: translateX(-50%);
}
.strength__item__num::before {
  content: "強み";
  font-size: 1.3rem;
  white-space: nowrap;
}
.strength__item__num::after {
  counter-increment: counter 1;
  content: "" counter(counter);
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
}
.strength__item__img {
  display: block;
}
.strength__item__img__wrap {
  min-height: 10rem;
  margin: 6rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength__item__ttl {
  font-size: 2.6rem;
  font-weight: 700;
  color: #37b16b;
  line-height: 1.25;
  margin-bottom: 2.4rem;
}
.strength__item__subttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.strength__item__text {
  line-height: 2;
}

@media (min-width: 751px) and (max-width: 1023px) {
  .strength__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .strength__list {
    display: flex;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
    width: 450%;
  }
  .strength__item {
    flex: 1;
    border-radius: 1.75rem;
  }
  .strength__item__num {
    border-bottom-left-radius: 1.05rem;
    border-bottom-right-radius: 1.05rem;
    min-width: 12rem;
    padding: 1.5rem;
  }
  .strength__item__num::before {
    font-size: 2.275rem;
    margin-bottom: 1rem;
  }
  .strength__item__num::after {
    font-size: 4.6rem;
  }
  .strength__item__img__wrap {
    margin: 12rem 0 6rem;
  }
  .strength__item__ttl {
    font-size: 3.6rem;
  }
  .strength__item__subttl {
    font-size: 3.15rem;
    margin-bottom: 3;
  }
}
.feature .full-img::before {
  background-position: center top;
  background-image: url(../images/new-school/top/bg_feature.jpg);
}
.feature__list__wrap {
  margin-top: -20%;
}
.feature__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
.feature__item {
  position: relative;
  z-index: 1;
}
.feature__item__lead {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
.feature__item__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
}
.feature__item__ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  width: 100%;
  background-color: #37b16b;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 2rem 3rem 1.5rem;
}
.feature__item__text {
  font-weight: 500;
  line-height: 2;
  padding: 2.3rem 3rem 7rem;
}
.feature__item__img {
  margin-bottom: 6rem;
}
.feature__item__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-bottom: 6rem;
}
.feature__item__list li {
  flex: 1;
  text-align: center;
}
.feature__item__list img {
  margin-bottom: 1rem;
}
.feature__item__list p {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (min-width: 751px) and (max-width: 1023px) {
  .feature__list {
    width: 150%;
  }
}
@media screen and (max-width: 750px) {
  .feature__list__wrap {
    margin-top: -40%;
  }
  .feature__list {
    display: flex;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
    width: 250%;
  }
  .feature__item {
    flex: 1;
  }
  .feature__item__lead {
    font-size: 3.5rem;
  }
  .feature__item__inner {
    border-radius: 1.75rem;
  }
  .feature__item__ttl {
    font-size: 3.6rem;
    border-top-left-radius: 1.75rem;
    border-top-right-radius: 1.75rem;
    padding: 2.5rem 3rem;
  }
  .feature__item__text {
    padding: 2.5rem 3rem 6rem;
  }
  .feature__item__list img {
    width: 80%;
  }
}
.select .bg__left {
  background-image: url(../images/new-school/top/bg_select_left.jpg);
}
.select .bg__right {
  background-image: url(../images/new-school/top/bg_select_right.jpg);
}
.select__text {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
}
.select__list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  z-index: 1;
}
.select__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  background-color: #fff;
  border-radius: 0.8rem;
}
.select__img {
  position: absolute;
  top: calc(100% - 7rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.select__img img {
  display: block;
  width: 55vw;
  max-width: none;
}
.select .container:nth-of-type(2) {
  padding-top: 17vw;
}
@media (min-width: 1720px) {
  .select .container:nth-of-type(2) {
    padding-top: 18vw;
  }
}
@media (max-width: 1400px) {
  .select .container:nth-of-type(2) {
    padding-top: 15vw;
  }
}
@media (max-width: 1230px) {
  .select .container:nth-of-type(2) {
    padding-top: 13vw;
  }
}
@media (max-width: 1000px) {
  .select .container:nth-of-type(2) {
    padding-top: 11vw;
  }
}
.select .lead {
  margin-bottom: 5rem;
}

@media screen and (max-width: 750px) {
  .select__text {
    font-size: 4.55rem;
  }
  .select__item {
    width: 15rem;
    height: 15rem;
    border-radius: 1.4rem;
  }
  .select__item img {
    width: 70%;
  }
  .select__img {
    top: calc(100% + 1rem);
  }
  .select__img img {
    width: 75vw;
  }
  .select .container:nth-of-type(2) {
    padding-top: 22rem;
  }
}
.achievement .bg__left {
  background-image: url(../images/new-school/top/bg_achievement_left.jpg);
}
.achievement .bg__right {
  background-image: url(../images/new-school/top/bg_achievement_right.jpg);
}
.achievement__list__wrap {
  padding-top: 6rem;
}
.achievement__list {
  height: 45rem !important;
}
.achievement__item {
  max-width: 80rem;
}
.achievement__item__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 750px) {
  .achievement__item {
    max-width: inherit;
    width: 80rem;
  }
}

.building {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.5rem;
  background-color: #f4f0ff;
  border-radius: 0.6rem;
  padding: 1.5rem;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.building img {
  max-height: 7rem;
}
.building.row img {
  width: 25%;
}
.building.row p {
  width: auto;
  font-size: 1.6rem;
}

.reason {
  padding-bottom: 23rem;
}
.reason .full-img::before {
  background-image: url(../images/new-school/top/bg_reason.jpg);
}
.reason .lead {
  position: relative;
  color: #fff;
  margin-top: -41rem;
  margin-bottom: 6rem;
  z-index: 1;
}
.reason__list {
  list-style: none;
}
.reason .slick-track {
  display: flex;
}
.reason__item {
  height: auto !important;
}
.reason__item__inner {
  position: relative;
  height: 100%;
  margin-left: 1.5vw;
  margin-right: 1.5vw;
  padding-top: 35%;
  border-radius: 1rem;
  overflow: hidden;
}
.reason__item__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reason__item__body {
  position: relative;
  color: #fff;
  background-color: rgba(42, 42, 42, 0.65);
  height: 100%;
  padding: 3rem 3rem;
  z-index: 1;
}
.reason__item__num {
  position: absolute;
  bottom: 100%;
  left: 4rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #37b16b;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  padding: 1rem 2.5rem 0.5rem;
  z-index: 1;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
}
.reason__item__num::before {
  content: "理由";
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.65;
  white-space: nowrap;
}
.reason__item__ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3rem;
}
.reason__item__subttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.reason__item__text {
  line-height: 2;
}
.reason .slick-prev,
.reason .slick-next {
  top: calc(100% + 3rem);
  bottom: auto;
  width: auto;
  height: auto;
  color: inherit;
  background-color: #fff;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 100%;
}
.reason .slick-prev::before,
.reason .slick-next::before {
  font-family: "Font Awesome 6 Free";
  font-size: 2.4rem;
  font-weight: 900;
  color: inherit;
}
.reason .slick-prev {
  left: calc(50% - 5rem);
  transform: translateX(-50%);
}
.reason .slick-prev::before {
  content: "\f060";
}
.reason .slick-next {
  right: calc(50% - 5rem);
  transform: translateX(50%);
}
.reason .slick-next::before {
  content: "\f061";
}

@media (min-width: 751px) {
  .reason .scrollable {
    overflow: unset !important;
  }
}
@media screen and (max-width: 750px) {
  .reason .lead {
    margin-top: -46rem;
    margin-bottom: 3rem;
  }
  .reason__list {
    display: flex;
    width: 450%;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .reason__item {
    flex: 1;
  }
  .reason__item__inner {
    padding-top: 40%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    border-radius: 1.75rem;
  }
  .reason__item__num {
    border-top-left-radius: 1.05rem;
    border-top-right-radius: 1.05rem;
  }
  .reason__item__num::before {
    font-size: 2.275rem;
  }
  .reason__item__num::after {
    font-size: 7.7rem;
  }
  .reason__item__ttl {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  .reason__item__subttl {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .reason__item__text {
    line-height: 2;
    font-size: 2.4rem;
  }
}
.comparison .bg__left {
  background-image: url(../images/new-school/top/bg_comparison_left.jpg);
}
.comparison .bg__right {
  background-image: url(../images/new-school/top/bg_comparison_right.jpg);
}
.comparison .lead {
  margin-bottom: 6.5rem;
}

@media (min-width: 751px) and (max-width: 1023px) {
  .comparison .btn__wrap .btn {
    flex: 1;
    min-width: unset;
  }
}
@media screen and (max-width: 750px) {
  .comparison .btn {
    flex: 1;
    font-size: 2rem;
    white-space: nowrap;
  }
  .comparison .lead {
    margin-bottom: 6rem;
  }
}
.spec.bg-light::before {
  height: 14rem;
}
.spec__list {
  display: flex;
  justify-content: center;
  gap: 6rem 6rem;
  max-width: 1000px;
  margin: 0 auto 6rem;
}
.spec__item {
  width: 100%;
}
.spec__item__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border: solid 2px #2a2a2a;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
}
.spec__item__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.spec__item__img img {
  width: 70%;
  max-width: 20rem;
}
.spec__item__ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.spec__item__tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.spec__item__tag-list li {
  font-size: 1.4rem;
}
.spec__item__tag-list li:not(:first-child)::before {
  content: " | ";
}
.spec__item__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.spec__item__link:hover {
  text-decoration: underline;
}
.spec__img {
  text-align: center;
}
.spec__detail {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}
.spec__detail * {
  display: inline;
}
.spec__detail dt::after {
  content: "：";
}
.spec__detail__sub::before {
  content: "(";
}
.spec__detail__sub::after {
  content: ")";
}
.spec__detail__list li:not(:first-child)::before {
  content: "/";
}

@media screen and (max-width: 750px) {
  .spec.bg-light::before {
    height: 14rem;
  }
  .spec__list {
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
  .spec__item__img {
    border-radius: 1.4rem;
  }
  .spec__item__ttl {
    font-size: 3.85rem;
  }
  .spec__item__tag-list {
    margin-bottom: 1rem;
  }
  .spec__item__tag-list li {
    font-size: 2.45rem;
  }
  .spec__item__link {
    font-size: 2.1rem;
  }
  .spec__detail {
    max-width: unset;
  }
}
.qa {
  padding-bottom: 0;
}
.qa__wrap {
  display: grid;
  row-gap: 2rem;
}
.qa__item {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: solid 1px #2a2a2a;
}
.qa__ttl, .qa__body {
  position: relative;
  padding-left: 5.8rem;
}
.qa__ttl::before, .qa__body::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 1.8rem;
}
.qa__ttl {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  padding-right: 5.8rem;
  cursor: pointer;
}
.qa__ttl::before {
  content: "Q";
  color: #fff;
  background-color: #37b16b;
}
.qa__ttl::after {
  content: "\f063";
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  background-color: #505050;
  border-radius: 100%;
  margin-left: 1.8rem;
  transition: transform 0.3s ease;
}
.qa__ttl.open::after {
  transform: rotate(180deg);
}
.qa__body {
  display: none;
  margin-top: 6.5rem;
}
.qa__body::before {
  content: "A";
  background-color: #F4F4F4;
}
.qa__body ul li::before {
  content: "・";
}

@media screen and (max-width: 750px) {
  .qa__wrap {
    row-gap: 2rem;
  }
  .qa__item {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .qa__ttl, .qa__body {
    padding-left: 8.7rem;
  }
  .qa__ttl::before, .qa__body::before {
    width: 6rem;
    height: 6rem;
    font-size: 2.7rem;
    margin-right: 2.7rem;
  }
  .qa__ttl {
    font-size: 2.6rem;
    padding-right: 8.7rem;
  }
  .qa__ttl::after {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
    margin-left: 6rem;
  }
  .qa__ttl.open::after {
    transform: rotate(180deg);
  }
}
.cta {
  position: relative;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 22rem;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 28rem;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/new-school/top/bg_cta.jpg);
  background-repeat: no-repeat;
}
.cta::after {
  content: "";
  position: absolute;
  top: -4rem;
  right: 13%;
  display: inline-block;
  vertical-align: middle;
  width: 49rem;
  height: 29rem;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/new-school/top/img_cta.png);
  background-repeat: no-repeat;
}
.cta .container {
  position: relative;
}
.cta__img {
  margin-bottom: 2rem;
}
.cta__ttl {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 2rem;
}
.cta__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 7.2rem;
  height: 7.2rem;
  text-decoration: none;
  background-color: #F4F4F4;
  border-radius: 100%;
  margin-bottom: 4rem;
}
.cta__arrow::after {
  content: "\f063";
  font-family: "Font Awesome 6 Free";
  font-size: 1.6rem;
  font-weight: 900;
}
.cta .lead {
  text-align: center;
}
.cta .lead a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  color: inherit;
  text-decoration: none;
}
.cta .lead a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #2a2a2a;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.cta .lead a:hover::after {
  transform: scale(1, 1);
}

@media (max-width: 1600px) {
  .cta::after {
    right: 1rem;
    width: 34vw;
    height: 18vw;
  }
}
@media screen and (max-width: 750px) {
  .cta {
    padding-bottom: 20rem;
    margin-top: 8rem;
  }
  .cta::before {
    height: 30rem;
    background-position: 40% center;
  }
  .cta::after {
    right: 1rem;
    width: 19.6rem;
    height: 11.6rem;
  }
  .cta__img img {
    width: 22.5rem;
  }
  .cta__ttl {
    font-size: 5.25rem;
  }
  .cta__arrow::after {
    font-size: 2.8rem;
  }
  .cta .lead a {
    font-size: 3.15rem;
  }
}
.footer {
  position: relative;
}
.footer__container {
  display: flex;
  gap: 7rem 3.5vw;
  margin-bottom: 8rem;
}
.footer__logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.footer__logo a:hover {
  opacity: 0.8;
}
.footer__logo img {
  width: 22vw;
  max-width: 42rem;
}
.footer__nav__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 4rem;
}
.footer__nav__link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.footer__nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #2a2a2a;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.footer__nav__link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.footer__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11vw;
  height: 11vw;
  max-width: 21rem;
  max-height: 21rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  background-color: #505050;
  transition: opacity 0.3s ease;
}
.footer__btn a:hover {
  opacity: 0.8;
}
.footer .sns-btn {
  display: flex;
  margin: 5rem 0 0;
}
.footer .sns-btn li {
  margin-right: 1.5rem;
}
.footer .sns-btn li:last-child {
  margin-right: 0;
}
.footer .sns-btn i {
  font-size: 2.6rem;
  color: #2a2a2a;
}

@media screen and (max-width: 750px) {
  .footer__container {
    flex-direction: column;
  }
  .footer__logo img {
    width: 30rem;
  }
  .footer__btn a {
    width: 26rem;
    height: 24rem;
    max-width: unset;
    max-height: unset;
    margin-left: auto;
    margin-right: 0;
  }
  .footer .sns-btn li {
    margin-right: 4rem;
  }
  .footer .sns-btn li:last-child {
    margin-right: 0;
  }
  .footer .sns-btn i {
    font-size: 4.6rem;
  }
}
.copyright {
  border-top: solid 1px #2a2a2a;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.copyright p {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .copyright p {
    font-size: 2.275rem;
  }
}
.example__popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}
.example__popup.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}
.example__popup__inner {
  width: 100%;
  max-width: 1200px;
  max-height: 95vh;
  padding: 0 1.5rem;
  margin: auto;
  overflow: auto;
}
.example__popup__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  background-color: #dbdbdb;
  border-radius: 100%;
  cursor: pointer;
}
.example__popup__close::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
}
.example__popup__lead {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.example__popup__content {
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;
}
.example__popup__content::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 27rem;
  height: 13rem;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/new-school/top/logo.svg);
  background-repeat: no-repeat;
}
.example__popup__content__right {
  flex-grow: 1;
  font-weight: 700;
  line-height: 1.5;
}
.example__popup__ttl__sub {
  font-size: 2.4rem;
}
.example__popup__ttl__main {
  font-size: 3.2rem;
}
.example__popup__txt {
  font-size: 2.4rem;
}

@media (max-width: 1600px) {
  .example__popup__ttl__sub {
    font-size: 3.2rem;
  }
  .example__popup__ttl__main {
    font-size: 5.2rem;
  }
  .example__popup__txt {
    font-size: 3.2rem;
  }
}
@media (max-width: 1023px) {
  .example__popup__lead {
    font-size: 1.6rem;
  }
  .example__popup__close {
    width: 10vw;
    height: 10vw;
  }
  .example__popup__close::before {
    font-size: 5vw;
  }
  .example__popup__ttl__sub {
    font-size: 2rem;
  }
  .example__popup__ttl__main {
    font-size: 3.2rem;
  }
  .example__popup__txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .example__popup__inner {
    padding: 0 3.5rem;
  }
  .example__popup__close {
    top: 3.5rem;
    right: 3.5rem;
    width: 12vw;
    height: 12vw;
  }
  .example__popup__close::before {
    font-size: 7vw;
  }
  .example__popup__lead {
    font-size: 3.5rem;
  }
  .example__popup__content {
    flex-direction: column;
    margin-bottom: 8rem;
  }
  .example__popup__ttl__sub {
    font-size: 2.8rem;
  }
  .example__popup__ttl__main {
    font-size: 4.2rem;
  }
  .example__popup__txt {
    font-size: 2.8rem;
  }
}
.cta-btn {
  max-width: 400px;
  margin: 50px auto 0;
}
.cta-btn a {
  display: block;
  padding: 2.5rem 0;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  background-color: #37b16b;
  border-radius: 0.6rem;
  transition: opacity 0.3s ease;
  font-size: 20px;
  font-weight: bold;
}
.cta-btn a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  .cta-btn {
    margin: 30px auto 0;
  }
  .cta-btn a {
    padding: 4rem 0;
    font-size: 18px;
  }
  .cta-btn a:hover {
    opacity: 1;
  }
}
/* 20231222 追加 */
.contact_form {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.contact_form .red-border-ttl.large {
  position: relative;
  margin-bottom: 60px;
  font-weight: bold;
  text-align: center;
  font-size: 36px;
}
.contact_form .red-border-ttl.large::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -20px;
  width: 100px;
  height: 4px;
  background-color: #e60000;
}
.contact_form .tac {
  text-align: center;
  margin-bottom: 50px;
}
.contact_form .st {
  font-weight: bold;
}
.contact_form .red {
  color: #e60000;
}
.contact_form tr {
  border-bottom: dotted 1px #c5c5c5;
}
.contact_form th {
  padding: 20px 5%;
  width: 30%;
  vertical-align: middle;
  text-align: left;
}
.contact_form th span {
  color: #e60000;
}
.contact_form td {
  padding: 20px 5%;
  text-align: left;
}
.contact_form td input {
  padding: 10px;
  background: #f2f2f2;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.contact_form td input.size-check, .contact_form td input.option-check, .contact_form td input.survey-radio, .contact_form td input.dm-check {
  width: auto;
}
.contact_form td .dm {
  display: block;
  margin: 10px 0 0;
}
.contact_form td textarea {
  padding: 10px;
  background: #f2f2f2;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.contact_form td input[type=checkbox],
.contact_form td input[type=radio] {
  padding: 10px;
  width: auto;
}
.contact_form input[type=submit] {
  background: #20c162;
  border: none;
  color: #fff;
  padding: 20px 60px;
  font-weight: bold;
  margin: 40px auto 0;
  /* width: 230px; */
  display: block;
  cursor: pointer;
  font-size: 18px;
}
.contact_form input[type=submit].back {
  background: #ddd;
}
.contact_form input[type=submit]:hover {
  opacity: 0.8;
}
.contact_form .error {
  color: #e60000;
  font-size: 14px;
  margin: 10px 0 0;
  text-align: left;
}
.contact_form .submit-btn {
  text-align: center;
}
.contact_form .submit-btn li {
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .contact_form {
    width: 89vw;
    margin: 0 auto;
  }
  .contact_form .red-border-ttl.large {
    font-size: 6vw;
    margin-bottom: 12vw;
  }
  .contact_form .red-border-ttl.large::after {
    width: 20%;
  }
  .contact_form .tac {
    padding: 0 4vw;
    font-size: 4vw;
    text-align: left;
    margin-bottom: 8vw;
  }
  .contact_form tr {
    border-bottom: dotted 1px #c5c5c5;
  }
  .contact_form th {
    width: 100%;
    padding: 4vw 0 0vw;
    vertical-align: middle;
    display: block;
    font-size: 4vw;
  }
  .contact_form th span {
    color: #e60000;
  }
  .contact_form td {
    padding: 4vw 0;
    display: block;
  }
  .contact_form td input {
    padding: 4vw;
    background: #f2f2f2;
    border: none;
    font-size: 4vw;
  }
  .contact_form td textarea {
    padding: 4vw;
    background: #f2f2f2;
    border: none;
    resize: none;
    font-size: 4vw;
    height: 37vw;
  }
  .contact_form input[type=submit] {
    background: #20c162;
    border: none;
    color: #fff;
    padding: 4vw 6vw;
    font-weight: bold;
    margin: 10vw auto 0;
    width: 53vw;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
    font-size: 16px;
  }
  .contact_form input[type=submit] {
    width: 100%;
  }
  .contact_form .error {
    color: #e60000;
    font-size: 14px;
    margin: 10px 0 0;
  }
}
.rechaptcha-text {
  font-size: 10px;
}

.rechaptcha-text a {
  text-decoration: underline;
  font-size: 10px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7-response-output {
  max-width: 800px;
  margin: 0 auto !important;
  padding: 10px !important;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */

.comparison2 {
    padding: 100px 0;
    min-width: 1280px;
    background: #f2f2f2;
}
.comparison2 .inner {
    width: 1280px;
    margin: auto;
}
.comparison2 .scroll-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}
.comparison2 .scroll-table table {
    display: block;
    white-space: nowrap;
    width: 100%;
    border: 1px solid #dddddd;
}
.comparison2 table th, .comparison2 table td {
    background: #fff;
    padding: 20px 10px;
}
.comparison2 table th {
    font-size: 14px;
    border: 1px solid #dddddd;
    background-color: #f7f7f7;
    width: 100%;
}
.comparison2 table thead td {
    font-weight: 600;
}
.comparison2 table thead td:nth-child(2) {
    font-size: 18px;
    color: #e60000;
}
.comparison2 table tbody td:nth-child(2) {
    color: #e60000;
    font-weight: bold;
}
.comparison2 table .parent span {
    position: relative;
    padding-bottom: 15px;
}
.comparison2 table .parent span::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #e60000;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateY(0%) translateX(-50%);
}
.comparison2 table td {
    text-align: center;
    font-size: 14px;
    border: 1px solid #dddddd;
    vertical-align: middle;
    width: 100%;
}
.comparison2 table td .small {
    display: block;
    font-size: 12px;
}
.comparison2 table .sp {
    display: none;
}
.comparison2 .note-box {
    margin-top: 30px;
    background: #fff;
    border: solid 1px #dddddd;
    padding: 20px;
}
.comparison2 .note-box .note {
    text-indent: -14px;
    padding-left: 14px;
    font-size: 14px;
}
@media screen and (max-width: 750px) {
    .comparison2 {
        padding: 15vw 0;
        min-width: inherit;
    }
    .comparison2 .inner {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .comparison2 table .sp {
        display: block;
    }
    .comparison2 .note-box {
        margin-top: 15px;
        padding: 10px;
    }
}
.monitor-info {
    width: 845px;
    margin: 20px auto 0;
}
.monitor-info th {
    text-align: left;
    vertical-align: middle;
    padding: 10px;
}
.monitor-info td {
    text-align: left;
    padding: 10px;
}
@media screen and (max-width: 750px) {
    .monitor-info {
    width: 100%;
    margin: 20px auto 0;
}
.monitor-info th {
    display: block;
}
.monitor-info td {
    display: block;
}
}
/* ダウンロード */
.category_list {
    padding-top:  50px;
    padding-bottom: 30px;
    background-color: #F4F4F4;
}
.category_head.download {
    background: url(../images/download/bg_category_ttl.jpg) no-repeat right top/contain;
    max-width: inherit;
    position: relative;
    margin-bottom: 130px;
}
.category_head.download .inner .category_ttl {
    padding: 160px 0 0 4%;
}
.category_list.download .copy_ttl {
    text-align: center;
    padding-bottom: 90px;
    background: url(../images/download/line.jpg) no-repeat bottom center;
    margin-bottom: 45px;
}
.category_list.download .pdf_list {
    text-align: center;
    margin-bottom: 100px;
}
.category_list.download .pdf_list li {
    display: inline-block;
    border: 2px solid #e6e6e6;
    margin: 0 18px 18px;
}
.category_list.download .pdf_list li a {
    display: block;
    padding: 21px 0px 10px;
    width: 170px;
    box-sizing: border-box;
}
.category_list.download .pdf_list li a span {
    display: block;
    text-align: center;
    font-size: 15px;
    margin-top: 9px;
    font-weight: bold;
    letter-spacing: 1px;
}
.category_list.download .no_content {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
}
/* 代理店様専用ページ */
.category_head.agencies {
    background: url(../images/download/bg_category_ttl.jpg) no-repeat right top/auto 95%;
    max-width: inherit;
    position: relative;
    margin-bottom: 130px;
}
.category_head.agencies .inner .category_ttl {
    padding: 160px 0 0 5%;
}
.agencies_list.agencies .copy_ttl {
    text-align: center;
    padding-bottom: 90px;
    background: url(../images/download/line.jpg) no-repeat bottom center;
    margin-bottom: 45px;
}
.agencies_list.agencies .pdf_list {
    text-align: center;
    margin-bottom: 250px;
}
.agencies_list.agencies .pdf_list li {
    display: inline-block;
    border: 2px solid #e6e6e6;
    margin: 0 18px;
}
.agencies_list.agencies .pdf_list li a {
    display: block;
    padding: 21px 10px 10px;
    width: 170px;
    box-sizing: border-box;
}
.agencies_list.agencies .pdf_list li a span {
    display: block;
    text-align: center;
    font-size: 15px;
    margin-top: 9px;
    font-weight: bold;
    letter-spacing: 1px;
}
.agencies_list.agencies .bottom_dl {
    text-align: center;
    background: #f2f2f2;
    padding: 50px 0px 30px;
    margin-bottom: 250px;
}
.category_list.agencies .copy_ttl {
    text-align: center;
    padding-bottom: 90px;
    background: url(../images/download/line.jpg) no-repeat bottom center;
    margin-bottom: 45px;
}
.category_list.agencies .pdf_list {
    text-align: center;
    margin-bottom: 250px;
}
.category_list.agencies .pdf_list li {
    display: inline-block;
    border: 2px solid #e6e6e6;
    margin: 0 18px 18px;
}
.category_list.agencies .pdf_list li a {
    display: block;
    padding: 21px 10px 10px;
    width: 170px;
    box-sizing: border-box;
}
.category_list.agencies .pdf_list li a span {
    display: block;
    text-align: center;
    font-size: 15px;
    margin-top: 9px;
    font-weight: bold;
    letter-spacing: 1px;
}
.category_list.agencies .no_content {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
}
@media screen and (max-width: 750px) {
        .category_list.movie .copy_ttl {
        text-align: center;
        margin: 0 auto 12vw;
        padding: 0 6vw;
        width: 71vw;
    }
    .category_list.movie .movie_list li a .thumb {
        display: block;
        position: relative;
        text-align: center;
        width: 80vw;
        height: 54vw;
        margin: 0 auto;
    }
    .category_list.movie .movie_list li a .thumb:after {
        content: "";
        width: 10vw;
        height: 10vw;
        display: inline-block;
        background: url(../images/movie/movie_arrow.png) no-repeat top center/100%;
        position: absolute;
        right: 0px;
        bottom: 0;
    }
    .category_list.movie .movie_list li a .thumb img.ofi {
        width: 80vw;
        height: 54vw;
    }
    .category_list.movie .movie_list li a .movie_title {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 4.5vw;
        padding-top: 3vw;
        letter-spacing: 1px;
    }
    .category_list.movie .movie_btn {
        text-align: center;
        background: #f2f2f2;
        padding: 10vw 9vw;
    }
    .category_list.movie .movie_list {
        margin: 0 auto;
        width: auto;
        display: block;
        padding: 0 4vw;
    }
    .category_list.movie .movie_list li {
        margin: 0 0 9vw 0;
        position: relative;
    }
    .category_list.movie .movie_list li:after {
        content: "";
        width: 1px;
        height: 165px;
        display: inline-block;
        background: #b3b3b3;
        position: absolute;
        right: -63px;
        top: 57px;
        display: none;
    }
    .category_list.movie .movie_list li:nth-child(3n), .category_list.movie .movie_list li:nth-child(2n) {
        margin: 0 0 9vw 0;
    }
    .category_list.movie .movie_list li:nth-child(3n):after, .category_list.movie .movie_list li:nth-child(2n):after {
        display: none;
    }
    /* ダウンロード */
    .category_head.download {
        background: url(../images/download/bg_category_ttl.jpg) no-repeat right top/contain;
        max-width: inherit;
        position: relative;
        margin-bottom: 10vw;
    }
    .category_head.download .inner .category_ttl {
        padding: 5vw 0 0 4%;
    }
    .category_list.download .copy_ttl {
        text-align: center;
        background: none;
        margin-bottom: 4vw;
        padding: 0 4vw 5vw;
        margin: 0 auto 6vw;
        width: 82vw;
    }
    .category_list.download .pdf_list {
        margin-bottom: 20vw;
        text-align: left;
        padding: 0 4vw;
    }
    .category_list.download .pdf_list li {
        display: inline-block;
        border: 2px solid #e6e6e6;
        margin: 0 4vw 4vw 0;
        text-align: center;
    }
    .category_list.download .pdf_list li:nth-child(even) {
        margin: 0 0 4vw 0;
    }
    .category_list.download .pdf_list li a {
        display: block;
        padding: 5vw 4vw 4vw;
        width: 42vw;
        box-sizing: border-box;
    }
    .category_list.download .pdf_list li a span {
        display: block;
        text-align: center;
        font-size: 15px;
        margin-top: 9px;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .category_list.download .no_content {
        text-align: center;
        font-weight: bold;
        font-size: 5vw;
        letter-spacing: 1px;
    }
    /* 代理店様専用ページ */
    .category_head.agencies {
        background: url(../images/download/bg_category_ttl.jpg) no-repeat right top/auto 95%;
        max-width: inherit;
        position: relative;
        margin-bottom: 130px;
    }
    .category_head.agencies .inner .category_ttl {
        padding: 5vw 0 0 5%;
    }
    .agencies_list.agencies .copy_ttl {
        text-align: center;
        padding-bottom: 90px;
        background: url(../images/download/line.jpg) no-repeat bottom center;
        margin-bottom: 45px;
    }
    .agencies_list.agencies .pdf_list {
        text-align: center;
        margin-bottom: 250px;
    }
    .agencies_list.agencies .pdf_list li {
        display: inline-block;
        border: 2px solid #e6e6e6;
        margin: 0 18px;
    }
    .agencies_list.agencies .pdf_list li a {
        display: block;
        padding: 21px 10px 10px;
        width: 170px;
        box-sizing: border-box;
    }
    .agencies_list.agencies .pdf_list li a span {
        display: block;
        text-align: center;
        font-size: 15px;
        margin-top: 9px;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .agencies_list.agencies .bottom_dl {
        text-align: center;
        background: #f2f2f2;
        padding: 50px 0px 30px;
        margin-bottom: 250px;
    }
    .category_list.agencies .copy_ttl {
        text-align: center;
        padding-bottom: 90px;
        background: url(../images/download/line.jpg) no-repeat bottom center;
        margin-bottom: 45px;
    }
    .category_list.agencies .pdf_list {
        text-align: center;
        margin-bottom: 250px;
    }
    .category_list.agencies .pdf_list li {
        display: inline-block;
        border: 2px solid #e6e6e6;
        margin: 0 18px 18px;
    }
    .category_list.agencies .pdf_list li a {
        display: block;
        padding: 21px 10px 10px;
        width: 170px;
        box-sizing: border-box;
    }
    .category_list.agencies .pdf_list li a span {
        display: block;
        text-align: center;
        font-size: 15px;
        margin-top: 9px;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .category_list.agencies .no_content {
        text-align: center;
        font-weight: bold;
        font-size: 15px;
        letter-spacing: 1px;
    }
}
section.contact_form th span.required {
    color: #e60000;
}
section.contact_form th span.any {
    color: #03c803;
}
.breadcrumbs {
    display: none;
}