@charset "utf-8";

/*=================================================================
	header
=========================*/
#head{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 99;
}
#head{
	display: flex;
	justify-content: space-between;
	transition: .4s;
	align-items: center;
}

.hlogo{
	height: 80%;
	margin: auto 0;
	margin-left: clamp(15px, 3vw, 50px);
	transition: .4s;
	max-width: 30%;
	min-width: 250px;
	filter: brightness(0) invert(1);
}
.hlogo img{
	height: 100%;
	width: 100%;
    object-fit: contain;
}

/*スクロール後*/
#head.scrolled{	
	height: 80px;
	background: #333;
	transition: .4s;
	box-shadow: 0 0 4px #999;
}
#head.scrolled .hlogo{
	transition: .4s;
	filter: brightness(0) invert(1);
}

.gnav{
	margin-right: clamp(30px, 3vw, 50px);
}
.gnav ul{
	display: flex;
	justify-content: flex-end;
	height: 100%;
	align-items: center;
	font-size: 110%;
	text-shadow: 1px 1px 2px #333;
}
.gnav li a{
	padding: 0 15px;
}

.gnav li a.tmail{
	position: relative;
	padding-left: 45px;
}
.gnav li a.tmail::before{
	position: absolute;
	width: 25px;
	height: 20px;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background: url("../img/icon_mail.svg")no-repeat center/contain;
}

@media(max-width:1023px){
	.gnav ul{
		font-size: 100%;
	}
	.gnav li a{
		padding: 0 10px;
	}	
}
@media(max-width:819px){
	.gnav{
		display: none;
	}
}
@media(max-width:500px){
	#head{
		height: 75px;
	}	
	#head.scrolled{	
		height: 55px;
	}	
}
@media(max-width:450px){
	#head{
		position: absolute;
	}	
}

/*=================================================================
	mobilenav
=========================*/
/*openbtn*/
@media(min-width:820px){
	.openbtn{
		display: none;
	}
}
.openbtn{
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
	z-index: 110;
}
.openbtn .openbtn-area{
    transition: all .6s;/*アニメーションの設定*/
	width:50px;
	height:50px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
	background: #fff;
  	width: 60%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active .openbtn-area{
	transform: rotate(360deg);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
@media(max-width:450px){
	.openbtn{
		display: none;
	}	
}
/*MENUArea*/
#spnav{
    position:fixed;
    z-index: 100;
	top:-150%;
    left:0;
	width:100%;
    height: 100vh;
	background:#333;
	transition: all 0.6s;
	padding: 2rem;
}
/*アクティブクラスがついたら位置を0に*/
#spnav.panelactive{
    top: 0;
}
.splogo{
	width: 80%;
	margin: 0 auto;
}
.splogo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);	
}

#spnav ul {
    z-index: 100;
	width: 90%;
	max-width: 600px;
	margin: 25px auto ;
}

#spnav li{
	list-style: none;
    padding: 5px 1rem 0;
	border-bottom: 1px dashed #eee;
}
#spnav li:first-child{
	border-top: 1px dashed #eee;
}

#spnav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	position: relative;	
}
#spnav li a::after{
	position: absolute;
	content: '+';
	right: 0;
	top: 8px;
	transition: .4s;
}
#spnav li a:hover::after{
	transform:rotateZ(360deg);
	transition: .4s;
}
.sp_cta a{
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 8px auto;
	border: 1px solid #eee;
	text-align: center;
	padding: .5rem;
	font-size: 1.3rem;
}


/*=================================================================
	pagetop
=========================*/
#page-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	margin: 0;
	z-index: 80;
	opacity: 0;
	transform: translateY(100px);	
}
#page-top a {
  display: inline-block;	
  width: clamp(40px, 8vw, 55px);;
  height: clamp(40px, 8vw, 55px);;
}
#page-top .arrow-icon {
	 height: 30px;
  top: 40%;
  left: 50%;
	transform: translate(-50%,-50%)
}
#page-top a:hover .octagon {
  transform: scale(1.2) rotate(90deg);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media (max-width: 768px) {
  #page-top {
    right: 16px;
    bttom: 16px;
  }

  #page-top .arrow {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 450px) {
	#page-top {
    	bottom: 50px;
  	}
}
/*=================================================================
	footer
=========================*/
#cta{
	background: url(../img/cta_bg.jpg) no-repeat center 20% /cover;
	z-index: 1;
}
#cta::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #333;
	opacity: .5;
	z-index:0;
}

#cta .flexbox{
	position: relative;
	z-index: 3;
}

.comn2.txt{
	text-shadow: 1px 1px 3px #333;
}
.comn2.link .ctatel{
	font-size: 2rem;
	display: block;
	max-width: 400px;
	text-align: center;
	border: 2px solid #fff;
	margin: 0 auto 15px;
}
.comn2.link .ctamail{
	font-size: 2rem;
	display: block;
	max-width: 400px;
	text-align: center;
	background: #fff;
	color: #333;
	margin: 0 auto;
}
.comn2.link .ctamail span{
	position: relative;
	padding-left: 3rem;
}
.comn2.link .ctamail span::before{
	position:absolute;
	content: '';
	width: 2rem;
	height: 100%;
	background: url("../img/icon_mail.svg")no-repeat center/contain;
	filter: brightness(.4) invert(0);
	left: 0;
	top: 0;
}
@media screen and (max-width: 767px) and (min-width: 460px) {
	.comn2.txt{
		text-align: center
	}
}
/*Footer*/
footer{
	padding: clamp(30px,5vw,80px) 0 ;
	text-align: center;
}
.foot_info{
	border-bottom: 2px solid #eee;
	margin-bottom: 10px;
}
.flogo{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 20px;
}
.flogo img{
	filter: brightness(0) invert(1);
}
.link_banner{
	width: 50%;
	max-width: 280px;
	margin: 20px auto;
}
.link_banner a{
	background: #eee;
	padding: .4rem 1rem;
	display: block;
	height: 100%;
}
.link_banner img{
	vertical-align: bottom;
}
@media (max-width: 450px) {
	footer {
    	padding-bottom: 63px;
  	}
}
/*=================================================================
	sp-footbtn
=========================*/
@media(min-width:451px){
	.sp_footnav{
		display: none;
	}
}
.sp_footnav{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #222;
	border-top: 2px solid #fff;
}
.sp_footnav ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.sp_footnav li:not(:last-child){
	border-right: 1px solid #fff;
}
.sp_footnav li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px 0;
	text-align: center;
	font-size: 13px;
}
.sp_footnav .icon{
	height: 18px;
	width:30px;
	margin: 0 auto;

}
.sp_footnav .icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}



@media(min-width:601px){
	.sp_footnav{
		display: none;
	}
}
@media(max-width:400px){
	.sp_footnav li a{
		font-size: 11px;
	}	
	.sp_footnav .icon{
		height: 20px;
		width:20px;
		margin: 0 auto;
	}
}

/*=================================================================
	fv
=========================*/
#fv{
	position: relative;
	z-index: 2;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 100vh;
	min-height: 50vh;
	overflow: hidden;
}
#fv::before{
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	background:linear-gradient(to top,rgba(0,0,0,.6),rgba(25,25,25,.4));
	top: 0;
	left: 0;
	z-index: 2;
}
#fv::after{
	position: absolute;
	content: '';
	background: url("../img/logo/logo_mark.svg")no-repeat center/contain;
	filter: invert(100%);
	width: 30%;
	aspect-ratio: 1 / 1;
	max-height: 40vh;
	top: 50%;
	right: 6vw;
	transform: translateY(-50%);
	z-index: 3;
	opacity: .4;
}

.fv_slider {
	position:relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 100vh;
	min-height: 50vh;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../img/fv01.jpg");
}

.slider-item02 {
    background:url("../img/fv02.jpg");
}

.slider-item03 {
    background:url("../img/fv03.jpg");
}

.slider-item {
    width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 100vh;
	min-height: 50vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.fvcatch{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%,-50%);
	z-index: 3;	
	width: 100%;
}
.fvcatch h2{
	font-size: clamp(23px,6vw,70px);
	margin-bottom: 10px;
}
.fvcatch h3{
	font-size: clamp(16px,4vw,35px);
}


/*=================================================================
	index
=========================*/
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

/*top_greeting*/
.t_greet_flex,
.t_sev_flex{
	display: flex;
	justify-content: space-between;
}

.t_greet_ttl{
	width: 180px;
	display: flex;
    justify-content: flex-end;
    height: 100%;	
}
.t_greet_txt{
	width: 75%;
}

.txt_wrap{
	max-width: 700px;
	padding: 2rem 0;
	margin: 0 auto;
}
.txt_wrap h3{
	font-size: clamp(23px,2.5vw,28px);
	margin-bottom: 20px;
}

@media(max-width:619px){
	.t_greet_flex{
		flex-direction: column;
	}	
	.t_greet_ttl,
	.t_greet_txt{
		width: 100%;
	}
	.t_greet_ttl{
		justify-content: flex-start;
		
	}
	.t_greet_ttl .ttl01{
		writing-mode: horizontal-tb;
	}
	.t_greet_ttl .ttl01 span{
	    padding: .5rem 2rem;
    	margin: 0;
		margin-bottom: 10px;
	}
}
@media (max-width: 450px) {
    .t_greet_ttl .ttl01 span {
        padding: .5rem 1.5rem;
    }
}
/*top_service*/
#t_service{
	z-index: 1;
	padding-bottom: clamp(80px,8vw,140px)
}
#t_service::before{
	content: "";
	position: absolute;
	top: 40%;
	left: -10%;
	width: 120%;
	height: 65%;
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(-8deg);
	z-index: 1;	
}
#t_service::after {
	content: "SERVICE";
	position: absolute;
	right: 7%;
	bottom: 6%;
	font-size: clamp(4.375rem, 2.927rem + 6.1vw, 7.5rem);
	font-weight: 700;
	color:#333;
	letter-spacing: 0.1em;
	line-height: 1;
	z-index: 2;
	pointer-events: none;
}

.t_sev_flex{
	position: relative;
	z-index: 4;
}
.t_sev_txt{
	width: 55%;
}
.t_sev_img{
	width: 40%;
}
.stxt_wrap{
	padding-left: 4vw;	
}

@media(max-width:767px){
	.t_sev_flex{
		flex-direction: column;
	}	
	.t_sev_txt{
		width: 100%;
	}
	.stxt_wrap{
		padding-right: 4vw;	
	}	
	.t_sev_img{
		width: 80%;
		max-width: 500px;
		margin: 30px auto 0;
	}	
}
@media(max-width:400px){
	#t_service::after {
		right: 0;
		bottom:5%;
	}
}
/*top_works*/
.t_work_inner{
	max-width: 1600px;
	margin-left: auto;
}
.t_work_flex{
	display: flex;
	gap:clamp(40px,7vw,80px);
}
.t_work_inner .ttl01{
	margin-top: -80px;
	z-index: 3;
}
.t_work_inner .ttl01::before{
	position: absolute;
	content: '';
	height: 4vw;
	width: 1px;
	background: #fff;
	top: 0;
	right: -1rem;
}
.t_work_inner .ttl01::after{
	position: absolute;
	content: 'Works';
	top: 5vw;
	right: -2rem;
	font-weight: 400;
	font-size: 18px;
}
.t_work_flex p{
	font-size: clamp(1rem, 0.652rem + 1.46vw, 1.75rem);
}

.workslide{
	margin-top: -50px;
	padding-left: 50px;
}

.w_slider li{
	aspect-ratio: 4 / 3;
	
}
.w_slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:100%;
	object-fit: cover;	
}

.w_slider .slick-slide {
    margin:0 15px;/*スライド左右の余白調整*/
}

@media(max-width:539px){
	.t_work_inner .ttl01{
		margin-top: -60px;
		z-index: 3;
	}	
	.t_work_flex{
		padding-right: 1vw;
	}
	.t_work_flex br{
		display: none;
	}
}

/*top_about*/
#t_about{
	background: #fff;
	color: #1a1a1a;
}
#t_about::before{
	position: absolute;
	content: '';
	width: 60%;
	height: 100%;
	top: 0;
	right: 0;
	clip-path: polygon(20% 0,100% 0, 100% 100%, 0 100%);
	background: url("../img/t_about.jpg")no-repeat center/cover;
}
.ta_txtwrap{
	width: 50%;
	min-width:440px; 
}
.ta_txtwrap .ttl01{
	-ms-writing-mode: tb-rl;
	writing-mode: horizontal-tb;
	margin-bottom: 30px;
}
.ta_txtwrap .ttl01 span{
	background: #333;
	color: #fff;
	padding: .5rem 2rem;
    margin: 0;
}

@media(max-width:819px){
	#t_about::before{
		width: 100%;
		clip-path: polygon(0% 0,100% 0, 100% 100%, 0 100%);
	}
	#t_about::after{
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		background: #fff;
		opacity: .6;
		top: 0;
		left: 0;	
		z-index: 0;
	}
	.ta_txtwrap{
		position: relative;
		width: 95%;
		margin: 0 auto;
		z-index: 2;
		text-shadow: 0 0 1px #1a1a1a;
		min-width:auto; 
	}
	.ta_txtwrap br{
		display: none;
	}
}

#linkpoint{
	padding: 2vh 0;
}

/*ソーラー事業*/
#solar-top{

}
#solar-top h2{
	font-size: 26px; margin-bottom: 12px; color: #333;	
}

/*=================================================================
	下層共通
=========================*/
.subfv{
	text-align: center;
	background:url("../img/subfv.jpg")no-repeat center 25%/cover;
	z-index: 2
}
.subfv::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #333;
	opacity: .4;
	top: 0;
	left: 0;
	z-index: 0
}
.subfv h1{
	position: relative;
	z-index: 3;
	font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
}
@media(max-width:450px){
	.subfv {
		padding: clamp(80px,8vw,120px) 0  clamp(40px,6vw,120px);
		position: relative;
	}	
}
.sec_top{
	display: flex;
	justify-content: space-between;
}
.sec_top_ttl{
	width: 180px;
}
.sec_top_txt{
	width: 75%;
}
@media (max-width: 599px) {
	.sec_top{
		display: block;
	}	
	.sec_top_ttl,
	.sec_top_txt{
		width: 98%;
		margin: 0 auto;
	}	
}

/*=================================================================
	service
=========================*/
.serv_greet .sec_top_txt{
	max-width: 673px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 75px) 0;
}
.serv_greet .sec_ttl{	
	font-size: clamp(1.375rem, 1.143rem + 0.98vw, 1.875rem);	
}


.service_item {
	display: flex;
	gap: clamp(32px, 5vw, 64px);
	margin-bottom: clamp(20px, 3vw, 40px);
}

.service_txt {
	flex: 5.5;
	padding-top: clamp(16px, 2vw, 32px);
}

.service_ttl {
	font-size: clamp(20px, 2.2vw, 24px);
	margin-bottom: 24px;
	line-height: 1.4;
	position: relative;
	padding-bottom: 5px;
	border-bottom: 1px solid #aaa;
}

.service_txt p {
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.8;
	padding: 0 1rem;
}

.service_img {
	flex: 3.5;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.service_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service_subttl {
	font-size: clamp(18px, 2vw, 20px);
	background: #fff;
	color: #333;
	display: inline-block;
	padding: 5px 1rem;
	margin-top: 3vw;
}

.scaffold_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px 32px;
	padding: 2rem 1rem;
	border: 2px solid #fff;

}

.scaffold_list li {
	position: relative;
	padding-left: 1.2em;
}

.scaffold_list li::before {
	content: "—";
	opacity: 0.6;
	position: absolute;
	left: 0;
}

@media (max-width: 767px) {
	.service_item {
		flex-direction: column;
	}
	.service_item.reverse{
		flex-direction: column-reverse;
	}
	.service_img {
		aspect-ratio: 16 / 9;
		margin-top: 24px;
	}
}


/*強み*/
.streng_wrap {
  padding: clamp(32px, 4vw, 48px) 0;
}

.streng_wrap:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.strength_ttl {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.5;
}

.strength_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 1.2em;
  background: #000;
}

.diagonal-divider {
  position: relative;
  width: 100%;
  height: 135px;
  background: #f7f7f7;
}

.diagonal-divider::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background: #333;
  transform: skewY(-4deg);
  transform-origin: bottom right
}

@media (max-width: 599px) {
  .serv_greet .sec_ttl ,
  .strength .sec_ttl {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .serv_greet .sec_ttl .ja,
  .strength .sec_ttl .ja {
    display: inline-block;
    margin: 0;
	padding:.5rem 2.5rem;	  
  }

  .serv_greet .sec_ttl .en ,
  .strength .sec_ttl .en {
    display: block;
    font-size: 13px;
    padding-top: 6px;
  }
	.serv_greet .sec_ttl .en::before ,
	.strength .sec_ttl .en::before{
		display: none;
	}

}

/*実績*/
#work.anchor{
	display: block;
	padding-top: 100px;
	margin-top: -100px;
}
.works {
  padding-top: 0;
	margin-top: -80px;
}
.works .sec_ttl {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.works_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.works_item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.works_cat {
  margin-top: 12px;
  font-size: 14px;
}

.section-break {
  height: clamp(80px, 12vw, 160px);
  background: #333; /* worksと同色 */
}

/*solar*/
.worries{
	display: flex; 
	flex-wrap: wrap; 
	gap: 12px; 
	margin-top: 16px;
}
.bubble {
  background-color: #f7f7f7;
	color: #1a1a1a;
  border-radius: 20px;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
  flex: 1 1 45%;
  text-align: center;
  box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
}
.bubble:hover {
  background-color: #b2ebf2;
  transform: translateY(-3px);
}
.solal-btn{
	display: flex;
	flex-wrap: wrap;
	gap:30px;
}
.solal-btn a{
	display: inline-block;
	padding: 10px 30px;
	border: 2px solid #fff;
	min-width: 280px;
	position: relative;
}
.solal-btn a::before{
	position: absolute;
	content: '\f101';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
}
.solal-btn a:hover{
	background: #ffffff66;
}
@media (max-width: 599px) {
  .solar .sec_ttl {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    letter-spacing: 0.05em;
    text-align: center;
	  margin-bottom: 30px;
  }

  .solar .sec_ttl .ja {
    display: inline-block;
    margin: 0;
	padding:.5rem 2.5rem;	  
  }

  .solar .sec_ttl .en {
    display: block;
    font-size: 13px;
    padding-top: 6px;
  }
	.solar .sec_ttl .en::before{
		display: none;
	}

}

@media (max-width: 500px) {
  .bubble {
    flex: 1 1 100%;
  }
}

/*ssc*/
.ssc{
	background: #fff;
	color: #333;
}
.ssc01{
	position: relative;
	margin-top: 2vw;
}
.ssc01 span{
	position: absolute;
	height: 0;
	width: 0;
	z-index: -1;
}
.ssc01 h3{
	background: #003c7e;
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	padding: 5px 10px;
}

.ssc_cta {
  margin-top: clamp(40px, 12vw, 80px);
  padding: clamp(32px, 5vw, 56px);
  background: #f4fbff;
  border: 2px solid #6ec1e4;
  text-align: center;
}

.ssc_cta_ttl {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  margin-bottom: 12px;
  color: #0071bc;
}

.ssc_cta_txt {
  font-size: 15px;
  margin-bottom: clamp(20px, 4vw, 40px);
  color: #333;
}

.ssc_cta_btns {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

.ssc_tel,
.ssc_form {
  width: 100%;
  max-width: 320px;
}

.ssc_tel p,
.ssc_form p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
}

.btn_tel {
  display: block;
  padding: 14px 16px;
  border: 2px solid #0071bc;
  color: #0071bc;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn_tel:hover {
  background: #0071bc;
  color: #fff;
}

.btn_form {
  display: block;
  padding: 16px;
  background: #0071bc;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn_form:hover {
  opacity: 0.85;
}

/* ===============================
   SP
=============================== */
@media (max-width: 767px) {
  .ssc_cta_btns {
    flex-direction: column;
    align-items: center;
  }

  .ssc_tel,
  .ssc_form {
    max-width: 100%;
  }
	.ssc_form p{
		display: none;
	}
}


/*=================================================================
	about
=========================*/
.tablewrap{
	padding: clamp(40px,6vw,100px) 0;
}
.overview tr{
	border-bottom: 1px solid #fff;
}
.overview th{
	padding: 1rem 0;
	width: 28%;
	min-width: 70px;
	font-weight: 400;
}
.overview td{
	padding: 1rem;
	width: 70%;
}
.map{
	max-width: 960px;
	height: 45vh;
	margin: 0 auto;
}
.map iframe{
	width: 100%;
	height: 100%;
}
@media (max-width: 599px) {
  #about .sec_ttl {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    letter-spacing: 0.05em;
    text-align: center;
	margin-bottom: 30px;
  }

  #about .sec_ttl .ja {
    display: inline-block;
    margin: 0;
	padding:.5rem 2.5rem;	  
  }

  #about .sec_ttl .en {
    display: block;
    font-size: 13px;
    padding-top: 6px;
  }
	#about .sec_ttl .en::before{
		display: none;
	}

}
/*=================================================================
	contact
=========================*/
.cta_ttl{
	text-align: center;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.tel-contact {
    text-align: center;
    display: flex;
    border: 1px solid #fff;
    width: 100%;
	padding: 1.5rem ;
    margin: 0 auto;
	justify-content: space-evenly;
    align-items: center;
    margin-bottom: 6rem;
}

.tel-contact-text {
	font-family: "A-OTF Gothic MB101 Pr6N", sans-serif;
	font-weight: normal;
	font-size: clamp(1.1rem, 0.391rem + 1.48vw, 1.5rem);
	letter-spacing: 0.06em;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.vertical-line {
    content: "";
    width: 0px;
    height: 7.6rem;
    background: transparent;
    display: inline-block;
	margin-left: 0;
    border: 0.1rem solid #fff;
}
.u-pc {
    display: block;
}

.contact-item-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-left: 30px;	
}
.contact-item1 {
    align-items: center;
    display: flex;
    margin-bottom: 0.97rem;
    font-size: 1.5rem;
}
a.splink{
	pointer-events: none
}
.tel-contact-item {
    font-family: Oswald, sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    font-size: clamp(1.5rem, -0.271rem + 3.7vw, 2.5rem);
    text-align: left;
    color: #fff;
    display: inline-block;
    margin-left: 1.02rem;
}
p.contact-page-time {
    font-family: "Noto Sans JP Medium", sans-serif;
    font-weight: normal;
    font-size: clamp(0.8rem, 0.091rem + 1.48vw, 1.2rem);
    letter-spacing: 0.1em;
    color: #fff;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (max-width: 500px) {
	a.splink{
		pointer-events:painted;
	}
	.tel-contact {
		display: block;
	}
	.tel-contact-text {
		flex-direction: row;
	}	
	.contact-item-button-text {
		padding-left: 0;	
	}	
}


/*メールフォーム*/
.mailform{
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	padding: 1.5rem 2rem;
	background: #555;
	border: 1px solid #eee;
	
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
  	color: #fff;
  	background: #1a1a1a;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
	font-weight: 500;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #2e3192;
	color: #fff;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #aaa;
	font-size: 0.9rem;
}
.mailform .postal_btn:hover{
	opacity: 0.8;
}
.mailform button{
	display: block;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #fff;
	border: 1px solid #fff;
	color: #333;
}
.mailform button:hover{
	background: #333;
	color: #fff;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f1d8";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #222;
    border-bottom: 3px solid #222;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #f4f4f4;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #eee;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

.row .privacy_flame{
	font-size: 14px;
	height: 30vh;
	overflow-y: scroll;
	background: #fff;
	color: #333;
	padding: .5rem 1rem;
}
.row .privacy_flame p span {
    display: block;
	background: #fff;
	color: #333;
    font-weight: 500;
	margin: 5px 0;
	font-size: 14px;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fff;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #2e3192;
}

.consent{
	font-size: 16px;
}

@media(max-width:599px){
	.contact .t_center{
		text-align: left;
	}
	.contact_info ul li{
		text-align:left
	}	
}
.domain-alert{
	margin: 30px 0;
	font-size: 16px;
}
/*thanks*/
p.sub{
	font-size: 85%;
	color: #aaa;
}