@charset "UTF-8";
/*
	BASE
*******************************/

/*body { font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,'Hiragino Kaku Gothic Pro',Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;}*/
/*
* {
	font-family: "Lato","Shin Go Medium","UD Shin Go NT Medium","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,'Hiragino Kaku Gothic Pro',Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	margin: 0;
	padding: 0;
}
font-family: 'Montserrat', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Cinzel', serif;
font-family: 'Manrope', sans-serif;
*/
* {
	font-family: "M PLUS 1p","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,'Hiragino Kaku Gothic Pro',Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	margin: 0;
	padding: 0;
}
html {
	font-size:62.5%;
	line-height:1em;
}
body {
	font-size:1.6rem;
	min-width: 768px;
}
img {
	vertical-align:bottom;
	line-height:0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto; 
}

p,th,td,dt,dd,li,h1,h2,h3,h4,h5,h6 { color:#000000;}

a,
a:link,
a:visited {
	color:#606060;
	text-decoration:none;
	outline:none;
	border:none;
}
a:hover {
	color:#909090;
	text-decoration:none;
	transition:.3s;
}

a img {
	outline:none;
	border:none;
	-webkit-backface-visibility: hidden;
}
area {
	border:none;
	outline:none;
}

.clear { clear:both;}

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

/*//////////////////////////////////////////////////////////////////////////*/


/*
	BASE LAYOUT
******************/

body {
	background-color:#ddf1ee;
}

#main {
	width:100%;
	margin:0;
	padding:0;
}
p {
	font-size:1.6rem;
	line-height: 2em;
	margin: 0;
	padding:0;
}


/*//////////////////////////////////////////////////////////////////////////*/


/*基本：左右配置　上下センター　折り返しなし*/
.fbox {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
	width:100%;
}

/*折り返しなし*/
.fbox.nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/*左寄せ*/
.fbox.bxstart {
  -webkit-box-pack: start;
     -ms-flex-pack: start;
   justify-content: flex-start;
}

/*右寄せ*/
.fbox.bxend {
  -webkit-box-pack: end;
     -ms-flex-pack: end;
   justify-content: flex-end;
}

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

/*上寄せ*/
.fbox.alstart {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    align-content: flex-start;
}

/*下寄せ*/
.fbox.alend {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    align-content: flex-end;
}

/*上下中央*/
.fbox.alcenter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-content: center;
}

/*上下端*/
.fbox.albt {
  -ms-flex-line-pack: justify;
       align-content: space-between;
}

/*上下均等*/
.fbox.linedist {
  -ms-flex-line-pack: distribute;
       align-content: space-around;
}



/*子要素に設定　順番を1番目に*/
.pos0 {
  -webkit-box-ordinal-group: 1;
             -ms-flex-order: -1;
                      order: -1;
}

/*//////////////////////////////////////////////////////////////////////////*/

/*
	Header LAYOUT
******************/

#header {
	width:100%;
	background-color:#FFFFFF;
	z-index:99;
	position:sticky;
	left:0;
	top:0;
	transition:.3s;
}
#header.hide {
	top:-80px;
}
.header {
	text-align:center;
}
.header_box {
	max-width: 1080px;
	width:calc(100% - 40px);
	margin:0 auto;
	box-sizing:border-box;
	padding:5px 0;
}
.header_box .logo {
	width:200px;
}
.header_box .htel {
	width:270px;
	margin-left:auto;
	margin-right:20px;
	box-sizing:border-box;
	padding-top:5px;
	pointer-events:none;
}
.header_box .menu {
	width:44px;
	height:44px;
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center center;
	background-image:url(../img/menu-open.png);
	cursor:pointer;
}
.header_box .menu.open {
	background-image:url(../img/menu-close.png);
}

/*
	Contents LAYOUT
******************/

.wrap {
	max-width:1080px;	
	width:calc(100% - 40px);
	margin:0 auto;
	text-align:center;
    box-sizing:border-box;
	background-color:#FFFFFF;
}
.contents {
	box-sizing:border-box;
	text-align:left;
	position:relative;
}

a {
	transition:.3s;
}
a:hover {
	opacity:.8;
}
sup {
	font-size:.7em;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
.fadeOff {
	opacity: 0;
	transform: translateY(30px);
	transition:.5s;
}
.fadeOn {
	opacity: 1;
	transform: translateY(0);
}
/**fv**/

#fv .fv_inner {
	background:url("../img/fv_bg.png") no-repeat center center;
	background-size:contain;
	height: 580px;
	box-sizing:border-box;
	padding: 10px 30px;
}
#fv .fv_logo {
	width:23%;
	margin:0 auto 15px;
}
#fv .fv_body {
	width: 85%;
	margin:0 auto;
}
#fv .fv_item1 {
	width: 15%;
	position:absolute;
	bottom: 14%;
	right: 18%;
}
#fv .fv_item2 {
	width:12%;
	position:absolute;
	bottom: 13%;
	right: 12%;
}

/**section**/


.text_red {
	color:#e40012;
}
.text_large {
	font-size:1.25em;
	font-weight:700;
	line-height:1.5;
}
.text_center {
	text-align:center;
}
.text_body {
	font-size: 2.7rem;
	font-weight:700;
}
.text_thin {
	font-weight:inherit;
}

.section .wrap {
	padding-bottom:60px;
	background-image:url(../img/sec_arrow.png);
	background-repeat:no-repeat;
	background-position:center bottom;
	background-size:88% auto;
}
.section .contents {
    margin-bottom:45px;
}
.section .contents_text {
	text-align:center;
	font-size:2.7rem;
	line-height:1.7;
	font-weight:500;
}
.section .contents_text-marker {
	font-size:3.2rem;
	line-height:1.8;
	font-weight:700;
	text-align:center;
	box-sizing:border-box;
	width:5em;
	margin:0 auto;
	padding-top:1em;
	background:url(../img/marker.png) no-repeat center bottom;
	background-size:contain;
}
.section .contents_text_capt {
	text-align:center;
	font-size:1.8rem;
	line-height:1.4;
	font-weight:400;
	padding:1em 0;
}
.section .contents_img-answer {
	width:28%;
	position:absolute;
	right:0;
	bottom:0;
}
.section .contents_img-inner {
	width:88%;
	margin:0 auto;
}
.section .contents_img_capt {
	display:block;
	text-align:center;
	font-size:1.8rem;
	line-height:1.4;
	font-weight:400;
	padding:1.5em 0 2em;
}
.section-application .wrap {
	background-image:none;
}
.section-application .contents {
	margin-bottom:150px;
}
.section .contents_application {
	position:absolute;
	width:56%;
	left:22%;
	top: 70%;
}

/**section3**/
.section_03 .contents_img-answer {
	bottom:50px;
}

/**section8**/
.section_08 .wrap {
	padding-bottom:150px;
}
.section_08 .contents_application .contents_text_capt_contact {
	text-align:center;
	font-size:1.8rem;
	line-height:1.3;
	margin-bottom:5px;
}
.section_08 .contents_application .application2 {
	display:block;
	width:110%;
	margin-left:-5%;
}
.section_08 .contents_application .contents_text_capt_contact.contents_text_capt_contact2 {
	padding-top:1.5em;
	width:150%;
	margin-left:-25%;
}

/**section-info**/
.section-info .wrap-border::after {
	content:'';
	display:block;
	width:88%;
	height:1px;
	background: #808080;
	margin:0 auto;
}
.section-info .contents {
	padding: 45px 6% 15px;
}
.section-info .contents_title {
    margin-bottom:15px;
}
.section-info .contents_title-h3 {
	width: 74%;
	margin: 0 auto 30px;
}

/**section9**/
.section_09 .contents {
	padding-bottom:45px;
}
.section_09 .text_center {
	margin-bottom:1em;
	font-size:2rem;
	font-weight:500;
}
.infolist li {
	width:calc(50% - 15px);
	margin-bottom:15px;
}

/**section10**/

.section_10 .text_center {
	line-height:1;
	margin-bottom:1em;
}
.section_10 .kyufu {
	padding-top: 15px;
	margin-bottom:15px;
}
.section_10 .kyufu p {
	color:#e40012;
	font-size:2.4rem;
	font-weight:500;
}
.section_10 .kyufu a {
	width:260px;
}

/**section11**/
.section_11 .contents {
	padding-bottom:15px;
}
.tablist {
	margin-bottom:30px;
}
.tablist li {
	width:calc(25% - 5px);
	z-index:1;
	transition: .3s;
	position: relative;
}
.tablist li:not(.active):hover {
	transform:translateY(3px);
}
.tablist li a:hover {
	opacity: 1;
}
.tablist li.active {
	z-index:3;
}
.tablist::after {
	content:'';
	display:block;
	width:100%;
	height:15px;
	background:#EFEFEF;
	border:3px solid #000000;
	z-index:2;
	margin-top:-3px;
	position: relative;
}
.tablist[data-active="1"]::after {
	background-color:#f6ae54;
}
.tablist[data-active="2"]::after {
	background-color:#afc6e2;
}
.tablist[data-active="3"]::after {
	background-color:#efc5d5;
}
.tablist[data-active="4"]::after {
	background-color:#d2e7a5;
}


.contents_infobox_item {
	box-sizing:border-box;
	border:15px solid;
	border-radius:24px;
	padding:40px 50px;
}
.contents_infobox .contents_title-h4 {
	margin-bottom:30px;
}
.contents_infobox .contents_title-h5 {
	width:260px;
	margin:30px auto;
}
.contents_infobox .contents_body {
	margin-bottom:15px;
	padding-bottom:15px;
	border-bottom:1px solid #808080;
}
.contents_infobox .contents_body.nb {
	border:none;
}
.contents_infobox .contents_body_nb {
	padding-bottom: 0;
	border:none;
}
.contents_infobox_item p {
	font-size:1.4rem;
	line-height:1.4;
	margin-bottom:1em;
}
.contents_infobox_item p:last-child {
	margin-bottom:0;
}

.contents_infobox_item .tbl {
	width:100%;
	border-collapse:collapse;
}
.contents_infobox_item .tbl th,
.contents_infobox_item .tbl td {
	font-size:1.4rem;
	line-height:1.4;
	font-weight:400;
	border:1px solid #666666;
	box-sizing:border-box;
	padding:1em;
	text-align:left;
	vertical-align:middle;
}


.contents_infobox_item.item {
	display: none;
}
.contents_infobox_item.item.active {
	display: block;
}
 /**item1**/
.contents_infobox_item.item1 {
	border-color:#fce7cc;
}
.contents_infobox_item.item1 .tbl5 {
	margin-bottom:5px;
}
.contents_infobox_item.item1 .tbl5 + p {
	font-size:1.3rem;;
}
.contents_infobox_item.item1 .tbl5 th {
	background-color:#fce7cc;
	text-align:center;
	width:5em;
}

 /**item2**/
.contents_infobox_item.item2 {
	border-color:#e7eef6;
}
.contents_infobox_item .tbl1 thead th {
	background:#d7e2f0;
}
.contents_infobox_item .tbl1 th:first-child {
	width:6em;
	text-align:center;
}
.contents_infobox .contents_infobox_item.item2 .contents_title-h5 {
	width:540px;
	margin-bottom:15px;
}
.case dl {
	width:calc(50% - 25px);
	padding-top:15px;
}
.case dl:first-child {
	margin-bottom:15px;
}
.case dl:nth-child(odd) {
	margin-right:50px;
}
.case dt {
	font-size:2.4rem;
	font-weight:700;
	line-height:1;
	margin-bottom:.3em;
}
.case dd {
	font-size:1.5rem;
	line-height:1.6;
	margin-bottom:1em;
}
.case dd.img {
	margin:0;
}

 /**item3**/
.contents_infobox_item.item3 {
	border-color:#faeef2;
}
.contents_infobox_item.item3 .item3_box table {
	width:calc(50% - 30px);
}
.contents_infobox_item.item3 .item3_box > div {
	width:50%;
}
.contents_infobox_item.item3 .tbl6 th {
	background-color:#faeef2;
	text-align:center;
	width:5em;
}

 /**item4**/
.contents_infobox_item.item4 {
	border-color:#d2e7a5;
}

 /**item5**/
.contents_infobox_item.item5 {
	border:none;
	margin-top: 30px;
	padding:0;
}
.contents_infobox_item.item5 .dot {
	position:relative;
	font-size:2.4rem;
	padding-left:1em;
	line-height:1.5;
}
.contents_infobox_item.item5 .dot::before {
	content:'';
	display:block;
	width:.8em;
	height:.8em;
	border-radius:50%;
	background:#e40012;
	position:absolute;
	left:0;
	top:.4em;
}
.contents_infobox_item.item5 .text_large {
	font-size:inherit;
	line-height:inherit;
	font-weight:400;
}
.contents_infobox_item.item5 .img {
	margin-bottom:30px;
}
.contents_infobox_item.item5 .contents_title-h5 {
	width:100%;
}
.about-keiyaku .tbl2 {
	width:58%;
}
.about-keiyaku .tbl2 th,
.about-keiyaku .tbl2 td {
	font-size:1.6rem;
	padding:.5em 1em;
	
}
.about-keiyaku .tbl2 th {
	width:42%;
	background:#d7e2f0;
}
.about-keiyaku .tbl2 td span {
	display:block;
	font-size:1.4rem;
}
.about-keiyaku ul {
	width:calc(42% - 30px);
}
.about-keiyaku ul li {
	font-size:1.3rem;
	font-weight:400;
	line-height:1.3;
	padding-left:1em;
	position:relative;
}
.about-keiyaku ul li::before {
	content:'';
	display:block;
	width:.8em;
	height:.8em;
	background:#000000;
	border-radius:50%;
	position:absolute;
	top:.3em;
	left:0;
}
.about-keiyaku ul li.kome {
	margin-bottom:1em;
}
.about-keiyaku ul li.kome::before {
	content:'*';
	background:none;
	position:absolute;
	top:0;
	left:0;
	font-size:1.4em;
}

/**section12**/
.section_12 .text_body {
	font-size:2.1rem;
	font-weight:400;
	line-height:1.5;
	margin-bottom:1em;
	text-align: center;
}
.section_12 .contents_title-h4 {
	margin-bottom:30px;
}
.section_12 .tbl {
	border-collapse:collapse;
	margin:0 auto;
}
.section_12 .tbl th,
.section_12 .tbl td {
	font-size:2rem;
	font-weight:500;
	margin-bottom:15px;
	border:1px solid #000000;
	line-height:1.3;
	padding:.8em 2em;
	box-sizing:border-box;
	height: 4em;
	vertical-align:middle;
}
.section_12 .tbl_wrap {
	overflow:hidden;
	border-radius:16px;
	width: 84%;
	margin:0 auto;
	border:1px solid #000000;
	margin-bottom:30px;
}
.section_12 .tbl3 {
	width:100%;
}
.section_12 .tbl3 th,
.section_12 .tbl3 td {
	border:none;
}
.section_12 .tbl3 tr:not(:last-child) {
	border-bottom:1px solid #000000;
}
.section_12 .tbl3 th {
	background-color:#ddf1ee;
	text-align:center;
	border-right:1px solid #000000;
	width:8em;
	padding:1em 0;
}
.section_12 .tbl3 .sexset input {
	width:auto;
	display:none;
}
.section_12 .tbl3 .sexset label.fbox {
	width:auto;
}
.section_12 .tbl3 .sexset label:first-child {
	margin-right:4em;
}
.section_12 .tbl3 .sexset .check {
	width:.8em;
	height:.8em;
	box-sizing:border-box;
	border:1px solid #000000;
	border-radius:50%;
	margin-right:.2em;
    position:relative;
}
.section_12 .tbl3 .sexset .check::before {
	content:'';
	display:block;
	width:.3em;
	height:.3em;
	background:#000000;
	border-radius:50%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	opacity:0;
}
.section_12 .tbl3 .sexset input:checked + .check::before {
	opacity:1;
}
.section_12 .tbl3 select {
	font-size:2.0rem;
	font-weight:600;
	margin:0;
	padding:.6em 1em;
}
.section_12 .tbl3 .select {
	border:1px solid #000000;
	box-sizing:border-box;
	line-height:1;
	min-width:7em;
	margin-right:10px;
	background:url(../img/select_arrow.png) no-repeat right 7px center;
	background-size:12px auto;
}
.section_12 .simulator-display-age-num {
	font-size:inherit;
}
.section_12 .note {
	font-size:1.4rem;
	color:#e40012;
}
.section_12 .simulator-input__plan .select {
	max-width:12em;
}
.section_12 .simulator-calc {
	display:block;
	width: 53%;
	margin:0 auto;
	transition:.3s;
	cursor: pointer;
}
.section_12 .simulator-calc:hover {
	width: 53%;
	opacity:.8;
}
.section_12 .tbl4 {
	width:84%;
	margin:0 auto 5px;
}
.section_12 .tbl4 th,
.section_12 .tbl4 td {
	text-align:center;
	padding:.6em 1em;
	height:auto;
	width:50%;
}
.section_12 .tbl4 tbody th,
.section_12 .tbl4 tbody td {
	font-size:2.6rem;
}
.section_12 .tbl4 thead th {
	background:#ddf1ee;
}
.section_12 .tbl4 thead th:last-child {
	background:#55b8ab;
	color:#FFFFFF;
}
.section_12 .tbl4 .is-hidden {
	display:none!important;
}
.section_12 .tbl4 tbody td {
	color:#e40012;
}
.section_12 .tbl .simulator-price-num {
	font-size:3.8rem;
}
.section_12 .tbl .simulator-price-num.zero:nth-child(1) {
    display: none;
}
.section_12 .tbl .simulator-price-num:nth-child(2):after {
    content: ",";
}
.section_12 .note2 {
	width:84%;
	margin:0 auto;
	font-size:1.4rem;
}
.section_12 .contents_application {
	width: 62%;
	margin: 30px auto 15px;
}
.section_12 .contents_application .contents_text_capt_contact {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 5px;
}
.section_12 .contents_img {
	width: 64%;
	margin:0 auto 15px;
}
.section_12 .contents_text_capt_contact.contents_text_capt_contact2 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
.section_12 .application2 {
	display:block;
	width: 66%;
	margin: 0 auto;
}

.contents input[type="text"],
.contents input[type="radio"],
.contents input[type="tel"],
.contents input[type="checkbox"],
.contents input[type="submit"],
.contents textarea,
.contents select,
.contents button,
.contents button:hover {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border:none;
	font-size:16px;
	box-sizing:border-box;
	padding:.5em 1em;
	border-radius:0;
	width:100%;
	box-shadow: none;
	background:none;
	outline:0;
	color: #444444;
}
select::-ms-expand{
    display: none;
}
::placeholder {
  color: #cccccc;
  font-weight:100;
}
::-ms-input-placeholder {
  color: #cccccc;
}
:-ms-input-placeholder {
  color: #cccccc;
}

/**section13**/
.section_13 .contents {
	padding-bottom:15px;
}
.section_13 .contents_img {
	margin-bottom:45px;
}
.section_13 .contents_application {
	width:62%;
	margin: 0 auto;
}
.section_13 .contents_application .contents_text_capt_contact {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 5px;
}
.section_13 .contents_text_capt_contact.contents_text_capt_contact2 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
    padding-top:30px;
}
.section_13 .application2 {
	display:block;
	width: 66%;
	margin: 0 auto;
}

/**section14**/
.faq {
	font-size:2rem;
	line-height:1.5;
	border-top:1px solid #c5c5c5;
}
.faq dl {
	box-sizing:border-box;
	padding:1em .5em;
	padding-right:3em;
	border-bottom:1px solid #c5c5c5;
}
.faq dt {
	padding-left:2em;
	background:url(../img/sec14_q.png) no-repeat left top .2em;
	background-size:1.5em auto;
	margin-bottom:1em;
	cursor:pointer;
	position:relative;
}
.faq dt::after {
	content:'';
	display:block;
	width:40px;
	height:40px;
	background:url(../img/sec14_arrow.png) no-repeat center center;
	background-size:contain;
	position:absolute;
	top:-2px;
	right:-50px;
	transform:rotate(180deg);
	transition:.3s;
}
.faq dt.open::after {
	transform:rotate(0deg);
}
.faq dd {
	padding-left:2em;
	background:url(../img/sec14_a.png) no-repeat left top .2em;
	background-size:1.5em auto;
	display: none;
}
.faq dd a {
	display:block;
	width:290px;
	margin:10px 0;
}
.faq dd .card {
	width:85%;
	margin:10px 0;
}

/**sectoin15**/
.section_15 .contents_support {
	border:5px solid #55b8ab;
	box-sizing:border-box;
	border-radius:20px;
	padding:40px 50px 30px;
	margin-bottom:15px;
}
.contents_support .contents_title {
	margin-bottom:30px;
}
.contents_support p {
	font-size:1.8rem;
	line-height:1.8;
	margin-bottom:2em;
}
.contents_support a {
	display:block;
	width: 80%;
	margin:0 auto;
}


/**sectoin16**/
.section_16 .contents .interview-wrap {
    box-sizing: border-box;
    border: 5px solid #80cec2;
    border-radius: 24px;
    padding: 40px 50px;
}
.section_16 .contents .interview-main {
	margin-bottom:30px;
}
.section_16 .contents .interview-main .profile {
	width:100%;
}
.section_16 .contents .interview-main .detail {
	width:calc(100% - 16%);
}
.section_16 .contents .interview-main .img {
	width:15%;
}
.section_16 .contents .interview-main h3 {
	font-size:3.2rem;
	color:#009d85;
	margin-bottom:.3em;
}
.section_16 .contents .interview-main dt {
	font-size:2.4rem;
	font-weight:500;
	margin-bottom:.5em;
}
.section_16 .contents .interview-main dt span {
	font-size:0.8em;
}
.section_16 .contents .interview-main dd {
	font-size:1.4rem;
	line-height:1.3;
	font-weight:500;
}

.section_16 .contents .interview-text p.body {
	font-size:2.0rem;
	line-height:1.8;
	color:#009d85;
	font-weight:500;
	margin-bottom:1.5em;
	margin-top:-3em;
	width:calc(100% - 30%);
}
.section_16 .contents .interview-text h4 {
	font-size:2.4rem;
	line-height:1.5;
	color:#009d85;
	border-bottom:2px solid #009d85;
	padding-bottom:.2em;
	margin-bottom:.75em;
}
.section_16 .contents .interview-text .text {
	box-sizing:border-box;
	padding-bottom:1em;
}
.section_16 .contents .interview-text .text.show {
	padding-bottom:0;
}
.section_16 .contents .interview-text p {
	font-size:1.8rem;
	line-height:1.8;
	margin-bottom:1em;
	font-weight:500;
}
.section_16 .contents .interview-text p span {
	color:#009d85;
	font-weight:600;
}
.section_16 .contents .interview-text p.att {
	font-size:.8em;
}
.section_16 .contents .interview-btn {
	width:340px;
	margin:0 auto;
	transition:.3s;
}

.section_16 .contents .interview-btn:not(.open) {
	margin-top:-3em;
}
.section_16 .contents .interview-btn span {
	display:block;
	cursor:pointer;
	transition:.3s;
}
.section_16 .contents .interview-btn span:hover {
	opacity:.66;
}
.section_16 .contents .interview-btn .open {
	display:none;
}
.section_16 .contents .interview-btn.open .open {
	display:inline;
}
.section_16 .contents .interview-btn.open .close {
	display:none;
}
.section_16 .contents .interviewbox {
	display: none;
} 

/**section19**/
.section_19 .contents .ex_wrap {
    box-sizing: border-box;
    border: 5px solid #a5d297;
    border-radius: 24px;
    padding: 30px 50px;
}
.section_19 .contents .ex_inner h4 {
	margin-bottom:15px;
}
.section_19 .contents .ex_inner .img {
	margin-bottom:10px;
}
.section_19 .contents .ex_inner:first-child {
	box-sizing:border-box;
	padding-bottom:15px;
	border-bottom:1px solid #a5d297;
	margin-bottom:30px;
}
.section_19 p.txt {
	font-size:1.8rem;
	font-weight: 400;
	background-color: #fff;
	background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),linear-gradient(180deg, #333333 1px, transparent 1px);
	background-size: 8px 100%,100% 2.0em;
	line-height: 2.0em;
	background-position:0 -1px;
	margin-bottom:30px;
}
.section_19 p .font_bold {
	font-weight: 600;
}
.section_19 p .font_green1 {
	color:#00974f;
	font-weight: 600;
    background:linear-gradient(transparent 60%, #bedfc2 60%);
}
.section_19 p .font_green2 {
	color:#5bb431;
	font-weight: 600;
    background:linear-gradient(transparent 60%, #dae9b6 60%);
}
.section_19 p.att {
    font-size: 1.3rem;
    line-height: 1.5;
}

@media screen and (min-width:640px){
	.section_19 .contents .ex_inner .ex {
		display: block!important;
	}
}

.pdflink {
	width:100%;
	padding-top:60px;
}
.pdflink a {
	width:auto;
	font-size:1.4rem;
	font-weight:500;
	margin-bottom:.5em;
}
.pdflink a:first-child {
	margin-right:2em;
}
.pdflink a img {
	width:35px;
	margin-right:5px;
}


/**footer**/
.footer {
	max-width:1080px;
	width:calc(100% - 40px);
	margin:0 auto;
	text-align:center;
    box-sizing:border-box;
	background-color:#FFFFFF;
}
.footer_box {
	box-sizing:border-box;
	padding:45px 6% 30px;
	text-align:left;
	position:relative;
}
.cta_tel_wrap {
	text-align:center;
    max-width:800px;
    margin:0 auto 45px;
}
.cta_tel {
    border: 4px solid #41a300;
    width:100%;
    box-sizing:border-box;
    padding:30px;
	text-align:left;
}
.cta_tel .tel {
	width:55%;
}

.footer_box .cta_tel .tel p {
	font-size:1.8rem;
	line-height:1.4;
	margin-bottom:.5em;
	font-weight: 600;
}
.footer_box .cta_tel .tel a {
	font-size:4.5rem;
	color:#333333;
	font-weight:600;
}
.cta_tel .note {
	width:45%;
	line-height:1.6;
}

.footer_box .contents_img-contact {
	margin-bottom:30px;
}
.footer_box .contents_img-contact-link {
	display: none;
}
.footer_box p {
	font-size:1.3rem;
	line-height:1.3;
	margin-bottom: 3em;
}
.footer_box .footmenu {
	margin-bottom:30px;
}
.footer_box .footmenu a {
	font-size:1.3rem;
	color:#000000;
	margin-right:2em;
}
.footer_box .footmenu a::before {
	content:'';
	display:inline-block;
	border-top: .4em solid transparent;
	border-bottom: .4em solid transparent;
	border-left: .5em solid #00994f;
	margin-right:.2em;
}
.footer_box .contents_img-logo {
	width:250px;
	margin:0 auto 45px;
}
.footer_box .footer_copyright {
	font-size:1.2rem;
	line-height:1;
	text-align:center;
	margin:0;
}
.footer_box p.footer_controlnumber {
	text-align:right;
	margin-bottom:1em;
}

.gotop {
	text-align:right;
	box-sizing:border-box;
	width:88%;
	margin:0 auto;
	padding:15px 0;
}
.gotop a {
	display:inline-block;
	width:65px;
}

.footerlink {
	position:sticky;
	bottom:0;
	left:0;
	width:100%;
	background:rgba(255,255,255,.8);
	text-align:center;
	box-sizing:border-box;
	padding:5px 0 15px;
	transition:.3s;
}
.footerlink.hide {
	bottom:-150px;
}

.footerlink .linkwrap {
	width: 620px;
	margin:0 auto;
}
.footerlink .linkwrap a {
	width:calc(50% - 10px);
}
.footerlink .linkwrap .contents_text_capt_contact {
	width:calc(50% - 10px);
	margin-left:calc(50% + 10px);
	text-align:center;
	line-height:1.3;
	font-size:1.4rem;
	margin-bottom:5px;
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .footerlink { position:fixed;}
  *::-ms-backdrop, #footer { padding-bottom:130px;}
}

#kokuchi {
	display: none;
}

.spmenu {
	z-index:99;
	position:fixed;
	top:60px;
	right:calc(50% - 520px);
	background:#FFFFFF;
	box-sizing:border-box;
	border:3px solid #55b8ab;
	border-radius:8px;
	transform: scale(0);
	opacity: 0;
	transform-origin: top right;
	transition: .3s;
}
.spmenu.open {
	transform:scale(1);
	opacity: 1;
}
.spmenu li:not(:last-child) {
	border-bottom:3px solid #55b8ab;
}
.spmenu li a {
	display:block;
	box-sizing:border-box;
	color:#000000;
	font-size:1.6rem;
	line-height:1;
	padding:1.5em;
}
.spmenu li a::before {
	content:'●';
	color:#55b8ab;
	margin-right:.2em;
}
.spmenu::before {
	content:'';
	display:inline-block;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	border-bottom: 10px solid #55b8ab;
	margin-right:.2em;
	position:absolute;
	right:2px;
	top:-11px;
}

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

/**fv**/

#fv .fv_inner {
	height: 52vw;
	padding:2vw 3vw;
}

.section .contents_text {
	font-size:2.4vw;
}

.section_12 .tbl_wrap {
    width:100%;
}
.section_12 .tbl th, .section_12 .tbl td {
    padding: .8em 1em;
}
.section_12 .tbl3 .select {
    min-width: 6.5em;
}

.footerlink .linkwrap {
    width: 94%;
}
.spmenu {
	right:20px;
}

}

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

/**sectoin16**/
.section_16 .contents .interview-main h3 {
	font-size:3.2rem;
}
.section_16 .contents .interview-text h4 {
	font-size:2.1rem;
}

.cta_tel .tel {
    width:100%;
    text-align:center;
    margin-bottom:5px;
}
.cta_tel .note {
    width:100%;
    text-align:center;
}

}

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

}


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

body {
	min-width:100%;
}
	
/*//////////////////////////////////////////////////////////////////////////*/

/*
	Header LAYOUT
******************/

.header_box {
	width:calc(100% - 30px);
}
.header_box .logo {
	width: 180px;
}
.header_box .htel {
	width:35px;
	margin-right:15px;
	padding-top:3px;
	pointer-events:auto;
}
.header_box .menu {
	width:40px;
	height:40px;
}

/*
	Contents LAYOUT
******************/

.wrap {
	width:calc(100% - 30px);
}

a {
	transition:0s;
}
a:hover {
	opacity:1;
}
/**fv**/

#fv .fv_inner {
	background:url("../img/sp/fv_bg.png") no-repeat center center;
	background-size: cover;
	height: 51vw;
	padding:2vw 3vw;
}
#fv .fv_logo {
	width:25%;
	margin:0 auto 1vw;
}
#fv .fv_body {
	width: 90%;
}
#fv .fv_item1 {
	width: 16%;
	bottom: 12%;
}
#fv .fv_item2 {
	width:13%;
	bottom: 10%;
}

/**section**/
.text_body {
	font-size: 2.7rem;
	font-weight:700;
}
.text_large {
    font-size: 1.3em;
}

.section .wrap {
	padding-bottom: 8vw;
	background-image:url(../img/sp/sec_arrow.png);
	background-size:100% auto;
}
.section .contents {
    margin-bottom: 8vw;
}
.section .contents.mb5 {
	margin-bottom:5vw;
}
.section .contents_text {
	font-size:4.2vw;
}
.section .contents_text-marker {
	font-size:6vw;
	margin-bottom:.3em;
}
.section .contents_text_capt {
	font-size: 3vw;
	padding: 0.5em 0 1.5em;
}
.section .contents_img-answer {
	width:100%;
	position:relative;
}
.section .contents_img-inner {
	width:100%;
}
.section .contents_img-inner_capt {
	font-size:3.4vw;
	line-height:1.3;
	padding-top:.5em;
	margin:0 4vw;
}
.section .contents_img_capt {
	font-size: 3.2vw;
	padding:1em 0 1.5em;
}
.section-application .wrap {
	background-image:none;
}
.section-application .contents {
	margin-bottom:0;
}
.section .contents_application {
	width:54%;
	left:23%;
	top: 55vw;
}

/**section3**/
.section_03 .contents_img-answer {
	bottom:0;
}

/**section8**/
.section_08 .wrap {
	padding-bottom:30vw;
}
.section_08 .contents_application .contents_text_capt_contact {
    font-size: 3.4vw;
    margin-bottom: 2vw;
}
.section_08 .contents_application .application2 {
    display: block;
    width: 150%;
    margin-left: -25%;
}

/**section-info**/
.section-info .wrap-border::after {
	width:92%;
}
.section-info .contents {
	padding:8vw 4% 2vw;
}
.section-info .contents_title {
    margin-bottom: 4vw;
}
.section-info .contents_title-h3 {
	width: 100%;
	margin: 0 auto 5vw;
}

/**section9**/
.section_09 .contents {
	padding-bottom:4vw;
}
.section_09 .text_center {
	font-size:4.6vw;
	line-height:1.6;
	margin-bottom:1.3em;
}
.infolist li {
	width:calc(50% - 1vw);
	margin-bottom:2vw;
}

/**section10**/

.section_10 .text_center {
	font-size:4.5vw;
	margin-bottom:1.2em;
}
.section_10 .text_capt {
	font-size:3.4vw;
	margin-bottom:3vw;
}
.section_10 .kyufu {
	padding-top: 0;
	margin-bottom:2vw;
}
.section_10 .kyufu p {
	 width:100%;
	text-align:center;
	font-size:4.5vw;
	line-height:1.6;
	margin-bottom:5vw;
}
.section_10 .kyufu a {
	width:86%;
	margin:0 auto;
}

/**section11**/
.section_11 .contents {
	padding-bottom:5vw;
}
.tablist {
	padding-bottom:0;
	margin-bottom:5vw;
}
.tablist li {
	width:calc(25% - 2px);
	transition: 0;
}
.tablist li:not(.active):hover {
	transform:translateY(0);
}
.tablist::after {
	border:.5vw solid #000000;
}

.contents_infobox_item {
	border:7px solid;
	border-radius:14px;
	padding:4vw;
}
.contents_infobox .contents_title-h4 {
	margin-bottom:3vw;
}
.contents_infobox .contents_title-h5 {
	width:60%;
	margin:5vw auto;
}
.contents_infobox .contents_body {
	margin-bottom:3vw;
	padding-bottom:3vw;
}
.contents_infobox .contents_body_nb {
	padding-bottom: 0;
}
.contents_infobox_item p {
	font-size:3.0vw;
	line-height:1.4;
}

.contents_infobox_item .tbl {
	width:100%;
	border-collapse:collapse;
}
.contents_infobox_item .tbl th,
.contents_infobox_item .tbl td {
	font-size:3.0vw;
	padding:1em .5em;
}

/**item1**/
.contents_infobox_item.item1 .tbl5 + p {
	font-size:3.0vw;
}
.contents_infobox_item.item1 .tbl5 th {
	width:auto;
}
.contents_infobox_item.item1 .tbl5 td:nth-child(2) {
	width:8.5em;
}

 /**item2**/
.contents_infobox_item .tbl1 th:first-child {
	width:2em;
}
.contents_infobox .contents_infobox_item.item2 .contents_title-h5 {
	width: 100%;
	margin-bottom:3vw;
}
.case dl {
	width:100%;
	padding-top:3vw;
	margin-bottom:5vw;
}
.case dl:last-child {
	margin-bottom:0;
}
.case dl:first-child {
	margin-bottom:3vw;
}
.case dl:nth-child(odd) {
	margin-right:0;
}
.case dt {
	font-size:4vw;
}
.case dd {
	font-size:3vw;
	margin-bottom:1em;
}

/**item3**/
.contents_infobox_item.item3 .item3_box table {
	width:100%;
	margin-bottom:.5em;
}
.contents_infobox_item.item3 .item3_box > div {
	width:100%;
}
.contents_infobox_item.item3 .item3_box p:first-child {
	margin-bottom: 1em;
}
.contents_infobox_item.item3 .tbl6 th {
	width:auto;
}

 /**item5**/
.contents_infobox_item.item5 {
	margin-top: 5vw;
}
.contents_infobox_item.item5 .dot {
	font-size:4.8vw;
}
.contents_infobox_item.item5 .text_large {
	font-weight:500;
}
.contents_infobox_item.item5 .img {
	margin-bottom:8vw;
}
.about-keiyaku .tbl2 {
	width:100%;
	margin-bottom:5vw;
}
.about-keiyaku .tbl2 th,
.about-keiyaku .tbl2 td {
	font-size:3.2vw;
	padding:.5em;
	
}
.about-keiyaku .tbl2 td span {
	font-size:.8em;
}
.about-keiyaku ul {
	width:100%;
}
.about-keiyaku ul li {
	font-size:3vw;
}

/**section12**/
.section_12 .text_body {
	font-size:4.6vw;
	font-weight:500;
	text-align:center;
	margin-bottom:1.2em;
}
.section_12 .contents_title-h4 {
	margin-bottom:5vw;
}
.section_12 .tbl th,
.section_12 .tbl td {
	font-size:4vw;;
	padding:.8em 1em;
}
.section_12 .tbl_wrap {
	border-radius:12px;
	width: 100%;
	margin-bottom:5vw
}
.section_12 .tbl3 th {
	width:4em;
	padding:1em 0;
}
.section_12 .tbl3 .sexset label:first-child {
    margin-right: 3em;
}
.section_12 .tbl3 .sexset .check {
	width:1em;
	height:1em;
}
.section_12 .tbl3 .sexset .check::before {
	width:.35em;
	height:.35em;
}
.section_12 .tbl3 select {
	font-size:16px;
	padding:.6em;
}
.section_12 .tbl3 .select {
	min-width:calc(100%/3 - 5px);
	margin-right:5px;
	background:url(../img/select_arrow.png) no-repeat right 5px center;
	background-size:10px auto;
}
.section_12 .tbl3 .select:last-child {
    margin-right:0;
}
.section_12 .note {
	font-size:3vw;
	line-height:1.5;
}
.section_12 .simulator-input__plan .select {
	max-width:100%;
	margin-bottom:1vw;
}
.section_12 .simulator-calc {
	width:100%;
	transition:0s;
	padding:0;
	margin-bottom:5vw;
}
.section_12 .simulator-calc:hover {
	width:100%;
	opacity:1;
	padding:0;
}
.section_12 .tbl4 {
	width:100%;
	margin-bottom:2vw;
}
.section_12 .tbl4 th,
.section_12 .tbl4 td {
	padding:.4em 1em;
}
.section_12 .tbl4 tbody th,
.section_12 .tbl4 tbody td {
	font-size:5vw;
}
.section_12 .tbl .simulator-price-num {
	font-size:7vw;
}
.section_12 .note2 {
	width:100%;
	font-size:3vw;
	line-height:1.3;
}
.section_12 .contents_application {
	width:100%;
	margin: 4vw auto 3vw;
}
.section_12 .contents_img {
	width:100%;
	margin-bottom:5vw;
}
.section_12 .contents_application .contents_text_capt_contact {
    font-size: 3.4vw;
}

.section_12 .contents_text_capt_contact.contents_text_capt_contact2 {
    font-size: 3.4vw;
    margin-bottom: 2vw;
    padding-top:4vw;
}
.section_12 .application2 {
	width: 100%;
}

/**section13**/
.section_13 .contents {
	padding-bottom:3vw;
}
.section_13 .contents_img {
	margin-bottom:5vw;
}
.section_13 .contents_application {
	width:100%;
	margin: 4vw auto 0;
}
.section_13 .contents_application .contents_text_capt_contact {
    font-size: 3.4vw;
}
.section_13 .contents_text_capt_contact.contents_text_capt_contact2 {
    font-size: 3.4vw;
    margin-bottom: 2vw;
    padding-top:4vw;
}
.section_13 .application2 {
	width: 100%;
	margin: 0 auto;
}

/**section14**/
.faq {
	font-size:3.6vw;
	font-weight:500;
}
.faq dt::after {
	width:20px;
	height:20px;
	right:-11vw;
}
.faq dd a {
	width:200px;
	margin:3vw 0;
}
.faq dd .card {
	width:100%;
	margin:3vw 0;
}

/**sectoin15**/
.section_15 .contents_support {
	border:3px solid #55b8ab;
	box-sizing:border-box;
	border-radius:10px;
	padding:5vw;
	margin-bottom:3vw;
}
.contents_support .contents_title {
	margin-bottom:5vw;
}
.contents_support p {
	font-size:3vw;
	line-height:1.6;
	margin-bottom:5vw;
}
.contents_support a {
	width:100%;
}


/**sectoin16**/
.section_16 .contents .interview-wrap {
    border-radius: 14px;
    padding: 4vw;
}
.section_16 .contents .interview-main {
	margin-bottom:5vw;
}
.section_16 .contents .interview-main h3 {
	font-size:6.5vw;
}
.section_16 .contents .interview-main .profile {
	position:relative;
}
.section_16 .contents .interview-main .detail {
	width:100%;
}
.section_16 .contents .interview-main .img {
	position:absolute;
	width:40%;
	max-width:120px;
	right:0;
	bottom:0;
}
.section_16 .contents .interview-main dt {
	font-size:5vw;
	margin-bottom:0.3em;
}
.section_16 .contents .interview-main dt span {
	font-size:0.7em;
}
.section_16 .contents .interview-main dd {
	font-size:3vw;
}
.section_16 .contents .interview-text h4 {
	font-size:4.5vw;
	box-sizing:border-box;
	padding-right:20px;
	padding-bottom:.5em;
	position:relative;
}
.section_16 .contents .interview-text h4::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/sec18_arrow.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom:.75em;
    right: 0;
    transition: .3s;
}
.section_16 .contents .interview-text h4.open::after {
	transform:rotate(180deg);
}
.section_16 .contents .interview-text h4 br {
	display:none;
}
.section_16 .contents .interview-text .text {
	display:none;
}
.section_16 .contents .interview-text p {
	font-size:3.8vw;
	line-height:1.6;
}
.section_16 .contents .interview-text p.body {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 5vw;
    margin-top: 0;
    width: 100%;
}
.section_16 .contents .interview-btn {
	width:90%;
	margin:0 auto;
}
.section_16 .contents .interview-btn:not(.open) {
    margin-top: 0;
}
.section_16 .contents .interview-btn span:hover {
	opacity:1;
}
	
/**section19**/
.section_19 .contents .ex_wrap {
    border-radius: 14px;
    padding: 4vw
}
.section_19 .contents .ex_inner .ex {
	display:none;
}
.section_19 .contents .ex_inner h4 {
	width:80%;
	margin:0 auto 5vw;
}
.section_19 .contents .ex_inner .img {
	margin-bottom:10px;
}
.section_19 .contents .ex_inner:first-child {
	padding-bottom:5vw;
	margin-bottom:5vw;
}
.section_19 p.txt {
	font-size:3.8vw;
	margin-bottom:5vw;
}
.section_19 p.att {
    font-size: 3.2vw;
}
.section_19 .contents .ex_inner .title-h5 {
	font-size:4vw;
	display:block;
	border:2px solid #000000;
	width:14em;
	text-align:center;
	line-height:2;
	border-radius:2em;
	margin:0 auto 3vw;
	position:relative;
	cursor:pointer;
}
.section_19 .contents .ex_inner .title-h5::before {
	content:'';
	display:block;
	width:1.4em;
	height:1.4em;
	background:url(../img/sec19_arrow.png) no-repeat center center;
	background-size:contain;
	position:absolute;
	right:.5em;
	top:calc(50% - .7em);
	transition:.3s;
	transform:rotate(0deg);
}
.section_19 .contents .ex_inner .title-h5.open::before {
	transform:rotate(180deg);
}

.pdflink {
	width:100%;
	padding-top:30px;
}
.pdflink a {
	font-size:1.4rem;
	font-weight:500;
	width:90%;
	margin:0 5% .5em;
}
.pdflink a:first-child {
	margin-right:2em;
}
.pdflink a img {
	width:20px;
	margin-right:0;
}
.pdflink a span {
	width:calc(100% - 25px);
}


/**footer**/
.footer {
	width:calc(100% - 30px);
}
.footer_box {
	padding:8vw 4% 4vw;
}

.cta_tel {
    border: 2px solid #41a300;
    padding:15px;
}

.footer_box .cta_tel .tel p {
	font-size:4vw;
}
.footer_box .cta_tel .tel a {
	font-size:9vw;
}
.cta_tel .note {
	font-size:4vw;
}


.footer_box .contents_img-contact {
	margin-bottom:5vw;
	position: relative;
}
.footer_box .contents_img-contact-link {
	display: block;
	position:absolute;
	width:100%;
	height:12vw;
	top:10vw;
	left:0;
	z-index:1;
}
.footer_box .contents_img-contact
.footer_box p {
	font-size:3vw;
	margin-bottom:2em;
}
.footer_box .footmenu {
	margin-bottom:8vw;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
}
.footer_box .footmenu a {
	font-size:3.6vw;
	color:#000000;
	margin-right:2em;
	margin-bottom:.5em;
}
.footer_box .contents_img-logo {
	width:80%;
	max-width:250px;
	margin:0 auto 10vw;
}
.footer_box .footer_controlnumber {
	font-size:2vw;
}
.footer_box .footer_copyright {
	font-size:2vw;
}

.gotop {
	padding:4vw 0;
	text-align:center;
}

.footerlink {
	padding:10px 0;
}
.footerlink.hide {
	bottom:-160px;
}

.footerlink .linkwrap {
	width: 84%;
}
.footerlink .linkwrap a {
	width:calc(50% - 1vw);
}
.footerlink .linkwrap .contents_text_capt_contact {
	width:calc(50% - 1vw);
	margin-left: calc(50% + 1vw);
	font-size: 3vw;
	margin-bottom: 3px;
}

}

@media screen and (max-width:640px){
	.pcOnly {
		display:none;
	}
}


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