@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab:400i|Noto+Sans+JP|Noto+Serif+JP');
html, body, * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP","Noto SansJP","Noto Sans Japanese","メイリオ",sans-serif;
	line-height: 0;
}

body {
	display: flex;
	flex-direction: column;
}

img {
	width: 100%;
	display: block;
	vertical-align: bottom;
}

a:hover {
	filter: brightness(1.25);
}

.wrap {
	background: #008233;
}

@media (max-width: 1024px){
	.pc_wrap {
		display: none;
	}
}
@media (min-width: 1025px){
	.wrap {
		display: flex;
	}
	.pc_wrap {
		max-width: calc((100% - 414px) / 2);
		width: 100%;
		height: 100vh;
		position: fixed;
		padding: 40px 3%;
		/* overflow-y: scroll; */
	}
	.left { left: 0;}
	.right { right: 0;}
	.left_Inn, .right_Inn {
		width: 100%;
		height: 100%;
		position: relative;
	}
	/* left */
	.logo {
		width: 170px;
	}
	.left_note {
		max-width: 490px;
		width: 100%;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	/* right */
	.pc_menu {
		list-style: none;
		position: absolute;
		top: 0;
		bottom: auto;
		left: 0;
		right: auto;
		width: 100%;
		max-width: 200px;
	}
	.pc_menu li {
		margin: 22px 0;
	}
	.pc_menu a {
		display: block;
		width: 100%;
	}
	.pc_qr {
		max-width: 100px;
		margin-top: 10vh !important;
		margin-bottom: 2vh !important;
	}
}

.FloatingBanner {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 414px;
	background: #FF432C;
	padding: 14px 12px 18px;
	text-align: center;
	z-index: 10;
}
.FloatingLead {
	position: relative;
	margin-bottom: 12px;
	leading-trim: both;
	color: #fff;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
}
.FloatingLead:before, .FloatingLead:after {
	content:"";
	position: absolute;
	top: -26px;
	display: block;
	width: 37px;
	height: 37px;
}
.FloatingLead:before {
	background: url(../image/present_white_left.png) no-repeat top center / cover;
	right: 83%;
}
.FloatingLead:after {
	background: url(../image/present_white_right.png) no-repeat top center / cover;
	left: 83%;
}
.FloatingBtn {
	display: block;
	position: relative;
	width: 342px;
	border-radius: 50px;
	background: #FFF177;
	margin: 0 auto;
	padding: 14px;
	color: #1F1F1F;
	leading-trim: both;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}
.FloatingBtn:before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.FloatingBtn:after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-top: solid #464646 2px;
	border-right: solid #464646 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	right: 28px;
}

.Inner {
	max-width: 414px;
	width: 100%;
	margin: 0 auto;
}

.strap {
	background: #80B746;
	padding: 10px 0;
	text-align: center;
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
}

.mv {
	position: relative;
	background: #80b847;
}
#okayama_u_00{
	/* background: #999999;
	opacity: .8; */
	position: absolute;
	width: 22.3%;
	height: 4.9%;
	top: 4.9%;
	left: 26.4%;
}
.about {
	background: #80B746;
}
.about_Inn {
	padding: 0 18px 0 18px;
}
.about_ttl {
	padding: 48px 18px 40px;
}
.about_txt {
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 210%;
}
.icons{
	padding: 35px 20px;
}
.icons p{
	max-width: 108px;
	/* text-align: center; */
	margin: 23px auto 0;
}
.readMoreContainer {
	position: relative;
	height: auto;
	max-height: 250px;
	overflow: hidden;
}
.readMoreContainer::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: 1s;
	transition: 1s;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), to(rgba(128, 183, 70, 0.8)));
	background: linear-gradient(to bottom, transparent 40%, rgba(128, 183, 70, 0.8) 100%);
	pointer-events: none;
}
.readMoreContainer.show {
	overflow: visible;
	/* transition: ease-in .3s; */
}
.readMoreContainer.show:after {
	z-index: -1;
	opacity: 0;
	/* transition: ease-in .3s; */
}
.readMoreBtn {
	position: relative;
	display: block;
	background-color: #fff;
	border: 2px solid #00973B;
	border-radius: 30px;
	max-width: 200px;
	margin: 20px auto 0;
	padding: 8px 40px;
	color: #00973B;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	cursor: pointer;
	z-index: 3;
}
.plus {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.plus:after {
	content: "+";
	font-size: 160%;
	font-weight: lighter;
	position: absolute;
	top: 44%;
	transform: translateY(-50%);
	right: 16px;
}
.minus {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.minus:after {
	content: "-";
	font-size: 160%;
	font-weight: lighter;
	position: absolute;
	top: 44%;
	transform: translateY(-50%);
	right: 16px;
}

.melit {
	background: #fff;
}
.melit_ttl {
	padding: 60px 40px 46px;
}
.melit_Inn {
	padding: 0 18px 76px;
}
.melit_subttl {
	padding: 0 0 32px;
	position: relative;
	text-align: center;
}
.melit_subttl:before {
	content: "";
	width: 100%;
	height: 1px;
	border-top: dotted #00973B 1px;
	position: absolute;
	top: 34%;
	transform: translateY(-50%);
	left: 0;
}
.melit_subttl img {
	width: 140px;
	display: inline-block;
	vertical-align: baseline;
	position: relative;
	z-index: 2;
}
.melit_point {
	margin-bottom: 28px;
	color: #00973B;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
}
.melit_img {
	width: 224px;
	max-width: 100%;
	margin: 0 auto 28px;
	text-align: center;
}
.melit_txt {
	margin-bottom: 1em;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 200%;
}
.melit_note {
	list-style: none;
	padding-bottom: 40px;
}
.melit_note li {
	padding-left: 1em;
	text-indent: -1em;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.foodBankDetail {
	border: 2px solid #00973B;
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
	text-align: center;
}
.foodBankDetail_txt {
	color: #00973B;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}
.foodBankDetail_btn {
	position: relative;
	display: block;
	max-width: 280px;
	width: 100%;
	margin: 20px auto 0;
	padding: 16px;
	border-radius: 50px;
	border: 2px solid #00973B;
	background: #00973B;
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}
.foodBankDetail_btn:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-left: solid #fff 2px;
	border-bottom: solid #fff 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	right: 20px;
}

.howto {
	background: #E9EAE3;
	padding: 0 18px;
}
.howto_ttl {
	width: 268px;
	max-width: 100%;
	margin: 0 auto 34px;
}
.step_no {
	width: 86px;
	margin: 0 auto 16px;
}
.step_subttl {
	margin-bottom: 24px;
	color: #1F1F1F;
	leading-trim: both;
	text-edge: cap;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 30px */
	letter-spacing: 2px;
}
.step_row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 16px;
}
.step_col_img {
	width: 130px;
}
.step_col_txt {
	width: calc(100% - 130px);
	color: #000;
	leading-trim: both;
	text-edge: cap;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 170%;
}
.step_note {
	padding-left: 1em;
	text-indent: -1em;
	color: #606060;
	leading-trim: both;
	text-edge: cap;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.step_line {
	padding: 20px 0 24px;
}

.btnWrap01 {
	background: #fff;
}
.btnWrap02 {
	background: #00973B;
}
.btn_lead {
	width: 284px;
	margin: 48px auto 16px;
}
.btn_ylw {
	position: relative;
	display: block;
	width: 310px;
	margin: 0 auto 80px;
	padding: 16px 30px 16px 16px;
	border-radius: 50px;
	background: #FFF177;
	box-shadow: 0 4px 0 0 #D7A600;
	color: #464646;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
}
.btn_ylw:before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.btn_ylw:after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-top: solid #464646 2px;
	border-right: solid #464646 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	right: 28px;
}

.kifu {
	background: #80B746;
	padding: 36px 18px 8px;
}
.kifu_npo {
	margin-bottom: 18px;
	color: #FFF;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
}
.kifu_ttl {
	width: 280px;
	margin: 0 auto 40px;
}
.kifu_lead {
	margin-bottom: 30px;
	color: #FFF177;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 170%;
}
.kifu_lead span {
	display: inline-block;
	padding: 15px 0;
	border-bottom: dotted #fff 1px;
}
.kifu_txt {
	margin-bottom: 30px;
	color: #FFF;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 200%;
}
.kifu_img {
	margin-bottom: 20px;
}

.app {
	background: #00973B;
}
.app_Inn {
	padding: 60px 0 16px;
}
.app_ico {
	display: block;
	width: 44px;
	margin: 0 auto 12px;
	text-align: center;
}

.insta {
	background: #fff;
	padding: 80px 16px;
}
.insta_ttl {
	width: 324px;
	max-width: 100%;
	margin: 0 auto 16px;
}
.insta_txt {
	margin-bottom: 22px;
	color: #464646;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
}
.insta_box_row {
	display: flex;
	gap: 18px;
	padding: 22px 18px 22px;
	justify-content: space-between;
}
.insta_box {
	max-width: calc(100% / 3 - 18px);
	position: relative;
	min-height: 0;
	height: 200px;
}
@media (max-width: 460px){
	.insta_box {
		min-height: auto;
		height: 120px;
	}
}
.insta_box iframe {
	transform: scale(.5);
	transform-origin: top left;
	width: 100%;
	height: 100%;
	min-height: 300px;
}
@media (max-width: 575px){
	.insta_box iframe {
		transform: scale(.4);
	}
}
@media (max-width: 460px){
	.insta_box iframe {
		transform: scale(.3);
	}
}
@media (max-width: 360px){
	.insta_box iframe {
		transform: scale(.2);
	}
}
.insta_box div, .insta_box img {
	width: 100%;
	max-width: 100%;
}
.insta_btn {
	position: relative;
	display: block;
	width: 260px;
	max-width: 100%;
	border-radius: 10px;
	background: #80B746;
	padding: 16px 16px 16px 30px;
	margin: 0 auto;
	color: #FFF;
	leading-trim: both;
	text-align: center;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}
.insta_btn:after {
	content: "";
	display: block;
	width: 29px;
	height: 29px;
	background: url(../image/insta_btn.png) no-repeat top center / cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
}

.footer {
	position: relative;
	background: #E9EAE3;
	padding: 80px 18px 140px;
}
.footer:before {
	content: "";
	display: block;
	background: #E9EAE3;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	position: absolute;
	top: -34px;
	left: 50%;
	transform: translateX(-50%);
}
.footer_logo {
	position: relative;
	width: 82px;
	margin: 0 auto;
	top: -96px;
}
.footer_ttl {
	display: block;
	width: 144px;
	margin: 0 auto;
	position: relative;
	top: -50px;
}
.footer ul {
	list-style: none;
	margin: 0 auto;
	width: max-content;
}
.footer ul li {
	position: relative;
	top: -30px;
	padding: 0 0 8px 18px;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.footer ul li:before {
	content: "";
	display: block;
	background: #00973B;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 6px;
}
.footer_subttl {
	margin-bottom: 10px;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
}
.footer_name {
	margin-bottom: 14px;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.footer_note {
	margin-bottom: 28px;
	color: #6B6B6B;
	leading-trim: both;
	text-edge: cap;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.inquiry_ttl {
	margin-bottom: 12px;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
}
.inquiry_name {
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-family: "Noto Sans JP","Noto SansJP";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.inquiry_mail {
	margin-bottom: 40px;
	color: #464646;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.inquiry_mail a, .inquiry_mail a:hover {
	text-decoration: none;
	color: #464646;
}
.okadai_logo {
	width: 145px;
	margin: 0 auto 24px;
}
.copyright {
	color: #464646;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
