@charset "utf-8";

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

ベース

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

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

a {
  opacity: 1;
  transition: .3s;
}

a:hover {
  opacity: .5;
}

.contents {
  max-width: 980px;
  min-width: 980px;
  width: 95%;
  margin: auto;
}

@media screen and (max-width: 768px) {

  body {
  }

  a:hover {
    opacity: 1;
  }

  .contents {
    min-width: auto;
  }

}

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

FLEX

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

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-end {
  -webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

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

PC

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

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

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

SP

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


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

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

ハンバーガーメニュー

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

@media screen and (min-width: 1151px) {

  .switch_min {
    display: none !important;
  }

}

@media screen and (max-width: 1150px) {

  .switch_min {
    display: block;
  }

  .switch_max {
    display: none !important;
  }

}

.hamburger {
  display: block;
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #054086;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger.active {
  position: fixed;
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 3;
  top  : 0;
  left : 0;
  background: #FFF;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 70px auto;
  padding: 0;
  width: 100%;
  display: block;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 90%;
  margin: 15px auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  font-size: 1.8rem;
  color: #054086;
  padding-bottom: 15px;
  border-bottom: 1px solid;
}

nav.globalMenuSp ul li a {
  display: block;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

@media screen and (max-width: 768px) {

  .hamburger {
    right: 5px;
  }

}


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

フェードインアニメーション

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


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    transition: 1.2s;
    opacity: 0;
    transform: translate(0px,60px);
}


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

ヘッダー

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

.head_cont {
  padding: 15px 30px;
  background: #FFF;
  width: 100%;
  position: relative;
}

.hrad_copy {
  color: #054086;
  font-weight: bold;
  margin-left: 30px;
}

.hrad_copy p:first-child {
  font-size: 1.6rem;
}

.hrad_copy p:last-child {
  font-size: 2.4rem;
}

.head_menu {
  font-size: 1.4rem;
  color: #054086;
}

.head_menu_box {
  margin-right: 18px;
  padding-left: 40px;
  line-height: 40px;
  position: relative;
}

.head_menu_box.survice::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 38px;
  background: url(/assets/img/head_logo_survice.svg) no-repeat;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.head_menu_box.area::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 40px;
  background: url(/assets/img/head_logo_area.svg) no-repeat;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.head_menu_box.qa::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: url(/assets/img/head_logo_qa.svg) no-repeat;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.head_menu_box.contact::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 25px;
  background: url(/assets/img/head_logo_contact.svg) no-repeat;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {

  .head_cont {
    padding: 10px;
  }

  .head_logo a {
    width: 40%;
  }

  .head_logo img {
    width: 100%;
  }

  .hrad_copy {
    margin-left: 15px;
  }

  .hrad_copy p:first-child {
    font-size: 1rem;
  }

  .hrad_copy p:last-child {
    font-size: 1.5rem;
  }

}

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

フッター

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

.sponsor {
  width: 100%;
  max-width: 983px;
  margin: 35px auto;
}

.foot_cont {
  width: 100%;
  background: #054086;
  color: #FFF;
  padding: 50px 0 100px 0;
}

.foot_menu {
  width: 100%;
  font-size: 1.4rem;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid;
}

.foot_menu ul li {
  padding: 0 25px;
  border-right: 1px solid;
}

.foot_menu ul li:last-of-type {
  border-right: none;
}

.foot_tel {
  margin-bottom: 55px;
}

.foot_tel p {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}

.tel_box {
  margin: 30px 0;
}

.tel_box p {
  font-size: 6.7rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-left: 85px;
}

.tel_box p::before {
  position: absolute;
  content: "";
  background: url(/assets/img/icon_tel.svg) no-repeat;
  background-size: 100%;
  width: 70px;
  height: 46px;
  top: 55%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.foot_info img {
  max-width: 400px;
  height: auto;
}

.foot_info p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-left: 40px;
}

.foot_fix_bar {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0;
  background-color: #054086;
  mix-blend-mode: multiply;
  z-index: 1;
}

.foot_fix_bar_box {
  width: 100%;
  position: fixed;
  bottom: 15px;
  z-index: 2;
}

.white_box {
  background: #FFF;
  color: #054086;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 3px;
  margin-right: 10px;
}

.bar_message {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 30px;
  margin-left: 15px;
  color: #FFF;
}

.tel_box_yellow a {
  color: #FFF500;
  font-size: 4rem;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
}

.tel_box_yellow a::before {
  position: absolute;
  content: "";
  background: url(/assets/img/icon_tel_fixed.svg) no-repeat;
  background-size: 100%;
  width: 40px;
  height: 28px;
  top: 55%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {

  .sponsor img {
    width: 80%;
    margin: auto;
  }

  .foot_menu {
    font-size: 1.3rem;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .foot_menu ul {
    width: 90%;
    justify-content: space-between !important;
    margin: auto;
  }

  .foot_menu ul li {
    width: 48%;
    text-align: center;
    padding: 0 5px;
    border-right: none;
    margin-bottom: 20px;
  }

  .foot_tel p {
    font-size: 1.8rem;
  }

  .tel_box p {
    font-size: 4rem;
    padding-left: 70px;
  }

  .tel_box p::before {
    width: 60px;
    height: 40px;
    top: 55%;
  }

  .foot_info img {
    width: 80%;
    margin: auto;
    display: block;
  }

  .foot_info p {
    margin-left: 0;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 20px;
  }

  .foot_fix_bar_box {
    bottom: 12px;
  }

  .white_box {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .bar_message {
    font-size: 1.2rem;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5px;
  }

  .tel_box_yellow a {
    font-size: 2rem;
    padding-left: 25px;
  }

  .tel_box_yellow a::before {
    width: 20px;
    height: 14px;
  }

}

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

INDEX

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

.mv_cont {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  background: url(/assets/img/mv_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.mv_cont h1 {
  font-size: 3.4rem;
  font-weight: bold;
  color: #054086;
  line-height: 1.8;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.top_about_cont {
  padding: 60px 0 100px 0;
}

.top_about_cont h2 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #054086;
  letter-spacing: 0.1em;
}

.top_about_cont h2 p {
  display: inline-block;
  position: relative;
}

.top_about_cont h2 p::before {
  position: absolute;
  content: "";
  background: url(/assets/img/line_left.svg) no-repeat;
  width: 20px;
  height: 47px;
  background-size: 100%;
  background-position: center;
  top: 5px;
  left: -25px;
}

.top_about_cont h2 p::after {
  position: absolute;
  content: "";
  background: url(/assets/img/line_right.svg) no-repeat;
  width: 20px;
  height: 47px;
  background-size: 100%;
  background-position: center;
  top: 5px;
  right: -25px;
}

.about_message {
  font-size: 3.3rem;
  font-weight: bold;
  color: #054086;
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: center;
  margin: 15px 0 40px 0;
}

.about_txt {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
}

.about_menu {
  margin: 40px auto 0 auto;
}

.about_menu_box {
  width: 32%;
}

.about_menu_box p {
  font-size: 2rem;
  margin-top: 20px;
  text-align: center;
}

div.top_reason_box:last-of-type {
  width: 50%;
}

.top_reason_box h2 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .1em;
  color: #054086;
  margin-bottom: 20px;
}

.big_reason {
  font-size: 5.1rem;
  font-weight: bold;
  letter-spacing: .1em;
  padding: 12px;
  background: #054086;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big_reason span {
  font-size: 7.5rem;
}

.living_line {
  width: 100%;
  height: 1px;
  background: #D3D3D3;
  position: relative;
}

.living_line::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 2px;
  background: #073878;
  top: 0;
  left: 0;
}

.reason_point_box {
  margin: 28px 0;
}

.reason_point_box img {
  margin-left: 30px;
}

.reason_point_box p {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  color: #054086;
  margin-left: 40px;
}

.reason_point_box p span {
  font-size: 2.5rem;
}

.top_reason_message {
  font-size: 2.6rem;
  color: #054086;
  margin-top: 60px;
  text-align: center;
}

.reason_btn {
  position: relative;
  width: 315px;
  height: 54px;
  font-size: 1.4rem;
  color: #054086;
  padding: 15px 75px;
  margin: 40px auto 0 auto;
  background: #FFF;
  border: 1px solid;
  box-sizing: border-box;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.16);
}

.reason_btn::after {
  position: absolute;
  content: "";
  background: url(/assets/img/arrow_reason_btn.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 6px;
  height: 12px;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.pr_cont {
  margin: 120px auto 90px auto;
}

.pr_box {
  border: 1px solid #707070;
  border-radius: 5px;
}

.pr_img {
  max-width: 292px;
  margin-left: 15px;
}

.pr_txt {
  max-width: 620px;
  margin-right: 30px;
}

.pr_txt h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .1em;
  color: #054086;
}

.pr_point {
  margin: 10px auto;
}

.pr_point_box {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  background: #054086;
  color: #FFF;
  padding: 12px 20px;
}

.pr_point p.pr_point_box:first-of-type {
  width: 24%;
}

.pr_point p.pr_point_box:nth-of-type(2) {
  width: 34%;
}

.pr_point p.pr_point_box:last-of-type {
  width: 38%;
}

.pr_main_txt {
  margin-bottom: 10px;
}

.pr_main_txt {
  font-size: 1.2rem;
  line-height: 2;
}

.pr_main_txt img {
  max-width: 130px;
}

.pr_card {
  margin-top: 20px;
}

.pr_card p {
  font-size: 1.4rem;
  padding: 10px 15px;
  border: 1px solid #707070;
  border-radius: 3px;
  margin-right: 20px;
}

.pr_card img {
  max-width: 176px;
}

.top_flow_cont {
  margin: 0 auto 110px auto;
}

.top_flow_cont h2 {
  font-size: 4rem;
  letter-spacing: .1em;
  color: #054086;
  text-align: center;
  margin-bottom: 20px;
}

.top_flow_cont span {
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: #707070;
  text-align: center;
  display: block;
}

.flow {
  margin-top: 70px;
}

.flow_box {
  position: relative;
  width: 30%;
  padding: 30px 15px;
  color: #FFF;
  background: rgb(44,159,201);
  background: linear-gradient(180deg, rgba(44,159,201,1) 0%, rgba(5,64,134,1) 100%);
}

.flow_box img {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.flow_box p {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}

.wrap_gray {
  width: 100%;
  background: #F6F6F6;
  padding: 70px 0;
}

.top_service_cont h2 {
  font-size: 4rem;
  letter-spacing: .1em;
  color: #054086;
  text-align: center;
  margin-bottom: 20px;
}

.top_service_cont span {
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: #707070;
  text-align: center;
  display: block;
}

.service_copy {
  font-size: 1.6rem;
  margin-top: 40px;
  line-height: 2;
  text-align: center;
}

.service_lineup {
  margin-top: 70px;
}

.service_lineup_box {
  width: 24%;
  margin-right: 13px;
  margin-bottom: 25px;
}

.service_lineup div.service_lineup_box:nth-of-type(4),
.service_lineup div.service_lineup_box:nth-of-type(7) {
  margin-right: 0;
}

.service_lineup_box p {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 20px;
}

.service_menu {
  margin-top: 90px;
}

.service_menu_copy {
  font-size: 2.6rem;
  text-align: center;
  color: #054086;
  margin-bottom: 40px;
  line-height: 1.5;
}

.service_menu_txt {
  width: 49%;
  flex-flow: column;
  justify-content: center;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  margin-left: 80px;
}

.service_menu_txt p:first-of-type {
  margin-bottom: 10px;
}

.living_line_vertical {
  width: 1px;
  height: 170px;
  background: #D3D3D3;
  margin: 10px 0;
}

.service_example {
  margin: 70px auto 20px auto;
}

.service_example p {
  font-size: 1.9rem;
  font-weight: bold;
  padding: 30px 80px;
  border: 1px solid #707070;
  margin-right: 20px;
}

.service_example ul {
  font-size: 1.8rem;
  line-height: 1.5;
}

.top_area {
  margin: 120px auto;
}

.top_area_left_box {
  width: 25%;
  margin-left: 30px;
}

.top_area_left_box h2 {
  font-size: 4rem;
  letter-spacing: .1em;
  color: #054086;
  text-align: left;
  margin-bottom: 20px;
}

.top_area_left_box span {
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: #707070;
  text-align: left;
  display: block;
}

.top_area_right_box {
  width: 65%;
  margin-right: 30px;
  position: relative;
}

.area_map {
  max-width: 320px;
}

.area_city {
  position: absolute;
}

.area_city.saitama {
  max-width: 290px;
  top: 30%;
  left: 0;
}

.area_city.tokyo {
  max-width: 230px;
  top: 55%;
  left: 10%;
}

.area_city.chiba {
  max-width: 203px;
  top: 55%;
  right: 0;
}

.area_city.kanagawa {
  max-width: 221px;
  bottom: 0;
  left: 15%;
}

@media screen and (max-width: 768px) {

  .mv_cont {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
    background: url(/assets/img/mv_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }

  .mv_cont h1 {
    font-size: 2rem;
    top: 30%;
  }

  .top_about_cont {
    padding: 30px 0 50px 0;
  }

  .top_about_cont h2 {
    font-size: 2.4rem;
  }

  .top_about_cont h2 p::before {
    width: 12px;
    height: 24px;
    left: -20px;
  }

  .top_about_cont h2 p::after {
    width: 12px;
    height: 24px;
    right: -20px;
  }

  .about_message {
    font-size: 1.8rem;
  }

  .about_txt {
    font-size: 1.4rem;
  }

  .about_menu_box p {
    font-size: 1.1rem;
  }

  .top_reason_box h2 {
    font-size: 2rem;
    text-align: center;
  }

  .big_reason {
    font-size: 3rem;
  }

  .big_reason span {
    font-size: 4.2rem;
  }

  div.top_reason_box:last-of-type {
    width: 100%;
    margin-top: 30px;
  }

  .reason_point_box img {
    margin-left: 10px;
    width: 20%;
  }

  .reason_point_box p {
    font-size: 1.4rem;
  }

  .reason_point_box p span {
    font-size: 1.9rem;
  }

  .top_reason_message {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 30px;
  }

  .pr_cont {
    margin: 60px auto 45px auto;
  }

  .pr_box {
    flex-flow: column-reverse;
  }

  .pr_txt {
    width: 100%;
    margin-right: 0;
    padding: 10px;
  }

  .pr_txt h2 {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }

  .pr_point_box {
    font-size: 1rem;
  }

  .pr_point p.pr_point_box:first-of-type,
  .pr_point p.pr_point_box:nth-of-type(2),
  .pr_point p.pr_point_box:last-of-type {
    width: 32%;
  }

  .pr_main_txt img {
    width: 25%;
  }

  .pr_card p {
    font-size: 1.2rem;
    padding: 8px;
    margin-right: 10px;
  }

  .pr_card img {
    width: 40%;
  }

  .pr_img {
    margin-left: 0;
    max-width: 100%;
    margin-top: 15px;
  }

  .top_flow_cont h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

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

  .flow {
    margin-top: 50px;
  }

  .flow_box {
    width: 100%;
    margin-bottom: 15px;
  }

  .flow_box img {
    width: 40px;
    height: 40px;
    top: -20px;
  }

  .flow_box p {
    font-size: 1.6rem;
  }

  .flow_arrow {
    text-align: center;
    margin: 20px auto 40px auto;
  }

  .flow_arrow img {
    transform: rotate(90deg);
  }

  .top_service_cont h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

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

  .service_copy {
    font-size: 1.4rem;
  }

  .service_lineup {
    margin-top: 35px;
  }

  .service_lineup_box {
    width: 48%;
    margin-right: 10px;
    margin-bottom: 25px;
  }

  .service_lineup_box p {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .service_lineup div.service_lineup_box:nth-of-type(even) {
    margin-right: 0;
  }

  .service_menu {
    margin-top: 10px;
  }

  .service_menu_copy {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .service_menu_txt {
    width: 100%;
    margin: 20px 0;
  }

  .living_line_vertical {
    width: 100%;
    height: 1px;
  }

  .service_example p {
    width: 100%;
    font-size: 1.4rem;
    padding: 20px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .service_example ul {
    font-size: 1.4rem;
    line-height: 2;
  }

  .top_area {
    margin: 60px auto 90px auto;
  }

  .top_area_left_box {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .top_area_left_box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
  }

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

  .top_area_right_box {
    width: 100%;
    margin-right: 0;
  }

  .area_map {
    max-width: 40%;
  }

  .area_city.saitama {
    max-width: 150px;
    top: 25%;
    left: 5%;
  }

  .area_city.tokyo {
    max-width: 125px;
    top: 53%;
    left: 12%;
  }

  .area_city.chiba {
    max-width: 110px;
    top: 53%;
    right: 5%;
  }

  .area_city.kanagawa {
    max-width: 125px;
    bottom: -5%;
    left: 15%;
  }

}


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

下層ページ共通

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

.under_head_cont {
  margin: 45px auto 90px auto;
}

.bread_list {
  font-size: 1.4rem;
  margin-bottom: 60px;
}

.bread_list {
  margin-bottom: 60px;
}

.bread_list a {
  font-size: 1.4rem;
}

.bread_list p {
  margin-left: 5px;
}

.under_head_tit span {
  font-size: 1.5rem;
}

.under_head_tit h1 {
  font-size: 4.2rem;
  color: #054086;
  margin-top: 5px;
}

.under_cont {
  margin: 0 auto 120px auto;
}

.under_cont_tit {
  font-size: 3rem;
  letter-spacing: .1em;
  color: #054086;
}

.under_cont_line {
  width: 100%;
  height: 1px;
  background: #707070;
  margin: 30px auto;
}

.link_txt {
  color: #2C9FC9;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {

  .under_cont {
    margin: 0 auto 60px auto;
  }

  .under_head_cont {
    margin: 20px auto 40px auto;
  }

  .bread_list {
    margin-bottom: 30px;
  }

  .under_head_tit span {
    font-size: 1.3rem;
  }

  .under_head_tit h1 {
    font-size: 2.6rem;
  }

  .under_cont_tit {
    font-size: 2rem;
  }

  .under_cont_line {
    margin: 15px auto;
  }


}


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

サービス

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

.pr_cont.under {
  margin: 85px auto 140px auto;
}

.pr_box.under {
  margin-top: 40px;
}

.service_info {
  margin-top: 60px;
}

.service_info p {
  font-size: 2rem;
  margin-left: 15px;
  margin-bottom: 15px;
}

.service_info_cont {
  margin: 0 auto 140px auto;
}

.tel_box_blue p {
  font-size: 6.7rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-left: 85px;
  color: #054086;
}

.tel_box_blue p::before {
  position: absolute;
  content: "";
  background: url(/assets/img/icon_tel_service.svg) no-repeat;
  background-size: 100%;
  width: 70px;
  height: 46px;
  top: 55%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {

  .pr_cont.under {
    margin: 30px auto 60px auto;
  }

  .service_info_cont {
    margin: 0 auto 90px auto;
  }

  .service_info {
    margin-top: 30px;
  }

  .service_info p {
    font-size: 1.4rem;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .tel_box_blue p {
    font-size: 4rem;
    padding-left: 70px;
  }

  .tel_box_blue p::before {
    width: 60px;
    height: 40px;
    top: 55%;
  }

}


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

企業概要・プライバシーポリシー

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

.caption {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

.txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

.profile_category {
  width: 20%;
}

.profile_data {
  width: 80%;
}

.ml_small {
  margin-left: 15px;
}

.ml_middle {
  margin-left: 60px;
}

.ml_large {
  margin-left: 120px;
}

.list_number {
  list-style: decimal;
}

.caption_margin {
  margin-bottom: 15px;
}

.child_list {
  margin-top: 20px;
}

.parent_list {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {

  .caption {
    font-size: 1.3rem;
  }

  .txt {
    font-size: 1.1rem;
  }

  .ml_small {
    margin-left: 0;
  }

  .list_number.ml_small {
    margin-left: 15px;
  }

  .ml_middle {
    margin-left: 15px;
  }

  .ml_large {
    margin-left: 30px;
  }

}

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

対応エリア

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


.area_list {
  width: 20%;
}

.area_info {
  width: 70%;
}

.area_category {
  width: 20%;
}

.area_data {
  width: 80%;
}

.area_company {
  font-size: 1.4rem;
  margin-left: 20px;
}

.area_guide {
  margin-bottom: 70px;
}

.area_list ul {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.area_list li {
  margin-bottom: 30px;
}

.area_list li a {
  color: #707070;
  position: relative;
  padding-left: 20px;
}

.area_list li a.active {
  color: #2C9FC9;
}

.area_list li a::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #707070;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.area_list li a.active::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #2C9FC9;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.area_list li a.active::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #2C9FC9;
  border-radius: 7px;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {

  .area_wrap {
    margin: 0 auto 90px auto;
  }

  .area_list {
    width: 100%;
    margin-bottom: 30px;
  }

  .area_info {
    width: 100%;
  }

  .area_list ul {
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .area_list li {
    width: 45%;
    margin-left: 10px;
    margin-bottom: 20px;
  }

  .area_category {
    width: 100%;
    margin-bottom: 15px;
  }

  .area_data {
    width: 100%;
  }

  .area_company {
    font-size: 1.2rem;
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  .area_guide {
    margin-bottom: 35px;
  }

}


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

Q&A

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

.Montserrat {
  font-size: 2.6rem;
  font-weight: bold;
  color: #054086;
  font-family: 'Montserrat', sans-serif;
}

.qa_cont {
  width: 100%;
  padding-bottom: 40px;
}

.qa_box {
  width: 100%;
  margin: 30px auto;
}

.acd-check {
    display: none;
}

.acd-label {
  width: 100%;
  height: 75px;
  background: #054086;
  color: #FFF;
  font-size: 1.6rem;
  margin: 25px auto 0 auto;
  position: relative;
}

.acd-label.first {
  margin: 0 auto;
}

.acd-label span {
  font-size: 2.6rem;
  color: #054086;
  background: #FFF;
  padding: 10px 14px;
  border-radius: 50%;
  margin-left: 20px;
  margin-right: 20px;
}

.acd-label:after {
    content: '＋';
    font-size: 3.5rem;
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.acd-content {
  width: 100%;
  margin: auto;
  background: #F0F7FF;
  display: block;
  height: 0;
  opacity: 0;
  transition: .3s;
  visibility: hidden;
}

.acd-check:checked + .acd-label:after {
  content: 'ー';
  font-size: 3.5rem;
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.acd-check:checked + .acd-label + .acd-content {
    opacity: 1;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 30px 0;
    visibility: visible;
}

.answer {
  font-size: 2.6rem;
  color: #054086;
  padding: 10px 15px;
  background: #FFF;
  border-radius: 50%;
  margin-left: 20px;
  margin-right: 20px;
}

.answer_txt {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}

.over_cont {
  max-width: 1070px;
  min-width: 1070px;
  margin: 0 auto 120px auto;
}

.over_cont a {
  width: 48%;
  display: block;
}

@media screen and (max-width: 768px) {

  .qa_cont {
    padding: 0;
  }

  .acd-label {
    font-size: 1.2rem;
    padding-right: 40px;
    height: 80px;
    margin: 10px auto 0 auto;
  }

  .acd-label span {
    font-size: 1.6rem;
    padding: 7.5px 10px;
    margin-left: 10px;
  }

  .acd-label:after {
    right: 10px;
    font-size: 2rem;
  }

  .acd-check:checked + .acd-label:after {
    right: 10px;
    font-size: 2rem;
  }

  .acd-check:checked + .acd-label + .acd-content {
    padding: 15px 10px;
  }

  .answer {
    font-size: 1.6rem;
    padding: 7.5px 10.5px;
    margin-left: 0;
  }

  .answer_txt {
    width: 100%;
    font-size: 1.2rem;
  }

  .qa_box {
    margin: 30px auto;
  }

  .over_cont {
    max-width: 95%;
    min-width: auto;
    margin: 0 auto 40px auto;
  }

  .over_cont a {
    width: 100%;
    margin-bottom: 15px;
  }

}

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

お問い合わせ

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

.contact_copy {
  font-size: 1.4rem;
  line-height: 1.5;
}

.form_box {
  width: 100%;
  margin: 40px auto;
}

.form_txt {
  margin-bottom: 40px;
}

.form_tit {
  margin-bottom: 10px;
}

.form_name {
  font-size: 2rem;
  margin-right: 15px;
}

.required {
  font-size: 1rem;
  color: #FFF;
  padding: 5px 10px;
  background: #D54B4B;
}

.form_txt input {
  width: 100%;
  height: 60px;
  border: 1px solid #707070;
  background: #FFF;
  padding: 10px 20px;
  font-size: 1.8rem;
}

.form_txt textarea {
  width: 100%;
  min-height: 270px;
  border: 1px solid #707070;
  background: #FFF;
  padding: 10px 20px;
  font-size: 1.8rem;
}

.top_btn {
  position: relative;
  width: 315px;
  height: 54px;
  margin: 90px auto;
  background: #054086;
  text-align: center;
  color: #FFF;
  font-size: 1.4rem;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.16);
}

.top_btn.btnNoSelected {
  background-color: #bab8b8;
  pointer-events: none;
}

.top_btn::after {
    content: "";
    position: absolute;
    background: url(/assets/img/arrow_contact_btn.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 6px;
    height: 12px;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.new_account {
  font-size: 2rem;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin: 20px auto;
}

.coution {
  width: 100%;
  padding: 35px;
  border: 1px solid #FF0000;
  border-radius: 18px;
  position: relative;
}

.coution_tit {
  font-size: 3rem;
  color: #FF0000;
  position: absolute;
  background: #FFC20E;
  padding: 5px 10px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.coution_txt {
  font-size: 1.6rem;
    line-height: 2;
}

.form_info {
  font-size: 1.8rem;
  line-height: 1.8
}

.form_flex input {
  width: 49%;
}

.form_ipselect {
  width: 49%;
  position: relative;
}

.form_select {
  position: relative;
  background-color: #FFF;
  width: 100%;
  height: 60px;
  padding: 10px;
  font-size: 1.8rem;
  border-radius: 8px;
  border: 2px solid #000;
  appearance: none;
  -webkit-appearance: none;
}
.form_select:focus {
  outline: none;
  border-bottom: 1px solid rgba(0,0,0, 0);
}
select.form_select::-ms-expand {
  display: none;
}
.form_ipselect:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 20px;
  padding: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #ff0000 transparent transparent transparent;
  pointer-events: none;
}
.form_selectlabel {
  color: rgba(0,0,0, 0.5);
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: 0.2s ease all;
}
.form_select:focus ~ .form_selectlabel, .form_select:valid ~ .form_selectlabel {
  color: #da3c41;
  top: -20px;
  transition: 0.2s ease all;
  font-size: 14px;
}
.form_selectbar {
  position: relative;
  display: block;
  width: 100%;
}
.form_selectbar:before, .form_selectbar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #da3c41;
  transition: 0.2s ease all;
}
.form_selectbar:before {
  left: 50%;
}
.form_selectbar:after {
  right: 50%;
}
.form_select:focus ~ .cp_sl06_selectbar:before, .cp_sl06:focus ~ .cp_sl06_selectbar:after {
  width: 50%;
}
.form_select_highlight {
  position: absolute;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.ECM_CheckboxInput {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ECM_CheckboxInput-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
  background: #555555;
}
.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  height: 2px;
  transform: translate(-4px, 5px) rotateZ(-135deg);
  transform-origin: 1px 1px;
  background: #FFFFFF;
}
.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 2px;
  transform: translate(-4px, 5px) rotateZ(-45deg);
  transform-origin: 1px 1px;
  background: #FFFFFF;
}
.ECM_CheckboxInput-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
  background: #FFF;
}
.ECM_CheckboxInput-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 1.6rem;
}



@media screen and (max-width: 768px) {

  .form_txt {
    margin-bottom: 20px;
  }

  .form_name {
    font-size: 1.4rem;
  }

  .form_txt input {
    height: 50px;
    font-size: 1.2rem;
    padding: 10px;
  }

  .form_txt textarea {
    font-size: 1.2rem;
    padding: 10px;
  }

  .form_select {
    height: 50px;
  }

  .top_btn.submit {
    margin-top: 40px;
    width: 80%;
  }

  .new_account {
    font-size: 1.6rem;
  }

  .coution {
    margin-top: 50px;
  }

  .coution_tit {
    font-size: 2rem;
    top: -20px;
  }

  .coution_txt {
    font-size: 1.4rem;
  }

  .ECM_CheckboxInput-LabelText {
    font-size: 1.2rem;
  }

}
