@charset "utf-8";


*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

img{
	width: 100%;
	vertical-align: bottom;
}

a{
	text-decoration: none;
}

body {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #3e3a39;
  font-size: 30px;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

/* header  */

header{
	border-top: 3px #fa0046 solid;
	background: #fff;
	width: 100%;
	position: fixed;
	z-index: 9999;
}
.h_border{
	border-bottom: 1px solid #323333;
}
.h_flex{
	max-width: 970px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.h_left{
	max-width: 385px;
	margin-right: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.h_logo{
	max-width: 80px;
	margin: 0 10px;
}
.h_right{
	line-height: 1;
  max-width:420px;
  width:100%;
}
.h_right > a {
  display:block;
  text-align:right;
  line-height:0;
  margin:8.5px 0;
}
.h_right > a img {
  max-width:100%;
  width:auto;
}

.g_nav{
	max-width: 970px;
	margin: 5px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
header ul{
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
  height:50px;
}
header ul li{
	flex-grow:1;
	text-align: center;
	position: relative;
}
header ul li:first-child::before{
	position: absolute;
	top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 1px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
	background-color: #323333;
}
header ul li::after{
	position: absolute;
	top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 1px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
	background-color: #323333;
}
header ul li a{
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 12px;
	letter-spacing: 0.01em;
	font-weight: bold;
	color: #000;
	line-height: 1.5;
}


.h_contact{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.h_tel{
	width: 40%;
}
.h_tel p{
	font-size: 12px;
}
.h_tel a{
	display: block;
	font-size: 30px;
	font-family: 'Bebas Neue', cursive;
	color: #000;
}
.contact_btn{
	width: 28%;
	background-color: #3b4a53;
	text-align: center;
}
.pink_bg{
	background-color: #d72343;
}
.contact_btn:hover{
	background-color: #68a1a5;
}
.pink_bg:hover{
	background-color: #f19963;
}
.contact_btn a{
	display: block;
	font-size: 13px;
	color: #fff;
	line-height: 50px;
}


/* // */

.wrapper{
	width: 100%;
	padding: 200px 0 40px;
}



/*
    スライダーの設定
*/
.slick-prev:before {
	content: '◀︎';
}
.slick-next:before {
	content: '▶︎';
}

.slider .slick-prev
{
    /* デフォルトでは-25px(= スライダーの外側) */
    left: 20px;
}
.slider .slick-next
{
    /* デフォルトでは-25px(= スライダーの外側) */
    position: absolute;
    right: 40px;
}
 
.slider .slick-prev,
.slider .slick-next
{
    /* スライド画像の後ろに隠れないようにする */
    z-index: 100;
}
 
.slider .slick-prev::before,
.slider .slick-next::before {
    /* フォントと色の設定はbefore内で行う */
    font-size: 50px; 
    color: #fff;
}
.sliderArea {
  /* max-width: 1300px; */
	width: 100%;
  margin: 0 auto;
  /* padding: 0 25px; */
}
.slick-slide {
  margin: 0;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
/* // */





.mv{
	width: 100%;
}

.lp-inner{
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
}

section{
	margin: 80px 0;
}
.section01{
	border: 3px dotted #3e3a39;
	border-radius: 30px;
	padding: 50px 30px;
	position: relative;
}
.section_title{
	font-size: 35px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.16em;
	color: #3c9095;
	margin-bottom: 50px;
}
.section_title span{
	font-family: 'Bebas Neue', cursive;
	font-size: 74px;
	font-weight: bold;
}
.section_title span.big{
	font-size: 45px;
	font-weight: bold;
}

.section01 .section_title{
	max-width: 650px;
	width: 100%;
	background: #fff;
	z-index: 99;
	position: absolute;
	top: -36px;
	left: 50%;
	padding: 0 5px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}


/* section01  */

.section01 ul{
	max-width: 750px;
	margin: 0 auto;
	margin-bottom: 60px;
}
.section01 ul li{
	margin-bottom: 20px;
}
.section01 ul li:first-of-type{
	max-width: 99%;
}
.section01 ul li:nth-of-type(2){
	max-width: 86%;
}
.section01 ul li:nth-of-type(3){
	max-width: 100%;
}
.section01 ul li:nth-of-type(4){
	max-width: 87%;
}
.section01 ul li:nth-of-type(5){
	max-width: 78%;
}

.ye_lead{
	text-align: center;
}
.ye_lead span{
	letter-spacing: 0.16em;
	color: #75ad81;
	font-size: 31px;
	font-weight: bold;
	background: linear-gradient(transparent 60%, #fff000 60%);
}
span.small{
	font-size: 20px;
}
.section01 .ye_lead{
	max-width: 860px;
	width: 100%;
	background: #fff;
	z-index: 99;
	position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.lp_contact{
	background-color: #68a1a5;
	padding: 30px 10px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.con_title{
	font-size: 33px;
	letter-spacing: 0.19em;
	font-weight: bold;
	margin-bottom: 15px;
}
.con_flex{
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.con_left{
	width: 57%;
	text-align: right;
}
.tel{
	max-width: 480px;
	margin: 0 auto 10px;
}
.con_left p{
	font-size: 17px;
	line-height: 1;
	font-weight: bold;
}
.con_right{
	width: 40%;
	text-align: center;
	font-weight: bold;
	border: 3px solid #fff;
	border-radius: 10px;
	background-color: #3b4a53;
	padding: 20px 5px;
}
.con_right a{
	display: block;
	font-size: 33px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.con_bottom{
	/*max-width: 660px;*/
  text-align:center;
	margin: 0 auto;
	display: flex;
	justify-content:center;
	align-items:center;
	flex-wrap: wrap;
}
.daiwa_logo{
  max-width:300px;
  width:100%;
  line-height:0;
  margin-right:10px;
}
.con_bottom p{
	font-size: 16px;
	font-weight: bold;
  line-height:1.6;
}

/* section02 */

.section02 ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 100px;
}
.section02 ul li{
	width: 18%;
}
.feature_box{
	margin-bottom: 90px;
	padding-top: 50px;
	margin-top: -50px;
}
.feature_title{
	font-weight: bold;
	letter-spacing: 0.16em;
	line-height: 1.3;
	margin-bottom: 20px;
}
.feature_title span{
	font-family: 'Bebas Neue', cursive;
	font-size: 38px;
	font-weight: bold;
}

.feature_flex{
	max-width: 930px;
	margin: 0 0 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.feature_left{
	width: 47%;
}
.feature_box p, .feature_left p{
	text-align: justify;
	font-size: 18px;
	line-height: 1.8em;
}
span.red{
color: #c1272d;
font-weight: bold;
}
.lp_img{
	width: 47%;
}
.lp_img div{
	margin-bottom: 10px;
}
.lp_img div.video_box{
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	margin-bottom: 50px;
}
.lp_img div.video_box iframe{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.lp_img p{
	font-size: 16px;
	text-align: right;
}

.green_dot{
	color: #3c9095;
	margin: 40px 0;
	border-bottom: 3px dotted #3c9095;
	position: relative;
}
.green_dot span{
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.16em;
	background-color: #fff;
	position: absolute;
	top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.feature05_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.feature05_left{
	width: 65%;
}
.feature05_right{
	width: 32%;
}
.feature05_title{
	max-width: 400px;
	text-align: center;
	font-size: 19px;
	border: 3px solid #3b4a53;
	border-radius: 30px;
	padding: 5px;
	margin-bottom: 15px;
}
ul.feature_list{
	display: block;
	margin-bottom: 30px;
}
ul.feature_list li{
	width: 100%;
	font-size: 19px;
}
.feature05_bottom{
	font-size: 19px;
	font-weight: bold;
	position: relative;
}
.feature05_bottom::before{
	position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 87px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url(../img/icon_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* section03 */

.section03{
	max-width: 1000px;
	margin: 80px auto;
	padding: 0 10px;
}
.map{
	margin-bottom: 60px;
}
.section03 ul{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.section03 ul li{
width: 23%;
}
.section03 ul li.w20{
width: 20%;
}
.section03 ul li.w25{
width: 25%;
}
.section03 ul li p{
font-size: 14px;
}

.pc_none01{
	display: none;
}
.pc_none02{
	display: none;
}

/* footer  */

nav.l_nav{
	border-bottom: 3px #fa0046 solid;
    width: 100%;
		padding-bottom: 5px;
		margin-bottom: 10px;
}
footer ul{
    max-width: 1100px;
	/*max-width: 970px;*/
	margin: 0 auto;
	padding: 0 10px;
	display: flex;
	flex-wrap: wrap;
}
footer ul li{
	border-right: 1px solid #000;
	padding: 0 10px;
	margin-bottom: 15px;
}
footer ul li:last-child{
	border-right: none;
}
footer li a{
	display: block;
	font-size: 12px;
	color: #000;
}

footer small{
	display: block;
	max-width: 1000px;
	margin: 10px auto;
	font-size: 12px;
	font-weight: bold;
	text-align: right;
}




#rwdMenuWrap {
	display: none;
}
.feature_sc {
    position: fixed;
    top: 156px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 100;
    width: 100%;
    max-width: 970px;
    background: rgba(255, 255, 255,0.8);
    display: none;
    justify-content: space-between;
}
.feature_sc li{
	width: 19%;
}
.remove{
	display: none!important;
	opacity: 0!important;
}
.br_48{
	display: none;
}
/* // */

/* 追加箇所 */

.ye_lead__sp{
	display: none;
}

.section_title__sp{
	display: none;
}

@media screen and (max-width:920px){

.h_pc{
	display: none;
}
header{
	border-bottom: 1px solid #eee;
}
.g_nav{
	display: none;
}
.h_right{
	display: none;
}
#menuList {
	display: none;
}

#rwdMenuWrap {
	width: 100%;
	
	/*追加 固定時
	position:fixed;
	height:60px;
	z-index:900;*/
	display: block;
}
#rwdMenuWrap #switchBtnArea {
	width: 100%;
	height: 80px;
	background: #fff;
	position: relative;
	display: flex;
	align-items: center;
}
#rwdMenuWrap #switchBtnArea #switchBtn {
	top: 0;
	right: 0;
	width: 10%;
	height: 100%;
	display: block;
	background: #ffffff;
	position: absolute;
	border-radius: 0;
	min-width: 55px;
}
#rwdMenuWrap #switchBtnArea #switchBtn span {
	left: 25%;
	width: 50%;
	height: 4px;
	display: block;
	position: absolute;
	background-color: #ec022f;
	border-radius: 5px;
	transition: all 0.2s linear;
}
#rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(1) {top: 31px;transform: rotate(0);}
#rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(2) {top: 39px;transform: scale(1);}
#rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(3) {bottom: 28px;transform: rotate(0);}

#rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {top: 38px;transform: rotate(-45deg);}
#rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {transform: scale(0);}
#rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {bottom: 38px;transform: rotate(45deg);}

#rwdMenuWrap ul {
	width: 100%;
	display: none;
	background:#EBEBEB;
  height:auto;
}

#rwdMenuWrap ul li {
	width: 48%;
	display: inline-block;
	/*width: 100%;
	display:inline;*/
	/*border-bottom: #aaa 1px solid;*/
}

#rwdMenuWrap ul li a {
	padding: 15px 10px;
	text-align: left;
	display: block;
	background: #ebebeb;
	position: relative;
}

/* 追加 */
#rwdMenuWrap .nav {
margin: 0px auto;
}	
	#rwdMenuWrap .nav > li:first-child {
	border-left: none;
}
	#rwdMenuWrap .nav > li > a {
border-right: none;
}

#rwdMenuWrap ul li a:after {
	content: '';
	margin-top: -4px;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	color: #888;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	display: block;
	position: absolute;
	border-top: 2px solid #b0b0b0;
	border-right: 2px solid #b0b0b0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
header ul li::after {
display: none;
}
header ul li a {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.01em;
	font-weight: bold;
	color: #000;
	line-height: 1.5;
}
.h_tel {
	width: 100%;
	text-align: center;
	margin-top: 10px;
}
.h_tel a {
	display: block;
	font-size: 40px;
	font-family: 'Bebas Neue', cursive;
	color: #000;
}

.wrapper {
	width: 100%;
	padding:84px 0 40px;
}
.feature_sc {
    top: 84px;
}

}



@media screen and (max-width:900px){

	.slider .slick-prev::before, .slider .slick-next::before {
    font-size: 30px;
    color: #fff;
}
.slider .slick-next {
	position: absolute;
	right: 15px;
}
.slider .slick-prev {
	left: 10px;
}


	.pc_none01{
		display: block;
	}
	.section01 ul {
    margin: 0 auto;
    margin-bottom: 160px;
}

	.section01 .ye_lead {
    max-width: 540px;
    width: 100%;
    background: #fff;
    z-index: 99;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.feature_box p, .feature_left p {
	text-align: justify;
	font-size: 16px;
	line-height: 1.8em;
	margin-bottom: 20px;
}

ul.feature_list li {
	width: 100%;
	font-size: 16px;
}
.feature05_bottom {
	font-size: 16px;
}


}


@media screen and (max-width:768px){




	.section_title {
		font-size: 28px;
		margin-bottom: 50px;
	}
	
	.section01 .section_title {
    max-width: 560px;
    width: 100%;
    background: #fff;
    z-index: 99;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}


.con_title {
	font-size: 26px;
	margin-bottom: 30px;
}
.con_left {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
.con_right {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	padding: 10px 5px;
}
.con_right a {
	font-size: 25px;
}
.daiwa_logo {
	max-width: 330px;
	width: 100%;
	margin: 0 auto 15px;
}
.con_bottom p {
	width: 100%;
	font-size: 17px;
	font-weight: bold;
}


.feature_title {
	font-size: 26px;
}
.feature_box p, .feature_left p {
	text-align: justify;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}

ul.feature_list li {
	width: 100%;
	font-size: 15px;
}
.feature05_bottom {
	font-size: 15px;
}
.feature05_title {
	max-width: 300px;
	text-align: center;
	font-size: 17px;
	border: 2px solid #3b4a53;
	border-radius: 30px;
	padding: 3px;
	margin-bottom: 15px;
}
.tel{
	margin: 0 auto 15px;
	max-width: 350px;
}

}







@media screen and (max-width:650px){

	.slider .slick-prev::before, .slider .slick-next::before {
    font-size: 20px;
    color: #fff;
}
.slider .slick-prev {
	left: 2px;
}
.slider .slick-next {
	position: absolute;
	right: 2px;
}

	.pc_none02{
		display: block;
	}
    .sp_none02{
		display: none;
	}

	.section_title {
    font-size: 23px;
    margin-bottom: 50px;
}
	.section01 .section_title {
    max-width: 280px;
    width: 70%;
    line-height: 1.2;
    background: #fff;
    z-index: 99;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.section_title span.big {
	font-size: 38px;
	font-weight: bold;
}
.section01 {
	padding: 70px 20px;
}


.ye_lead span {
	font-size: 25px;
}
.section01 .ye_lead {
	max-width: 480px;
	width: 100%;
	background: #fff;
	z-index: 99;
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.feature_title {
	font-size: 23px;
}
.feature_left {
	width: 100%;
	margin-bottom: 50px;
}
.feature_left div{
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}
.lp_img {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

.feature05_left {
	width: 100%;
	margin-bottom: 30px;
}
.feature05_right {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

.section03 ul li {
	width: 48%;
	margin-bottom: 20px;
}
.section03 ul li.w20 {
	width: 48%;
}
.section03 ul li.w25 {
	width: 48%;
}



.h_text{
max-width: 200px;
}


.section02 ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.section02 ul li {
	width: 30%;
	margin-right: 10px;
	margin-bottom: 20px;
}
.section02 ul.feature_sc{
	justify-content: space-between;
}
.section02 ul.feature_sc li{
	margin: 0;
	width: 19%;
}

.section01 ul {
	margin: 0 auto;
	margin-bottom: 100px;
}

}






@media screen and (max-width:550px){

	body {
    line-height: 1.2;
}

.section01 {
	border-radius: 15px;
    padding: 70px 20px 100px;
}
.section01 .ye_lead {
	max-width: fit-content;
	width: 100%;
	background: #fff;
	z-index: 99;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.ye_lead span {
	font-size: 17px;
}
	



.con_title {
	font-size: 20px;
	margin-bottom: 30px;
}
.tel {
}

footer ul {
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
footer small {
	display: block;
	max-width: 1000px;
	margin: 10px auto;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
}

.section01 ul {
	margin: 0 auto;
	margin-bottom: 50px;
}

}
@media screen and (max-width:480px){
	.br_48{
		display: block;
	}

	.section01 ul li {
    margin-bottom: 0;
}
.section01 {
	border-radius: 15px;
	padding: 40px 20px 150px;
}

}
@media screen and (max-width:470px){
	.section02 ul.feature_sc {
		justify-content: center;
	}
	.section02 ul.feature_sc li {
		margin: 0;
		width: 26%;
		margin-right: 10px;
		margin-bottom: 5px;
	}
	.feature_box{
		padding-top: 0;
		margin-top: 0;
	}

/* 追加箇所 */

	.ye_lead__sp{
		display:block;
	}
	.ye_lead__none{
		display: none;
	}

	.section_title__sp{
		display: block;
	}
}





/* 202503 PlusCss */
body { overflow:hidden; }
.pc-only {  }
.sp-only { display:none!important; }
.sp-btm-link { position:fixed; left:0; right:0; bottom:-1px; width:100%; display:none; z-index:100; }
.sp-btm-link ul { display:flex; }
.sp-btm-link ul li { width:50%; text-align:center; }
.sp-btm-link ul li:first-child { background:#3b4a53; }
.sp-btm-link ul li:last-child { background:#d72343; }
.sp-btm-link ul li a { display:block; color:#fff; padding:1rem 0; font-size:16px; }

.mvArea { position:relative; }
.slider .slideWrap { position:relative; padding-bottom:20px; }
.slider .slideWrap .mvTx {
  position:absolute;
  width:100%;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  z-index:20;
}
.mvBtmArea { position:relative; }
.mvBtmArea ul { display:flex; align-items:center; justify-content:space-between; }
.mvBtmArea ul li { font-size:22px; }
.mvBtmArea ul li span { letter-spacing:-0.03em; font-weight: bold; }
.mvBtmArea ul li:first-child { width:60%; font-weight: bold; padding:100px 0; line-height:1.8; }
.mvBtmArea ul li:last-child { width:35%; position:relative; margin-right:20px; }


/* grapth */
#grapth { position:relative; }
#grapth .grp_backImg { position:relative; }
#grapth .grp_backImg p {  position:absolute; color:#fff; font-size:16px; bottom:20px; right:20px; line-height:1; }
#grapth .grp_backImg img { height:880px; object-fit:cover; object-position:left; }
#grapth .grp_textArea {
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  max-width:970px;
  width:100%;
  padding:0 10px;
}
#grapth .grp_textArea p { color:#fff; }
#grapth .grp_textArea .ttl { font-size:26px; font-weight: bold; margin:80px 0 20px; letter-spacing:0.115em; line-height:2.2; color:#fff; }
#grapth .grp_textArea .tx { font-size:17px; font-weight: bold; color:#fff; max-width:570px; margin-bottom:40px; line-height:1.8; }
#grapth .grp_textArea .img { display:flex; align-items:flex-end }
#grapth .grp_textArea .img img { max-width:540px; }
#grapth .grp_textArea .img p { font-size:12px; max-width:250px; margin-left:2em; }



#voice { margin:130px 0 150px; }
#voice h3 {  margin-bottom:100px; }
#voice .contBlock { position:relative; }
#voice .contBlock:nth-of-type(n+2) { margin-top:70px; }
#voice .contBlock:after {
  content:"";
  display:block;
  background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
  width:100%;
  height:20px;
  margin-top:50px;
}
#voice .area { font-size:19px; color:#fff; text-align:center; margin-bottom:40px; }
#voice .area span { display:inline-block; padding:5px 2em; background:#3B4A53; border-radius:30px; }
#voice .name { color:#3B4A53; font-weight: bold; font-size:22px; text-align:center; }
#voice .name small { font-size:70%; font-weight: bold; }
#voice  ul.flb { display:flex; justify-content:space-between; margin-top:60px; }
#voice  ul.flb li { width:48%; }
#voice  ul.flb li.img {  }
#voice  ul.flb li .hum { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; }
#voice  ul.flb li .hum img { width:29.004%; border-radius:50%; }
#voice  ul.flb li .hum p { width:69%; font-size:14px; margin-bottom:10px; }
#voice  ul.flb li .hum p span { display:block; font-size:19px; font-weight: bold; }
#voice  ul.flb li .hum p span small { font-size:70%; font-weight: bold; }
#voice  ul.flb li.text {  }
#voice  ul.flb li.text > p { font-size:18px; margin-bottom:40px; }
#voice  ul.flb li.text > p.t2 { letter-spacing:0.01em!important; }
#voice .spInterview { margin-top:70px; }
#voice .spInterview .box { box-shadow:0 0 10px rgb(0,0,0,.3); padding:25px; }
#voice .spInterview .box:nth-of-type(n+2) { margin-top:50px; }
#voice .spInterview ul.flb { margin-top:0; }
#voice .spInterview ul.flb li .hum { margin-top:0; margin-bottom:30px; }
#voice .spInterview ul.flb li .name { margin-top:20px; }
#voice .spInterview ul.flb li.text { display:flex; flex-direction:column; }
#voice .spInterview ul.flb li.text p.fadeTx { height:180px; overflow:hidden; position:relative; margin-bottom:0; }
#voice .spInterview ul.flb li.text p.fadeTx:before{
  content: "";
  position: absolute;
  border-style: none;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height:100px;
  background: linear-gradient(rgba(255,255,255,0) 0, #fff 100px);
}
#voice .spInterview ul.flb li.text .btn { max-width:175px; width:100%; margin:auto auto 0; }
#voice .spInterview ul.flb li.text .btn a {
  display:block;
  color:#fff;
  background:#3b4a53;
  font-size:19px;
  padding:5px 0;
  text-align:center;
  border-radius:30px;
}

#voice  ul.flb li.text > p,#voice .spInterview ul.flb li.text p.fadeTx { line-height:1.89; letter-spacing:0.03em; }


#content .iconList { max-width:650px; width:100%; margin:100px auto; }
#content .iconList li { width:calc(100% / 3 - 20px); margin-right:30px; margin-bottom:0!important; }
#content .iconList li:last-child { margin-right:0; }
#content .feature_box:nth-of-type(even) .feature_title { color:#53878B; }
#content .feature_box:nth-of-type(odd) .feature_title { color:#3B6080; }
#content .imgList { display:flex; justify-content:space-between; margin:40px 0 0 auto; max-width:930px; }
#content .imgList div { width:49.5%; }
#content .feature_max { display:block; }


#achievements ul li { width:calc(100% / 3 - 20px / 3); margin-right:10px; }
#achievements ul li:nth-of-type(3n) { margin-right:0; }
#achievements ul li:nth-of-type(n+4) { margin-top:10px; }
#achievements ul li p { text-align:right; }
#achievements ul li.w50 img { width:50%; }
#achievements ul li.w50.r { text-align:right; }
#achievements ul li.w50.l { text-align:left; }
#achievements ul li.w50.l p { text-align:left; }

.lp_contact.last { position:relative; }
.lp_contact.last:after {
  content:"";
  display:block;
  background : linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, .3) 100%);
  width:100%;
  height:20px;
  position:absolute;
  top:100%;
  left:0;
}


/*@media screen and (max-width:1780px){
  .mvBtmArea ul li:first-child { font-size:24px; }
}*/
@media screen and (max-width:1500px){
  #grapth .grp_backImg img { object-fit:contain; height:auto; }
}
@media screen and (max-width:1200px){
  .mainImg img { height:580px; object-fit:cover; }
  .mvText { left:10vw; width:77%; }
  .mvBtmArea ul li:first-child { font-size:22px; }
  
  #grapth .grp_textArea { display:none; }
  #grapth .grp_textArea .ttl { margin-top:50px; }
}
@media screen and (max-width:1080px){
  .mainImg img { height:30vh; }
  .mvText { left:0; padding:0 20px; width:100%; }
  .mvBtmArea ul li:first-child { padding:100px 0 0; }
  .mvBtmArea ul li:last-child { margin-top:0; }
    
  #grapth .grp_textArea .ttl { margin:30px 0 10px; }
  #grapth .grp_textArea .tx { margin-bottom:20px; }
  #grapth .grp_textArea img { max-width:450px; }
  
  #voice { margin:80px 0; }
  #voice h3 { margin-bottom: 50px; }
}
@media screen and (max-width:820px){
  #grapth .grp_textArea { display:none; }
  #grapth .grp_backImg p { font-size:12px; bottom:5px; right:5px; }
  
  .mvBtmArea { margin-bottom:50px; }
  .mvBtmArea ul li:first-child { font-size:17px; padding-top:0; }
  #voice ul.flb li.text > p { font-size:15px; }
}
@media screen and (max-width:600px){
  .pc-only { display:none!important; }
  .sp-only { display:block!important; }
  .sp-btm-link { display:block; }
  
  .mainImg img {  }
  .sliderArea { width:100vw; margin:0 calc(50% - 50vw); }
  .slider .slideWrap > img { height:230px; object-fit:cover; object-position:-20% 0%; }
  .slider .slideWrap .mvTx { padding:0 10px; }
  
  .mvBtmArea { margin:0 0 30px 0; }
  .mvBtmArea ul { display:block; }
  .mvBtmArea ul li:first-child {  width:100%; font-size:13px; margin-bottom:0; padding:40px 0 0; }
  .mvBtmArea ul li:last-child { width:80%; margin:0 auto; }
  
  #grapth .grp_backImg p { font-size:10px; }
  #grapth .grp_textArea { display:block; position:initial; transform:none; color:#323333; }
  #grapth .grp_textArea .ttl,#grapth .grp_textArea .tx,#grapth .grp_textArea p { color:#323333; }
  #grapth .grp_textArea .ttl { font-size:17px; margin-top:30px; }
  #grapth .grp_textArea .tx { font-size:15px; }
  #grapth .grp_textArea .img { display:block; }
  #grapth .grp_textArea .img img { max-width:100%; width:100%; }
  #grapth .grp_textArea .img p { max-width:100%; width:100%; margin:20px 0 0 0; font-size:10px; }
  
  #voice .area { margin-bottom:20px; }
  #voice .area span { font-size:16px; }
  #voice .name { font-size:16px; }
  #voice ul.flb { display:block; margin-top:20px; }
  #voice ul.flb li { width:100%; }
  #voice ul.flb li.text > p { font-size:15px; }
  #voice ul.flb li .hum { margin:20px 0; }
  #voice ul.flb li .hum img { width:25%; }
  #voice ul.flb li .hum p { font-size:12px; }
  #voice ul.flb li .hum p span { font-size:18px; margin-top:5px; }
  #voice .spInterview ul.flb li .hum { margin:20px 0; }
  #voice .spInterview ul.flb li.text p.fadeTx { height:90px; }
  #voice .spInterview ul.flb li.text .btn a { font-size:16px; }
  #voice .contBlock:after { width:100vw; margin:30px calc(50% - 50vw) 0; }
  
  .feature_left { margin-bottom:0; }  
  #content .imgList { margin-top:0; }
  #stability .imgList { margin-top:30px; }
  #content .iconList {  margin:50px 0; }
  #content .iconList li { width:calc(100% / 3 - 20px / 3); margin-right:10px; }
  
  #achievements ul li { width:calc(50% - 5px); margin-bottom:0; }
  #achievements ul li:nth-of-type(n+3) { margin-top:10px; }
  #achievements ul li:nth-of-type(3n) { margin-right:10px; }
  #achievements ul li:nth-of-type(2n) { margin-right:0; }
  #achievements ul li:nth-child(10) { order:11; margin-right:10px; }
  #achievements ul li:nth-child(11) { margin-right:0; }
  #achievements ul li:nth-child(12) { order:12; }
  #achievements ul li.w50 img { width:100%; }
  #achievements ul li p { text-align:left; }
  .section03 ul li p { font-size:8px; margin-top:5px; }
  
  footer { margin-bottom:60px; }
}


/*==============================
interview
==============================*/
.interview { position:relative; }
.interview .backBtn {
  position:fixed;  
  right:10px;
  bottom:10px;
  z-index:99;
  line-height:1.6;
  width:60px;
  height:60px;  
}
.interview .backBtn a {
  display:flex;
  justify-content:center;
  align-items:center;
  background:#3b4a53;
  color:#fff;
  text-align:center;
  font-size:13px;
  height:100%;
  font-weight: bold;
}
.interview .backBtn a:hover { opacity:.6; }
.interview .backBtn.btm {
  max-width:650px;
  width:100%;
  position:initial!important;
  margin:0 auto 30px;
}

.interview h2 { background:#3B4A53; color:#fff; text-align:center; padding:100px 0; font-size:30px; font-weight: bold; }
.interview h2 small { font-size:70%; font-weight: bold; }
.interview h3 { font-size:30px; color:#3b4a53; font-weight: bold; border-bottom:solid 2px #3b4a53; margin-bottom:40px; text-indent:-0.9em; padding-left:0.9em;  }
.interview h4 { font-size:20px; color:#3b4a53; font-weight: bold; text-indent:-1.1em; padding-left:1.1em; }
.interview .mvArea { margin-bottom:90px; }
.interview .mvArea ul { display:flex; justify-content:space-between; margin-top:-50px; }
.interview .mvArea ul li { }
.interview .mvArea ul.iv01 li:first-child { width:52.631%; }
.interview .mvArea ul.iv01 li:last-child { width:42.105%; }
.interview .mvArea ul.iv02 li:first-child { width:33.684%; }
.interview .mvArea ul.iv02 li:first-child .hum { margin-top:40px; }
.interview .mvArea ul.iv02 li:last-child { width:55.789%; margin-top:130px; }
.interview .mvArea .hum { display:flex; align-items:flex-end; justify-content:space-between; }
.interview .mvArea .hum img { width:29.004%; border-radius:50%; }
.interview .mvArea .hum p { width:69%; font-size:14px; margin-bottom:10px; }
.interview .mvArea .hum p span { display:block; font-size:19px; font-weight: bold; }
.interview .mvArea .hum p span small { font-size:70%; font-weight: bold; }

.interview .iv_textArea { margin:20px 0 70px 0.8em; }
.interview .iv_textArea > p { font-size:18px; line-height:1.89; letter-spacing:0.03em; }
.interview .iv_textArea ul.imgList { display:flex; justify-content:space-between; margin-top:50px; }
.interview .iv_textArea ul.imgList li { width:49.5%; }
.interview .iv_textArea ul.imgList.list02 li { width:32.7%; }

.interview .iv_textArea.inv02top { margin-top:0; }
.interview .iv_textArea.inv02top ul.imgList { margin-top:0; }

.interview .iv_textArea ul.num { font-size:18px; line-height:1.89; letter-spacing:0.03em; }
.interview .iv_textArea ul.num li:first-child { font-weight: bold; }
.interview .iv_textArea ul.num li:last-child { margin-left:1.5em; }
.interview .iv_textArea.multi { margin-bottom:50px; }
.interview .iv_textArea .flb { display:flex; justify-content:space-between; }
.interview .iv_textArea .flb > p { width:57.235%; font-size:18px; line-height:1.89; letter-spacing:0.03em; }
.interview .iv_textArea .flb > .grapth { width:36.717%; }

@media screen and (max-width:820px) {
  .interview .mvArea ul.iv02 li:first-child { width:35%; }
  .interview .mvArea ul.iv02 li:last-child { width:60%; }
  .interview h3 { font-size:24px; margin-bottom:30px; }
  .interview h4 { font-size:18px; }
  .interview .iv_textArea > p,.interview .iv_textArea ul.num,.interview .iv_textArea .flb > p { font-size:15px; }
  .interview .iv_textArea.multi { margin-bottom:30px; }
}
@media screen and (max-width:600px) {
  .interview .backBtn { width:50px; height:50px; opacity:.9; }
  .interview .backBtn a { font-size:10px; }
  .interview .backBtn.btm { width:80%; margin-top:-20px; }
  
  .interview h2 { font-size:28px; }
  .interview h3 { line-height:1.4; margin-bottom:20px; font-size:23px; }
  .interview h4 { line-height:1.6; font-size:18px; }
  .interview .mvArea { margin-bottom:50px; }
  .interview .mvArea ul { display:block; }
  .interview .mvArea ul li { width:100%!important; }
  .interview .mvArea ul li:first-child { margin-bottom:20px; }
  .interview .mvArea ul.iv02 li:last-child { margin-top:30px; }
  .interview .mvArea .hum p { font-size:12px; }
  .interview .mvArea .hum p span { font-size:16px; margin-top:5px; }
  .interview .iv_textArea { margin-top:10px; }
  .interview .iv_textArea.inv02top { margin-top:-40px }
  .interview .iv_textArea.inv02top ul li:first-child { margin-bottom:0; }
  .interview .iv_textArea ul.imgList { margin-top:30px; display:block; }
  .interview .iv_textArea ul.imgList li { width:100%; }
  .interview .iv_textArea ul.imgList li:nth-of-type(n+2) { margin-top:10px; }
  .interview .iv_textArea ul.imgList.list02 { display:flex; }
  .interview .iv_textArea ul.imgList.list02 li:nth-of-type(n+2) { margin-top:0; }
  .interview .iv_textArea .flb { display:block; }
  .interview .iv_textArea .flb > p,.interview .iv_textArea .flb > .grapth { width:100%!important; }
  .interview .iv_textArea .flb > .grapth { margin-top:20px; }
}



@media screen and (max-width:600px) {
#voice ul.flb li.img {
    display: flex;
    flex-direction: column-reverse;
}
/*#voice  ul.flb li .hum { display:flex; justify-content:space-between; }*/
}