@font-face {
  font-family: DINAlternate-Bold;
  src: url(../font/din-alternate-bold.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  background: #fff;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_y.is-animated {
  transform-origin: right;
  animation: scaled_x 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  height: auto;
  padding: 30rem 60rem;
  background: #fff;
  box-shadow: 0rem 4rem 4rem rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
header.abs {
  position: absolute;
  background: transparent;
  box-shadow: unset;
  padding: 20rem 60rem;
}
header.abs .sp-menu {
  display: none !important;
}
header.abs .logo {
  opacity: 0;
}
header.abs .header__menu .header__txt {
  display: none;
}
header.abs .header__menu .p__menu ul {
  display: none;
}
header.abs .header__menu .p__menu {
  display: none;
}
header .logo {
  width: 160rem;
  display: flex;
}
header .header__menu .header__txt {
  font-weight: normal;
  font-size: 12rem;
  line-height: 14.4rem;
  text-align: right;
  color: #000;
}
header .header__menu .p__menu {
  margin-top: 15rem;
  display: flex;
  justify-content: right;
  align-items: center;
}
header .header__menu .p__menu ul {
  display: flex;
  align-items: center;
}
header .header__menu .p__menu ul li {
  padding: 0 8rem;
}
header .header__menu .p__menu ul li a {
  font-family: DINAlternate-Bold;
  font-weight: normal;
  font-size: 20rem;
  line-height: 24rem;
  text-align: left;
  color: #1a1a1a;
}
header .header__menu .p__menu .p__btns {
  display: flex;
  align-items: center;
  margin-left: 20rem;
}
header .header__menu .p__menu .p__btns .tel__lbl {
  font-size: 12rem;
  color: #262881;
  line-height: 18rem;
  font-weight: 400;
}
header .header__menu .p__menu .p__btns .tel {
  font-weight: bold;
  font-size: 30rem;
  margin-left: 10rem;
  color: #262881;
}
header .header__menu .p__menu .p__btns .btn {
  width: 190rem;
  height: 45rem;
  border-radius: 22.5rem;
  background: #efd923;
  border: 1rem solid #190870;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20rem;
}
header .header__menu .p__menu .p__btns .btn span {
  font-weight: bold;
  font-size: 16rem;
  line-height: 19.2rem;
  text-align: center;
  color: #190870;
}

.frontview {
  width: 100%;
  display: flex;
  position: relative;
}
.frontview .f__text {
  width: 243rem;
  display: flex;
  position: absolute;
  top: 145rem;
  right: 150rem;
}
.frontview .back {
  width: 100%;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
}
.frontview .fv__logo {
  width: 302.64rem;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.section-features {
  position: relative;
  z-index: 1;
  margin-top: -27rem;
}
.section-features .title__part {
  text-align: center;
}
.section-features .title__part .en__txt {
  width: 360rem;
  height: 54rem;
  margin: auto;
  border-radius: 27rem;
  background: #001e6f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-features .title__part .en__txt span {
  font-weight: bold;
  font-size: 28.8rem;
  line-height: 34.56rem;
  text-align: center;
  color: #fff;
}
.section-features .title__part .ja__txt {
  font-weight: bold;
  font-size: 36rem;
  line-height: 43.2rem;
  margin-top: 8rem;
  text-align: center;
  color: #001e6f;
}
.section-features .feature__items {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 55rem;
}
.section-features .feature__items .f__item {
  width: 100%;
  margin-bottom: 90rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-features .feature__items .f__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.section-features .feature__items .f__item:nth-child(2n) .image__wrapper {
  margin-right: 0;
  margin-left: 20rem;
}
.section-features .feature__items .f__item:last-child {
  margin-bottom: 0;
}
.section-features .feature__items .f__item .image__wrapper {
  width: 47%;
  margin-right: 20rem;
  display: flex;
}
.section-features .feature__items .f__item .content__text {
  width: 590rem;
  padding-top: 16rem;
}
.section-features .feature__items .f__item .content__text .t__txt {
  font-weight: bold;
  font-size: 20rem;
  line-height: 24rem;
  text-align: left;
  color: #001e6f;
}
.section-features .feature__items .f__item .content__text .t__txt span {
  font-size: 32rem;
}
.section-features .feature__items .f__item .content__text h1 {
  font-weight: bold;
  font-size: 30rem;
  line-height: 2.3;
  margin-top: 15rem;
  text-align: left;
  color: #302d2c;
}
.section-features .feature__items .f__item .content__text h1 span {
  background: #fcd00a;
  display: inline-block;
  line-height: 1.25;
  padding: 10rem 15rem;
}
.section-features .feature__items .f__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 34rem;
  margin-top: 15rem;
  text-align: left;
  color: #302d2c;
}
.section-features .link__btn {
  width: 420rem;
  height: 90rem;
  margin: auto;
  margin-top: 60rem;
  border-radius: 45rem;
  background: #fff;
  border: 1rem solid #190870;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-features .link__btn span {
  font-weight: bold;
  font-size: 22rem;
  line-height: 26.4rem;
  text-align: center;
  color: #05001e;
}

.section-title.faq .ja__txt {
  color: #190870;
}
.section-title.faq .en__txt {
  color: #190870;
}
.section-title .ja__txt {
  font-weight: bold;
  font-size: 32rem;
  line-height: 38.4rem;
  text-align: center;
  color: #fff;
}
.section-title .en__txt {
  font-weight: normal;
  font-size: 18rem;
  letter-spacing: 0.12em;
  line-height: 21.6rem;
  margin-top: 10rem;
  text-align: center;
  color: #fff;
}

.section-curriculum {
  margin-top: 100rem;
  width: 100%;
  height: auto;
  background: url(../img/curriculum_bg.png);
  background-size: cover;
  background-position: center center;
  padding: 72rem 0 100rem;
}
.section-curriculum .content__items {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  margin-top: 40rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-curriculum .content__items .c__item {
  width: 31.5%;
  margin-bottom: 40rem;
  border-radius: 10rem;
  overflow: hidden;
  background: #fff;
  text-align: center;
}
.section-curriculum .content__items .c__item .up__text {
  width: 100%;
  height: 210rem;
  padding-top: 20rem;
}
.section-curriculum .content__items .c__item .up__text .num {
  font-weight: normal;
  font-size: 22rem;
  line-height: 26.4rem;
  text-align: center;
  color: #1a1a1a;
}
.section-curriculum .content__items .c__item .up__text .t__txt {
  font-weight: bold;
  font-size: 26rem;
  line-height: 31.2rem;
  text-align: center;
  color: #190870;
}
.section-curriculum .content__items .c__item .up__text .term {
  width: 120rem;
  height: auto;
  margin-top: 5rem;
  padding: 4rem 0;
  display: inline-block;
  background: transparent;
  border: 1rem solid #190870;
  font-weight: normal;
  font-size: 16rem;
  line-height: 19.2rem;
  text-align: center;
  color: #190870;
}
.section-curriculum .content__items .c__item .up__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 23.2rem;
  margin-top: 8rem;
  text-align: center;
  color: #1a1a1a;
}
.section-curriculum .content__items .c__item .down__text {
  width: 100%;
  padding: 16rem 0 26rem;
  background: #ffffd9;
}
.section-curriculum .content__items .c__item .down__text .t__lbl {
  font-weight: bold;
  font-size: 12rem;
  line-height: 21.2rem;
  text-align: center;
  color: #ee5c19;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 3rem;
}
.section-curriculum .content__items .c__item .down__text .c__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 21.2rem;
  margin-top: 10rem;
  text-align: center;
  color: #1a1a1a;
}
.section-curriculum .note__txt {
  font-weight: bold;
  font-size: 16.8rem;
  line-height: 20.16rem;
  margin-top: 16rem;
  text-align: center;
  color: #fff;
}
.section-curriculum .c__btns {
  margin-top: 19rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-curriculum .c__btns .c__btn {
  width: 420rem;
  height: 90rem;
  margin: 0 25rem;
  border-radius: 45rem;
  background: #efd923;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-curriculum .c__btns .c__btn.c01 {
  background: white;
}
.section-curriculum .c__btns .c__btn span {
  font-weight: bold;
  font-size: 22rem;
  line-height: 26.4rem;
  text-align: center;
  color: #05001e;
}

.section-faq {
  padding: 90rem 0;
}
.section-faq .faq__items {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  margin-top: 35rem;
}
.section-faq .faq__items .f__item {
  width: 100%;
  height: auto;
  margin-bottom: 40rem;
  border-radius: 20rem;
  background: #fff;
  border: 1rem solid #808080;
  overflow: hidden;
  cursor: pointer;
}
.section-faq .faq__items .f__item:last-child {
  margin-bottom: 0;
}
.section-faq .faq__items .f__item .q__title {
  padding: 20rem 26rem;
  position: relative;
  display: flex;
  align-items: center;
}
.section-faq .faq__items .f__item .q__title.open:after {
  transform: translateY(-50%) rotate(180deg);
}
.section-faq .faq__items .f__item .q__title:after {
  content: "";
  width: 15rem;
  height: 9rem;
  background: url(../img/arrow.png);
  background-size: 100% 100%;
  position: absolute;
  right: 26rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.section-faq .faq__items .f__item .q__title .q__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 31.2rem;
  margin-right: 20rem;
  text-align: center;
  color: #ee5c19;
}
.section-faq .faq__items .f__item .q__title .q__txt {
  width: 90%;
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.06em;
  line-height: 24rem;
  text-align: left;
  color: #1a1a1a;
}
.section-faq .faq__items .f__item .a__box {
  margin-top: 2rem;
  display: none;
}
.section-faq .faq__items .f__item .a__box .inner {
  display: flex;
  padding: 0 26rem 25rem;
}
.section-faq .faq__items .f__item .a__box .a__lbl {
  font-weight: bold;
  font-size: 34rem;
  line-height: 40.8rem;
  text-align: center;
  color: #ee5c19;
}
.section-faq .faq__items .f__item .a__box .a__txt {
  font-weight: bold;
  font-size: 22rem;
  letter-spacing: 0.06em;
  line-height: 30.4rem;
  margin-left: 18rem;
  text-align: left;
  color: #ee5c19;
}

footer {
  padding: 40rem 0;
  background: #0a152d;
}
footer .f__logo {
  width: 150rem;
  display: flex;
  margin: auto;
}
footer .address__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 22rem;
  margin-top: 20rem;
  text-align: center;
  color: #fff;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40rem;
}
footer ul li {
  padding: 0 10rem;
}
footer ul li a {
  font-weight: normal;
  font-size: 12rem;
  line-height: 22rem;
  text-align: center;
  color: #fff;
}

.copyright {
  font-weight: normal;
  font-size: 14rem;
  line-height: 22rem;
  padding: 10rem 0 20rem;
  text-align: center;
  color: #000;
}

.subview__pat {
  width: 978rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.breadcrumb {
  width: 91.3333333333%;
  margin: auto;
  margin-top: 160rem;
  display: flex;
  align-items: center;
}
.breadcrumb .icon {
  width: 18rem;
  display: flex;
}
.breadcrumb .arrow {
  width: 6.43rem;
  margin: 0 12rem;
  display: flex;
}
.breadcrumb .link {
  font-weight: 500;
  font-size: 14rem;
  line-height: 24.5rem;
  text-align: left;
  color: #000;
}

.subfrontview {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  margin-top: 60rem;
  display: flex;
  align-items: center;
}
.subfrontview .ja__txt {
  font-weight: bold;
  font-size: 40rem;
  letter-spacing: 0.1em;
  line-height: 48rem;
  text-align: left;
  color: #1a1a1a;
}
.subfrontview .en__txt {
  font-weight: bold;
  font-size: 20rem;
  line-height: 24rem;
  margin-left: 20rem;
  text-align: left;
  color: #999;
}

.about__detail {
  width: 100%;
  height: 560rem;
  background: url(../img/about_bg.png);
  background-size: cover;
  background-position: center;
  margin-top: 100rem;
  position: relative;
}
.about__detail .p__text {
  width: 277rem;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about__wrapper .c__item {
  width: 86.6666666667%;
  padding: 100rem 0;
  display: flex;
  align-items: flex-start;
}
.about__wrapper .c__item:last-child {
  margin: 0 0 0 auto;
  flex-direction: row-reverse;
}
.about__wrapper .c__item:last-child .content__text {
  margin-right: 100rem;
  margin-left: 0;
}
.about__wrapper .c__item .image__wrapper {
  width: 46.1538461538%;
  position: relative;
}
.about__wrapper .c__item .image__wrapper .link__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about__wrapper .c__item .image__wrapper .link__content .link {
  width: 360rem;
  height: 54rem;
  border-radius: 27rem;
  background: transparent;
  border: 1rem solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__wrapper .c__item .image__wrapper .link__content .link span {
  font-weight: bold;
  font-size: 28.8rem;
  line-height: 34.56rem;
  text-align: center;
  color: #fff;
}
.about__wrapper .c__item .image__wrapper .link__content .lbl {
  font-weight: bold;
  font-size: 36rem;
  line-height: 43.2rem;
  margin-top: 10rem;
  text-align: center;
  color: #fff;
}
.about__wrapper .c__item .content__text {
  width: 600rem;
  margin-left: 100rem;
}
.about__wrapper .c__item .content__text .t__txt {
  font-weight: 500;
  font-size: 34rem;
  line-height: 36rem;
  text-align: left;
  color: #1a1a1a;
}
.about__wrapper .c__item .content__text .t__txt.c01 {
  margin-top: 25rem;
}
.about__wrapper .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 18rem;
  line-height: 34rem;
  margin-top: 15rem;
  text-align: left;
  color: #1a1a1a;
}
.about__wrapper .c__item .content__text .frame__txt {
  width: 100%;
  height: auto;
  margin-top: 40rem;
  padding: 20rem 0;
  border-radius: 8.51rem;
  background: #190870;
  text-align: center;
}
.about__wrapper .c__item .content__text .frame__txt span {
  font-weight: normal;
  font-size: 20rem;
  line-height: 28rem;
  text-align: center;
  color: #fff;
}
.about__wrapper .c__item .content__text .circle__items {
  margin-top: 30rem;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .c__item .content__text .circle__items .p__item {
  width: 169.59rem;
  height: 169.59rem;
  border-radius: 50%;
  background: transparent;
  border: 1rem solid #190870;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__wrapper .c__item .content__text .circle__items .p__item span {
  font-weight: normal;
  font-size: 18.09rem;
  line-height: 24.87rem;
  text-align: center;
  color: #190870;
}
.about__wrapper .c__item .content__text .list__content {
  margin-top: 20rem;
}
.about__wrapper .c__item .content__text .list__content li {
  margin-bottom: 20rem;
  display: flex;
  align-items: center;
}
.about__wrapper .c__item .content__text .list__content li .icon {
  width: 28rem;
  margin-right: 10rem;
  display: flex;
}
.about__wrapper .c__item .content__text .list__content li .txt {
  font-weight: normal;
  font-size: 18rem;
  line-height: 32rem;
  text-align: left;
  color: #1a1a1a;
}
.about__wrapper .b__line {
  width: 100%;
  height: 0;
  border-bottom: 1rem solid #b3b3b3;
}

.company__wrapper {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  margin-top: 40rem;
}
.company__wrapper table {
  width: 900rem;
  border-collapse: collapse;
}
.company__wrapper table tr {
  border-bottom: 1.53rem solid #b3b3b3;
}
.company__wrapper table tr:last-child {
  border-bottom: 0;
}
.company__wrapper table tr td {
  font-weight: 500;
  font-size: 18rem;
  line-height: 31.5rem;
  padding: 25rem 0;
  text-align: left;
  color: #000;
}
.company__wrapper table tr td:first-child {
  width: 180rem;
  vertical-align: baseline;
}

.map {
  width: 100%;
  height: 500rem;
  margin-top: 70rem;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.contact__wrapper {
  width: 800rem;
  margin: 100rem auto;
}
.contact__wrapper .detail__txt {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 22rem;
  text-align: left;
  color: #302d2c;
}
.contact__wrapper .contact__form {
  margin-top: 40rem;
}
.contact__wrapper .contact__form .c__item {
  margin-bottom: 25rem;
}
.contact__wrapper .contact__form .c__item .c__lbl {
  font-weight: 500;
  font-size: 18rem;
  letter-spacing: 0.01em;
  line-height: 36.31rem;
  margin-bottom: 12rem;
  text-align: left;
  color: #302D2C;
}
.contact__wrapper .contact__form .c__item .c__lbl span {
  color: #dc000c;
}
.contact__wrapper .contact__form .c__item input[type=text], .contact__wrapper .contact__form .c__item input[type=email] {
  width: 100%;
  height: 60rem;
  border-radius: 10rem;
  background: #fff;
  border: 1rem solid #767676;
  font-size: 18rem;
  letter-spacing: 0.01em;
  line-height: 36.31rem;
  padding-left: 20rem;
  text-align: left;
  color: #302D2C;
}
.contact__wrapper .contact__form .c__item textarea {
  width: 100%;
  height: 127.49rem;
  border-radius: 10rem;
  background: #fff;
  border: 1rem solid #767676;
  font-size: 18rem;
  letter-spacing: 0.01em;
  line-height: 36.31rem;
  padding: 20rem;
  text-align: left;
  color: #302D2C;
}
.contact__wrapper .contact__form .c__item .chk__items {
  display: flex;
}
.contact__wrapper .contact__form .c__item .chk__items label {
  margin-right: 20rem;
}
.contact__wrapper .contact__form .c__item .chk__items label span {
  font-weight: 500;
  font-size: 20rem;
  letter-spacing: 0.01em;
  line-height: 36.31rem;
  text-align: left;
  color: #302d2c;
}
.contact__wrapper .pck__item {
  margin-top: 46rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__wrapper .pck__item p {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 36.31rem;
  text-align: center;
  color: #302d2c;
  margin-left: 4rem;
}
.contact__wrapper .pck__item p a {
  color: #302d2c;
  text-decoration: underline;
}
.contact__wrapper .submit__btn {
  width: 200rem;
  height: 40rem;
  margin: auto;
  margin-top: 36rem;
  border-radius: 10rem;
  background: #567592;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}
.contact__wrapper .submit__btn span {
  font-weight: bold;
  font-size: 16rem;
  line-height: 22rem;
  text-align: center;
  color: #fff;
}

.service__wrapper {
  max-width: 1100rem;
  margin: 100rem auto;
}
.service__wrapper .s__item {
  width: 100%;
  height: auto;
  padding: 20rem 35rem 20rem;
  border-radius: 20rem;
  background: #fff;
  border: 1rem solid #8e8e8f;
  margin-bottom: 40rem;
  cursor: pointer;
}
.service__wrapper .s__item .s__title {
  display: flex;
  align-items: center;
  position: relative;
}
.service__wrapper .s__item .s__title.open:after {
  transform: translateY(-50%) rotate(180deg);
}
.service__wrapper .s__item .s__title:after {
  content: "";
  width: 16rem;
  height: 9rem;
  background: url(../img/arrow.png);
  background-size: 100% 100%;
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.service__wrapper .s__item .s__title .s__lbl {
  font-weight: bold;
  font-size: 34rem;
  line-height: 40.8rem;
  text-align: left;
  color: #001e6f;
}
.service__wrapper .s__item .s__title .s__term {
  width: 120rem;
  height: 24rem;
  margin-left: 30rem;
  background: transparent;
  border: 1rem solid #001e6f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__wrapper .s__item .s__title .s__term span {
  font-weight: normal;
  font-size: 16rem;
  line-height: 19.2rem;
  text-align: center;
  color: #001e6f;
}
.service__wrapper .s__item .service__content {
  margin-top: 47rem;
  margin-bottom: 30rem;
  display: none;
}
.service__wrapper .s__item .service__content .temp {
  width: 100%;
  height: 322px;
  background: #eeeded;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__wrapper .s__item .service__content .temp span {
  font-size: 20px;
  color: #3f3b3a;
}
.service__wrapper .s__item .service__content .content__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service__wrapper .s__item .service__content .content__inner .list__content {
  width: 480rem;
}
.service__wrapper .s__item .service__content .content__inner .list__content dt {
  font-weight: bold;
  font-size: 22rem;
  line-height: 26.4rem;
  padding: 17rem 18rem;
  text-align: left;
  color: #302d2c;
  background: #eae9e9;
  border-left: 8rem solid #001e6f;
}
.service__wrapper .s__item .service__content .content__inner .list__content dd {
  font-weight: normal;
  font-size: 18rem;
  line-height: 25.2rem;
  margin: 0;
  margin: 20rem 0 48rem;
  text-align: left;
  color: #302d2c;
}
.service__wrapper .s__item .service__content .content__inner .image__wrapper {
  width: 490rem;
  display: flex;
}
.service__wrapper .s__item .service__content .link__btn {
  width: 100%;
  height: 90rem;
  margin-top: 15rem;
  border-radius: 40rem;
  background: #efd923;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__wrapper .s__item .service__content .link__btn span {
  font-weight: bold;
  font-size: 22rem;
  line-height: 26.4rem;
  text-align: center;
  color: #05001e;
}

@media screen and (max-width: 1120px) {
  html {
    font-size: 0.8px;
  }
  .about__wrapper .c__item {
    width: 95%;
  }
}
@media screen and (max-width: 860px) {
  html {
    font-size: 0.7px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .frontview .fv__logo {
    width: 353rem;
    left: 50%;
    top: 235rem;
    transform: translate(-50%, 0);
  }
  .frontview .f__text {
    width: 352rem;
    position: absolute;
    top: 460rem;
    right: auto;
    left: 50%;
    transform: translate(-50%);
  }
  .section-features .title__part .en__txt {
    width: 432rem;
    height: 64rem;
    margin: auto;
    border-radius: 40rem;
  }
  .section-features .title__part .en__txt span {
    font-size: 34rem;
  }
  .section-features .title__part .ja__txt {
    font-size: 43rem;
    line-height: 1.6;
  }
  .section-features {
    margin-top: -162rem;
  }
  .section-features .feature__items {
    width: 650rem;
  }
  .section-features .feature__items .f__item {
    margin-bottom: 80rem;
    display: block;
  }
  .section-features .feature__items .f__item .image__wrapper {
    width: 100%;
    margin-right: 0;
  }
  .section-features .feature__items .f__item .content__text {
    width: 100%;
    padding-top: 30rem;
  }
  .section-features .feature__items .f__item .content__text .t__txt {
    font-size: 30rem;
    line-height: 1.5;
  }
  .section-features .feature__items .f__item .content__text .t__txt span {
    font-size: 48rem;
  }
  .section-features .feature__items .f__item .content__text .c__txt {
    font-size: 22rem;
    line-height: 38rem;
    margin-top: 22rem;
    text-align: justify;
  }
  .section-curriculum {
    padding: 90rem 0 100rem;
  }
  .section-title .ja__txt {
    font-size: 48rem;
    line-height: 1.5;
  }
  .section-title .en__txt {
    font-size: 27rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }
  .section-curriculum .content__items {
    width: 600rem;
    margin: auto;
    margin-top: 60rem;
    display: block;
    position: relative;
  }
  .section-curriculum .content__items .arrow__left {
    width: 20rem;
    height: 60rem;
    background: url(../img/left_arrow.png);
    background-size: 100% 100%;
    position: absolute;
    left: -40rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-curriculum .content__items .arrow__right {
    width: 20rem;
    height: 60rem;
    background: url(../img/right_arrow.png);
    background-size: 100% 100%;
    position: absolute;
    right: -40rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-curriculum .content__items .c__item {
    width: 100%;
    margin-bottom: 0;
    margin: 0 10rem;
  }
  .section-curriculum .content__items .c__item .up__text {
    width: 100%;
    height: 375rem;
    padding-top: 36rem;
  }
  .section-curriculum .content__items .c__item .up__text .num {
    font-size: 38rem;
    line-height: 1.7;
  }
  .section-curriculum .content__items .c__item .up__text .t__txt {
    font-size: 45rem;
    line-height: 1.5;
  }
  .section-curriculum .content__items .c__item .up__text .term {
    width: 211rem;
    height: auto;
    margin-top: 8rem;
    padding: 10rem 0;
    font-size: 28rem;
    line-height: 1.1;
  }
  .section-curriculum .content__items .c__item .up__text .c__txt {
    font-weight: normal;
    font-size: 28rem;
    line-height: 40rem;
    margin-top: 10rem;
  }
  .section-curriculum .content__items .c__item .down__text {
    width: 100%;
    padding: 26rem 0 50rem;
  }
  .section-curriculum .content__items .c__item .down__text .t__lbl {
    font-weight: bold;
    font-size: 21rem;
    line-height: 1.5;
  }
  .section-curriculum .content__items .c__item .down__text .c__txt {
    font-weight: normal;
    font-size: 24rem;
    line-height: 38rem;
    margin-top: 12rem;
  }
  .section-curriculum .note__txt {
    font-weight: bold;
    font-size: 30rem;
    line-height: 44rem;
    margin-top: 40rem;
  }
  .section-curriculum .c__btns {
    margin-top: 40rem;
    display: block;
  }
  .section-curriculum .c__btns .c__btn {
    width: 600rem;
    height: 128rem;
    margin: 40rem auto;
    border-radius: 60rem;
  }
  .section-curriculum .c__btns .c__btn span {
    font-weight: bold;
    font-size: 32rem;
  }
  .section-faq .faq__items {
    width: 650rem;
    margin: auto;
    margin-top: 46rem;
  }
  .section-faq .faq__items .f__item .q__title .q__txt {
    font-size: 26rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .section-faq .faq__items .f__item .q__title .q__lbl {
    font-size: 39rem;
  }
  .section-faq .faq__items .f__item .q__title:after {
    content: "";
    width: 22rem;
    height: 13rem;
  }
  .section-faq .faq__items .f__item .a__box .a__lbl {
    font-size: 39rem;
  }
  .section-faq .faq__items .f__item .a__box .a__txt {
    font-size: 26rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
  }
  footer {
    padding: 60rem 0 50rem;
  }
  footer .f__logo {
    width: 225rem;
  }
  footer .address__txt {
    font-size: 24rem;
    line-height: 37rem;
    margin-top: 42rem;
  }
  footer ul li a {
    font-weight: normal;
    font-size: 20rem;
    line-height: 1.5;
  }
  footer ul li {
    padding: 0 15rem;
  }
  .copyright {
    font-size: 22rem;
    line-height: 1.5;
    padding: 15rem 0 25rem;
  }
  header .header__menu {
    width: 100%;
    height: 100%;
    background: white;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 80rem;
    padding: 60rem 50rem;
    display: none;
  }
  header .logo {
    width: 130rem;
  }
  header {
    padding: 19rem 25rem;
  }
  .sp-menu {
    width: 40rem;
    height: 32rem;
    position: relative;
    cursor: pointer;
  }
  .sp-menu.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 14rem;
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14rem;
  }
  .sp-menu span {
    width: 100%;
    height: 0;
    border-bottom: 4rem solid #000;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 14rem;
  }
  .sp-menu span + span + span {
    top: 29rem;
  }
  header .header__menu .header__txt {
    font-size: 22rem;
    line-height: 34rem;
    text-align: left;
  }
  header .header__menu .p__menu {
    margin-top: 25rem;
    display: block;
  }
  header .header__menu .p__menu ul {
    display: block;
  }
  header .header__menu .p__menu ul li {
    padding: 20rem 0;
    border-bottom: 1px solid #B3B3B3;
  }
  header .header__menu .p__menu ul li:last-child {
    border-bottom: 0;
  }
  header .header__menu .p__menu ul li a {
    font-size: 40rem;
    line-height: 1.5;
  }
  header .header__menu .p__menu .p__btns {
    margin-top: 50rem;
    justify-content: space-between;
    display: block;
    margin-left: 0;
    text-align: center;
  }
  header .header__menu .p__menu .p__btns .btn {
    width: 308rem;
    height: 73rem;
    border-radius: 40rem;
    background: #efd923;
    border: 1rem solid #190870;
    margin-left: 0;
  }
  header .header__menu .p__menu .p__btns .btn span {
    font-size: 26rem;
  }
  header .header__menu .p__menu .p__btns .tel__lbl {
    font-size: 24rem;
    display: block;
    margin-bottom: 9rem;
    text-align: center;
  }
  header .header__menu .p__menu .p__btns .tel {
    font-weight: bold;
    font-size: 70rem;
    margin-left: 0;
    margin-top: 5rem;
    display: inline-block;
  }
  .breadcrumb .icon {
    width: 27rem;
  }
  .breadcrumb .arrow {
    width: 8rem;
    margin: 0 16rem;
  }
  .breadcrumb .link {
    font-size: 22rem;
  }
  .breadcrumb {
    width: 690rem;
    margin: auto;
    margin-top: 140rem;
  }
  .subfrontview {
    width: 670rem;
    margin: auto;
    margin-top: 90rem;
  }
  .subfrontview .en__txt {
    font-size: 24rem;
  }
  .subview__pat {
    width: 100%;
  }
  .about__detail {
    width: 100%;
    height: 560rem;
    background: url(../img/about_bg_sp.png);
    background-size: cover;
    margin-top: 130rem;
  }
  .about__detail .p__text {
    width: 473rem;
  }
  .about__wrapper .c__item {
    width: 600rem;
    padding: 70rem 0;
    display: block;
    margin: auto;
  }
  .about__wrapper .c__item .image__wrapper {
    width: 100%;
  }
  .about__wrapper .c__item .content__text {
    width: 100%;
    margin-left: 0;
    margin-top: 50rem;
  }
  .about__wrapper .c__item .content__text .t__txt {
    font-size: 36rem;
    line-height: 1.5;
    letter-spacing: -0.05em;
  }
  .about__wrapper .c__item .content__text .c__txt {
    font-size: 24rem;
    line-height: 51rem;
    margin-top: 35rem;
  }
  .about__wrapper .c__item .content__text .frame__txt span {
    font-weight: normal;
    font-size: 21rem;
    line-height: 1.5;
  }
  .about__wrapper .c__item .content__text .circle__items .p__item {
    width: 183rem;
    height: 183rem;
  }
  .about__wrapper .c__item .content__text .circle__items .p__item span {
    font-size: 19.09rem;
    line-height: 26.87rem;
  }
  .about__wrapper .c__item:last-child {
    margin: auto;
  }
  .about__wrapper .b__line {
    margin: 30rem 0;
  }
  .about__wrapper .c__item .content__text .list__content li .icon {
    width: 42rem;
    margin-right: 14rem;
  }
  .about__wrapper .c__item .content__text .list__content li .txt {
    font-size: 26rem;
    line-height: 36rem;
  }
  .company__wrapper {
    width: 650rem;
    margin: auto;
    margin-top: 70rem;
  }
  .company__wrapper table {
    width: 100%;
  }
  .company__wrapper table tr td {
    font-size: 28rem;
    line-height: 51rem;
    padding: 45rem 0;
  }
  .company__wrapper table tr td:last-child {
    padding-top: 0;
  }
  .company__wrapper table tr {
    display: grid;
  }
  .company__wrapper table tr td:first-child {
    width: 100%;
    font-size: 26rem;
    padding-bottom: 12rem;
  }
  .contact__wrapper {
    width: 650rem;
    margin: 130rem auto;
  }
  .contact__wrapper .detail__txt {
    font-weight: 500;
    font-size: 24rem;
    letter-spacing: 0.01em;
    line-height: 40rem;
  }
  .contact__wrapper .contact__form {
    margin-top: 60rem;
  }
  .contact__wrapper .contact__form .c__item .c__lbl {
    font-size: 30rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-bottom: 16rem;
  }
  .contact__wrapper .contact__form .c__item input[type=text], .contact__wrapper .contact__form .c__item input[type=email] {
    height: 90rem;
    border-radius: 10rem;
    background: #fff;
    border: 1rem solid #767676;
    font-size: 26rem;
  }
  .contact__wrapper .contact__form .c__item {
    margin-bottom: 33rem;
  }
  .contact__wrapper .contact__form .c__item .chk__items label span {
    font-size: 32rem;
  }
  .contact__wrapper .contact__form .c__item .chk__items {
    flex-wrap: wrap;
  }
  .contact__wrapper .contact__form .c__item .chk__items label {
    margin-right: 20rem;
    margin-bottom: 15rem;
  }
  .contact__wrapper .contact__form .c__item textarea {
    width: 100%;
    height: 280rem;
    border-radius: 10rem;
    background: #fff;
    border: 1rem solid #767676;
    font-size: 26rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
    padding: 20rem;
  }
  .contact__wrapper .pck__item {
    margin-top: 70rem;
  }
  .contact__wrapper .pck__item p {
    font-weight: normal;
    font-size: 25rem;
  }
  .contact__wrapper .submit__btn {
    width: 300rem;
    height: 60rem;
    margin: auto;
    margin-top: 50rem;
  }
  .contact__wrapper .submit__btn span {
    font-size: 24rem;
  }
  .service__wrapper {
    width: 650rem;
    margin: 100rem auto;
  }
  .service__wrapper .s__item {
    width: 100%;
    height: auto;
    padding: 28rem;
  }
  .service__wrapper .s__item .s__title {
    display: flex;
    align-items: baseline;
    position: relative;
    flex-direction: column-reverse;
  }
  .service__wrapper .s__item .s__title .s__term {
    width: 180rem;
    height: 36rem;
    margin-bottom: 17rem;
    margin-left: 0;
  }
  .service__wrapper .s__item .s__title .s__term span {
    font-weight: normal;
    font-size: 24rem;
  }
  .service__wrapper .s__item .s__title .s__lbl {
    font-weight: bold;
    font-size: 40rem;
    line-height: 1.5;
  }
  .service__wrapper .s__item .service__content .content__inner {
    flex-direction: column-reverse;
  }
  .service__wrapper .s__item .service__content .content__inner .image__wrapper {
    width: 100%;
  }
  .service__wrapper .s__item .service__content .content__inner .list__content {
    width: 100%;
    margin-top: 50rem;
  }
  .service__wrapper .s__item .service__content .content__inner .list__content dt {
    font-size: 26rem;
    line-height: 1.5;
  }
  .service__wrapper .s__item .service__content .content__inner .list__content dd {
    font-size: 22rem;
    line-height: 1.5;
    margin: 0;
    margin: 25rem 0 50rem;
  }
  .service__wrapper .s__item .service__content .temp {
    width: 100%;
    height: 403rem;
  }
  .service__wrapper .s__item .service__content .temp span {
    font-size: 30rem;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */