@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LYX */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
.inter {
	font-family:"helvetica-neue-lt-pro",sans-serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 120rem;
}
@media all and (max-width: 980px) {
    .content {
        margin: 0 1.6rem !important;
        max-width: inherit !important;
    }
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 3.9rem;
}
.headLine01 .jp {
	display: block;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.08rem;
}
.headLine01 .en {
	font-size: 7.2rem;
	font-weight: 400;
	line-height: 1.25;
}
@media all and (max-width: 980px) {
	.headLine01 .jp {
		letter-spacing: 0.07rem;
	}
	.headLine01 .en {
		font-size: 4.8rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	padding-bottom: 3.8rem;
	border-bottom: 1px solid #D9D9D9;
}
.headLine02 .jp {
	display: block;
	font-weight: 400;
	letter-spacing: 0.08rem;
}
.headLine02 .en {
	font-size: 7.2rem;
	font-weight: 400;
	line-height: 1.25;
}
@media all and (max-width: 980px) {
    .headLine02 {
        padding-bottom: 2.2rem;
    }
    .headLine02 .jp {
        margin-bottom: 0.1rem;
        font-weight: 300;
        letter-spacing: 0.07rem;
    }
    .headLine02 .en {
        font-size: 4.8rem;
        font-weight: 400;
    }
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 4rem;
	padding-left: 6.8rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	background: url(../img/common/h_img01.png) no-repeat left top 0.8rem / 5.2rem;
}
.headLine03 .en {
	margin-right: 1.6rem;
	display: inline-block;
	font-size: 5.6rem;
	font-weight: 400;
	line-height: 1.25;
}
.headLine03 .jp {
	padding-bottom: 1rem;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.08rem;
}
.headLine03.else01 {
	background-image: url(../img/common/h_img02.png);
}
.headLine03.else02 {
	background-image: url(../img/common/h_img03.png);
}
@media all and (max-width: 980px) {
	.headLine03 {
		padding-top: 0.9rem;
		margin-bottom: 2.3rem;
		display: block;
	}
	.headLine03 .en {
		margin-right: 0;
		font-size: 4rem;
		display: block;
	}
	.headLine03 .jp {
		padding-bottom: 1rem;
		letter-spacing: 0.07rem;
	}
}
/*------------------------------------------------------------
	headLine04
------------------------------------------------------------*/
.headLine04 {
	margin-bottom: 7.3rem;
}
.headLine04 .en {
	margin-bottom: 0.5rem;
	padding-left: 3.3rem;
	display: block;
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.25;
	background: url(../img/common/h_img01.png) no-repeat left top / 2.6rem;
}
.headLine04 .jp {
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.12rem;
}
@media all and (max-width: 980px) {
	.headLine04 {
		margin-bottom: 6.3rem;
	}
	.headLine04 .en {
		margin-bottom: 0.9rem;
		padding-left: 2.8rem;
		font-size: 1.6rem;
		background-size: 2rem auto;
	}
	.headLine04 .jp {
		font-size: 3.2rem;
		letter-spacing: 0.096rem;
	}
}
/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	width: 28rem;
}
.comLink a,
.comLink .link {
	padding: 0.5rem 1.5rem 0.5rem 3.2rem;
	min-height: 5.6rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 12rem;
	background-color: #FF4D00;
	transition: .3s;
}
.comLink .link {
	pointer-events: none;
}
.comLink .text {
	flex: 0 0 auto;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.048rem;
	position: relative;
	overflow: hidden;
	display: inline-block;
	cursor: pointer;
}
.comLink .ico {
	margin: 0 0 0 auto;
	overflow: hidden;
	width: 2.4rem;
}
.comLink em {
	font-style: normal;
	display: flex;
}
.comLink .text em + em {
	width: 100%;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, 100%);
    opacity: 0;
	transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1), opacity .1s linear;	
}
.comLink .text em:first-of-type {
	transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.1s linear;
}
@keyframes line {
    0% {
        transform: translateX(0%)
    }

    49% {
        transform: translateX(100%);
        visibility: hidden
    }

    50% {
        transform: translateX(-100%);
        visibility: hidden
    }

    52% {
        visibility: visible
    }

    100% {
        transform: translateX(0%)
    }
}
@media all and (min-width: 981px) {
	.comLink:hover a,
    .comLink:hover .link {
        background-color: #B83800;
    }
    .comLink:hover .text em:first-of-type {
        transform: translateY(-100%);
        opacity: 0
    }
    .comLink:hover .text em + em {
        transform: translate(-50%, 0%);
        opacity: 1
    }
    .comLink:hover .ico img {
        animation: line .3s ease-in-out
    }
}
@media all and (max-width: 980px) {
	.comLink {
		width: 24rem;
	}
}
/*------------------------------------------------------------
	comLinkUl
------------------------------------------------------------*/
.comLinkUl li:not(:last-child) {
	margin-bottom: 4rem;
}
.comLinkUl a {
	position: relative;
	padding: 1rem 4.8rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 2.4rem;
	line-height: 1.4;
	letter-spacing: 0.072rem;
	min-height: 12rem;
	background-color: #fff;
	border-top: 1px solid #D9D9D9;
	border-left: 1px solid #D9D9D9;
	border-top-left-radius: 0.8rem;
}
.comLinkUl .ico {
	height: 2.4rem;
	position: absolute;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	right: 5.6rem;
}
.comLinkUl .ico img {
	width: 2.4rem;
}
.comLinkUl .ico::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	z-index: -1;
	background-color: #FF4D00;
	content: "";
	transition: .3s;
}
.comLinkUl a:hover {
	opacity: 0.7;
}
@media all and (min-width: 981px)  {
	.comLinkUl a:hover .ico::after {
		width: 6rem;
		height: 6rem;
	}
}
@media all and (max-width: 980px) {
	.comLinkUl li:not(:last-child) {
		margin-bottom: 2.4rem;
	}
	.comLinkUl a {
		padding: 1rem 2.3rem;
		font-size: 2rem;
		letter-spacing: 0.06rem;
		min-height: 8.8rem;
	}
	.comLinkUl .ico {
		right: 3.2rem;
	}
}
/*------------------------------------------------------------
    comNewsUl
------------------------------------------------------------*/
.comNewsUl {
    gap: 4.3rem 4.1%;
}
.comNewsUl li {
    width: 30.6%;
}
.comNewsUl a {
    display: block;
}
.comNewsUl .photo {
    margin-bottom: 2.5rem;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid #D9D9D9;
    aspect-ratio: 368 / 207;
}
.comNewsUl .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform ease 0.3s;
    -webkit-transition: transform ease 0.3s;
}
.comNewsUl .textBox .title {
	min-height: 6.7rem;
    margin-bottom: 2.3rem;
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: 0.072rem;
    text-overflow:ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.comNewsUl .textBox .text {
    margin-bottom: 2.4rem;
    line-height: 1.4;
    letter-spacing: 0.08rem;
    text-overflow:ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.comNewsUl .innerBox {
    align-items: center;
}
.comNewsUl .innerBox .tagUl {
    flex: 1;
    gap: 0.5rem;
}
.comNewsUl .innerBox .tagUl li {
    padding: 0.4rem 0.2rem 0.2rem;
    width: 10.1rem;
    text-align: center;
	font-weight: 400;
    font-size: 1.3rem;
    border-radius: 12rem;
    border: 1px solid #BFBFBF;
	text-transform: uppercase;
}
.comNewsUl .innerBox time {
    width: 7rem;
	font-weight: 400;
    font-size: 1.3rem;
    text-align: right;
}
.comNewsUl a:hover {
	opacity: 0.7;
}
@media all and (min-width: 981px) {
    .comNewsUl a:hover img {
        transform: scale(1.1);
		-webkit-transform: scale(1.1);
    }
}
@media all and (max-width: 980px) {
    .comNewsUl {
        display: block;
    }
    .comNewsUl li {
        margin-bottom: 4.8rem;
        width: auto;
    }
    .comNewsUl li:last-child {
        margin-bottom: 0;
    }
    .comNewsUl .photo {
        margin-bottom: 2.5rem;
        aspect-ratio: 382 / 214;
    }
    .comNewsUl .textBox .title {
		min-height: fit-content;
        margin-bottom: 1.5rem;
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 0.06rem;
    }
    .comNewsUl .textBox .text {
        margin-bottom: 2.1rem;
        font-weight: 300;
        letter-spacing: 0.07rem;
    }
    .comNewsUl .innerBox .tagUl li {
        padding-bottom: 0.4rem;
        font-size: 1.2rem;
    }
    .comNewsUl .innerBox time {
        margin-right: 0.1rem;
        font-size: 1.2rem;
    }
}
/*------------------------------------------------------------
	comContactBox
------------------------------------------------------------*/
.comContactBox {
	position: relative;
	z-index: 12;
	background-color: #FF4D00;
}
.comContactBox::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30.9rem;
    top: -14.7rem;
    background: url(../img/common/circle_img.png) no-repeat center top;
    background-size: 450rem auto;
    content: "";
}
.comContactBox a {
	padding: 8rem 0;
	display: block;
}
.comContactBox .content {
	position: relative;
}
.comContactBox .headLine01 {
	margin-bottom: 2.4rem;
	color: #fff;
}
.comContactBox .text {
	color: #fff;
	font-weight: 400;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.048rem;
}
.comContactBox .ico {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 1.3rem;
	transform: translateY(-50%);
}
.comContactBox .ico::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 50%;
	z-index: -1;
	background-color: #fff;
	content: "";
	transition: .3s;
}
.comContactBox .ico img {
	width: 3.8rem;
}
.comContactBox a:hover {
	opacity: 0.7;
}
@media all and (min-width: 981px) {
	.comContactBox a:hover .ico::after {
		width: 8rem;
		height: 8rem;
	}
}
@media all and (max-width: 980px) {
	.comContactBox .content {
		margin: 0 2.7rem !important;
	}
	.comContactBox::before {
		height: 15.4rem;
		top: -10.3rem;
		background-image: url(../img/common/circle_img_sp.png);
		background-size: 220rem auto;
	}
	.comContactBox a {
		padding: 5.7rem 0 13.5rem;
	}
	.comContactBox .headLine01 {
		margin-bottom: 2.4rem;
	}
	.comContactBox .text {
		font-weight: 300;
		font-family:"hiragino-kaku-gothic-pron",sans-serif;
		letter-spacing: 0.042rem;
	}
	.comContactBox .ico {
        top: auto;
        bottom: -6.6rem;
        right: 1.3rem;
        transform: translateY(0);
    }
}
/*------------------------------------------------------------
    pageTitle
------------------------------------------------------------*/
.pageTitle {
	margin: 10.3rem 0 11.1rem;
}
@media all and (max-width: 980px) {
    .pageTitle {
        margin: 0 !important;
        padding: 15.9rem 0 8rem;
    }
}
/*------------------------------------------------------------
    comBtn01
------------------------------------------------------------*/
.comBtn01 {
	width: 28rem;
}
.comBtn01 a {
	padding: 0.8rem 3.2rem;
	min-height: 5.6rem;
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	letter-spacing: 0.048rem;
	border: 1px solid #D9D9D9;
	border-radius: 12rem;
	overflow: hidden;
	background-color: #fff;
}
.comBtn01 .text {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.comBtn01 a .ico {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	right: 1.5rem;
}
.comBtn01 a .ico img {
	width: 2.4rem;
}
.comBtn01 a .ico::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	z-index: -1;
	background-color: #FF4D00;
	content: "";
	transition: .3s;
}
.comBtn01 em {
	font-style: normal;
	display: flex;
}
.comBtn01 .text em + em {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 100%);
    opacity: 0;
	transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1), opacity .1s linear;	
}
.comBtn01 .text em:first-of-type {
	transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.1s linear;
}
@media all and (min-width: 981px) {
    .comBtn01 a:hover .text em:first-of-type {
        transform: translateY(-100%);
        opacity: 0
    }
    .comBtn01 a:hover .text em + em {
        transform: translate(-50%, 0%);
        opacity: 1
    }
    .comBtn01 a:hover .ico img {
        animation: line .3s ease-in-out
    }
}
@media all and (max-width: 980px) {
}
/*------------------------------------------------------------
    wp-pagenavi
------------------------------------------------------------*/
.wp-pagenavi {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.wp-pagenavi span,
.wp-pagenavi a {
    margin: 1rem 0.75rem 0;
    padding: 0.2rem 0 0;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    border-radius: 50%;
    box-sizing: border-box;
}
.wp-pagenavi .current {
    color: #FFF;
    background-color: #FF4D00;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    margin-right: -0.3rem;
    background: url(../img/common/icon05.png) no-repeat center center / 1rem;
}
.wp-pagenavi .nextpostslink {
    margin: 1rem 0.75rem 0 -0.3rem;
    background-image: url(../img/common/icon06.png);
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages,
.wp-pagenavi .extend {
    display: none;
}
@media all and (min-width: 981px) {
    .wp-pagenavi a:hover {
        color: #FFF;
        background-color: #FF4D00;
    }
    .wp-pagenavi .nextpostslink:hover,
    .wp-pagenavi .previouspostslink:hover {
        background-color: transparent;
        opacity: 0.7;
    }
}
@media all and (max-width: 980px) {
    .wp-pagenavi span,
    .wp-pagenavi a {
        margin: 1rem 0.75rem 0;
        padding: 0;
        font-size: 1.8rem;
    }
    .wp-pagenavi .current {
        color: #FFF;
        background-color: #FF4D00;
    }
    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .previouspostslink {
        margin-right: -0.3rem;
        background: url(../img/common/icon05.png) no-repeat center center / 1rem;
    }
    .wp-pagenavi .nextpostslink {
        margin: 1rem 0.75rem 0 -0.3rem;
        background-image: url(../img/common/icon06.png);
    }
}
/*------------------------------------------------------------
    comServiceUl
------------------------------------------------------------*/
.comServiceUl {
	gap: 3rem 2%;
}
.comServiceUl li {
	width: 23.5%;
}
.comServiceUl .photo {
	margin-bottom: 2.4rem;
	border-radius: 0.8rem;
	overflow: hidden;
	border: 1px solid #D9D9D9;
}
.comServiceUl .photo img {
	width: 100%;
}
.comServiceUl .textBox .title {
	margin-bottom: 1.6rem;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.06rem;
}
.comServiceUl .textBox .text {
	letter-spacing: 0.048rem;
}
@media all and (max-width: 980px) {
	.comServiceUl {
		display: block;
	}
	.comServiceUl li {
		margin-bottom: 2.4rem;
		width: auto !important;
	}
	.comServiceUl li:last-child {
		margin-bottom: 0;
	}
	.comServiceUl .photo {
		margin-bottom: 2.4rem;
	}
	.comServiceUl .textBox .title {
		margin-bottom: 1.6rem;
		font-size: 1.8rem;
		letter-spacing: 0.054rem;
	}
	.comServiceUl .textBox .text {
		letter-spacing: 0.042rem;
	}
}
/*------------------------------------------------------------
    fadeInUp
------------------------------------------------------------*/
.fadeInUp {
    opacity: 0;
    transform: translate(0,30px);
    transition: opacity ease-in-out 0.8s,transform ease-in-out 0.8s;
}
.fadeInUp.in  {
    opacity: 1;
    transform: translate(0, 0);
}