@charset "utf-8";

/*--------------------------------
共通
--------------------------------*/

html {
  font-size: 62.5%;
}

body {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  color: #3B4043;
  letter-spacing: .1em;
  line-height: 1.4;
  overflow-x: hidden;
}

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

.sp-br {
  display: none;
}

.mv-sp {
  display: none;
}

.mv-pc {
  display: block;
}

.text_link {
  color: #284A71;
}

.text_link:hover {
  text-decoration: none;
}


/*--------------------------------
header
--------------------------------*/

.header {
  position: fixed;
  z-index: 999;
  background-color: #FFF;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10.9rem;
  padding: 0 5rem;
}

.header__list {
  display: flex;
  align-items: center;
}

.header__left {
  display: flex;
  flex-direction: column;
}

.header__left_top,
.header__left_bottom {
  display: flex;
  justify-content: flex-end;
}

.header__left_bottom {
  margin-top: 15px;
}

.header__item {
  font-size: 1.4rem;
  margin-right: 2.4rem;
  font-weight: bold;
}

.header__item a {
  position: relative;
}

.header__item a:hover {
  color: #284A71;
}

.header__item a::after {
  content: '';
  position: absolute;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #284A71;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top;
  bottom: -0.5rem;
}

.header__item a:hover::after {
  transform: scale(1, 1);
}

.tel {
  color: #284A71;
  margin-top: 1.5rem;
  margin-right: 1.6rem;
}

.tel__txt {
  font-size: 1.2rem;
  font-weight: bold;
}

.tel__num {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  font-size: 2rem;
  margin-left: .5rem;
}

.header__link {
  color: #FFF;
  background-color: #284A71;
  font-size: 1.6rem;
  line-height: 60px;
  font-weight: bold;
  border-radius: 999px;
  width: 240px;
  text-align: center;
  height: 60px;
}

.header__link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  transition: ease .2s;
}

.header__link span {
  position: relative;
  z-index: 3;
}

.tel__link-t {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #3B4043;
  font-size: 1.2rem;
}


/*== 背景が流れる（#019FD8） */


/*hoverした際の形状*/

.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}


/*== 背景が流れる（#019FD8） */

.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}


/*hoverした際の形状*/

.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.bgleft2_wrap, .bgleft1_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -0.4rem;
}

.bgleft2__img, .bgleft1__img, .bgleft4__img {
  z-index: 3;
  width: 20px;
  height: 18px;
  margin-top: 3px;
}

.bgleft:before {
  background-color: #284A71;
}

.bgleft1:before, .bgleft2:before, .bgleft4:before, .bgleft5:before {
  background-color: #284A71;
}

.bgleft2:hover, .bgleft1:hover, .bgleft3:hover, .bgleft4:hover, .bgleft5:hover {
  color: #FFF;
}


/*--------------------------------
ハンバーガーメニュー
--------------------------------*/

.hamburger {
  display: none;
}

.hamburgerBtn {
  display: none;
}


/*--------------------------------
mv
--------------------------------*/

.mv {
  position: relative;
  background: url("../img/mv-bg.jpg") center right/cover no-repeat;
  background-size: cover;
  padding: 0 4vw;
}

.sp__img {
  display: none;
}

.mv__inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 19rem 0 9rem;
}

.mv__img-sp {
  display: none;
}

.mv__lead {
  font-size: 1.6rem;
  color: #284A71;
  border: 2px solid #284A71;
  background-color: #FFF;
  font-weight: bold;
  padding: 1rem 0;
  text-align: center;
  border-radius: 999px;
}

.mv__ttl {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 1.4rem auto 0;
  white-space: nowrap;
}

.mv__list {
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
}

.mv__item:not(:last-child) {
  margin-right: 1.6rem;
}

.mv__item img {
  width: 160px;
}

.mv__img {
  max-width: 616px;
  margin-left: 2rem;
}

.btn {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 2.4rem;
}

.btn__link, .tel__link {
  font-size: 2rem;
  width: 380px;
  text-align: center;
  font-weight: bold;
}

.bgleft1 {
  width: 240px;
  padding: 1rem 0 .7rem;
}

.btn__link, .tel__link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  height: 100%;
  border: 2px solid #284A71;
  border-radius: 999px;
  height: 60px;
}

.btn__link {
  color: #FFF;
  background-color: #284A71;
  font-size: 1.6rem;
  border: 3px solid #FFF;
  border-radius: 999px;
  text-align: center;
  height: 74px;
  line-height: 74px;
  margin-top: 2.4rem;
}

.btn__link span {
  position: relative;
  z-index: 3;
}

.tel__link p {
  position: relative;
  z-index: 3;
}

.btn__link span {
  position: relative;
  z-index: 3;
}


/*--------------------------------
lead
--------------------------------*/

.lead {
  background-color: #F1EEE7;
}

.lead__wrap {
  position: relative;
  padding: 0 4vw;
}

.lead__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 4rem 2vw 0;
  max-width: 900px;
  margin: auto;
}

.lead__content:after {
  content: "";
  position: absolute;
  top: 100%;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 100px solid #F1EEE7;
  left: 0;
}

.section__ttl {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
}

.section__ttl span {
  font-size: 2rem;
  color: #284A71;
  padding: 8rem 0 2.2rem;
  display: block;
}

.section__ttl::after {
  content: "";
  margin: 2.4rem auto 0;
  display: block;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background-color: #284A71;
}

.lead__ttl {
  padding-top: 6rem;
  background-color: #F1EEE7;
}

.recommend__ttl {
  font-size: 3.6rem;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  margin-top: 5.5rem;
}

.recommend {
  background: linear-gradient(to right, #284A71, #4b719c);
  padding: 12rem 4vw 8rem;
}

.recommend__content {
  max-width: 800px;
  margin: auto;
  background-color: #FFF;
  border-radius: 30px;
  margin-top: 6rem;
  padding: 4rem 5rem;
}

.recommend__sub {
  font-weight: bold;
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.recommend__sub span {
  font-weight: bold;
  display: block;
  font-size: 2rem;
  color: #284A71;
  margin-bottom: 2rem;
}

.recommend__sub::after {
  content: "";
  margin: 2.4rem auto 0;
  display: block;
  width: 48px;
  height: 2px;
  background-color: #284A71;
}

.recommend__txt {
  font-size: 2.4rem;
  position: relative;
  font-weight: bold;
  margin-left: 2rem;
  margin-right: auto;
}

.recommend__wrap:not(:first-child) {
  margin-top: 2.3rem;
}

.recommend__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recommend__img {
  width: 30px;
  height: 30px;
}


/*--------------------------------
service
--------------------------------*/

.service {
  padding: 0 4vw;
  background-color: #F1EEE7;
  padding-bottom: 11rem;
}

.service__list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.service__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service__item:nth-child(2n) {
  flex-direction: row-reverse;
}

.service__lead {
  font-size: 2.4rem;
  font-weight: bold;
}

.service__lead span {
  color: #284A71;
  display: block;
}

.service__lead2 span {
  color: #284A71;
}

.service__lead3 span {
  color: #284A71;
}

.service__lead span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #284A71;
  content: "";
  margin: .5rem 0 1.6rem;
}

.service__lead2 span::after {
  background-color: #284A71;
}

.service__lead3 span::after {
  background-color: #284A71;
}

.service__txt {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}

.service__body {
  width: 55%;
}

.service__img {
  width: 40%;
}


/*--------------------------------
reasons
--------------------------------*/

.reason {
  background-color: #FBFAF8;
  padding: 0 4vw 0;
}

.reasonCard__ttl {
  font-size: 1.6rem;
  color: #284A71;
  font-weight: bold;
  position: absolute;
  top: -47px;
  left: 25px;
}

.reasonCard__ttl span {
  font-size: 6.4rem;
}

.reasonCard {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 8rem auto 0;
}

.reasonCard__item {
  width: 48%;
  position: relative;
  padding: 5rem 3vw;
  background-color: #FFF;
  border-radius: 30px;
  margin-bottom: 8rem;
}

.reasonCard__lead {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 1.6rem;
  text-align: center;
  white-space: nowrap;
}

.reasonCard__txt {
  font-size: 1.6rem;
  padding-top: 1.6rem;
}


/*--------------------------------
contact
--------------------------------*/

.contact {
  background: linear-gradient(to right, #284A71, #4b719c);
  padding: 8rem 4vw;
}

.contact__inner {
  background-color: #FFF;
  border-radius: 20px;
  max-width: 1000px;
  margin: auto;
}

.contact__ttl span {
  color: #284A71;
  padding-top: 4rem;
}

.contact__ttl::after {
  background-color: #284A71;
}

.contact__txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2.4rem;
}

.contact__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
  padding-bottom: 4rem;
}

.contact__link {
  width: 280px;
  padding: 1rem;
}

.contact__link2 {
  color: #FFF;
  background-color: #284A71;
  font-size: 1.6rem;
  line-height: 60px;
  font-weight: bold;
  border-radius: 999px;
  width: 280px;
  text-align: center;
  height: 60px;
}

.contact__link2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  transition: ease .2s;
}

.contact__link2 span {
  position: relative;
  z-index: 3;
}

.contact-t {
  display: none;
}


/*--------------------------------
function
--------------------------------*/

.function {
  background-color: #F1EEE7;
  padding: 0 4vw 8rem;
}

.functionCard {
  display: flex;
  max-width: 1100px;
  margin: auto;
  justify-content: space-between;
  margin-top: 8rem;
}

.functionCard__item {
  width: 31%;
  background-color: #FFF;
  padding: 3vw;
  border-radius: 20px;
  position: relative;
}

.functionCard__num {
  position: absolute;
  font-size: 6.4rem;
  color: #284A71;
  font-weight: bold;
  top: -44px;
  left: 10px;
}

.functionCard__num2 {
  color: #284A71;
}

.functionCard__num3 {
  color: #284A71;
}

.functionCard__img {
  width: 180px;
  margin: auto;
}

.functionCard__lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 2.6rem;
}

.functionCard__txt {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}


/*--------------------------------
card
--------------------------------*/

.card {
  background-color: #FBFAF8;
}

.card__inner {
  padding: 0 4vw 8rem;
}

.card__wrap {
  background-color: #FFF;
  box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
  max-width: 800px;
  margin: auto;
  border-radius: 20px;
  margin-top: 4rem;
  padding: 4rem 4vw;
}

.card__type1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  max-width: 350px;
}

.card__type2 {
  display: flex;
  max-width: 600px;
  margin: auto;
}

.card__img {
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.card__txt1 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

.card__txt2 {
  font-size: 1.2rem;
  text-align: center;
}


/*--------------------------------
case
--------------------------------*/

.case {
  background-color: #F1EEE7;
  padding: 0 4vw;
}

.case__list {
  margin-top: 4rem;
  padding-bottom: 8rem;
}

.case__item {
  max-width: 1092px;
  margin: auto;
}

.case__item + .case__item {
  margin-top: 4rem;
}

.case__content {
  background-color: #FFF;
  border-radius: 20px;
  padding: 4rem 5rem;
}

.case__lead {
  font-size: 2.4rem;
  font-weight: bold;
}

.case__txt {
  font-size: 1.6rem;
  margin-top: 2.4rem;
}

.case__wrap {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 1.6rem;
}

.case__img img {
  width: 70px;
  height: 70px;
}

.case__by {
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: 1.5rem;
}

/*--------------------------------
plan
--------------------------------*/

.plan {
  background-color: #FBFAF8;
  padding: 0 4vw 8rem 4vw;
}

.plan__content {
  overflow-x: hidden;
}

.plan__txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 4rem;
}

.plan__table {
  border-collapse: collapse;
  width: 100%;
}

.plan__head p,
.plan__head a {
  display: block;
  font-size: 1.6rem;
  color: #284A71;
  border: 3px solid #284A71;
  background-color: #FFF;
  border-radius: 999px;
  height: 50px;
  width: 200px;
  padding: 1.2rem 0;
  text-align: center;
  margin: 0 auto 2.4rem;
  font-weight: bold;
}

.plan__head a {
  transition: all .3s;
}

.plan__head a:hover {
  background-color: #284A71;
  color: #fff;
}

.plan__head:first-of-type {
  border: none;
  background-color: transparent;
}

.plan__row {
  border-bottom: 1px solid #CCCCCC;
}

.plan__rowTop {
  border-top: 3px solid #CCCCCC;
}

.plan__desc {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  background-color: #FFF;
  vertical-align: middle;
  font-weight: bold;
}

.plan__desc+.plan__desc {
  border-left: 1px solid #CCCCCC;
}

.plan__desc1+.plan__desc1 {
  font-size: 1.6rem;
  color: #3B4043;
}

.plan__desc1 {
  color: #284A71;
  font-size: 4.8rem;
}

.plan__desc1 span {
  font-size: 1.2rem;
}

.plan__desc2 {
  font-size: 2.4rem;
}

.plan__desc2 span {
  font-size: 1.2rem;
}

.plan__desc3 {
  font-size: 1.6rem;
  text-align: center;
}

.plan__item {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #F7F7F7;
  width: 210px;
  vertical-align: middle;
  padding: 3rem 2rem;
}

.credit {
  display: flex;
  justify-content: space-between;
  max-width: 284px;
  margin: auto;
}

.credit__item:not(:last-child) {
  margin-right: 1rem;
}

.credit__txt {
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: .5rem;
}

.plan__rowBottom {
  border-bottom: none;
}

.planInner {
  max-width: 1000px;
  margin: 4rem auto 0;
}


/*--------------------------------
flow
--------------------------------*/

.flow {
  padding: 0 4vw 8rem;
  background-color: #F1EEE7;
}

.flow__list {
  display: flex;
  justify-content: space-between;
  margin: 4rem auto 0;
  max-width: 1200px;
}

.flow__item {
  position: relative;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow__img img {
  width: 190px;
  height: 190px;
}

.flow__img {
  z-index: 3;
}

.flow__num {
  display: block;
  width: 96px;
  padding: 0 0.5rem;
  margin: 1.6rem auto 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 28px;
  color: #FFF;
  border-radius: 5px;
  font-weight: bold;
}

.flow__num1 {
  background-color: #284A71;
}

.flow__num2 {
  background-color: #284A71;
}

.flow__num3 {
  background-color: #284A71;
}

.flow__num4 {
  background-color: #284A71;
}

.flow__num5 {
  background-color: #284A71;
}

.flow__lead {
  font-size: 2rem;
  margin-top: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.flow__txt {
  font-size: 1.6rem;
  margin: 1.6rem auto 0;
  width: 80%;
}

.flow__txt a {
  color: #284A71;
  border-bottom: 1px solid #284A71;
}

.flow__item:not(:last-child):after {
  position: absolute;
  top: 96px;
  left: 80%;
  display: block;
  width: 50%;
  height: 3px;
  content: "";
  background: #284A71;
}


/*--------------------------------
faq
--------------------------------*/

.faq {
  background-color: #FBFAF8;
  padding: 0 4vw;
}

.faq_inner {
  max-width: 800px;
  margin: auto;
  padding-bottom: 8rem;
}

.faq__list {
  background-color: #FFF;
  border-radius: 20px;
  border: 3px solid #284A71;
  padding: 3.6rem 5rem;
  margin-top: 3rem;
}

.faq__list:first-of-type {
  margin-top: 2.3rem;
}

.faq__content1 {
  margin-top: 4rem;
}

.faq__lead1 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #CCCCCC;
  position: relative;
}

.faq__lead1::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #284A71;
  bottom: -2px;
  width: 8%;
}

.faq__term {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
  border-bottom: 3px solid #CCCCCC;
  display: flex;
}

.faq__q {
  color: #284A71;
  margin-right: 1rem;
}

.faq__desc {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}

.faq__content2 {
  margin-top: 6rem;
}


/*--------------------------------
form
--------------------------------*/

.wpcf7-form-control.error{
  border: 1px solid red;
}

.form {
  background-color: #F1EEE7;
  padding: 0 4vw 8rem;
}

.form__txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 4rem;
}

.formTel {
  background-color: #FFF;
  border: 3px solid #284A71;
  border-radius: 20px;
  padding: 3rem 0;
  max-width: 800px;
  margin: auto;
  margin-top: 3rem;
}

.form__subTtl {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
}

.formTel__link {
  display: block;
  text-align: center;
  position: relative;
  padding-bottom: 0;
  font-size: 3.2rem;
}

.formTel__tel_area {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1rem;
}

.formTel__tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: end;
}

.formTel__tel img {
  width: 30px;
  height: 27px;
  margin-bottom: .6rem;
  margin-right: 1rem;
}

.formTel__time {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  text-align: center;
  margin-top: .7rem;
}

.formMail {
  margin-top: 4rem;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-top: 1.2rem;
}

.wpcf7-radio .wpcf7-list-item:first-child {
  margin-top: 0;
}

.formMail__content {
  max-width: 800px;
  margin: auto;
  box-sizing: border-box;
  margin-top: 2.4rem;
}

.formMail__list {
  display: flex;
  justify-content: space-between;
}

.formMail__list {
  margin-top: 3rem;
}

.formMail__list label.error{
  color: red;
  display: block;
}

.formMail__team {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 15px 0;
}

.formMail__team span {
  font-size: 1rem;
  color: #FFF;
  background-color: #284A71;
  height: 24px;
  line-height: 24px;
  border-radius: 999px;
  font-weight: normal;
  width: 39px;
  margin-left: 1rem;
  display: inline-block;
  text-align: center;
}

.formMail__desc {
  width: 60%;
  font-size: 1.6rem;
}

div.wpcf7 input[type="text"],input[type="email"],input[type="tel"],input[type="url"], select, textarea{
  width: 100%;
  padding-left: 2rem;
  vertical-align: baseline;
  background-color: #FFF;
  border-radius: 5px;
  padding: 15px;
}

textarea {
  resize: vertical;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.formMail__descMessage, div.wpcf7 textarea[name="message"] {
  height: 200px;
}

.btn_contact7 {
  text-align: center;
}

.btn_contact7 input {
  width: 320px;
  height: 74px;
  line-height: 74px;
  margin: auto;
  background-color: #284A71;
  border: 5px solid #FFF;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 4rem;
  transition: .3s;
}

input::placeholder, textarea::placeholder {
  color: #CCCCCC;
}

.wpcf7-spinner {
  display: none !important;
}

.form-br {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #284A71 !important;
  /* Greenを変更 */
}


/*--------------------------------
footer
--------------------------------*/

.footer__inner {
  padding: 5rem 5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer__list {
  display: flex;
  font-size: 1.4rem;
  margin-right: 6.4rem;
}

.footer__item:hover {
  transition: .3s;
}

.footer__item:hover {
  color: #284A71;
}

.footer__item:not(:last-child) {
  margin-right: 3.2rem;
}

.footer__logo {
  margin-right: auto;
}

.footer__copy {
  font-size: 1.2rem;
}


/* --------------------------

reCAPTCHA

-------------------------- */

div.grecaptcha-badge {
  display: none;
}

@media screen and (max-width:1240px) {
/*--------------------------------
header
--------------------------------*/
.header__inner {
  padding: 0 3rem;
}

.header__item {
  margin-right: 2rem;
}

.bgleft1,
.header__link {
  width: 210px;
}

}

@media screen and (max-width:1074px) {
/*--------------------------------
header
--------------------------------*/
  .header__inner {
    height: 56px;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #FFF;
    padding: 0;
  }
  .header__logo {
    margin-left: 2vw;
    z-index: 999;
  }
  .header__logo img {
    height: 30px;
  }
  .header__nav {
    display: none;
  }
  .hamburger {
    display: none;
  }
  .hamburgerBtn {
    position: relative;
    display: inline-block;
    background-color: #284A71;
    width: 56px;
    height: 56px;
    z-index: 999;
  }
  .hamburgerBtn span {
    position: absolute;
    height: 1px;
    width: 24px;
    background-color: #FFF;
    display: inline-block;
    transition: 0.3s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburgerBtn span:nth-of-type(1) {
    top: 35%;
  }
  .hamburgerBtn span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hamburgerBtn span:nth-of-type(3) {
    bottom: 35%;
  }
  .hamburgerBtn.active span:nth-of-type(1) {
    transform: translateX(-50%) translateY(8px) rotate(-45deg);
    transition: 0.3s ease-in-out;
  }
  .hamburgerBtn.active span:nth-of-type(2) {
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  .hamburgerBtn.active span:nth-of-type(3) {
    transform: translateX(-50%) translateY(-8px) rotate(45deg);
    transition: 0.3s ease-in-out;
  }
  .hamburger.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    height: 100%;
    background: #fff;
    padding: 56px 0;
    z-index: 998;
    transition: 0.3s ease-in-out;
  }
  .hamburger.close {
    display: none;
  }
  .hamburger__list {
    padding: 0 4vw;
    margin: 0 auto;
    /* height: 100vh; */
  }
  .hamburger__item {
    font-weight: bold;
    font-size: 2rem;
    border-bottom: 1px solid #EEEEEE;
    padding: 1.4rem 0;
  }
  .hamburger__item span {
    font-size: 1.4rem;
    color: #284A71;
    display: block;
  }
  .hamburger__item a {
    display: block;
  }
  .featuresCard__txt {
    font-size: 1.4rem;
  }
  .featuresCard__img {
    width: 90%;
  }
  .featuresCard__txt {
    width: 90%;
  }
  .hamburgerTel {
    margin: 0;
    width: 100%;
  }
  .hamburgerTel+.hamburgerTel {
    margin-top: 1.4rem;
  }
  .hamburgerTel__link {
    width: 100%;
    padding: 1.2rem;
    height: 74px;
  }
  .btn__link {
    margin-top: 1.4rem;
  }
  .hamburgerTel__num {
    margin-top: .3rem;
  }
  .hamburgerBtn__link {
    width: 100%;
  }
  .btn {
    flex-direction: column;
  }
  .mv__inner {
    padding: 12rem 0 9rem;
  }
}

@media screen and (max-width:1120px) {
  .mv__ttl {
    font-size: 3.5rem;
  }
}

@media screen and (max-width:1100px) {
  .functionCard__lead {
    font-size: 2rem;
  }
  /*--------------------------------
flow
--------------------------------*/
  .flow {
    padding-bottom: 6.4rem;
  }
  .flow__list {
    flex-direction: column;
  }
  .flow__item:not(:last-child):after {
    display: none;
  }
  .flow__item {
    margin: auto;
    width: 85%;
  }
  .flow__item:not(:first-child) {
    margin-top: 4rem;
  }
  .flow__txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width:1000px) {
  .reasonCard__lead {
    font-size: 2rem;
  }
}

@media screen and (max-width:950px) {
  .functionCard__lead {
    font-size: 1.6rem;
    margin-top: 0;
  }
  .functionCard__txt {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }
  /*--------------------------------
  footer
  --------------------------------*/
  .footer__inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 4vw 2.4rem;
  }
  .footer__logo {
    margin: auto;
  }
  .footer__nav {
    margin-top: 3.9rem;
  }
  .footer__copy {
    margin-top: 3.4rem;
  }
  .footer__list {
    margin-right: 0;
  }
  .footer__item:not(:last-child) {
    margin-right: 3.1vw;
  }
}

@media screen and (max-width:850px) {
  /*--------------------------------
mv
--------------------------------*/
  .mv__lead {
    font-size: 1.4rem;
  }
  .mv {
    background: url(../img/mv-bg-sp.jpg) center right/cover no-repeat;
    background-size: cover;
  }
  .btn__link {
    width: 100%;
  }
  .mv__lead {
    width: 100%;
  }
  .mv__img {
    display: none;
  }
  .mv__inner {
    flex-direction: column;
    margin: auto;
    max-width: 1000px;
    padding: 8rem 0 6.4rem;
  }
  .mv__img-sp {
    display: block;
    width: 90%;
    margin: 4rem auto 0;
  }
  .mv__lead {
    margin: auto;
  }
  .mv__ttl {
    font-size: 2.4rem;
    text-align: center;
    margin-top: 1rem;
  }
  .mv__list {
    justify-content: center;
  }
  .btn__contact {
    text-align: center;
    width: 100%;
  }
  .form {
    padding-bottom: 6.4rem;
  }
  .formMail__list {
    flex-direction: column;
  }
  .formMail__desc {
    width: 100%;
    margin-top: 1.6rem;
  }
  .formMail__team {
    padding: 0;
  }
  .formMail__team, .formMail__desc, .form__txt {
    font-size: 1.4rem;
  }
  .formMail__list {
    margin-top: 2.6rem;
  }
}

@media screen and (max-width:767px) {
  .sp-br {
    display: block;
  }
  .section__ttl {
    font-size: 2.8rem;
  }
  .section__ttl span {
    padding: 6.4rem 0 1.4rem;
    font-size: 1.8rem;
  }
  .pc-br {
    display: none;
  }
  /*--------------------------------
lead
--------------------------------*/
  .lead__ttl {
    font-size: 1.8rem;
  }
  .lead__content:after {
    border-top: 40px solid #F1EEE7;
  }
  .recommend {
    padding: 8rem 4vw 8rem;
  }
  .recommend__ttl {
    font-size: 2.4rem;
    margin-top: 0;
    white-space: nowrap;
  }
  .recommend__sub span {
    font-size: 1.8rem;
  }
  .recommend__sub {
    font-size: 2.4rem;
  }
  .recommend__txt {
    font-size: 1.6rem;
    width: 90%;
    margin-left: 1rem;
  }
  .recommend__img {
    width: 24px;
    height: 24px;
  }
  .recommend__content {
    padding: 3.2rem 4vw;
    margin-top: 3rem;
  }
  /*--------------------------------
service
--------------------------------*/
  .service__item, .service__item:nth-child(2n) {
    flex-direction: column-reverse
  }
  .service__img {
    width: 80%;
  }
  .service__body {
    width: 100%;
  }
  .service__txt {
    font-size: 1.4rem;
  }
  .service__item {
    margin-top: 4rem;
  }
  .service {
    padding-bottom: 6.4rem;
  }
  .service__lead {
    font-size: 2.3rem;
  }
  /*--------------------------------
reason
--------------------------------*/
  .reasonCard {
    flex-direction: column;
  }
  .reasonCard__item {
    width: 100%;
    padding: 5rem 4vw 3.5rem;
    margin-bottom: 7rem;
  }
  .reasonCard__txt {
    font-size: 1.4rem;
  }
  /*--------------------------------
contact
--------------------------------*/
  .contact__ttl {
    font-size: 2.4rem;
  }
  .contact__ttl span {
    padding-top: 3.2rem;
  }
  .contact__link {
    margin: 0;
  }
  .contact__link2 {
    margin-top: 1.5rem;
  }
  .contact__list {
    flex-direction: column;
    padding-bottom: 3.2rem;
  }
  .contact {
    padding: 6.4rem 4vw;
  }
  .contact__inner {
    padding: 0 2vw;
  }
  .contact__tel {
    margin: 0;
  }
  .contact__tel+.contact__tel {
    margin-top: 1.4rem;
  }
  /*--------------------------------
function
--------------------------------*/
  .functionCard {
    flex-direction: column;
  }
  .functionCard__item {
    width: 100%;
    padding: 4rem 4vw;
  }
  .functionCard__item:not(:first-child) {
    margin-top: 7rem;
  }
  .functionCard__lead {
    font-size: 2.4rem;
  }
  /*--------------------------------
card
--------------------------------*/
  .card__txt1 {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .card__type1 {
    max-width: 265px;
    margin: auto;
    justify-content: center;
  }
  .card__type1 img {
    margin-right: 1.4rem;
  }
  .card__wrap {
    padding: 2.4rem 4vw;
  }
  .card__img {
    margin-right: .8rem;
    margin-bottom: .8rem;
  }
  .card__txt2 {
    margin-top: 1.2rem;
  }
  /*--------------------------------
case
--------------------------------*/
  .case__lead {
    font-size: 2rem;
  }
  .case__txt {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }
  .case__content {
    padding: 2.4rem 8vw;
  }
  .case__wrap {
    justify-content: left;
  }
  .case__list {
    padding-bottom: 6.4rem;
  }
  /*--------------------------------
plan
--------------------------------*/
  .plan {
    padding: 0 0 6.4rem 4vw;
  }
  .plan__txt {
    font-size: 1.3rem;
  }
  .plan__head p {
    font-size: 1.4rem;
    width: 180px;
  }
  .plan__desc1+.plan__desc1 {
    font-size: 1.4rem;
  }
  .plan__item {
    font-size: 1.4rem;
    width: 150px;
  }
  .plan__desc3 {
    font-size: 1.4rem;
  }
  .planInner {
    width: 800px;
  }
  /*--------------------------------
faq
--------------------------------*/
  .faq_inner {
    padding-bottom: 6.4rem;
  }
  .faq__term {
    font-size: 1.6rem;
  }
  .faq__desc {
    font-size: 1.4rem;
  }
  .faq__q {
    font-size: 2rem;
  }
  .faq__list {
    padding: 2.5rem 4vw;
  }
  .faq__list {
    margin-top: 2.4rem;
  }
  .faq__lead1::after {
    width: 20%;
  }
}

@media screen and (max-width:500px) {
  .lead__content {
    flex-direction: column;
    max-width: 300px;
    padding-top: 4rem;
  }
  .lead__img:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .flow__txt {
    width: 100%;
  }
}

@media screen and (max-width:400px) {
  .mv__ttl {
    font-size: 2.2rem;
  }
  .form-br {
    display: block;
  }
}

.button-change-tab-form{
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.button-change-tab-form.active{
  border-bottom: 2px solid #284A71;
}

/*--------------------------------
Thanks
--------------------------------*/
.thanks {
  padding-top: 100px;
}
.text-center {
  text-align: center;
}
.accent-color {
  color: #204a76;
}
.triangle-top {
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-top: 180px solid #204a76;
  margin-right: -20%;
}
.triangle-bottom {
  width: 0;
  height: 0;
  border-right: 100vw solid transparent;
  border-bottom: 180px solid #204a76;
  margin-left: -20%;
}
.thanks__ttl{
  font-size: 6rem;
  font-weight: bold;
}
.sub-ttl{
  font-size: 2.4rem;
  font-weight: bold;
}
.thanks__content{
  font-size: 1.8rem;
  max-width: 800px;
  margin: 36px auto;
  padding: 0 10px;
}
.thanks__content p{
  margin-bottom: 0.8rem;
}
.thanks__content ul{
  font-weight: bold;
  margin-left: 24px;
  margin-bottom: 1rem;
  list-style-type: disc;
}
.thanks-bottom{
  position: relative;
  margin-top: 90px;
}
.thanks-bottom-image{
  position: absolute;
  right: 8px;
  bottom: -5px;
  width: 40%;
  max-width: 300px;
  min-width: 200px;
}
@media screen and (max-width:1074px) {
  .thanks {
    padding-top: 56px;
  }
  .triangle-top{
    border-top: 120px solid #204a76;
  }
  .triangle-bottom{
    border-bottom: 120px solid #204a76;
  }
}