@charset "utf-8";
/*
Theme Name: lightning-child
Template: lightning
*/
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #333;
	--color-primary: #000;
	--color-primary-shade: #000;
	--color-primary-tint:#000;
	--color-secondary: #333;
	--color-secondary-tint: #333;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*-------------------------------------------
   サイト全体共通
--------------------------------------------*/

html {
	font-size: 62.5%; /*ルート指定：1rem＝10px*/
}
body {
	overflow-x: hidden;
	font-size: 1.6rem; /*サイト全体の基準となる文字サイズ*/
	font-family: 'Roboto','Noto Sans JP', sans-serif;
	font-weight:normal;
	color:var(--color-font);
}
h1, h2, h3, h4, a,p {
    color: var(--color-font);
    font-family: 'Roboto','Noto Sans JP', sans-serif !important;
    font-weight: normal;
    font-size: 1.6rem;
	line-height:1.6;
    margin: 0;
	padding:0;
	border:none;
	border-radius:0;
	background:none;
}
* {
	box-sizing: border-box;
}
body img{
	display:block;
	margin:auto;
}
a img{
    backface-visibility: visible;
	transition:all ease .15s;
}
a:hover{
	color:#999;
}
a:hover img{
	opacity:.5;
}
/*------------------------
    ファーストビュー切り替え
------------------------*/
.metaslider{
	margin-top:-10rem;
}
@media screen and (max-width:991px){
.metaslider{
	margin-top:-6rem;
}
}
@media screen and (min-width:751px){
	.pc_hero{
		display:block;
	}
	.sp_hero{
		display:none;
	}
}
@media screen and (max-width:750px){
	.pc_hero{
		display:none;
	}
	.sp_hero{
		display:block;
	}
}
/*------------------------
     改行位置の調整
------------------------*/
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*------------------------------------------
lightning 打消し
--------------------------------------------*/
header.site-header{
	background:transparent;
	box-shadow:none;
}

@media screen and (min-width:992px){
/*ヘッダー*/
header.site-header{
	height:100px;
} 
div#site-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: unset;
	padding:0;
}
.site-header--layout--nav-float .site-header-logo {
    width: auto;
    padding: 0;
    margin: 0;
}
.site-header-logo img{
	max-height: 5rem;
}
div#site-header-container .site-header-logo {
    padding: 2rem 3rem;
}
header.site-header nav#global-nav ul li a {
    padding: 2rem;
}
.global-nav-list>li .global-nav-name{
	font-size:1.6rem;
}
.global-nav-list>li .global-nav-description {
    font-size: 60%;
    line-height: 1.4;
    opacity: 1;
}
header.site-header nav#global-nav ul li:last-child a{
	padding-right:3.5rem;
}
header.site-header nav#global-nav ul li:before{
	display:none;
}
.header_scrolled .site-header{
	position:fixed;
    width: 100%;
    max-width: 100vw;
	box-shadow:none;
    top: -100px;
    transform: translatey(100px);
    transition: all .7s .25s ease-in-out;
	animation:unset;
}
.header_scrolled .site-header-logo{
	display:block;
}
.header_scrolled .site-header .global-nav {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-end;
}
}
/*フッター*/
footer.site-footer{
	border:none;
}
footer.site-footer .container.site-footer-copyright {
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
}
footer.site-footer .container.site-footer-copyright p{
	margin:0;
	font-size:1.4rem;
}
footer.site-footer .container.site-footer-copyright p:not(:first-child){
	display:none;
}
/*フッター上部*/
.container.site-footer-content {
    padding: 0;
    width: min(1100px,95%);
    margin: auto;
	max-width:unset;
}
.row {
    margin-right: 0;
    margin-left: 0;
}
.site-footer .widget:last-child {
    margin-bottom:0;
}
.container.site-footer-content .row .col-lg-4 figure.wp-block-image{
	margin:0;
}

/*下層ページヘッダー*/
.page-header {
    min-height:calc(30rem + (1vw - 1.92rem) * 6.4725);/*30-20(375)*/
	margin:0 !important;
}
/*見出し等*/
.container {
    width: 100%;
    max-width: unset;
    margin: 0;
    padding: 0;
}
h3:after{
	display:none;
}
/*投稿アーカイブページ*/
body.archive .site-body {
    padding: 8rem 0 10rem;
}
body.archive .site-body-container.container{
	display:flex;
	justify-content:space-between;
	width:min(110rem,95%);
	margin:auto;
}
body.archive .site-body-container.container .main-section{
	width:min(82.5rem,100%);
}
body.archive .site-body-container.container .sub-section{
	width:min(20rem,100%);
}
body.archive .vk_posts-mainSection .vk_post:first-child{
	padding-top:0;
	border-top:0;
}
.vk_posts {
    margin-left: 0;
    margin-right: 0;
}
.vk_post.media {
    margin: 0;
}
.site-footer-title:after, .sub-section-title:after, h3:after {
    border-bottom: 1px solid var(--color-primary);
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
	transition:all ease .25s;
}
.btn-primary:hover{
	opacity:.5;
}
/*投稿アーカイブページの不要物削除*/
body.archive aside.widget.widget_media {
    display: none;
}
/*投稿詳細ページ*/
body.single-post .page-header{
	display:none;
}
body.single-post .site-body{
	padding:10rem 0;
	width:min(80rem,95%);
	margin:auto;
}
body.single-post h1.entry-title{
	font-size:2.4rem;
	font-weight:500;
	padding-bottom:1.5rem;
	margin-bottom:5px;
	border-bottom:1px solid #ccc;
}
body.single-post .entry-meta{
	text-align:right;
}
body.single-post .entry-meta span{
	font-size:1.4rem;
}
body.single-post .entry-body{
	line-height:2;
}
body.single-post .entry-footer{
	display:none;
}
body.single-post .entry-meta span.entry-meta-item-updated, body.single-post span.entry-meta-item-author{
	display:none;
}
body.single-post .next-prev{
	display:none;
}
body.single-post .comments-area {
    display: none;
}
.entry-body>.vk_posts>.media.vk_post-col-sm-12:first-child, 
.main-section>.vk_posts>.media.vk_post-col-sm-12:first-child {
    border-top: none;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active {
    background-color:var(--color-primary);
    border-color: var(--color-primary);
}

/*リスト*/
ol, ul {
    padding-left:0;
	margin:0;
}
ul li {
    margin-top: 0;
    margin-bottom: 0;
	list-style:none;
}
/*パンくずリスト*/
.breadcrumb{
	border:none;
	background:#f9f9f9;
}
ol.breadcrumb-list{
	width:min(110rem,95%);
	margin:0 auto;
	padding:3px 0;
}
ol.breadcrumb-list li a{
	font-size:1.4rem;
}
@media screen and (max-width:767px){
body.archive.category .site-body-container.container {
    flex-direction: column;
}
body.archive.category .vk_post.media {
    flex-direction: column;
    align-items: center;
}
body.archive.category .vk_posts .vk_post-col-xs-12 {
    width:100%;
}
body.archive.category .vk_post .media-img {
    width: 100%;
    margin: 0;
}
body.archive.category .vk_post-btn-display.media .vk_post_body {
    padding-bottom: 30px;
	width:100%;
	margin-top:1rem;
}
body.archive.category .site-body-container.container .sub-section {
    width: 100%;
}
body.archive.category .site-body-container.container .sub-section h4,
body.archive.category .site-body-container.container .sub-section ul li a{
	font-size:1.4rem;
}
}
/*------------------------------------------
lightning 打消し(レスポンシブ)
--------------------------------------------*/
@media screen and (max-width:991px){
header.site-header {
    height: 60px;
}
header .site-header-container {
    padding: 0;
    margin: 0;
    height: 100%;
}
header .site-header-container .site-header-logo {
    padding: 0;
    margin: 0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-header-container .site-header-logo a {
    margin-left: 2rem;
}
header .site-header-container .site-header-logo img {
    max-height: 2.5rem;
    margin: 0 auto 0 0;
}
.vk-mobile-nav-menu-btn {
    top: 10px;
    border: none;
    width: 40px;
    height: 40px;
}
.vk-mobile-nav-menu-btn.menu-open {
    border-color:transparent;
	border:none;
}
.alert-info {
    display: none;
}
.vk-mobile-nav {
    padding: 60px 1rem 0;
    background-color: rgb(255 255 255 / 95%);
}
.vk-mobile-nav.vk-mobile-nav-open.vk-mobile-nav-right-in {
    padding: 6rem 1rem 0;
    margin:0;
}
.vk-mobile-nav.vk-mobile-nav-right-in {
    transition: all .5s ease;
}
}
/*------------------------------------------
  CONTACT お問い合わせページ
--------------------------------------------*/
.wpcf7-form {
    padding: 0;
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url], select, textarea {
    font-size: 1.2rem;
}
input[type=submit]{
	font-size:1.4rem;
}
.post-name-contact .entry-body {
    padding: calc(10rem + (1vw - 1.92rem) * 2.5890) 0;
    width: min(110rem,90%);
    margin: auto;
}
.post-name-contact .entry-body table,
.post-name-contact .entry-body table th,
.post-name-contact .entry-body table td {
    border: none;
}
.post-name-contact .entry-body table{
	margin-bottom:0;
}
.post-name-contact .entry-body table tr{
	border-bottom:1px solid #ccc;
}
.post-name-contact .entry-body table tr:first-child{
	border-top:1px solid #ccc;
}
.post-name-contact .entry-body table th,
.post-name-contact .entry-body table td{
	padding:2rem 2.5rem;
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(375)*/
}
.post-name-contact .entry-body table th{
	width:30%;
	vertical-align:middle;
	background:#f7f7f7;
	text-align:left;
}
body.post-name-contact .entry-body table td img{
	display:inline-block;
}
.wpcf7-form .must {
    color: #fff;
    font-weight: normal;
	background:rgb(255 82 83);
    margin-left: 0;
    font-size: 1.2rem;
    padding: 0px 10px;
    display: inline-block;
    line-height: 2;
	float:right;
}
.wpcf7-form .nini{
	background:#999;
}
/*チェックボックスズレ解消*/



/*同意ボタン調整*/
.agree_btn {
    margin: 3rem 0;
}
.agree_btn div,.agree_btn p{
	text-align:center;
}
.agree_btn div .wpcf7-list-item {
    margin: 0;
}
.agree_btn p,.agree_btn p a{
	font-size:90%;
}

/*送信ボタン調整*/
.SendBtn {
	text-align: center;
}
.SendBtn input[type="submit"], .SendBtn input[type="reset"], .SendBtn input[type="button"] {
    padding: 15px 100px;
    border-radius: 0vw;
	background-color:var(--color-primary);
    border: 1px solid var(--color-primary);
    transition: all ease .3s;
}
.SendBtn input[type="submit"]:hover, .SendBtn input[type="reset"]:hover, .SendBtn input[type="button"]:hover{
	color:var(--color-primary);
	background:transparent;
	transition:all ease .3s;
}
.wpcf7-spinner{
	display:none;
}
/*お問い合わせページのみフッター削除*/
body.post-name-contact .footer_cta{
	display:none;
}

@media screen and (max-width:800px){
.wpcf7-form .must {
    margin-left: 2rem;
	font-size:1rem;
}
.post-name-contact .entry-body table tr {
    display: flex;
    flex-direction: column;
}

	.post-name-contact .entry-body table th,
	.post-name-contact .entry-body table td{
		padding:1.5rem 2rem;
		text-align:left;
		font-size:1.4rem;
		width:100%;
	}
}



/*------------------------------------------
  ORIGINAL
--------------------------------------------*/
.hpme .site-header-logo img{
	display:none;
}
.home.header_scrolled .site-header-logo a{
	position:relative;
}
.home.header_scrolled .site-header-logo a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: url(/wp-content/uploads/logo-3.png) no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
}
body:not(.home) .site-header-logo a{
	position:relative;
}
body:not(.home) .site-header-logo a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: url(/wp-content/uploads/logo-3.png) no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
}
/*グローバルメニュー*/
header.site-header nav#global-nav,
header.site-header nav#global-nav ul{
	height:100%;
}

header.site-header nav#global-nav ul li a strong{
	position:relative;
	transition:all ease .15s;
}
.home header.site-header nav#global-nav ul li a strong{
	color:#fff;
}
.home.header_scrolled header.site-header nav#global-nav ul li a strong{
	color:#333;
}
header.site-header nav#global-nav ul li a:hover strong{
	opacity:.5;
}
/*フッター*/
footer.site-footer {
    border: none;
    padding: 5rem 0;
    background:var(--color-primary);
}
.container.site-footer-content .row{
	justify-content:space-between;
	align-items:center;
}
.container.site-footer-content .row .col-lg-4:first-child{
	width:30rem;
}
.container.site-footer-content .row .col-lg-4{
	max-width:unset;
	width:auto;
	flex:unset;
	padding:0;
}
.container.site-footer-content .row .col-lg-4 figure img {
    width: 100%;
    margin: 0 auto 0 0;
}
.container.site-footer-content .row .col-lg-4:nth-child(2){
	display:none;
}
.container.site-footer-content .row .col-lg-4 ul.menu{
	display:flex;
}
.container.site-footer-content .row .col-lg-4 ul.menu li:not(:first-child){
	margin-left:1.5em;
}
.container.site-footer-content .row .col-lg-4 ul.menu li a{
	color:#fff;
	border:none;
	padding:0;
	font-size:1.4rem;
}
.container.site-footer-content .row .col-lg-4 ul.menu li a:hover{
	text-decoration:underline;
	color:#999;
	background-color:transparent;
}
footer.site-footer .container.site-footer-copyright{
	padding-top:5rem;
	border-top:1px solid #fff;
	width:min(110rem,95%);
	margin:5rem auto 0;
}
footer.site-footer .container.site-footer-copyright p{
	text-align:right;
	color:#fff;
}
@media screen and (max-width:767px){
.container.site-footer-content .row {
    flex-direction: column;
}
.container.site-footer-content .row .col-lg-4:first-child {
    width: 20rem;
    margin-bottom: 2rem;
}
.container.site-footer-content .row .col-lg-4 ul.menu li a {
    font-size: 1.2rem;
}
footer.site-footer .container.site-footer-copyright p {
    text-align: center;
    font-size: 1.2rem;
}
footer.site-footer .container.site-footer-copyright {
    margin: 5rem auto 0;
}
}

/*------------------------------------------
  よく使うCSS
--------------------------------------------*/
.flex{
	display:flex;
	flex-wrap:wrap;
}
.row_reverse{
	flex-direction:row-reverse;
}
.center{
	text-align:center;
}
@media screen and (max-width:767px){
.flex{
	flex-direction:column;
}
}
/*-------------------------------------------
    　　プライバシーポリシー
-------------------------------------------*/
div#privacy {
    padding: calc(10rem + (1vw - 1.92rem) * 2.5890) 0;/*10-6(375)*/
	width:min(110rem,95%);
	margin:auto;
}
div#privacy h3 {
    font-size:calc(2.4rem + (1vw - 1.92rem) * 0.2589);
	font-weight:bold;
    margin:calc(5rem + (1vw - 1.92rem) * 1.2945) 0 1rem;/*5-3(375)*/
	line-height:1.5;
}
div#privacy h4{
	margin:3rem 0 1rem;
	font-size:calc(2rem + (1vw - 1.92rem) * 0.1294);/*2-1.8*/
	font-weight:500;
}
div#privacy p{
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(375)*/
	line-height:1.6;
}
div#privacy ul li{
	line-height:1.6;
	position:relative;
	padding-left:1em;
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(375)*/
}
div#privacy ul li:before{
	position:absolute;
	content:"・";
	top:0;
	left:0;
}
/*-------------------------------------------
    　サイトマップ
-------------------------------------------*/
body.post-name-sitemap .entry-body{
    padding: calc(10rem + (1vw - 1.92rem) * 2.5890) 0;/*10-6(375)*/
	width:min(110rem,95%);
	margin:auto;
}
.entry-body ul#sitemap_list li{
	padding-left:0;
	font-size:1.8rem;
	padding-bottom:1rem;
	border-bottom:1px dashed #a1a1a1;
	margin-top:1rem;
	margin-bottom:0;
	position:relative;
}
.entry-body ul#sitemap_list li a{
	position:relative;
	padding-left:1.2em;
}
.entry-body ul#sitemap_list li a:before {
    position: absolute;
    content: "";
    border: 5px solid transparent;
    border-left: 10px solid var(--color-primary);
    top: 50%;
    left: 0;
    transform: translatey(-50%);
}
.entry-body ul#sitemap_list li.cat-item{
	padding-bottom:0;
}
.entry-body ul#sitemap_list li.cat-item ul li{
	border-bottom:none !important;
	padding-left:1em;
	font-size:16px;
}
@media screen and (max-width:1023px){
.entry-body ul#sitemap_list li{
	font-size:16px;
}
.entry-body ul#sitemap_list li a:before {
    border: 5px solid transparent;
    border-left: 10px solid var(--color-primary);
}
.entry-body ul#sitemap_list li.cat-item ul li{
	font-size:14px;
}
}
/*------------------------------------------
  TOP 新着情報一覧
--------------------------------------------*/
section.front_news{
	position:relative;
	z-index:0;
}
section.front_news .front_news_inner {
    width: min(100rem,90%);
    margin: auto;
    padding:20rem 0;
}
section.front_news .front_news_inner h2{
	font-size:7.2rem;
	font-weight:bold;
	text-align:left;
	line-height:1.2;
}
section.front_news .front_news_inner h2 span{
	display:block;
	font-size:3.2rem;
}
.front_news_list{
	margin-top:5rem;
}
.front_news_list ul{
	padding:0;
	margin:0;
}
.front_news_list ul li{
	list-style:none;
	margin:0;
	padding:3.5rem 0;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
}
.front_news_list ul li a{
	text-decoration:none;
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);
	transition:all ease .15s;
}
.front_news_list ul li a:hover{
	color:#999;
}
.front_news_list ul li a span.cate {
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    background: var(--color-primary);
    color: #fff;
    display: inline-block;
}
.front_news_btn {
    text-align: right;
    margin-top: .8rem;
}
.front_news_btn a {
    position: relative;
    padding: 0 0 5px;
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);
    z-index: 0;
	transition:all ease .3s;
}
.front_news_btn a:hover{
	color:#999;
}
.front_news_btn a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background:#000;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
    z-index: 0;
}
.front_news_btn a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.front_news_btn a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #cfcfcf;
    z-index: -1;
}
@media screen and (max-width:767px){
section.front_news .front_news_inner {
    padding: 10rem 0;
}
.front_news_list ul li {
    padding: 2.5rem 0;
}
section.front_news .front_news_inner ul li a span.ttl{
	display:block;
	margin-top:5px;
}
}
/*------------------------------------------
  TOPページ
--------------------------------------------*/
* p.txt{
	line-height:2;
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(768)*/
}
table th,
table td,
ul li,
dl dt,
dl dd{
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(768)*/
	line-height:1.6;
}
img.cover{
	object-fit:cover;
	width:100%;
	height:100%;
}
img.contain{
	object-fit:contain;
	width:100%;
	height:100%;
}
.top_page{
	overflow:hidden;
}
a.btn,a.link_btn{
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(768)*/
	line-height:1.6;
}
a.link_btn{
	position: relative;
    display: inline-block;
    color: #fff;
    padding: 15px 60px 14px 20px;
    background: #000;
    border: 1px solid #000;
    text-decoration: none;
    outline: none;
    transition: all .25s;
		&:before{
		position:absolute;
		content:"";
		top:50%;
		right:0;
		transform:translatey(-50%);
		width:40px;
		height:1px;
		background:#fff;
    	transition: all .4s;
	}
&:hover{
	background:#fff;
	color:#000;
    transition: all .25s;
&:before{
	width:25px;
	background:#000;
    transition: all .4s;
}
}
}
a#scrollUp{
	background:var(--color-secondary);
}

section.top_about{
	& .inner{
		width:min(1100px,90%);
		margin:0 auto;
		padding:15rem 0;
		text-align:center;
		& h2{
			font-size:7.2rem;
			font-weight:bold;
		}
		& p.ttl{
			font-weight:bold;
			font-size:4rem;
			margin:5rem 0 6rem;
		}
	}
}
@media screen and (max-width:767px){
section.top_about{
	& .inner{
		padding:6rem 0 ;
		& h2{
			font-size:4rem;
		}
		& p.ttl{
			font-size:1.8rem;
			margin:3rem 0 4rem;
		}
	}
}
}

section.top_service{
	width:min(170rem,90%);
	margin:0 0 0 auto;
	& .flex{
		justify-content:space-between;
		align-items:center;
			& .txt_box{
				width:37%;
				& p.txt{
					font-size:2.8rem;
				}
			}
			& figure{
				width:55%;
				height:50rem;
				& img{
					width:100%;
					height:100%;
					object-fit:cover;
				}
			}
	}
}
@media screen and (max-width:767px){
section.top_service{
	margin:0 auto;
	& .flex{
			& .txt_box{
				width:100%;
				margin-bottom:3rem;
				& p.txt{
					font-size:1.8rem;
				}
			}
			& figure{
				width:100%;
				height:20rem;
				margin-bottom:5rem;
			}
	}
}
}

section.top_work{
	width:min(1100px,90%);
	margin:10rem auto 15rem;
	& h2{
		font-size:4.8rem;
		font-weight:bold;
		margin-bottom:3rem;
	}
	& .grid{
		display:grid;
		grid-template-columns:repeat(3,1fr);
		gap:3%;
		row-gap:2rem;
		& figure{
			width:100%;
			height:auto;
			aspect-ratio:3/2;
			& img{
				width:100%;
				height:100%;
				object-fit:cover;
			}
		}
	}
}
@media screen and (max-width:767px){
section.top_work{
	width:min(1100px,90%);
	margin:3.5rem auto 8rem;
	& h2{
		font-size:4.8rem;
		font-weight:bold;
		margin-bottom:3rem;
	}
	& .grid{
		grid-template-columns:repeat(2,1fr);
		row-gap:1.5rem;
	}
}
}
section.top_contact{
	width:100%;
	height:45rem;
	overflow:hidden;
	margin-top:15rem;
	& a{
		position:relative;
		width:100%;
		height:100%;
		display:flex;
		align-items:center;
		justify-content:center;
		z-index:0;
		& h2{
			font-size:7.2rem;
			font-weight:bold;
			line-height:1.1;
			color:#fff;
		}
		&:before{
		position:absolute;
		content:"";
		width:100%;
		height:100%;
		background:url(/wp-content/uploads/shutterstock_1676026267.jpg) no-repeat;
		background-size: cover;
    	background-position: center 75%;
    	filter: grayscale(95%);
		transform:scale(1.001);
			transition:all ease .5s;
		z-index:-1;
	}
		&:after{
		position:absolute;
		content:"";
		width:100%;
		height:100%;
			background:rgba(0 0 0 / 0%);
		transform:scale(1.001);
		transition:all ease .5s;
		z-index:-1;
	}	
		&:hover:before{
			transform:scale(1.1);
		}
		&:hover:after{
			background:rgba(0 0 0 / 50%);
		}	
	}
}
@media screen and (max-width:767px){
section.top_contact{
	height:25rem;
	margin-top:10rem;
	& a{
		& h2{
			font-size:4.2rem;
		}
	}
}
	section.front_news .front_news_inner h2{
		font-size:4.2rem;
		& span{
			font-size:2rem;
		}
	}
}

/*------------------------------------------
  下層設定
--------------------------------------------*/
.page_inner {
    padding:calc(10rem + (1vw - 1.92rem) * 2.5890) 0 calc(15rem + (1vw - 1.92rem) * 4.5307);/*10-6(375) 15-8(375)*/
}
.page-header{
	position:relative;
	z-index:0;
	min-height: 40rem;
}
.page-header:before{
	position:absolute;
	content:"";
	z-index:-1;
	background:rgba(0 0 0 /45%);
	width:100%;
	height:100%;
	top:0;
	left:0;
}
body .page-header{
	background:url(/wp-content/uploads/shutterstock_2495413241.jpg) no-repeat;
	background-size:cover;
	background-position:top 75% left 50%;
	filter:grayscale(1);
}
body.post-name-service .page-header{
	background:url(/struct/wp-content/uploads/service_eye.jpg) no-repeat;
	background-size:cover;
	background-position:top 50% left 50%;
	filter:grayscale(1);
}
body.post-name-contact .page-header{
	background:url(/struct/wp-content/uploads/contact_eye.jpg) no-repeat;
	background-size:cover;
	background-position:top 50% left 50%;
	filter:grayscale(1);
}
body.archive .page-header{
	background:url(/struct/wp-content/uploads/eye004.jpg) no-repeat;
	background-size:cover;
	background-position:top 50% left 50%;
	filter:grayscale(1);
}
body.post-name-privacy-policy .page-header,
body.post-name-sitemap .page-header{
	background:url(/struct/wp-content/uploads/privacy_eye.jpg) no-repeat;
	background-size:cover;
	background-position:top 50% left 50%;
	filter:grayscale(1);
}
h1.page-header-title{
    font-size: calc(4.8rem + (1vw - 1.92rem) * 1.1650);/*4.8-3(375)*/
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: #fff;
}
@media screen and (max-width:991px){
.page-header{
	min-height: 20rem;
}
}
/*------------------------------------------
  会社概要
--------------------------------------------*/
div#post-14 .page_inner section{
	width:min(110rem,95%);
	margin:auto;
}
div#post-14 .page_inner section:not(:first-child) {
    margin-top: calc(15rem + (1vw - 1.92rem) * 5.1780);
}
div#post-14 section h2 {
	font-size:calc(5rem + (1vw - 1.92rem) * 1.2945);/*5-3(375)*/
    font-weight: bold;
	line-height:1.4;
	color:#000;
    position: relative;
	text-align:center;
    padding-bottom: 3rem;
    margin-bottom: calc(5rem + (1vw - 1.92rem) * 1.2945);/*5-3(375)*/
}
div#post-14 section h2 span{
    display: block;
    color: #777;
    font-size: 50%;
    font-weight: 400;
}
div#post-14 section h2:before{
	position:absolute;
	content:"";
	background:#000;
	width:4rem;
	height:5px;
	top:auto;
	bottom:0%;
	left:50%;
	transform:translatex(-50%);
}
div#post-14 table, 
div#post-14 table th, 
div#post-14 table td {
    border: none;
}
div#post-14 section table tr:first-child{
	border-top:1px solid #ccc;
}
div#post-14 section table tr{
	border-bottom:1px solid #ccc;
}
div#post-14 section table th,
div#post-14 section table td{
	padding:2.5rem calc(2rem + (1vw - 1.92rem) * 0.6472);/*2-1(375)*/
	vertical-align:middle;
	font-size:calc(1.6rem + (1vw - 1.92rem) * 0.1294);/*1.6-1.4(375)*/
}
div#post-14 section table th{
	width:30%;
	background:#f7f7f7;
}
div#post-14 section table td{
	background:rgb(255 255 255 / 65%);
}
div#post-14 section table td ul li{
	padding-left:1em;
	position:relative;
}
div#post-14 section table td ul li:before{
	position:absolute;
	content:"・";
	top:0;
	left:0;
}
div#post-14 section iframe{
	width:100%;
	height:50rem;
}

@media screen and (max-width:767px){
div#post-14 section h2:before {
    height: .3rem;
    bottom: 5%;
}
div#post-14 section iframe{
	height:30rem;
}
}

/*-------------------------------------------
    　事業内容
-------------------------------------------*/

div#post-16 ul li {
    justify-content: space-between;
	align-items:center;
    width: min(180rem,95%);
}
div#post-16 ul li:nth-child(even){
	flex-direction:row-reverse;
	margin:0 0 0 auto;
}
div#post-16 ul li:not(:first-child){
	margin-top:10rem;
}
div#post-16 ul li figure{
	width:52%;
	height:45rem;
}
div#post-16 ul li figure img{
	width:100%;
	height:100%;
	object-fit:cover;
}
div#post-16 ul li .txt_box{
	width:42%;
}
div#post-16 ul li .txt_box h2{
	display:flex;
	flex-wrap:wrap;
}
div#post-16 ul li .txt_box h2 span.num {
    background: #fff;
    position: relative;
    z-index: 0;
    font-size: 2rem;
	color:var(--color-primary);
}
div#post-16 ul li .txt_box h2 span.num:first-child{
	padding-right:1rem;
	margin-right:5rem;
}
div#post-16 ul li .txt_box h2 span.num:first-child:before{
	position:absolute;
	content:"";
	top:50%;
	left:100%;
	width:4rem;
	height:1px;
	background:var(--color-primary);
	z-index:-1;
}
div#post-16 ul li .txt_box h2 span.num:last-child{
	padding-left:1rem;
}
div#post-16 ul li .txt_box h2 span.w_100 {
    width: 100%;
	font-weight:bold;
    font-size: 3.2rem;
}

@media print, screen and (max-width:767px){
section.service_lead{
	margin-bottom:7rem;
	& .inner{
		padding:2rem;
		border-radius:25px;
		background:#f9f9f9;
		& p.txt{
			text-align:left;
		}
	}
}
div#post-16 ul li:not(:first-child) {
    margin-top: 6rem;
}
div#post-16 ul li figure{
	width:100%;
	margin-bottom:2rem;
	height:20rem;
}
div#post-16 ul li .txt_box {
    width: 95%;
	margin-left:5%;
}
div#post-16 ul li:nth-child(even) .txt_box {
	margin-right:5%;
	margin-left:auto;
}
div#post-16 ul li .txt_box h2 {
    margin-bottom: 2rem;
}
div#post-16 ul li .txt_box h2 span.num {
    font-size: 1.6rem;
}
div#post-16 ul li .txt_box h2 span.w_100 {
    font-size: 2.4rem;
}
}





