@charset "UTF-8";
/*
Theme Name: HigashiSakura
Theme URI: https://wordpress.org/themes/HigashiSakura/
Author: the WordPress team

*/

/*変数*/
:root {
	--main_color: #009276;
	--ttl_color: #314d93;
	 --txt_color: #333333;
	--hover_color: #e4821d;
	--en_font: "Noto Sans JP", "Arial", sans-serif;
	--mincho: "Noto Serif JP", '游明朝','Yu Mincho',YuMincho, 'Hiragino Mincho ProN', sans-serif;
}
/*呼び出し方は var(--main_color)*/

/*ベース*/
main{
	/*overflow: hidden;*/
}
p, li, a, dt, dd, address, th, td, label, input, textarea{
	font-size: 1rem;
	line-height: 2;
	color: var(--txt_color);
}
section {
    /*margin: 10% 0;*/
	padding: 10% 0;
}
.sec {
	padding: 6% 0;
}
.inner {
	max-width: 1200px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.sp {
	display: none;
}
.tab {
	display: block;
}
.pc {
	display: block;
}
.a_border {
	background: linear-gradient(90deg, #333, #333);
	background-position: left bottom; 
	background-repeat: no-repeat;
	background-size: 0 2px;
	padding-bottom: 6px;
	transition: background-size .6s;
}
.a_border:hover {
	 background-size: 100% 2px;
}
.a_box {
	position: relative;
	overflow: hidden;
	transition: 0.4s;
	border: 1px solid;
	z-index: 1;
}
.a_box::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.a_box::after {
	background: var(--txt_color);
}
.a_box:hover::after {
	transform: scale(1, 1);
}
@media screen and (max-width: 1000px){
	.tab {
		display: none;
	}
}
@media screen and (max-width: 768px){
	section {
    	/*margin: 20% 0;*/
		padding: 15% 0;
	}
	.inner {
		width: 85%;
  }
	.tab {
		display: block;
	}
}
@media screen and (max-width: 640px){
	section {
    	margin: 15% 0;
	}
	.sp {
		display: block;
	}
	.tab {
		display: none;
	}
	.pc {
		display: none;
	}
}
@media screen and (max-width: 425px){
	.tab {
		
	}
}


/*セクション上下の余白を設定*/
.sec {
	padding: 130px 0;
}
@media screen and (max-width: 640px){
	.sec{
		padding: 15% 0;
		padding: 0 0;
	}
}


/*   ヘッダー
================================================ */
#header {
	position: fixed;
	justify-content: space-between;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	padding: 1rem;
	background: #fff;
	z-index: 99999;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: 1rem 0;
}
.header-logo {
	width: 23%;
}
.header-logo h1 a {
	transition: 0.4s;
}
.header-logo h1 a:hover {
	opacity: 0.7;
}
#navi {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	height: auto;
	width: 100%;
}
/* チェックボックスを非表示 */
#navi input {
	display: none;
}
/* 左上ロゴ */
.menu-left {
	line-height: 60px;
}
/* 上部メニュー */
.menu {
	display: flex;
	align-items: center;
}
.menu-parent {
	margin-right: 15px;
	white-space: nowrap;
	position: relative;
}
.menu-parent:nth-child(7) {
	margin-right: 5px;
}
.menu-parent a {
	transition: 0.4s;
}
.menu-parent a:hover{
	color: var(--main_color);
}
.angletoggle:before {
	content: "\f107";
	color: var(--main_color);
}
.ToRecruit a , .ToContact a {
	padding: 3px 0.8rem;
	border-radius: 5rem;
	width: 6rem;
	display: block;
	text-align: center;
	transition: 0.4s;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.ToRecruit a::after,
.ToContact a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.ToRecruit a:hover::after,
.ToContact a:hover::after {
	transform: scale(1, 1);
}
.ToRecruit a {
	color: var(--main_color);
	border: 1px solid var(--main_color);
}
.ToRecruit a:hover {
	color: #fff;
}
.ToRecruit a {
	color: var(--main_color);
	border: 1px solid var(--main_color);
}
.ToRecruit a:hover {
	color: #fff;
}
.ToRecruit a::after {
	background: var(--main_color);
}
.ToContact a {
	color: #fff;
	border: 1px solid var(--txt_color);
	background: var(--txt_color);
}
.ToContact a:hover {
	color:var(--txt_color);
}
.ToContact a::after {
	background: #fff;
}
.ToInsta a:hover {
	opacity: 0.7;
}

/* 上部メニューの最後の項目 */
.menu-parent:last-child {
	margin-right: 0;
}
.ToInsta img {
	width: 3rem;
	height: 3rem;
}
.header-insta-p {
	display: none;
}

#menu-navibtn {
	display: none;
	cursor: pointer;
	cursor: hand;
}

@media screen and (max-width: 1024px) {
	.header-wrap{
    	flex-direction: column;
	}
	.header-logo {
    	width: 50%;
	}
	.menu-parent .pd {
    	display: inline-block;
    	width: 100%;
	}
	.menu {
    	display: none;
	}
	.menu-parent {
    	height: auto;
    	width: 100%;
    	padding: 0px 20px;
    	border-bottom: 1px solid #ddd;
	}
	.ToRecruit, .ToContact {
    	width: 50vw;
    	display: table-cell;
    	border-bottom: none;
	}
	.ToRecruit a, .ToContact a {
    	width: 100%;
    	padding: 0.5rem;
	}
	.menu-parent:last-child {
    	border: none;
	}
	.menu-parent i {
    	padding: 0px 6px;
	}
	.ToInsta a {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header-insta-p {
		display: block;
	}
	/* メニューを移動させないため */
	#menu-navibtn:checked ~ #navi {
    	position: fixed;
    	overflow-y: scroll;
    	overflow-x: hidden;
    	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  	}
}

/* ドロップダウンメニュー */
.menu-parent {
	position: relative;
}
.menu-parent .menu-child {
	box-sizing: border-box;
	background: #f9f9f9;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 3rem;
	left: -80%;
	width: auto;
	background: #f9f9f9;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
	text-align: center; /* 中央配置 */
	transition: opacity 0.4s ease, visibility 0.4s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 3rem;
}
.submenu-h3 {
	color: var(--main_color);
	font-size: 2rem;
	font-family: "futura-pt", sans-serif;
	letter-spacing: 0.5rem;
	font-weight: 400;
	line-height: 1.3;
	text-align: left;
}
.submenu-h3 span {
	color: #333;
	font-size: 0.8rem;
	letter-spacing: 0;
	display: block;
}
.menu-child li a {
	margin: 1rem;
	position: relative;
}
.menu-child li a::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 1.3rem;
	background: #333;
	top: 13%;
	right: -1rem;
}
.menu-child li:last-child a::after {
	content: none;
}
/* パソコン用 */
@media screen and (min-width: 1024px) {
	.menu-parent:hover .menu-child {
    	visibility: visible;
    	opacity: 1;
	}
}
/* スマホ用 */
@media screen and (max-width: 1024px) {
	/* ハンバーガーメニューがクリックされた時 */
	#menu-navibtn:checked ~ * .menu {
    	display: block;
    	opacity: 1;
    	width: 90%;
    	margin-top: 3rem;
	}
	#menu-navibtn:checked ~ * .menu-parent {
    	max-height: inherit;
    	overflow-y: visible;
    	padding: 0.8rem;
	}
	#menu-navibtn:checked ~ * .menu-child {
    	max-height: 0;
    	overflow-y: hidden;
    	visibility: hidden;
	}
	/* 子メニュー */
	.submenu-h3{
    	display: none;
	}
	.menu-parent .menu-child {
    	position: relative;
    	padding: 0 20px;
    	opacity: 1;
    	top: 0;
    	left: auto;
    	width: auto;
    	background: #fff;
    	flex-direction: column;
    	align-items: flex-start;
    	text-align: left;
    	box-shadow: none;
	}
	.menu-child li a::after {
    	content: none;
	}
	.menu-parent > label:hover {
    	cursor: pointer;
    	cursor: hand;
	}
	/* 子メニューがクリックされた時 */
	#navi input[type="checkbox"]:checked ~ .menu-child {
    	max-height: inherit;
    	overflow-y: visible;
    	visibility: visible;
	}
	.angletoggle:before {
    	content: "\f107";
    	color: var(--main_color);
	}
	#navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    	content: "\f106";
		color: var(--main_color);
	}
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
	border: none;
}
.menu-child li i {
	margin-right: 3px;
}

/* ハンバーガー */
#navi #navibtn {
	display: none;
}
@media screen and (max-width: 1024px) {
	#navi #navibtn {
    	display: block;
		position: absolute;
    	top: 10px;
    	right: 10px;
    	z-index: 99999;
	}
	#navibtn span {
    	display: block;
    	width: 40px;
    	height: 40px;
    	background-color: #333;
	}
	#navibtn span span {
    	display: block;
    	overflow: hidden;
    	width: 1px;
    	height: 1px;
	}
	#navibtn span span::before,
	#navibtn span span::after,
	#navibtn span::after {
		content:"";
    	position: absolute;
    	left:10px;
    	width: 20px;
    	height: 3px;
    	background: #FFF;
	}
	/* 上の棒 */
		#navibtn span span::before {
    	top:10px;
	}
	#menu-navibtn:checked ~ #navi label#navibtn span span::before {
    	top:19px;
		transform: rotate(-45deg);
    	-webkit-transform: rotate(-45deg);
	}
	/* 下の棒 */
	#navibtn span::after {
    	bottom:10px;
	}
	#menu-navibtn:checked ~ #navi label#navibtn > span::after {
    	bottom:18px;
    	transform: rotate(-135deg);
    	-webkit-transform: rotate(-135deg);
	}
	/* 中の棒 */
	#navibtn span span::after {
    	top:18px;
	}
	#menu-navibtn:checked ~ #navi label#navibtn span span::after {
    	display: none;
	}
}

/*   トップページ
================================================ */
/*---------  ファーストビュー ---------*/
.fv {
	margin-top: 106px;
	height: calc(100vh - 106px);
	/*clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);*/
}
.fv .inner {
    position: relative;
    max-width: none;
    width: 100%;
}
.fv h2 {
    font-size: 2rem;
    display: inline-block;
	position: absolute;
    top: -7vw;
    left: 12vw;
}
.fv h2 span {
    color: #fff;
	font-size: 45px;
	font-weight: bold;
	text-align: left;
    display: inline-block;
    position: relative;
    padding: 0.4rem 0.4rem 0.6rem 0.4rem;
    overflow: hidden;
    z-index: 1;
	margin-bottom: 1rem;
}
.fv h2 span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}
.fv h2 span:nth-of-type(1)::before {
    animation: revealX 0.5s ease-in-out 0s forwards;
}
.fv h2 span:nth-of-type(2)::before {
    animation: revealX 0.5s ease-in-out 0.4s forwards;
}
.fv h2 span:nth-of-type(3)::before {
    animation: revealX 0.5s ease-in-out 0.8s forwards;
}
@keyframes revealX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.vegas-content {
	padding: 0;
}
@media screen and (max-width: 1000px){
	.fv h2 {
		left: 0;
	}
}
@media screen and (max-width: 768px){
	.fv h2 {
		top: -7vw;
		left: 0;
	}
	_::-webkit-full-page-media, _:future, :root .fv h2 {
		top: 0;
	}
	.fv h2 span {
		font-size: 2.3rem;
	}
}
@media screen and (max-width: 640px) {
	.fv {
    	margin-top: 3rem;
  	}	
	_::-webkit-full-page-media, _:future, :root .fv {
		height: 70vh;
	}

	.fv h2 span {
    	font-size: 1.7rem;
		margin-bottom: 0.5rem;
	}
	.fv h2 br {
		display: block;
	}
}
@media screen and (max-width: 425px){
	.fv {
    	height: 70vh;
        margin-bottom: 7rem;
	}
	_::-webkit-full-page-media, _:future, :root .fv {
		height: 50vh;
  	}
	.vegas-content {
		padding: 0!important;
	}
	.fv h2 {
    	position: relative;
    	writing-mode: vertical-rl;
    	display: flex;
    	flex-direction: column-reverse;
    	height: auto;
		top: 0;
        left: 3%;
	}
	_::-webkit-full-page-media, _:future, :root .fv h2 {
		top: 7%;
	}
	.fv h2 br {
		display: none;
	}
	.fv h2 span {
    	font-size: 1.3rem;
    	line-height: 1.2;
    	height: fit-content;
    	padding: 0.6rem;
	  	margin: 0 0.3rem;
	}
	.fv h2 span::before {
		transform: scaleY(0);
		transform-origin: top;
		transition: transform 0.5s ease-in-out;
	}
	.fv h2 span:nth-of-type(1)::before {
		animation: revealY 0.5s ease-in-out 0s forwards;
	}
	.fv h2 span:nth-of-type(2)::before {
		animation: revealY 0.5s ease-in-out 0.4s forwards;
	}
	.fv h2 span:nth-of-type(3)::before {
		animation: revealY 0.5s ease-in-out 0.8s forwards;	
	}
	@keyframes revealY {
		from {
			transform: scaleY(0);
		}
		to {
			transform: scaleY(1);
	   }
	}
}

/*---------  TOP:お知らせ ---------*/
.top-info {
	overflow: hidden;
}
.top-info-wrap {
	display: flex;
	align-items: stretch;
	max-width: 1000px;
	margin: auto;
	border: 1px solid var(--txt_color);
}
.top-info-right {
    width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--txt_color);
}
.top-info-right h3 {
	color: #fff;
	font-size: 2.5rem;
	font-family: "futura-pt", sans-serif;
	letter-spacing: 0.2rem;
}
.top-info-left {
    width: 70%;
}
/* タブ上部 */
.top-info-wrap .tab-title-list-wrap {
	display: flex;
    align-items: flex-end;
}
.tab-list {
	display: none;
}
.tab-list.show {
	display: block;
}

/* タブの見出しの枠 */
.top-info-wrap .tab-title-list {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

/* タブの見出し */
.top-info-wrap .tab-title {
	text-align: center;
	letter-spacing: 0.1rem;
	width: calc(100% / 2);
	padding: 1rem 0;
	margin: 0;
	cursor: pointer;
	border-bottom: 1px solid #999999!important;
	transition: border-bottom .2s;
	transition: all 0.5s 0s ease;
}
/* 選択されているタイトル */
.top-tab-title-list-wrap .tab-title.selected {
	color: var(--main_color);
	font-weight: bold;
	border-bottom: 2px solid var(--main_color)!important;
	opacity: 0.8;
}
.top-info-wrap .tab-title:not(.selected):hover {
	opacity: .6;
}
@media screen and (max-width: 1000px){
	.top-info-right h3 {
		font-size: 2.2rem;
		letter-spacing: 0.1rem;
	}
}
@media screen and (max-width: 768px){
	.top-info-wrap {
		width: 90%;
		flex-direction: column;
	}
	.top-info-right,
	.top-info-left {
		width: 100%;
	}
	.top-info-right h3 {
		padding: 1rem 0;
	}
	.article-list__title .a_border {
		border-bottom: 1px solid var(--txt_color);
	}
}
@media screen and (max-width: 640px){
	.top-info-wrap {
		width: 80%;
	}
	.article-list__info-wrap {
		flex-direction: column;
	}
}
@media screen and (max-width: 425px){
	.top-info-wrap .tab-title-list {
		flex-direction: column;
	}
	.top-info-wrap .tab-title {
		width: 100%;
		padding: 0.5rem 0;
		position: relative;
	}
	.top-info-wrap .tab-title::after {
		content: "";
		position: absolute;
		top: 45%;
		right: 10%;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
		border-top: 10px solid var(--txt_color);
		border-bottom: 0;
	}
	.top-tab-title-list-wrap .tab-title.selected::after {
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
		border-top: 10px solid var(--main_color);
		border-bottom: 0;
	}
	.top-info-wrap {
        width: 90%;
    }
}
/* 中身 */
.article-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-wrap: wrap;
}
.article-list__item {
    padding: 1rem 1.5rem;
    width: 100%;
}
.article-list__info-wrap {
	display: flex;
    align-items: flex-start;
	/*flex-wrap: wrap;*/
}
.article-list__info-wrap span {
	text-align: center;
	margin-right: 1.5rem;
}
@media screen and (max-width: 768px){
	.article-list {
		padding-bottom: 1rem;
	}
}

/*---------  TOP：コンセプト ---------*/

.top-concept {
	position: relative;
	padding: 10% 0  13% 0;
	overflow: hidden;
}
.top-concept::after {
	content: "";
	position: absolute;
	width: 83%;
	height: 73%;
	background: url(assets/img/top/bg_concept.jpg) no-repeat center top / cover;
	top: 10%;
	right: 0;
	z-index: -10;
}
.top-concept .inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
}
.top-concept-img-wrap {
	width: 35%;
	margin-top: -24%;
	position: relative;
}
/*.top-concept-img-wrap  img {
	position: absolute;
	top: 0;
	left: 0;
}*/


.top-concept-txt {
	width: 50%;
	padding: 0 3%;
}
.top-concept-h3-wrap {
	position: relative;
	  margin-bottom: 3rem;
}
.top-concept-h3 {
	font-size: 2rem;
	font-family: var(--mincho);
	letter-spacing: 0.4rem;
	margin-bottom: 2rem;
	position: relative;
	transition: opacity 1s ease-in-out;
}
.top-concept-h3:nth-child(2) {
	margin-left: 3rem;
}
.top-concept-h3:last-child {
	margin:0 0 0 5rem;
}
.top-concept-h3::before {
	content: "";
	position: absolute;
	width: 2rem;
	height: 1px;
	background: var(--txt_color);
	top: 50%;
	left: -10%;
}
.top-concept-h3::after {
    content: attr(data-text);
    position: absolute;
    color: #c6c2c2;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
    top: -1vh;
    left: 9vw;
    z-index: -5;
    font-family: "adobe-handwriting-ernie", sans-serif;
}

.top-concept-txt p {
	line-height: 3;
	text-align: justify;
} 
@media screen and (max-width: 1000px) {
	.top-concept {
		padding: 7% 0;
		margin :0 auto 25%;
	}
	.top-concept::after {
    	height: 92%;
    	top: 12%;
	}
	.top-concept-img-wrap {
		margin-top: -5rem;
	}

	.top-concept-txt {
    	width: 60%;
	}
	.top-concept-h3 {
    	font-size: 2rem;
	  	z-index: 40;
	}
	.top-concept-h3::after {
    	font-size: 1.5rem;
		left: 42%;
	}
}
@media screen and (max-width: 768px) {
	.top-concept .inner {
		flex-direction: column;
	}
	.top-concept-img-wrap {
		width: 55%;
       	margin: -5% 0 0 auto;
        height: 30vh; 
		z-index: -3;
    }
	_::-webkit-full-page-media, _:future, :root ..top-concept-img-wrap {
		margin: -5% 11% 0 auto;
	}
    .top-concept-img-wrap img {
        position: absolute;
        top: 0;
		left: 15%;
        width: 80%;
		height: 100%;
        object-fit: cover;
	}
	_::-webkit-full-page-media, _:future, :root .top-concept-img-wrap img {
		height: 80%;
	}
	.top-concept-txt {
        width: 100%;
    }
	.top-concept-h3 {
        font-size: 1.8rem;
    }

	.top-concept-h3::after {
    	font-size: 1.8rem;
		left: 28%;
  	}
}

@media screen and (max-width: 640px) {
	.top-concept-img-wrap {
       	margin: -5% 0 0 auto;
        height: 25vh; 
    }
	.top-concept-h3:nth-child(2) {
	margin-left: 3rem;
	}
	.top-concept-h3:last-child {
		margin:0 0 0 5rem;
	}
	.top-concept-h3::before {
		width: 1rem;
		left: -8%;
	}	
}
@media screen and (max-width: 425px) {
    .top-concept-img-wrap {
        margin: 10% 0 0 auto;
		width: 85%;
        height: 30vh;
    }
	_::-webkit-full-page-media, _:future, :root .top-concept-img-wrap {
		margin: 15% 0 -15% auto;
		height: 25vh;
	}
	.top-concept-img-wrap img {
        left: 20%;
    }
	.top-concept-h3 {
		font-size: 1.5rem;
    	margin-top: 2rem;
	}
		.top-concept-h3:nth-child(2) {
    	margin-left: 1.25rem;
	}
		.top-concept-h3:last-child {
    	margin-left: 2.5rem;
	}
	.top-concept-h3::after {
        font-size: 1.5rem;
        top: -1rem;
        left: 40%;
	}
	.top-concept-txt p {
    	line-height: 2.3;
	}
}
/*---------  TOP:事業内容 ---------*/
.ttl {
	font-size: 2.2rem;
	line-height: 1.8;
	color: var(--txt_color);
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.2rem;
	position: relative;
	padding: 50px 0;
}
.ttl::before {
	content: attr(data-en);
	position: absolute;
	font-family: azo-sans-web, sans-serif;
	font-weight: 700;
	font-style: italic;
	color: rgba(0,146,118,0.58);
	font-size: 100px;
	top: -2.5rem;
	z-index: -10;
}
.top-business-list {
	width: 100%;
	display: flex;
	position: relative;
}
.top-business-list::after {
	content: "";
	position: absolute;
 	width: 50%;
	height: 450px;
	background: url(assets/img/top/bg_business.svg) no-repeat center top / contain;
	top: -59%;
	right: 0;
	z-index: -20;
}
.top-business-list li {
	width: calc(100vw / 3);
	height: calc(100vw /3);
	overflow: hidden;
}
.top-business-list a {
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.4s;
	position: relative;
}
.top-business-list li a picture {
	position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-business-list li a img {
	transition: 0.4s;
    position: relative;
    height: 100%;
    object-fit: cover;
}
.top-business-list a::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(51, 51, 51, .65);
	transition: 0.4s;
	z-index: 1;
}
.top-business-list a:hover::before{
	background: rgba(51, 51, 51, 0);
}
.top-business-arrow {
	position: absolute;
	background: #fff;
	padding: 1rem 0 1rem 14%;
 	width: 90%;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.top-business-arrow::before,
.top-business-arrow::after {
	content: "";
	position: absolute;
}
.top-business-arrow::before {
	border-style: solid;
	border-color: #009276 transparent transparent transparent;
	border-width: 30px 30px 0px 0px;
	top: 0;
	left:0;
}
.top-business-arrow::after {
    background: url(assets/img/common/arrow.svg) no-repeat center center / contain;
    width: 3vmax;
    height: 1.5rem;
    top: 32%;
    right: 3vmin;
	transform: translateX(-8px);
    transition: all 0.4s ease;
}
.top-business-arrow:hover::after {
	right: 0.5rem;
}

.top-business-arrow span {
	position: relative;
	font-size: 1.15rem;
	font-weight: bold;
	transition: 0.4s;
}
.top-business-arrow span::before, .top-business-arrow span::after{
	content: "";
	position: absolute;
}
/*.top-business-arrow span::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #009276 transparent transparent transparent;
  border-width: 30px 30px 0px 0px;
  top: -1.3rem;
  left: -1rem;
}*/

@media screen and (max-width: 1000px) {
	.top-business-arrow {
    	width: 100%;
  	}
	.top-business-arrow::after {
    	right: 0;
	}
	_::-webkit-full-page-media, _:future, :root .top-business-arrow span::after{
		width: 3vmin;
		right: -4vmin;
  }
}
@media screen and (max-width: 768px) {
	.ttl {
    	font-size: 2rem;
    	line-height: 1.6;
	}
	.ttl::before {
    	font-size: 4rem;
    	top: -0.3rem;
	}
	.top-business-list {
    	flex-direction: column;
	  	align-items: center;
	}
	.top-business-list::after {
    	width: 60%;
    	height: 400px;
    	top: -11%;
	}
	.top-business-list li {
		width: 65%;
    	height: 65%;
    	margin-bottom: 6%;
	}
	.top-business-arrow::after {
		width: 2.5rem;
		right: 4vmin;
	}
}
@media screen and (max-width: 640px) {
	.top-business .ttl::before {
		content: "Our \A Business";
    	white-space: pre;
		line-height: 1;
		top: -2.5rem;
	}
	.top-business-arrow span {
    	font-size: 1.1rem;
  	}
}
@media screen and (max-width: 425px) {
	.ttl {
        font-size: 1.7rem;
        letter-spacing: 0.1rem;
		line-height: 1.2;
    }
	.top-business .ttl::before {
		top: -3rem;
	}
	.top-business-list li {
		width: 80%;
		height: 80%;
	 	margin: 6% auto;	
  	}
    .top-business-list li:nth-child(2) {
        margin-left: auto;
    }
	.top-business-arrow {
    	padding: 1rem 2rem;
    	width: 100%;
	}
	.top-business-arrow span::before {
    	top: -1.3rem;
    	left: -2rem;
	}
	.top-business-arrow::after {
		width: 1.6rem;
        right: 2vmin;
	}
}

/*---------  TOP:管理物件 ---------*/
.top-properties {
    padding: 3% 0;
	position: relative;
	overflow: hidden;
}
.top-properties-title {
	width: 40%;
	position: absolute;
	top: -1.5rem;
	right: 0;
	z-index: 20;
}
.a-arrow {
	font-size: 1.25rem;
	line-height: 1;
	position: relative;
	background: #fff;
	border: 1px solid var(--txt_color);
	padding: 1rem 0 1rem 3rem;
	display: block;
	width: 60%;
	margin-top: 1rem;
}
.a-arrow::before, .a-arrow::after {
	content: "";
	position: absolute;
}
.a-arrow::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #009276 transparent transparent transparent;
	border-width: 30px 30px 0px 0px;
	top: 0;
	left: 0;
}
.a-arrow::after {
    background: url(assets/img/common/arrow.svg) no-repeat center center / contain;
    width: 3.8vw;
    height: 1rem;
    top: 33%;
    right: 1rem;
    transform: translateX(-8px);
    transition: all 0.4s ease;
}
.a-arrow:hover::after {
	right: -2rem;
}
.top-properties ul {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-end;
	flex-wrap: wrap;
}
.top-properties ul::before {
	content: "";
    position: absolute;
    width: 138.5%;
    height: 86%;
    background: url(assets/img/top/bg02.jpg) no-repeat center center / cover;
    z-index: -10;
    left: -50%;
    top: 22%;
}
.top-properties ul li {
    display: flex;
	margin-bottom: 8%;
}
.top-properties ul li:nth-child(1) {
	width: 40%;
}
.top-properties ul li:nth-child(2),.top-properties ul li:nth-child(3) {
	width: calc((100% - 50%) / 2);
	max-width: 385px;
	min-width: 350px;
}
/*.top-properties ul li:nth-child(2) .top-propaty-left,
.top-properties ul li:nth-child(3) .top-propaty-left {
	min-width: 300px;
}*/
.top-properties ul li a {
	display: block;
	background: #fff;
	transition: 0.4s;
	position: relative;
}
.top-properties ul li a::before,
.top-properties ul li a::after {
	content: "";
	position: absolute;
    width: 0;
    height: 2px;
}
.top-properties ul li a::before {
    top: -2px;
    left: 0;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
}

.top-properties ul li a::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
}

.top-properties ul li a:hover::before,
.top-properties ul li a:hover::after {
    width: 100%;
    height: 100%;
    border-color: var(--txt_color);
    transition: width .3s ease, height .3s .3s ease;
}
.top-properties ul li:nth-child(1) .top-propaty-left img{
	height: 500px;
	object-fit: cover;
}
.top-properties ul li:nth-child(2) .top-propaty-left img,
.top-properties ul li:nth-child(3) .top-propaty-left img {
	min-height: 285px;
	height: 300px;
	object-fit: cover;
	width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}
.top-propaty-left .propaty-txt {
	padding: 1rem 2rem;
}
.top-propaty-left .propaty-txt h4 {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
}
.top-properties ul li:nth-child(2) .top-propaty-left .propaty-txt h4,
.top-properties ul li:nth-child(3) .top-propaty-left .propaty-txt h4 {
	font-size: 1rem;
	min-height: 3em;
}
.propaty-txt p {
	position: relative;
	width: 12vmin;
	margin-left: auto;
}
.propaty-txt p::after {
	content: "";
	position: absolute;
	width: 4vmin;
	height: 1rem;
	background: url(assets/img/common/arrow.svg) no-repeat center center / contain;
	right: 0;
	top: 27%;
	transform: translateX(-8px);
	transition: all 0.4s ease;
}
.propaty-txt p:hover::after {
	right: -1rem;
}
.top-propaty-right {
	display: flex;
	justify-content: space-between;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.top-propaty-right p {
	font-size: 0.9rem;
}
.top-poropaty-cat {
	position: relative;
}
.top-poropaty-cat::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #8d8d8d;
	top: 0;
	left: 4px;
}
.top-poropaty-cat span {
	color: #8d8d8d;
}
.top-properties > .inner > .no-content {
	position: relative;
	padding: 20% 0 15%;
}
.top-properties > .inner > .no-content::after {
    content: "";
    position: absolute;
    width: 117%;
    height: 100%;
    background: url(assets/img/top/bg02.jpg) no-repeat center center / cover;
    z-index: -10;
    left: -37%;
    top: -12%;
}
@media screen and (max-width: 1000px) {
	.top-properties-title {
    	width: 43%;
    	top: 0;
  	}
	.top-properties ul {
    	flex-direction: column;
    	align-items: flex-start;
	}
	.top-properties ul::before {
    	width: 125%;
    	height: 85%;
 	}
	.top-properties ul li:nth-child(1) {
    	margin-left: 10%;
 	}
	.top-properties ul li:nth-child(2) {
    	margin: -15% -5% auto auto;
	}
	.top-properties ul li:nth-child(3) {
    	margin: -15% auto auto 0;
	}
	.top-properties ul li:nth-child(2), .top-properties ul li:nth-child(3) {
    	width: calc((100% - 15%) / 2);
		min-width: auto;
		max-width: none;
	}
	.top-properties ul li:nth-child(1) .top-propaty-left img{
  		height: auto;
	}
	.top-properties ul li:nth-child(2) .top-propaty-left img,
	.top-properties ul li:nth-child(3) .top-propaty-left img{
  		min-height: auto;
		height: auto;
	}
	.top-properties > .inner > .no-content {
		padding: 30% 0 15%;
	}
}
@media screen and (max-width: 768px){
	.top-properties-title {
        width: 50%;
		right: -2rem;
    }
	.top-propaty-left .propaty-txt h4 {
		font-size: 1rem;
	}
	.top-properties ul li:nth-child(1) {
    	width: 50%;
		margin-left: 0;
	}
	.top-properties ul li:nth-child(2), .top-properties ul li:nth-child(3) {
        width: 50%;
    }
	.propaty-txt p {
		width: 16vw;
	}
}
@media screen and (max-width: 640px) {
	.top-properties {
    	padding: 6% 0;
    	margin: 10% 0;
	}
	.top-properties-title {
    	position: relative;
    	width: 100%;
    	margin-bottom: 3rem;
		right: 0;
	}
	.top-properties ul li {
    	margin-bottom: 0;
	}
	.a-arrow {
    	font-size: 1.25rem;
	}
	.a-arrow::after {
		width: 2rem;
	}
	.top-properties ul li:nth-child(1), 
	.top-properties ul li:nth-child(2), 
	.top-properties ul li:nth-child(3) {
		width: 60vw;
 	}
	.top-properties ul li:nth-child(2) {
		margin: 15% -5% auto auto;
    }
	.top-properties ul li:nth-child(3) {
    	margin: 15% auto auto 0;
	}
	.top-properties > .inner > .no-content {
    	padding: 12% 0 15%;
	}
	.top-properties > .inner > .no-content::after {
    	width: 125%;
    	height: 147%;
    	top: -40%;
	}
}
@media screen and (max-width: 425px) {
	.top-properties-title {
        margin-bottom: 2rem;
    }
	.top-properties ul li:nth-child(1), 
	.top-properties ul li:nth-child(2), 
	.top-properties ul li:nth-child(3) {
    	width: 100%;
	  	margin: 15% auto;
	}
	.top-properties ul li:nth-child(1) {
    	margin: 0 0 15% auto;
	}
  	.propaty-txt p {
    	width: 23vw;
	}
	.propaty-txt p::after {
    	width: 8vmin;
	}
}
/*---------  TOP:バナー ---------*/
.top-bnr{
	max-width: 1000px;
	margin: 13% auto;
	padding: 0;	
	overflow: hidden;
}
.top-bnr a {
	transition: 0.4s;
}
.top-bnr a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 640px) {
	.top-bnr{
    	margin: 30% 5% 25%;
  	}
}

.top-archive {
	margin-bottom: 0;
	padding: 0;
	position: relative;
	width: 100%;
	height: calc(100vh - 106px);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

/*---------  TOP:施工実績 ---------*/
.top-archive > div {
	position: relative;
	width: 100%;
 	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-archive > div::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(51, 51, 51, .65);
	mix-blend-mode: multiply;
}
.bg-archive-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}
.bg-archive {
	position: absolute;
    top: 50%;
    left: 50%;
	background-size: cover;
    background-position: center center;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
.bg-archive.active {
    opacity: 1;
}
.top-archive .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 80vh;
	display: flex;
	justify-content: space-between;
	z-index: 3;
}
.top-archive .h2-english-wrap {
	margin-top: 4rem;
}
.top-archive .h2-english,
.top-archive .h2-english-wrap span {
	color: #fff;
}
.top-archive .h2-english::before {
	background: #fff;
}
.top-more {
	color: var(--main_color);
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.5rem;
	border: 2px solid var(--main_color);
	border-radius: 50%;
	display: block;
	text-align: center;
	width: 8rem;
	height: fit-content;
	padding: 3.5rem 2rem 3.5rem 1rem;
	background: #fff;
	transition: 0.4s;
	position: relative;
	margin: auto 0 4rem;
}
.top-more:hover{
	color: #fff;
	background: var(--main_color);
}
.top-more::after {
	content: "";
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	mask-image: url(assets/img/top/icon_more.svg);
  	mask-repeat: no-repeat;
  	mask-size: contain;
	background: var(--main_color);
	top: 43%;
	right: 0.5rem;
	transform: translateX(-8px);
    transition: all 0.4s ease;
}
.top-more:hover::after {
	background: #fff;
}
.top-more:hover::after {
	right: -0.5rem;
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 640px) {
	_::-webkit-full-page-media, _:future, :root .top-archive {
		height:60vh;
	}
	.top-archive, .top-archive .inner {
    	height: 70vh;
	}
	_::-webkit-full-page-media, _:future, :root .top-archive, .top-archive .inner {
		height:53vh;
	}
	.top-archive .inner {
    	flex-direction: column;
	}
	.top-more {
    	font-size: 1.3rem;
    	width: 6rem;
    	height: fit-content;
    	padding: 3rem 2rem 3rem 1rem;
    	margin: auto 1rem 4rem auto;
	}
}
@media screen and (max-width: 425px) {
    .top-more {
        width: 5.5rem;
        padding: 2.5rem 1.5rem 2.5rem 0.5rem;
    }
	.top-more::after {
		top: 40%;
		right: -0.5rem;
	}
}
	

/*   フッター
================================================ */
/* TOPへ戻るボタン */
 .re-btn {
	position: fixed;
	bottom: 2%;
	right: 2%;
	z-index: 999;
	-webkit-transition: .4s;
	transition: .4s;
	max-width: 75px;
	opacity: .7
}
.re-btn img {
	width: 100%;
}
.re-btn:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)"
}

@media screen and (max-width: 640px) {
	.re-btn {
		position:fixed;
		bottom: 2%;
		right: 2%;
		z-index: 50;
		-webkit-transition: .4s;
		transition: .4s;
		width: 30%;
		z-index: 200;
		max-width: 80px;
		opacity: 0.7;
	}
	.re-btn img {
		width: 100%
	}
	.re-btn:hover {
    	opacity: .7;
    	filter: alpha(opacity=70);
    	-ms-filter: "alpha(opacity=70)"
	}
}


/* footer */
footer {
	border-top: 1px solid #333;
	padding: 100px 0 0;
	background: #fff;
}
footer .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.footer-left {
	width: 45vw;
}
.footer-left .flex {
	display: flex;
	align-items: center;
	margin-bottom: 5%;
}
.footer-left .flex picture {
	width: 40%;
	margin-left: 1rem;
}
footer .footer-logo {
	width: 30%;
	max-width: 280px;
	display: block;
}
.footer-adress {
    /*width: 60%;*/
	margin-bottom: 1rem;
}
.footer-adress p {
	font-size: 1rem;
	line-height: 1.5;
}
.footer-adress picture {
    /*width: 48%;*/
	max-width: 250px;
}
.footer-bnr {
	display: flex;
	flex-wrap: wrap;
	width: 60%;
}
.footer-bnr li {
	width: calc(100% / 2);
}
/*.footer-bnr picture:first-child {
	width: 100%;
	margin-bottom: 0.8rem;
}
.footer-bnr picture:nth-child(2), .footer-bnr picture:nth-child(3) {
	width: calc(100% / 2);
}*/
.footer-right {
	display: flex;
	flex-wrap: wrap;
	width: 55vw;
	justify-content: space-between;
}
.footer-ul {
    margin-right: 1rem;
}
.footer-right a {
	transition: 0.4s;
}
.footer-right a:hover {
	color: var(--main_color);
}
.footer-sns {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-sns h3 {
	font-weight: bold;
	margin-bottom: 0.8rem;
}
.footer-sns a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	background: #333;
	border-radius: 50%;
	transition: 0.4s;
}
.footer-sns a:hover {
	opacity: 0.7;
}
.footer-sns a img {
	width: 1.5rem;
}
footer .copy {
	color: #fff;
	font-size: 0.9rem;
	text-align: center;
	display: block;
	margin-top: 5%;
	padding: 1% 0;
	background: #333;
}
@media screen and (max-width: 1000px){
	.footer-adress picture {
		/*width: 26vw;*/
	}
}
@media screen and (max-width: 768px){
	footer .inner {
    	flex-direction: column;
	}
	.footer-left {
    	width: 100%;
    	margin-bottom: 2rem;
	}
	.footer-left .flex {
		flex-direction: column;
		justify-content: center;
	}
	footer .footer-logo {
		margin-bottom: 1rem;
	}
	.footer-left .flex picture {
    	width: 30%;
		margin: auto;
	}
	.footer-adress {
		width: 70%;
		display: flex;
        justify-content: center;
		padding-left: 0;
		margin: 1rem auto;
	}
	.footer-adress picture {
        /*width: 85%;*/
    }
	.footer-bnr {
    	width: 70%;
    	margin: auto;
	}
	.footer-right {
    	width: 100%;
    	margin: auto;
	}
}
@media screen and (max-width: 640px){
	footer {
    	padding: 15% 0 0;
	}
	.footer-left .flex {
		flex-direction: column;
	}
	.footer-left .flex picture {
    	width: 45%;
	}
	.footer-adress {
        width: 85%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
	_::-webkit-full-page-media, _:future, :root .footer-adress picture {
		width:100%;
	}
	.footer-right {
        width: 70%;
        flex-direction: column;
    }
	.footer-sns {
    	margin-top: 1rem;
		align-items: flex-start;
	}
	footer .copy {
    	margin-top: 15%;
	}
}
@media screen and (max-width: 425px){
	.footer-adress {
		width: 85%;
		padding-left: 0;
	}
	.footer-adress picture {
		width: 27vh;
    }
	.footer-ul {
    	margin-right: 0;
	}
	
}


/*  下層ページ共通
================================================ */
.sec-header {
	margin: 5% auto 0 auto;
}
.header-bg {
	padding: 10rem 0;
	position: relative;
	z-index: -10;
}
.header-bg.-company {
    background: url(assets/img/company/header.jpg) no-repeat center left / cover;
}
.header-bg.-construction {
    background: url(assets/img/construction/header.jpg) no-repeat center center / cover;
}
.header-bg.-estate {
    background: url(assets/img/estate/header.jpg) no-repeat center center / cover;
}
.header-bg.-consulting {
    background: url(assets/img/consulting/header.jpg) no-repeat center center / cover;
}
.header-bg.-infomation {
    background: url(assets/img/news/header.jpg) no-repeat center center / cover;
}
.header-bg.-achievements {
    background: url(assets/img/achievements/header.jpg) no-repeat center center / cover;
}
.header-bg.-properties {
    background: url(assets/img/properties/header.jpg) no-repeat center right 38% / cover;
}
.header-bg.-recruit {
	background: url(assets/img/recruit/header.jpg) no-repeat center center / cover;
}
.header-bg.-contact {
    background: url(assets/img/contact/header.jpg) no-repeat center center / cover;
}

/* 見出し */
.ttl-header {
	font-size: 2.2rem;
	line-height: 1.8;
	color: var(--txt_color);
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.2rem;
	position: relative;
	padding: 50px 0;
}
.ttl-header span {
	color: rgba(0,146,118,0.58);
	font-size: 100px;
	line-height: 1;
	font-family: azo-sans-web, sans-serif;
	font-weight: 700;
	font-style: italic;
	display: block;
}
.h2-english-wrap span {
	font-size: 2.5rem;
	font-family: var(--mincho);
	letter-spacing: 0.3rem;
	line-height: 1.5;
	display: block;
}
.h2-english::before {
	content: "";
	position: absolute;
	width: 3rem;
	height: 1px;
	top: 50%;
	left: 0;
	background: var(--txt_color);
}
.h2-english {
	font-size: 1.5rem;
	line-height: 1.5;
	font-family: var(--mincho);
	letter-spacing: 0.2rem;
	padding-left: 4rem;
	position: relative;
	display: block;
}
@media screen and (max-width: 768px){
	.ttl-header {
    	font-size: 2rem;
    	line-height: 1.6;
	}
	.ttl-header span {
        font-size: 4rem;
	}
}
@media screen and (max-width: 640px){
	.ttl-header span {
		font-size: 3.5rem;
	}
	.h2-english {
		font-size: 1.3rem;
		line-height: 1.5;
	}
	
	.h2-english-wrap span {
		font-size: 2rem;
	}
}
@media screen and (max-width: 425px){
	.sec-header .inner {
		width: 85%;
	}
    .ttl-header {
        font-size: 1.7rem;
        letter-spacing: 0;
		line-height: 1.2;
    }
	.ttl-header span {
		font-size: 2.8rem;
	}
}



/* パンくず */
.breadcrumb {
    padding: 0.5rem 0;
}
.breadcrumb ul{
    display: flex;
	flex-wrap: wrap;
}
.breadcrumb ul li {
    position: relative;
	padding-right: 2rem;
}
.breadcrumb ul li::after {
    content: ">";
	position: absolute;
	right: 0.8rem;
}
.breadcrumb ul li:last-child::after {
	content: none;
}
/* 見出し */
.border-ttl-wrap span {
    font-family: var(--en_font);
    font-size: 2.8rem;
	font-weight: bold;
    margin-bottom: 3rem;
}
.border-ttl {
	font-size: 1.5rem;
    padding-left: 4rem;
    position: relative;
    margin-top: 0.5rem;
	margin-bottom: 3rem;
}
.border-ttl::before {
	content: "";
	position: absolute;
	width: 3rem;
	height: 2px;
	background: var(--main_color);
	top: 50%;
	left: 0;
}
@media screen and (max-width: 768px) {
	.header-bg {
    	padding: 8rem 0 7rem;
	}
	.sec-header .inner h2::before {
        font-size: 13vw;
        top: -3vmax;
	}
}
@media screen and (max-width: 640px) {
	.header-bg {
    	padding: 6rem 0 7rem;
	}
	.sec-header .inner h2::before {
        font-size: 3rem;
        top: 0.8rem;
	}
	.border-ttl {
		font-size: 1.3rem;
	}
	.border-ttl-wrap span {
		font-size: 2rem;
		line-height: 1;
	}
}
@media screen and (max-width: 425px) {
	.sec-header .inner h2::before {
        font-size: 2.5rem;
        top: 1.5rem;
	}
	.border-ttl span {
		font-size: 1rem;
	}
}


/*   会社案内
================================================ */
.message-wrap {
    overflow: hidden;
}
.message-contents {
    display: flex;
	align-items: center;
}
.message-img, .message-txt-wrap {
    width: 50%;
}
.message-txt-wrap {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.message-img {
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 2rem 0;
}
.message-img img {
	width: 80%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.message-txt {
    background: #fff;
    /*position: absolute;
    right: 0;
    bottom: 0;*/
    padding: 0 3.8rem;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.message-txt h4 {
	font-size: 1.85rem;
	font-family: var(--mincho);
    text-align: left;
	line-height: 1.5;
    margin-bottom: 4rem;
}
.message-txt h4 span {
	font-family: var(--mincho);
	border-bottom: 1px solid var(--txt_color);
}
.message-txt p {
	margin-bottom: 1.5rem;
}
.name {
    margin: 0 0 0 auto;
}
.data-list{
	display: flex;
	flex-wrap: wrap;
	width: 80%;
    margin: auto;
}
.data-list dt {
  width: 160px;
  font-weight: bold;
  padding-left: 2rem;
  padding: 2%;
  border-bottom: 1px solid var(--txt_color);
}
.data-list dd {
  width: calc(100% - 160px);
  padding: 2%;
  border-bottom: 1px solid #E2E2E2;
}
.data-list dd ol > li {
    list-style: decimal;
}
.business ul {
    margin-left: 2rem;
}
.business ul  li {
    list-style: disc;
}
.data-list dt:first-of-type, .data-list dd:first-of-type {
	border-top: none;
}
.data-list dt:last-of-type, .data-list dd:last-of-type {
    border-bottom: none;
}
.data-list li {
  list-style: none;
}
.data-list address {
  font-style: normal;
  line-height: 1.6;
}

#access {
	position: relative;
}
#access::after {
	content: "";
	position: absolute;
	background: #f9f9f9;
	width: 100%;
	height: 1000px;
	top: 50%;
	left: 0;
	z-index: -10;
}
#access .inner {
    padding: 5%;
    border: 1px solid var(--txt_color);
	background: #fff;
}
#access adress {
	position: relative;
	padding-left: 2rem;
	line-height: 1.6;
	display: block;
	margin-bottom: 1rem;
}
#access adress::before {
	content: "";
    position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	background: url(assets/img/company/icon_adress.svg) no-repeat center center/ contain;
	top: 0;
    left: 0;
}
.monotone {
	/*filter: grayscale(100%);*/
	margin-bottom: 1rem;
}
#access iframe {
	width: 100%;
	min-height: 350px;
}
@media screen and (max-width: 1000px) {
	.message-contents {
		flex-direction: column;
		align-items: center;
		width: 80%;
        margin: auto;
	}
	.message-img, .message-txt-wrap {
		width: 100%;
	}
	.message-img {
      display: flex;
      align-items: center;
      justify-content: center;
	  padding: 2rem;
	}
	.message-img img {
		display: block; 
		padding: 0;
	}
	.message-txt-wrap {
		margin-top: 0;
	}
	.message-txt {
		width: 100%;
		margin-left: 0;
		padding: 3.8rem 0;
	}
}
@media screen and (max-width: 640px) {
	.message-contents {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.message-img, .message-txt-wrap{
		width: 90%;
		margin-bottom: 2rem;
	}
	.message-img {
        padding: 1rem;
    }
	.message-txt-wrap {
		padding-left: 0;
	}
	.message-txt {
		width: 100%;
		margin-left: 0;
		padding: 2rem 0;
	}
	.message-txt h4 { 
		font-size: 1.3rem;
        margin-bottom: 2rem;
	}
	.data-list {
    	flex-direction: column!important;
	}
	.data-list dt, .data-list dd {
		width: 100%;
    	padding: 2% 4%;
	}
	#access .inner {
    	padding: 8%;
    	width: 80%;
	}
	#access iframe {
    	min-height: 200px;
	}
}
@media screen and (max-width: 425px) {
	.message-txt h4 {
		font-size: 20px;
	}
	.data-list dt {
		border-bottom: none;
  }
  .data-list dd:first-of-type {
		border-top: none;
	}
	.data-list dt:last-of-type {
		border-bottom: none;
	}
}


/*   事業内容　共通
================================================ */
.row-sec-top {
	position: relative;
	margin: 0;
}
.row-sec-top::after {
	content: "";
	position: absolute;
	width: 1400px;
    max-width: 90%;
	height: 110%;
	background: url(assets/img/common/bg_row_sec.jpg) no-repeat center center / cover;
	top: 0;
	right: 0;
	z-index: -10;
}
.row-p-wrap {
    margin-bottom: 5%;
}
.row-p-wrap p {
	font-family: var(--mincho);
	line-height: 3;
	width: 70%;
    margin-left: 18%;
}
.business-wrap {
    overflow: hidden;
}
.business-contents {
    display: flex;
	align-items: stretch;
    min-height: 500px;
	margin-bottom: 10%;
    padding-top: 15%;
}
.business-img {
	display: flex;
    align-items: center;
    justify-content: center;
}

.business-img, .business-txt-wrap {
    width: 50%
}
.business-contents:nth-child(even) {
	flex-direction: row-reverse;
}
.business-contents:nth-child(even) .business-img,
.business-contents:nth-child(even) .business-txt-wrap {
	width: 50%;
}
.businesscontents:nth-child(even) .business-txt {
    margin-left: -6vh;
}
.business-txt-wrap {
    /*padding-left: 3rem;*/
	display: flex;
    flex-direction: column;
    align-items: flex-end;
	justify-content: space-between;
}
.business-contents:nth-child(even) .business-txt-wrap {
	align-items: flex-start;
}
.feature {
	color: var(--main_color);
	font-size: 0.8rem;
	font-family: "DIN 2014";
	writing-mode: vertical-rl;
}
.business-num {
	color: var(--main_color);
    font-size: 6vw;
    font-family: din-2014, sans-serif;
	font-weight: 500;
    letter-spacing: -0.3vw;
}
.feature-ttl {
    font-family: var(--en_font);
    font-size: 1.85rem;
	font-weight: bold;
	line-height: 1.5;
    letter-spacing: 0.1rem;
	position: relative;
}
.feature-ttl::before {
    content: "";
    position: absolute;
    width: 2rem;
    height: 1px;
    background: var(--txt_color);
    top: 1.4rem;
    left: -3rem;
}
.business-txt {
	width: 120%;
    background: #fff;
    padding: 3rem;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -13vh;
}
.business-contents:nth-child(even) .business-txt {
    margin-left: 0;
}
.business-txt p {
	line-height: 3rem;
}
@media screen and (max-width: 1000px) {
	.business-img {
    	align-items: stretch;
	}
	.business-img img {
		object-fit: cover;
	}
	.business-txt {
        width: 100%;
        margin-left: 0;
        padding: 3rem 0 0 3rem;
	}
	.business-contents:nth-child(even) .business-txt {
		padding: 3rem 3rem 0 0;
	}
	.business-contents:nth-child(even) .feature-ttl::before {
		left: 105%;
	}
}
@media screen and (max-width: 768px) {
	.business-contents, .business-contents:nth-child(even) {
		flex-direction: column;
		align-items: center;
		padding-top: 0;
	}
	.feature {
		writing-mode: inherit;
	}
	.business-img,
	.business-txt-wrap,
	.business-contents:nth-child(even) .business-img, 
	.business-contents:nth-child(even) .business-txt-wrap {
		width: 90%;
		margin-bottom: 2rem;
		padding-left: 0;
	}
	.business-num {
		font-size: 70px;
	}
	.business-txt, .business-contents:nth-child(even) .business-txt {
		width: 100%;
		margin-left: 0;
		padding: 2rem 0 0;
	}
	.feature-ttl {
		margin-bottom: 1rem;
	}
	.feature-ttl::before {
		content: none;
	}
}
@media screen and (max-width: 640px) {
	.row-sec-top::after {
    	max-width: 70%;
    	height: 100%;
	}
	.row-p-wrap {
    	margin-bottom: 10%;
	}
	.row-p-wrap p {
		width: 90%;
		line-height: 2.5rem;
    	margin-left: 5%;
	}
	.feature-ttl {
		font-size: 25px;
	}
	.business-txt p {
		line-height: 2rem;
	}
}
@media screen and (max-width: 425px) {
	.business-contents, .business-contents:nth-child(even) {
    	padding-top: 30%;
	}
	.row-p-wrap p, .business-txt p {
    	line-height: 2.3;
	}
	.feature-ttl {
        font-size: 20px;
    }
}


/*   事業内容:建築事業
================================================ */
.construction-list {
	width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.construction-list li {
	width: calc(100% / 4 - 2%);
    /* min-width: 200px; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.construction-list li p {
	padding: 0.8rem 0.3rem;
	background: #fff;
	position: relative;
	width: 100%;
	margin-left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	 flex-grow: 1;
}
.construction-list li p::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: var(--main_color) transparent transparent transparent;
    border-width: 15px 15px 0px 0px;
    top: 0;
    left: 0;
}
@media screen and (max-width: 768px) {
	.construction-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.construction-list li {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.construction-list {
    	justify-content: space-evenly;
	}
}
@media screen and (max-width: 425px) {
	.construction-list {
		display: flex;
	}
	.construction-list li {
        width: 80%;
    }
}

/*   事業内容:建築設計事業
================================================ */
.estste-wrap {
    background: #fff;
	padding: 5% 5% 7%;
}
.estste-list {
	display: flex;
	justify-content: space-evenly;
}
.estste-list li {
	width: 33%;
	display: flex;
    flex-direction: column;
	align-items: center;
	position: relative;
}
.estste-list li picture {
    background: #f9f9f9;
    border-radius: 50%;
    width: 32vmin;
    height: 32vmin;
    display: flex;
    justify-content: center;
    align-items: center;
}
.estste-list li img {
    width: 80%;
    height: 47%;
}
.estste-list li p {
	color: #fff;
    text-align: center;
    background: var(--txt_color);
    width: 75%;
    padding: 0.3rem 0.5rem;
    position: absolute;
    bottom: -1rem;
}
@media screen and (max-width: 768px) {
	.row-sec-top::after {
    	height: 100%;
	}
	.estste-wrap {
    	padding: 7% 5%;
	}
	.estste-list {
		flex-direction: column;
	}
	.estste-list li {
		width: 100%;
		margin-bottom: 3rem;
	}
	.estste-list li p {
    	width: 50%;
	}
}
@media screen and (max-width: 640px) {
	.estste-wrap {
		width: 85%;
		margin: auto;
	}
	.estste-list li picture {
    	width: 40vw;
        height: 40vw;
	}
	.estste-list li img {
    	width: 61%;
    	height: 50%;
	}
	.estste-list li p {
        width: 75%;
    }
}

/*   事業内容:コンサルティング事業
================================================ */
.row-sec-top.-consulting::after {
	height: 50%;
}
.row-p-wrap h3 {
	font-size: 30px;
	font-family: var(--en_font);
	line-height: 1.4;
	letter-spacing: 0.1rem;
	margin-left: 18%;
	position: relative;
	margin-bottom: 3rem;
}
.row-p-wrap h3::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: var(--txt_color);
    top: 50%;
    left: -62%;
}
.row-sec-top.-consulting > .inner > .row-p-wrap > p {
	width: calc(100% - 17%);
}
.consulting-wrap {
	background: #fff;
    padding: 10% 5% 3%;
}
.consulting-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.consulting-list li {
	width: calc(100% / 3 - 5%);
	min-width: 250px;
	position: relative;
}
.consulting-list li:nth-child(-n+3) {
	margin-bottom: 5%;
}
.consulting-list li p {
	color: #fff;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 0.5rem;
    background: rgba(51, 51, 51, 0.8);
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.consulting-list li picture {
	position: relative;
}
.consulting-list li picture::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 146, 118, 0.49);
	mix-blend-mode: overlay;
}
.sec-row-case {
	position: relative;
}
.row-case-wrap {
    background: #fff;
    border: 1px solid var(--txt_color);
    width: 90%;
    margin: 10% auto;
    padding: 4%;
	position: relative;
}
/*.row-case-wrap::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 115%;
    background: url(assets/img/common/bg_check.png) repeat center center / contain;
    top: -6%;
    left: -50%;
    z-index: -10;
}*/
.row-case dt {
    font-size: 25px;
    font-family: din-2014, sans-serif;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.row-case dt span {
	font-size: 50px;
	font-family: din-2014, sans-serif;
}
.row-case dt h4 {
	font-size: 20px;
	font-weight: bold;
}
.row-case dd {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
	margin-bottom: 2rem;
    border-bottom: 1px solid var(--txt_color);
}
.row-case dd:last-child {
	border-bottom: none;
	padding:0;
	margin-bottom: 0;
}
.row-case-right {
	position: relative;
}
.row-case-right::after {
	content: "";
	position: absolute;
	width: 2rem;
	height: 2rem;
	background: var(--txt_color);
	mask-image: url(assets/img/consulting/icon_arrow.svg);
  	mask-repeat: no-repeat;
  	mask-size: contain;
	top: 6vh;
    right: -3vh;
}
_::-webkit-full-page-media, _:future, :root .row-case-right::after {
	right: -2rem;
}
.row-case-right, .row-case-left {
    width: calc(100% / 2 - 3%);
	display: flex;
	align-items: center;
}
.row-case-right picture,
.row-case-left picture {
	margin-right: 1rem;	
}
.row-case-right p,
.row-case-left p {
	line-height: 2.2;
}
.row-case-right p span,
.row-case-left p span {
	color: #fff;
	padding: 0.2rem;
}
.row-case-right p span {
	background: var(--txt_color);
}
.row-case-left p span {
	background: var(--main_color);
}
@media screen and (max-width: 1000px) {
	/*.row-case-wrap::before {
        width: 120%;
        height: 106%;
        top: -3%;
	}*/
	_::-webkit-full-page-media, _:future, :root .row-case-right::after {
		top: 45%;
		right: -6vw;
	}
	.row-case-right, .row-case-left {
		flex-direction: column;
		justify-content: stretch;
	}
	.row-case-right::after {
    	right: -4.5vh;
	}
	.row-case-right picture, .row-case-left picture {
		margin-right: 0;	
	}
	.row-case-right p, .row-case-left p {
    	text-align: center;
		margin-top: 1rem;
	}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 640px) {
	.row-p-wrap h3 {
    	font-size: 25px;
		width: 90%;
        margin: 0 auto 2rem;
	}
	.row-sec-top.-consulting > .inner > .row-p-wrap > p {
		width: 90%;
		margin: auto;
	}
	.consulting-list li {
		margin-bottom: 3%;
	}
	.consulting-list li p {
    	font-size: 18px;
	}
	.row-case-wrap {
		margin: 15% auto;	
	}
	/*.row-case-wrap::before {
		height: 105%;
        top: -2%;
	}*/
	.row-case dd {
		flex-direction: column;
		align-items: center;
	}
	.row-case-right, .row-case-left {
		width: 95%;
	}
	.row-case dd {
		padding-top: 0;
	}
	.row-case-right {
    	margin-bottom: 4rem;
	}
	.row-case-right::after {
		top: 106%;
		right: 45%;
		transform: rotate(90deg);
	}
	_::-webkit-full-page-media, _:future, :root .row-case-right::after {
		right: 45%;
		top: 108%;
	}
}

@media screen and (max-width: 425px) {
	.row-p-wrap h3,
	.consulting-list li p {
    	font-size: 20px;
	}
	.row-case-wrap {
        width: 100%;
        padding: 10% 6%;
	}
	.row-case dt h4 {
		font-size: 18px;
	}
}

/*   お問い合わせ
================================================ */
.contact, .thanks {
	max-width: 1000px;
}
.contact p {
	margin-bottom: 3rem;
}
.contact p a {
	color: var(--main_color);
	position: relative;
	transition: 0.4s;
}
.contact p a:hover {
	color: #fff;
}
.contact p a::before {
    content: "";
    position: absolute;
    background: var(--main_color);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
    z-index: -1;
}
.contact p a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.contact_form dl {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
    width: 100%;
}
.contact_form dt {
    width: 35%;
    padding: 10px;
	border-bottom: 2px solid var(--txt_color);
}
dt.contents {
    border-bottom: none;
}
.contact_form dt span {
    color: #fff;
    font-size: 13px;
    background: #d8401d;
    padding: 0 0.3rem;
    margin: 0 0.3rem;
    display: inline-block;
}
.contact_form dd {
    width: 65%;
    padding: 10px 0;
	border-bottom: 2px solid #e0e0e0;
}
.contact_form dd:last-child {
    border-bottom: none;
}
.form_choice span select {
    font-size: 1rem;
    line-height: 2rem;
    padding: 1rem;
    width: 60%;
	-webkit-appearance: none;
    appearance: none;
    background: none;
}
.form_choice span {
	position: relative;
}
.form_choice span::before, .form_choice span::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	display: block;
	z-index: -1;
	margin: auto;
	background-color: #333;
	border-radius: 10px;
}
.form_choice span::before {
	width: 2px;
  	height: 30px;
    right: 6.3%;
    top: 6%;
}
.form_choice span::after{
	width: 30px;
  	height: 2px;
	right: 3.5%;
    top: 3%;
}
.contact_form textarea {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    width: 100% !important;
}
.e-article {
    margin: 1.5rem 0;
}
.pp_container {
    font-size: 15px;
    height: 200px;
    width: 90%;
    overflow-y: scroll;
    margin: 0 auto 1.5rem;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}
.pp_container h4 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 0.8rem;
	border-bottom: 1px solid var(--txt_color);
}
.pp_container p {
    margin-bottom: 1.8rem;
}
.pp_container ul {
    padding-left: 1.5rem;
    margin-bottom: 1.8rem;
}
.pp_container ul li {
    list-style: disc;
    line-height: 1.8rem;
}
.acceptance_container {
    text-align: center;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}
.acceptance_container input {
    width: auto !important;
}
.submit-container {
    margin: auto;
}
.wpcf7-submit {
    color: #fff;
    background: var(--main_color);
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 25px;
    position: relative;
    display: table;
    width: 100%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: auto;
}
.wpcf7-submit::after {
    content: "";
    display: block;
	position: absolute;
	width: 25px;
    height: 25px;
    top: 50%;
    left: auto;
    bottom: 0;
    right: 10%;
    background: url(./assets/images/common/arrow_w.svg) no-repeat center right/contain;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
 }
.wpcf7-submit:hover {
        color: #c6001d;
        background: #fff; 
        /*border: 1px solid #303030;*/
}
@media screen and (max-width: 640px) {
    .contact_form dl {
        flex-flow: column;
    }
    .contact_form dl dt, .contact_form dl dd {
        width: 100%;
    }
    .contact_form dt {
        padding: 1rem 0;
    }
}
/* thanksページ */
.thanks {
    display: flex;
    align-items: center;
    justify-content: center;
}
.thanks p {
	line-height: 3;
}


/*   お知らせ・管理物件・施工実績　共通
================================================ */
/* シングルページ */
.single-wrap {
	width: 80%;
    max-width: 900px;
    margin: auto;
}


/*   管理物件・施工実績　共通
================================================ */
/* アーカイブ */
.tab-title-list-wrap {
	background: #f9f9f9;
	padding: 4%;
	margin-bottom: 7rem;
	position: relative;
}
.tab-title-list-wrap h3 {
	font-size: 1.9rem;
	font-weight: bold;
	position: absolute;
	top: -10%;
}
.tab-title-list {
    display: flex;
	flex-wrap: wrap;
}
.tab-title-list li {
	margin: 0.5rem;
}
.tab-title-list li a {
	color: var(--txt_color);
	background: #fff;
	font-weight: bold;
	text-align: center;
	display: block;
	width: auto;
	padding: 0.5rem 1rem;
	transition: 0.4s;
	border: none;
}
.tab-title-list li a:hover {
	color: #fff;
	background: var(--txt_color);
}
.ul-archive {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
}
.ul-archive li {
	width: calc(100% / 2 - 5%);
	margin-bottom: 8%;
	display: flex;
    flex-direction: column;
}
.archive-li-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.archive-category {
    position: relative;
	margin-right: 2rem;
	display: inline-block;
}
.archive-category::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1rem;
    background: var(--txt_color);
    top: 30%;
    right: -1rem;
}
.a-archive-title {
    flex-grow: 1;
    display: flex;
	justify-content: space-between;
    flex-direction: column;
	transition: 0.4s;
}
.a-archive-title:hover {
	opacity: 0.7;
}
.a-archive-title h4 {
	flex-grow: 1;
}
.archive-title {
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0.3rem 0 1rem;
}
.ul-archive li picture {
    margin-top: auto;
}
.ul-archive li picture img {
    width: 100%;
    max-height: 300px;
	height: 43vw;
    object-fit: cover;
}
.no-content {
	width: 100%;
	text-align: center;
	margin-bottom: 6rem;
}
/* シングルページ */
.single-ttl {
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1.3;
	padding: 0.8rem 0;
	margin-bottom: 3rem;
	border-bottom: 1px solid var(--txt_color);
}
.main-container {
	position: relative;
}
 @media screen and (max-width: 1000px) {
	.main-container {
		width: 100%;
		padding: 40px;
		margin: -30px auto;
		position: relative; 
	 }
}
@media screen and (max-width: 640px) {
	.main-container {
		padding: 4% 6%;
	} 
}

.swiper-button-prev,.swiper-button-next {
	content: "";
	width: 2.5rem!important;
    height: 2.5rem!important;
    z-index: 100;
}
.swiper-button-prev,
.swiper-button-next {
	color: var(--main_color);
	background: url(assets/img/common/arrow_green.svg) no-repeat center center / contain;
	mix-blend-mode: multiply;
}
.swiper-button-prev {
	transform: rotate(90deg);
}
.swiper-button-next {
	transform: rotate(-90deg);
}
.swiper-button-prev:after,.swiper-button-next:after {
	content: none !important; 
	position:absolute;
}
.swiper-container.works-slider {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.swiper-container.works-slider .swiper-slide .objectfit {
	-o-object-fit: cover;
    object-fit: cover;
    height: 500px;
    width: 100%; 
}
@media screen and (max-width: 768px) {
	.swiper-container.works-slider .swiper-slide .objectfit {
		height: 460px;
	} 
}
@media screen and (max-width: 640px) {
	.swiper-container.works-slider .swiper-slide .objectfit {
		height: 300px;
	} 
	.swiper-button-prev {
		left: 0!important;
	}
	.swiper-button-next {
		right: 0!important;
	}
}
@media screen and (max-width: 425px) {
	.swiper-container.works-slider .swiper-slide .objectfit {
        height: 200px;
    }
}
.swiper-container.slider-thumbnail {
    margin-top: 1rem;
}
.swiper-container.slider-thumbnail .swiper-wrapper {
	height: 120px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between; 
}
@media screen and (max-width: 768px) {
	.swiper-container.slider-thumbnail .swiper-wrapper {
		height: 100px;
		overflow: hidden;
	}
}
@media screen and (max-width: 425px) {
	.swiper-container.slider-thumbnail .swiper-wrapper {
		height: 60px;
	} 
}
 .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
    width: 24% !important;
	height: 120px; 
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide img {
    height: 120px;
    width: 100%;
    -o-object-fit: cover !important;
	object-fit: cover !important; 
}
@media screen and (max-width: 768px) {
	.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide img {
		height: 100px;
		overflow: hidden; 
	}
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
    opacity: 0.7;
	overflow: hidden; 
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
	opacity: 1; 
}
.single-category {
    border: 1px solid var(--txt_color);
    padding: 0.5rem;
    line-height: 1;
    display: block;
    width: fit-content;
    margin: 1rem 0 2rem auto;
	transition:0.4s;
}
.single-category:hover {
	color: #fff;
	background: var(--txt_color);
}
.single-ttl-h4 {
	font-size: 1.55rem;
	font-weight: bold;
	position: relative;
	padding: 0.8rem 0;
	margin-bottom: 1.8rem;
	border-bottom: 3px solid #f9f9f9;
}
.single-ttl-h4:before {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 6.3rem;
	height: 3px;
	background: var(--main_color);
}
.single_movie_wrap {
	margin-bottom: 5%;
}
.dl-works-txt {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
.dl-works-txt dt, .dl-works-txt dd {
	border: 1px solid var(--txt_color);
}
.dl-works-txt dt {
	font-size: 1rem;
	font-weight: bold;
    background: #eefaf6;
	width: 40%;
	display: flex;
    align-items: center;
    padding-left: 3rem;
}
.dl-works-txt dd {
	width: 60%;
    padding: 1.5rem;
}
.dl-works {
    display: flex;
	flex-wrap: wrap;
}
.dl-works dt, .dl-works dd {
	padding: 0.8rem 0 0.8rem 2rem;
}
.dl-works dt {
	width: 20%;
	border-bottom: 2px solid var(--txt_color);
}
.dl-works dd {
	width: 80%;
	border-bottom: 1px solid #f9f9f9;
}
.post_nav > .a-arrow {
	font-size: 1rem;
	width: 39vh;
	max-width: 300px;
    text-align: center;
	padding: 1rem;
}
.post_nav > .a-arrow::after {
	content: none;
}
.btn-flat {
    transition: all 0.2s ease-in;
    position: relative;
}
.btn-flat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: var(--main_color) transparent transparent transparent;
    transition: all 0.4s ease-in;
}
.btn-flat:hover::before {
    border-width: 34px 34px 0 0;
}
@media screen and (max-width: 768px) {
	.ul-archive {
    	justify-content: space-around;
	}
	.ul-archive li {
    	width: 80%;
	}
	.archive-title {
		font-size: 20px;
	}
	.dl-works-txt dt {
		padding-left: 0;
		justify-content: center;
	}
	.dl-works dt {
		text-align: center;
		padding: 1rem 0;
	}
	/* シングルページ */
	.single-ttl {
		font-size: 1.55rem;
	}
	.single-ttl-h4 {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 640px) {
	.tab-title-list-wrap {
		padding: 11% 5%;
	}
	.tab-title-list-wrap h4 {
		top: -3%;
	}
	.tab-title-list {
		justify-content: space-around;
	}
	.ul-archive li {
		width: 90%;
    	margin-bottom: 3rem;
	}
	.tab-title-list li a {
		width: 60vw;
	}
	/* シングルページ */
	.dl-works-txt {
		flex-direction: column;
	}
	.dl-works-txt dt, .dl-works-txt dd {
		width: 100%;
		margin: auto;
	}
	.dl-works-txt dt {
		padding: 1rem;
	}
	.post_nav > .a-arrow {
    	width: 50%;
	}
}
@media screen and (max-width: 425px) {
	.dl-works {
		flex-direction: column;
	}
	.dl-works dt, .dl-works dd {
		text-align: left;
        padding: 0.7rem 0;
    }
	.dl-works dt {
        width: 40%;
    }
	.dl-works dd {
        width: 100%;
    }
}

/* ページネーション */
.archive_pagination {
    margin-top: 7rem;
}
.page-numbers {
    display: flex;
}
ul.page-numbers {
    display: flex;
	justify-content: center;
	align-items: center;
}
ul.page-numbers li {
    margin: 0 0.3rem;
	width: 3rem;
}
a.page-numbers {
	line-height: 1;
	padding: 1rem;
	transition: 0.4s;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
}
a.page-numbers:hover {
	color: #fff;
	background: var(--txt_color);
}
.page-numbers.current {
	color: #fff;
    padding: 0.5rem 1rem;
    background: var(--txt_color);
	border-radius: 50%;
	align-items: center;
    justify-content: space-around;
}
span.page-numbers.dots {
    justify-content: center;
}
.post_nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4rem;
}
.old.page-link a, .next.page-link a {
	
}
.btn_post {
	color: #fff;
	font-size: 1.55rem;
	font-family: var(--en_font);
	line-height: 1;
	letter-spacing: 0.3rem;
	padding: 0.8rem 1.5rem;
	background: var(--main_color);
    outline: none;
	position: relative;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    transition: all .3s;
    transform: perspective(1px) translateZ(0);
    overflow: hidden;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	border: 1px solid var(--main_color);
}
.btn_post:hover {
	color: var(--main_color);
    border: 1px solid var(--main_color);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.btn_post::before {
	content: "";
	position: absolute;
    background: #fff;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    margin: auto;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
    z-index: -1;
}
.btn_post:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.post_nav_content {
	width: 40%;
	display: flex;
	 justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}
@media screen and (max-width: 640px) {
	.post_nav_content {
		width: 70%;
	}
}



/*   施工実績
================================================ */
/* アーカイブページ */
.archive-img-wrap {
	position: relative;
}
.new-label {
    color: #fff;
    font-size: 1rem;
    background: #d8401d;
    line-height: 1;
    padding: 0.7rem;
    position: absolute;
    top: 0;
    left: 0;
}
/* シングルページ */
.works-category-wrap {
	display: flex;
	justify-content: end;
	flex-wrap: wrap;
}
.works-category-wrap a {
	margin: 1rem 0 1rem 0;
}
.works-category-wrap a:last-child {
	margin-left: 1rem;
}
.iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 5rem;
}
.iframe-wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/*   管理物件
================================================ */
/* シングルページ */
.cp-btn {
	display: block;
    width: 70%;
    margin: 3rem auto 0;
    background: var(--main_color);
	position: relative;
	transition: 0.4s;
}
.cp-btn:hover {
	opacity: 0.7;
}
.cp-btn::after {
    content: "";
    position: absolute;
    width: 4vw;
    height: 1rem;
    top: 40%;
    right: 5%;
	background: #fff;
    -webkit-mask-image: url(assets/img/common/arrow.svg);
    mask-image: url(assets/img/common/arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
	transform: translateX(-8px);
    transition: 0.3s;
}
.cp-btn:hover::after {
	right: 1rem;
}
.cp-btn span {
	color: #fff;
	font-size: 20px;
    display: block;
    padding: 1rem 1rem 1rem 35%;
	transition:
}
@media screen and (max-width: 768px) {
	.cp-btn span {
		padding: 1rem 1rem 1rem 22%;
	}
	.cp-btn:hover::after {
		right: -0.5rem;
	}
}
@media screen and (max-width: 640px) {
	.cp-btn {
		width: 100%;
	}
	.cp-btn::after {
		width: 10vw;
	}
}
@media screen and (max-width: 425px) {
	.cp-btn span {
        padding: 1rem 1rem 1rem 10%;
    }
	.cp-btn::after {
        width: 6.8vw;
    }
}


/*   お知らせ
================================================ */
/* アーカイブページ */
.info-archive-title-list-wrap {
    border-bottom: 1px solid var(--txt_color);
}
.archive-wrap {
	width: 80%;
    max-width: 1000px;
    margin: auto;
}
.ul-archive-info li {
    border-bottom: 1px solid #b5b5b5;
    padding: 1rem 0;
}
.archive-info-li-wrap {
	display: flex;
	flex-wrap: wrap;
}
.archive-info-date {
	color: #b5b5b5;
}
.archive-info-category {
	text-align: center;
	line-height: 1;
	width: 7rem;
	max-width: 7rem;
	height: 100%;
    border: 1px solid var(--txt_color);
    padding: 0.3rem;
	margin: 0 1rem;
	transition: 0.4s;
}
.archive-info-category:hover {
	color: #fff;
	background: var(--txt_color);
}
.archive-info-title {
    width: 60%;
}
.a-archive-info {
	width: 13%;
	height: 100%;
	text-align: center;
    border: 1px solid var(--txt_color);
    margin-left: auto;
	position: relative;
	overflow: hidden;
	transition: 0.4s;
}
@media screen and (max-width: 1000px) {
	.a-archive-info {
		width: 18%;
	}
}
@media screen and (max-width: 768px) {
	.archive-info-title {
    	width: 100%;
	}
	.a-archive-info {
		width: 35%;
	}
}
@media screen and (max-width: 640px) {
	.archive-info-title {
		width: 100%;
		margin-bottom: 1rem;
	}
	.archive-wrap {
		width: 90%;
	}
}
/* シングルページ */
.single-date-wrap {
	display: flex;
    align-items: center;
}
.single-info-date {
	color: #b5b5b5;
	margin-right: 1rem;
}
.single-wrap.-info > .single-ttl {
	margin-bottom: 1rem;
}
.single-info-category {
	border: 1px solid var(--txt_color);
	line-height:1;
	padding: 0.3rem;
}
.single-info-category:hover {
	color: #fff;
}
.single-info-contents {
	margin-top: 3rem;
}
.single-info-contents h1,
.single-info-contents h2,
.single-info-contents h3,
.single-info-contents h4,
.single-info-contents h5 {
	font-weight: bold;
	margin: 1rem 0;
}
.single-info-contents h1 {
	font-size: 1.7rem;
	background: linear-gradient(transparent 60%, #00927691 60%);
}
.single-info-contents h2 {
	font-size: 1.55rem;
	padding: 0.8rem 0;
    border-bottom: 3px solid #f9f9f9;
	position: relative;
}
.single-info-contents h2::before {
	content: "";
	position: absolute;
    bottom: -6px;
    left: 0;
    width: 20%;
    height: 3px;
    background: var(--main_color);
}
.single-info-contents h3 {
	font-size: 1.45rem;
}
.single-info-contents h3::first-letter {
	font-size: 1.55rem;
	color: var(--main_color);
}
.single-info-contents h4 {
	font-size: 1.3rem;
	border-left: 5px solid var(--main_color);
	padding: 0.3rem;
	margin: 2rem 0 1.5rem;
}
.single-info-contents h5 {
	font-size: 1.15rem;
	position: relative;
	padding-left: 5rem;
}
.single-info-contents h5::before {
	content: "";
	position: absolute;
	width: 4rem;
	height: 1px;
	background: var(--txt_color);
	top: 50%;
	left: 0;
}
.single-info-contents p {
	line-height: 2;
	margin-bottom: 1rem;
}
.single-info-contents p strong {
	font-weight: bold;
}
.single-info-contents img {
	margin-bottom: 2rem;
	width: 85%;
	margin: auto;
}
.single-info-contents a {
	color: var(--main_color);
	position: relative;
	transition: 0.4s;
}
.single-info-contents a:hover {
	color: #fff;
}
.single-info-contents a::before {
	content: "";
	position: absolute;
	background: var(--main_color);
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
 	display: block;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	z-index: -1;
}
.single-info-contents a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
.single-info-contents ul,
.single-info-contents ol {
	margin: 1rem;
}
.single-info-contents ul li strong,
.single-info-contents ol li strong {
	font-weight: bold;
}
.single-info-contents ul li {
	list-style: disc;
	
}
.single-info-contents ol li {
	list-style: auto;
}
.single-info-contents strong {
	font-weight: bold;
}
@media screen and (max-width: 425px) {
	.single-date-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.single-info-date {
		margin-bottom: 1rem;
	}
}


}
/*   採用情報
================================================ */
.archive-wrap.-recruit a {
	display: block;
	position: relative;
    transition: 0.4s;
}
.archive-wrap.-recruit a::before, .archive-wrap.-recruit a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
}
.archive-wrap.-recruit a:hover::before, .archive-wrap.-recruit a:hover::after {
    width: 100%;
    height: 100%;
    border-color: var(--txt_color);
    transition: width .3s ease, height .3s .3s ease;
}
.archive-wrap.-recruit a::before {
    top: -2px;
    left: 0;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
}
.archive-wrap.-recruit a::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
}

@media screen and (max-width: 640px) {
	#archive-recruit-info{
		margin: 15% 10%;
	}
]


