﻿@charset "utf-8";

/*
"Noto Sans JP","Zen Kaku Gothic New"
*/

/* base
--------------------------------------------*/
* {
  font-family: Helvetica Neue,Helvetica,Arial,YuGothic,Yu Gothic,游ゴシック体,游ゴシック,ヒラギノ角ゴ ProN W3,Hiragino Kaku Gothic ProN,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,MS ゴシック,MS Gothic,sans-serif;
}
html { font-size: 62.5%; }

/* layout
--------------------------------------------*/
#container {
  width: 850px;
  margin: 0 auto;
}

/* body
--------------------------------------------*/
body {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #000;
}
a {
  text-decoration: none;
  color: #000;
}

/* header
--------------------------------------------*/
header {
  position: relative;
}
header #headerInner {
  max-width: 1200px;
  margin: 0 auto;
}
header .siteTitle {
  max-width: 350px;
  position: relative;
  z-index: 110;
}
header .siteTitle img {
  width: 100%;
  height: auto;
}

/* main
--------------------------------------------*/
#main {
  /* background-color: #000; */
}
#contents {
  /* margin-bottom: 80px; */
  box-sizing: border-box;
}
#contents .content img {
  max-width: 100%;
  height: auto;
}

/* footer
--------------------------------------------*/
footer img {
  max-width: 100%;
  height: auto;
}
footer #page-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
  width: 54px;
}

footer #copyright {
  padding: 8px 0 0;
  /* background-color: #ccc; */
  text-align: center;
  font-size: 1.4rem;
  color: #FFF;
}

/* main
------------------------------------------------------------------*/

/* contents
-----------------------------------*/
.content {
  /* padding: 100px 0; */
}
#contents .content:first-child {
  padding: 160px 0;
}
#contents .content:not(.bg):not(:first-child) {
  padding: 0 0 100px;
}
#contents .content.bg + .content {
  padding: 100px 0;
}
.content.bg {
  padding: 100px 0;
  background-color: #FFF;
}
.content.bgW {
  background-color: #FFF;
}
.content.btrn {
  background-color: transparent;
}
.content .contentInner {
  max-width: 900px;
  margin: 0 auto;
}
.content .contentInner h2 {
  /* margin-bottom: 30px; */
}
.content .contentInner h3 {
  /* margin-bottom: 20px; */
}
.content .contentInner .block:not(:last-child) {
  margin-bottom: 80px;
}

/* button
-----------------------------------*/
.button.type1 {
  margin-bottom: 40px;
}
.button.type1 a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 40px 20px 40px 110px;
  border-radius: 60px;
  box-sizing: border-box;
  background-color: #1ab583;
  box-shadow: 0 10px 0 #0e7a59;
  transition: transform .15s ease, box-shadow .15s ease;
  font-weight: bold;
  font-size: 2.6rem;
  color: #FFF;
}
.button.type1 a:hover {
  transform: translateY(4px);
  box-shadow: 0 6px 0 #0e7a59;
}
.button.type1.btnMatching a {
  background-color: #f16411;
  box-shadow: 0 10px 0 #b94c0c;
}
.button.type1.btnMatching a:hover {
  box-shadow: 0 6px 0 #b94c0c;
}
.button.type1 a i {
  margin-right: 25px;
  vertical-align: -8px;
  font-size: 5rem;
}

/* bread crumbs
-----------------------------------*/
.breadcrumb {
  line-height: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
}
.breadcrumb li * {
  font-size: 1.3rem; 
}
.breadcrumb li:not(:last-child):after {
  display: inline-block;
  content: "＞";
  margin: 0 10px;
}

/* common
-----------------------------------*/
.alignC {
  text-align: center;
}
.alignL {
  text-align: left;
}
.alignR {
  text-align: right;
}

.mb20 {
  margin-bottom: 20px!important;
}
.mb40 {
  margin-bottom: 40px!important;
}
.mb60 {
  margin-bottom: 60px!important;
}
.mb80 {
  margin-bottom: 80px!important;
}
.mb100 {
  margin-bottom: 100px!important;
}
.mb120 {
  margin-bottom: 120px!important;
}
.mb140 {
  margin-bottom: 140px!important;
}
.mb160 {
  margin-bottom: 160px!important;
}
.mb180 {
  margin-bottom: 180px!important;
}
.mb200 {
  margin-bottom: 200px!important;
}

.cols2,
.cols3,
.cols4 {
  display: flex;
  flex-wrap: wrap;
}
.cols2 > *,
.cols3 > *,
.cols4 > * {
  margin-right: 40px;
  margin-bottom: 40px;
}
.cols2 > *:nth-child(2n),
.cols3 > *:nth-child(3n),
.cols4 > *:nth-child(4n) {
  margin-right: 0;
}
.cols2 > * {
  width: calc((100% - (40px * 1)) / 2);
}
.cols3 > * {
  width: calc((100% - (40px * 2)) / 3);
}
.cols4 > * {
  width: calc((100% - (40px * 3)) / 4);
}

.layoutCols2 {
  position: relative;
  display: flex;
  flex-flow: row-reverse;
}
.layoutCols2 .colsMain {
  width: calc(100% - 200px - 40px);
}
.layoutCols2 .colsSide {
  width: 200px;
  margin-right: 40px;
}
.layoutCols2 .fixedSide {

}

.content .block:not(:last-child) {
  margin-bottom: 40px;
}
.content .image {
  margin-bottom: 20px;
}
.content .text:not(:last-child) {
  margin-bottom: 50px;
}
.content .text p:not(:last-child) {
  margin-bottom: 20px;
}

.content.bg:not(.bgW) .head.type1 *,
.content.bg.bgTrn .head.type1 * {
  color: #FFF;
}

.head.type1 {
  line-height: 1.4;
  margin-bottom: 100px;
  font-size: 4.5rem;
  color: #4d3434;
}
.head.type1 .large {
  font-size: 5rem;
}
.head.type1 .small {
  margin: 0 5px;
  font-size: 3.4rem;
  color: #4d3434!important;
}
.head.type2 {
  line-height: 1.4;
  margin-bottom: 100px;
  font-size: 4.5rem;
  color: #4d3434;
}
.head.type2 .small {
  margin: 0 5px;
  font-size: 3.5rem;
}
.head.type3 {
  line-height: 1.4;
  margin-bottom: 100px;
  text-align: center;
  font-size: 4rem;
  color: #4d3434;
}
.head.type4 {
  line-height: 1.4;
  margin-bottom: 80px;
  text-align: center;
  font-size: 3.4rem;
  color: #4d3434;
}

.head.type6 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 3.2rem;
}
.head.type7 {
  margin-bottom: 30px;
  font-size: 2.4rem;
}
.head.type8 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}
.cOrange {
  background: linear-gradient(90deg, #f16411 0%, #FFA012 94%);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
}

.outline {
  -webkit-text-stroke: clamp(1px, 0.25vw, 1.5px) #333333;
  text-stroke: clamp(1px, 0.25vw, 1.5px) #333333;
  color: transparent;
}
.fa-check {
  position: relative;
  vertical-align: 4px;
  margin-right: 8px;
  color: #F55411;
}
.fa-check:after {
  position: absolute;
  top: 6px;
  left: 0px;
  content: "";
  width: 18px;
  height: 18px;
  border: solid 3px #F55411;
  border-radius: 4px;
}

.mw500 {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.panel.type1 {
  margin-bottom: 40px;
  padding: 40px 0;
  border-top: solid 1px #4d3434;
  border-bottom: solid 1px #4d3434;
}
.panel.type1 > *:last-child {
  margin-bottom: 0!important;
}
.borderB {
  position: relative;
}
.borderB:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 15px;
  background-color: #ffc934;
}
.borderB.blue:after {
  background-color: #3fbdf1;
}

footer {
  padding: 40px 20px;
  background-color: #1f2937;
  text-align: center;
}
footer * {
  color: #FFF;
}
footer #footerInner {
  max-width: 900px;
  margin: 0 auto;
}
footer .head,
footer .text {
  margin-bottom: 20px;
}
footer .cols3 li {
  margin-bottom: 0;
}

.txtBgColor.blue {
  margin-right: 5px;
  padding: 7px 10px;
  background-color: #3fbdf1;
  color: #FFF;
}
.cRed {
  color: #f26511!important;
}

.list.type1 li {
  background-color: #FFF;
  padding: 20px 14px;
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
}
.list.type1 li:not(:last-child) {
  margin-bottom: 20px;
}
/* .list.type2 li {
  margin-bottom: 30px;
  padding: 10px 20px;
  border-left: solid 30px #f16411;
  border-radius: 4px;
} */
.list.type2 li {
  position: relative;
  margin-bottom: 30px;
  padding: 40px 40px;
  border: solid 3px #f16411;
  box-sizing: border-box;
}
.list.type2 li:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 55px solid #f16411;
  border-top: 55px solid transparent;
}
.list.type2 li .head {
  margin-bottom: 10px;
  line-height: 140%;
  background-position: 0px 5px;
  background-size: 8%;
  background-repeat: no-repeat;
  text-indent: 30px;
  font-size: 3rem;
}
.list.type2 li .text {
  line-height: 140%;
}
.list.type3 li {
  margin-bottom: 30px;
  border: solid 4px #eaf3f7;
}
.list.type3 li .head {
  padding: 20px;
  background-color: #eaf3f7;
  font-size: 2.6rem;
}
.list.type3 li .head span {
  font-size: 1.9rem;
}
.list.type3 li .text {
  padding: 20px;
  font-size: 1.9rem;
}
.list.type4 li {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  padding: 30px 30px 30px 100px ;
  box-sizing: border-box;
  background-color: #FFF;
}
.list.type4 li:not(:last-child):after {
  position: absolute;
  bottom: -55px;
  left: calc(50% - (70px / 2));
  display: block;
  content: "";
  width: 70px;
  height: 30px;
  background: #2c439d;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.list.type4 li:last-child {
  margin-bottom: 0;
}
.list.type4 li .num {
  position: absolute;
  top: -3px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 80px;
  height: 80px;
  line-height:  1.2;
  background-color: #2c439d;
  text-align: center;
  font-size: 2.4rem;
  color: #FFF;
}
.list.type4 li .num span:first-child {
  display: block;
  width: 100%;
  font-size: 1.7rem;
}
.list.type4 li .head {
  position: relative;
  margin-bottom: 30px;
  font-size: 2.8rem;
}
.list.type4 li .text {

}
.list.typeQA li {
  margin-bottom: 40px;
  box-sizing: border-box;
  background-color: #FFF;
}
.list.typeQA li .head {
  position: relative;
  padding-right: 60px;
}
.list.typeQA li .head span {
  position: absolute;
  top: calc(-1px);
  right: 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #f16411;
  cursor: pointer;
}
.list.typeQA li .head span:before,
.list.typeQA li .head span:after {
  position: absolute;
  display: block;
  content: "";
  background-color: #FFF;
}
.list.typeQA li .head span:before {
  top: calc(50% - 1px);
  right: 10px;
  width: 20px;
  height: 2px;
}
.list.typeQA li .head span:after {
  top: 10px;
  right: calc(50% - 1px);
  width: 2px;
  height: 20px;
  transition: all 0.2s;
}
.list.typeQA li .head span.open:after {
  transform: rotate(90deg);
}
.list.typeQA li .text {
  display: none;
  margin-top: 40px;
}
.arrowList.type1 li a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.arrowList.type1 li a:before,
.arrowList.type1 li a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowList.type1 li a:before {
  top: calc(50% - 8.5px);
  right: 23px;
  width: 18px;
  height: 18px;
  border: solid 1px #000;
  background-color: #FFF;
  border-radius: 50%;
}
.arrowList.type1 li a:after {
  top: calc(50% - 2px);
  right: 30px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrowList.type2 li a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.arrowList.type2 li a:before,
.arrowList.type2 li a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowList.type2 li a:before {
  top: calc(50% - 3px);
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrowList.type2 li a:after {
  top: calc(50% - 0.5px);
  right: 0;
  width: 21px;
  height: 1px;
  background-color: #5C5C5C;
}

.arrowList.type3 li a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.arrowList.type3 li a:before,
.arrowList.type3 li a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowList.type3 li a:before {
  top: calc(50%);
  right: 15px;
  width: 35px;
  height: 1px;
  background-color: #02227E;
}
.arrowList.type3 li a:after {
  top: calc(50% - 2.5px);
  right: 14px;
  width: 10px;
  height: 1px;
  background-color: #02227E;
  transform: rotate(45deg);
}

.arrowDown.type1 {
  margin-bottom: 40px;
  text-align: center;
}
.arrowDown.type1 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.arrowDown.type1 a:before,
.arrowDown.type1 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowDown.type1 a:before {
  left: calc(50% - (18px / 2));
  bottom: -10px;
  width: 18px;
  height: 18px;
  border: solid 1px #000;
  border-radius: 50%;
}
.arrowDown.type1 a:after {
  left: calc(50% - (4.5px / 2));
  bottom: -2px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
}

.arrowDown.type2 {
  margin-bottom: 40px;
  text-align: center;
}
.arrowDown.type2 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.arrowDown.type2 a:before,
.arrowDown.type2 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowDown.type2 a:before {
  left: calc(50% - (1.4px / 2));
  bottom: -33px;
  width: 1.4px;
  height: 42px;
  background-color: #000;
}
.arrowDown.type2 a:after {
  left: calc(50% - (11.4px / 2));
  bottom: -33px;
  width: 10px;
  height: 10px;
  border-top: 1.4px solid #000;
  border-right: 1.4px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
}

.arrowDown.type3 {
  margin-bottom: 40px;
  text-align: center;
}
.arrowDown.type3 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.arrowDown.type3 a:before,
.arrowDown.type3 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowDown.type3 a:before {
  left: calc(50% - 0.5px);
  bottom: -15px;
  width: 1px;
  height: 25px;
  background-color: #02227E;
}
.arrowDown.type3 a:after {
  left: calc(50% - 0.5px);
  bottom: -11px;
  width: 10px;
  height: 1px;
  background-color: #02227E;
  transform: rotate(135deg);
}

/* table */
table {
  width: 100%;
}
table th,
table td {
  padding: 10px 20px;
  text-align: left;
  font-weight: normal;
}
table th {

}
table td {
  
}

table.type1 {

}
table.type1 th,
table.type1 td {
 border-bottom: solid 1px #000;
}
table.type1 th {

}
table.type1 td {
  
}

table.type2 {

}
table.type2 th,
table.type2 td {
 border: solid 1px #000;
}
table.type2 th {

}
table.type2 td {
  
}

table.typeList {

}
table.typeList th,
table.typeList td {
 display: list-item;
 list-style: none;
}
table.typeList th {
  padding-bottom: 0;
  border-bottom: none;
}
table.typeList td {
  
}

/* tabs */
.tabs {
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0 auto;
}
.tabs li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% + 4px) / 3);
  height: 58px;
  line-height: calc(34 / 20);
  border-radius: 15px 15px 0 0;
  box-sizing: border-box;
  border: solid 2px #8FCC9B;
  cursor: pointer;
  text-align: center;
  font-size: 2rem;
}
.tabs li:not(:first-child) {
  margin-right: -2px;
}
.tabs li.current {
  height: 72px;
  background-color: #8FCC9B;
  font-weight: bold;
  font-size: 2.4rem;
  color: #FFF;
}
.tabContents {
  display: none;
}
#tab1.tabContents {
  display: block;
}
.tabContent {
  padding: 70px 0;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding: 40px 20px!important;
  box-sizing: border-box;
  background: rgba(0,0,0,0.8);
  transition: all 0.2s;
  opacity: 0;
  overflow-y: auto;
}
.modal.active {
  display: block;
  opacity: 1;
}
.modal .contentInner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
}
.content.modal .text {
  margin-bottom: 40px;
}
body.modalOpen {
  overflow: hidden;
}
.modalClose {
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 3.6rem;
  color: #333;
}
.modalLink {
  cursor: pointer;
}


/* TOP */
#keyVisual {
  position: relative;
  margin-top: -183px;
  padding-top: 330px!important;
  padding-bottom: 260px!important;
  background-image: linear-gradient(#e1f5ff 25%, #FFF);
}
/* #keyVisual:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "CONSTRUCTION FAST MATCH";
  font-size: 8rem;
} */
#keyVisual .contentInner {
  position: relative;
  max-width: 980px;
}
#keyVisual .head {
  position: relative;
  z-index: 1;
  line-height: 120%;
  font-size: 6.4rem;
  color: #4d3434;
}
#keyVisual .head .small {
  display: inline-block;
  margin-bottom: 0;
  font-size: 4.4rem;
}
#keyVisual .head .xSmall {
  margin: 0 5px;
  font-size: 3.6rem;
}
#keyVisual .head .small.outline {
  color: #ffc934;
}
#keyVisual .head .large + .small {
  margin-left: 10px;
}
#keyVisual .head > *:nth-child(-n + 4) {
  line-height: 1.6;
}
#keyVisual .head .txtBgColor {
  vertical-align: 5px;
  font-size: 5.4rem;
}
#keyVisual .image {
  position: absolute;
  top: -170px;
  right: 0;
}
#keyVisual .image img {
  width: 360px;
}
#content1 {
  background-color: #f16411;
  background: linear-gradient(0deg, #f16411 0%, #FFA012 94%);
}
#content1 .contentInner .block {
  padding: 60px;
  background-color: #FFF;
  border-radius: 50px;
  box-sizing: border-box;
}
#content1 .contentInner .block > *:last-child {
  margin-bottom: 0!important;
}
#content1 .head.type1 {
  margin-bottom: 40px;
  font-size: 4rem;
}
#content1 .head.type1 .large {
  margin: 0 10px;
  border-bottom: solid 4px orange;
  font-weight: 600;
  font-size: 6.5rem;
}
#content2 {
  background-image: linear-gradient(#ffffff 25%, #257195);
}
#content2 .head.type1 {
  color: #257195;
}
#content3 .head.type1 .large {
  margin: 0 10px;
  font-size: 5.4rem;
  color: #3fbdf1;
}
#content3 .list.type2 li:nth-child(1) .head  {
  background-image: url("../images/common/ic_area.png");
  background-image: image-set(url("../images/common/ic_area.png") 1x, url("../images/common/ic_areax2.png") 2x);
  background-image: -webkit-image-set(url("../images/common/ic_area.png") 1x, url("../images/common/ic_areax2.png") 2x);
}
#content3 .list.type2 li:nth-child(2) .head  {
  background-image: url("../images/common/ic_fast.png");
  background-image: image-set(url("../images/common/ic_fast.png") 1x, url("../images/common/ic_fastx2.png") 2x);
  background-image: -webkit-image-set(url("../images/common/ic_fast.png") 1x, url("../images/common/ic_fastx2.png") 2x);
}
#content3 .list.type2 li:nth-child(3) .head  {
  background-image: url("../images/common/ic_tell.png");
  background-image: image-set(url("../images/common/ic_tell.png") 1x, url("../images/common/ic_tellx2.png") 2x);
  background-image: -webkit-image-set(url("../images/common/ic_tell.png") 1x, url("../images/common/ic_tellx2.png") 2x);
}
#content3 .list.type2 li:nth-child(4) .head  {
  background-image: url("../images/common/ic_money.png");
  background-image: image-set(url("../images/common/ic_money.png") 1x, url("../images/common/ic_moneyx2.png") 2x);
  background-image: -webkit-image-set(url("../images/common/ic_money.png") 1x, url("../images/common/ic_moneyx2.png") 2x);
}
#content3 .list.type2 li:nth-child(5) .head  {
  background-image: url("../images/common/ic_hotel.png");
  background-image: image-set(url("../images/common/ic_hotel.png") 1x, url("../images/common/ic_hotelx2.png") 2x);
  background-image: -webkit-image-set(url("../images/common/ic_hotel.png") 1x, url("../images/common/ic_hotelx2.png") 2x);
}
#content4 {
  background-image: linear-gradient(#ffffff 25%, #f26612);
}
#content4 .head.type1 {
  color: #f26612;
}
#content6 {
  background-color: #f5f6f7;
}
#content6 .head.type1 .small {
  color: #f26612!important;
}
#content6 .list.type4 li:nth-child(2) .head {
  padding-left: 156px;
  text-indent: -156px;
}
#content8 {
  background-color: #1f3989;
}
#content8 .head {
  color: #FFF;
}

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

  /* breadcrumb */
  .breadcrumb {
    width: calc(100% - (20px * 2));
  }

  /* main */
  .content .contentInner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* footer */
  footer.type1 #footerInner {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer.type1 #footerMenu {

  }
  footer.type1 #copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer.type2 #footerInner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* page */
  .pageTitle {
    width: calc(100% - (20px * 2));
  }

  .modal .contentInner {
    padding: 60px 20px;
  }

}

@media screen and (max-width:900px) {
  html { font-size: 50%; }

  #content6 .list.type4 li:nth-child(2) .head {
    padding-left: 127px;
    text-indent: -127px;
  }

  .modal {
    padding: 40px 20px!important;
  }
  .modal .contentInner {

  }
}

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

  #keyVisual .image {
    position: absolute;
    top: -125px;
    right: 20px;
  }
  #keyVisual .image img {
    width: 35vw;
  }

}

@media screen and (max-width:710px) and (min-width:640px) {
  #content6 .list.type4 li:nth-child(2) .head br {
    display: none!important;
  }
}

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

  html {
    font-size: 40.5%;
  }
  header .siteTitle {
    max-width: 170px;
  }
  header #siteTitle {
    width: 100%;
    max-width: 170px;
    margin-bottom: 10px;
  }
  header .search {
    width: 100%;
    text-align: center;
  }
  #contents {
    width: 100%;
    /* margin: 0 0 30px; */
  }
  .article {
    margin: 0 10px 30px;
  }
  #side {

  }

  /* main */
  .content .contentInner {

  }

  /* footer */
  footer #footerInner {
    width: 100%!important;
    box-sizing: border-box;
  }

  /* common */
  .pc {
    display: none!important;
  }

  .alignC_sp {
    text-align: center;
  }
  .alignL_sp {
    text-align: left;
  }
  .alignR_sp {
    text-align: right;
  }

  .mb10_sp {
    margin-bottom: 10px;
  }
  .mb20_sp {
    margin-bottom: 20px;
  }
  .mb40_sp {
    margin-bottom: 40px;
  }
  .mb60_sp {
    margin-bottom: 60px;
  }
  .mb80_sp {
    margin-bottom: 80px;
  }
  .mb100_sp {
    margin-bottom: 100px;
  }
  .mb120_sp {
    margin-bottom: 120px;
  }
  .mb140_sp {
    margin-bottom: 140px;
  }
  .mb160_sp {
    margin-bottom: 160px;
  }
  .mb180_sp {
    margin-bottom: 180px;
  }
  .mb200_sp {
    margin-bottom: 200px;
  }

  .cols1_sp {
    display: block;
  }
  .cols1_sp > * {
    width: 100%!important;
    margin-right: 0!important;
    margin-bottom: 40px;
  }
  .cols2_sp,
  .cols3_sp,
  .cols4_sp {
    display: flex;
    flex-wrap: wrap;
  }
  .cols2_sp > *,
  .cols3_sp > *,
  .cols4_sp > * {
    margin-right: 40px!important;
    margin-bottom: 40px;
  }
  .cols2_sp > *:nth-child(2n),
  .cols3_sp > *:nth-child(3n),
  .cols4_sp > *:nth-child(4n) {
    margin-right: 0!important;
  }
  .cols2_sp > * {
    width: calc((100% - (40px * 1)) / 2)!important;
  }
  .cols3_sp > * {
    width: calc((100% - (40px * 2)) / 3)!important;
  }
  .cols4_sp > * {
    width: calc((100% - (40px * 3)) / 4)!important;
  }

  .layoutCols1_sp {
    display: block;
  }
  .layoutCols1_sp > * {
    width: 100%!important;
    margin-right: 0!important;
  }
  .layoutCols1_sp .colsMain {
    margin-bottom: 40px;
  }

  #contents .content:first-child {
    padding: 80px 0;
  }
  #contents .content.bg + .content {
    padding: 80px 0;
  }

  .content .block:not(:last-child) {
    margin-bottom: 40px;
  }
  .content .image {
    margin-bottom: 20px;
  }
  .content .text:not(:last-child) {
    margin-bottom: 40px;
  }
  .content .text p:not(:last-child) {
    margin-bottom: 20px;
  }

  .content .head.type1 {
    line-height: 1.6;
    margin-bottom: 40px;
  }

  /* table */
  table.typeList_sp {

  }
  table.typeList_sp th,
  table.typeList_sp td {
   display: list-item;
   list-style: none;
  }
  table.typeList_sp th {
    padding-bottom: 0;
    border-bottom: none;
  }
  table.typeList_sp td {
    
  }

  .list.type2 li .head {
    background-position: 0px 2px;
    background-size: 19px;
    text-indent: 22px;
  }
  .list.type3 li .head span {
    display: block;
    margin-top: 3px;
  }
  .list.typeQA li .head span {
    top: -8px;
  }

  .fa-check {
    vertical-align: 5px;
    margin-right: 8px;
  }
  .fa-check::after {
    top: 4px;
    left: 0px;
    width: 12px;
    height: 12px;
  }

  .button.type1 a {
    padding: 25px 20px 25px 30px;
  }
  .button.type1 a i {
    margin-right: 0;
  }

  #keyVisual {
    padding-bottom: 80px !important;
  }
  #keyVisual .head {
    line-height: 140%;
  }
  #keyVisual .image img {
    width: 40vw;
  }
  #content1 .contentInner .block {
    padding: 40px;
  }
  #content1 .head.type1 {
    margin-bottom: 20px;
  }

  #content6 .list.type4 li:nth-child(2) .head {
    padding-left: 0;
    text-indent: 0;
  }

  #content9 .head.type3 span {
    display: inline-block;
    margin-bottom: 25px;
  }

}

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

  .cols2 > *,
  .cols3 > *,
  .cols4 > * {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .cols2 > * {
    width: calc((100% - (20px * 1)) / 2);
  }
  .cols3 > * {
    width: calc((100% - (20px * 2)) / 3);
  }
  .cols4 > * {
    width: calc((100% - (20px * 3)) / 4);
  }

}

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

  html {
    font-size: 38.5%;
  }

  .head.type2 {
    line-height: 1.6;
    margin-bottom: 50px;
  }
  .head.type3 {
    margin-bottom: 50px;
  }

  .button.type1 a > * {

  }
  .button.type1 a i {
    vertical-align: 6px;
    margin-left: 20px;
  }
  .button.type1 a span {
    display: inline-block;
    padding-left: 22px;
    text-indent: -10px;
  }

  .list.type3 li .text {
    font-size: 2.1rem;
  }
  .list.type4 li {
    padding: 20px 30px 20px 80px;
  }
  .list.type4 li .num {
    width: 60px;
    height: 60px;
  }
  .list.type4 li .head {
    margin-bottom: 20px;
  }

  .fa-check::after {
    top: 3px;
    left: 0px;
    width: 10px;
    height: 10px;
  }

  #footerInner .cols3 {
    justify-content: center;
  }
  #footerInner .cols3 > * {
    width: auto!important;
  }

  #keyVisual .head {
    text-indent: -13px;
    font-size: 5rem;
  }
  #keyVisual .head > * {
    text-indent: 0;
  }
  #keyVisual .head .txtBgColor {
    padding: 6px 8px;
    vertical-align: 3px;
    font-size: 4.2rem;
  }
  #keyVisual .head .small {
    margin-bottom: 0;
    font-size: 4rem;
  }
  #keyVisual .head .xSmall {
    font-size: 3.2rem;
  }
  #content1 .head.type1 .large {
    font-size: 6rem;
  }
  #content3,
  #content9 {
    padding-bottom: 0!important;
  }
}

@media screen and (min-width:541px) {
  .xsp {
    display: none;
  }
}

@media screen and (min-width:641px) {
  header {
    box-sizing: border-box;
  }
  header #siteTitle {

  }
  header #headerLeft {
    margin-bottom: 20px;
  }
  .slider {

  }
  #main {

  }
  #contents {

  }
  #side {

  }
  footer {

  }

  /* common */
  .sp {
    display: none!important;
  }
}
