@charset "utf-8";
/* CSS Document */

#top_wrapper {
	width: 100%;
	height: 100vh;
	min-height: 800px;
	position:relative;
	overflow: hidden;
}
/******************************/
.mainPhoto {
	width:100%;
	height: 94vh;
	min-height: 800px;
	overflow:hidden;
	margin:0 auto;
	position:relative;
	background-color: #FFF;
}
.photo01 {	
	width:44%;
	height: 38%;
	animation: slideIn01 3s 1;
	border-radius: 1rem;	
	position: absolute;
	top: 2%;
	right: 55%;
	background-image: url('../images/sample08.jpg');
	background-size: cover;
	background-position: center bottom;
}
.photo02 {
	width: 27%;
	height: 90%;
	animation: slideIn02 3s 1;
	position: absolute;
	top: 10%;
	left: 46%;
	border-radius: 1rem;
	background-image: url('../images/sample02.jpg');
	background-size: cover;
	background-position: center center;
}
.photo03 {
	width: 34%;
	height: 45%;
	position: absolute;
	bottom: 13%;
	left: 11%;
	animation: slideIn03 3s 1;
	border-radius: 1rem;
	background-image: url('../images/sample07.png');
	background-size: cover;
	background-position: left bottom;
}
.photo04 {
	width: 24%;
	height: 90%;
	position: absolute;
	top: 5%;
	right: 2%;
	animation: slideIn04 3s 1;
	border-radius: 1rem;
	background-image: url('../images/sample06.jpg');
	background-size: cover;
	background-position: center top;
}
@keyframes slideIn01 {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateX(-1000px);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn02 {
  0% {
    opacity: 0;
  }  
  10% {
    opacity: 0;
    transform: translateX(1000px);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn03 {
  0% {
    opacity: 0;
  }  
  20% {
    opacity: 0;
    transform: translateY(500px);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn04 {
  0% {
    opacity: 0;
  }  
  30% {
    opacity: 0;
    transform: translateY(-500px);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
}
/***************************************/
.head_catch {
	position: absolute;
	top: 60%;
	right: 2rem;
	z-index: 99;
	display: flex;
	flex-direction: column-reverse;
	color: #FFF;
}
.catch_copy {
	font-size: clamp(38px, 4vw, 52px);
	line-height: 1em;
	font-family: 'Noto Serif JP', serif;
	color: #FFF;
	text-shadow: 3px 3px 6px #000;
}
.catch_note {	
	font-size: 1.3rem;
	line-height: 1em;
	margin-bottom: 0.5rem;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 3px 3px 6px #000;
}
/************/
.head_rogo_wrapper {
	width: 38vw;
	min-width: 415px;
	height: 32.6vw;
	min-height: 356px;
	position: absolute;
	bottom: -7vw;
	background-image: url('../images/main_block2.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left -20px top 0;
	z-index: 110;
}
.head_rogo {
	padding-top: 6.5vw;
	padding-left: 3vw;
	height: auto;
	width: 80%;
}
.logo_phrase {
	color: #42fc56;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 1.3rem;
	padding-left: 10vw;
	margin-top: -3.2vw;
	text-shadow: -3px -3px 6px #000;
}
.txt_phrase {
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 0.6rem;
	padding-left: 3vw;
	text-shadow: -3px -3px 6px #000;
}
/*****/
.head_frame {
	width: 50%;
	height: 15vh;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url('../images/sub_block.png');
	background-size: auto 100%;
	background-position:left bottom;
}
/*************************/
.sns_wrapper a {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	position: absolute;
	top: 0;
	right: 2rem;
	padding: 0.5rem;
	display: flex;
	align-items: center;
}
.sns_wrapper .follow {
	font-size: 0.9rem;
	display: inline-block;
	padding: 0 0.25rem;
	background-color: #3b6b23;
	color: #FFF;
	margin-right: 0.8rem;
}
.sns_icon {
	width: 7rem;
	height: 2rem;		
    background-image: url('../images/sns_icon01.png');
	background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
	margin-right: 1rem;
}
.insta_url {
	padding-bottom: 0.2em;
	color: #3b6b23;
	display: inline-block;
	padding-right: 2.5rem;
	font-size: 0.9rem;	
    background-image: url('../images/arrow.png');
	background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}
/*********************************************************************/
#main_container {
	width: 94%;
	padding-left: 3%;
	max-width: 1680px;
	margin: 64px auto;
	box-sizing: border-box;
}
/****ブログ*****/
#blog_container {
	padding-top: 5vw;
	position: relative;
}
/**アイテム画像　①***/
.blog_bg_img {
	position: absolute;
	width: 40%;
	height: 20vw;
	background-image: url('../images/img_bgtest04.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right;
	display: block;
	right: 0%;
	top: -60px;
	z-index: -1;
}
/****ブログタイトル部分*****/
.main_title_wrap {
	text-align: center;
	background-image: url('../images/aibee-2.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left 20px top 0;
	margin-bottom: 80px;	
}
.title_top {
	margin-bottom: 64px;
}
.title_top .title_headtag {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
}
.title_top .title_subtxt {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	font-family: 'Noto Serif JP', serif;
}
.title_under {
	padding-bottom: 64px;
	position: relative;
}
.title_under .title_headtag {
	font-size: 5rem;
	font-weight: 900;
	letter-spacing: 0.1rem;
	position: absolute;
	top: 0%;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	color: #248b0d;
	opacity: 0.1;
	font-family: 'Noto Serif JP', serif;
}
.title_under .title_subtxt {
	font-size: 1rem;
	letter-spacing: 0.1rem;
	position: relative;
}
/****ブログ記事*****/
.blog_wrapper {
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
	list-style: none;
	position: relative;
}
.blog_wrapper .box {
	width: 30%;
	margin-right: 1.5%;
	margin-bottom: 4vw;
	box-shadow:  12px 12px 24px rgba(12,68,23,0.2);
	border-radius: 0 0 0.5rem 0.5rem;
	position: relative;
	padding-bottom: 1.5rem;
}
.box .img_area {
	height: 14vmax;
	max-height: 210px;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
}
.box .img_area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.blog_head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #333;
	padding: 1rem 0.5rem;
}
.blog_title {
	font-size: 1.1em;
	font-weight: 700;
	color: #666;
}
.post_date {
	font-size: 14px;
	font-weight:700;
	color: #666;
	text-align: right;
}
/****/
.txt_area {
	padding: 1rem 0.5rem;
}
.category_tag {
	display: flex;
	flex-wrap: wrap;
	min-height: 5rem;
	margin-bottom: 0.5rem;
	list-style:none;
	margin-left: 0.5rem;
}
.category_tag li {
}
.category_tag li a {
	font-size: 11px;
	line-height: 1em;
	padding: 0.2em 0.8em;
	border-radius: 1em;
	color: #FFF;
	background-color: #248b0d;
	margin-bottom: 0.5em;
	margin-right: 0.5em;
}
/****/
.tag_list {
	list-style:none;
	margin-left: 1rem;
	margin-bottom: 0.5rem;
	display: flex;
	flex-wrap: wrap;
}
.tags {
	font-size: 12px;
	margin-right: 1rem;
	color: #19b67d;
}
/****/
.link_wrapp {
	position:absolute;
	right: 0.5rem;
	bottom: 0.4rem;
}
.blog_link_under {
	font-size: 0.9rem;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-family: 'Noto Serif JP', serif;
	color: #248b0d !important;
}
.blog_link_under:hover {	
	color: #19b67d;
	cursor: pointer;
}
.blog_link_under::after {
	content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow.png');
    background-position: center;
    background-size: contain;
	margin-left: 10px;
}
/*****一覧ボタン*******/
.btn_style2 {
	width: 38%;
	min-width: 424px;
	max-width: 530px;
	background: #248b0d;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    /*max-width: 260px;*/
    padding: 0px 25px;
    color: #d3ffd1  !important;
    transition: 0.3s ease-in-out;
}
.btn_style2:hover {
    background: #a8e19b;
    color: #248b0d !important;
}
.more_view {
	font-size:0.9rem;
	display: flex;
	align-items: center;
	margin-left: 2rem;
}
.more_view::after {
	content: "";
	display: block;
	width: 80px;
	height: 40px;
	background-image: url('../images/reef_s.png');
	background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}
.link_txt {
	padding: 0.5rem 0;
	font-size:1.2rem;
	display: flex;
	align-items: center;
}
.link_txt::after {
	content: "";
	display: block;
	width: 80px;
	height: 1.7rem;
	background-image: url('../images/arrow_w.png');
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/***********************************************************************/
#tarm_container {
	width: 100%;
	position: relative;
	margin-bottom: 64px;
}
.tarm_title_wrap {
	text-align: center;
	padding: 64px 0;
}
.tarmtitle {	
	font-family: 'Noto Serif JP', serif;
	color: #248b0d !important;
	font-size: 2rem;
	font-weight: 900;
}
.tarm_subtxt {	
	padding: 2rem 0;
	line-height: 1.8em;
}
/**背景①右**/
.tarm_titlebg {
	position: absolute;
	width: 20%;
	height: 250px;background-image: url('../images/img_bgtest03.png');
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	right: 3%;
	top: -72px;
	z-index: -1;
}
/**背景②左**/
.tarm_bg_img {
	position: absolute;
	width: 25%;
	height: 320px;
	background-image: url('../images/img_bgtest02.png');
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	right: 75%;
	top: 80px;
	z-index: -1;
}
/**************/
.tarm_list_container {
	width: 92%;
	max-width: 1280px;
	min-width: 1024px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
/****カテゴリ1こ*****/
.tarm_img_container {
	width: 15%;
	margin-right: 1.66%;
	margin-bottom: 3rem;
}
.tarm_img_container:first-child {
	margin-left: 16.66%;
} 
/*画像囲み**/
.tarm_img_container a {
	width: 100%;
	height: 180px;
	display: block;
	overflow: hidden;
	position: relative;
	border: solid 1px #CCC;
}
.tarm_img_container a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.linktxt03 {
	position: absolute;
	bottom: 4px;
	right: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1em;
	vertical-align: middle;
	background-color: rgba(52,147,6,0.8);
	color: #f9fff8;
	padding: 2px 4px;
	border-radius: 1rem;
}
.linktxt03::after {
	content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url('../images/arrow_w.png');
    background-position: center;
    background-size: cover;
	margin-left: 5px;
}
.tarm_name_container {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 700;
	padding-top: 0.25rem;
	color: #979797;
	letter-spacing: 0.1em;
}
/*******************************************************************/
#googlemaps {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 500px;
	overflow: hidden;
}
/**********************************************************************/
#about_container {	
	width: 100%;
	max-width: 1680px;
	position: relative;
	margin: 0 auto 128px auto;
	
}
.about_title_wrap {	
	text-align: center;
	padding: 64px 0 8vw 0;	
	background-image: url('../images/paving_stones.png');
	background-repeat: no-repeat;
	background-size: 50vw;
	background-position: bottom 0 left -20px;
}
.about_subtxt {	
	font-family: 'Noto Serif JP', serif;
	color: #248b0d !important;
	font-size: 1.1rem;
	font-weight: 900;
	padding-top: 128px;
	margin-bottom: 1rem;
	background-image: url('../images/t-head_img.png');
	background-repeat: no-repeat;
	background-size: 80px;
	background-position: center top 32px;
}
.about_title {
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 32px;
}
.service_wrapp {
	width: 92%;
	max-width: 1480px;
	min-width: 1024px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.service_box {
	width: 320px;
	overflow: hidden;
	margin: 0 20px;
	text-align: center;
}
.service_box img{
	width: 100%;
	height: 180px;
	border: solid 8px #ccc;
	box-sizing: border-box;
	object-fit: cover;
}
/**背景③右**/
.about_img_rt {
	position: absolute;
	width: 26%;
	height: 30vw;
	background-image: url('../images/img_bgtest01.png');
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	right: 0;
	top: -72px;
	z-index: -1;
}
/********************************************************/
#corporate_container {
	width: 100%;
	padding-top: 64px;
	background-image: url('../images/bottom_top_block.png');
	background-repeat: no-repeat;
	background-size: auto 60px;
	background-position: left top;
}
.corporate_top {
	background-image: url('../images/bottom_block.png');
	background-repeat: repeat-x;
	background-size: auto 60px;
	padding-top: 64px;
}
.corporate_wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 192px 0;
	box-sizing: border-box;
	background: linear-gradient(#d9e6d2, #FFF);
}
.inc_logo {
	width: 25%;
	min-width: 250px;
	max-width: 420px;
	padding: 2rem 1rem 0 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc_note {	
	width: 30%;
	min-width: 300px;
	max-width: 504px;
	padding: 2rem 1rem 0 0;
	box-sizing: border-box;
	line-height: 2.4rem;
	letter-spacing: 0.1em;
}
.inc_info {	
	width: 45%;
	min-width: 450px;
	max-width: 756px;
	padding: 0 2rem;
	box-sizing: border-box;
}
.inq_table table {
	border-collapse: collapse;
	border: none !important;
}
.inq_table table td:first-of-type {
	width: 6rem !important;
}
.inq_table table tr{
	border-bottom: dotted 1px #ccc;
}
.inq_table td {
	padding: 1rem 0.5em 0.5em 0.5em;
	border: none;
	text-align: left;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	white-space: normal;
	word-break: normal;
}




