@charset "UTF-8";
/*font*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');

/* CSS Document */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0;}

* html .clearfix {height: 1%;}

.clearfix {display:block; clear: both;}

.body_reset{margin:0 auto; padding:0 auto;}


/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}


/*画像*/
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

a img:hover{
	/*opacity: 0.85;*/
}

/*リンク*/
a {
	color: #F00;
	text-decoration: underline;
}
 a:hover {
	text-decoration: none;
    transition: all 0.3s;
}
a:focus, input:focus {
	outline: none;
}

/*float*/
.left{
	float: left;
}
.right{
	float: right;
}

/* 解除 */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	visibility:hidden;
	font-size: 0;
}
.clear{
	clear: both;
}

/* 非表示 */
.hidden {
	visibility:hidden;
	font-size:0;
}

/*テキスト*/
em, .em{
	color:#f10000;
	font-style: normal;
}
.align-center{
	text-align: center;
	margin: 0 auto;
}
.align-left{
	text-align: left;
}
.align-right{
	text-align: right;
}
.bold{
	font-weight: 700;
}
.underline{
	text-decoration: underline;
}
.note{
	font-size: 85%;
	letter-spacing: normal;
}
.fontL{
	font-size: 115%;
}

/*見出し*/
h2 {
	font-size: 140%;
	line-height: 1.4em;
}
h3 {
	font-size: 140%;
	line-height: 1.5em;
}
h3 img {
	height: 25px;
	width: auto;
	margin-bottom: 0.5em;
}
h4 {
	font-size: 140%;
	line-height: 1.5em;
}
h5 {
	font-size: 110%;
	line-height: 1.5em;
	margin-top: 1.5em;
}

/*コンテナ*/
.container {
	margin: 0 auto;
	max-width: 1100px;
	padding: 0;
}

/*flex*/
.flexBox {
	box-sizing: border-box;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	align-items: flex-start;
}
.flexWrap {
	flex-wrap: wrap;
}
/* モバイルレイアウト : 480 px およびそれ以下. */
.pc {display: none;}
.sp {display: inline-block;}


body {
	font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	text-align: center;
	line-height: 1.7;
	color: #0a140a;
	font-size: 90%;
	-webkit-text-size-adjust: 90%;
	-moz-text-size-adjust: 90%;
	-ms-text-size-adjust: 90%;
	-o-text-size-adjust: 90%;
	text-size-adjust: 90%;
	overflow-x: hidden;
	word-wrap: break-word;
	background-color: #FFFFFF;
	letter-spacing: 0.08em;
}
header {
	position: relative;
}
header::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:70vh;
	background-image: url(../images/bg_header2.jpg);
	background-position: center center;
	background-size: 130% auto;
	-moz-background-size: 130% auto;
	background-size: cover;
	-moz-background-size: cover;
	background-repeat: no-repeat;
}
header h1 {
	visibility:hidden;
	font-size:0;
}
/* ローディングアイコン設定 */
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffea00;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/
#loading.disappear{
	display: none;
}

/* 背景動画設定 */
#movie-area{
	position: fixed;
	z-index:-10;/*最背面に設定*/
	top: 0;
	right:0;
	left:0;
	bottom:0;
	overflow: hidden;
	opacity: 0;
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#movie-area.appear {
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

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

#youtube, #video {
	/*天地中央配置*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask{
	position: absolute;
	z-index: 2;/*下から2番目に表示*/
	top:0;
	width:100%;
	height: 100%;
}
header .logo {
	margin: 0 auto;
	width: 85%;
	padding: 62px 0 12rem 0;
}
/*募集中*/
header .btn_boshu.sp {
	background-color: #ffec00;
	padding: 10px 15% 30px 15%;
	position: relative;
}
header .btn_boshu.sp::before {
	content: "";
	background-image: url(../images/bg_btn_top.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	top: -250px;
	left: 0;
	width: 100%;
	height: 250px;
}
header .btn_boshu.sp::after {
	content: "";
	background-image: url(../images/bg_btn_bottom.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	bottom: -250px;
	left: 0;
	width: 100%;
	height: 250px;
}

header .btn_boshu a img {
	transition: 0.3s;
	margin-top: 20px;
}
header h1, header h2 {
	visibility:hidden;
	font-size:0;
}
/*マップ*/
header .map {
	position: absolute;
	bottom: -3rem;
	right: 1%;
	width: 90%;
	z-index: 10;
}
header .map label {
	cursor: pointer;
}
header .map input {
	display: none;
}
header .map .appear {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}
header .map input:checked ~ .appear {
	padding: 10px 0;
	height: auto;
	opacity: 1;
	position: absolute;
	top: -180px;
	right: 0;
	width: 220%;
	z-index: 10;
}

/*コンテンツ*/
.contents {
	padding: 0;
}

/*今日から田んぼオーナー！*/
#owner {
	background-image: url(../images/bg_paper.png);
	background-position: center top;
	background-size: 10% auto;
	-moz-background-size: 10% auto;
	background-repeat: repeat;
	position: relative;
	padding: 1rem 0 6rem 0;
}
#owner::before {
	content: "";
	background-image: url(../images/bg_paper_top.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	z-index: 0;
	display: block;
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: 150px;
}
#owner::after {
	content: "";
	background-image: url(../images/bg_paper_bottom.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	bottom: -150px;
	left: 0;
	width: 100%;
	height: 150px;
}
#owner .owner_about {
	margin: 0 auto;
	position: relative;
}
#owner .owner_about div {
	width: 100%;
	margin: 0 auto;
	z-index: 1;
}
#owner .owner_text p{
	line-height: 2.2em;
	color: #534741;
}
#owner h3 img {
	max-width: 300px;
}
.bg_white {
	background-color: #FFF;
}

/*農作業体験*/
#work {
	background-color: #FFF;
	padding-top: 5rem;
	padding-bottom: 5rem;
	position: relative;
}
#work .flexBox {
	flex-direction: column;
	flex-wrap: wrap;
}
#work h3{
	position: relative;
	z-index: 1;
}
#work h3 img {
	/*max-width: 300px;*/
}
#work .sp_img1 {
	position: absolute;
	top:0;
	right: 4%;
	width: 18%;
	z-index: 20;
}
#work .step {
	width: 80%;
	margin: 3rem auto;
}
.step {
	margin: 0 auto;
}
.step_ttl {
	width: 100%;
}
.step_slide {
	width: 100%;
	margin-top: -1.5rem;
}
.slide-img {
	width: 100%;
	margin: 0 auto;
}
.slide-img img {
	border-radius: 10px;
	max-width: 100%;
}
.slide-thum {
	width: 100%;
	margin: 0.6rem auto 0 auto;
}
.slide-thum div+div {
	margin-right: 1px;
}
.arrow_down {
	width: 25px;
	margin-bottom: 1rem;
}

/*おしごとの日の流れ*/
#plan {
	padding-top: 2rem;
	padding-bottom: 4rem;
}
.owner_plan {
	width: 80%;
	margin: 30px auto 0px auto;
}
.bnr {
	margin: 4rem auto 0 auto;
	text-align: center;
}
.bnr img {
	width: 80%;
}
.bnr_txt {
	margin-bottom: 1rem;
}

/*オーナー様のこえ*/
#voice {
	padding: 5rem 0 8rem 0;
	position: relative;
}
#voice .sp_img2 {
	position: absolute;
	top:8%;
	right: 7%;
	width: 18%;
	z-index: 20;
}
.qestion {
	color: #806239;
	padding: 2em 0 2em 10%;
	text-align: left;
}
.voice_owner {
	list-style-type: none;
	box-sizing: border-box;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 0 auto;
}
.voice_owner li p {
	width: 80%;
	margin: 1rem auto;
}
.voice_owner li img.voice_img {
	border-radius: 8px;
}
.voice_owner li img.more {
	width: 50px;
}
.voice_owner li p {
	margin-top: 0.5em;
}
.detail {
	text-align: left;
	margin-top: 0.5em;
	font-size: 90%;
}
.btn_detail {
	cursor: pointer;
}

/*インタビュー*/
.detail_interview {
	text-align: left;
	margin-top: 2rem;
}
.interview1.flexBox {
	align-items: center;
	flex-direction: column-reverse;
}
.interview1 .interview_img {
	width: 80%;
}
.interview1 .interview_img p {
	margin: 0.5em 0 1em 0;
	line-height: 1.4em;
	margin: 0.5em auto 1rem auto ;
	width: 100%;
}
.interview1 .interview_copy {
	width: 100%;
	margin: 0 auto ;
}
.interview1 .interview_copy p {
	line-height: 1.8em;
}
.interview1 .interview_copy .headline {
	font-size: 150%;
	font-weight: 600;
	margin-bottom: 1em;
}
.interview2 {
	margin: 0 0 3rem 0;
}
.interview2.flexBox {
	flex-direction: column;
}
.interview2 div {
	width: 100%;
}
.interview2 p {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.interview2 .headline {
	font-weight: 600;
	margin-bottom: 1em;
}
.interview2 .text {
	font-size: 100%;
	margin-bottom: 1.5em;
}
.interview_img {
	width: 90%;
	margin: 1.5rem 0 3rem 0;
}
.interview3 {
	margin: 0;
	padding: 0;
}

/*募集要項*/
#application {
	padding-top: 100px;
	margin-top: -100px;
}

#boshu {
/*	background-color: #efe8d3;
	position: relative;*/
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;
}
/*#boshu::before {
	content: "";
	background-image: url(../images/bg_boshu_top.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: 150px;
}
#boshu::after {
	content: "";
	background-image: url(../images/bg_boshu_bottom.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	bottom: -120px;
	left: 0;
	width: 100%;
	height: 120px;
}*/
#boshu .sp_img3 {
	position: absolute;
	top: -4rem;
	left: 7%;
	width: 30%;
	z-index: 20;
}
#boshu .boshu_detail {
	position: relative;
}
.present {
	position: absolute;
	right: 3%;
	top: 3rem;
	width: 38%;
}
#boshu h3 img {
	width: auto;
	/*height: 27px;*/
}
#boshu .wrap_small {
	margin: 0 auto;
}
#boshu .boshu_detail ul {
	list-style-type: none;
	padding: 0;
}
#boshu .boshu_detail ul li {
	padding: 3rem 10%;
	box-sizing: border-box;
	text-align: left;
}
#boshu .boshu_detail ul li:first-child {
}
#boshu .boshu_detail ul li:nth-child(even) {
	background: #f2f2de;
}
#boshu .boshu_detail ul li p {
	vertical-align: middle;
	color: #806239;
}
#boshu .boshu_detail ul li p.index {
	font-size: 130%;
	font-weight: 600;
	margin-bottom: 0.5em;
	text-align: center;
}
#boshu .boshu_detail ul li p.index i {
	font-style: normal;
	padding-bottom: 5px;
	border-bottom: 1px solid #806239;
}
#boshu .boshu_detail ul li p b {
	font-size: 150%;
}
#boshu .boshu_detail ul li p b sup {
	font-size: 50%;
}
#boshu .boshu_detail ul li a.btn {
	display: block;
	max-width: 70%;
	margin-right: auto;
	margin-left: auto;
}
a.btn {
	display: inline-block;
	background-color: #FFF;
	box-shadow: 0 3px 2px #9a9787;
	padding: 0.4em 2em 0.2em 2em;
	border-radius: 20px;
	font-size: 90%;
	font-weight: 600;
	color: #806239;
	text-decoration: none;
	text-align: center;
	margin-top: 0.5em;
}
a.btn:hover {
	transform: translateY(3px);
	box-shadow: none;
}
/*吹き出し*/
.balloon {
	display: block;
	border: 1px solid #806239;
	border-radius: 8px;
	padding: 0.5em 1em 1em 1em;
	margin-top: 1.5rem;
	position: relative;
}
.balloon:before,
.balloon:after{
	content: "";
	position: absolute;
	left: 15%;
	width: 0;
	height: 0;
	margin: auto;
}
.balloon:before{
	top: -11px;
	width: 20px;
	height: 20px;
	border: 1px solid;
	border-color: #806239 #806239 transparent transparent;
	transform: rotate(-45deg);
}
.balloon:after{
	top: -10px;
	border-style: solid;
	border-color: #f6f6f5 #f6f6f5 transparent transparent;
	border-width: 0 22px 22px 0;
	z-index: 1;
	transform: rotate(-45deg);
}

/*応募フォームボタン*/
.btn_entry {
	width: 96%;
	margin: 0 auto;
}
.btn_entry a {
	display: block;
}

/*日程*/
#schedule {
	/*background-image: url(../images/bg_paper2.png);
	background-position: center top;
	background-size: 8% auto;
	-moz-background-size: 8% auto;
	background-repeat: repeat;*/
	position: relative;
	padding: 2rem 0 6rem 0;
	padding: 0;
}
#schedule .sp_img4 {
	position: absolute;
	top: -0.5rem;
	right: 6%;
	width: 30%;
	z-index: 20;
}
.schedule {
	width: 86%;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	color: #806239;
	padding: 0;
	}
.schedule p {
	margin: 1.5em 0;
}
.schedule .text{
	font-weight: 600;
}
/*タイムテーブル*/
.timetable .sp_img5 {
	position: absolute;
	bottom: 0;
	right: 8%;
	width: 15%;
	z-index: 20;
}
.timetable {
	color: #806239;
	padding-top: 0px;
	margin: 2rem auto 0 auto;
	position: relative;
}
.timetable ul {
	list-style-type: none;
	width: 14rem;
	margin: 0 auto;
	font-size: 140%;
}
.timetable ul li {
	text-align: left;
	margin-top: 0.5em;
	font-weight: 600;
}
.attention {
	font-size: 110%;
	font-weight: 700;
}
.attention span {
	background:linear-gradient(transparent 70%, #ffaaaa 70%);
}

/*お問い合わせ*/
#inquiry {
	padding: 2rem 0;
	margin-top: -2rem;
	margin-top: 0;
	color: #806239;
	text-align: center;
}
#inquiry .flexBox {
	width: 80%;
	padding: 2rem 0;
	margin: 0 auto;
	flex-direction: column;
	border-bottom: 1px solid #806239;
}
#inquiry p {
	width: 100%;
}
#inquiry p b {
	font-size: 200%;
}
#inquiry .mail {
	height: 20px;
	text-align: center;
}

/*スタッフ募集*/
#job {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
#job.flexBox {
	align-items: flex-end;
}
#job div {
	text-align: center;
	padding: 0 10px; 
}
#job div+div {
	margin-top: 3rem; 
}

/*豊根村いただき日誌*/
#diary {
	background-color: #FFF;
	box-sizing: border-box;
	padding-top: 80px;
}
#diary .sns {
	width: 80%;
	margin: 0 auto;
}
#diary .sns h3 img {
	width: 65%;
	max-width: 300px;
}
#diary .sns .icon img {
	width: 38px;
	margin: 20px 6% 40px 6%;
}
#diary .diary_img {
	width: 80%;
	height: 50vh;
	background-image: url(../images/sp/bg_diary.png);
	background-position: center top;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	text-align: center;
	padding: 5vh 0;
	margin-left: auto;
	margin-right: auto;
}
.diary_img_embed{
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	height: 100%;
	padding-left: 2%;
}
.diary_img_embed iframe{
	width: 100% !important;
	height: 50%;
}
#diary .diary_img img {
	width: auto;
	height: 32vh;
	margin: 10% 0 0 1%;
}

/*NEWS*/
#news {
	background-image: url(../images/bg_paper.png);
	background-position: center top;
	background-size: 10% auto;
	-moz-background-size: 10% auto;
	background-repeat: repeat;
	box-sizing: border-box;
	padding: 3rem 5%;
	position: relative;
}
#news::after {
	content: "";
	background-image: url(../images/bg_paper_bottom.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	bottom: -250px;
	left: 0;
	width: 100%;
	height: 250px;
}
#news .flexBox {
	flex-direction: column;
	flex-wrap: wrap;
}
#news h3 img {
	height: 35px;
	width: auto;
}

/*#news .container {
	background-color: #ccc;
}*/
.newsArea {
	text-align: left;
	margin-bottom: 3em;
	width: 100%;
}
#news ul {
	list-style-type: none;
	border-top: 1px solid #806239;
	border-bottom: 1px solid #806239;
	margin-bottom: 2rem;
}
#news ul li {
	border-bottom: 1px solid #c1b29e;
	padding: 1.2em 0;
	margin: 0 1em;
	font-size: 90%;
	line-height: 1.8;
}
#news ul li:last-child {
	border-bottom: none;
}
#news ul li span {
	display: block;
	color: #806239;
}
.newsArea {
}
.snsArea {
	width: 100%;
}
.sns_embed{
	margin-left: auto;
	margin-right: auto;
	height: 400px;
}
.sns_embed iframe{
	width: 100% !important;
}
.sns_icon {
/*	padding-top: 2em;*/
	text-align: center;
}
.sns_icon img {
	height: 35px;
	margin: 0 1.5em;
}
.sns_bnr img {
	width: 40%;
	margin: 1em;
}

/*背景 白い紙*/
.bg_paper {
	background-image: url(../images/bg_paper.png);
	background-position: center top;
	background-size: 10% auto;
	-moz-background-size: 10% auto;
	background-repeat: repeat;
	box-sizing: border-box;
	position: relative;
}
.bg_paper::before {
	content: "";
	background-image: url(../images/bg_paper_top.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	z-index: 0;
	display: block;
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: 150px;
}
.bg_paper::after {
	content: "";
	background-image: url(../images/bg_paper_bottom.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	z-index: 1;
	display: block;
	position: absolute;
	bottom: -150px;
	left: 0;
	width: 100%;
	height: 150px;
}
.bg_top_none.bg_paper::before,
.bg_bottom_none.bg_paper::after {
	background: none;
	top: 0px;
	bottom: 0px;
	height: 0px;
}
/*背景 茶色い紙*/
.bg_paper2 {
	background-image: url(../images/bg_paper2.png);
	background-position: center top;
	background-size: 10% auto;
	-moz-background-size: 10% auto;
	background-repeat: repeat;
}

/*Footer*/
footer {
	/*background-color: #FFF;*/
	background-image: url(../images/bg_paper.png);
	background-position: center top;
	background-size: 10% auto;
	-moz-background-size: 10% auto;
	background-repeat: repeat;
	font-size: 80%;
	padding: 2em 0 8em 0;
	color: #806239;
	margin: 0;
}
footer i {
	font-style: normal;
	font-size: 150%;
	vertical-align: middle;
}

/* タブレットレイアウト : 481 px 〜 834 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 641px) {
	.pc{display: none;}
	.sp{display: inline-block;}
	
	body {
		font-size: 110%;
		-webkit-text-size-adjust: 110%;
		-moz-text-size-adjust: 110%;
		-ms-text-size-adjust: 110%;
		-o-text-size-adjust: 110%;
		text-size-adjust: 110%;
	}
	h3 img {
		height: 35px;
	}
	header::before {
		height:85vh;
		background-position: center center;
	}
	header .logo {
		width: 70%;
		padding: 100px 0 30rem 0;
	}
	header .btn_boshu.sp {
		padding: 50px 15%;
	}
	header .map {
		bottom: -6rem;
		right: 2%;
	}
	header .map input:checked ~ .appear {
		top: -220px;
		width: 150%;
	}
	#owner h3 img {
		max-width: 400px;
	}
	#work h3 img {
		max-width: 400px;
	}
	#boshu h3 img {
		/*height: 33px;*/
	}
	/*農作業体験*/
	#work {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	#work .sp_img1 {
		right: 4%;
		width: 15%;
	}

	/*オーナー様のこえ*/
	#voice .sp_img2 {
		top: 8rem;
		right: 8%;
		width: 15%;
		z-index: 20;
	}
	.voice_owner li {
		width: 100%;
		margin: 1rem 0;
	}
/*	.voice_owner li img.voice_img {
		border-radius: 8px;
	}
	.voice_owner li img.more {
		width: 40px;
	}*/
	
	/*募集要項*/
	#boshu h3 img {
/*		height: 35px;*/
	}
	#boshu .sp_img3 {
		top: -8rem;
		left: 7%;
		width: 26%;
	}
	.present {
		right: 3%;
		top: 2rem;
		width: 32%;
	}
	.btn_entry {
		width: 86%;
	}

	.bnr img {
		width: 60%;
	}

	/*日程*/
	#schedule .sp_img4 {
		top: -0.5rem;
		right: 6%;
		width: 25%;
	}
	.schedule {
		width: 60%;
	}
/*	.schedule_img {
		text-align: center;
	}
	.schedule_img img.sp {
		width: 60%;
	}*/
	.timetable {
		padding-bottom: 4rem;
		margin: 3rem auto;
	}
	.timetable ul {
		width: 18rem;
	}
	.timetable .sp_img5 {
		bottom: 4rem;
		right: 12%;
		width: 12%;
	}

	/*豊根村いただき日誌*/
	#diary {
		padding-top: 200px;
	}
	#diary .sns h3 img {
		max-width: 250px;
	}
	#diary .sns .icon img {
		width: 42px;
		margin: 20px 4% 60px 4%;
	}
	#diary .diary_img {
		height: 60vh;
		padding: 8vh 0;
	}
	.diary_img_embed{
		width: 70%;
		padding-left: 2%;
	}

	/*NEWS*/
	#news {
	}
	#news h3 img {
		height: 42px;
	}
	.sns_icon img {
		height: 42px;
	}
	.sns_embed{
	}
}


/* デスクトップレイアウト : 835 px 〜。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 835px) {
	.fontL{font-size: 120%;}
	h1 {font-size: 180%;}
	h2 {font-size: 150%;}
	h3 {font-size: 150%;}
	h4 {font-size: 130%;}
	h3 img {
		height: 32px;
		margin-bottom: 0.5em;
	}
	
	.pc{display: inline-block;}
	.sp{display: none;}
	
	body {
		font-size: 100%;
		line-height: 1.8;
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		-o-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
	/*ヘッダー*/
	header::before {
		background-position: center calc(50% - 80px);
		background-position: center center;
		height:100vh;
		background-size: cover;
		-moz-background-size:  cover;
	}
	header .logo {
		width: 38%;
		padding: 8% 0;
		padding-bottom: 40%;
	}
	/*募集中*/
	header .btn_boshu {
		padding: 0;
		position: absolute;
		top: 5%;
		left: 5%;
		width: 20%;
	}
	header .btn_boshu a img {
		transition: 0.3s;
		transform: scale(1.0, 1.0) rotate(0deg);
	}
	header .btn_boshu a:hover img {
		transform: scale(1.05, 1.05) rotate(-15deg);
	}
	/*マップ*/
	header .map {
		position: absolute;
		bottom: -25px;
		bottom: 130px;
		left: 3%;
		width: 31%;
	}
	header .map label img {
		transition: 0.3s;
		transform: scale(1.0, 1.0) rotate(0deg);
	}
	header .map label img:hover {
		transform: scale(1.1, 1.1) rotate(0deg);
	}
	header .map input:checked ~ .appear {
		top: -200px;
		right: -50px;
		width: 120%;
	}

	/*コンテンツ*/
	.contents {
		padding: 0 8%;
	}

	/*今日から田んぼオーナー！*/
	#owner {
		background-size: 8% auto;
		-moz-background-size: 8% auto;
		margin-top: 0;
		padding: 5rem 0 6rem 0;
	}
	#owner::before {
		top: -140px;
		height: 140px;
	}
	#owner::after {
		bottom: -200px;
		height: 200px;
	}
	#owner .owner_about {
/*		box-sizing: border-box;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		-webkit-box-pack:justify;
		-moz-box-pack:justify;
		-webkit-flex-pack:justify;
		-moz-flex-pack:justify;
		-ms-flex-pack:justify;
		-webkit-justify-content:space-between;
		-moz-justify-content:space-between;
		justify-content:space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: flex-end;*/
	}
	#owner .owner_about div {/*上の波線の高さ*/
		width: 86%;
		margin-top: -120px;
	}
	#owner .owner_about .owner_img {
	}
	#owner .owner_about .owner_text {
	}
	#owner .owner_text p+p{
		margin-top: 2rem;
	}
	#owner h3 {
		margin-bottom: 120px;
	}
	#owner h3 img {
		max-width: 715px;
	}
	
	/*農作業体験*/
	#work {
		padding-top: 200px;
		padding-bottom: 200px;
		margin-top: 0;
	}
	#work .flexBox {
		flex-direction: row;
		flex-wrap: nowrap;
	}
	#work h3 img {
		max-width: 395px;
	}
	#work .step {
		width: 100%;
	}
	.step_ttl {
		width: 40%;
	}
	.step_slide {
		width: 52%;
		margin-top: 0;
	}
	.arrow_down {
		width: 28px;
		margin: 0;
	}

	/*おしごとの日の流れ*/
	#plan {
		padding: 5rem 0 3rem 0;
	}
	.owner_plan {
		width: 70%;
		margin: 0 auto;
		margin: 80px auto 50px auto;
	}
	.bnr img {
		width: auto;
	}
	.bnr a img {
		width: 290px;
		transform: scale(1.0, 1.0);
		transition: 0.3s;
	}
	.bnr a:hover img {
		transform: scale(1.05, 1.05);
	}
	.bnr_txt {
		height: 25px;
		margin-bottom: 1rem;
	}

	/*オーナー様のこえ*/
	#voice {
		padding-top: 200px;
		padding-bottom: 180px;
	}
	.qestion {
		padding: 2em 0;
		text-align: center;
	}
	.voice_owner {
		width: 60%;
		flex-direction: row;
	}
	.voice_owner li {
		width: 50%;
		margin: 1rem 0;
	}
	.voice_owner li p {
		width: 100%;
		margin-bottom: 0em;
	}
	.voice_owner li img.voice_img {
		border-radius: 8px;
		width: 78%;
	}
	.voice_owner li img.more {
		width: 40px;
	}
	.detail {
		width: 78%;
		margin: 0 auto;
	}
	/*インタビュー*/
	.detail_interview {
		text-align: left;
		margin-top: 2rem;
		margin-top: 0;
		padding: 2em 0 4em 0;
		background-image: url(../images/bg_paper.png);
		background-position: center top;
		background-size: 8% auto;
		-moz-background-size: 8% auto;
		background-repeat: repeat;
	}
	.interview1.flexBox {
		align-items: center;
		flex-direction: row;
	}
	.interview1 .interview_img {
		width: 35%;
	}
	.interview1 .interview_img p {
		margin: 0.5em 0 1em 0;
		line-height: 1.4em;
	}
	.interview1 .interview_copy {
		width: 57%;
	}
	.interview1 .interview_copy p {
		line-height: 2.8em;
	}
	.interview1 .interview_copy .headline {
		font-size: 150%;
		font-weight: 600;
		margin-bottom: 1em;
	}
	.interview2 {
		margin: 3rem 0;
	}
	.interview2.flexBox {
		flex-direction: row;
	}
	.interview2 p {
		width: 100%;
	}
	.interview2 div {
		width: 28.5%;
	}
	.interview2 div:nth-child(2) {
		border-left: 1px solid #000;
		border-right: 1px solid #000;
		padding-left: 3.6%;
		padding-right: 3.6%;
	}
	.interview2 .headline {
		font-weight: 600;
		margin-bottom: 1em;
	}
	.interview2 .text {
		font-size: 90%;
		margin-bottom: 1.5em;
	}
	.interview3 {
	}
	.interview3 div {
		width: 43%;
		margin: 0 3.5%;
	}

	/*募集要項*/
	#boshu {
/*		background-image: url(../images/bg_paper.png);
		background-position: center top;
		background-size: 8% auto;
		-moz-background-size: 8% auto;
		background-repeat: repeat;*/
		padding: 5rem 0 5rem 0;
	}
/*	#boshu::before {
		content: "";
		background-image: url(../images/bg_paper_top.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 100% auto;
		z-index: 1;
		display: block;
		position: absolute;
		top: -150px;
		left: 0;
		width: 100%;
		height: 150px;
	}
	#boshu.bg_paper::after {
		content: "";
		background-image: url(../images/bg_paper_bottom.png);
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 100% auto;
		z-index: 1;
		display: block;
		position: absolute;
		bottom: -250px;
		left: 0;
		width: 100%;
		height: 250px;
		background: none;
	}*/
	#boshu h3 img {
		width: auto;
	}
	#boshu .boshu_detail {
		width: 55%;
		margin: 0 auto;
	}
	#boshu .boshu_detail ul {
		margin: 3rem 0 1rem 0;
		border-top: 1px solid #806239;
	}
	#boshu .boshu_detail ul li {
		border-bottom: 1px solid #806239;
		padding: 2rem 0;
		box-sizing: border-box;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		-webkit-box-pack:justify;
		-moz-box-pack:justify;
		-webkit-flex-pack:justify;
		-moz-flex-pack:justify;
		-ms-flex-pack:justify;
		-webkit-justify-content:space-between;
		-moz-justify-content:space-between;
		justify-content:space-between;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		align-items: center;
		/*text-align: center;*/
	}
	#boshu .boshu_detail ul li:first-child {
		padding-top: 2rem;
	}
	#boshu .boshu_detail ul li:nth-child(even) {
		background: none;
	}
	#boshu .boshu_detail ul li p {
		width: 80%;
		vertical-align: middle;
		text-align: left;
		color: #806239;
	}
	#boshu .boshu_detail ul li p.index {
		width: 20%;
		font-weight: 600;
		margin-bottom: 0;
		text-align: left;
	}
	#boshu .boshu_detail ul li p.index i {
		padding-bottom: 0;
		border-bottom: none;
	}
	#boshu .boshu_detail ul li p b {
		font-size: 140%;
	}
	#boshu .boshu_detail ul li a.btn {
		display: inline-block;
		max-width: 100%;
	}
	.present {
		right: 0;
		top: -3rem;
		width: 26%;
	}
	.balloon {
		border: none;
		padding: 0;
		margin-top: 0;
	}
	.balloon:before,
	.balloon:after{
		border: none;
	}
	.ribbon {
		display: block;
		position: relative;
		height: 28px;/*リボンの高さ*/
		line-height: 24px;/*リボンの高さ*/
		text-align: center;
		padding: 4px 0.5em 0 0.5em;/*横の大きさ*/
		background: #806239;
		color: #FFF;
		box-sizing: border-box;
		text-align: center;
		margin: 0.5em 0;
	}
	.ribbon:before, .ribbon:after {
		position: absolute;
		content: '';
		width: 0px;
		height: 0px;
		z-index: 1;
	}
	.ribbon:before {
		top: 0;
		left: 0;
		border-width: 14px 0px 14px 8px;
		border-color: transparent transparent transparent #f6f6f5;
		border-style: solid;
	}
	.ribbon:after {
		top: 0;
		right: 0;
		border-width: 14px 8px 14px 0px;
		border-color: transparent #f6f6f5 transparent transparent;
		border-style: solid;
	}
	
	/*日程*/
	#schedule {
		/*background-image: url(../images/bg_paper.png);
		background-position: center top;
		background-size: 8% auto;
		-moz-background-size: 8% auto;
		background-repeat: repeat;*/
		position: relative;
		/*padding: 10rem 0 10rem 0;*/
	}
	.schedule {
		width: 55%;
		margin: 0 auto;
		padding-top: 0;
		padding-bottom: 0;
	}
	.schedule .text{
		text-align: left;
	}

	/*タイムテーブル*/
	.timetable {
		background: none;
	}
	.timetable ul {
		list-style-type: none;
		width: 17rem;
		margin: 0 auto;
	}
	.timetable ul li {
		text-align: left;
		margin-top: 0.5em;
		font-weight: 600;
	}
	.btn_entry {
		width: 70%;
		margin: 0 auto;
	}
	.btn_entry a {
		display: block;
		background-size: 0 0;
	}
	.btn_entry a.normal {
		background-image: url(../images/pc/btn_form_on.png);
	}
	.btn_entry a.stc {
		background-image: url(../images/pc/btn_form_stc_on.png);
	}
	.btn_entry a.pia {
		background-image: url(../images/pc/btn_form_pia_on.png);
	}
	.btn_entry a img {
		width: 100%;
	}
	.btn_entry a:hover {
		display: block;
		background-size: 100% auto;
	}
	.btn_entry a:hover img {
		opacity: 0;
	}
	#boshu .btn_entry {
		margin-bottom: 4rem;
	}
	
	/*お問い合わせ*/
	#inquiry {
		padding: 2rem 0 0 0;
		padding: 0;
	}
	#inquiry .flexBox {
		-webkit-justify-content: center;
		-moz-justify-content: center;
		justify-content: center;
		flex-direction: row;
		border: none;
	}
	#inquiry p {
		width: auto;
		text-align: left;
	}
	#inquiry p b {
		font-size: 200%;
	}
	#inquiry .mail {
		height: 20px;
	}
	#inquiry .pagelink {
		padding-right: 1rem;
		/*padding-top: 0.8em;*/
	}
	#inquiry .tel {
		padding: 0;
		text-align: left;
	}
	/*スタッフ募集*/
	#job div+div {
		margin-top: 0; 
	}
	
	/*豊根村いただき日誌*/
	#diary {
		padding-top: 200px;
	}
	.diaryArea {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: -moz-flex;
		display: flex;
		-webkit-box-pack: justify;
		-moz-box-pack: justify;
		-webkit-flex-pack: justify;
		-moz-flex-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		justify-content: center;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		align-items: center;
		align-self: center;
		width: 80%;
		margin: 0 auto;
/*		height: 68vh;*/
		background-image: url(../images/pc/bg_diary.png);
		background-position: center top;
		background-size: 100% 100%;
		background-repeat: no-repeat;
		padding: 10vh 0 12vh 0;
	}
	#diary .sns {
		width: 40%;
		padding: 5%;
/*		background-color: #222;*/
	}
	#diary .sns h3 img {
		width: 100%;
		max-width: 250px;
	}
	#diary .sns .icon img {
		width: 33px;
		margin: 0 6%;
	}
	#diary .diary_img {
		width: 50%;
		height: 50vh;
		background-image: none;
/*		background-color: #666;*/
		padding: 0;
	}
	.diary_img_embed{
		margin-left: auto;
		margin-right: auto;
		width: 70%;
	}
	#diary .diary_img img {
		width: 35%;
		height: auto;
		margin: 9% 8% 0 0;
	}
	/*NEWS*/
	#news {
		background-image: url(../images/bg_paper2.png);
		background-size: 12% auto;
		-moz-background-size: 12% auto;
		padding-top: 0px;
		padding-bottom: 120px;
		margin: -160px auto 0 auto;
	}
	#news::before {
		content: "";
		background-image: url(../images/bg_paper2_top.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 100% auto;
		z-index: 0;
		display: block;
		position: absolute;
		top: -170px;
		left: 0;
		width: 100%;
		height: 170px;
	}
	#news::after {
		content: none;
	}
	#news .flexBox {
		flex-direction: row;
		flex-wrap: nowrap;
	}
	#news h3 img {
		height: 30px;
	}
	.newsArea {
		width: 45%;
	}
	.snsArea {
		width: 45%;
	}
	.whats.pc { /*愛知県*/
		width: 45%;
		margin-top: -180px;
		position: relative;
		z-index: 10;
	}
	.sns_icon {
		margin-bottom: 2rem;
	}
	.sns_icon img {
		height: 48px;
	}
	.sns_embed{
		margin-left: auto;
		margin-right: auto;
		width: 100%;
/*		background-color: #806239;*/
	}

	/*背景 白い紙*/
	.bg_paper {
		background-size: 12% auto;
		-moz-background-size: 12% auto;
	}
	/*背景 茶色い紙*/
	.bg_paper2 {
		background-size: 12% auto;
		-moz-background-size: 12% auto;
	}

	/*Footer*/
	footer {
		padding: 100px 0 2rem 0;
	}
}
@media only screen and (min-width: 1400px) {
	/*コンテナ*/
	.container {
		max-width: 1200px;
	}
	body {
		font-size: 120%;
		line-height: 1.8;
		-webkit-text-size-adjust: 120%;
		-moz-text-size-adjust: 120%;
		-ms-text-size-adjust: 120%;
		-o-text-size-adjust: 120%;
		text-size-adjust: 120%;
	}
	/*今日から田んぼオーナー！*/
	#owner::before {
		top: -10%;
		height: 10%;
		top: -180px;
		height: 180px;
	}
	#owner::after {
		bottom: -15%;
		height: 15%;
	}
	#owner h3 img {
		max-width: 70%;
	}
	/*田んぼのお仕事*/
	#work {
		padding-top: 15%;
	}
	#work h3 img {
		max-width: 50%;
	}
	/*募集要項*/
	#boshu::before {
		top: -15%;
		height: 15%;
	}
	#boshu::after {
		bottom: -15%;
		height: 15%;
	}
	.timetable ul {
		width: 22rem;
	}
	.present {
		max-width: 290px;
	}
	/*豊根村いただき日誌*/
	#diary {
		padding-top: 15%;
	}
	.diaryArea {
	}
	.diary_img_embed{
		width: 75%;
	}
	/*news*/
	#news {
	}
	.newsArea {
	}
	.news_img_embed{
		width: 75%;
	}
/*	#diary .diary_img {
		width: 70%;
		height: 58vh;
		background-image: url(../images/pc/bg_diary.png);
		background-position: center top;
		background-size: contain;
		background-repeat: no-repeat;
		text-align: right;
		position: relative;
	}
	#diary .diary_img img {
		width: auto;
		height: 36vh;
		margin: 0;
		position: absolute;
		top: 14%;
		right: 11%;
	}*/

	/*Footer*/
	footer {
		padding-top: 350px;
	}
}