@charset "utf-8";

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

/* 基本設定
****************************************/
html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  line-height: 2;
  color: #222;
  font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  padding-top: 100px;
  letter-spacing: 0.1em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #222;
  transition: .3s;
}

a:hover {
  opacity: 0.8;
}


/*共通---------------------------------*/
.flex {
  display: flex;
}
.fl_pcsp {
  display: flex;
}

.fl_between {
  justify-content: space-between;
}
.fl_wrap {
  flex-wrap: wrap;
}
.jc_center {
  justify-content: center;
}
.al_center {
  align-items: center;
}

.inner {
  width: 92%;
  max-width: 1204px;
  margin: 0 auto;
}
.inner_min {
  width: 84%;
  max-width: 1008px;
  margin: 0 auto;
}
.inner_min960 {
  width: 74%;
  max-width: 740px;
  margin: 0 auto;
}

.mauto {
  margin: 0 auto;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width:768px) {
  .fl_pcsp {
  display: block;
}
.inner {
  width: calc(100% - 40px);
}
.pc {
  display: none;
}
.sp {
  display: block;
}
.inner_min {
  width: 94%;
}
}


/* フォント */
.fz10 {
  font-size: 10px;
}
.fz12 {
  font-size: 12px;
}
.fz16 {
  font-size: 16px;
}
.fz18 {
  font-size: 18px;
}
.fz20 {
  font-size: 20px;
}
.fz24 {
  font-size: 24px;
}
.fz28 {
  font-size: 28px;
}
.fz32 {
  font-size: 32px;
}
.fz34 {
  font-size: 34px;
}
.fz36 {
  font-size: 36px;
}

.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}
/* PC時は中央揃え、SP時は左揃え */
.tac_pcsp {
  text-align: center;
}
.tar {
  text-align: right;
}
.lh1 {
  line-height: 1.1;
}
.lh14 {
  line-height: 1.4;
}
.lh16 {
  line-height: 1.6;
}
.lh2 {
  line-height: 2;
}
.lh3 {
  line-height: 3;
}

.letter_s_2 {
  letter-spacing: 0.02em;
}
.letter_s_5 {
  letter-spacing: 0.05em;
}

.subttl {
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
.fz16 {
  font-size: 14px;
}
.fz18 {
  font-size: 16px;
}
.fz20 {
  font-size: 18px;
}
.fz24 {
  font-size: 18px;
}
.fz28 {
  font-size: 20px;
}
.fz32 {
  font-size: 22px;
}
.fz34 {
  font-size: 22px;
}
.fz36 {
  font-size: 28px;
}
.tac_pcsp {
  text-align: left;
}
.subttl {
  font-size: 12px;
}
}

/* 色 */
.bg-main {
background: linear-gradient(#001F56, #004B7F);
}
.bg-pink {
  background: #D50578;
}
.bg-white {
background: #FFF;
}
.bg-gray {
  background: #F3F3F3;
}
.color-main {
  color: #EF8200;
}
.color-white {
  color: #fff;
}
.color-gray {
  color: #EAECED;
}
.color-gray01 {
  color: #D9D9D9;
}
.color-bluegray {
  color: #849CB7;
}
.border_gray {
  border-bottom: 1px solid #E2E2E2;
}


.radius12 {
  border-radius: 12px;
  overflow: hidden;
}
.radius24 {
  border-radius: 24px;
  overflow: hidden;
}

.col45 {
  width: 45%;
}
.col55 {
  width: 55%;
}
.col50 {
  width: 50%;
}
@media screen and (max-width:768px) {
.col45,
.col55,
.col50 {
  width: 100%;
}
}


.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb80 {
  margin-bottom: 80px;
}

.pt80 {
  padding-top: 80px;
}
.ptb40 {
  padding: 40px 0;
}
.ptb60 {
  padding: 60px 0;
}
.ptb80 {
  padding: 80px 0;
}
.ptb80100 {
  padding: 80px 0 100px;
}
.ptb100 {
  padding: 100px 0;
}
.ptb120 {
  padding: 120px 0;
}

@media screen and (max-width:768px) {
.mb10 {
  margin-bottom: 6px;
}
.mb20 {
  margin-bottom: 10px;
}
.mb30 {
  margin-bottom: 15px;
}
.mb40 {
  margin-bottom: 20px;
}
.mb60 {
  margin-bottom: 30px;
}
.mb80 {
  margin-bottom: 40px;
}
.pt80 {
  padding-top: 40px;
}
.ptb40 {
  padding: 24px 0;
}
.ptb60 {
  padding: 30px 0;
}
.ptb80 {
  padding: 40px 0;
}
.ptb100 {
  padding: 60px 0;
}
.ptb120 {
  padding: 80px 0;
}
.ptb80100 {
  padding: 40px 0 50px;
}
}



/*フォント---------------------------------*/
.Judson {
  font-family: 'Judson', serif;
}
.Overpass {
  font-family: 'Overpass', sans-serif;
}

/*ボタン----------------------------------*/
.button {
  display: block;
  padding: 18px;
  text-align: center;
  width: 90%;
  max-width: 240px;
  background: #D50578;
  color:#fff;
  border: 1px solid #D50578;
  border-radius: 30px;
  line-height: 1;
  transition: .3s;
}
.button:hover {
background: #fff;
  color:#D50578;
}
.button02 {
  display: block;
  padding: 18px;
  text-align: center;
  width: 90%;
  max-width: 240px;
  background: #fff;
  color:#D50578;
  border: 1px solid #D50578;
  border-radius: 30px;
  line-height: 1;
  transition: .3s;
}
.button02:hover {
background: #D50578;
  color:#fff;
}


/*ヘッダー--------------------------------*/
.header {
position: fixed;
top: 0;
  z-index: 100000;
  width: 100%;
  border-top: 10px #003067 solid;
  padding: 12px 0 14px;
}
.gnav {
  background: #fff;
  opacity: 1;
}
.gnavLogo p {
  color: #00009A;
}
.gnavLogo_txt {
  font-size: 40px;
  line-height: 1;
}
/* .gnavLogo img {
  width: 260px;
  z-index: 1000;
} */
.gnavList {
  align-items: center;
}

.gnavList_list {
  display: inline-block;
  padding: 17px;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.gnavContact a {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding: 15px 30px;
  line-height: 1;
  /* border: 1px solid #D50578; */
  border-radius: 40px;
  margin-left: 17px;
  transition: .3s;
}
.gnavContact a:hover {
background: #001F56;
}

/* .gnavTel {
  padding: 21px 30px;
  border-left: 1px solid #eee;
}
.gnavTel > div {
  align-items: center;
}
.gnavTel > div > p {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0;
  margin-left: 5px;
}
.gnavTel_ico img {
  width: 15px;
}
.gnavTel .gnavTel_time {
  font-size: 14px;
  color: #838383;
  padding: 0;
}
.gnavTel_time span {
  font-size: 12px;
  border: 1px solid #838383;
  line-height: 1;
  padding: 0px 6px;
  margin-right: 5px;
} */

/* .gnavList > .gnavContact > a {
  background: #F56D22;
  padding: 18px 23px;
}
.gnavContact img {
  width: 24px;
  margin-bottom: 3px;
}
.gnavContact > a > p {
  color: #fff;
  font-size: 12px;
  padding: 0;
} */
  .spNav {
    display: none;
  }


@media screen and (max-width:800px) {
  body {
    padding-top: 59px;
  }
  .spNav {
    display: block;
  }
  .header {
  border-top: 5px #003067 solid;
  padding: 5px 0;
}
  .gnavList {
    display: none;
  }
  .gnavLogo_txt {
  font-size: 24px;
  }
.gnavList_list {
  padding: 10px;
}
.gnavLogo .fz12 {
  font-size: 10px;
}


  /*スマホナビ----------------*/
  /* .gnav {
    height: 50px;
  } */
  /* .gnavLogo img {
  width: 150px;
} */

  #nav-toggle {
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
  }

  #nav-toggle img {
    position: fixed;
    top: 10px;
    left: 5%;
  }

  #nav-toggle > div {
    position: relative;
    width: 60px;
    height: 59px;
    /* background: #F56D22; */
  }

  #nav-toggle span {
    width: 18px;
    height: 1px;
    left: 22px;
    display: block;
    background: #003067;
    position: absolute;
    transition: .2s;
  }

  #nav-toggle span:nth-child(1) {
    top: 23px;
  }

  #nav-toggle span:nth-child(2) {
    top: 29px;
  }

  #nav-toggle span:nth-child(3) {
    top: 34px;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 29px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
        background: #fff;
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
        background: #fff;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 29px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
        background: #fff;
  }

  #nav-toggle {
    z-index: 100000;
  }

  #gloval-nav {
    /* background: rgba(255, 255, 255, 0.99); */
    width: 100%;
    height: 100%;
    padding: 50px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    overflow: scroll;
  }

  #gloval-nav ul li a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 15px 0;
    width: 100%;
  }
  #gloval-nav ul li a:hover {
    opacity: 0.8;
  }

  .open #gloval-nav {
    visibility: visible;
    display: block;
    z-index: 990;
  }

  .spNavTxt img {
    width: 150px;
    display: block;
    margin: 30px auto 10px;
  }
  .spNavTxt p {
    text-align: center;
  }
}

/*下層ページ共通--------------------------------*/
.underMv {
  background: url(../img/undermv.png) bottom / cover no-repeat;
}
.underMv_kinari {
  background: url(../img/undermv_kinari.png) bottom / cover no-repeat;
}
.underMv_white {
  background: url(../img/undermv_white.png) bottom / cover no-repeat;
}
.underMvTtl {
  line-height: 1;
  padding: 100px 0;
}
.bread {
  padding: 12px 0 27px;
}
.bread,.bread a {
  color: #C8C8C8;
}


/*1000px以下のとき*************************/
@media screen and (max-width:768px) {
.underMvTtl {
  line-height: 1;
  padding: 50px 0;
}
.underMvTtl h2 {
  font-size: 16px;
  padding-top: 100px;
}
.underMvTtl h3 {
  font-size: 40px;
}
.underMvBc {
  padding-top: 85px;
}
.underMvBcWrap {
  width: 70%;
}
}

/*メインビジュアル=======================================*/
.mv_left {
width: 42%;
padding-left: 4%;
padding-right: 4%;
}
.mv_right {
  width: 58%;
}
.mv_txt01 {
  font-size: 4.2vw;
}

.concept {
  padding: 226px 0 200px;
  margin-top: -116px;
}
.concept_l {
width: 83%;
}
.mv_right_pc {
  display: block;
}
.mv_right_sp {
  display: none;
}

@media screen and (max-width:960px) {
  .concept {
  padding: 180px 0 200px;
  margin-top: -60px;
}
.mv_left {
width: 45%;
padding-left: 4%;
padding-right: 4%;
}
.mv_right {
  width: 55%;
}
}
@media screen and (min-width:769px) {
  .mv {
    align-items: center;
  }
}
@media screen and (max-width:768px) {
.mv {
  flex-direction: column-reverse;
}
.mv_right_pc {
  display: none;
}
.mv_right_sp {
  display: block;
}
.mv_left {
width: 100%;
padding-left: 4%;
margin-bottom: 60px;
}
.mv_right {
  width: 100%;
  margin: 20px 0
}
.mv_txt01 {
  font-size: 11vw;
}
.mv_txt03 {
  font-size: 12px;
}
  .concept {
  padding: 60px 0 100px;
  margin-top: 0px;
}
.concept_l {
width: 65%;
margin-left: 35%;
}
.concept_r {
  margin-top: 30px;
}
}


.sec-round {
  border-radius: 40px 40px 0px 0;
  margin-top: -100px;
}
.sec-inner {
  width: 91%;
  margin: 0 auto;
}
.sec-round-wrap {
  height: 200px;
}
.feature_list li {
width: 24%;
margin-bottom: 15px;
}
@media screen and (max-width:768px) {
.sec-round {
  border-radius: 25px 25px 0px 0;
  margin-top: -60px;
}
.sec-round-wrap {
  height: 120px;
}
.feature_list li {
width: 48%;
margin-bottom: 15px;
}
}



.round-btn {
  color: #D50578;
  border: 1px solid #D50578;
  border-radius: 30px;
  padding: 7px 20px;
  margin: 0 9px;
}
.course {
  max-width: 640px;
  margin: 0 auto;
}
.contact_area {
  border-radius: 40px 40px 0 0;
  padding: 60px 0 100px;
}
.contact_item01,
.contact_item02 {
display: flex;
width: 49.2%;
height: 200px;
}
.contact_item01 {
  background: url(../img/contact01.jpg) center / cover no-repeat;
}
.contact_item02 {
  background: url(../img/contact02.jpg) center / cover no-repeat;
}
.footer {
  padding: 60px 0 20px;
}
.footer_logo {
  font-size: 40px;
}
@media screen and (max-width:768px) {
.round-btn {
  max-width: 240px;
  margin: 0 auto 10px;
  text-align: center;
}
.contact_area {
  border-radius: 25px 25px 0 0;
  padding: 50px 0 50px;
}
.contact_item01,
.contact_item02 {
width: 100%;
margin-bottom: 10px;
height: 160px;
}
.footer_logo {
  font-size: 30px;
}
}
