﻿@charset "UTF-8";

/* Font 設定
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Serif+JP&display=swap');
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

._min {
  font-family: 'Bebas Neue', cursive;
  font-family: 'Noto Serif JP', serif;
}


/* 基本設定
---------------------------------------------------------- */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
  font-size: 10px;
}

body {
  width: 100%;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}


header, footer {
	width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

p {
  text-align: justify;
  color: #4E4E4E;
  font-size: 2.0rem;
  line-break: 1.7;
}
@media screen and (max-width: 769px){
  p {
    font-size: 3.733vw;
  }
}


/* 画像透過
---------------------------------------------------------- */
a img:hover {
  transition: 1.0s;
  opacity: 0.5;
}


/* レスポンシブ対応
---------------------------------------------------------- */
._sp {
  display: none;
}
@media screen and (max-width: 769px) {
  ._pc {
      display: none!important;
  }
  ._sp {
      display: block;
  }
}

/* telリンク（PC無効） */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  a[href^="tel:"] {
      pointer-events: auto;
  }
}

/* sp用改行 */
br._sp {
  display: none;
}
@media screen and (max-width: 769px){
  br._sp {
    display: block;
  }
}


/* 余白排除
---------------------------------------------------------- */
#wrap {
  width: 100%;
  overflow: hidden;
}


/* 共通レイアウト
---------------------------------------------------------- */
._flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 769px){
  ._flex {
    display: block;
  }
}

/* 順送り */
._row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

/*　中央寄せ */
._flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 左寄せ */
._flexRow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

/* 逆配置 */
._reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 769px){
  ._reverse {
    display: block;
  }
}


/* テキスト中央 */
._center {
  text-align: center!important;
}


/* テキスト中揃え解除 */
._justify {
  text-align: justify!important;
}


/* position指定 */
._relative {
  position: relative;
}


/* header
---------------------------------------------------------- */
.pcHead {
  max-width: 1200px;
  margin: auto;
  padding: 4.0rem 0 2.5rem 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcHead h1 {
  max-width: 32.0rem;
}

.btnBox {
  max-width: 488px;
}
.btnBox a {
  display: block;
  width: 48%;
}


/* PC Menu
---------------------------------------------------------- */
.pcMenu {
  background: #011355;
}
.pcMenu ul {
  max-width: 1196px;
  height: 7.7rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pcMenu ul li:nth-child(even) img {
  width: 0.1rem;
  margin: 0 3.0rem;
}


/* sp Menu
---------------------------------------------------------- */
.spMenuBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: #011355;
  z-index: 991;
}
.spMenuBox h1 {
  display: block;
  width: 53%;
  max-height: 27px;
  margin-left: 5%;
}

.spNav {
  display: none;
  position: absolute;
  left: 0px;
  top: 74px!important;
  width: 100vh;
  height: 110vh;
  margin: 0;
  padding: 5% 7%;
  background: #011355;
  z-index: 990;
}
.spNav li {
  padding: 3% 0 ;
  border-bottom: 1px solid #fff;
}
.spNav li a {
  display: block;
  width: 39%;
  margin: auto;
}
.spNav li.spBtn1, .spNav li.spBtn2 {
  border: 0;
}
.spNav li.spBtn1 a, .spNav li.spBtn2 a {
  display: block;
  width: 62%;
  margin: auto;
}
.spNav li.spBtn1 {
  padding-top: 10%;
}

/* ハンバーガーメニュー */
#drawrMenu {
  position: absolute;
  right: 2%;
  top: 20%;
  width: 50px;
  height: 50px;
  z-index: 999;
  background: #011355;
}
#drawrMenu span,
#drawrMenu span:before,
#drawrMenu span:after {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition-property: transform;
  transition-duration: 0.3s;
}
#drawrMenu span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate( -50%, -50% );
}
#drawrMenu span:before {
  content: "";
  position: absolute;
  transform: translateY( -8px ) rotate( 0deg );
}
#drawrMenu span:after {
  content: "";
  position: absolute;
  transform: translateY( 8px ) rotate( 0deg );
}

/* Close */
.spClose span {
  background: transparent!important;
}
.spClose span:before {
  transform: rotate( 45deg )!important;
}
.spClose span:after {
  transform: rotate( -45deg )!important;
}


/* メインビジュアル
---------------------------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1512 / 669;
}
@media screen and (max-width: 769px){
  .fv {
    padding-top: 75px;
  }
}

img.fvmTxt {
  position: absolute;
  top: 6%;
  left: 5%;
  width: 46%;
}
img.fvTxt {
  position: absolute;
  bottom: 6%;
  right: 0;
  width: 49%;
}
@media screen and (max-width: 769px){
  img.fvmTxt {
    top: 30%;
    width: 64%;
  }
  img.fvTxt {
    width: 73%;
  }
}


/* コンテンツ：共通
---------------------------------------------------------- */
.contentBox {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 769px){
  .contentBox {
    max-width: 82%;
  }
}

._blueBk {
  background: #EFF7FF;
}
._grayBk {
  background: #F5F5F5;
}
._yellowBk {
  background: #FFFBEF;
}

h2.ttl {
  max-width: 28.8rem;
  margin: auto;
}
h3.ttl {
  font-size: 2.4rem;
  color: #011355;
  width: 100%;
}
h3.ttl span {
  border-bottom: 3px solid #FFC01E;
}
h3.ttl b {
  color: #000;
  padding: 0 0 0 5%;
}
h3.ttl._inlineblock {
  display: inline-block;
}
@media screen and (max-width: 769px){
  h2.ttl {
    width: 45%;
  }
  h3.ttl {
    font-size: 4.267vw;
  }
  h3.ttl b {
    display: block;
    font-size: 4.267vw;
    padding: 5% 0;
  }
}

.mt5 {
  margin-top: 5%!important;
}


/* FV 下
---------------------------------------------------------- */
.box1 {
  padding: 5% 0;
}
.box1 h2 {
  font-size: 3.2rem;
  padding: 10% 0;
}
@media screen and (max-width: 769px){
  .box1 {
    padding: 3% 0 10% 0;
  }
  .box1 h2 {
    font-size: 4.0vw;
    text-align: center;
    letter-spacing: -0.1vh;
  }
}

.box1Pic {
  width: 43%;
}
@media screen and (max-width: 769px){
  .box1Pic {
    width: 100%;
  }
  .box1Pic img {
    width: 62%;
    margin: auto;
  }
}

.box1Txt {
  width: 57%;
  padding: 0 0 0 2%;
}
.box1Txt p {
  padding: 0 4% 0 5%;
}
@media screen and (max-width: 769px){
  .box1Txt {
    width: 100%;
  }
  .box1Txt p {
    padding: 5% 0 0 0;
  }
}


/* コンテンツ 1：私達の特徴
---------------------------------------------------------- */
.c1 {
  padding: 3% 0;
}
.c1 h3 {
  font-size: 2.4rem;
  text-align: center;
  padding: 5% 0 7% 0;
}
@media screen and (max-width: 769px){
  .c1 {
    padding: 10% 0 7% 0;
  }
  .c1 h3 {
    font-size: 4.267vw;
  }
}

.c1Unit {
  position: relative;
  width: 32.8%;
}
.c1Unit img.number {
  position: absolute;
  top: -8%;
  left: 5%;
  width: 18%;
}
@media screen and (max-width: 769px){
  .c1Unit {
    width: 100%;
    margin: 10% 0 0 0;
    padding: 0 0 5% 0;
  }
}

.c1Unit .c1InBoxTxt {
  aspect-ratio: 380 / 146;
  background: url(../images/waku.png) no-repeat 0 0;
  background-size: 100% 100%;
  padding: 5% 6% 5% 10%;
}
.c1InBoxTxt h4 {
  font-size: 2.4rem;
  color: #011355;
  text-align: center;
  padding: 0 0 1% 0;
}
.c1InBoxTxt p {
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
}
@media screen and (max-width: 769px){
  .c1Unit .c1InBoxTxt {
    aspect-ratio: 312 / 119;
    padding: 5% 5% 5% 10%;
  }
  .c1InBoxTxt h4 {
    font-size: 4.267vw;
  }
  .c1InBoxTxt p {
    font-size: 3.733vw;
    letter-spacing: -0.15vh;
  }
}

.c1InBox2 {
  margin: 5% 0
}
@media screen and (max-width: 769px){
  .c1InBox2 {
    margin: 10% 0
  }
}

.c1InBox2Txt {
  width: 59%;
  padding: 0 8% 0 0;
}
.c1InBox2._reverse .c1InBox2Txt {
  padding: 0 0 0 8%;
}
.c1InBox2Txt img {
  width: 42%;
}
.c1InBox2Txt h3 {
  font-size: 3.2rem;
  padding: 5% 0;
}
.c1InBox2Txt p {
  font-size: 1.6rem;
}
@media screen and (max-width: 769px){
  .c1InBox2._reverse .c1InBox2Txt {
    padding: 0;
  }
  .c1InBox2Txt {
    width: 100%;
    padding: 0;
  }
  .c1InBox2Txt img {
    width: 70%;
  }
  .c1InBox2Txt h3 {
    font-size: 5.333vw;
    text-align: center;
  }
  .c1InBox2Txt p {
    font-size: 3.733vw;
    padding: 0 0 3% 0;
  }
  img.spPic {
    width: 100%;
    margin: 0 0 5% 0;
  }
}

.c1InBox2Pic {
  width: 41%;
  padding: 2% 0 0 0;
}
@media screen and (max-width: 769px){
  .c1InBox2Pic {
    width: 100%;
  }
}


/* コンテンツ 2：コース・料金
---------------------------------------------------------- */
.c2 {
  padding: 3% 0;
}
@media screen and (max-width: 769px){
  .c2 {
    padding: 10% 0;
  }
}

.c2InBox {
  margin: 3% 0;
}
.c2InBox > div {
  width: 47%;
  padding: 3%;
  background: #fff;
  border-radius: 1.0rem;
}
.c2InBox > div h3 {
  font-size: 2.0rem;
  text-align: center;
  padding: 3% 0 5% 0;
}
.c2InBox > div p {
  width: 80%;
  margin: auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 769px){
  .c2InBox > div {
    width: 100%;
    margin: 5% 0 2% 0;
    padding: 4%;
  }
  .c2InBox > div h3 {
    font-size: 4.267vw;
   }
  .c2InBox > div p {
    width: 100%;
    font-size: 3.733vw;
  }
}

.c2InBox2 {
  border-radius: 1.0rem;
  overflow: hidden;
}
@media screen and (max-width: 769px){
  .c2InBox2 {
    margin: 10% 0;
  }
}

.c2Unit {
  width: 50%;
}
.c2Unit:first-child {
  border-right: 1px solid #A1A1A1;
}
.c2Unit h3 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  background: #446DFF;
  padding: 3% 0;
}
@media screen and (max-width: 769px){
  .c2Unit {
    width: 100%;
  }
  .c2Unit:first-child {
    border-right: 0;
  }
  .c2Unit h3 {
    font-size: 4.267vw;
    border-radius: 1.0rem 1.0rem 0 0;
  }
}

.c2UnitIn {
  background: #fff;
  padding: 3% 5% 5% 5%;
}
.c2UnitIn > div {
  width: calc((100% - 14%) / 2);
  width: -webkit-calc((100% - 14%) / 2);
}
.c2UnitIn > div h4 {
  font-size: 2.4rem;
  color: #011355;
  text-align: center;
  padding: 0 0 4% 0;
}
.c2UnitIn > div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
}
.c2UnitIn > div p b {
  display: block;
  width: 60%;
  font-size: 1.6rem;
}
.c2UnitIn > div p b.s14 {
  font-size: 1.4rem;
  padding-top: 2%;
}
.c2UnitIn > div span {
  display: block;
  width: 40%;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: right;
  padding: 0 3% 0 0;
}
.c2UnitIn > div p:last-child span {
  color: #011355;
  border-bottom: 3px solid #FFC01E;
}
.c2UnitIn > div.arr {
  width: 14%;
  padding: 19% 3.5% 0 3.5%;
}
.c2UnitIn > div.arr img {
  max-width: unset;
  width: 100%;
}
.c2UnitIn > div hr.hr {
  border-top: 1px solid #A1A1A1;
  margin-bottom: 2%;
}
.c2UnitIn > div img {
  max-width: 2.5rem;
  margin: 3% auto;
}
@media screen and (max-width: 769px){
  .c2UnitIn {
    border-radius: 0 0 1.0rem 1.0rem;
    margin: 0 0 5% 0;
    overflow: hidden;
  }
  .c2UnitIn > div {
    width: 100%;
  }
  .c2UnitIn > div h4, .c2UnitIn > div p,
  .c2UnitIn > div p b, .c2UnitIn > div span {
    font-size: 4.267vw;
  }
  .c2UnitIn > div p:last-child span {
    font-size: 5.333vw;
  }
  .c2UnitIn > div.arr {
    width: 9.6%;
    margin: 5% auto;
    padding: 0;
  }
  .c2UnitIn > div img {
    width: 100%;
  }
}


/* コールBOX
---------------------------------------------------------- */
.callBox {
  padding: 5% 0 3% 0;
}
.callInBox {
  position: relative;
  width: 43%;
  aspect-ratio: 662 / 171;
  margin: auto;
  padding: 3% 5% 1% 5%;
  background: #fff;
  border-radius: 2.0rem;
  box-shadow: 4px 4px 4px 2px rgba(91, 90, 90, .2);
  text-align: center;
}
.callInBox img.call {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 53%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}
.callInBox p {
  text-align: center;
}
.callInBox p b {
  font-size: 1.4rem;
}
.callInBox p span {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
}
.callInBox a {
  font-size: 4.8rem;
  font-weight: bold;
  color: #011355;
}
.callInBox a:before {
  content: '';
  display: inline-block;
  background: url(../images/bTel.png) no-repeat 0 0;
  background-size: 100%;
  vertical-align: middle;
  width: 3.8rem;
  height: 3.8rem;
  margin: -2% 3% 0 0;
}
@media screen and (max-width: 769px){
  .callBox {
    padding: 10% 0 7% 0;
  }
  .callInBox {
    width: 80%;
    padding: 10% 4% 5% 4%;
    text-align: center;
  }
  .callInBox p b {
    font-size: 3.200vw;
  }
  .callInBox p span {
    font-size: 3.200vw;
    text-align: center;
  }
  .callInBox a {
    font-size: 7vw;
    margin: 0;
  }
  .callInBox a:before {
    display: none;
  }
  .callInBox img.call {
    width: 70%;
  }
}


/* コンテンツ 3：講師スタッフ紹介
---------------------------------------------------------- */
.c3 {
  padding: 2% 0;
}
@media screen and (max-width: 769px){
  .c3 {
    padding: 10% 0;
  }
}

.c3Pic {
  width: 31%;
}
.c3Pic img {
  margin: 10% 0 0 0;
}
@media screen and (max-width: 769px){
  .c3Pic {
    width: 100%;
  }
  .c3Pic img {
    width: 62%;
    margin: 10% auto 5% auto;
  }
}

.c3Txt {
  width: 69%;
  padding: 0 0 0 10%;
}
.c3Txt h4 {
  font-size: 2.4rem;
  padding: 0 0 2% 0;
}
.c3Txt h4 span {
  font-size: 2.0rem;
  padding: 0 5% 0 0;
}
.c3Txt p {
  font-size: 1.6rem;
  padding: 0 0 1% 0;
}
@media screen and (max-width: 769px){
  .c3Txt {
    width: 100%;
    padding: 0;
  }
  .c3Txt h4, .c3Txt h4 span {
    font-size: 4.267vw;
  }
  .c3Txt p {
    font-size: 3.733vw;
    padding: 0;
  }
}


/* コンテンツ 4：みんなの声
---------------------------------------------------------- */
.c4 {
  padding: 3% 0;
}
@media screen and (max-width: 769px){
  .c4 {
    padding: 10% 0;
  }
}

.c4Box {
  margin: 7% 0 0 0;
}

.c4Unit {
  position: relative;
  width: 46%;
  aspect-ratio: 553 / 312;
  border-radius: 1.0rem;
  background: #fff;
}
.c4Unit h3 {
  font-size: 2.0rem;
  line-height: 1.3;
  text-align: center;
  position: absolute;
  top: -4%;
  left: -2%;
  display: block;
  width: 15.1rem;
  height: 14.5rem;
  padding: 5% 0 0 0;
  background: url(../images/sakura.png) no-repeat 0 0;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c4Unit h4 {
  font-size: 2.4rem;
  padding: 5.0rem 0 6.0rem 15.9rem;
}
.c4Unit p {
  font-size: 1.6rem;
  padding: 0 40% 0 5%;
}
.c4Unit p span {
  display: block;
  text-align: right;
}
.c4Unit img.illust {
  position: absolute;
  bottom: 0;
  right: 2%;
  width: 34%;
}
@media screen and (max-width: 769px){
  .c4Unit {
    width: 100%;
    aspect-ratio: 312 / 216;
    margin: 15% 0 0 0;
  }
  .c4Unit h3 {
    top: -15%;
    width: 32%;
    height: auto;
    aspect-ratio: 151 / 145;
    font-size: 3.200vw;
  }
  .c4Unit h4 {
    font-size: 4.267vw;
    padding: 5% 0 10% 32%;
  }
  .c4Unit p {
    font-size: 3.200vw;
  }
}


/* コンテンツ 5：入塾までの流れ
---------------------------------------------------------- */
.c5 {
  padding: 3% 0;
}
@media screen and (max-width: 769px){
  .c5 {
    padding: 10% 0;
  }
}

.c5Box {
  position: relative;
  margin: 0;
  padding: 0 0 5% 0;
  border-left: 4px solid #011355;
}
.c5Box:last-child {
  border: 0;
}
.c5Box img.number {
  position: absolute;
  top: 0;
  left: -3.2rem;
  width: 6.0rem;
}
@media screen and (max-width: 769px){
  .c5Box img.number {
    width: 13%;
    left: -7%;
  }
}

.c5InBox {
  width: 91%;
  margin: 0 0 0 auto;
  padding: 3%;
  background: #EFF7FF;
  border-radius: 1.0rem;
}
@media screen and (max-width: 769px){
  .c5InBox {
    padding: 5%;
  }
}

.c5InTxt {
  width: calc(100% - 32.1rem);
  width: -webkit-calc(100% - 32.1rem);
  padding: 0 10% 0 0;
}
.c5InTxt p {
  font-size: 2.0rem;
  padding: 5% 0;
}
.c5InTxt a {
  display: block;
  width: 44.4rem;
}
@media screen and (max-width: 769px){
  .c5InTxt {
    width: 100%;
    padding: 0;
  }
  .c5InTxt p {
    font-size: 3.200vw;
  }
  .c5InTxt a {
    width: 100%;
    margin: 0 0 5% 0;
  }
}

.c5InPic {
  width: 32.1rem;
}
@media screen and (max-width: 769px){
  .c5InPic {
    width: 100%;
  }
}


/* コンテンツ 6：校舎案内
---------------------------------------------------------- */
.c6 {
  padding: 3% 0;
}
@media screen and (max-width: 769px){
  .c6 {
    padding: 10% 0;
  }
}

.c6Txt {
  width: 40%;
}
.c6Txt p {
  font-size: 2.0rem;
  padding: 2% 0;
}
.c6Txt p a {
  color: #4E4E4E;
}
.c6Txt p span {
  font-size: 1.6rem;
  color: #838383;
}
@media screen and (max-width: 769px){
  .c6Txt {
    width: 100%;
  }
  .c6Txt p, .c6Txt p span {
    font-size: 3.7vw;
  }
  .c6Txt p.spacing {
    letter-spacing: -0.15vh;
  }
}

.map {
  position: relative;
  width: 40%;
  aspect-ratio: 481 / 303;
  margin: 0;
  overflow: hidden;
}
.map iframe,
.map object,
.map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 769px){
  .map {
    width: 100%;
    aspect-ratio: 313 / 246;
    margin: 5% 0 0 0;
  }
}


/* お問い合わせフォーム
---------------------------------------------------------- */
.contactBox {
  padding: 5% 0 3% 0;
}
@media screen and (max-width: 769px){
  .contactBox {
    padding: 13% 0 7% 0;
  }
}

.contactInBox {
  position: relative;
  padding: 3% 10%;
  background: #fff;
  border-radius: 1.0rem;
  box-shadow: 4px 4px 4px 2px rgba(91, 90, 90, .2);
}
.contactInBox img {
  position: absolute;
  top: -3.5%;
  left: 50%;
  width: 29%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}
@media screen and (max-width: 769px){
  .contactInBox {
    padding: 7% 10%;
  }
  .contactInBox img {
    width: 69%;
  }
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3% 0 2% 0;
  font-size: 1.6rem;
}
label span {
  display: block;
  max-height: 2.0rem;
  font-size: 1.2rem;
  color: #fff;
  line-height: 2.0rem;
  background: #FFC01E;
  border-radius: 0.5rem;
  margin: 0 0 0 2%;
  padding: 0 1%;
}
input, textarea {
  width: 100%;
  padding: 1.5% 2%;
  font-size: 1.6rem;
  border: 1px solid #4E4E4E;
}
@media screen and (max-width: 769px){
  label {
    font-size: 3.733vw;
    margin: 7% 0 2% 0;
  }
  label span {
    font-size: 2.667vw;
  }
}

.submit {
  width: 12.4rem;
  margin: 3% auto 0 auto;
  background: #FFC01E;
  border-radius: 30.0rem;
  text-align: center;
  cursor: pointer;
}
button {
  font-size: 2.0rem;
  color: #fff;
  line-height: 4.0rem;
  border: 0;
  background: unset;
  cursor: pointer;
}
@media screen and (max-width: 769px){
  .submit {
    margin: 7% auto 0 auto;
  }
  button {
    font-size: 3.733vw;
  }
}

.contactInBox form p > div {
  font-size: 1.6rem;
  color: red;
}
@media screen and (max-width: 769px){
  .contactInBox form p > div {
    font-size: 3.733vw;
  }
}


/* footer
---------------------------------------------------------- */
footer {
  padding: 3% 0;
}

.footerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footerBox h1 {
  display: block;
  width: 32.0rem;
}
@media screen and (max-width: 769px){
  footer {
    padding: 10% 0 105px 0;
  }
  .footerBox {
    display: block;
  }
  .footerBox h1 {
    width: 53%;
    margin: 0 auto 7% auto;
  }
}

.footerTel {
  width: 20.0rem;
  margin: 0 0 0 5%;
}
.footerTel p {
  font-size: 1.4rem;
  color: #011355;
  text-align: center;
}
@media screen and (max-width: 769px){
  .footerTel {
    width: 53%;
    margin: auto;
  }
  .footerTel p {
    font-size: 3.733vw;
  }
}

.footerMenu ul {
  max-width: 78.4rem;
  margin: 5% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footerMenu ul li:nth-child(even) img {
  width: 0.1rem;
  margin: 0 3.0rem;
}
@media screen and (max-width: 769px){
  .footerMenu ul {
    display: block;
    width: 58%;
    margin: 0 auto;
    padding: 5% 0;
  }
  .footerMenu ul li:nth-child(even) {
    display: none;
  }
  .footerMenu ul li {
    padding: 5% 0;
  }
  .footerMenu ul li img {
    width: 73%;
  }
} 

p.copy {
  font-size: 2.0rem;
  color: #011355;
  text-align: center;
}
@media screen and (max-width: 769px){
  p.copy {
    font-size: 3.200vw;
  }
}


/* footer
---------------------------------------------------------- */
@media screen and (max-width: 769px){
  .spBnner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 105px;
    padding: 3% 0 0 0;
    background: rgba(1, 19, 85, .7);
  }
  .spBnner img {
    max-width: 312px;
    margin: auto;
  }
}


