@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;700&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/*!
* ress.css • v4.0.0
* MIT License
* github.com/filipelinhares/ress
*/
html { box-sizing: border-box; -webkit-text-size-adjust: 100%; word-break: normal; -moz-tab-size: 4; tab-size: 4; } *,::before,::after { background-repeat: no-repeat; box-sizing: inherit; } ::before,::after { text-decoration: inherit; vertical-align: inherit; } * { padding: 0; margin: 0; } hr { overflow: visible; height: 0; color: inherit; } details,main { display: block; } summary { display: list-item; } small { font-size: 80%; } [hidden] { display: none; } abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; } a { background-color: transparent; } a:active,a:hover { outline-width: 0; } code,kbd,pre,samp { font-family: monospace, monospace; } pre { font-size: 1em; } b,strong { font-weight: bolder; } sub,sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } table { border-color: inherit; text-indent: 0; } input { border-radius: 0; } [disabled] { cursor: default; } [type='number']::-webkit-inner-spin-button,[type='number']::-webkit-outer-spin-button { height: auto; } [type='search'] { -webkit-appearance: textfield; outline-offset: -2px; } [type='search']::-webkit-search-decoration { -webkit-appearance: none; } textarea { overflow: auto; resize: vertical; } button,input,optgroup,select,textarea { font: inherit; } optgroup { font-weight: bold; } button { overflow: visible; } button,select { text-transform: none; } button,[type='button'],[type='reset'],[type='submit'],[role='button'] { cursor: pointer; color: inherit; } button::-moz-focus-inner,[type='button']::-moz-focus-inner,[type='reset']::-moz-focus-inner,[type='submit']::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring,[type='button']::-moz-focus-inner,[type='reset']::-moz-focus-inner,[type='submit']::-moz-focus-inner { outline: 1px dotted ButtonText; } button,html [type='button'],[type='reset'],[type='submit'] { -webkit-appearance: button; } button,input,select,textarea { background-color: transparent; border-style: none; } a:focus,button:focus,input:focus,select:focus,textarea:focus { outline-width: 0; } select { -moz-appearance: none; -webkit-appearance: none; } select::-ms-expand { display: none; } select::-ms-value { color: currentColor; } legend { border: 0; color: inherit; display: table; max-width: 100%; white-space: normal; } ::-webkit-file-upload-button { -webkit-appearance: button; color: inherit; font: inherit; } img { border-style: none; } progress { vertical-align: baseline; } [aria-busy='true'] { cursor: progress; } [aria-controls] { cursor: pointer; } [aria-disabled='true'] { cursor: default; }

/*====================================

	0. General

====================================*/
html { font-size: 62.5%; }
body { background: #fff; color: #333; font-family: 'Noto Sans JP', sans-serif; font-size: 16px; font-weight: 500; position: relative; }
img { max-width: 100%; vertical-align: bottom; }
a { color: #007559; cursor: pointer; text-decoration: none; transition: all .3s; }
a:hover { color: #e3794f; }
input[type=submit] { cursor: pointer; }
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
}
ul,
ol { list-style: none; }
.sp_only{display: none;}
.t-r{text-align: right;}
.t-l{text-align: left;}
.t-c{text-align: center;}
#page-top { position: fixed; right: 30px; bottom: 30px; z-index: 10; }
#page-top a { display: block; width: 70px; height: 70px; border-radius: 50%; background: #fff url("../img/icon_pagetop.png") no-repeat 50% 50%; text-align: center; text-indent: -9999px; box-shadow: 6px 7px 20px 0 rgba(4, 0, 0, 0.15); }

@media (max-width: 640px) {
	#page-top { position: fixed; right: 3vw; bottom: 3vw; z-index: 10; }
	#page-top a { display: block; width: 12vw; height: 12vw; border-radius: 50%; background: #fff url("../img/icon_pagetop.png") no-repeat 50% 50% / 3vw auto; text-align: center; text-indent: -9999px;box-shadow: 1vw 1vw 3vw 0 rgba(4, 0, 0, 0.15); }
	.pc_only{
		display: none !important;
	}
	.sp_only{
		display: block;
	}
}
:root {
	--clr-wt: #fff;
	--clr-bk: #000;
	--clr-mainC: #007559;
	--clr-subC: #e3794f;
	--shadow: 0 5px 5px rgba(1, 80, 71, 1);
}

/*====================================

	Header

====================================*/

.header_inr{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.sitename_wrap a{
  color: #333;
}
header .sitename{
  font-size: 32px;
  font-weight: bold;
}
header .read{
  font-size: 17px;
}
header .btn_wrap{
  display: flex;
}
header .btn_wrap a{
	background: var(--clr-subC);
	color: #fff;
	border-radius: 100vh;
	position: relative;
	width: 200px;
	text-align: center;
	display: block;
	padding: 15px 10px 15px 20px;
	font-size: 14px;
	font-weight: bold;
	margin: 0 10px;
}
header .btn_wrap a::after{
  /* 擬似要素で三角アイコンをつくる */
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%); /* translateYのみ */
}

@media (max-width: 768px) {
  header{
    border-top: 5px solid var(--clr-mainC);
  }
  .header_inr{
    display: block;
    padding: 10px;
  }
  header .sitename{
    font-size: 24px;
    text-align: center;
  }
  header .read{
    font-size: 12px;
    text-align: center;
  }
  
  header .btn_wrap{
    margin-top: 10px;
    justify-content: center;
  }
  header .btn_wrap a{
    font-size: 12px;
    padding: 10px 5px 10px 10px;
    margin: 0 5px;
  }
}
/*====================================

	Nav

====================================*/
.global_nav{
  border: 1px solid var(--clr-mainC);
  border-left: none;
  border-right: none;
  background: #e9f2ef;
  padding: 7px 0;
  box-shadow: 0px 7px 7px -5px rgba(0,0,0,0.4);
}
.global_nav ul{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
}
.global_nav ul li{
  width: 25%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
.global_nav ul li a{
  display: block;
  padding: 15px;
  color: #000;
}
.global_nav ul li a:hover{
  color: #e3794f;
}
.global_nav ul .current span{
  display: block;
  padding: 15px;
  background: var(--clr-mainC);
  color: #fff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .global_nav ul{
    flex-wrap: wrap;
  }
  .global_nav{
    padding: 0;
  }
  .global_nav ul li{
    width: 50%;
    font-size: 14px;
    padding: 5px;
  }
  .global_nav ul li a,.global_nav ul .current span{
    padding: 5px;
  }
}
/*====================================

	Footer

====================================*/
footer{
  border-top: 1px solid #eaeaea;
  margin-bottom: 50px;
}
.footer_inr{
  max-width: 1040px;
  padding: 50px 20px 0;
  margin: 0 auto;
}
.footer_company{
  display: flex;
}
.footer_company-item{
  width: 50%;
  padding: 0 40px 30px;
}
.footer_company-sub{
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: bold;
}
.footer_company-img{
  height: 60px;
  display:flex;
  align-items: center;
  margin-bottom: 30px;
}
.footer_company-address{
  font-size: 12px;
  font-weight: bold;
}
.footer_navi{
  background: #f2f2f2;
  padding: 20px;
  display:flex;
  justify-content: center;
}
.footer_navi li{
}
.footer_navi li a{
  border-left: 1px solid #333;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1;
}
.footer_navi li:nth-of-type(1) a{
  border-left: none;
}
footer .copyright{
  text-align: center;
  margin-top: 10px;
}
.bobun{
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer_inr {
    padding: 20px 10px 0;
    margin: 0 auto;
  }
  .footer_company{
    display: block;
  }
  .footer_company-item{
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
  .footer_company-item:nth-of-type(1){
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
  }
  .footer_company-img{
    height: auto;
  margin-bottom: 15px;
  }
  .footer_company-sub{
    margin-bottom: 10px;
  }
  .footer_navi {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .footer_navi li a{
    font-size: 12px;
  }
  footer .copyright{
    font-size: 12px;
  }
  .bobun{
    font-size: 12px;
  }
}
/** ===========================================================
 * $
 * 共通定義
 * ========================================================= */
.t-c{text-align:center;}
.t-r{text-align:right;}
.t-l{text-align:left;}
.fw-bold{font-weight:bold;}
.indent-1{
  text-indent: -1em;
  padding-left: 1em;
}
.indent-3{
  text-indent: -3em;
  padding-left: 3em;
}
.indent-3_5{
  text-indent: -3.5em;
  padding-left: 3.5em;
}
.mgt0 {margin-top:   0 !important;}
.mgt10{margin-top: 10px !important;}
.mgt20{margin-top: 20px !important;}
.mgt30{margin-top: 30px !important;}
.mgt40{margin-top: 40px !important;}
.mgt50{margin-top: 50px !important;}
.mgt60{margin-top: 60px !important;}
.mgt70{margin-top: 70px !important;}
.mgt80{margin-top: 80px !important;}
.mgt90{margin-top: 90px !important;}
.mgl0 {margin-left:   0 !important;}
.mgl10{margin-left: 10px !important;}
.mgl20{margin-left: 20px !important;}
.mgl30{margin-left: 30px !important;}
.mgl40{margin-left: 40px !important;}
.mgl50{margin-left: 50px !important;}
.mgr0 {margin-right:   0 !important;}
.mgr10{margin-right: 10px !important;}
.mgr20{margin-right: 20px !important;}
.mgr30{margin-right: 30px !important;}
.mgr40{margin-right: 40px !important;}
.mgr50{margin-right: 50px !important;}
.mgb0 {margin-bottom:   0 !important;}
.mgb10{margin-bottom: 10px !important;}
.mgb20{margin-bottom: 20px !important;}
.mgb30{margin-bottom: 30px !important;}
.mgb40{margin-bottom: 40px !important;}
.mgb50{margin-bottom: 50px !important;}
.per20{width: 20%;}
.per30{width: 30%;}
.per40{width: 40%;}
.per50{width: 50%;}
.per60{width: 60%;}
.per70{width: 70%;}
.per80{width: 80%;}
.per90{width: 90%;}
.per100{width: 100%;}

@media screen and (max-width: 767px) {
  .per20{width: 50%;}
  .per30{width: 60%;}
  .per40{width: 70%;}
  .per50{width: 80%;}
  .per60{width: 90%;}
  .per70{width: 90%;}
  .per80{width: 90%;}
  .per90{width: 90%;}
  .per100{width: 100%;}
}
/*====================================

	下層ページH1

====================================*/
.main_heading{
  background: url(../img/heading_bg.png) repeat-x center bottom 20px;
}
.main_heading h1{
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  padding: 40px 0 70px;
  border-bottom: 20px solid var(--clr-mainC);
}
.main_heading-nobd{
  background-position: center bottom;
}
.main_heading-nobd h1{
  padding-bottom: 80px;
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .main_heading {
      background: url(../img/heading_bg.png) repeat-x center bottom 4px;
  }
  .main_heading h1{
    font-size: 26px;
    padding: 26px 0 54px;
    border-bottom: 10px solid var(--clr-mainC);
  }
  .main_heading-nobd{
    background-position: center bottom;
  }
  .main_heading-nobd h1{
  border-bottom: none;
  
  }
}

.primary_btn{
	background: var(--clr-subC);
	color: #fff;
	border-radius: 100vh;
	position: relative;
	text-align: center;
	display: block;
	padding: 15px 40px 15px 50px;
	font-size: 14px;
	font-weight: bold;
	margin: 0 auto;
}
.primary_btn::after{
  /* 擬似要素で三角アイコンをつくる */
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%); /* translateYのみ */
}
.primary_btn:hover{
  color: #fff;
}
.back_btn{
	background: #ccc;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	text-align: center;
	display: block;
	padding: 15px 40px 15px 40px;
	font-size: 14px;
	font-weight: bold;
	margin: 0 auto;
}
.required {
  display: inline-block;
  margin-right: 0.6em;
  padding: 2px 10px;
  background: #e60012;
  font-size: 12px;
  color: #fff;
}
.optional {
  display: inline-block;
  margin-right: 0.6em;
  padding: 2px 10px;
  background: #aaaaaa;
  color: #fff;
  font-size: 12px;
}
.btnBlock {
  margin: 70px 0;
  text-align: center;
}
.btnBlock.flex_block{
  display: flex;
  align-items: center;
  justify-content: center;
}
.btnBlock.flex_block .primary_btn{
  margin-left: 20px;
}
.btnBlock.flex_block .back_btn{
  margin-right: 20px;
}
/*-----------------------------------------------------
Request
------------------------------------------------------*/
.formBlock01 { margin: 40px auto 0;width: 1000px; }
.formBlock01 table + p { font-size: 1.6rem; }
.formBlock01 textarea { margin: 10px 0 !important; width: 100%; height: 150px; border: 1px solid #9fa0a0; }
.formBlock01 textarea.heightMin { height: 3em; }
.formBlock01 .komeList { font-size: 1.6rem; }

.tableForm2 { table-layout: fixed; }
.tableForm2 th { padding: 15px;border-bottom: 1px solid #9fa0a0; font-size: 1.6rem; }
.tableForm2 td { padding: 10px; border-top: 1px solid #9fa0a0; border-bottom: 1px solid #9fa0a0; vertical-align: middle; text-align: center; font-size: 2rem; }
.tableForm2 input[type="text"] { padding: 10px; width: 180px; border: 1px solid #9fa0a0; }
#quote { display: none; }

.tableForm { table-layout: fixed; font-size: 1.6rem; margin-bottom: 15px; }
.tableForm th { padding: 20px 12px 12px; border-top: 1px solid #9fa0a0; border-bottom: 1px solid #9fa0a0; background: #f0f0f0; vertical-align: top; text-align: left; font-weight: normal; }
.tableForm td { padding: 10px 20px; border-top: 1px solid #9fa0a0; border-bottom: 1px solid #9fa0a0; vertical-align: middle; }
.tableForm input[type="text"],
.tableForm input[type="tel"],
.tableForm input[type="email"],
.tableForm input[type="url"] { padding: 10px; width: 340px; border: 1px solid #9fa0a0; }
.tableForm input.short { width: 180px; }
.tableForm label { margin-right: 1em; }
.tableForm textarea { margin: 0 !important; width: 670px; height: 190px; border: 1px solid #9fa0a0; }

.formBlock01 h2{
  font-size: 18px;
  font-weight: bold;
  border-bottom: 3px solid var(--clr-mainC);
  padding-bottom: 5px;
  margin: 50px 0 10px;
}
.formBlock01 .primary_btn{
  font-size: 24px;
}
#estimate-option{
  display: none;
}
.formDoneBlock{
  margin: 60px auto;
}
.formDoneBlock p{
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .formBlock01 {width: 94%; table-layout: auto;}
  .tableForm { width: 100%; table-layout: auto;}
  .tableForm th,
  .tableForm td{
    display: block;
    width: 100%;
    border: 1px solid #9fa0a0;
    padding: 10px;
  }
  .formDoneBlock{
    margin: 20px auto;
  }
  .tableForm input[type="text"],
  .tableForm input[type="tel"],
  .tableForm input[type="email"],
  .tableForm input[type="url"] { padding: 10px; width: 100%; border: 1px solid #9fa0a0; }
  .tableForm textarea {  width: 100%;}
  
  .formBlock01 .primary_btn{
    font-size: 18px;
  }
  .tableForm2 { table-layout: auto; }
  .tableForm2 th { padding: 4px;border-bottom: 1px solid #9fa0a0; font-size: 1.2rem; }
  .tableForm2 td { padding: 2px; border-top: 1px solid #9fa0a0; border-bottom: 1px solid #9fa0a0; vertical-align: middle; text-align: center; font-size: 1.2rem; }
  .tableForm2 input[type="text"] { padding: 5px 2px; width: 100%; border: 1px solid #9fa0a0; }
  .age{
    width: 12%;
  }
    .people{
    width: 16%;
  }
}
/*-----------------------------------------------------

フォーム共通：エラーメッセージ

------------------------------------------------------*/
.error-list {
  font-size: 14px;
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 15px 15px 15px 30px;
  margin: 20px 0;
  border: 1px solid transparent;
  border-radius: 4px;
}
.error-list li {
  margin-bottom: 3px;
  list-style-type: disc;
}
.error-list li:last-child {
  margin-bottom: 0;
}

/*-----------------------------------------------------
PDF DL
------------------------------------------------------*/
.pdfDlBox .title01 br{display: none;}
.pdfDlBox{text-align: center;}
.pdfDlBox .pdfDlBtn{position: relative; display: flex; align-items: center; justify-content: center; width: 265px; margin: 0 auto; padding: 15px 28px 15px 72px; border-radius: 10px; background: linear-gradient( 180deg, rgb(0,141,211) 0%, rgb(63,191,255) 47%, rgb(35,162,254) 50%, rgb(6,133,252) 71%, rgb(2,55,104) 99%); color: #fff; font-size: 18px; font-weight: bold; text-decoration: none;}
.pdfDlBox .pdfDlBtn::before{ content: ""; position: absolute; top: 50%; left: 16px; transform: translateY(-50%); display: block; width: 42px; height: 42px; background: url(/common/img/icon_pdf-w.png); background-size: contain;}

.request_notice{
  font-weight: bold;
  margin: 10px 0 0;
}
input[type=checkbox]{margin-right:5px;}

.requestTelBlock{
  padding: 15px 20px;
  border: 2px solid #e3794f;
  margin-top:20px;
}


/*-----------------------------------------------------
共通
------------------------------------------------------*/
.contents_inner{
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
.contents + .contents{
  margin: 70px 0 0;
}
.contents.bg-grn + .contents{
  margin-top: 56px;
}
.contents:last-child{
  margin-bottom: 130px;
}

/* 見出し */
.bd_heading{
  position: relative;
  margin: 40px 0 18px;
  padding: 0 0 10px 13px;
  border-bottom: 5px solid var(--clr-mainC);
  font-size: 30px;
}
.bd_heading:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  display: inline-block;
  width: 66px;
  height: 5px;
  background: var(--clr-subC);
}
.bd_heading:not(:first-of-type){
  margin-top: 60px;
}

.intro_heading{
  margin: 40px 0 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.head_leadClr{
  position: relative;
  margin: 54px 0 14px;
  padding-left: 27px;
  font-size: 22px;
}
.head_leadClr::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 32px;
  border-radius: 100vh;
  background: #e3794f;
}
.head_leadClr + .txt{
  margin-top: 14px;
}

/* 背景色 */
.bg_heading{
  margin: 0 0 26px;
  padding: 18px 0;
  color: var(--clr-wt);
  font-size: 30px;
}
.bg_heading-grn{
  border-top: 1px solid #004131;
  border-bottom: 1px solid #004131;
  background: var(--clr-mainC);
}
.bg_heading-point{
  display: inline-block;
  margin-left: 54px;
  padding: 8px 40px 10px;
  border-radius: 10px;
  background: #fff;
  color: #ce4915;
  font-size: 24px;
  line-height: 1;
}

.bg-grn{
  padding: 42px 0 48px;
  background: var(--clr-mainC);
}
.bg-gry{
  margin: 25px 0 0;
  padding: 20px;
  background: #eaeaea;
}
.bg-grn .bg-gry{
  color: #333;
  text-align: left;
}
.bg-gry .txt{
  margin: 0;
}
.bg-wht{
  background: var(--clr-wt);
  padding: 24px 20px;
  margin: 25px 0 0;
}
.bg-wht .txt{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ブロック */
.bd-radius{
  border-radius: 10px;
}

.graph_block{
  display: flex;
  justify-content: space-between;
}
.graph_img + .graph_img{
  margin-left: 10px;
}

.flexBlock{
  display: flex;
}
.flexBlock-csb{
  justify-content: space-between;
}
.flexBlock-aic{
  align-items: center;
}

/* テキスト */
.txt{
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.7;
}
.txt-s{
  font-size: 16px;
}
.txt-inner{
  margin: 18px 0 0 16px;
}
.txt-pageBtm{
  margin-top: 82px;
}
.note_txt{
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.7;
}
.wb-break_all{
  word-break: break-all;
}


/* 色 */
.clr-yel{
  color: #fff338;
}
.clr-orn{
  color: #ce4915;
}

/* ボタン */
.btn_block{
  display: flex;
  justify-content: center;
  margin: 106px 0 130px;
}
.btn_block-gry{
  background: #d4dddb;
  padding: 70px 0;
}
.oval_btn{
  position: relative;
  display: block;
  width: 200px;
  padding: 15px 10px 15px 20px;
  border-radius: 100vh;
  background: var(--clr-subC);
  color: var(--clr-wt);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.oval_btn + .oval_btn{
  margin-left: 70px;
}
.oval_btn:hover{
  color: var(--clr-wt);
}
.oval_btn-l{
  width: 420px;
  max-width: 420px;
  font-size: 28px;
}
.oval_btn-arw:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent var(--clr-wt);
  display: inline-block;
  width: 0;
  height: 0;
}
.oval_btn-l.oval_btn-arw:before{
  border-width: 4px 0 4px 7px;
}

/* リンク */
.underline-link{
  text-decoration: underline;
}
.underline-link:hover{
  text-decoration: none;
}

/* 画像 */
.img{
  margin: 65px 0 0;
}
.img-mgt_s{
  margin-top: 38px;
}

@media (max-width: 768px) {
  .contents_inner{
    padding: 0 15px;
  }
  .contents + .contents{
    margin-top: 36px;
  }
  .contents:last-of-type{
    margin-bottom: 50px;
  }

  /* 見出し */
  .bd_heading{
    margin: 33px 0 14px;
    padding-left: 10px;
    border-bottom-width: 3px;
    font-size: 22px;
  }
  .bd_heading:before{
    width: 66px;
    height: 3px;
    bottom: -3px;
  }
  .bd_heading:not(:first-of-type){
    margin-top: 42px;
  }

  .intro_heading{
    margin-top: 32px;
    font-size: 23px;
  }

  .head_leadClr{
    margin-top: 38px;
    padding-left: 22px;
    font-size: 18px;
  }
  .head_leadClr::before{
    width: 8px;
    height: 26px;
  }

  /* 背景色 */
  .bg_heading{
    margin-bottom: 22px;
    padding: 18px 5px;
    font-size: 22px;
  }
  .bg_heading-point{
    margin-left: 14px;
    padding: 6px 12px 8px;
    font-size: 16px;
  }

  .bg-grn{
    padding: 25px 0 15px;
  }
  .bg-gry{
    margin-top: 20px;
    padding: 15px;
  }
  .bg-wht{
    margin-top: 20px;
    padding: 20px 16px;
  }
  .bg-wht .txt{
    font-size: 14px;
  }

  /* ブロック */
  .graph_block{
    display: block;
  }
  .graph_img{
    text-align: center;
  }
  .graph_img + .graph_img{
    margin: 16px 0 0;
  }

  .flexBlock-sp{
    display: block;
  }

  /* テキスト */
  .txt{
    margin-top: 22px;
    font-size: 15px;
  }
  .txt-inner{
    margin: 14px 0 0 12px;
  }
  .txt-pageBtm{
    margin-top: 58px;
  }
  .note_txt{
    font-size: 10px;
  }

  /* ボタン */
  .btn_block{
    display: block;
    margin: 53px 0 50px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .btn_block-gry{
    padding: 50px 15px;
  }
  .oval_btn{
    margin: 0;
  }
  .oval_btn-l{
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
  }
  .oval_btn + .oval_btn{
    margin: 20px auto 0;
  }

  /* 画像 */
  .img{
    margin-top: 46px;
  }
  .img-mgt_s{
    margin-top: 26px;
  }

  /* スクロールエリア */
  .scroll_block{
    overflow-x: scroll;
  }
  .scroll_block .scroll_item{
    min-width: 800px;
  }


}


/*-----------------------------------------------------
TOP
------------------------------------------------------*/
/* MV */
.mv_area{
  margin: 104px 0 0;
  text-align: center;
}
.mv_txt{
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: bold;
}
.mv_img{
  margin: 52px 0 0;
}

/* イントロ */
.inrtoList{
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
}
.inrtoList_item{
  width: calc((100% - 20px) / 3);
  padding: 20px;
  border: 1px solid var(--clr-mainC);
  border-top-width: 10px;
}
.inrtoList_item + .inrtoList_item{
  margin-left: 10px;
}
.inrtoList_img{
  text-align: center;
}
.inrtoList_heading{
  margin: 20px 0 0;
  color: var(--clr-mainC);
  font-size: 24px;
  text-align: center;
}
.inrtoList_txt{
  margin: 10px 0 0;
  font-size: 16px;
}

/* 導入効果 */
.intro_area + .effect_area{
  margin-top: 30px;
}

/* サポート */
.support_heading{
  color: var(--clr-wt);
  font-size: 32px;
}
.support_heading span{
  font-size: 40px;
}
.support_area .flexBlock{
  margin: 28px 0 0;
}
.support_img + .support_img{
  margin-left: 10px;
}

/* 特長 */
.meritList_item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #333;
}
.meritList_detail{
  width: calc(100% - 182px);
}
.meritList_item-no_img .meritList_detail{
  width: 100%;
}
.meritList_heading{
  display: flex;
  align-items: center;
  font-size: 24px;
}
.meritList_num{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  min-height: 55px;
  margin-right: 24px;
  background: var(--clr-subC);
  color: var(--clr-wt);
  font-size: 32px;
}
.meritList_img{
  width: 182px;
}
.meritList_detail .txt,
.meritList_detail .note_txt{
  margin: 0 0 0 79px;
}
.meritList_detail .note_txt{
  margin-top: 10px;
}

.noteList{
  margin: 36px 0 0;
}
.noteList-inner{
  text-indent: 0;
}


@media (max-width: 768px) {

  /* MV */
  .mv_area{
    margin: 30px 15px 0;
  }
  .mv_txt{
    font-size: 2.9vw;
  }
  .mv_img{
    margin-top: 26px;
  }

  /* イントロ */
  .inrtoList{
    display: block;
  }
  .inrtoList_item{
    width: 100%;
    border-top-width: 6px;
  }
  .inrtoList_item + .inrtoList_item{
    margin: 10px 0 0;
  }
  .inrtoList_img img{
    width: 60px;
  }
  .inrtoList_heading{
    margin-top: 16px;
    font-size: 20px;
  }
  .inrtoList_txt{
    font-size: 14px;
  }

  /* サポート */
  .support_heading{
    font-size: 22px;
  }
  .support_heading span{
    font-size: 28px;
  }
  .support_area .flexBlock{
    margin-top: 23px;
  }
  .support_img{
    text-align: center;
  }
  .support_img + .support_img{
    margin: 10px 0 0;
  }
  .support_img-arw{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
  }
  .support_img-arw img{
    transform: rotate(90deg)
  }

  /* 特長 */
  .meritList_item{
    display: block;
  }
  .meritList_detail{
    width: 100%;
  }
  .meritList_heading{
    font-size: 19px;
  }
  .meritList_num{
    min-width: 42px;
    min-height: 42px;
    margin-right: 14px;
    font-size: 22px;
  }
  .meritList_img{
    width: 120px;
    margin: 10px auto 0;
  }
  .meritList_detail .txt,
  .meritList_detail .note_txt{
    margin: 10px 0 0;
  }

 .noteList{
    margin-top: 30px;
  }
}


/*-----------------------------------------------------
補償内容とご契約例
------------------------------------------------------*/
.type_block{
  display: flex;
  margin: 30px 0 0;
  border: 1px solid #9f9f9f;
}
.type_block + .type_block{
  margin-top: 5px;
}
.type_heading{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.type_block-grn .type_heading{
  background: #229c7f;
}
.type_block-blu .type_heading{
  background: #5b9bd5;
}
.type_block-orn .type_heading{
  background: #e3794f;
}
.type_block-ppl .type_heading{
  background: #ab70ef;
}
.type_detail{
  width: calc(100% - 200px);
  border-left: 1px solid #9f9f9f;
}
.type_ttl{
  padding: 10px;
  border-bottom: 1px solid #9f9f9f;
  background: #e6f4f1;
  font-size: 14px;
  font-weight: bold;
}
.type_ttl p + p{
  margin-top: 5px;
}
.type_txt{
  display: flex;
  flex-wrap: wrap;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
}
.type_txt + .type_txt{
  border-top: 1px dotted #9f9f9f;
}
.type_txt .txt-left{
  width: 180px;
}
.type_txt .txt-right{
  width: calc(100% - 180px);
}

.comparison_area{
  display: flex;
  margin: 24px 0 0;
}
.comparison_item{
  display: flex;
  flex-direction: column;
  width: calc(50% - 7px);
}
.comparison_item + .comparison_item{
  margin-left: 14px;
}
.comparison_heading{
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 25px;
  background: var(--clr-mainC);
  color: #fff;
}
.comparison_type{
  width: 36px;
  font-size: 36px;
  line-height: 1;
}
.comparison_ttl{
  width: calc(100% - 36px);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.comparison_ttl span{
  display: block;
  font-size: 14px;
}
.comparison_body{
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 20px 16px;
  border: 1px solid #9f9f9f;
  border-top: none;
  font-size: 14px;
}
@media (max-width: 768px) {
  .type_block{
    display: block;
  }
  .type_heading{
    width: 100%;
    padding: 10px;
  }
  .type_detail{
    width: 100%;
  }

  .type_txt{
    display: block;
  }
  .type_txt .txt-left,
  .type_txt .txt-right{
    width: 100%;
  }
  .type_txt p + p{
    margin-top: 10px;
  }
  .type_txt .txt-left + .txt-right{
    margin-top: 0;
  }

  .comparison_area{
    display: block;
  }
  .comparison_item{
    width: 100%;
  }
  .comparison_item + .comparison_item{
    margin: 14px 0 0;
  }
  .comparison_heading{
    padding: 8px 15px;
  }
  .comparison_type{
    width: 26px;
    font-size: 26px;
  }
  .comparison_ttl{
    width: calc(100% - 26px);
    font-size: 16px;
  }
  .comparison_ttl span{
    font-size: 12px;
  }
}


/*-----------------------------------------------------
加入者サービス
------------------------------------------------------*/
.iconList{
  display: flex;
  margin: 25px 0 0;
}
.iconList_item{
  display: flex;
  align-items: center;
  width: calc((100% - 10px) / 3);
  padding: 5px 14px;
  border-radius: 5px;
  background: var(--clr-mainC);
}
.iconList_item:nth-child(n + 2){
  margin-left: 5px;
}
.iconList_img{
  width: 72px;
}
.iconList_txt{
  width: calc(100% - 80px);
  margin-left: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.iconList + .txt{
  margin-top: 40px;
}

.case_block{
  display: flex;
}
.caseList{
  width: calc(100% - 406px);
  margin: 20px 0 0 20px;
}
.case_img{
  width: 386px;
}

.caseList_item{
  margin-left: 1.9rem;
  text-indent: -1.9rem;
}
.caseList_item:nth-child(n + 2){
  margin-top: 5px;
}
.caseList_item::before{
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: var(--clr-mainC);
  border-radius: 50%;
}

.counselor{
  display: flex;
  margin: 50px 25px 0;
  border: 2px solid #007559;
  border-radius: 5px;
}
.counselor_heading{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 15px;
  background: #007559;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.counselor_body{
  width: calc(100% - 250px);
  padding: 15px 60px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .iconList{
    display: block;
  }
  .iconList_item{
    width: 100%;
  }
  .iconList_item:nth-child(n + 2){
    margin: 5px 0 0;
  }
  .iconList_img{
    width: 52px;
  }
  .iconList_txt{
    font-size: 16px;
    width: calc(100% - 60px);
  }
  .iconList + .txt{
    margin-top: 28px;
  }

  .case_block{
    flex-direction: column-reverse;
  }
  .caseList{
    width: 100%;
    margin: 20px 0 0;
  }
  .case_img{
    max-width: 100%;
    margin: 0 auto;
  }

  .counselor{
    display: block;
    margin: 18px 0 0;
  }
  .counselor_heading,
  .counselor_body{
    width: 100%;
    padding: 10px;
  }
  .counselor_heading{
    font-size: 18px;
  }
  .counselor_body{
    font-size: 16px;
  }

}


/*-----------------------------------------------------
加入者サービス
------------------------------------------------------*/
.primary_tbl{
  margin: 45px 0 0;
}
.primary_tbl th,
.primary_tbl td{
  border: 1px solid #9f9f9f;
}
.primary_tbl thead th{
  padding: 6px;
  background: #007559;
  color: #fff;
}
.primary_tbl thead th:first-of-type{
  max-width: 200px;
  width: 21%;
}
.primary_tbl tbody th,
.primary_tbl tbody td{
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
}
.primary_tbl tbody th{
  background: #e6f4f1;
}

.flowList{
  margin: 35px 0 0;
}
.flowList_item{
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #e3794f;
  border-radius: 5px;
}
.flowList_item:nth-child(n + 2){
  margin-top: 38px;
}
.flowList_item:nth-child(n + 2)::before{
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 76px;
  height: 40px;
  background: url(/assets/img/flow_arrow.png) no-repeat center / contain;
}
.flowList_heading{
  width: 178px;
  text-align: center;
}
.flowList_ttl{
  margin-top: -8px;
  font-weight: bold;
  font-size: 18px;
}
.flowList_body{
  width: calc(100% - 220px);
  margin-left: 42px;
}
.flowList_txt{
  font-size: 14px;
  line-height: 1.7;
}

.comparison_tbl{
  margin: 22px 0 0;
  border-bottom: 1px solid #9f9f9f;
}
.comparison_tbl th,
.comparison_tbl td{
  padding: 10px;
  border-top: 1px solid #9f9f9f;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.comparison_tbl th{
  width: 210px;
  background: #007559;
  color: #fff;
}
.comparison_tbl .bg-lt_grn{
  width: 200px;
}
.bg-lt_grn{
  background: #e6f4f1;
}
.comparison_tbl + .noteList{
  margin-top: 45px;
}
.comparison_tbl + .noteList .noteList_item{
  font-size: 14px;
}
@media (max-width: 768px) {
  .primary_tbl thead th:first-of-type{
    width: 27%;
  }
  .primary_tbl thead th{
    font-size: 14px;
  }
  .primary_tbl tbody th,
  .primary_tbl tbody td{
    padding: 10px;
    font-size: 12px;
  }

  .flowList{
    margin-top: 30px;
  }
  .flowList_item{
    display: block;
    padding: 10px 15px 15px;
  }
  .flowList_heading{
    width: 100%;
  }
  .flowList_img img{
    width: 120px;
  }
  .flowList_body{
    width: 100%;
    margin: 10px 0 0;
  }

  .comparison_tbl th,
  .comparison_tbl td{
    font-size: 16px;
    display: block;
    width: 100%;
    border-top: none;
    border-right: 1px solid #9f9f9f;
    border-left: 1px solid #9f9f9f;
  }
  .comparison_tbl th{
    /*width: 190px;*/
    width: 100%;
  }
  .comparison_tbl .bg-lt_grn{
    /*width: 180px;*/
    width: 100%;
  }

}

