.l-header{
	display:none;
}
#SPheader{
	display:none;
}
.SPnone{
	display:none;
}
header{
	display:flex;
	margin:auto;
	position:relative;
	align-items: center;
	padding-top:15px;
	background-color:#FFF;
}
.PCH-Nav h1{
	width:150px;
	padding-right:10px;
	padding-bottom:5px;
}
#NaVcatch{
	width:1200px;
	margin:auto;
	font-size:15px;
	display:flex;
}
#NaVcatch p{
	width:600px;
}
#NaVcatch nav{
	display:flex;
	justify-content:space-between;
	align-items: center;
	width:400px;
}
#NaVcatch nav li{
	font-size:15px;
}

.container {
    display: flex;
    height: 75vh;
    width: 100%;
    overflow: hidden; /* コンテナの外にはみ出さないようにする */
}
.container h3{
	position:absolute;
	top:37%;
	right:0%;
	left:0%;
	margin:auto;
	width:550px;
}

.image {
    flex: 1;
    position: relative;
    transition: flex 0.5s ease; /* トランジションを追加 */
}

.image:hover {
    flex: 5.5;
}

.container .image:not(:hover) {
    flex: 1.5;
}

.overlay {
    position: absolute;
    bottom: 0; /* 左下にピッタリくっつける */
    left: 0; /* 左下にピッタリくっつける */
    width: calc(100% - 50px); /* パディング分を引いた幅 */
    background-color: rgba(236,137,159,0.85); /* 背景色を指定 */
    padding: 25px; /* パディングを指定 */
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease; /* トランジションを設定 */
    z-index: 10; /* 動画よりも前面に表示 */
    box-shadow: none; /* 角丸なし */
}

.image:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: #FFF; /* テキストカラーを指定 */
    font-size: 25px; /* フォントサイズを指定 */
    z-index: 10; /* 動画よりも前面に表示 */
    position: relative; /* アニメーションのために相対位置を指定 */
    overflow: hidden; /* アニメーションのためにオーバーフローを隠す */
    transform: translateX(-100%); /* 初期状態で左に隠す */
    opacity: 0; /* 初期状態で透明にしておく */
    transition: transform 0.5s ease, opacity 0.5s ease; /* トランジションを設定 */
}
.overlay-text a{
	color:#FFF;
}
.overlay-text small{
	display:block;
	padding-top:10px;
	font-size:17px;
}

.image:hover .overlay-text {
    transform: translateX(0); /* ホバー時に元の位置に移動 */
    opacity: 1; /* ホバー時に表示 */
}

@keyframes slideOverlay {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.overlay-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(236,137,159,0.85);
    transform: skewX(-45deg) translateX(-100%);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 9;
}

.image:hover .overlay-text::before {
    transform: skewX(-45deg) translateX(100%);
}

.link-button {
    background-color: rgba(0, 0, 0, 0); /* 透明に設定して背景色を消す */
    color: #FFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 0; /* 角丸なし */
    z-index: 10; /* 動画よりも前面に表示 */
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;right:50%;
    transform: translate(-50%, -50%);
    font-size:60px;
    color:#000000;
    z-index: 30; /* さらに前面に表示 */
    pointer-events: none; /* テキストがクリックなどのイベントを受け取らないようにする */
	background-color:hsla(0,0%,100%,0.7);
	width:150px;
	line-height:150px;
	text-align:center;
}
.center-text img{
	width:250px;
	opacity: 0.8;
}

/*LinkWP1*/
.LinkWP1{
	position:relative;
/*background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 240px,#ffffff 241px,#ffffff 100%);*/
padding-bottom:50px;
}
.LinkWP1 h2{
	text-align:center;
	font-size:20px;
	padding-top:50px;
	padding-bottom:50px;
	color:#395064;
	letter-spacing:2px;
}


/*LinkClam4*/
.LinkCLM4{
	width:870px;
	position:relative;
	margin:auto;
	font-size:0px;
}
.LinkCLM4 article{
	display:inline-block;
	width:180px;
	vertical-align:top;
	margin-right:35px;
	position:relative;
}
.LinkCLM4 > *:last-child{
	margin-right:0px;
}
.LinkCLM4 article div{
	border:1px solid #FFF;
	vertical-align:top;
	background-color:#FFF;
	position:relative;
	width:100%;
	height:180px;
	border-radius:10px;
}
.LinkCLM4 article div img{
	border-radius:10px;
}
.LinkCLM4 article p{
	font-size: 17px;
    text-align: center;
    padding-top:7px;
}

/*Expand*/
.image-container {
    overflow: hidden; /* 画像がはみ出さないように隠す */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* 画像のトランジションを設定 */
}

.image-container img:hover {
    transform: scale(1.1); /* ホバー時に画像を拡大 */
}


/*ニュース*/

.CF-Cont{
	position:relative;
	border-top:1px solid #CCC;
	padding-bottom:50px;
	background-color:rgba(255,255,255,0.80);
	margin-bottom:50px;
}
.CF-Cont h2{
	text-align:center;
	font-size:30px;
	padding-bottom:50px;
	padding-top:80px;
	letter-spacing:5px;
	color:#3B3F51;
	font-weight:300;
}
.CFnews{
	margin:auto;
	width:1000px;
	display:flex;
	justify-content:space-around;
	padding-bottom:80px;
}
.CFnews dl{
	width:300px;
	border:1px solid #ccc;
	border-radius:10px;
	padding-bottom:25px;
}
.CFnews dl div{
	width:100%;
	height:180px;
}
.CFnews dl div img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
}
.CFnews dl dt{
	padding:15px;
	font-size:14px;
	font-weight:400;
}
.CFnews dl dd{
	padding:0px 15px;
	font-size:17px;
	line-height:1.6em;
	letter-spacing:1px;
}
	
.NewRegWP{
	position:relative;
	margin:auto;
	display:flex;
	justify-content:space-around;
}
.NewRegWP article{
	width:250px;
}
.NewRegWP article h3{
	font-size:20px;
	border-top:3px solid #4C7C96;
	padding-top:15px;
	padding-left:15px;
	padding-bottom:25px;
	font-weight:bold;
}
.NewRegWP article dl{
	position:relative;
	padding-bottom:15px;
	padding-left:35px;
}
.NewRegWP article dl dt{
	font-size:17px;
	padding-bottom:2px;
}
.NewRegWP article dl dd{
	font-size:13px;
}
.NewRegWP article dl dd span{
	padding-right:20px;
	color:#2E91DC;
}
	.NewRegWP article dl dd big{
	padding-right:25px;
		font-size:15px;
		color:#2E91DC;
		display:block;
		line-height:35px;
}
	.OtherService{
		width:1100px;
		margin:auto;
		padding-top:80px;
		padding-bottom:50px;
	}
	.OtherService h2{
		font-size:23px;
		padding-bottom:10px;
		font-weight:bold;
		text-align:center;
	}
	
	.gallery {
    display: flex;
    justify-content: space-around;
    margin:10px;
}

.gallery-item {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.image-container {
    width: 100%;
    height: 250px;
    overflow: hidden; /* 画像がはみ出さないように隠す */
    border: 1px solid #CCC;
	border-radius:15px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* 画像のトランジションを設定 */
	border-radius:15px;
}

.image-container img:hover {
    transform: scale(1.1); /* ホバー時に画像を拡大 */
}

.caption {
    text-align: center;
    margin-top: 10px;
}

.caption .date {
    font-size: 14px;
    color: #666;
}

.caption .title {
    font-size: 16px;
    font-weight: bold;
}
	
/*menntenanns*/

.CFmentenauns{
	margin:auto;
	width:700px;
	padding-bottom:30px;
}
.CFmentenauns dl{
	padding:20px;
	border-bottom:1px dotted #CCC;
}
.CFmentenauns dl dt{
	font-size:14px;
	font-weight:300;
}
.CFmentenauns dl dd{
	font-size:16px;
	line-height:1.6em;
	letter-spacing:1px;
}

#SolutionWLink{
	background-color:#48B3CB;
	line-height:30px;
	color:#FFF;
	border-radius:30px;
	width:260px;
	text-align:center;
	font-size:14px!important;
}
#SolutionWLink i{
	font-size:16px;
	padding-right:5px;
}
#SolutionWLink a{
	color:#FFF;
	display:block;
	border-radius:30px;
}
#SolutionWLink a:hover{
	background-color:#71C4D6;
	border-radius:30px;
}

.Tolink{
	line-height:40px;
	background-color:#CBDFE7;
	width:200px;
	margin:auto;
	text-align:center;
	font-size:16px;
	letter-spacing:2px;
}
.Tolink a{
	display:block;
	color:#1C5973;
}
.Tolink a:hover{
	background-color:#DBEAEF;
	color:#236F90;
}
.BGcolor1{
	background-color:#ECE5E6;
}

#MIS-TopCont1{
	width:1100px;
	margin:auto;
	display:flex;
	padding-bottom:150px;
}
#MIS-leftImg{
	width:500px;
	height:700px;
}
#MIS-leftImg img{
	width:100%;
	height:100%;
	object-fit:cover;
}
#MIS-rightCont{
width:500px;
	padding:50px;
	padding-top:80px;
	position:relative;
}
#MIS-rightCont h2{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:26px;
	line-height:1.4em;
	letter-spacing:5px;
	padding-bottom:35px;
}
#MIS-rightCont h2 span{
	display:block;
	font-family: "M PLUS 1", serif;
	font-weight:300;
	padding-bottom:15px;
}
#MIS-rightCont h2 span small{
	border-top:1px solid #3babb9;
	padding:10px;
	font-size:15px;
}
#MIS-rightCont h2 big{
	display:block;
	padding-bottom:10px;
}
#MIS-rightCont article{
	width:400px;
	background-color:rgba(251,224,169,0.80);
	padding:100px;
	position:absolute;
	left:-50px;
	bottom:50px;
	font-size:18px;
	line-height:2em;
	letter-spacing:3px;
	color:#433a32;
	text-align:left;
}



#MIS-TopCont2{
	width:1100px;
	margin:auto;
	display:flex;
	flex-direction: row-reverse;
	padding-bottom:200px;
}
#MIS-leftImg2{
	width:700px;
}
#MIS-leftImg2 img{
	width:100%;
	height:100%;
	object-fit:cover;
}
#MIS-rightCont2{
width:400px;
	padding:50px;
	position:relative;
}
#MIS-rightCont2 h2{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:38px;
	line-height:1.4em;
	letter-spacing:5px;
	padding-bottom:35px;
}
#MIS-rightCont2 h2 #h2title{
	display:block;
	font-family: "M PLUS 1", serif;
	font-weight:300;
	padding-bottom:15px;
}
#MIS-rightCont2 h2 #h2title small{
	border-top:1px solid #3babb9;
	padding:10px;
	font-size:15px;
}
#MIS-rightCont2 article{
	width:400px;
	background-color:rgba(252,205,216,0.80);
	padding:50px 100px;
	position:absolute;
	right:-50px;
	top:250px;
	font-size:18px;
	line-height:2em;
	letter-spacing:3px;
}
#MIS-rightCont2 article p{
	background-color:#FFF;
	line-height:60px;
	border-radius:40px;
	text-align:center;
	margin-bottom:10px;
	font-size:18px;
	color:#433a32;
}
#MIS-rightCont2 article p a{
	display:block;
	border-radius:40px;
}
#MIS-rightCont2 article p a:hover{
	background-color:#D6798E;
	color:#FFF;
	border-radius:40px;
}

#MIS-TopCont3{
	width:1100px;
	margin:auto;
	display:flex;
	padding-bottom:150px;
}
#MIS-leftImg3{
	width:600px;
}
#MIS-leftImg3 img{
	width:100%;
	height:100%;
	object-fit:cover;
}
#MIS-rightCont3{
width:400px;
	padding:50px;
	position:relative;
}
#MIS-rightCont3 h2{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:35px;
	line-height:1.4em;
	letter-spacing:5px;
	padding-bottom:35px;
}
#MIS-rightCont3 h2 span{
	display:block;
	font-family: "M PLUS 1", serif;
	font-weight:300;
	padding-bottom:15px;
}
#MIS-rightCont3 h2 span small{
	border-top:1px solid #3babb9;
	padding:10px;
	font-size:15px;
}
#MIS-rightCont3 article{
	width:400px;
	background-color:rgba(186,211,226,0.80);
	padding:50px 100px;
	position:absolute;
	left:-50px;
	/*top:250px;*/
	font-size:18px;
	line-height:2em;
	letter-spacing:3px;
}
#MIS-rightCont3 article p{
	background-color:#FFF;
	line-height:60px;
	border-radius:40px;
	text-align:center;
	margin-bottom:10px;
	font-size:18px;
	color:#433a32;
}
#MIS-rightCont3 article p a{
	display:block;
	border-radius:40px;
}
#MIS-rightCont3 article p a:hover{
	background-color:#3BA4C2;
	color:#FFF;
	border-radius:40px;
}
#SolutionWater-WP{
	width:800px;
	margin:auto;
	border:3px solid #e5f4f9;
	display:flex;
	background-color:#FFF;
	padding:15px;
	margin-bottom:100px;
}
#SoluImg{
	width:300px;
	padding-right:30px;
}
#SolutionWater-WP dl{
	width:450px;
}
#SolutionWater-WP dl dt{
	font-size:23px;
	padding-bottom:35px;
	font-weight:600;
}
#SolutionWater-WP dl dt span{
	font-size:15px;
	display:block;
	padding-bottom:15px;
	font-weight:400;
}
#SolutionWater-WP dl dd{
	font-size:16px;
	line-height:1.6em;
	padding-bottom:25px;
}
#SolutionWater-WP dl p{
	width:250px;
	margin:auto;
	text-align:center;
	background-color:#67aedc;
	line-height:50px;
	color:#FFF;
	border-radius:3px;
}
#SolutionWater-WP dl p a{
	display:block;
	color:#FFF;
	border-radius:3px;
}
#SolutionWater-WP dl p a:hover{
	background-color:#92C4E5;
	color:#FFF;
}
#MIS-footer{
	background-color: #FFFFFF; /* 初期色: 白 */
    transition: background-color 0.5s ease-in-out; /* 色の変化にアニメーションを追加 */
    overflow: auto;
	padding-top:50px;
	color:#FFF;
}
#MIS-footer footer{
	width:1200px;
	position:relative;
	margin:auto;
	display:flex;
}
#MIS-Footerleft{
	width:400px;
}
#MIS-Footerleft h1{
	font-size:20px;
	padding-bottom:15px;
}
#MIS-Footerleft h1 img{
	display:block;
	width:130px;
}
#MIS-Footerleft h1 span{
	display:block;
	width:150px;
	padding-bottom:10px;
}

.content {
  position: relative;
  z-index: 1; /* コンテンツを粒子の前面に配置 */
  padding: 20px;
  text-align: center;
}

#MIS-footadd{
	padding-bottom:10px;
}
#MIS-Footerright{
	display:flex;
	justify-content: space-around;
	width:800px;
}
#MIS-Footerright dl{

}
#MIS-Footerright dl a{
	color:#FFF;
}
#MIS-Footerright dl a:hover{
	color:#FFE56D;
}
#MIS-Footerright dl dt{
	padding-bottom:15px;
	font-size:17px;
}
#MIS-Footerright dl dd{
	font-size:15px;
	padding-left:15px;
	line-height:30px;
}
#MIS-footer nav{
	width:1000px;
	position:relative;
	margin:auto;
	display:flex;
	justify-content: space-around;
	line-height:60px;
}
#MIS-footer nav li a{
	color:#FFF;
}
#MIS-footer nav li a:hover{
	color:#FFE56D;
}
#MIS-footerBTM{
	background-color:#1E7184;
	margin-top:35px;
}

/*トピックス*/
#TopTopics{
	padding:50px;
	position:relative;
}
#TopTopics h2{
	text-align:center;
	font-size:25px;
}


/*Page Design*/
.contentWP{
	position:relative;
	padding-top:80px;
	padding-bottom:100px;
}
.contentWP h2{
	font-size:28px;
	text-align:center;
	padding-bottom:80px;
	letter-spacing:10px;
	font-weight:300;
}
.contentWP2{
	position:relative;
	padding-bottom:100px;
}
.NewsArticle{
	width:800px;
	position:relative;
	margin:auto;
}
.NewsArticle dt{
	position:relative;
	font-size:21px;
	text-align:center;
	padding-bottom:50px;
	letter-spacing:3px;
	font-weight:500;
}
.NewsArticle dt small{
	display:block;
	padding-bottom:10px;
	letter-spacing:0px;
	font-weight:400;
}
.NewsArticle dd{
	font-size:16px;
	letter-spacing:3px;
	line-height:2.5em;
}
.NewsArticle dd span{
	display:block;
	width:410px;
	vertical-align:top;
	float:left;
}
.NewsArticle dd span img{
	width:370px;
}

/*Corporate Profile*/
#CoprWP{
	background-color:rgba(255,255,255,0.85);
	width:600px;
	margin:auto;
	border-radius:10px;
}
#CoprWP dl{
	position:relative;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	border-bottom:1px dotted #FFFFFF;
	display:table;
	width:100%;
}
#CoprWP dl:last-child{
	border-bottom:0px;
}
#CoprWP dl:first-child dt{
	border-top-left-radius:10px;
}
#CoprWP dl:first-child dd{
	border-top-right-radius:10px;
}
#CoprWP dl:last-child dt{
	border-bottom-left-radius:10px;
}
#CoprWP dl:last-child dd{
	border-bottom-right-radius:10px;
}

#CoprWP dl > *{
	display:table-cell;
	vertical-align:middle;
}
#CoprWP dl dt{
	font-size:15px;
	letter-spacing:3px;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:20px;
	border-right:dotted 1px #CCC;
	width:150px;
	font-weight:500;
	background-color:#BDB5AA;
	color:#FFF;
}
#CoprWP dl dd{
	font-size:16px;
	letter-spacing:1px;
	padding:20px;
	background-color:#F3EFE9;
}
#CoprWP dl dd p{
	padding-bottom:10px;
}

.BG-white{
	background-color:rgba(255,255,255,0.75);
}
.contentWP2 h2{
	height:250px;
	line-height:250px;
	text-align:center;
	font-size:30px;
	letter-spacing:10px;
	margin-bottom:50px;
	color:#26375C;
}
.contentWP2 h2 small{
	
}
#BGhanaemi{
    background-image: url(../img/bg_hanaemi.png);
    background-repeat: no-repeat;
    background-position: center 0%;
    background-size: cover;
}
#BGcareplan{
    background-image: url(../img/bg_careplan.png);
    background-repeat: no-repeat;
    background-position: top 0%;
    background-size: cover;
}
#BGcorpprof{
	background-image: url(../img/bg_corp.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
	color:#462424;
}
#BGsolutionw{
	background-image: url(../img/bg_solutionw.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
	letter-spacing:3px;
}
#BGfarm{
	background-image: url(../img/bg_farm.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
	letter-spacing:3px;
}
#BGfarm2{
	background-image: url(../img/bg_farm2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
	letter-spacing:3px;
	text-shadow:
    #FFF 2px 0px,  #FFF -2px 0px,
    #FFF 0px -2px, #FFF 0px 2px,
    #FFF 2px 2px , #FFF -2px 2px,
    #FFF 2px -2px, #FFF -2px -2px,
    #FFF 1px 2px,  #FFF -1px 2px,
    #FFF 1px -2px, #FFF -1px -2px,
    #FFF 2px 1px,  #FFF -2px 1px,
    #FFF 2px -1px, #FFF -2px -1px;
}
#BGtaihi{
	background-image: url("../img/bg_taihi.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
	letter-spacing:3px;
	color:#FFF;
}
#BGrecruit{
	background-image: url(../img/bg_recruit.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
	letter-spacing:3px;
	color:#496483;
}
/*訪問看護*/
.NursingWP{
	width:1000px;
	position:relative;
	margin:auto;
}
.TEXT-box800px{
	width:800px;
	margin:auto;
	font-size:16px;
	line-height:2em;
	padding-bottom:15px;
}

.Wrap900{
	width:900px;
	position:relative;
	margin:auto;
	border-top:1px solid #CCC;
	margin-top:50px;
}
.Wrap900 h3{
    font-size: 25px;
    text-align: center;
    padding-top: 50px;
	padding-bottom:50px;
}
.OfficeInfo{
	position:relative;
}
.OfficeInfo article{
	display:table;
	position:relative;
	padding-bottom:80px;
	background-color:#FFF;
	padding:35px;
	border-radius:10px;
	margin-bottom:35px;
}
.OfficeInfo article > *{
	display:table-cell;
	vertical-align:top;
}
.OI-img{
	width:425px;
	padding-right:25px;
}
.OI-info{
	position:relative;
}
.OI-info h4{
	font-size:25px;
	padding-bottom:15px;
}
.OI-info h4 small{
	padding-right:10px;
	font-size:17px;
}
.OI-info h4 span{
	display:block;
	font-size:14px;
}
.OI-comment{
	background-color:#FFF8DC;
	padding:10px 20px;
	border-radius:10px;
	position:relative;
	margin-bottom:15px;
	font-size:16px;
	font-weight:300;
}
.OI-comment span{
	display:block;
	padding-bottom:5px;
	font-weight:400;
	font-size:15px;
}
.OI-info dl{
	position:relative;
	padding-bottom:10px;
	display:table;
}
.OI-info dl > *{
	display:table-cell;
	vertical-align:top;
}
.OI-info dl dt{
	font-size:15px;
	width:120px;
}
.OI-info dl dd{
	font-size:16px;
}
.OI-info dl dd small{
	display:block;
	font-size:14px;
	line-height:1.4em;
}
.OI-info dl dd span{
	display:block;
	padding-top:5px;
	font-size:15px;
}
.OI-info dl dd span a{
	color:#0026D3;
	text-decoration: underline;
}
.ServiceBX{
    width: 830px;
    background-color: #FFF;
    padding: 35px;
    border-radius: 15px;
    background-image: url(url);
}
#SB-hanaemi{
    background-image: url(../img/hanaemi_img2.png);
    background-repeat: no-repeat;
    background-position: left 0%;
    background-size: auto 100%;
}
#SB-careplan{
    background-image: url(../img/hanaemi_img3.png);
    background-repeat: no-repeat;
    background-position: left 0%;
    background-size: auto 100%;
}
#SB-hanaemi .ServiceList{
	padding-left:350px;
}
#SB-careplan .ServiceList{
	padding-left:450px;
}
.ServiceList li{
    font-size: 16px;
    padding-bottom: 20px;
    list-style-position: outside;
    list-style-type: disc;
	color:#215D72;
	letter-spacing:1px;
}
#SB-compost{
    background-image: url(../img/organic_compost/compost_img3.jpg);
    background-repeat: no-repeat;
    background-position: left 0%;
    background-size: auto 100%;
}
#SB-compost div{
	padding-left:300px;
}
#SB-compost div p{
	font-size:20px;
	padding-bottom:25px;
	letter-spacing:3px;
}
#SB-compost div p:last-child{
	padding-bottom:0px;
}
.ArticleBX{
	width:900px;
	margin:auto;
	display:flex;
	margin-bottom:50px;
}
.ARB-Img{
	width:400px;
	padding-right:25px;
}
.ARB-tex{
	width:475px;
}
.ARB-tex p{
	font-size:16px;
	line-height:2em;
	padding-bottom:15px;
}

.NGstationWP{
	width:800px;
	position:relative;
	margin:auto;
}
.NGstationWP h3{
	
	padding:35px 15px;
	font-size:21px;
	position:relative;
	letter-spacing:3px;
}
.NGstationWP h3 span{
	width:50px;
	height:10px;
	display:block;
	position:absolute;
	top:-5px;
	left:0px;
}
/*VisitingNursing*/
#VisitingNursing h3{
	border-top:1px solid #7DABC2;
}
#VisitingNursing h3 span{
	background-color:#19749D;
}
/*Careplan*/
#CareplanS h3{
	border-top:1px solid #645650;
}
#CareplanS h3 span{
	background-color:#CE3030;
}
.NGS-area{
	position:relative;
	width:770px;
	margin:auto;
	padding-bottom:50px;
}
.NGS-area h4{
	font-size:20px;
	font-weight:300;
	padding-bottom:30px;
}
.NGS-List{
	position:relative;
	width:770px;
	margin:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: baseline;
}
.NGS-List article{
	width:320px;
	background-color:#FFF;
	padding:15px 25px;
	potision:relative;
	height:140px;
	border-radius:5px;
}
/*VisitingNursing*/
#VisitingNursing article{
	border-left:2px solid #3EAED7;
}
/*Careplan*/
#CareplanS article{
	border-left:2px solid #DE6767;
}
.NGS-List article h5{
	font-size:17px;
	padding-bottom:10px;
}
.NGS-List article div{
	font-size:14px;
	line-height:1.3em;
	font-weight:300;
	padding-bottom:10px;
}
.NGS-List article p{
	width:180px;
	line-height:35px;
	border-radius:35px;
	text-indent:10px;
}
.NGS-List article p i{
	padding-right:5px;
}
/*VisitingNursing*/
#VisitingNursing article p{
	background-color:#EEF1F2;
}
#VisitingNursing article p i{
	color:#178BB5;
}
/*Careplan*/
#CareplanS article p{
	background-color:#F0EBE6;
}
#CareplanS article p i{
	color:#7E7468;
}
.PD-left30{
	padding-left:30px;
}
.PD-top15{
	padding-top:15px;
}
.PD-bottom50{
	padding-bottom:50px;
}
.PD-top80{
	padding-top:80px;
}
.TX-alignCenter{
	text-align:center!important;
}

#HanaemiFarmLogo{
	width:120px;
	margin:auto;
	padding-bottom:35px;
}

.CLMwrap{
	width:1050px;
	position:relative;
	margin:auto;
	display:flex;
	padding-bottom:80px;
}
.CLMW-Img{
	width:450px;
	padding-right:50px;
}
.CLMW-Img img{
	object-fit:cover;
	width:100%;
	height:100%;
}
.CLMW-content{
	width:550px;
}
.CLMW-content h4{
	font-size:27px!important;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	line-height:1.5em;
	padding-bottom:35px;
	letter-spacing:5px;
	padding-top:35px;
	text-align:left;
}
.CLMW-content h4 small{
	display:block;
	letter-spacing:0px;
	font-weight:normal;
}
.CLMW-content p{
	font-size:16px;
	letter-spacing:3px;
	padding-bottom:25px;
	line-height:2em;
}
.ImohoriBn{
	width:450px;
	margin:auto;
}

#ImohoriMap{
	width:1000px;
	margin:auto;
	padding-bottom:50px;
}
#ImohoriMap h3{
	font-size:28px;
	text-align:center;
	padding-bottom:25px;
}
#ImohoriMap h3 span{
	font-size:18px;
	display:block;
	padding-top:20px;
	letter-spacing:3px;
}
#ImohoriMap iframe{
	width:100%;
	height:500px;
}
.ImohoriTEL{
	position:relative;
}
.ImohoriTEL dt{
	padding-bottom:10px;
}
.ImohoriTEL dd{
	font-size:20px;
}
.ImohoriTEL dd small{
	font-size:15px;
}

#OrganicCompost1{
	width:900px;
	margin:auto;
	position:relative;
}
#OrganicCompost1 h3{
	text-align:center;
	font-size:28px;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding-bottom:70px;
}
#OrganicCompost1 h3 small{
	display:block;
	padding-bottom:20px;
}
#OrganicCompost1 dl{
	width:600px;
	margin:auto;
	padding-bottom:50px;
	border-top:1px solid #5C8BB7;
	position:relative;
}
#OrganicCompost1 dl dt span{
	display:block;
	width:3px;
	height:80px;
	position:absolute;
	top:-10px;
	left:10px;
}
#MRT1 dt span{
	background-color:#67935F;
}
#MRT2 dt span{
	background-color:#D4463A;
}
#MRT3 dt span{
	background-color:#3DA1D0;
}
#OrganicCompost1 dl dt{
	font-size:20px;
	padding:25px;
	padding-left:35px;
	padding-bottom:35px;
	font-weight:500;
	position:relative;
}
#OrganicCompost1 dl dd{
	font-size:18px;
	padding-bottom:20px;
	padding-left:30px;
	letter-spacing:3px;
}
.OrganicCompost2{
	width:1000px;
	margin:auto;
	position:relative;
	padding-bottom:100px;
}
.OrganicCompost2 h3{
	text-align:center;
	font-size:28px;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding-bottom:70px;
	line-height:1.4em;
}
.OrganicCompost2 h3 small{
	display:block;
}
.CompostIntroduct{
	width:1000px;
	position:relative;
	margin:auto;
	display:flex;
	justify-content:space-around
}
.CompostIntroduct dl{
	width:300px;
}
.CompostIntroduct dl dt{
	width:100%;
	height:200px;
}
.CompostIntroduct dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:10px;
}
.CompostIntroduct dl dd{
	text-align:center;
	font-size:18px;
	padding-top:10px;
}

.CompostIntroduct2{
	width:1000px;
	position:relative;
	margin:auto;
	display:flex;
	justify-content:space-around;
	flex-wrap:wrap;
}
.CompostIntroduct2 dl{
	width:320px;
	padding-bottom:50px;
}
.CompostIntroduct2 dl dt{
	width:100%;
	height:400px;
}
.CompostIntroduct2 dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:5px;
}
.CompostIntroduct2 dl dd{
	text-align:center;
	font-size:18px;
	padding-top:10px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.BGbaige{
	background-color:#F7F1E6;
	padding:100px 50px;
}
.MIS-contactForm{
	width:900px;
	margin:auto;
	position:relative;
}
.MIS-contactForm h3{
	text-align:center;
	font-size:25px;
	color:#391E18;
	padding-bottom:50px;
	letter-spacing:5px;
}
.MIS-contactForm h3 span{
	display:block;
	font-size:16px;
	padding-top:35px;
	letter-spacing:2px;
}
.MIS-contactForm article{
	
}
.OptionList{
	width:740px;
	background-color:#FCF0CC;
	padding:35px;
	margin:auto;
	border-radius:10px;
	font-size:17px;
	margin-top:30px;
}
.OptionList li{
	line-height:30px;
	color:#50442A;
}

.MIS-formBox{
	position:relative;
	background-color:#FFF;
	width:840px;
	padding:35px;
	border-radius:10px;
	margin-bottom:35px;
}
.InputInfo{
	font-size:16px;
	letter-spacing:2px;
	padding-bottom:10px;
	color:#231815;
}
.InputInfo span{
	display:block;
	font-size:15px;
	padding:15px;
	color:#0051d3;
	background-color:#FFFFFF;
	border-radius:10px;
	margin-top:10px;
}
.FormCLM3{
	position:relative;
	display:flex;
	align-items:center;
}
/*.FormCLM3 span{
	display:block;
	padding-right:25px;
	padding-left:25px;
	padding-top:25px;
}*/
.MIS-formBox dl{
	position:relative;
	padding-top:10px;
	color:#231815;
	padding-right:10px;
	border-top:1px solid #CCC;
	margin-top:25px;
}
.MIS-formBox dl dt{
	font-size:15px;
	font-weight:500;
	padding-bottom:5px;
}
.MIS-formBox dl dd{
	font-size:16px;
}
.MIS-formBox dl dd input{
	height:32px;
	padding:5px;
	border-radius:5px;
	background-color: #FCFAF5;
    border:1px solid #796D5D;
    padding: 8px;
    transition: background-color 0.3s ease;
}
.MIS-formBox dl dd input:focus{
	background-color: #FFFFFF;
    outline: none;
    border-color: #999;
}
.MIS-formBox dl dd textarea{
	padding:5px;
	border-radius:5px;
	background-color: #FCFAF5;
    border:1px solid #796D5D;
    padding: 8px;
    transition: background-color 0.3s ease;
}
.MIS-formBox dl dd select{
	padding:5px;
	border-radius:5px;
	background-color: #FCFAF5;
    border:1px solid #796D5D;
    padding: 8px;
    transition: background-color 0.3s ease;
	height:50px;
}
.Width500{
	width:500px;
}
.Width300{
	width:300px;
}
.Width200{
	width:200px;
}
.Width150{
	width:150px;
}
.Width75{
	width:75px;
}
.height100{
	height:100px
}
.height70{
	height:70px
}
.Width100P{
	width:500px;
	height:250px;
}
input[type="checkbox"] {
            width: 15px; /* 横幅を設定 */
            height: 15px; /* 高さを設定 */
            transform: scale(1.5); /* 拡大率を設定 */
            -webkit-transform: scale(1.5); /* Safari用 */
        }
.FormCheck{
	position:relative;
}
.FormCheck dl{
	position:relative;
	display:flex;
	align-items:flex-start;
}
.FormCheck dl dt{
	width:180px;
}
.FormCheck dl dd{
	display:flex;
	width:630px;
	flex-wrap: wrap;
}
.FormCheck dl dd p{
	padding-right:25px;
}
.FormCheck dl dd p > *{
	display:inline-block;
	vertical-align:middle;
}
.FormCheck dl dd p span{
	padding-right:10px;
	padding-top:5px;
}
.FormSend{
	text-align:center;
}
.FormSend input{
	width:250px;
	height:60px;
	background-color:#4CBCCF;
	border:none;
	border-radius:5px;
	color:#FFF;
	font-size:18px;
}
.FormSend input:hover{
	background-color:#6CC8D7;
	cursor: pointer;
}

#RecruitList{
	position:relative;
	width:700px;
	margin:auto;
	padding-top:50px;
}
#RecruitList article{
	border:1px solid #746961;
	margin-bottom:35px;
	background-color:#FFF;
}
#RecruitList article > *{
	display:table-cell;
	vertical-align:middle;
}
#RecruitList article div{
	width:80px;
	padding-left:25px;
	padding-right:10px;
	padding-top:15px;
	padding-bottom:15px;
}
#RecruitList article div img{
	width:100px;
}
#RecruitList article dl{
	width:555px;
	padding-top:15px;
	padding-bottom:0px;
}
#RecruitList article dl dt{
	font-size:15px;
	padding-left:10px;
	padding-right:20px;
}
#RecruitList article dl dt span{
	font-size:17px;
	padding-top:10px;
	display:block;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
}
#RecruitList article dl dt a{
	display:block;
	color:#46332E;
}
#RecruitList article dl dd{
	padding:15px;
	width:540px;
	color:#6A5854;
	font-size:15px;
	font-weight:400;
}
#RecruitList article dl dd span{
	display:inline-block;
	background-color:#52B7CE;
	padding-left:10px;
	padding-right:10px;
	color:#FFF;
	font-size:13px;
	border-radius:15px;
	margin-right:5px;
	margin-bottom:5px;
	letter-spacing:1px;
}
#RecruitList article p{
	background-color:#52B7CE;
	height:100%;
	width:35px;
}
#RecruitList article p span{
	width:20px;
	display:block;
	margin:auto;
	text-align:center;
}
#RecruitList article p span img{
	width:15px;
}
#RecruitList article p small{
	display:none;
}
#RecruitList article p a{
	display:block;
}

#FarmRecruit{
	width:900px;
	margin:auto;
	position:relative;
	padding-top:50px;
}

#FRecCont1{
	position:relative;
	padding-top:50px;
}
#FRecCont1 h3{
	font-size:25px;
	text-align:center;
	padding-bottom:50px;
	line-height:1.6em;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight:bold;
}
#RecTITLES{
	width:650px;
	margin:auto;
	background-color:#FFF;
	border:1px solid #1AA6D1;
	padding:20px 30px;
	margin-bottom:50px;
}
#RecTITLES h4{
	font-size:15px;
	text-align:center;
	letter-spacing:3px;
	padding-bottom:20px;
}
#RecTITLES div{
	display:flex;
	margin:auto;
	justify-content: space-between;
	width:600px;
}
#RecTITLES div p{
	border-left:5px solid #1AA6D1;
	font-size:17px;
	padding-left:10px;
	padding-right:35px;
}

.RecCraim{
	width:800px;
	margin:auto;
	position:relative;
	padding-top:50px;
}

.RCsection{
	position:relative;
}
.RCsection h3{
	background-color:#1AA6D1;
	width:300px;
	line-height:70px;
	text-align:center;
	color:#FFF;
	font-size:18px;
	border-radius:10px;
	margin-bottom:35px;
}

.RCsection article{
	width:670px;
	margin:auto;
	display:flex;
	background-color:#FFF;
	align-items: flex-start;
}
.RCsection article h4{
	font-size:15px;
	padding-bottom:15px;
	width:200px;
	font-weight:500;
	border-top:3px solid #1AA6D1;
	padding:15px;
}
.RCsection article div{
	position:relative;
	width:470px;
	margin:auto;
	border-top:1px solid #CCC;
	padding:15px;
}
.RCsection article div p{
	font-size:16px;
	letter-spacing:1px;
	line-height:1.6em;
	padding-bottom:20px;
	
}

/*Topics*/
.gallery {
    display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 左寄せ */
  gap: 30px; /* 隙間を開ける（任意） */
	width:1000px;
	margin:auto;
	position:relative;
	padding-bottom:80px;
}

.gallery-item {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
	padding-bottom:50px;
}

.gallery .image-container {
    width: 100%;
    height: 250px;
    overflow: hidden; /* 画像がはみ出さないように隠す */
    border: 1px solid #CCC;
	border-radius:5px!important;
}

.gallery .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* 画像のトランジションを設定 */
	border-radius:5px!important;
}

.gallery .image-container img:hover {
    transform: scale(1.1); /* ホバー時に画像を拡大 */
}

.gallery .caption {
    text-align: center;
    margin-top: 10px;
}

.gallery .caption .date {
    font-size: 14px;
    color: #666;
}

.gallery .caption .title {
    font-size: 16px;
    font-weight: bold;
}
.TopicsArticle{
	width:1000px;
	position:relative;
	margin:auto;
	font-family: YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
}
.TopicsArticle dt{
	position:relative;
	font-size:21px;
	text-align:center;
	padding-bottom:50px;
	letter-spacing:1px;
	font-weight:bold;
	line-height:1.8em;
}
.TopicsArticle dt small{
	display:block;
	padding-bottom:10px;
	letter-spacing:0px;
	font-weight:400;
}
.TopicsArticle dd{
	font-size:17px;
	letter-spacing:1px;
	line-height:1.8em;
}
.TopicsArticle dd span{
	display:block;
	width:550px;
	vertical-align:top;
	float:left;
	margin-bottom:15px;
}
.TopicsArticle dd span img{
	width:500px;
}
.TopicsArticle dd .DDlink{
	line-height:1.4em!important;
	padding-bottom:10px;
}
.TopicsArticle dd .DDlink a{
	color:#296bcc;
	line-height:1.4em!important;
}
.TopicsArticle dd .DDlink a:hover{
	color:#5b94d8;
}
.TopicsArticle dd p a{
	color:#0000ff;
	text-decoration-line:underline;
	line-height:1.3em!important;
}

.LinkBtn{
	line-height:50px;
	background-color:#E6ECF3;
	width:350px;
	margin:auto;
	text-align:center;
	border-radius:50px;
	font-size:17px;
	letter-spacing:2px;
}
.LinkBtn a{
	display:block;
	color:#2D3946;
	border-radius:50px;
}
.LinkBtn a:hover{
	background-color:#EAEFF5;
	border-radius:50px;
	color:#405A75;
}

.NoArticle{
	text-align:center;
	color:#666;
	letter-spacing:3px;
}
#breadcrumb {
    display: flex;
    align-items: center; /* 縦方向の揃え方 */
    gap: 5px; /* 各要素間の隙間を調整 */
	width:1000px;
	margin:auto;
	padding-bottom:35px;
}
#breadcrumb a{
	color:#006cd7
}
#relations{
	padding-bottom:50px;
	position:relative;
}
#relations h3{
	text-align:center;
	font-size:23px;
	letter-spacing:3px;
}

.HPlink{
	display:block;
	background-color:#F3A9C3;
	width:150px;
	border-radius:40px;
	line-height:40px;
	text-align:center;
	margin-top:30px!important;
	color:#FFF;
	margin:auto;
}
.HPlink a{
	display:block;
	color:#FFF;
	border-radius:40px;
}
.HPlink a:hover{
	background-color:#F9CADC;
	border-radius:40px;
}
.Flex800{
	width:800px;
	margin:auto;
	position:relative;
	display:flex;
}
.Flex800 > *{
	padding:10px;
}

.ADDbtn{
	line-height:50px;
	text-align:center;
	background-color:#FFF;
	border-radius:5px;
	font-size:18px;
	margin:auto;
	margin-bottom:50px;
	width:350px;
	border-radius:50px;
	border:3px solid #cee6ea;
	cursor: pointer; /* 作物情報を追加するボタンにも */
	letter-spacing:2px;
	color:#00aacb!important;
}
.ADDbtn2{
	line-height:50px;
	text-align:center;
	background-color:#FFF;
	border-radius:50px;
	color:#333;
	font-size:18px;
	border:5px solid #cee6ea;
	width:50px;
	margin-top:10px;
	margin-bottom:10px;
	margin-right:15px;
	font-size:23px;
	font-weight:bold;
	cursor: pointer; /* 作物情報を追加するボタンにも */
}
.ADDcompost{
	font-size:17px!important;
	color:#00aacb!important;
	padding-top:10px;
}


#RecTITLES2{
	width:650px;
	margin:auto;
	background-color:#FFF;
	border:1px solid #1AA6D1;
	padding:20px 30px;
	margin-bottom:50px;
}
#RecTITLES2 h4{
	font-size:18px;
	text-align:center;
	letter-spacing:3px;
	padding-bottom:20px;
}
#RecTITLES2 div{
	display:flex;
	margin:auto;
	justify-content: space-between;
	width:600px;
}
#RecTITLES2 div p{
	border-left:5px solid #1AA6D1;
	font-size:17px;
	padding-left:10px;
	padding-right:35px;
}
.RecBGWhite{
	background-color:#FFF;
	padding:50px;
}
.delete-crop { 
	color:red; 
	margin-top:10px;
	cursor:pointer;
	text-align:right;
}

.contLine{
	
}


/*ZEST*/
.ZEST{
	position:relative;
	width:1050px;
	margin:auto;
	background-color:#FFF;
}
#Zest-title{
	width:980px;
	margin:auto;
	padding-top:20px;
}

.ZestWP{
	width:1000px;
	position:relative;
	margin:auto;
}
.ZestWP h3{
	font-size:25px;
	font-weight:600;
	text-align:center;
	line-height:1.5em;
	position:relative;
	padding-bottom:50px;
}
.ZestP1{
	width:600px;
	margin:auto;
	position:relative;
	font-size:16px;
	line-height:2em;
	padding-bottom:35px;
}
.ZestCenter{
	text-align:center;
}
.ZestMarginB100{
	padding-bottom:100px;
}
.ZestFlex{
	display:flex;
	width:650px;
	margin:auto;
	justify-content: space-around;
}
.ZestFlex p{
	width:200px;
}
.ZestFlex2{
	display:flex;
	width:800px;
	margin:auto;
	justify-content: space-around;
}
.ZestFlex2 p{
	width:200px;
}

.ZestWP-art{
	position:relative;
}
.ZestWP-art h4{
	text-align:center;
	font-size:20px;
	font-weight:700;
	padding-bottom:35px;
}
.ZestWP-art h4 span{
	border-top:7px solid #309387;
	padding:15px 25px;
}
.ZestCost{
	font-size:18px;
	text-align:center;
	font-weight:500;
	padding-bottom:15px;
}
.ZestCost big{
	font-size:55px;
	padding-left:10px;
	color:#309387;
	font-weight:700;
}
.ZestCost big small{
	font-size:20px;
}
.ZestCost-caution{
	font-size:14px;
	text-align:center;
	padding-bottom:120px;
}

.ZestPoint{
	position:relative;
}
.TTpoint{
	width:100px;
	line-height:100px;
	background-color:#ddebe8;
	border-radius:100px;
	margin:auto;
	text-align:center;
	color:#84bfb4;
	font-size:20px;
	font-weight:500;
	margin-bottom:35px;
}
.ZestPoint article{
	width:630px;
	margin:auto;
	border-radius:15px;
	position:relative;
	border:3px solid #309387;
	padding:35px 35px 0px;
	margin-bottom:80px;
	
}
.ZestPoint article h5{
	font-size:20px;
	font-weight:600;
	text-align:center;
	color:#309387;
}
.ZestPoint article h5 span{
	background-color:#FFF;
	padding-left:15px;
	padding-right:15px;
}
.ZestATtitle{
	position:absolute;
	left:0px;
	right:0px;
	top:-15px;
}
.point1Info{
	display:flex;
	margin:auto;
	justify-content: space-around;
	padding-bottom:50px;
}
.point1Info p{
	width:150px;
	height:150px;
	border-radius:150px;
	border:2px solid #309387;
	text-align:center;
}
.point1Info p span{
	padding-top:45px;
	display:block;
}
#pointWidth1{
	width:530px;
}
#pointWidth2{
	width:350px;
}
.ZT-point2WP{
	position:relative;
	padding-bottom:50px;
	width:600px;
	margin:auto;
}
.ZA-Img{
	width:600px;
	margin:auto;
}

.ZTW-title{
	position:relative;
	padding-top:15px;
}
.ZTW-title p{
	width:120px;
	height:120px;
	border-radius:120px;
	background-color:#309387;
	color:#FFF;
	position:absolute;
	top:0px;
}
.ZTW-title p i{
	padding-top:35px;
	display:block;
	text-align:center;
	font-style: normal;
}
.ZTW-title span{
	padding-left:135px;
	display:block;
	padding-bottom:20px;
}
#Point3DL{
	position:relative;
	display:flex;
	flex-wrap: wrap;
	width:100%;
	justify-content: space-around;
}
#Point3DL dl{
	width:45%;
	position:relative;
	padding-bottom:25px;
}
#Point3DL dl dt{
	color:#309387;
	text-align:center;
	font-size:16px;
	font-weight:500;
}
#Contactp1{
	width:500px;
	margin:auto;
	position:relative;
	padding-bottom:10px;
}
#Contactp2{
	width:380px;
	margin:auto;
	position:relative;
	padding-bottom:15px;
}
#Contactp3{
	width:300px;
	line-height:60px;
	background-color:#309387;
	border-radius:5px;
	margin:auto;
	text-align:center;
	color:#FFF;
}
#Contactp3 a{
	display:block;
	border-radius:5px;
	color:#FFF;
}
#Contactp3 a:hover{
	background-color:#3FC0B0;
	border-radius:5px;
}

/*確認画面モーダル用*/
#confirmModal {
  display: none;
  position: fixed; left:0; top:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999; /* モーダルを最前面に */
}
#confirmModal .modal-content {
  background: #fff;
  margin: 10% auto;
  width: 90%;
  max-width: 600px;
  padding: 1em;
  position: relative;
}

.FarmImg-sub{
	display:flex;
	position:relative;
	justify-content:space-between;
}
.FarmImg-sub span{
	width:250px;
	height:250px;
}
.FarmImg-sub span img{
	object-fit:cover;
	width:100%;
	height:100%;
}

.RecEntryBtn{
	width:260px;
	background-color:#EF0B00;
	line-height:50px;
	margin:auto;
	color:#FFF;
	text-align:center;
	font-size:17px;
	letter-spacing:2px;
}
.RecEntryBtn a{
	display:block;
	color:#FFF;
}
.RecEntryBtn a:hover{
	background-color:#F44747;
	color:#FFF;
}


.PersonalData{
	width:600px;
	position:relative;
margin:auto;
	padding-top:35px;
}
.PersonalData h4{
	text-align:center;
	font-size:18px;
font-weight:500;
border-top:1px solid #333;
	padding:25px;
}
.privacy{
	border:1px solid #CCC;
	padding:15px;
	margin-bottom:25px;
	height:150px;
	overflow-y: scroll;
	text-align:left;
}
.privacy h5{
	font-size:18px;
	text-align:center;
	padding-bottom:15px;
}
.privacy p{
	font-size:15px;
	text-align:left;
	padding-bottom:15px!important;
}
.privacy p strong{
	display:block;
	padding-bottom:10px;
}
.privacy ul{
	margin:0px;
	font-size:15px;
	padding-bottom:30px;
	padding-left:35px;
}
.privacy ul li{
	padding-bottom:7px;
}
.privacy ul li small{
	display:block;
	line-height:1.3em;
	padding-top:5px;
}
.SendCheck{
	background-color:#E0E9EE;
	text-align:center;
width:300px;
line-height:50px;
margin:auto;
border-radius:50px;
	font-size:15px;
	color:#113D83;
}
.SendBtn{
	text-align:center;
	padding-top:20px;
}
 .SendBtn input {
            width: 300px;
            height: 60px;
            background-color: #ccc; /* デフォルトはグレー */
            border: 0px;
            color: #FFF;
            font-size: 17px;
            letter-spacing: 2px;
            border-radius: 3px;
            cursor: not-allowed; /* 押せない状態を明示 */
        }

        .SendBtn input.enabled {
            background-color: #044470; /* 有効化された時の色 */
            cursor: pointer;
        }
.SendBtn input.enabled:hover{
	background-color:#0668AB;
}
.SendBtn small{
	padding-bottom:15px;
	display:block;
}

.RecruitFormAR{
	width:700px;
	margin:auto;
	border:1px solid #CCC;
	background-color:#FFF;
}
.RecruitFormAR dl{
	position:relative;
	width:100%;
	border-bottom:1px solid #CCC;
	padding:0px!important;
	display:table;
}
.RecruitFormAR dl > *{
	padding:10px;
	display:table-cell;
	vertical-align:top;
}
.RecruitFormAR dl dt{
	width:200px;
	border-right:1px solid #CCC;
	background-color:#87C2D6;
	color:#FFFFFF;
}
.RecruitFormAR dl dd{
	500px;
}
.REC-input{
	border:1px solid #CCC;
	height:40px;
	width:100%;
	background-color:#FAFEFF;
}
.REC-select{
	border:1px solid #CCC;
	height:40px;
}
.REC-textarea{
	border:1px solid #CCC;
	height:120px;
	width:100%;
	background-color:#FAFEFF;
}
.PersonalData{
}
.PrivacyWrap{
	position:relative;
	border:1px solid #CCC;
	padding:10px;
	overflow-y: scroll;
	background-color:#FFF;
	height:200px;
	margin-bottom:25px;
}
.PrivacyWrap dl{
	position:relative;
	padding-bottom:15px;
}
.PrivacyWrap dl dt{
	font-size:14px;
	font-weight:500;
}
.PrivacyWrap dl dd{
	font-size:13px;
	font-weight:300;
}
.PrivacyWrap dl dd ol{
	
}
.PrivacyWrap dl dd ol li{
    position: relative;
    list-style-position: outside;
    list-style-type: decimal;
}

.TopicsArticle dd h1{
	font-size:20px;
	font-weight:bold;
	line-height:1.3em;
	padding-bottom:25px;
}
.NewEyeCatch{
	width:510px!important;
	display: block !important;
   padding-right: 25px;
}