@charset "utf-8";
/* CSS Document */

/*---------------------------------------

	初期設定

---------------------------------------*/

html,body,div,
dl,dt,dd,ul,ol,li,
tr, th, td,
h1,h2,h3,h4,h5,h6,
p,a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	border: none;
	line-height: 1.5;
	text-align: left;
	text-decoration:none;
	color:#000;
}

dl,ul,ol,li {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border:none;
	-webkit-backface-visibility: hidden;
}

button, input, select, textarea {
	font-family:inherit;
	font-size:100%;
}

*:focus {
	outline: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

/*---------------------------------------

	メインレイアウト

---------------------------------------*/

html {
	width:100%;
	height:100%;
}

body {
	width: 100%;
	height: 100%;
	font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
}

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	height: auto !important;
	min-height: 100%;
}

#contents {
	width:100%;
	padding-bottom: 411px;
}

#contents section {
	width:100%;
	padding: 100px 0;
}

#contact {
	padding-bottom: 0 !important;
}

.access_top {
	padding-bottom: 0px;
}

.inner {
	width: 1000px;
	margin:auto;
	padding: 0 10px;
}

.scroll-fade {
	opacity: 0;
	transition: all 2s/*処理にかかる時間*/;
}

.scroll-up {
	opacity: 0;
	transform: translateY(100px)/*スクロールアップする距離*/;
	transition: all 2s/*処理にかかる時間*/;
}
.scroll-up.done,
.scroll-fade.done {
	opacity : 1;
	transform : translate(0, 0);
}

.load-fade {
	opacity : 0;
	transition : all 2s/*処理にかかる時間*/;
}

.load-up {
	opacity: 0;
	transform: translateY(100px)/*スクロールアップする距離*/;
	transition: all 2s/*処理にかかる時間*/;
}

.load-up.done,
.load-fade.done {
	opacity : 1;
	transform : translate(0, 0);
}

/*---------------------------------------

	共通設定

---------------------------------------*/

/*----------リンク---------*/

a {
	color: #8cc63f;
}

a:hover {
	text-decoration:underline;
}

a:hover img {
	opacity: 0.8;
}


/*----------見出し---------*/
.title {
	font-size: 45px;
	color: #31b45a;
	font-weight:bold;
	position: relative;
	border-bottom: 4px solid #b3b3b3;
	padding-bottom: 20px;
	margin-bottom: 60px;
}

.title span {
	font-size: 18px;
	color: #000;
	font-weight:bold;
	display:block;
}

.title::after {
	position: absolute;
	left:  0;
	bottom: -4px;
	display: block;
	content: " ";
	width: 20%;
	border-bottom: 4px solid #39b54a;
}

.subtitle {
	font-size: 25px;
	color: #31b45a;
	font-weight:bold;
	margin-bottom: 10px;
}

.page .title {
	font-size: 30px;
	padding-bottom: 10px;
	margin-bottom: 40px;
}

.pagettl {
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 90px;
}

.pagettl h2{
	font-size: 50px;
	font-weight:bold;
	color: #fff;
	text-align: center;
	text-shadow: 0 0 10px #333;
	letter-spacing: 2px;
}

.pagettl span {
	font-size: 18px;
	display:block;
	letter-spacing: normal;
}


.contact_ttl {
	background: url(../img/title/contact.jpg) #FFF;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.donation_ttl,.gallery_ttl,.link_ttl {
	background: url(../img/title/donation.jpg) #FFF;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.notfound_ttl {
	background: url(../img/title/404.jpg) #FFF;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}


/*----------文字---------*/
.line-break {
	display: none;
}

.center {
	text-align:center;
}

.text {
	margin-bottom: 40px;
}

.right {
	text-align: right;
}

.red {
	color: #F00;
}

.mt_20 {
	margin-top: 20px;
}

.mb_20 {
	margin-bottom: 20px;
}

.mb_40 {
	margin-bottom: 40px;
}

.bold {
	font-weight:bold;
}

.font_18 {
	font-size: 20px;
}

.font_20 {
	font-size: 20px;
}

.font_40 {
	font-size: 40px;
}



/*----------画像---------*/
.pc {
	display:block;
}

.sp {
	display: none;	
}

/*----------ボタン---------*/
.btn {
	display: block;
	width: 300px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	transition: .4s;
	margin: 60px auto 0;
	background: #8cc63f;
}

.btn:hover {
	text-decoration: none;
	opacity: 0.8;
}

/*----------テーブル---------*/
table.type01 {
	width:100%;
	border-collapse:collapse;
	margin-bottom:20px;
}

table.type01 th {
	width: 230px;
	padding: 20px;
	border-bottom: 1px #3875b2 solid;
	padding-left: 20px;
	vertical-align: top;
	text-align: left;
}

table.type01 td {
	padding: 20px;
	border-bottom: 1px #999 solid;
	text-align: left;
}


/*---------------------------------------

	ヘッダー
	
---------------------------------------*/

/*----------ヘッダー---------*/
header {
	width: 100%;
	display: flex;
	position: fixed;
	justify-content: space-between;
	z-index: 999;
	padding: 20px 40px;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.7) 100%);
}


header.transform{
	background: rgba(255,255,255,0.8);
}

#header_inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_box {
	display: flex;
	/*justify-content: space-between;
	align-items: center;*/
}

.header_box #logo {
	margin-left: 20px;
}

.header_box div {
	display: flex;
}

.header_box p {
	margin-left: 20px;
	font-weight: bold;
	padding: 10px 0;
	white-space: nowrap;
}

/*----------メニュー---------*/
header nav {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.9);
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	transition: all 0.6s;
	display: flex;
	justify-content: center;
	align-items: center;
}

header nav ul li{
	text-align:left;
	padding-bottom: 20px;
}

header nav ul li:last-child{
	padding-bottom: 0px;
}

header nav ul li a {
	color: #009245;
	text-decoration: none;
	font-size: 25px;
	font-weight:bold;
	transition: .4s all;
}

header nav ul li {
	transition: .4s all;
}

header nav ul li a span {
	display:block;
	font-size: 18px;
	color: #33a86a;
}

header nav ul li a:hover {
	text-decoration: none;
}

header nav ul li:hover {
	opacity:0.7;
}

/* クリックでjQueryで追加・削除 */
header nav.active {
	opacity: 100;
	/*display: block;*/
	transform: translateX(0%);
}

.hamburger,
.hamburger span {
	display: inline-block;
	transition: all 0.4s;
}
.hamburger {
	position: relative;
	width: 50px;
	height: 34px;
	cursor: pointer;
	z-index: 400;
}
	
.hamburger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #39b54a;
}
	
.hamburger span:nth-of-type(1) {
	top: 0;
}
.hamburger span:nth-of-type(2) {
	top: 15px;
}
.hamburger span:nth-of-type(3) {
	bottom: 0;
}
	
.hamburger.active span:nth-of-type(1) {
	transform: translateY(15px) rotate(-315deg);
}
	
.hamburger.active span:nth-of-type(2) {
	opacity: 0;
}
	
.hamburger.active span:nth-of-type(3) {
	transform: translateY(-15px) rotate(315deg);
}


/*---------------------------------------

	トップページ

---------------------------------------*/

/*----------スライド---------*/
.top_slide_pc {
	position: relative;
	display:block;
}

.top_slide_sp {
	position: relative;
	display:none;
}

.slide div {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100vh;
	margin: 0;
}

.slide div .img_01 {
	background-image:url(../img/slide/pc_01.jpg);
}

.slide div .img_02 {
	background-image:url(../img/slide/pc_02.jpg);
}

.slide div .img_03 {
	background-image:url(../img/slide/pc_03.jpg);
}

.slide div .img_04 {
	background-image:url(../img/slide/pc_04.jpg);
}

.slide div .img_01_sp {
	background-image:url(../img/slide/sp_01.jpg);
}

.slide div .img_02_sp {
	background-image:url(../img/slide/sp_02.jpg);
}

.slide div .img_03_sp {
	background-image:url(../img/slide/sp_03.jpg);
}

.slide div .img_04_sp {
	background-image:url(../img/slide/sp_04.jpg);
}


/*---------イベント---------*/
.event_detail h2 {
    font-weight: bold;
    margin: 30px 0;
    text-align: center;
    color: #31b45a;
    font-size: 25px;
}

.event_detail .btn {
	margin-top: 20px;
}

.event_detail table{
	display: inline-block;
	text-align: left;
}

.event_detail th {
	vertical-align: top;
}


/*---------メッセージ---------*/
.message {
	background:url(../img/message_bg.png) no-repeat;
	background-position: bottom left;
}

.message h3,
.message p {
	width: 50%;
	margin-left: auto;
}

.message p {
	text-shadow: 0 0 5px #fff, 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
}

.message_sp {
	display: none;
}

.message p:nth-of-type(2) {
    display: flex;
    align-items: center;
    justify-content: right;
	margin-top: 40px;
	text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
}

.message p:nth-of-type(2) span {
	margin-right: 1em;
}

.message p:nth-of-type(2) img {
	width: 180px;
}

/*---------プロフィール---------*/
.profile {
	position: relative;
	background:url(../img/profile_bg.png) no-repeat;
	background-size: cover;
}

.profile table {
	width: 50%;
	background: rgba(255, 255, 255, 0.8);
	padding: 20px;
	position: relative;
}

.profile table th,
.profile table td {
	padding-bottom: 15px;
}

.profile table tr:last-child th,
.profile table tr:last-child td {
	padding-bottom: 0;
}

.profile table th {
	position: relative;
	width: 100px;
	vertical-align: top;
}

.profile table th::after {
	content: '：';
	position: absolute;
	right: 0;
}

.profile .inner {
	position: relative;
}

.profile .inner img {
	position: absolute;
	top: 0px;
	right: 50px;
}

.profile_pc {
	display: block;
}

.profile_sp {
	display: none;
}

/*----------活動報告---------*/
.activityreport {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%
}

.activityreport li {
	width: 32%;
	margin-bottom: 40px;
}

.activityreport  li img {
	width: 100%;
}

.activityreport li a {
	display:block;
}

.activityreport li a:hover {
	text-decoration: none;
	opacity: 0.8;
}

.activityreport li p {
	width: 100%;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	background: #39b54a;
	color: #fff;
	padding: 15px 10px;
}


/*----------ニュース　SNS---------*/
.sns_text {
	color:#006837;
	font-size: 18px;
	font-weight:bold;
	text-align:center;
	margin-bottom: 20px;
}

.sns ul{
	display: flex;
	justify-content: center;
	margin: 40px 0;
}

.sns li {
	padding-right: 30px;
}

.sns li:last-child {
	padding-right: 0px;
}

.sns_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%;
}

.sns_box div {
	width: 49%;
}

.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.youtube iframe {
	width: 100%;
	height: 100%;
}

.instagram ul {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%;
	margin: 0;
}

.instagram ul li {
	width: 49%;
	padding: 0;
}


/*----------寄付のお願い---------*/
.donation {
	display: flex;
	justify-content: center;
}

.donation p{
	display:inline-block;
}

/*----------お問い合わせ---------*/
.top_contact {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	flex-wrap: wrap;
}

.top_contact li{
	display: flex;
	justify-content: center;
	font-size: 30px;
	font-weight:bold;
}

.top_contact li i {
	margin-right: 10px;
	color: #22b573;
	line-height: 40px;
}

.top_contact li:first-child {
	margin-right: 60px;
}

.map {
	margin-top: 60px;
}

.map iframe {
	display: block;
}

/*----------リンク---------*/
.link li {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: solid 1px #ccc;
}

.link li::before {
	content: '\f105';
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	padding: 1em;
	color: #00aa55;
}

.link li a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/*----------ページトップ---------*/
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #a3d165;
	border-radius: 50%;
	transition: .4s;
	z-index: 100;
}

#page_top a{
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f106';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -10px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

#page_top:hover{
	opacity: 0.8;
}


/*---------------------------------------

	子ページ

---------------------------------------*/

/*----------寄付・お問い合わせページ---------*/
.contact img {
	margin-right: 20px;
}

.contact p {
	display: flex;
	justify-content: center;
	color: #3a5dab;
	font-size: 40px;
	font-weight:bold;
}

.contact p:nth-child(2) {
	text-align:center;
	font-size:16px;
	margin-top: 30px;
	color: #000;
	font-weight:normal;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 5px 10px;
}

.input_button {
	text-align:center;
	margin-top: 40px;
}

input[type="submit"], input[type="button"], input[type="reset"] {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="submit"],input[type="reset"],input[type="button"] {
	width: 200px;
	height: 60px;
	background: #8cc63f;
	text-align:center;
	color:#fff;
	border-style: none;
	margin: 0 10px;
	padding: 0px;
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover {
	opacity: 0.7;
	cursor: pointer;
}

.error_messe {
	color: #F00;
}

table.contact_foam {
	width: 100%;
	margin-top: 60px;
}

table.contact_foam th {
	vertical-align: top;
	text-align: left;
	padding-bottom: 20px;
	display:block;
	font-weight:bold;
}

table.contact_foam td {
	text-align: left;
	padding-bottom: 40px;
	display:block;
}

table.contact_foam tr:last-child td {
	padding-bottom: 0px;
}

table.contact_foam th span {
	margin-left: 20px;
	display: inline-block;
	padding: 5px 10px;
	background: #ff6666;
	color: #fff;
	font-size: 14px;
}

.mail_copy {
	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
}

.attention_title {
	font-size: 20px;
	font-weight: bold;
	color: #FE2E2E;
	margin-top: 30px;
}

.attention li {
	padding: 2px 10px;
	text-indent: -1em;
	padding-left: 1em;
}

.attention li:before {
	content: "";
	width: 5px;
	height: 5px;
	display: inline-block;
	background-color: #ff6666; 
	border-radius: 50%;
	position: relative;
	top: -3px; 
	margin-right: 8px;
}

/*----------活動フォトギャラリー---------*/
.img_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.img_box a img {
	aspect-ratio: 1 / 1;
	margin: 10px;
	max-width: 200px;
	max-height: 200px;
	object-fit: cover;
	width:100%;
}

.mt_60 {
	margin-top: 60px;
}

.lb-data .lb-caption {
	color: #FFF;
}


.gallery_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	/*justify-content: center;*/
	gap: 2%;
	margin-bottom: 40px;
}

.gallery_box li {
	width: 23%;
	margin-bottom: 20px;
}

.gallery_box img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/*----------ご案内---------*/
.info h3 {
	font-size: 30px;
	padding-bottom: 5px;
	margin-bottom: 40px;
}

.info table {
	width: 100%;
	border-collapse: collapse;
}

.info table th,
.info table td {
	padding-bottom: 10px;
	vertical-align: top;
}

.info_01 th {
	width: 100px;
	position: relative;
}

.info_01 td {
	width: calc(100% - 100px);
}

.info_01 th::after {
	content: "：";
	position: absolute;
	right: 0;
}

.info_02 th {
	width: 150px;
}

.info_02 td {
	width: calc(100% - 150px);
}

.info .btn {
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	margin: 20px 0 0 0;
}

/*---------------------------------------

	フッター

---------------------------------------*/

footer {
	width:100%;
	position:absolute;
	bottom:0;
	background:#00aa55;
}

#footer_inner {
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
	display: table;
	table-layout: fixed;
}

#footer_inner p {
	text-align:center;
	color: #fff;
}

.footer_menu {
	width: 100%;
	margin-top: 40px;
}

.footer_menu nav {
	width: 1000px;
	margin: 0 auto;
}

.footer_menu ul {
	display: flex;
	justify-content: center;
}

.footer_menu ul li{
	padding: 0 10px;
}

.footer_menu ul li a{
	color: #FFF;
}

.footer_sns {
	margin-top: 30px;
}

.footer_sns i{
	font-size: 30px;
	
}

.footer_sns i:hover{
	opacity: 0.8;
}

#footer_inner .copy {
	font-size: 14px;
	text-align: center;
	color:#FFF;
	margin-top: 50px;
}