@charset "utf-8";
@media screen and (max-width:900px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:480px) {}
@media screen and (max-width:360px) {}
/*ベース_______________________________________*/
body {
    position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 400;
}
body.open_menu  {
    position: fixed;
    width: 100%;
    height: 100svh;
    height: 100vh;
}
img {
    width: 100%;
    max-width: 100%;
	height: auto;
}

p {
	line-height: 2em;
}

/*共用_______________________________________*/
.text_b01 {
	display: inline-block;
}

/*アニメーション_______________________________________*/
.ani_a {
	opacity: 0;
	transform: translateY(32px);
	transition: .7s;
}
.ani_a.go {
	opacity: 1;
	transform: translateY(0);
}

.ani_00 {
	opacity: 0;
		transition: .7s;
}
.ani_00.go {
	opacity:1 ;
}



/*ヘッダー_______________________________________*/
.block_header {
   position: absolute;
	top:0;
	left:0;
    width: 100%;
    z-index: 99999;
    transition: .3s;
}
.block_header.on {
	position: fixed;
    background-color: rgba(18, 174, 180, .6);
	backdrop-filter: blur(1.4px);
}
@media screen and (max-width:768px) {
.block_header {
   position: fixed!important;
}
}




.block_header .header_inner {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.block_header .header_inner h1{
   z-index: 2;
}
@media screen and (max-width:768px) {
.block_header .header_inner h1{
  width:31.2vw;
}
}





/*ヘッダー メニュー_______________________________________*/
.box_menu {}
.box_menu ul {
    display: flex;
    align-items: center;
}
.box_menu ul li {
    margin-right: 0;
}
.box_menu ul li a {
    display: block;
    width: fit-content;
    padding: 10px 20px;
	color:#fff;
	font-size: 14px;
	font-weight: 500;
	line-height:1.42;
	position: relative;
	z-index: 0;
	transition: .3s;
}
.box_menu ul li a::after {
	content:"";
	display: block;
	position: absolute;
	z-index: -1;
  	background-color:#12aeb4;
	bottom:0;
	left:10%;
	width:80%;
	height:2px;
	opacity: 0;
	transition: .3s;
}
@media screen and (max-width:768px) {
.box_menu ul li a::after {
  	background-color:#fff;
}
}

#top .box_menu ul .top a::after,
#overview .box_menu ul .overview a::after,
#business_domain .box_menu ul .business_domain a::after,
.box_menu ul li a:hover::after {
	bottom:3px;
	opacity: 1;
}



.box_menu ul .contact a {
    padding: 10px 30px;
    border:1px solid #fff;
	border-radius: 99px;
	margin-left:37px;

}
@media screen and (max-width:768px) {
.box_menu ul .contact a {
	margin: 0 auto;
	padding: 10px 50px;
	background-color: #fff;
	color: #12AEB4;
}
}

.box_menu ul .contact a:hover {
    background-color:#12aeb4; 

}
@media screen and (max-width:768px) {
.box_menu ul .contact a:hover {
	color:#fff;
}
}


.box_menu ul .contact a::after {
	display: none;
}

#contact .box_menu ul .contact a {
  background-color: #12aeb4;
}
#contact .box_menu.open ul .contact a {
  background-color: #fff;
}

#contact .box_menu.open ul .contact a:hover {
   color:#12AEB4;

}




/*ヘッダー ハンバーガーメニュー ボタン*/

.btn_menu {
    display: none;
    width: 65px;
    height: 65px;
    position: relative;
    z-index: 10;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
	font-weight: bold;
	color:#fff;
	border-radius: 16px;
}
.btn_menu.open {
border: 2px solid rgba(255,255,255,.5);
}

.btn_menu .btn_name{
		margin-bottom:5px;
}
.btn_menu.open .btn_name{
	
		margin:-6px 0 10px;
}



.btn_menu .border00 {
    display: block;
    width: 66.92%;
	height: 2px;
    background-color: #fff;

    transform-origin: center;
    transition: .3s;
    position: relative;
}
.btn_menu.open .border01 {
   transform: rotate(40deg);
	    width: 40%;

}


/*.btn_menu .border02::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .1s;
}*/
.btn_menu .border02 {
    margin-top: 10px;
}

.btn_menu.open .border02 {
	    margin-top: -2px;
	    width: 40%;

    transform: rotate(-40deg);
}
/*.btn_menu.open .border02::before {
    transform: rotate(-70deg);
}*/
/*.btn_menu .border03 {
    margin-bottom: 3px;
}*/
/*.btn_menu.open .border00:not(:nth-of-type(2)) {
    transform: scale(0, 1);
}*/

/*ヘッダー ハンバーガーメニュー内のcloseボタン*/
.btn_menu02 {
    display: none;
    height: auto;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 27px 0;
    background-color: transparent;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
	cursor: pointer;
}
.btn_menu02 .dec01 {
    position: relative;
}
.btn_menu02 .dec01::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #FFD900;
    border-radius: 2px;
    top: 0;
    left: -1em;
    width: 4px;
    height: 18px;
    transform: rotate(45deg);
}
.btn_menu02 .dec01::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #FFD900;
    border-radius: 2px;
    top: 0;
    left: -1em;
    width: 4px;
    height: 18px;
    transform: rotate(-45deg);
}


@media screen and (max-width:768px) {
    .block_header .header_inner, .block_header.on .header_inner {
        background-color: rgba(0, 0, 0, 0);
		padding: 2vw 4%;
    }
    .box_menu {
        position: absolute;
        top: 0;
        left: 0;
        height: 100svh;
        height: 100vh;
        width: 100%;
        transform: translateX(-100%);
        overflow: hidden;
        transition: .3s;
        opacity: 0;
        background-color: #12AEB4F7;
    }
    .box_menu.open {
        transform: translateX(0);
        opacity: 1;
    }
    .box_menu ul {
        height: 100%;
        justify-content: center;
        flex-flow: column;
    }
    .box_menu ul li {
        width: 100%;
        text-align: center;
        margin: 0 0 30px;
    }
    .box_menu ul li a {
		width: fit-content;
		margin: 0 auto;
    }
    .btn_menu {
        display: flex;
    }
	.btn_menu02 {
  display: block;
}
}
/*フッター_______________________________________*/
.block_footer {
    background-color: #F0F0F0;
	padding:80px 0 80px;
	border-radius: 80px 80px 0 0;
	position: relative;
}
@media screen and (max-width:991px) {
.block_footer {
	padding:80px 0 40px;
}
}
@media screen and (max-width:768px) {
.block_footer {
	padding:65px 0 80px;
}
}
.block_footer::after {
    content:"";
	display: block;
	position: absolute;
  	background-color: #12AEB4;
	top:0;
	right:0;
	width:100%;
	height:100%;
	z-index: -1;
}
@media screen and (max-width:768px) {
#top .block_footer::after {
	width:50%;
}
}
.block_footer .footer_inner {
    width: 1100px;
    max-width: 92%;
    margin: 0 auto;
    padding: 0 0 123px;
    display: flex;
	flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
	font-weight: 400;

}

@media screen and (max-width:991px) {
.block_footer .footer_inner {
	padding: 0 0 40px;
	flex-flow: column-reverse;
}
}
@media screen and (max-width:768px) {
.block_footer .footer_inner {
	padding: 0 0 4.26vw;
}
}



.block_footer .footer_inner .data {
    width: 228px;
}
@media screen and (max-width:991px) {
.block_footer .footer_inner .data {
   margin:4.26vw auto 0;
}
}
@media screen and (max-width:768px) {
.block_footer .footer_inner .data {
   margin:9.33vw auto 0;
}
}

.block_footer .footer_inner .data a{
    display: block;
}





.block_footer .footer_inner .data address{
	margin-top:17px;
font-size: 14px;
line-height: 1.4;
}

.block_footer .footer_inner .footer_nav {
    display: flex;
	justify-content: center;
}

@media screen and (max-width:991px) {
.block_footer .footer_inner .footer_nav {
    width: 100%;
}
}
@media screen and (max-width:768px) {
.block_footer .footer_inner .footer_nav {
   flex-flow: column;
	width: fit-content;
    margin: 0 auto;
}
}





.block_footer .footer_inner .footer_nav .footer_nav_box:not(:first-of-type){
    margin-left:56px;
}
@media screen and (max-width:768px) {
.block_footer .footer_inner .footer_nav .footer_nav_box:not(:first-of-type){
    margin-left:0;
}
}



.block_footer .footer_inner .footer_nav .footer_nav_box li{
	font-size: 14px;
	line-height: 2;
	padding-left:1em;
}
@media screen and (max-width:768px) {
.block_footer .footer_inner .footer_nav .footer_nav_box li{
	display: none;
}
}



.block_footer .footer_inner .footer_nav .footer_nav_box .dec01{
	font-weight: 500;
	padding-left:0;
	display: flex;
	align-items: center;
	position: relative;
}


.block_footer .footer_inner .footer_nav .footer_nav_box .dec01::before{
	content:"";
	display: block;
  	background-color:#12AEB4;
	width:7px;
	height:7px;
	border-radius: 99px;
	margin-right:7px;

}


.block_footer .footer_inner .footer_nav .footer_nav_box li a{
	display: block;
	width:fit-content;
	border-bottom:1px solid rgba(18, 174, 180, 0);
	transition: .3s;
}
.block_footer .footer_inner .footer_nav .footer_nav_box li a:hover{
	display: block;
	border-bottom:1px solid rgba(18, 174, 180, 1);
}

.block_footer small{
	width:1100px;
	margin:0 auto;
	max-width: 95%;
	display: block;
	font-size:12px;
	font-weight: 400;
}
@media screen and (max-width:991px) {
.block_footer small{
	text-align: center;
}
}

/*TOPへ戻る*/
.to_top {
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 100%;
    pointer-events: none;
    transition: .3s;
	z-index: 99;
}
.to_top .inner {
    overflow: hidden;
    width: 1160px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.btn_to_top {
    transform: translateY(100%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: #fff;
    background-color: #12AEB4;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    transition: transform .3s,opacity, background .3s;
    pointer-events: none;
    cursor: pointer;
	border: 1px solid #fff;
}
.btn_to_top:hover {
    background-color: #3BD3D9;
}
.on .btn_to_top {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media screen and (max-width:768px) {
    .btn_to_top {
        width: 67px;
        height: 67px;
        font-size: 11px;
    }
}



/*セクション_______________________________________*/
/*共通*/

.font_en {
	font-family: 'Lexend Deca', sans-serif;
}


/*コンテンツ*/
/*コンテンツ　共用*/
.block_00 {}
.block_inner {
    width: 1100px;
    max-width: 92%;
    margin: 0 auto;
}

.ttl02_1 {
font-weight: 500;
font-size: 20px;
color: #12aeb4;
line-height: 1.45;
margin-bottom:1.4em;
}
@media screen and (max-width:768px) {
.ttl02_1 {
font-size: 4.8vw;
margin-bottom: .64em;
	}
}

.ttl02_1 .size_l{
display: block;
font-family: "Lexend Deca";
font-weight: 600;
font-size: 3em;
letter-spacing: 0.05em;
line-height: 1.166;
color: #000;
margin-bottom:.38em;
	
}
@media screen and (max-width:768px) {
.ttl02_1 .size_l{
font-size: 2.22em;
margin-bottom:.29em;
}
.ttl02_1 .size_l.adjust01{
font-size: 1.9em;
margin-bottom:.3.33em;
}
}
.btn01 {
	width:fit-content;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 0;
}
.btn01 .dec01{
	font-weight: 500;
	font-size: 16px;
	padding-bottom:.6875em;
	border-bottom:1px solid #000;
	
}
.btn01::after{
	content:"";
	display: block;
  	background: url("../img/icon_arrow01.svg");
	background-repeat: no-repeat;
	background-size: cover;
    background-position: center; 
	border-radius: 99px;
	width:3.125em;
	height:3.125em;
	margin-left:1em;
}
.btn01::before{
	content:"";
	position:absolute;
	right:0;
	top:0;
	display: block;
  	background:#12aeb4;
	border-radius: 99px;
	width:3.125em;
	height:3.125em;
	margin-left:1em;
	z-index: -1;
}
.btn01:hover::before{
  animation: btn01_ani01 1s;
  transition-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
@media screen and (max-width:768px) {
.btn01:hover::before{
  animation: none;
}
.btn01:active::before{
  animation: btn01_ani01 1s;
  transition-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
}



@keyframes btn01_ani01 {
  0% {
	transform: scale(1);
	opacity: 1;
  }
  100% {
	transform: scale(1.6);
		opacity: 0;
  }
/*  0% {
    margin-left:1em;
  }
  50% {
    margin-left:0;
  }
  100% {
    margin-left:1em;
  }
*/}




/*TOP_______________________________________*/
/*共用*/
#top .block_00 .block_inner figure{
	width:calc(100% - 415px);
}
@media screen and (max-width:768px) {
#top .block_00 .block_inner figure{
	width:100%;
}
}
#top .block_00 .block_inner .box_text01{
	display: flex;
	flex-flow: column;
	align-self: stretch;
	width:415px;
	font-size: 16px;
	line-height: 2;
}
#top .block_00 .block_inner .box_text01 p {
	margin-bottom: 20px;
}


@media screen and (max-width:768px) {
#top .block_00 .block_inner .box_text01{
	width:100%;
	padding: 3.2vw 0 0;
}
}
#top .block_00 .block_inner .box_text01 .btn01{
	margin-top:auto;
}
@media screen and (max-width:768px) {
#top .block_00 .block_inner .box_text01 .btn01{
	margin: 3.6vw auto 0;
}
}


/*MV*/
.block_mv {
	position: relative;
}
.block_mv .mv_ttl{
	position: absolute;
	z-index: 2;
	top:50%;
	left:9.7%;
	transform: translateY(-50%);
	font-size: 52px;
	font-weight: bold;
	line-height: 1.44;
	color: #fff;
}
@media screen and (max-width:1360px) {
.block_mv .mv_ttl{
	font-size: 3.823vw;
}
}
@media screen and (max-width:768px) {
.block_mv .mv_ttl{
	font-size: 10.666vw;
		left:4%;
}
}
.block_mv .mv_text{
	position: absolute;
	z-index: 2;
	bottom:86px;
	left:9.7%;
	font-size: 16px;
	color: #fff;
}
@media screen and (max-width:1360px) {
.block_mv .mv_text{
	font-size:clamp(12px,1.17vw,16px);
	bottom:6.323vw;
}
}
@media screen and (max-width:768px) {
.block_mv .mv_text{
	font-size:14px;
		left:4%;
	bottom:10.66vw;
}
}
.block_mv .mv_text dl{
	display: flex;
	align-items: center;
}
.block_mv .mv_text dt{
	font-size: 2.06em;
	padding:0 1em 0 0;	
}
@media screen and (max-width:768px) {
.block_mv .mv_text dt{
	padding:0 .243em 0 0;	
}
}
.block_mv .mv_text dd{
	line-height: 1.5;
	padding:0 0 0 2.5em;
	border-left:1px solid #fff;
		font-weight: 500;

}
@media screen and (max-width:768px) {
.block_mv .mv_text dd{
	padding:0 0 0 .79em;
	
}
}
.block_mv .mv_text dd .dec_size01{
	display: block;
	font-size: 1.5em;
	margin-bottom:.55em;
}
@media screen and (max-width:768px) {
.block_mv .mv_text dd .dec_size01{
	margin-bottom:.4em;
}
}







.block_mv .wrapper_slide {
	position: relative;
	width:100%;
	max-width: 100%;
	margin:0 auto;
	z-index: 0;
}
.block_mv .swiper-slide::after {
		content:"";
	display: block;
	position: absolute;
  	background-color:rgba(0,0,0,.18);
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:0;
	

}
.swiper01 {
	overflow: hidden;
}



.block_mv .swiper-pagination {
	width: 270px!important;
	bottom: 0!important;
	left: auto!important;
	right: 0;
	height:74px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	border-radius: 15px 0 0 0;
}
.block_mv .swiper-pagination::before {
	content:"";
	display: block;
	position: absolute;
  	background-image: url("../img/icon_pagination.svg");
	background-repeat: no-repeat;
	background-size: cover;
       background-position: center center; 
	top:-15px;
	right:0;
	width:15px;
	height:15px;
}
	
.block_mv .swiper-pagination::after {
	content:"";
	display: block;
	position: absolute;
  	background-image: url("../img/icon_pagination.svg");
	background-repeat: no-repeat;
	background-size: cover;
       background-position: center center; 
	bottom:0;
	left:-15px;
	width:15px;
	height:15px;
}

@media screen and (max-width:768px) {
.block_mv .swiper-pagination {
	display: none;
}
}


.block_mv .swiper-pagination-bullet {
	width: 46px;
	background-color: rgba(0,0,0,.2)!important;
	height:2px;
	margin:0!important;
	border-radius: 0;
	position: relative;
	opacity: 1!important;
	}

.block_mv .swiper-pagination-bullet-active {
  	background-color: rgba(0,0,0,1)!important;
}


.block_mv .swiper-pagination-bullet:first-of-type::before {
	position: absolute;
	content:"01";
	font-size: 16px;
	color:#000!important;
	display: block;
	left:-25px;
	top:-8px;
	opacity: 1!important;
}
.block_mv .swiper-pagination-bullet:last-of-type::before {
	position: absolute;
	content:"03";
	font-size: 16px;
	color:#000!important;
	display: block;
	right:-25px;
	top:-8px;
	opacity: 1!important;
}



/*会社概要*/
.block_overview {
		margin-top:110px;
}
@media screen and (max-width:768px) {
.block_overview {
		margin-top:21.33vw;
}
}

.block_overview .block_inner {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}
.block_overview .block_inner figure{
	padding-right:9.5%;
}
@media screen and (max-width:768px) {
.block_overview .block_inner figure{
	padding-right:0;
}
}

.block_overview .block_inner .box_text01{
	padding:60px 0 80px
}


/*事業概要*/
.block_domain {
	margin-top:100px;
		padding-bottom:180px;
}
.block_domain {
	border-radius: 0 0 80px 0;
	position: relative;
	background-color: #fff;
}
@media screen and (max-width:768px) {
.block_domain {
	border-radius: 0 0 21.33vw 0;
	padding-bottom: 21.33vw;
}
}



.block_domain::before {
   content:"";
	display: block;
	position: absolute;
  	background-color: #12AEB4;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: -1;
}
.block_domain .block_inner {
	display: flex;
	flex-flow: row-reverse wrap;
	justify-content: space-between;
	align-items: center;
}
.block_domain .block_inner figure{
	padding-left:9.5%;
}
@media screen and (max-width:768px) {
.block_domain .block_inner figure{
	padding-left:0;
}
}
.block_domain .block_inner .box_text01{
	padding:50px 0 45px
}

/*リンクリスト*/
.block_link {
	background-color: #12AEB4;
	position: relative;
	border-radius: 80px 0 0 0;
}
@media screen and (max-width:768px) {
.block_link {
background-color: #fff;	
padding-top:24.53vw;
	}
.block_link::after {
	content:"";
	display: block;
	position: absolute;
  	background-color: #12AEB4;
	top:0;
	right:0;
	width:50%;
	height:100%;
	
border-radius: 80px 0 0 0;
	}
}
/*.block_link::after{
	content:"";
	display: block;
	position: absolute;
  	background-color:#fff;
	top:0;
	left:0;
	width:100%;
	height:80px;
	border-radius: 0 0 80px 0;
}
.block_link::before{
	content:"";
	display: block;
	position: absolute;
  	background-color:#fff;
	top:80px;
	left:0;
	width:80px;
	height:80px;
	border-radius: 80px 0 0 0;
}*/
.block_link .block_inner {
	transform: translateY(-80px);
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: wrap;
/* 	justify-content: space-between; */
	padding-bottom:20px;
	justify-content: center;
	gap: 0 3vw;
}
@media screen and (max-width:768px) {
.block_link .block_inner {
	transform: translateY(0);
	padding-bottom:21.33vw;
}
}



.block_link .block_inner a{
	width:31.45%;
	position: relative;
	z-index: 0;
	border-radius: 15px;
	overflow: hidden;
}
@media screen and (max-width:768px) {
.block_link .block_inner a{
	width:100%;
}
.block_link .block_inner a:nth-of-type(n+2){
	margin-top:5.33vw;
}
}
.block_link .block_inner a::after{
	content:"";
	display: block;
	position: absolute;
  	background-color: rgba(0,0,0,.5);
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.block_link .block_inner a img{display: block;
	object-fit: cover;
	height:100%;
	transition: .3s;
	position: relative;
}
.block_link .block_inner a:hover img{
	transform: scale(1.1);
}
@media screen and (max-width:768px) {
.block_link .block_inner a:hover img{
	transform: scale(1.0);
}
.block_link .block_inner a:active img{
	transform: scale(1.1);
}
}


.block_link .block_inner a .text01{
	position: absolute;
	z-index:1;
	bottom:0;
	color:#fff;
	font-size: 16px;
	line-height: 1.5;
	width:calc(100% - 8.67% - 8.67%);
	margin:0 8.67% 8.67%;
}
@media screen and (max-width:768px) {
.block_link .block_inner a .text01{
	font-size: 4.26vw;
}
}


.block_link .block_inner a .text01::after{
	content: "";
	position: absolute;
	right:0;
	bottom:0;
	display: block;
	background: url("../img/icon_arrow01.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 99px;
	width: 26px;
	height: 26px;
}
@media screen and (max-width:768px) {
.block_link .block_inner a .text01::after{
	width: 6.93vw;
	height: 6.93vw;
}
}


.block_link .block_inner a .text01 h3 span{
	display: block;
	font-size: 1.875em;
	font-weight: 700;
	line-height: 1.26;
}



/*下層_______________________________________*/
/*共用*/


.lower .block_mv {
	height:280px;
	display: flex;
	flex-flow: column;
	background-repeat: no-repeat!important;
	background-size: cover!important;
    background-position: center center!important; 
}
@media screen and (max-width:768px) {
.lower .block_mv {
	height:56vw;
}
}
.lower .block_mv {
	background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),url(../img/mv_overview.jpg);
}
@media screen and (max-width:768px) {
.lower .block_mv {
	background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),url(../img/mv_overview_sp.jpg);

}
}
/*#business.lower .block_mv {
  	background-image: url("../img/mv_business.jpg");
}
@media screen and (max-width:768px) {
#business.lower .block_mv {
  	background-image: url("../img/mv_business_sp.jpg");
}
}
#contact.lower .block_mv {
  	background-image: url("../img/mv_contact.jpg");
}
@media screen and (max-width:768px) {
#contact.lower .block_mv {
  	background-image: url("../img/mv_contact_sp.jpg");
}
}
*/






.lower .block_mv .mv_ttl01 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 1.4em;
	width:1100px;
	max-width: 95%;
	margin:auto auto 44px;
		
}
@media screen and (max-width:768px) {
.lower .block_mv .mv_ttl01 {
  font-size: 5.33vw;
  margin: auto auto 6.6vw;
}
}

.lower .block_mv .mv_ttl01 .font_en{
	display: block;
  font-family: "Lexend Deca";
  font-weight: 600;
  font-size: 3em;
  letter-spacing: 0.05em;
  line-height: 1.0;
  margin-bottom: .38em;
}
@media screen and (max-width:768px) {
.lower .block_mv .mv_ttl01 .font_en{
  font-size: 2em;
  margin-bottom: 0;
}
}


.lower .block_00:nth-of-type(n+2) {
	margin-top:100px;
}
@media screen and (max-width:768px) {
.lower .block_00:nth-of-type(n+2) {
	margin-top:16vw;
}
}

.dec_item01 {
position: relative;
	height:184px;
	background-color: #fff;
	border-radius: 0 0 80px 0;
}
@media screen and (max-width:768px) {
.dec_item01 {
	height:40vw;
}
}


.dec_item01::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #12AEB4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dec_space {
	height:72px;
	background-color: #12AEB4;
  position: relative;
  border-radius: 80px 0 0 0;
}
@media screen and (max-width:768px) {
.dec_space {
	height:55px;
}
}
.box_link {
	display: flex;
	justify-content: center;
}
@media screen and (max-width:768px) {
.box_link {
	flex-flow: column;
	align-items: center;
}
}

.box_link a:nth-of-type(n+2){
	margin-left:90px;
}
@media screen and (max-width:768px) {
.box_link a:nth-of-type(n+2){
	margin:30px 0 0;
}
}

.ttl03_1 {
  font-weight: 500;
  font-size: 20px;
  color: #12aeb4;
  line-height: 1.45;
  margin-bottom: 1em;
}


/*企業概要*/
.block_profile {
	background-color: #F4F4F4;
	padding:63px 0 80px;
}
@media screen and (max-width:768px) {
.block_profile {
	background-color: #F4F4F4;
	padding:11.46vw 0 17.33vw;
}
}







.block_profile dl {
	display: flex;
	flex-flow: wrap;
	font-size: 14px;
	padding-left:1.1em;
	position: relative;
	line-height: 1.8em;
}
.block_profile dl:nth-of-type(n+2) {
	margin-top:2em;
}
@media screen and (max-width:768px) {
.block_profile dl:nth-of-type(n+2) {
	margin-top:2.15em;
}
}


.block_profile dl::after {
	content:"";
	display: block;
	position: absolute;
  	background-color: rgb(18, 174, 180);;
	background-repeat: no-repeat;
	top:.9em;
	left:-.5em;
	width:1em;
	height:1px;
	

}
.block_profile dl dt{
	font-weight: bold;
	width:80px;
}
@media screen and (max-width:768px) {
.block_profile dl dt{
	width:100%;
}
}


.block_profile dl dd{
	font-size: 1.071em;
	width:calc(100% - 80px);
}
@media screen and (max-width:768px) {
.block_profile dl dd{
	width:100%;
}
}

.block_profile dl dd .dd_inner{
	margin-top:1.94em;
}
.block_profile dl dd a {
	display: inline-block;
	width:fit-content;
	border-bottom:1px solid #000;
}
@media screen and (max-width:768px) {
.block_profile dl dd a {
	display: block;
}
}


/*事業概要*/
.block_sales {
	
}

.block_sales .box_img {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin:54px 0 30px;
}
@media screen and (max-width:768px) {
.block_sales .box_img {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
		margin:50px 0 27px;
}
}

.block_sales .box_img img:first-of-type{
	width:53.5%
}
.block_sales .box_img img:last-of-type{
	width:44.7%
}

@media screen and (max-width:768px) {
.block_sales .box_img img:first-of-type{
	width:100%
}
.block_sales .box_img img:last-of-type{
	width:100%;
		margin-top:3.64vw;
}
}


.block_sales .box_link {
	margin-top:60px;
}
@media screen and (max-width:768px) {
.block_sales .box_link {
	margin-top:43px;
}
}

.block_manufacturing .box_img02 {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin:70px 0 0;
}
@media screen and (max-width:768px) {
.block_manufacturing .box_img02 {
	margin:66px 0 0;
		flex-flow: column;

}
}

.block_manufacturing .box_img02 li {
	width:30.9%;
}
@media screen and (max-width:768px) {
.block_manufacturing .box_img02 li {
	width:100%;
}
.block_manufacturing .box_img02 li:nth-of-type(n+2) {
	margin-top:50px;
}
}
.block_manufacturing .box_img02 li img{
	display: block;
	border-radius: 30px;
	
}

.block_manufacturing .box_img02 li .ttl03_1{
	margin-top:1em;
}


.block_manufacturing .box_link {
	margin-top:70px;
}
@media screen and (max-width:768px) {
.block_manufacturing .box_link {
	margin-top:50px;
}
}


/*プライバシーポリシー*/

.block_privacy .text_exp {
	margin-bottom:120px;
	font-size: 16px;
  line-height: 1.8em;
}
@media screen and (max-width:768px) {
.block_privacy .text_exp {
	margin-bottom:84px;
}
}



.block_privacy dl {
	font-size: 16px;
	position: relative;
	line-height: 1.8em;
}
.block_privacy dl:nth-of-type(n+2) {
	margin-top:2em;
}
@media screen and (max-width:768px) {
.block_privacy dl:nth-of-type(n+2) {
	margin-top:2.15em;
}
}


.block_privacy dl::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgb(18, 174, 180);
  background-repeat: no-repeat;
  top: .9em;
  left: 0;
  width: 1em;
  height: 1px;

}


.block_privacy dl dt{
	font-weight: 800;	
	padding-left:1.6em;

}




.block_privacy dl dd .dd_inner {
  margin-top: 2.3em;
}







/*お問い合わせ*/


.block_contact {
}
.block_contact .text_exp{
	text-align: center;
	margin-bottom:54px;
	line-height:1.7;
}


.block_contact .attention_mark01{
color:#E60000;
font-size: 1.2em;
position: relative;
top: -.05em;
}



.box_attention02 {
width:720px;
	max-width: 100%;
	text-align: right;
	font-size: 12px;
	margin-top:10px;
}
.box_attention02 .attention_mark01 {
position: static!important;
	font-weight: bold;
}

.block_contact .block_input {
	background-color:#F5F5F5 ;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding:60px 5%;
	font-size: 16px;
}

.block_contact .block_input dl{
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: baseline;
	width:720px;
	max-width: 100%;
}






.block_contact .block_input dl:nth-of-type(n+2){
	margin-top:11px;
}
.block_contact .block_input dt{
	width:180px;
	height:50px;
	display: flex;
	align-items: center;
}

@media screen and (max-width:768px) {
.block_contact .block_input dt{
	width:100%;
	}
}











.block_contact .block_input dd{
	width:calc(100% - 180px);
	height:50px;
	background-color: #fff;
		font-size: 14px;
	padding: 0 1em;
	display: flex;
	align-items: center;

}



@media screen and (max-width:768px) {
.block_contact .block_input dd{
	width:100%;
}
}











.block_contact .block_input .contact_name dd input{
	width:100%;
}

.block_contact .block_input .contact_region {
	justify-content: flex-start;
}
.block_contact .block_input .contact_region dd{
	width:12em;
}

.block_contact .block_input .contact_region select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}



.block_contact .block_input .contact_contents dd{
	height:auto;
	padding: 1em;
}
.block_contact .block_input .contact_contents dd textarea{
	width:100%!important;
}

.box_check {display: block;
font-size: 14px;
margin-top:30px;}
.box_check:hover { cursor: pointer; }
.box_check input { display: none; }
.box_check .dummy {
  width: 20px;
  height: 20px;
	margin-right:16px;
  border: 2px solid #DEDEDE;
  border-radius: 15%;
  display: inline-flex;
  vertical-align: text-top;
	background-color: #fff;
}

.box_check input:checked+.dummy:after {
  content: '';
  width: 100%;
  height: 50%;
  border-left: 2px solid #f50057;
  border-bottom: 2px solid #f50057;
  transform: rotate(-45deg);
}



.area_btn {
	display: flex;
	flex-flow: column;
	align-items: center;;
	margin-top:60px;
}

.box_btn {
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D2D2D2;
  border-radius: 999px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border: 2px solid #D2D2D2;
  transition: .3s;
  opacity: .8;
  pointer-events: none;
  position: relative;
	font-weight: bold;
}



.box_btn.ok {
  background-color: #12AEB4;
  border: 2px solid #12AEB4;
  opacity: 1;
  pointer-events: auto;
}
.box_btn.ok:nth-of-type(n+2) {
  background-color: #D2D2D2;
  color: #fff;
  border: 2px solid #D2D2D2;
	margin-top:24px;
}


.box_btn:hover {
  background-color: rgba(18, 174, 180, .2);
  color: #12AEB4;
}

.box_btn:nth-of-type(n+2):hover::after {
  border: solid #fff;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 2px 2px 0 0;
}

.box_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(45deg);
  width: .6em;
  height: .6em;
  border: solid #fff;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 2px 2px 0 0;
  transition: .3s;
}
.box_btn:hover::after {
  border: solid #12AEB4;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 2px 2px 0 0;
}







