@charset "UTF-8";

/*メインイメージ
---------------------------------------------------------*/
.m_img_area {
	height: 100vh;
	display: flex;
	flex-direction: column;
}
.m_img_area header {
	max-height: max-content;
}
.m_img_area .m_img {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	background: url("../images/top/m_img@2x.jpg") no-repeat center center;
	background-size: cover;
	min-height: max-content;
	box-sizing: border-box;
/*	padding: min(5%,75px) 0;*/
	overflow: hidden;
}
/*
.m_img_area .m_img {
	aspect-ratio: 1500/900;
}
*/

.m_img_area .m_img .copy {
	position: relative;
	width: 82%;
	filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
	margin: 0 auto;
    animation-name: copyAnime;
    animation-duration: 1.6s;
    animation-timing-function: ease;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
	z-index: 1;
}
.m_img_area .m_inbox {
	position: relative;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	
/*	width: 96%;*/
	width: 80%;
	max-width: 1200px;
	padding-top: 10%;
	margin: 0 auto;
}
.m_img_area .m_col3 {
    display: flex;
	align-items: flex-start;
	margin-top: -1em;
}
.m_img_area .m_col3 > li {
	position: relative;
    width: 33.33%;
	text-align: right;
	color: #FFF;
	font-size: min(2vw,200%);
	letter-spacing: normal;
	line-height: 1.5;
	white-space: nowrap;
	box-sizing: border-box;
	padding: 0 10% 5% 0;
}
.m_img_area .m_col3 > li::before {
	position: absolute;
	content: "";
	background: linear-gradient(0deg,rgba(43,135,73,0.9) 0%, rgba(43,135,73,0.3) 100%);
	width: 100%;
	height: 280%;
	left: 0;
	bottom: 0;
	transform: skewX(-10deg);
}
.m_img_area .m_col3 > li p {
	position: relative;
}
.m_img_area .m_col3 > li p.ft_bilo {
	color: #b5a08c;
	font-size: 74%;
	font-style: italic;
	letter-spacing: .06em;
	mix-blend-mode: screen;
	margin-bottom: .2em;
}
.m_img_area .m_col3 > li p.ft_bilo::after {
	position: absolute;
	content: "";
	background: url("../images/top/plus.svg") no-repeat left top;
	background-size: contain;
	width: 1.8em;
	height: 1.8em;
	left: 105%;
	top: -0.2em;
}
.m_img_area .m_col3 > li:nth-of-type(2),
.m_img_area .m_col3 > li:nth-of-type(3) {
	margin-left: -2%;
}
.m_img_area .m_col3 > li:nth-of-type(1) {
	margin-top: 8%;
}
.m_img_area .m_col3 > li:nth-of-type(2) {
	margin-top: 4%;
}
.m_img_area .m_col3 > li:nth-of-type(2)::before {
	background: linear-gradient(0deg, rgba(3, 118, 110, 0.9) 0%, rgba(3, 118, 110, 0.3) 99.95%);
}
.m_img_area .m_col3 > li:nth-of-type(3)::before {
	background: linear-gradient(0deg, rgba(102, 138, 4, 0.9) 0%, rgba(102, 138, 4, 0.3) 100%);
}

/*アニメーション*/
.m_img_area .m_col3 > li {
	opacity: 0;
	transition: all .8s;
	transform: translateX(-8%);
}
.m_img_area .anime_on .m_col3 > li {
	opacity: 1;
	transform: translateX(0);
}
.m_img_area .m_col3 > li:nth-of-type(2) {
	transition-delay: .2s;
}
.m_img_area .m_col3 > li:nth-of-type(3) {
	transition-delay: .4s;
}

@keyframes copyAnime {
0% {
	opacity:0;
}
100% {
	opacity:1;
}
}

/* PC調整
------------------------------------------*/
@media only screen and (min-width: 768px) and (min-aspect-ratio: 1024/600) {


}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
.m_img_area {
	height: 100svh;
}
.m_img_area .m_img {
	background-image: url("../images/top/m_img_sp@2x.jpg");
}
.m_img_area .m_inbox {
	display: block;
	width: 100%;
	padding-top: 0;
}
.m_img_area .m_img .copy {
	position: absolute;
	width: 30%;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.4));
	margin: 0;
	left: 7%;
	top: 5%;
}
.m_img_area .m_col3 {
    display: block;
}
.m_img_area .m_col3 > li {
    width: 95%;
	font-size: 105%;
	padding: 10% 12% 8% 3%;
}
.m_img_area .m_col3 > li::before {
    height: 100%;
}
.m_img_area .m_col3 > li:nth-of-type(1) {
	margin-top: 0;
}
.m_img_area .m_col3 > li:nth-of-type(2) {
	margin-top: 0;
	margin-left: 3%;
}
.m_img_area .m_col3 > li:nth-of-type(3) {
	margin-left: 8%;
}
.m_img_area .m_col3 > li:nth-of-type(2),
.m_img_area .m_col3 > li:nth-of-type(3) {
	margin-top: -3%;
}
.m_img_area .m_col3 > li::before {
	background: linear-gradient(to left,rgba(43,135,73,0.9) 0%, rgba(43,135,73,0.3) 100%);
}
.m_img_area .m_col3 > li:nth-of-type(2)::before {
	background: linear-gradient(to left, rgba(3, 118, 110, 0.9) 0%, rgba(3, 118, 110, 0.3) 99.95%);
}
.m_img_area .m_col3 > li:nth-of-type(3)::before {
	background: linear-gradient(to left, rgba(102, 138, 4, 0.9) 0%, rgba(102, 138, 4, 0.3) 100%);
}
.m_img_area .m_col3 > li p.ft_bilo::after {
	left: 102%;
}

}

/* PC調整
------------------------------------------*/
@media only screen and (min-width: 768px) and (min-aspect-ratio: 1500/900) {

.m_img_area .m_inbox {
	width: 70%;
	padding-top: 8%;
}
.m_img_area .m_img .copy {
    width: 76%;
}
.m_img_area .m_col3 > li {
    font-size: min(1.7vw,200%);
    padding: 0 10% 3% 0;
}
.m_img_area .m_col3 > li::before {
    height: 270%;
}
.m_img_area .m_col3 > li:nth-of-type(1) {
	margin-top: 6%;
}
.m_img_area .m_col3 > li:nth-of-type(2) {
	margin-top: 3%;
}

}
/* PC調整
------------------------------------------*/
@media only screen and (min-width: 768px) and (min-aspect-ratio: 1500/700) {

.m_img_area {
	height: auto;
	min-height: 100vh;
	display: block;
}
.m_img_area .m_img {
	padding: min(3%,75px) 0;
}

}
/*
---------------------------------------------------------*/
#pagebody {
	padding-top: 80px;
}

.top_index1 {
	position: relative;
	max-width: max-content;
	text-align: left;
	color: #8c7155;
	font-size: min(2.8vw,193%);
	letter-spacing: .1em;
	line-height: 1.4;
	padding-right: 2em;
	margin-bottom: 3em;
}
.top_index1 .ft_min {
	text-align: left;
	padding-left: 3.2em;
}
.top_index1 .ft_bilo {
	text-align: left;
	font-size: 448%;
	letter-spacing: -0.02em;
	line-height: 0.9;
}
.top_index1::before,
.top_index1::after {
	position: absolute;
	content: "";
	background: linear-gradient(0deg,rgba(118,166,85,0.3) 0%, rgba(160,224,115,0.8) 100%);
	top: 0;
	
	opacity: 0;
	transition: all 1s;
	transition-delay: .1s;
}
.top_index1::before {
	width: 2.8em;
	height: 3.8em;
	left: -1.8em;
	transform: skewX(-15deg);
}
.top_index1::after {
	background : linear-gradient(0deg, rgba(160,224,115,0.8) 0%, rgba(118,166,85,0.3) 100%);
	width: .3em;
	height: 5.3em;
	right: 1em;
	transform: skewX(-15deg);
	transition-delay: .2s;
}
.top_index1.al_c {
	margin-left: auto;
	margin-right: auto;
}
.top_index1.anime_on::before {
	opacity: 1;
	left: -0.8em;
}
.top_index1.anime_on::after {
	opacity: 1;
	right: 0;
}

.jyunbi_txt {
	text-align: center;
	margin: 50px 0;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#intro .jyunbi_txt {
	text-align: left;
	font-size: 120%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#pagebody {
	padding-top: 8%;
}
	
#intro .jyunbi_txt {
	margin-left: 3%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#pagebody {
	padding-top: 12%;
}
	
.top_index1 {
	font-size: 100%;
}
.top_index1 .ft_bilo {
	font-size: 320%;
}
.top_index1::before {
	width: 2.2em;
	height: 3em;
}
.top_index1::after {
	height: 4.5em;
}
}



/*news
---------------------------------------------------------*/
#news .news_tit {
	color: #8c7155;
	font-size: min(2vw,166%);
	letter-spacing: .1em;
	line-height: 1.6;
}
#news .news_tit .ft_bilo {
	font-size: 320%;
	letter-spacing: 0;
	line-height: 1;
}
#news .news_list > li:nth-of-type(odd) {
	background-color: #faf9f8;
}
#news .news_list a {
	display: block;
	box-sizing: border-box;
	padding: 40px 3.6%;
}
#news .news_list dl {
	display: flex;
	transition: all .5s;
}
#news .news_list dt {
	color: #8c7155;
	font-size: 126%;
	letter-spacing: .1em;
	line-height: 1.6;
	margin-right: 2em;
}
#news .news_list dd .title {
	position: relative;
	color: #8c7155;
	font-size: 126%;
	letter-spacing: .1em;
	line-height: 1.6;
	margin-bottom: .5em;
}
#news .news_list dd .title::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e800';
	color: #8c7155;
	left: 0;
	top: .1em;
}
#news .news_list dd .title,
#news .news_list dd .content {
	padding-left: 1.8rem;
}
#news .news_list a:hover dl {
	transform: translateX(.6em);
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#news .inbox {
	display: flex;
}
#news .news_tit {
	width: 22%;
}
#news .news_list {
	width: 78%;
}

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#news .news_list a {
	padding: 20px 3.6%;
}
#news .news_list dt {
	font-size: 110%;
	letter-spacing: .05em;
	margin-right: 1.5em;
}
#news .news_list dd .title {
	font-size: 110%;
	letter-spacing: .05em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#news .news_tit {
	font-size: 110%;
	margin-bottom: 5%;
}
#news .news_tit .ft_bilo {
	font-size: 280%;
}
#news .news_list a {
	padding: 1em 5%;
}
#news .news_list dl {
	display: block;
}
#news .news_list dt {
	font-size: 105%;
	margin-right: 0;
	margin-bottom: .3em;
}
#news .news_list dd .title {
	font-size: 105%;
	letter-spacing: .02em;
 }
#news .news_list dd .title::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e800';
	color: #8c7155;
	left: 0;
	top: .1em;
}
#news .news_list dd .title,
#news .news_list dd .content {
	padding-left: 1.8rem;
}
#news .news_list dd .content {
	font-size: 90%;
	line-height: 1.6;
}
}


/*philosophy
---------------------------------------------------------*/
#philosophy {
	position: relative;
	background: url("../images/top/philo_bg@2x.jpg") no-repeat center top;
	background-size: 100% auto;
	padding-top: min(16vw,230px);
}
#philosophy::before {
	position: absolute;
	content: "";
	background : linear-gradient(0deg, rgba(118, 166, 85, 0.3) 0%, rgba(160, 224, 115, 0.8) 100%);
	width: min(25vw,250px);
	height: 478px;
	left: -120px;
	top: 0;
	transform: skewX(-15deg);
}
#philosophy::after {
	position: absolute;
	content: "";
	background: url("../images/top/philo_deco2.svg") no-repeat left top;
	width: min(28vw,420px);
	height: 478px;
	left: 82%;
	top: 20%;
}
#philosophy .philo_tit {
	position: relative;
	color: #FFF;
	font-size: 320%;
	letter-spacing: .1em;
	line-height: 1.5;
	margin-bottom: 1em;
}
#philosophy .philo_tit .ft_min {
	text-shadow: 0 0 20px rgba(0,0,0,0.6);
}
#philosophy .philo_tit .ft_bilo {
	color: #5ca32c;
	font-size: 35%;
	letter-spacing: .12em;
	line-height: 1;
	mix-blend-mode: screen;
}
#philosophy .copy1 {
	position: relative;
	color: #FFF;
	font-size: min(8.3vw,660%);
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 1em;
	text-shadow: 0 0 30px rgba(0,0,0,0.6);
}
#philosophy .philo_list {
	position: relative;
	max-width: 1120px;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
#philosophy .philo_list > li {
	width: 32.2%;
	max-width: 360px;
	background-color: #999;
	box-sizing: border-box;
	padding-bottom: 25px;
}
#philosophy .philo_list > li .box_img {
	position: relative;
	max-width: 360px;
	margin: 0 auto;
}

#philosophy .philo_list > li .box_img::before {
	position: absolute;
	content: "";
	background : linear-gradient(0deg, rgba(153,153,153,1) 0%, rgba(153,153,153,0.4) 100%);
	width: 100%;
	height: 35%;
	left: 0;
	bottom: -1px;
	clip-path: polygon(0 100%,100% 100%,100% 0);
}
#philosophy .philo_list > li .img_txt {
	position: absolute;
	width: 39%;
	max-width: 140px;
	right: 5%;
	top: 38%;
}
#philosophy .philo_list > li p {
	position: relative;
	text-align: center;
	color: #FFF;
	font-size: min(1.9vw,140%);
	letter-spacing: .1em;
	line-height: 1.5;
	margin-top: -0.8em;
}
#philosophy .copy2 {
	color: #8c7155;
	font-size: min(4vw,386%);
	letter-spacing: .1em;
	line-height: 1.4;
	margin-top: 1.2em;
	margin-bottom: 1em;
}
#philosophy .time {
	position: relative;
	padding-left: 3%;
}
#philosophy .time::before {
	position: absolute;
	content: "";
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
	width: 100vw;
	height: 200px;
	left: 50%;
	bottom: 15%;
	transform: translateX(-50%);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	z-index: -1;
	opacity: 0.5;
}
#philosophy .time .bg_img {
	position: absolute;
	width: 66%;
	right: 0;
	bottom: 35%;
}
#philosophy .time .txt1 {
	display: inline-block;
	color: #8c7155;
	font-size: 126%;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.4;
	white-space: nowrap;
	padding-bottom: .8em;
	padding-right: 3em;
	margin-bottom: 1em;
	border-bottom: 1px solid #8c7155;
}
#philosophy .time .txt2 {
	color: #8c7155;
	font-size: 206%;
	letter-spacing: .1em;
	line-height: 1.5;
	margin-bottom: 1em;
}
#philosophy .time .txt3 {
	color: #808080;
	font-size: 153%;
	letter-spacing: .1em;
	line-height: 1.7;
	background: url("../images/top/philo_abs@2x.png") no-repeat left center;
	background-size: auto 100%;
	padding: 1.6em 0 3em;
	padding-left: 6em;
	margin-top: 2em;
	margin-bottom: 1em;
}
#philosophy .time .txt3 span {
	display: block;
	font-size: min(4.1vw,186%);
}
#philosophy .txt4 {
	color: #8c7155;
	font-size: min(2.2vw,206%);
	letter-spacing: .1em;
	line-height: 2;
	margin-bottom: 1em;
}
/*アニメ*/
#philosophy::before,
#philosophy::after {
	transition: all .5s;
}
#philosophy.anime_on::before {
	left: -120px;
}
#philosophy.anime_on::after {
	left: 82%;
}

.slide1 li {
	display: none;
}
.bx-viewport .slide1 li {
	display: block !important;
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#philosophy .philo_list > li:nth-of-type(2) {transition-delay: .2s;}
#philosophy .philo_list > li:nth-of-type(3) {transition-delay: .4s;}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

#philosophy .time .bg_img {
	width: 60%;
	right: -5%;
	bottom: 30%;
}
#philosophy .time .txt1 {
	font-size: 115%;
	letter-spacing: .05em;
}
#philosophy .time .txt2 {
	font-size: 180%;
	letter-spacing: .08em;
}
#philosophy .time .txt3 {
	font-size: 130%;
	letter-spacing: .08em;
}
#philosophy .txt4 {
	font-size: 150%;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 1em;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#philosophy {
	background-size: 120% auto;
	padding-top: min(16vw,230px);
}
#philosophy::before {
	width: 30%;
	height: 50vw;
	left: -10%;
}
#philosophy::after {
	width: 45%;
	height: 80vw;
	left: 65%;
	top: 45vw;
}
#philosophy .philo_tit {
	font-size: 140%;
}
#philosophy .philo_tit .ft_min {
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
}
#philosophy .philo_tit .ft_bilo {
	font-size: 50%;
}
#philosophy .copy1 {
	font-size: 220%;
	text-shadow: 0 0 20px rgba(0,0,0,0.8);
}
#philosophy .philo_list {
	display: block;
	width: 100%;
	margin: 0 auto;
}
#philosophy .philo_list > li {
	width: 100%;
	max-width: none;
	background: linear-gradient(0deg, rgba(153,153,153,1) 50%, rgba(153,153,153,0) 80%);
	padding: 0 5% 1.5em;
}
#philosophy .philo_list > li:nth-of-type(n+2) {
	margin-top: 8%;
}
#philosophy .philo_list > li .box_img {
	width: 85%;
}
#philosophy .philo_list > li .img_txt {
	right: -10%;
	top: 50%;
}
#philosophy .philo_list > li p {
	font-size: 110%;
	letter-spacing: .1em;
	margin-top: -0.2em;
}
#philosophy .copy2 {
	font-size: 130%;
	letter-spacing: .05em;
}
#philosophy .time {
	padding-left: 0;
}
#philosophy .time::before {
	height: 100px;
}
#philosophy .time .bg_img {
	position: relative;
	width: 115%;
	right: auto;
	bottom: auto;
	margin-left: -15%;
}
#philosophy .time .txt1 {
	font-size: 110%;
	letter-spacing: .05em;
}
#philosophy .time .txt2 {
	font-size: 130%;
	letter-spacing: .05em;
}
#philosophy .time .txt3 {
	font-size: 110%;
	letter-spacing: .03em;
	background-size: 4em auto;
	padding: 0;
	padding-left: 4.5em;
	margin-top: 1em;
	margin-bottom: 1em;
}
#philosophy .time .txt3 span {
	font-size: 150%;
	line-height: 1.5;
	margin-top: .2em;
}
#philosophy .txt4 {
	font-size: 120%;
	letter-spacing: .05em;
	line-height: 1.6;
}

}



/*concept
---------------------------------------------------------*/
#concept {
	background: url("../images/top/cpt_bg@2x.jpg") no-repeat right top,
				linear-gradient(90deg, rgba(245,239,227,1) 0%, rgba(245,239,227,0.5) 100%);
	background-size: 60% auto, auto;
	padding: 150px 0;
}
#concept .cpt_inbox {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
}
#concept .img_txt1 {
	position: absolute;
	width: 52%;
	left: 64%;
	/* top: 30%; */
	bottom: 0;
	translate: 0 15%;
}
#concept .green {
	font-size: min(4vw,286%);
	line-height: 1.6;
	letter-spacing: .1em;
	margin-bottom: .8em;
}
#concept .fs24 {
	position: relative;
	font-size: min(2.1vw,160%);
	line-height: 1.6;
}
#concept .fs24 span {
	font-size: 129%;
}
#concept p.large {
	font-size: min(3vw,200%);
	margin-top: 1em;
	margin-bottom: 1em;
}
#concept ul {
	display: flex;
	text-align: center;
	color: #94893b;
	margin: 50px 0 40px 10%;
}
#concept ul > li {
	margin-left: 20px;
}
#concept ul dt {
	font-size: min(3vw, 200%);
	font-weight: bold;
	line-height: 1.4;
	margin-top: .8em;
	margin-bottom: .3em;
}
#concept ul dd {
	font-size: 113%;
	line-height: 1.7;
}
#concept .icon {
	width: 15vw;
	max-width: 150px;
}
/* PC調整
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1260px) {
#concept .img_txt1 {
	width: 48%;
	/* top: 38%; */
	left: 58%;
}
#concept ul {
	margin-left: 0;
}
}
@media only screen and (min-width: 768px) and (max-width: 1140px) {
#concept .img_txt1 {
	left: 60%;
	/* top: 36%; */
}
#concept ul dt {
	font-size: min(3vw, 200%);
}
#concept ul dd {
	font-size: 105%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

#concept {
	padding: 13% 0;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#concept {
	background-size: 80% auto, auto;
	padding: 15% 0;
}
#concept .img_txt1 {
	position: relative;
	width: 90%;
	left: auto;
	top: auto;
	margin: 0 auto;
}
#concept .green {
	font-size: 140%;
	letter-spacing: .05em;
}
#concept .fs24 {
	font-size: 110%;
}
#concept p.large {
	font-size: 140%;
	line-height: 1.6;
	text-indent: -0.5em;
}
#concept ul {
	justify-content: space-between;
	width: 100%;
	margin: 0 0 5%;
}
#concept ul > li {
	width: 48%;
	margin-left: 0;
}
#concept ul dt {
	font-size: 120%;
}
#concept ul dd {
	text-align: left;
	font-size: 90%;
}
#concept .icon {
	width: 20vw;
}

}




/*service
---------------------------------------------------------*/
#service .com_index1 {
	margin-bottom: 75px;
}
#service .serv_list > li {
	padding-top: 20px;
}
#service .serv_list a {
	position: relative;
	display: block;
	height: 100%;
	text-align: center;
	line-height: 1.4;
	background-color: #FFF;
	box-sizing: border-box;
	padding-top: 9.6%;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
#service .serv_list a:hover {
	background-color: rgba(87,118,3,0.1);
}
#service .serv_list dt {
	color: #577603;
	font-size: min(3vw,233%);
	letter-spacing: 0;
	line-height: 1.3;
	margin-bottom: .4em;
}
#service .serv_list dt.line1 {
	line-height: 2.6;
}
#service .serv_list dd {
	color: #6b6f6f;
	font-size: 126%;
}
#service .serv_list .note {
	color: #6b6f6f;
	line-height: 1.5;
	letter-spacing: 0;
	margin-top: .2em;
}
#service .serv_list .target {
	position: absolute;
	width: 15em;
	color: #FFF;
	font-size: 113%;
	line-height: 1.2;
	letter-spacing: .1em;
	white-space: nowrap;
	background: linear-gradient(90deg, #7EA642 0%, #9CBA6C 100%);
	box-sizing: border-box;
	padding: .7em 1em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	right: 1em;
	top: 0;
	transform: translateY(-40%);
}
#service .serv_list .target span {
	font-size: 123%;
}
#service .serv_list .ft_bilo {
	color: #FFF;
	line-height: 1;
	letter-spacing: .1em;
	background: linear-gradient(90deg, #7EA642 0%, #9CBA6C 100%);
	padding: 1em 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-top: 1.5em;
}
#service .serv_list .ft_bilo::after {
	font-family: 'fontello';
	content: '\e800';
	font-size: 120%;
	padding-left: .2em;
}
#service .serv_list .tgt_all dt {color: #03766e;}
#service .serv_list .tgt_all a:hover {background-color: rgba(3,118,110,0.1);}
#service .serv_list .tgt_all .target,
#service .serv_list .tgt_all .ft_bilo {
	background: linear-gradient(90deg, #56A19A 0, #79B7B1 100%);
}

#service .serv_list .tgt_dr dt {color: #032b76;}
#service .serv_list .tgt_dr a:hover {background-color: rgba(3,43,118,0.1);}
#service .serv_list .tgt_dr .target,
#service .serv_list .tgt_dr .ft_bilo {
	background: linear-gradient(90deg, #3D599C 0%, #6B81B5 100%);
}
#service .serv_list .tgt_dh dt {color: #ad5617;}
#service .serv_list .tgt_dh a:hover {background-color: rgba(173,86,23,0.1);}
#service .serv_list .tgt_dh .target,
#service .serv_list .tgt_dh .ft_bilo {
	background: linear-gradient(90deg, #C4793C 0%, #D29A6A 100%);
}
/*アニメーション*/
#service .serv_list > li {
	transition: all 1.5s;
	opacity: 0;
	transform: translateY(20px);
}
#service .serv_list > li:nth-of-type(2) {transition-delay: .2s;}
#service .serv_list > li:nth-of-type(3) {transition-delay: .4s;}
#service .serv_list > li:nth-of-type(4) {transition-delay: .6s;}
#service .serv_list > li:nth-of-type(5) {transition-delay: .8s;}
#service .serv_list > li:nth-of-type(6) {transition-delay: 1.0s;}

#service .serv_list.anime_on > li {
	opacity: 1;
	transform: translateY(0);
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#service .serv_list {
	display: flex;
	flex-wrap: wrap;
}
#service .serv_list > li {
	width: 48%;	
	margin-right: 4%;
}
#service .serv_list > li:nth-of-type(even) {
	margin-right: 0;
}
#service .serv_list > li:nth-of-type(n+3) {
	margin-top: 3.8%;
}

}


/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

#service .com_index1 {
	margin-bottom: 7%;
}
#service .serv_list dd {
	font-size: 115%;
}
#service .serv_list .target {
	width: 13em;
	font-size: 105%;
	padding: .6em 1em;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#service .com_index1 {
	margin-bottom: 9%;
}
#service .serv_list > li {
	padding-top: 4.5%;
}
#service .serv_list > li:nth-of-type(n+2) {
	margin-top: 6%;
}
#service .serv_list a {
	padding-top: 9.6%;
}
#service .serv_list dt {
	font-size: 130%;
}
#service .serv_list dd {
	font-size: 110%;
}
#service .serv_list .note {
	font-size: 90%;
}
#service .serv_list .target {
	width: 11em;
	font-size: 80%;
	letter-spacing: .04em;
	padding: .5em 1em;
}
#service .serv_list .target span {
	font-size: 110%;
}
#service .serv_list .ft_bilo {
	padding: .6em 0;
	margin-top: 1em;
}

}



/*voice
---------------------------------------------------------*/
#voice {
	background: linear-gradient(90deg, rgba(245,239,227,1) 0%, rgba(245,239,227,0.5) 100%);
	padding: 130px 0 40px;
}
#voice .voi_inbox {
	max-width: 1310px;
	margin-left: auto;
	margin-right: auto;
}
#voice .voi_inbox .box_img {
	position: relative;
	max-width: 410px;
	margin: 0 auto 6%;
	overflow: hidden;
	aspect-ratio: 410/320;
}
#voice .voi_inbox .box_img img {
	display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#voice .voi_inbox dt {
	font-size: min(2vw,140%);
	letter-spacing: 0;
	line-height: 1.5;
	margin-bottom: .4em;
}
#voice .voi_inbox dt .name {
	font-size: 157%;
}
#voice .com_link1 {
	max-width: max-content;
	padding-top: 1em;
	border-top: 1px solid #8c7155;
	margin-left: auto;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#voice .voi_inbox {
	display: flex;
}
#voice .voi_inbox > div {
	width: 31.3%;
	margin-right: 3%;
}
#voice .voi_inbox > div:nth-of-type(3n) {
	margin-right: 0;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#voice {
	padding: 13% 0 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#voice {
	padding: 15% 0 8%;
}
#voice .voi_inbox > div:nth-of-type(n+2) {
	margin-top: 10%;
}
#voice .voi_inbox .box_img {
	width: 80%;
}
#voice .voi_inbox dt {
	font-size: 110%;
}


}



/*attendance
---------------------------------------------------------*/
.atte_tit {
	text-align: center;
	color: #8c7155;
	letter-spacing: .1em;
	line-height: 1.6;
	margin-bottom: 2.5em;
}
.atte_tit .ft_min {
	display: block;
	font-size: 266%;
	letter-spacing: .1em;
}
#attendance .atte_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
#attendance .atte_list > li {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}
#attendance .atte_list > li:last-of-type {
	margin-right: 0;
}
#attendance .atte_list > li img {
	display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#attendance .atte_list > li {
	width: 17.3%;
	margin-right: 3.3%;
}
#attendance .atte_list > li:nth-of-type(5n) {
	margin-right: 0;
}
#attendance .atte_list > li:nth-of-type(n+6) {
	margin-top: 2.5%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.atte_tit {
	letter-spacing: .05em;
	margin-bottom: 1.5em;
}
.atte_tit .ft_min {
	font-size: 160%;
	letter-spacing: .05em;
}
#attendance .atte_list > li {
	width: 31%;
	margin-right: 3.5%;
}
#attendance .atte_list > li:nth-of-type(3n) {
	margin-right: 0;
}
#attendance .atte_list > li:nth-of-type(n+4) {
	margin-top: 2.5%;
}

}



/*intro
---------------------------------------------------------*/
#intro .bg {
	color: #FFF;
	background: linear-gradient(90deg, rgba(126,173,139,1) 0%, rgba(145,173,126,0.85) 100%);
	padding: 110px 0 85px;
}
#intro .intro_tit {
	position: relative;
	font-size: min(3.2vw,280%);
	letter-spacing: .1em;
	line-height: 1.5;
	padding-left: 1.4em;
	margin-bottom: .4em;
}
#intro .intro_tit .ft_bilo {
	position: absolute;
	color: #000;
	font-size: 476%;
	letter-spacing: 0;
	line-height: 1;
	opacity: 0.05;
	mix-blend-mode: multiply;
	left: -0.1em;
	top: 40%;
	transform: translateY(-50%);
	
	opacity: 0;
	transition: all 3s .2s;
}
#intro .intro_tit.anime_on .ft_bilo {
	opacity: 0.05;
}
#intro .intro_tit .ft_min {
	position: relative;
}
#intro .intro_inbox {
	position: relative;
}
#intro .intro_inbox .box_img .name {
	text-align: right;
	font-size: 140%;
	letter-spacing: .1em;
	line-height: 1.6;
	margin-top: -0.6em;
	margin-right: -0.9em;
}
#intro .intro_inbox .box_img .name img {
	margin-right: 0;
}
#intro .intro_inbox .box_img .name span {
	font-size: 147%;
}
#intro .message > dt {
	font-size: min(2.75vw,200%);
	line-height: 1.6;
	margin-bottom: .5em;
}
#intro .message > dd {
	font-size: 113%;
	line-height: 1.8;
}
#intro .profile {
	margin-top: 3em;
}
#intro .profile > dt {
	font-size: 126%;
	line-height: 1.6;
	letter-spacing: .1em;
	background-color: rgba(0,0,0,0.2);
	border-radius: 10px;
	box-sizing: border-box;
	padding: .5em 1.5em;
	margin-bottom: 1em;
}
#intro .profile > dd {
	padding: 0 1.5em;
}
#intro .reki_list > li {
	display: flex;
	line-height: 1.7;
}
#intro .reki_list > li p:first-of-type {
	white-space: nowrap;
	margin-right: 1em;
}
#intro .bg.ceo {
	background: linear-gradient(90deg, rgba(115,162,168,1) 0%, rgba(126,173,157,0.85) 100%);
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#intro .intro_inbox {
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto;
}
#intro .intro_inbox .box_img {
	width: 35%;
	order: 2;
}
#intro .intro_inbox .box_txt {
	width: 60%;
	order: 1;
	margin-top: 10%;
}
#intro .com_marulist {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#intro .com_marulist > li {
	width: 49%;
}

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#intro .bg {
	padding: 10% 0 8%;
}
#intro .intro_inbox .box_txt {
	margin-top: 6%;
}
#intro .profile > dd {
	padding: 0 1em;
}
#intro .intro_inbox .box_img .name {
	font-size: 120%;
	margin-right: -0.5em;
}
#intro .profile {
	margin-top: 2em;
}
#intro .profile:last-of-type {
	width: 160%;
}
/* ceo */
#intro .ceo .intro_inbox {
	display: block;
}
#intro .ceo .intro_inbox::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#intro .ceo .intro_inbox .box_img {
	float: right;
	margin-left: 5%;
	margin-bottom: 3em;
}
#intro .ceo .intro_inbox .box_txt {
	width: 100%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#intro .bg {
	padding: 12% 0 10%;
}
#intro .intro_tit {
	font-size: 120%;
	padding-left: 1em;
	margin-bottom: 2em;
}
#intro .intro_tit .ft_bilo {
	font-size: 400%;
}
#intro .intro_inbox .box_img {
	width: 70%;
	margin: 0 auto 5%;
}
#intro .intro_inbox .box_img img {
	width: 80%;
}
#intro .intro_inbox .box_img .name {
	font-size: 110%;
	margin-right: -0.9em;
}
#intro .message > dt {
	font-size: 140%;
}
#intro .message > dd {
	font-size: 105%;
}
#intro .profile {
	margin-top: 2em;
}
#intro .profile > dt {
	font-size: 110%;
	padding: .3em 1em;
	margin-bottom: 1em;
}
#intro .profile > dd {
	padding: 0 .5em;
}
#intro .reki_list > li,
#intro .com_marulist > li {
	font-size: 90%;
}

}



/*contact
---------------------------------------------------------*/
#contact .com_tel {
	font-size: 320%;
	margin-bottom: .4em;
}
#contact .fs19 {
	font-size: 126%;
	letter-spacing: .1em;
	line-height: 1.6;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
	
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#contact .fs19 {
	font-size: 115%;
	letter-spacing: .05em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#contact .com_tel {
	font-size: 200%;
}
#contact .fs19 {
	font-size: 100%;
	letter-spacing: .04em;
}
}


/*
---------------------------------------------------------*/


/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
	
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {



}

