:root {
  --gradationStart: #136eab;
  --gradationEnd: #54b8e6;
  --fontColor: #333333;
  --fontWeightDefault: 500;
  --font12pt: 1.2rem;
  --font14pt: 1.3rem;
  --font15pt: 1.45rem;
  --font16pt: 1.6rem;
  --font18pt: 1.75rem;
  --font20pt: 1.95rem;
  --font24pt: 2.25rem;
  --font26pt: 2.5rem;
  --font36pt: 3.3rem;
  /* --font50pt: 3.8rem; */
  --font50pt: 4.2rem;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');

@font-face {
  font-family: 'Noto Serif JP';
  font-weight: 300;
  src: local('Noto Serif JP Light'), url(fonts/NotoSerifJP-Light.otf);
}
@font-face {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  src: local('Noto Serif JP Regular'), url(fonts/NotoSerifJP-Regular.otf);
}
@font-face {
  font-family: 'Noto Serif JP';
  font-weight: 500;
  src: local('Noto Serif JP Medium'), url(fonts/NotoSerifJP-Medium.otf);
}
@font-face {
  font-family: 'Noto Serif JP';
  font-weight: 600;
  src: local('Noto Serif JP SemiBold'), url(fonts/NotoSerifJP-SemiBold.otf);
}
@font-face {
  font-family: 'Noto Serif JP';
  font-weight: 700;
  src: local('Noto Serif JP SemiBold'), url(fonts/NotoSerifJP-Bold.otf);
}

@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 300;
  src: local('Noto Sans JP Light'), url(fonts/NotoSansJP-Light.otf);
}
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  src: local('Noto Sans JP Regular'), url(fonts/NotoSansJP-Regular.otf);
}
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  src: local('Noto Sans JP Medium'), url(fonts/NotoSansJP-Medium.otf);
}
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 600;
  src: local('Noto Sans JP Bold'), url(fonts/NotoSansJP-Bold.otf);
}

/***********************************
* スクロールアニメ
 ***************************************/

.fadein.fadein--01 {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 2s;
}

.fadein.fadein--01.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

*,
body {
  font-family: 'Noto Serif JP', serif;
  font-weight: var(--fontWeightDefault);
  line-height: 1.8;
  color: var(--fontColor);
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
  }
}
/* reset width100% 処理*/
main,
nav,
section,
div,
form {
  width: auto;
}
main::after,
nav::after,
section::after,
div::after,
form::after {
  content: none;
}
.section {
  position: relative;
}
#main_w .wrap_ttl h1,
#main_w .section h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
#wrapAll {
  margin: auto;
}
#main_w {
  padding-bottom: 0;
}
#main .section + .section {
  margin-top: auto;
}
#main_w .section .title_h2,
.section .title_h2 {
  color: var(--fontColor);
  font-weight: 600;
  text-align: center;
  /* font-size: var(--font36pt); */
  font-size: min(3vw, 3.3rem);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
#main_w .section .title_h2 span,
.section .title_h2 span {
  /* font-size: var(--font50pt); */
  font-size: min(4vw, 4.2rem);
}
#main_w .txt_catch,
.txt_catch,
#main_w .txt_catch_sub,
.txt_catch_sub {
  font-size: var(--font20pt);

  color: var(--fontColor);
  text-align: center;
  font-weight: var(--fontWeightDefault);
}
#main_w .txt_catch,
.txt_catch {
  margin-bottom: 60px;
}
#main_w .txt_catch a,
.txt_catch a {
  text-decoration: none;
  border-bottom: 2px solid #adadad;
  padding-bottom: 3px;
  transition: 0.3s;
}
#main_w .txt_catch a:hover,
.txt_catch a:hover {
  border-bottom: 2px solid rgba(173, 173, 173, 0);
}
#main_w .txt_catch_sub,
.txt_catch_sub {
  font-size: var(--font18pt);
}
#main_w .txt_bg,
.txt_bg {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: #f4f4f4;
  font-size: 10rem;
  font-weight: 300;
}
@media screen and (min-width: 640px) {
  #main_w .txt_catch.txtbig br,
  .txt_catch.txtbig br,
  br.sp {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  #main_w .section .title_h2,
  .section .title_h2 {
    /* padding: 0 3rem; */
    margin-bottom: 2.5rem;
    font-size: min(5vw, 3.9rem);
  }
  #main_w .section .title_h2 span,
  .section .title_h2 span {
    font-size: unset;
  }
  #main_w .txt_catch.txtbig,
  .txt_catch.txtbig {
    font-size: min(4.5vw, 3.2rem);
    text-align: center;
  }
  #main_w .txt_catch.txtbig br,
  .txt_catch.txtbig br {
    display: block;
  }
  #main_w .txt_catch,
  .txt_catch {
    margin-bottom: 3.5rem;
  }

  #main_w .txt_catch br,
  .txt_catch br {
    display: none;
  }
  #main_w .txt_catch,
  .txt_catch,
  #main_w .txt_catch_sub,
  .txt_catch_sub {
    font-size: min(3.9vw, 1.8rem);
    text-align: left;
  }
  #main_w .txt_catch_sub br,
  .txt_catch_sub br {
    display: none;
  }
  #main_w .txt_bg,
  .txt_bg {
    font-size: min(15vw, 9rem);
  }
}
@media screen and (max-width: 480px) {
  #main_w .section .title_h2,
  .section .title_h2 {
    font-size: min(7vw, 3.9rem);
  }
}
/* modalモーダル */
a.button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  background: #000;
  margin: 20px;
}
#re-modal {
  display: none;
  position: fixed;
  width: 95%;
  max-width: 1280px;
  height: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
}
.modal-con {
  display: none;
  text-align: center;
}
.modal-con .modal-conbox {
  font-size: min(5vw, 2.3rem);
  color: #fff;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-con .modal-conbox .contant {
  background-color: #fff;
  margin: 3.5rem;
}
.modal-con .modal-conbox .contant p {
  color: var(--fontColor);
  font-size: var(--font20pt);
  font-weight: var(--fontWeightDefault);
  margin: 1rem 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-con .modal-conbox .contant p img {
  margin-left: 1.5rem;
}
.modal-con .modal-conbox .contant a {
  text-decoration: none;
}
.close {
  font-size: min(5vw, 2.3rem);
  color: #fff;
  line-height: 30px;
  position: absolute;
  right: 30px;
  top: 50px;
}

@media screen and (max-width: 768px) {
  .modal-con {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .modal-con {
    width: 90%;
  }
}

.renewal {
  margin-bottom: 4em;
}

@media screen and (max-width: 800px) {
  .renewal {
    padding: 0 10px;
  }
  #form-css.renewal {
    padding: 0;
  }
}

.re-bnr {
  text-align: center;
}
.re-bnr img {
  cursor: pointer;
  transition: 0.4s;
}
.re-bnr img:hover {
  opacity: 0.5;
}

/* header固定 */
#header {
  position: absolute;
  box-shadow: none;
  z-index: 15;
  background: none;
  background-color: #fff;
  opacity: 0.9;
  padding: 1.6rem;
}
#header.opacity {
  opacity: 1;
}
.fixed #header {
  padding: 1rem;
}
.fixed #header .header-inner #logo a img {
  max-width: 240px;
}
.fixed #header .header-inner #logo {
  height: auto;
}

.header-inner {
  max-width: 1980px;
  padding: 0 2rem;
  margin: 0 auto;
  z-index: 100;
  transition: all 0.4s ease-out;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.header-inner #logo {
  width: 297px;
  max-width: 100%;
}
.header-inner #logo a,
#include-header > a:nth-of-type(1) {
  display: flex;
}
#btn-nav.fixed {
  position: relative;
  z-index: 100;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-trigger em {
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -27px;
  font-style: normal;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.menu-trigger {
  position: relative;
  /* width: 50px;
  height: 36px; */
  width: 40px;
  height: 24px;
  z-index: 10;
  /*追加  */
  margin-bottom: 20px;
}

.menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--fontColor);
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
  width: 70%;
}

.menu-trigger span:nth-of-type(2) {
  top: 11px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active-1 span:nth-of-type(1) {
  -webkit-transform: translateY (11px) rotate (-45deg);
  transform: translateY(11px) rotate(-46deg);
  width: 100%;
}

.menu-trigger.active-1 span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active-1 span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}
.menu-trigger.active-1 + #navigation {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}

.menu-trigger.active-1 + #navigation {
  -ms-overflow-style: none;
}
.menu-trigger.active-1 + #navigation::-webkit-scrollbar {
  display: none;
}
.hbg-area {
  display: flex;
  align-items: flex-end;
  margin-bottom: 4px;
  /* margin-top: 19px; */
}
.hbg-area a:nth-of-type(1) {
  margin-right: 3.5rem;
}
.hbg-area a img {
  width: 156px;
}
.innernew {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.innernew.nav {
  max-width: 1980px;
}
@media screen and (max-width: 768px) {
  .header-inner {
    /* height: 65px; */
    padding: 0;
  }
  .header-inner #logo {
    height: auto;
  }
  .header-inner #logo a img,
  .header-inner #include-header a img {
    width: 80%;
  }
  #include-header a:nth-of-type(1) {
    margin-right: 1.5rem;
  }
  #include-header a {
    justify-content: end;
  }
  .hbg-area a:nth-of-type(1) {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 640px) {
  #header {
    padding: 1.5rem 2rem;
  }
  .menu-trigger {
    width: 47px;
    height: 23px;
    margin-bottom: 14px;
  }
  .menu-trigger em {
    font-size: 1.2rem;
    bottom: -23px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .menu-trigger.active-1 span:nth-of-type(1) {
    -webkit-transform: translateY (10px) rotate (-45deg);
    transform: translateY(10px) rotate(-46deg);
    width: 100%;
  }
  .menu-trigger.active-1 span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}
/* navigation css */
#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  visibility: hidden;
  background: url(../images/nav_bg.png) no-repeat right bottom;
  background-color: #fff;
  background-size: cover;
  font-size: var(--font26pt);
}
#navigation a {
  font-weight: 600;
}
#navigation > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10rem 0;
  box-sizing: border-box;
}
#navigation a {
  text-decoration: none;
}
#navigation .nav-list {
  display: flex;
}
#navigation .nav-list > div:nth-of-type(1) {
  margin-right: 2rem;
}
#navigation .navtop-txt {
  margin-bottom: 1.2rem;
}
#navigation .nav-list .course-syoukai li {
  margin-left: 2.7rem;
  margin-bottom: 0.5rem;
  font-size: var(--font20pt);
}
#navigation .nav-list .course-syoukai li::before {
  content: '-';
  margin-right: 8px;
}
#navigation .nav-list .course-hikaku {
  margin-left: 2rem;
}
#navigation .nav-list .course-hikaku li {
  margin-bottom: 1.5rem;
}
#navigation .nav-list.nav-footer {
  justify-content: space-between;
  align-items: flex-end;
}
#navigation .nav-list.nav-footer img {
  max-width: 275px;
  /* width: 100%; */
  width: 18%;
}
#navigation .nav-list .nav-ft-list {
  display: flex;
  align-items: flex-end;
  font-size: var(--font16pt);
}
#navigation .nav-list .nav-ft-list li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
#navigation .nav-list .nav-ft-list .nav-contact {
  font-size: var(--font20pt);
  padding: 1rem 2rem;
  border: 1px solid var(--fontColor);
  background-color: #fff;
}
#navigation .nav-list .nav-ft-list .nav-contact {
  margin-left: 0;
}
#navigation .nav-list .nav-ft-list .nav-contact a {
  margin-right: 0;
}
#main_w .section {
  /* margin-bottom: 5rem; */
  width: auto;
  margin-bottom: 0;
}
#main_w .section:not(:nth-of-type(2)) {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
#main {
  padding: 0;
  max-width: unset;
  background-color: transparent;
}
.clickdown img {
  display: none;
}

@media screen and (max-width: 940px) {
  #navigation {
    font-size: min(2.5vw, 2.3rem);
  }
  #navigation .nav-list .course-syoukai li {
    font-size: min(1.7vw, 1.8rem);
  }
  #navigation .nav-list .nav-ft-list {
    font-size: min(1.5vw, 1.6rem);
  }
  #navigation .nav-list .nav-ft-list .nav-contact {
    font-size: min(1.5vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  #navigation {
    font-size: var(--font26pt);
  }
  #navigation .nav-list .nav-ft-list .nav-contact {
    font-size: var(--font20pt);
  }
  #navigation .nav-list .course-syoukai li {
    font-size: var(--font20pt);
    margin-left: 1.5rem;
    padding-left: 1em;
    text-indent: -1em;
  }
  #navigation .nav-list {
    flex-direction: column;
  }
  #navigation .nav-list .nav-ft-list {
    flex-direction: column;
    align-items: start;
    font-size: var(--font16pt);
  }

  #navigation .nav-list.nav-footer {
    align-items: start;
  }
  #navigation > div {
    padding: 5rem 0;
    width: 85%;
  }
  .nav-ft-list li {
    margin-bottom: 2rem;
  }
  #navigation .nav-list.nav-footer img {
    margin: 3rem 0;
    width: auto;
  }

  .course-syoukai {
    margin-bottom: 2rem;
  }
  #navigation .nav-list .course-hikaku {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  #main_w .section:not(:nth-of-type(2)) {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .hbg-txt-ml {
    margin-left: 15px;
  }
  #navigation .nav-list .course-syoukai li {
    font-size: min(5vw, 2.2rem);
  }

  #navigation .nav-list .nav-ft-list .nav-contact {
    font-size: min(5vw, 2.2rem);
    padding: 0.5rem 2rem;
  }
  .clickdown {
    margin-bottom: 1.5rem;
  }
  .clickdown a {
    position: relative;
    transition: all ease 1s;
  }

  .clickdown img {
    display: inline-block;
    width: 24px !important;
    height: 13px;
    transition: all ease 0.6s;
    transform: rotate(180deg);
    cursor: pointer;
  }
  .clickdown img.trun {
    transform: rotate(0deg);
  }
}

/* button gradetion  */

.gra-btn {
  border: none;
  color: #fff;
  width: 270px;
  max-width: 100%;
  font-size: min(1.8vw, 1.8rem);
  background: linear-gradient(to right, #136eab, #54b8e6);
  transition: 0.5s;
}

.gra-btn:hover {
  opacity: 0.7;
}
/* background skyblue */
.gra-btn-center form,
.gra-btn.skyblue {
  background: var(--gradationEnd);
}
/* background blue */
.gra-btn.blue {
  background: var(--gradationStart);
}
/* background white */
.gra-btn.white-bg {
  width: min(23vw, 220px);
  font-size: min(2vw, 1.6rem);
  font-weight: var(--fontWeightDefault);
  background: #fff;
  margin-right: 2rem;
  transition: 0.3s;
}
.gra-btn.white-bg a {
  color: var(--fontColor);
  border: 1px solid var(--fontColor);
  margin: 0;
  padding: 1rem 0;
  padding-left: 10px;
}
.gra-btn.white-bg a img {
  width: 10px;
}
.gra-btn.white-bg:hover {
  opacity: 0.5;
}
/* background light blue */
.gra-btn.libl-bg {
  width: 220px;
  max-width: 100%;
  font-size: min(2vw, 1.6rem);
  font-weight: var(--fontWeightDefault);
  background: #cbeaf7;
  margin-right: 5.5rem;
  transition: 0.3s;
  padding: 0;
}
.gra-btn.libl-bg a {
  transition: all 0.3s ease-in-out;
  color: var(--fontColor);
  margin: 0;
  padding: 0.8rem 0;
  border: none;
}
.gra-btn.libl-bg a img {
  width: 10px;
}
.gra-btn.white-bg:hover {
  opacity: 0.5;
}
.gra-btn a,
form .gra-btn {
  text-decoration: none;
  position: relative;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 0;
  color: #fff;
  margin: 4px;
}
form .gra-btn img,
.gra-btn a img {
  margin-left: 1.2rem;
  width: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gra-btn-left {
  display: flex;
  justify-content: left;
}
.gra-btn-center {
  display: flex;
  justify-content: center;
  align-items: end;
}
.gra-btn.libl-bg a {
	flex-direction: row-reverse;
}
form .gra-btn.libl-bg img,
.gra-btn.libl-bg a img {
	margin-left: 0;
	margin-right: 1.2rem;
	/*transform: translateY(2px);*/
}



/* background withe */
.gra-btn.whbox {
  color: var(--fontColor);
  max-width: 260px;
  width: 100%;
  min-height: 45px;
  font-size: var(--font16pt);
  font-weight: var(--fontWeightDefault);
  background: #fff;
}
.gra-btn.whbox a {
  text-decoration: none;
  border: none;
  color: var(--fontColor);
  /* font-weight: 700; */
  font-weight: 600;
}
.gra-btn.whbox a img {
  width: 10px;
}
@media screen and (max-width: 840px) {
  .gra-btn {
    font-size: min(2vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  .gra-btn {
    font-size: min(4vw, 2rem);
    min-width: min(5vw, 300px);
  }
  .gra-btn.white-bg {
    min-width: min(5vw, 300px);
    font-size: min(4vw, 1.8rem);
  }
}
@media screen and (max-width: 640px) {
  #header .nav-wrap .nav-left a img {
    width: 80%;
  }
  #header .nav-wrap .nav-right a {
    width: 58%;
    margin-right: 1rem;
  }
  .fixed #header .nav-wrap .nav-right a img {
    max-width: 100%;
  }
  #header .nav-wrap {
    height: 6.8rem;
  }
  #header .nav-wrap .nav-left {
    left: 1rem;
  }
  #header .nav-wrap .nav-right {
    right: 1rem;
  }
  .gra-btn {
    font-size: min(4.8vw, 2rem);
  }
  .gra-btn-center {
    flex-direction: column;
    align-items: center;
  }
  .gra-btn a {
    margin: 3px;
  }
  .gra-btn.white-bg {
    margin-right: 0;
  }
  .gra-btn.white-bg {
    width: 70%;
    font-size: min(4vw, 1.8rem);
  }
  .gra-btn.libl-bg a::after {
    background: url(images/btn-bk-arrow_opp.png) no-repeat;
    background-size: 34%;
    width: 22px;
    background-position: 0px center;
  }
	form .gra-btn.libl-bg img,
	.gra-btn.libl-bg a img {
		transform: translateY(1px);
	}

}
@media screen and (max-width: 480px) {
  #header #hbg {
    width: 38px;
    height: 32px;
  }
  #header .nav-wrap .nav-left a img {
    width: min(40vw, 183px);
  }
  #header .nav-wrap .nav-right a {
    width: min(20vw, 110px);
  }
}
.mv_silair,
.mv_silair img {
	width: 100%;
	height: auto;
	display: block;
}
/*
.mv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mv::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: url(../../common/images/mv_waveline.png) no-repeat;
  background-position: center bottom;
  display: block;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.mv h1 {
  font-size: var(--font50pt);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}
/*
.s-title {
  font-size: min(2.8vw, 3.3rem);
  font-weight: 600;
  text-align: center;
  margin-top: 5rem;
}
.s-title span {
  font-size: min(2vw, 2.5rem);
  font-weight: 600;
}
/*
.mv {
  height: 45rem;
}
.mv.simulation-mv,
.mv.coursedetail-mv,
.mv.hikaku-mv,
.mv.flow-mv,
.mv.form,
.mv.coursesyoukai-mv {
  background: url(../../common/images/mv_bg_simulation.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
.mv.legal-mv {
  background: url(../../common/images/mv_bg_legal.png) no-repeat;
  background-size: cover;
}
.mv.faq-mv {
  background: url(../../common/images/mv_bg_faq.png) no-repeat;
  background-size: cover;
}
/* .mv.form {
  background: url(../../common/images/mv_bg_form.png) no-repeat;
  background-size: cover;
  background-position: center center;
} * /
.mv.reform-mv {
  background: url(../../common/images/mv_bg_form.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
/* .mv.coursedetail-mv {
  background: url(../../common/images/mv_bg_coursedetail.png) no-repeat;
  background-size: cover;
  background-position: center center;
} * /
/* .mv.hikaku-mv {
  background: url(../../common/images/mv_bg_hikaku.png) no-repeat;
  background-size: cover;
  background-position: center center;
} * /
/* .mv.flow-mv {
  background: url(../../common/images/mv_bg_flow.png) no-repeat;
  background-size: cover;
  background-position: center center;
} * /
.mv.remakeform-mv {
  background: url(../../common/images/mv_bg_remakeform.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
.mv.contact-mv {
  background: url(../../common/images/mv_bg_contact.png) no-repeat;
  background-size: cover;
  background-position: 0 57%;
}
/* .mv.coursesyoukai-mv {
  background: url(../../common/images/mv_bg_coursesyoukai.png) no-repeat;
  background-size: cover;
  background-position: top 80% center;
} * /
.mv.menu-list-mv {
  background: url(../../common/images/mv_bg_menu_list.png) no-repeat;
  background-size: cover;
  background-position: top 30% center;
}
.mv.before-mv {
  background: url(../../common/images/mv_bg_before.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .mv h1 {
    font-size: min(4vw, 3.8rem);
  }
}
@media screen and (max-width: 640px) {
  .mv h1 {
    font-size: min(6.2vw, 3.8rem);
  }
  .s-title {
    font-size: min(5.5vw, 2.4rem);
  }
  .s-title span {
    font-size: min(3.7vw, 2rem);
  }
  .mv {
    height: 32rem;
  }
  /* .mv.form {
    background: url(../../common/images/mv_bg_form.png) no-repeat;
    background-size: cover;
    background-position: right -200px center;
  } * /

  .mv.contact-mv {
    background-position: center center;
  }
  .mv.remakeform-mv {
    background: url(../../common/images//mv_bg_remakeform_sp.png) no-repeat;
    background-position: 0 -20px;
    background-size: cover;
  }
  .mv.menu-list-mv {
    background: url(../../common/images/mv_bg_menu_list_sp.png) no-repeat;
    background-size: cover;
    background-position: top -25px center;
  }
  .mv.before-mv {
    background: url(../../common/images/mv_bg_before.png) no-repeat;
    background-size: cover;
    background-position: center right;
  }
  .mv::after {
    background: url(../../common/images/mv_waveline-sp.png) no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
  }
}
*/

nav.bread {
  margin-top: 3vw;
}
nav.bread ul {
  font-size: var(--font14pt);
}
nav.bread ul li,
nav.bread ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
nav.bread ul li {
  display: inline-block;
}
nav.bread ul li::after {
  font-family: 'umr';
  content: '/';
  color: #333;
  font-size: 1.1rem;
  display: inline-block;
  vertical-align: 0.2rem;
  margin: 0 5px 0 8px;
}
nav.bread ul li:last-child::after {
  display: none;
}
nav.bread ul li a {
  text-decoration: none;
}
nav.bread ul li.skyblue {
  color: #54b8e6;
}
/* footer固定メニュー */
#box_aply {
  display: flex;
  justify-content: end;
  bottom: -8px;
  z-index: 12;
  max-width: 1980px;
}
#box_aply a {
  color: #fff;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
}
#box_aply .btn_simulation,
#box_aply .btn_shindan {
  text-align: center;
  background-color: #fff;
}
#box_aply .btn_simulation a,
#box_aply .btn_shindan a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
  border-radius: 0;
}
#box_aply .btn_simulation a::after,
#box_aply .btn_shindan a::after {
  font-family: 'umr';
  content: '>';
  display: inline-block;
  margin-left: 10px;
}
#box_aply .btn_simulation p {
  background-color: #00947d;
  padding: 5px;
  height: 70px;
}
#box_aply .btn_simulation a {
  background-color: #00947d;
  border: 1px solid #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#box_aply .btn_shindan p {
  background-color: #003686;
  padding: 5px;
  height: 70px;
}
#box_aply .btn_shindan a {
  background-color: #003686;
  border: 1px solid #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#box_aply .btn_simulation a:hover,
#box_aply .btn_shindan a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 641px) {
  #box_aply {
    text-align: right;
  }
  #box_aply .btn_simulation,
  #box_aply .btn_shindan {
    width: 33%;
    font-size: 1.4rem;
    display: inline-block;
  }
  #box_aply .btn_simulation a,
  #box_aply .btn_shindan a {
    padding: 0;
  }
  #box_aply .btn_simulation a::after,
  #box_aply .btn_shindan a::after {
    font-size: 1.4rem;
    vertical-align: -0.1em;
  }
}
@media screen and (min-width: 980px) {
  #box_aply .btn_simulation,
  #box_aply .btn_shindan {
    font-size: 1.6rem;
    width: 230px;
    margin-right: 0;
  }
  #box_aply .btn_shindan {
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  nav.bread {
    margin-top: 0;
  }
  #box_aply {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
  }
  #box_aply .btn_simulation,
  #box_aply .btn_shindan {
    font-size: 1.6rem;
    width: 50%;
  }
  #box_aply .btn_simulation a,
  #box_aply .btn_shindan a {
    padding: 12px 5px 5px;
  }
  #box_aply .btn_simulation a::after,
  #box_aply .btn_shindan a::after {
    font-size: 1.4rem;
    vertical-align: -0.1em;
  }
}
@media screen and (max-width: 480px) {
  #box_aply .btn_simulation,
  #box_aply .btn_shindan {
    font-size: min(3.5vw, 1.6rem);
  }
}
/* footer */
#footernew {
  background-color: #f4f4f4;
  padding: 10rem 0;
}
#footernew .ft-list {
  display: flex;
  justify-content: space-between;
  font-size: var(--font18pt);
  font-weight: var(--fontWeightDefault);
}
#footernew .ft-list .ft-list-box:not(:last-child) {
  margin-right: 10px;
}
#footernew .ft-list .ft-list-box:nth-last-of-type(1) {
  font-size: var(--font16pt);
}

#footernew .ft-list .ft-list-box li {
  margin-bottom: 15px;
}
#footernew .ft-list .ft-list-box:nth-last-of-type(1) li {
  margin-bottom: 0;
}
#footernew .ft-list .ft-list-box li a {
  text-decoration: none;
}
#footernew .ft-list .ft-list-box:nth-last-of-type(1) li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.contact-btn {
  font-size: 2rem;
  margin-top: 4rem;
  border: 1px solid var(--fontColor);
  padding: 1.5rem;
  line-height: 1.2;
  text-align: center;
}
.contact-btn a {
  text-decoration: none;
}
.copynew {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  #footernew .ft-list {
    font-size: min(1.7vw, 1.6rem);
  }
  #footernew .ft-list .ft-list-box:nth-last-of-type(1) {
    font-size: min(1.5vw, 1.5rem);
  }
}
@media screen and (max-width: 768px) {
  #footernew {
    padding: 2.5rem;
  }
  #footernew .ft-list {
    display: none;
  }
  .copynew {
    margin: 0 auto;
    text-align: center;
    font-size: min(2.7vw, 1.5rem);
  }
}

.main-title {
  font-size: var(--font36pt);
  text-align: center;
  margin: 5rem 3rem;
}
.table-area,
.table-area dd p,
.table-area dt p {
  font-family: 'Noto Sans JP';
  font-weight: 400;
}
.table-area {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #c7c7c7;
  padding: 3.5rem 0;
  color: var(--fontColor);
  position: relative;
}

.table-area dt {
  font-size: var(--font16pt);
  min-width: 19.5em;
  display: flex;
  align-items: center;
}
.legalarea .table-area dt {
  min-width: 15.5em;
}
.table-area dd {
  font-size: var(--font16pt);
  /* width: 100%; */
}
.sec-legal {
  margin-bottom: 15rem;
}
.sec-legal .table-area::before {
  content: '';
  position: absolute;
  height: 60%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-left: 3px solid var(--gradationEnd);
}
.sec-legal .table-area dt p {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .table-area {
    flex-direction: column;
  }
  .table-area dt {
    margin-bottom: 2rem;
  }
  .table-area dt p br {
    display: none;
  }

  .table-area dd select {
    padding: 2rem;
  }
  .table-area .des-label div {
    display: flex;
    margin-bottom: 12px;
  }

  .table-area dt .not-required {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .main-title {
    font-size: min(5vw, 3.9rem);
  }
  .table-area:nth-last-of-type(1) {
    margin-bottom: 6rem;
  }
  .table-area dt {
    font-size: min(3.5vw, 1.5rem);
  }
  .table-area dd select {
    padding: 1rem;
  }
  .table-area dd {
    font-size: min(4vw, 1.8rem);
  }
  .table-area dd {
    margin-left: 2rem;
  }
  .table-area dt span {
    width: auto;
    height: 100%;
  }
  .sec-legal .table-area::before {
    height: 90%;
  }
  .sec-legal {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .table-area dt span {
    min-width: 28px;
    font-size: min(3.5vw, 1.1rem);
    margin-right: 1rem;
    padding: 0 0.5rem;
  }
}
/* footer banner */
.footer-bnr {
  background-color: #eef8fc;
  padding: 15rem 0;
}
.footer-bnr article {
  display: flex;
  justify-content: space-between;
}
.footer-bnr article .ft-bnr-bg {
  background-color: #fff;
  width: 100%;
  height: 100%;
}

.footer-bnr article .ft-bnr-bg .ft-bnr {
  padding: min(3.5vw, 4.5rem);
  margin: 5px;
  box-sizing: border-box;
  text-align: center;
  transition: 0.5s;
}
.footer-bnr article .ft-bnr-bg .ft-bnr:hover {
  opacity: 0.7;
}
.footer-bnr article .ft-bnr-bg:nth-child(1) .ft-bnr {
  border: 1px solid #136eab;
}
.footer-bnr article .ft-bnr-bg:nth-child(2) .ft-bnr {
  border: 1px solid #003686;
}
.footer-bnr article .ft-bnr-bg:nth-child(3) .ft-bnr {
  border: 1px solid #00947d;
}
.footer-bnr article .ft-bnr-bg .ft-bnr p {
  font-size: var(--font26pt);
  /* font-size: min(1.29vw, 2.6rem); */
  font-weight: 600;
  text-align: center;
}
.footer-bnr article .ft-bnr-bg .ft-bnr p span {
  font-size: var(--font26pt);
  /* font-weight: 700; */
  font-weight: 600;
  color: #003686;
}
.footer-bnr-area {
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .footer-bnr article .ft-bnr-bg .ft-bnr p,
  .footer-bnr article .ft-bnr-bg .ft-bnr p span {
    font-size: min(2.3vw, 2.4rem);
  }
}
.txt-blue {
  color: #136eab;
}
.txt-navy {
  color: #003686;
}
.txt-green {
  color: #00947d;
}
.footer-bnr .kaisyu-bnr {
  text-align: center;
  margin-top: 5rem;
}
.footer-bnr .kaisyu-bnr a {
  width: 100%;
  transition: 0.5s;
}
.footer-bnr .kaisyu-bnr a:hover {
  opacity: 0.7;
}
.footer-bnr .kaisyu-bnr img {
  width: 100%;
}
.footer-bnr .footer-diagnose {
  background: url(../../images/footer_bnr_bt01.png) no-repeat;
}
.footer-bnr .footer-order {
  background: url(../../images/footer_bnr_bt02.png) no-repeat;
}
.footer-bnr .footer-remake {
  background: url(../../images/footer_bnr_bt03.png) no-repeat;
}
.footer-bnr .footer-diagnose {
  margin-right: 2rem;
}

.footer-bnr .footer-order {
  margin-left: 2rem;
}
.footer-bnr .footer-diagnose a,
.footer-bnr .footer-order a {
  text-decoration: none;
}
.footer-bnr .footer-diagnose,
.footer-bnr .footer-order,
.footer-bnr .footer-remake {
  background-position: center bottom;
  background-size: 100% 50%;
}
@media screen and (max-width: 768px) {
  .footer-bnr article .ft-bnr-bg .ft-bnr {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 640px) {
  .footer-bnr {
    padding: 10rem 0;
  }
  .footer-bnr article {
    flex-direction: column;
  }

  .footer-bnr article .ft-bnr-bg {
    max-width: 100%;
  }
  .footer-bnr article .ft-bnr-bg:not(:first-of-type),
  .footer-bnr article .ft-bnr-bg:nth-child(2) {
    margin-top: 3rem;
  }

  .footer-bnr article .ft-bnr-bg .ft-bnr {
    text-align: center;
    padding: 3rem 2rem;
  }
  .footer-bnr .innernew {
    width: 85%;
  }
  .footer-bnr .footer-order {
    margin-left: 0;
  }
  .footer-bnr .footer-diagnose {
    margin-right: 0;
  }
  .footer-bnr .kaisyu-bnr {
    margin-top: 3rem;
  }
  .footer-bnr article .ft-bnr-bg .ft-bnr p,
  .footer-bnr article .ft-bnr-bg .ft-bnr p span {
    font-size: min(5.5vw, 2.4rem);
  }
}
/* お問い合わせ */
.contact.common-contact {
  padding: 15rem 0;
}

.contact article {
  display: flex;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.contact .contact-box {
  width: calc(100% / 2);
  border: 1px solid;
  /* padding: 3.5rem; */
  padding: 2.5rem 2.9rem 2.9rem 2.9rem;
}
.contact .contact-box:nth-child(1) {
  margin-right: 15px;
  border-color: var(--gradationStart);
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}
.contact .contact-box:nth-child(2) {
  margin-left: 15px;
  border-color: var(--gradationEnd);
}
.contact .contact-box p {
  font-size: var(--font26pt);
  color: var(--gradationStart);
  text-align: center;
  text-decoration: none;
}
.contact .contact-box:nth-child(2) .contact-title {
  color: var(--gradationEnd);
}
.contact .contact-box .gra-btn-center {
  margin-top: 42px;
}
.contact .contact-box .border {
  border: 1px solid;
  width: 50px;
  margin: 17px auto 9px;
}
.contact .contact-box:nth-child(1) .border {
  border-color: var(--gradationStart);
}
.contact .contact-box:nth-child(2) .border {
  border-color: var(--gradationEnd);
}
.contact .contact-box .contact-title {
  font-weight: var(--fontWeightDefault);
}
.contact .contact-box .tel-num {
  font-size: min(3.6vw, 4.8rem);
  color: var(--fontColor);
  font-weight: 600;
}
.contact .contact-box .tell-des {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font16pt);
  font-weight: 400;
  color: var(--fontColor);
}
@media screen and (max-width: 768px) {
  .contact article {
    flex-direction: column;
  }
  .contact .contact-box {
    width: 100%;
  }
  .contact .contact-box:nth-child(1),
  .contact .contact-box:nth-child(2) {
    margin: 0;
  }
  .contact .contact-box:nth-child(2) {
    margin-top: 3rem;
  }
  .contact .contact-box p {
    font-size: min(5vw, 2.6rem);
  }
  .contact .contact-box .tel-num {
    font-size: min(8vw, 4rem);
  }
}
@media screen and (max-width: 640px) {
  .contact .contact-box {
    padding: 3rem;
  }
  .contact.common-contact {
    padding: 10rem 0;
  }
  .contact .contact-box p {
    font-size: min(7vw, 2.6rem);
  }
  .contact .contact-box .border {
    margin: 16px auto 9px;
  }
  .contact .contact-box .gra-btn-center {
    margin-top: 30px;
  }
  .contact-box .gra-btn {
    width: 100%;
  }
  .contact .contact-box .border {
    width: 12%;
  }
  .contact .contact-box .tel-num {
    font-size: min(9.5vw, 4rem);
  }
  .contact .contact-box .tell-des {
    font-size: min(3.2vw, 1.6rem);
  }
}
@media screen and (max-width: 620px) {
  .contact .contact-box p {
    font-size: min(5.5vw, 2.6rem);
  }
  .contact .contact-box .tel-num {
    font-size: min(8vw, 4rem);
  }
  .contact .contact-box .tel-num i img {
    width: 10%;
  }
}
.faq-box {
  margin-top: 6rem;
}
.faq-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid #333333;
  padding: 2.5rem 0;
}
.faq-area:nth-child(1) {
  border-top: 1px solid #333333;
}
.faq-area .faq-txt .faq-des {
  font-size: var(--font20pt);
}
.faq-txt a {
  text-decoration: none;
}
.faq-area .faq-btn {
  margin: 1.8rem;
  max-width: 12px;
}
.faq-txt-area {
  display: flex;
  align-items: center;
}
.faq-q,
.faq-a {
  display: flex;
  align-items: start;
  justify-content: center;
  min-width: 80px;
  box-sizing: border-box;
  margin-right: 2rem;
}

.faq-q span,
.faq-a span {
  background-color: #54b8e6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 50%;
  box-sizing: border-box;
  font-size: var(--font26pt);
  color: #fff;
}
.faq-a span {
  background-color: #fff;
  border: 1px solid #136eab;
  color: #136eab;
}
.faq .gra-btn-center {
  margin-top: 8rem;
}
@media screen and (max-width: 640px) {
  .faq-txt-area {
    align-items: start;
  }
  .faq-q,
  .faq-a {
    min-width: auto;
  }
  .faq-q span,
  .faq-a span {
    padding: 0;
    line-height: 1.5;
    flex: 1;
  }
  .faq-area .faq-btn {
    width: 50px;
  }
  .faq-area .faq-txt .faq-des {
    font-size: min(5vw, 2.2rem);
  }
}
/* #wrapAll,
#wrapAll_v2 {
  position: relative;
}

footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  margin-top: 250px;
} */
