@CHARSET "UTF-8";
/*
Theme Name: 株式会社オフィスeye-b様
date: 2025.10.03
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --bk: #1b1b1b;
	--yellow: #d2cd48;
	--blue: #009e96;
	--orange: #f19149;
	--bg: rgba(255,255,255,.3);
	--grad: linear-gradient(to bottom ,#d2cd48, #8e1010 70%);
	--header_height: 5rem;
}
@media screen and (min-width: 1024px){
  :root {
		--header_height: 100px;
	}
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	color: #fff;
	line-height: 1.7;
	letter-spacing: 1px;
	background: url('images/common/bg.png');
}




/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table tr{
	border-bottom: #999 solid 1px;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 500;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 500;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 500;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}
.hidden{
	overflow: hidden;
}
.section{
	padding: 4rem 0;
}

.section_title{
	font-size: 5rem;
	line-height: 1;
	margin-bottom: 3rem;
	letter-spacing: 0;
	font-weight: 600;
}

.page_container{
	padding: 0 0 8rem;
}

.block{
	margin-bottom: 5rem;
}
.block_title{
	font-size: 2.4rem;
	margin-bottom: 2rem;
	padding-bottom: .5rem;
	border-bottom: #fff solid .3rem;
	position: relative;
}
.block_title::first-letter{
	color: var(--yellow);
	font-size: 120%;
	line-height: 1;
}
.block_title::after{
	content: '';
	width: 10%;
	height: .3rem;
	position: absolute;
	left: 0;
	bottom: -.3rem;
	z-index: 5;
	background: var(--yellow);
}
.page_header{
	padding: 0 5%;
	overflow: hidden;
	height: 24rem;
	display: flex;
	align-items: center;
	position: relative;
}
.page_title{
	white-space: nowrap;
	margin: 0;
	position: relative;
}
.page_title__jp{
	font-size: 1.2rem;
	display: block;
	position: absolute;
	left: 0;
	bottom: -2rem;
}
.breadcrumb{
	padding: 1rem 5%;
	white-space: nowrap;
	display: flex;
	font-size: 1rem;
}
.breadcrumb_item::after{
	content: '';
	margin-right: .5rem;
	border-top: #fff solid 1px;
	border-right: #fff solid 1px;
	rotate: 45deg;
	width: .5rem;
	height: .5rem;
	display: inline-block;
}
.breadcrumb_item:last-child::after{
	content: none;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}


.letter_wrap{
	display: inline-flex;
	justify-content: center;
}
.sr_only{
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border-width: 0;
  white-space: nowrap;
}
.letter_wrap__span{
	margin-left: 2rem;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	background: var(--grad);
	color: #fff;
	display: block;
	padding: 1.5rem 1rem;
	width: 100%;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
  position: relative;
	font-size: 1.6rem;
	border-radius: 50px;
}
.btn_link::after{
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	right: 2rem;
	top: 50%;
	translate: 0 -50%;
	z-index: 5;
	transition: .5s;
}
.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

.fa-external-link{
	font-size: 70%;
	margin-left: .5rem;
}
input[type="submit"]{
	outline: 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: var(--bk);
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}



/* =slick base
-------------------------------------------------------------- */

.slick-arrow{
	width: 1rem;
  height: 1rem;
  z-index: 10;
}
.slick-prev{
  left: -5px;
}
.slick-next{
  right: -5px;
}
.slick-arrow::before{
	content: '' !important;
  width: 100%;
  height: 100%;
  border-top: #000 solid 1px;
  border-left: #000 solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: 1rem;
	z-index: 10;
}
.slick-dots li{
	width: 3rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: #ccc;
}
.slick-dots li button:before{
	content: none;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}


.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--grad);
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}






/* =header
-------------------------------------------------------------- */

#site_header{
  padding: 1rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
}
.site_logo{
  display: inline-flex;
	align-items: center;
	margin: 0 auto 0 0;
}
.site_logo img{
	width: 10rem;
}
.site_logo__txt{
	margin-left: 1rem;
	font-size: 1.2rem;
	font-weight: 500;
}
#header_nav__btn{
	position: fixed;
	top: 0;
	right: 0;
	width: var(--header_height);
	height: var(--header_height);
	text-align: center;
	z-index: 9999;
  cursor: pointer;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
	width: 30px;
	height: 3px;
	background: #fff;
	border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn .border{
  background: #fff;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}


#header_nav__inner{
	width: 80%;
	max-width: 40rem;
	height: 100%;
	background: var(--bk);
	z-index: 999;
	position: fixed;
	top: 0;
	right: -40rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding: 6rem 5%;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
	right: 0;
}
.main_navigation{
	position: relative;
	margin-bottom: 3rem;
}
.main_navigation li a{
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	position: relative;
	text-transform: uppercase;
}
#header_contact{
	text-transform: uppercase;
	border-radius: 0;
}
#header_contact::after{
	content: none;
}





/* =footer
-------------------------------------------------------------- */

#footer_contact{
	position: relative;
	z-index: 5;
}
#footer_contact::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/footer_bg.jpg') no-repeat center center / cover;
	z-index: -1;
	opacity: .5;
}
#footer_contact h2{
	text-align: center;
	font-size: 3rem;
	margin-bottom: 2rem;
	font-weight: 600;
}
#footer_contact li{
	margin: 2rem 0;
}
.footer_contact__btn{
	background: rgba(255,255,255,.2);
	border: #fff solid 1px;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	font-weight: 600;
	line-height: 1.4;
}
#footer_contact__tel p{
	font-size: 3rem;
	margin-top: .5rem;
}
#footer_contact_mail .icon{
	width: 4rem;
	margin: 0 auto 1rem;
}
#site_footer__inner{
	background: var(--bk);
	padding: 3rem 0;
}
#footer_address{
	margin: 2rem 0;
}
#footer_address p{
	margin: 1rem 0;
	font-size: 1.2rem;
}
#footer_address p#footer_tel{
	font-size: 1.6rem;
	line-height: 1.5;
}
#footer_copy__wrap{
	font-size: 1.2rem;
	text-align: right;
	margin-top: 3rem;
}
#footer_copy{
	font-size: 1rem;
	margin: 1rem 0 0;
}






/* =top
-------------------------------------------------------------- */

#main_visual{
	position: relative;
	overflow: hidden;
}
#main_mov .img_clip::before{
	padding-top: 120%;
}
#main_mov .img_clip video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .7;
}
.loop_txt__wrap{
	position: absolute;
	bottom: 3rem;
	left: 0;
	width: 100%;
	z-index: 50;
	opacity: .7;
	white-space: nowrap;
}
.loop_txt{
	display: flex;
	animation: loop-slide 50s linear infinite;
	width: 500%;
}
.loop_txt li{
	font-size: 8rem;
	font-weight: 600;
	margin-right: 2rem;
	line-height: 1.2;
	letter-spacing: 0;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#front_about__txt .btn_link{
	margin: 3rem 0 0 auto;
}

#front_business{
	background: url('images/bg.jpg');
}
#front_business .wrapper{
	max-width: 1200px;
}
#front_business h2{
	text-align: right;
}
.business_link__wrap{
	display: flex;
	flex-wrap: wrap;
}
.business_link__wrap li{
	width: 50%;
	padding: .5rem;
}
.business_link{
	position: relative;
	display: block;
}
.business_link::after{
	content: '';
	width: calc(100% - 1rem);
	height: calc(100% - 1rem);
	border: #fff solid 1px;
	position: absolute;
	top: .5rem;
	left: .5rem;
	opacity: .7;
}
.business_link img{
	opacity: .5;
}
.business_link__txt{
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	white-space: nowrap;
	font-size: 1.8rem;
	font-size: 600;
	text-align: center;
}



#message_404 p{
	margin-bottom: 5rem;
}
#message_404 .btn_link{
	margin: 0;
}





/* =Contact
-------------------------------------------------------------- */

.require{
	background: #960014;
	color: #fff;
	font-size: 1.2rem;
	padding: .2rem 1rem;
	border-radius: 50px;
	margin-right: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  border: #ccc solid 1px;
	min-height: 4rem;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}

.form_wrap td .wpcf7-list-item{
	margin: .5rem 3rem .5rem 0;
}
.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}
.form_wrap tr{
	border: 0;
}
.form_wrap th{
	display: block;
	width: 100%;
	border-bottom: rgba(255,255,255,.6) solid 1px;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 0 0 .5rem;
}
.form_wrap td{
	display: block;
	padding: 2rem 0 5rem;
}
.form_wrap .attention{
	border: #fff dotted 1px;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
	word-break: break-all;
}
.policy_check{
	text-align: center;
	margin: 0 0 3rem;
}
.policy_check p{
	margin: 2rem 0;
}
.policy_check p a{
	text-decoration: underline;
	color: var(--orange);
}
.policy_check p a:hover{
	text-decoration: none;
}

.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: var(--orange);
}

.grecaptcha-badge{
	visibility: hidden;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 3rem 0;
}






/* =entry base
-------------------------------------------------------------- */

.news_list{
	margin-bottom: 3rem;
}
.news_box{
	position: relative;
	padding: 1rem 3rem 1rem 0;
	border-bottom: rgba(255,255,255,.7) solid 1px;
	display: block;
}
.news_box::after{
	content: '';
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--grad);
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	z-index: 5;
	transition: .5s;
}
.posted_title{
	margin-top: .5rem;
}
.news_box:hover .posted_title{
	text-decoration: underline;
}

.entry_header{
	border-bottom: #fff solid 2px;
	padding-bottom: 1rem;
	margin-bottom: 5rem;
}
.entry_header h1{
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: 600;
	margin-top: .5rem;
}
.entry_content{
	padding-bottom: 5rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--yellow) solid .4rem;
	font-weight: 600;
}
.entry_content h3{
	background: #fff;
	padding: 1rem;
	border-radius: .5rem;
	color: var(--bk);
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
	font-weight: 600;
}
.entry_content h4{
	font-size: 1.6rem;
	margin: 2rem 0;
	color: var(--yellow);
	font-weight: 600;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--orange);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
	padding: 1.5rem;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}

.wp-block-image{
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.wp-block-image figcaption{
	font-size: 1.2rem;
	margin: .5rem 0 0;
	text-align: center;
}
.wp-block-gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 0 !important;
}
.wp-block-gallery .wp-block-image{
	width: 50%;
	padding-right: 1rem;
	margin: .5rem 0;
}
.wp-block-embed{
	margin: 2rem 0;
}

div#toc_container{
  width: 100%;
  border: 0;
  border-top: #999 solid 1px;
  border-bottom: #999 solid 1px;
  margin: 3rem 0;
  padding: 3rem 0;
}
div#toc_container a{
  color: #000;
}
div#toc_container a:hover{
  color: var(--yellow_txt);
}
#toc_container p.toc_title{
  text-align: left;
  font-size: 1.8rem;
}
.toc_list > li{
  margin-bottom: 1rem !important;
}




/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.4rem;
	padding: 0 .5rem;
}
.page_links span.current{
	color: var(--orange);
}
.page_links a:hover{
	text-decoration: underline;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}
.nav_single{
	clear: both;
	display: flex;
  justify-content: center;
	font-size: 1.2rem;
}
.nav_single li{
	width: 33.33%;
	text-align: center;
}
.nav_single li a{
	display: block;
	padding: 1.5rem 0;
}
.nav_single .btn_link{
	max-width: 20rem;
	font-size: 1.2rem;
	padding: 1rem
}







/* =comapny
-------------------------------------------------------------- */

#greeting_name{
	margin-top: 3rem;
	text-align: right;
}

#concept_list li{
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
}
.concept_list__num{
	background: var(--blue);
	width: 8rem;
	height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	line-height: 1.4;
}
.concept_list__num span{
	font-size: 200%;
	line-height: 1;
	font-weight: 700;
	display: block;
}
#concept_list li h3{
	margin: 1rem 0;
	line-height: 1.5;
	font-size: 1.8rem;
	flex: 1;
	margin-left: 1rem;
}






/* =business
-------------------------------------------------------------- */

.business_block__img{
	box-shadow: .5rem .5rem var(--blue);
}
.business_block__img img{
	width: 100%;
}
.business_block__txt{
	margin-top: 3rem;
}

.intro_txt{
	margin-bottom: 5rem;
}




/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 2rem 0;
		width: 25%;
	}
	table td{
		padding: 2rem;
	}
	.section{
		padding: 5rem 0;
	}
	.section_title{
		font-size: 8rem;
	}
	.block{
		margin-bottom: 8rem;
	}
	.block_inner{
		padding-left: 10%;
	}
	.block_title{
		font-size: 3rem;
		margin-bottom: 3rem;
	}
	.page_title{
		font-size: 5rem;
	}
	.wp-block-gallery.columns-3 .wp-block-image{
		width: 33.33%;
	}
	.wp-block-gallery.columns-4 .wp-block-image{
		width: 25%;
	}
	.wp-block-gallery.columns-5 .wp-block-image{
		width: 20%;
	}
	#footer_contact h2{
		font-size: 4rem;
		line-height: 1;
		margin-bottom: 3rem;
	}
	#footer_contact ul{
		display: flex;
		justify-content: space-between;
	}
	#footer_contact li{
		width: 48%;
		margin: 0;
	}
	.footer_contact__btn{
		height: 12rem;
	}
	#footer_copy__wrap{
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
	#footer_copy{
		margin: 0 auto 0 0;
	}
	#main_mov .img_clip::before{
		padding-top: 70%;
	}
	#front_about__txt{
		width: 70%;
		margin: 0 0 0 auto;
	}
	#front_about__txt p{
		line-height: 2;
	}
	#front_business h2{
		margin-bottom: 0;
	}
	.business_link__wrap li{
		width: 25%;
		padding: 0;
	}
	.business_link__wrap li:first-child{
		margin-top: -5rem;
	}
	.business_link__wrap li:nth-child(3){
		margin-top: 5rem;
	}
	.business_link__wrap li:nth-child(4){
		margin-top: 10rem;
	}
	#front_news{
		padding: 0 0 10rem;
		margin-top: -5rem;
		position: relative;
		z-index: 5;
	}
	#front_news .btn_link{
		margin: 0 0 0 auto;
	}
	.news_box{
		display: flex;
	}
	.news_box .posted_date{
		width: 12rem;
	}
	.posted_title{
		margin: 0;
		flex: 1;
	}
	.form_wrap th{
		display: table-cell;
		padding: 2.5rem 0;
		border: 0;
		width: 30%;
	}
	.form_wrap td{
		display: table-cell;
		padding: 2rem;
	}
	#concept_list li h3{
		margin-left: 2rem;
	}
	#concept_list li:nth-child(2){
		margin-left: 5rem;
	}
	#concept_list li:nth-child(3){
		margin-left: 10rem;
	}
	.business_block{
		display: flex;
		justify-content: space-between;
	}
	.business_block:nth-child(2n){
		flex-direction: row-reverse;
	}
	.business_block__img{
		width: 35%;
	}
	.business_block__txt{
		width: 55%;
	}
	.business_block__txt h2{
		font-size: 2.4rem;
	}
}



@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
	#site_header{
		padding: 0;
		display: flex;
		align-items: center;
		height: var(--header_height);
	}
	.scroll #site_header{
		background: rgba(0,0,0,.6);
	}
	#header_logo{
		margin-left: 3rem;
	}
	.site_logo__txt{
		font-size: 1.4rem;
	}
	#header_nav__btn{
		display: none;
	}
	#header_nav__inner{
		padding: 0;
		opacity: 1;
		visibility: visible;
		overflow: visible;
		position: static;
		background: none;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		max-width: 100%;
		width: auto;
	}
	.main_navigation{
		display: flex;
		margin: 0;
	}
	.main_navigation li{
		margin-right: 2rem;
	}
	.main_navigation li a{
		padding: 0;
		font-size: 1.4rem;
	}
	.letter_wrap .letter {
		overflow: hidden;
		color: transparent;
		text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
		transition: text-shadow 0.2s;
		transition-delay: calc(var(--index) * 0.05s);
	}
	.current .letter_wrap .letter {
		text-shadow: 0 0 0 var(--yellow) ,-1.5em 0 0 var(--yellow);
	}
	a:hover .letter_wrap .letter {
		text-shadow: 0 0 0 var(--yellow) ,-1.5em 0 0 var(--yellow);
	}
	#header_contact{
		height: var(--header_height);
		display: flex;
		align-items: center;
		justify-content: center;
		width: 15rem;
		margin-left: 2rem;
	}
	#footer_contact::before{
		background-attachment: fixed;
	}
	#main_mov .img_clip::before{
		padding-top: 0;
		height: 100vh;
	}
	.loop_txt li{
		font-size: 15rem;
	}
	.news_box{
		padding: 1.5rem 3rem 1.5rem 0;
	}
}



@media screen and (min-width: 1200px){
	.page_header{
		height: 30rem;
	}
	.section_title{
		font-size: 10rem;
	}
	.page_title{
		font-size: 8rem;
	}
	.page_title__jp{
		left: 1rem;
	}
	#front_news h2{
		margin-left: -5rem;
	}
}





@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: 
		translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn_link:hover::after{
		scale: 1.5;
	}
	.news_box:hover::after{
		scale: 1.5;
	}
	a:hover .img_clip img{
		scale: 1.1;
	}
	.footer_contact__btn:hover{
		background: rgba(255,255,255,.3);
	}
}



.animation_wrap{
	position: relative;
}
.animation{
	transition-duration: .8s;
}

.fadein{
	opacity: 0;
	visibility: hidden;
	transition-duration: 2s;
}
.fadeinUp{
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition-duration: 2s;
}
.slideinleft{
	visibility: hidden;
	transform: translateX(-100%);
}
.slideinright{
	visibility: hidden;
	transform: translateX(100%);
}
.effect{
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

.slideintxt{
	position: relative;
}
.slideintxt span{
	transform: translateX(30px);
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	transition-duration: 1s;
}
.slideintxt span:nth-child(2){
	transition-delay: .1s;
}
.slideintxt span:nth-child(3){
	transition-delay: .2s;
}
.slideintxt span:nth-child(4){
	transition-delay: .3s;
}
.slideintxt span:nth-child(5){
	transition-delay: .4s;
}
.slideintxt span:nth-child(6){
	transition-delay: .5s;
}
.slideintxt span:nth-child(7){
	transition-delay: .6s;
}
.slideintxt span:nth-child(8){
	transition-delay: .7s;
}
.slideintxt span:nth-child(9){
	transition-delay: .8s;
}
.slideintxt span:nth-child(10){
	transition-delay: .8s;
}
.slideintxt span:nth-child(11){
	transition-delay: 1s;
}
.slideintxt span:nth-child(12){
	transition-delay: 1.1s;
}
.slideintxt span:nth-child(13){
	transition-delay: 1.2s;
}
.slideintxt span:nth-child(14){
	transition-delay: 1.3s;
}
.slideintxt span:nth-child(15){
	transition-delay: 1.5s;
}

.business_link__wrap li:nth-child(2){
	transition-delay: .3s;
}
.business_link__wrap li:nth-child(3){
	transition-delay: .6s;
}
.business_link__wrap li:nth-child(4){
	transition-delay: .9s;
}

.business_block__txt{
	transition-delay: .3s;
}