@CHARSET "UTF-8";
/*
Theme Name: Team 明日の向日
date: 2026.02.07
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --asagi: #33A6B8; 
  --s_asagi: #6699A1;
	--bg: #e0f2f5; 
	--yellow: #ffff00;
	--bk: #333;
	--grad: linear-gradient(135deg ,#33A6B8, #c1e1e6);
	--stripe_bg: #33A6B8 repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.2) 5px, rgba(255, 255, 255, 0.2) 10px );
	--header_height: 5rem; 
}


*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Zen Maru Gothic", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
	background: var(--grad);
	background-attachment: fixed;
}





/* =layouts
-------------------------------------------------------------- */

#site_container{
	background: #fff;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding-top: var(--header_height);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
#site_footer{
	margin-top: auto;
	position: relative;
}
#pc_side{
	display: none;
}
.wrapper{
	width: 90%;
	margin: 0 auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 500;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 500;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 500;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.hidden{
	overflow: hidden;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 120%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}
.img_opacity:hover img{
	opacity: .8;
}
a.hover_up:hover{
	transform: translateY(-5px);
	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
}
.hover_up__img:hover img{
	transform: translateY(-5px);
	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
}





/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}
a:hover .img_clip img{
	scale: 1.1;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}



/* =slide base
-------------------------------------------------------------- */

.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--grad);
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}





/* =site basic
-------------------------------------------------------------- */

.btn_link{
	display: block;
	width: 90%;
	margin: 1rem auto;
	text-align: center;
  position: relative;
	line-height: 1.5;
}
.btn_link::before{
	content: '';
	width: calc(100% + 12px);
	height:  calc(100% + 12px);
	position: absolute;
	top: -6px;
	left: -6px;
	border: var(--asagi) solid 1px;
	border-radius: 50px;
	opacity: 0;
	transition: .3s;
}
.btn_link:hover::before{
	opacity: 1;
}
.btn_link__txt{
	display: block;
	background: var(--asagi);
	border: var(--asagi) solid 1px;
	color: #fff;
	padding: 1.5rem 2rem;
	border-radius: 50px;
}
.arrow{
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 1rem;
	width: 3rem;
	height: 3rem;
	background: #fff;
	overflow: hidden;
	border-radius: 50%;
}
.arrow::before,
.arrow::after{
	content: '';
	width: 35%;
	height: 2rem;
	background: url('images/common/arrow.svg') no-repeat center center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	transition: .5s;
}
.arrow::after{
	left: -4rem;
}
.btn_link .arrow{
	margin: 0 0 0 auto;
}

a:hover .arrow::before{
	left: 150%;
}
a:hover .arrow::after{
	left: 50%;
	transition-delay: .2s;
}

.sns_links{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.sns_links li{
	margin: 0 .5rem .5rem;
}
.btn_sns{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--asagi);
}
.sns_icon{
	fill: #fff;
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}
.icon_stroke{
	fill: none;
	stroke: #fff;
}
.sns_line{
	background: #06c755;
}
.sns_instagram{
	background: linear-gradient(135deg,#741AFA,#FF30C4,#FF5D21,#FFD735);
}
.sns_youtube{
	background: #ff0000;
}
.sns_facebook{
	background: #1877f2;
}
.sns_x{
	background: #000;
}
.sns_tiktok{
	background: #000;
}
.fa-up-right-from-square{
	font-size: 70%;
	margin-left: .3rem;
}

.section{
	padding: 5rem 0;
}

.section_title{
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	position: relative;
	font-weight: 700;
}
.section_title::after{
	content: '';
	background: var(--asagi);
	width: 5rem;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
}
.section_intro{
	text-align: center;
	margin-bottom: 3rem;
	font-size: 1.6rem;
}
.ribbon{
	display: inline-block;
	padding: .5rem 3rem .5rem 1.5rem;
	background: var(--bk);
	color: #fff;
	clip-path: polygon(0 0,100% 0,95% 50%,100% 100%,0 100%);
}
.bg{
	background: var(--bg);
}
.bg_blue{
	background: var(--asagi);
}

.page_header{
	padding: 5rem 0 3rem;
}
.page_title{
	font-size: 3rem;
}
.page_container{
	padding-bottom: 5rem;
}
#message_404 p{
	text-align: center;
	margin-bottom: 5rem;
}





/* =breadcrumb
-------------------------------------------------------------- */

.breadcrumb_wrap{
	overflow: hidden;
	margin: .5rem auto 0;
	white-space: nowrap;
	text-align: right;
}
.breadcrumb{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 1rem;
}
.breadcrumb li::after{
	content: '';
	border-top: #999 solid 1px;
	border-right: #999 solid 1px;
	width: .5rem;
	height: .5rem;
	display: inline-block;
	rotate: 45deg;
	margin-right: .5rem;
}
.breadcrumb li:last-child{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 15rem;
}
.breadcrumb li:last-child::after{
	content: none;
}
.breadcrumb a:hover{
	color: var(--asagi);
}




/* =header
-------------------------------------------------------------- */

#site_header{
  padding: 0 1rem;
	height: var(--header_height);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 2px 3px rgba(0,0,0,.1);
	z-index: 9999;
}
#site_header__inner{
	max-width: 500px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
}
#header_logo{
  display: block;
	margin: 0 auto 0 0;
	width: 13rem;
}
#header_nav__btn{
	position: relative;
	width: var(--header_height);
	height: var(--header_height);
	text-align: center;
	z-index: 999;
  cursor: pointer;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	width: 50%;
}
#header_nav__btn .border{
	width: 100%;
	height: 3px;
	background: var(--asagi);
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}
#header_nav__inner{
	width: 100%;
	background: var(--grad);
	z-index: 999;
	position: fixed;
	top: var(--header_height);
	left: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding: 2rem 2rem 5rem;
	box-shadow: 0 2px 3px rgba(0,0,0,.1);
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
}
#nav_inner{
	background: #fff;
	border-radius: 1rem;
	overflow: hidden;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.main_navigation{
	position: relative;
	padding: 1rem 0;
}
.main_navigation li a{
	display: block;
	padding: 1.5rem;
	position: relative;
	border-bottom: var(--asagi) solid 1px;
	font-weight: 700;
	color: var(--asagi);
}
.main_navigation li a::after{
	content: '';
	background: url('images/common/arrow.svg') no-repeat center center / contain;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 2rem;
	transition: .3s;
}
.main_navigation li a:hover::after{
	right: 1.5rem;
}
.main_navigation li:last-child a{
	border: 0;
}
#header_sns{
	margin-top: 3rem;
}

#bnr_supportor{
	position: fixed;
	bottom: 1rem;
	width: 95%;
	max-width: 480px;
	left: 50%;
	translate: -50% 0;
	z-index: 9999;
	background: var(--yellow);
	text-align: center;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	font-weight: 700;
	border: #000 solid 2px;
}
#bnr_supportor::before{
	content: '';
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	position: absolute;
	border: #000 solid 1px;
	top: 2px;
	left: 2px;
}



/* =footer
-------------------------------------------------------------- */

#site_footer{
	padding: 5rem 0 0;
	border-top: var(--asagi) solid .2rem;
}
#footer_logo{
	width: 25rem;
	margin: 0 auto 3rem;
	display: block;
}
#footer_address{
	margin: 3rem 0;
	text-align: center;
}
#footer_address h2{
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 1.6rem;
	font-weight: 700;
}
#footer_address h2::before,
#footer_address h2::after{
	content: '';
	width: 50%;
	height: 2px;
	display: block;
	background: #ccc;
}
#footer_address h2 span{
	display: inline-block;
	white-space: nowrap;
	padding: 0 2rem;
}
#footer_address__tel{
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
#footer_address .btn_link{
	width: 80%;
	margin-top: 2rem;
}
#footer_address .btn_link__txt{
	padding: 1rem;
}
#footer_links{
	text-align: center;
}
#footer_links li a::before{
	content: '▶';
	color: var(--asagi);
	margin-right: .5rem;
}
#footer_links li a:hover{
	color: var(--asagi);
}
#footer_copy{
	text-align: center;
	font-size: 1.2rem;
	padding: 3rem 0 8rem;
	background: var(--asagi);
	color: #fff;
	margin-top: 3rem;
}

#ornament01{
	position: fixed;
	z-index: 9999;
	width: 40%;
	bottom: 6rem;
	right: 0;
}




/* =TOP
-------------------------------------------------------------- */

#main_visual{
	position: relative;
}
#main_visual__txt{
	position: absolute;
	bottom: -2rem;
	left: 5%;
	z-index: 10;
	rotate: -8deg;
	font-size: 8vw;
	line-height: 1;
	font-weight: 700;
}
#main_visual__txt span{
	background: #fff;
	display: inline-block;
	padding: .2rem 1rem;
	margin-top: .8rem;
	position: relative;
	z-index: 5;
	white-space: nowrap;
}
#main_visual__txt span::after{
	content: '';
	background: var(--yellow);
	width: 100%;
	height: .5rem;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#main_visual__txt span.txt_large{
	color: var(--asagi);
	margin-left: 1rem;
}

#front_message__txt p{
	margin-bottom: 2rem;
	line-height: 2;
	font-size: 1.6rem;
	text-align: center;
}
#front_message__txt .btn_link{
	margin-top: 3rem;
}

#member_photo img{
	width: 100%;
}

.join_block{
	margin-bottom: 3rem;
}
.join_block h3{
	margin-bottom: 1rem;
	font-size: 1.8rem;
}
.join_block .btn_link{
	margin-top: 3rem;
}
.donation_block{
	border: var(--asagi) solid 2px;
	border-radius: 2rem;
	background: #fff;
	margin-top: 5rem;
	overflow: hidden;
}
.donation_block__inner{
	padding: 2rem 5%;
}
.donation_block__title{
	text-align: center;
	background: var(--stripe_bg);
	font-size: 1.8rem;
	padding: 1rem;
	color: #fff;
}
.donation_block .btn_link{
	margin-top: 3rem;
}

#front_message h3{
	font-size: 2.6rem;
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
}
#front_message h3 span{
	margin-top: 2rem;
	color: var(--asagi);
}
#front_message__inner{
	background: #fff;
	padding: 3rem 5%;
	margin-top: 2rem;
	border-radius: 2rem;
	border: var(--asagi) solid .2rem;
}
#message_name{
	margin-top: 3rem;
	text-align: right;
}






/* =member
-------------------------------------------------------------- */

.member_list li{
	margin-bottom: 2rem;
}
.member_list__box{
	background: #fff;
	display: flex;
	position: relative;
	border: var(--asagi) solid .5rem;
	border-radius: .5rem;
	overflow: hidden;
}
.member_list__photo{
	flex: 0 0 15rem;
}
.member_list__photo .img_clip::before{
	padding-top: 120%;
}
.member_list__txt{
	flex: 1;
	padding: 1rem;
}
.member_list__name{
	font-weight: 700;
	font-size: 2rem;
	margin: 1rem 0;
	line-height: 1.4;
}
.member_list__name span{
	color: var(--asagi);
	font-size: 70%;
	display: block;
}
.member_list__txt p{
	font-size: 1.2rem;
	line-height: 1.5;
}
.member_list__box .view_more{
	position: absolute;
	bottom: 0;
	right: 0;
	background: var(--asagi);
	color: #fff;
	font-size: 1rem;
	padding: .5rem 4rem .5rem 2rem;
	border-top-left-radius: 1rem;
}
.member_list__box .view_more::after{
	content: '';
	background: url('images/common/arrow_white.svg') no-repeat center center / contain;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 1rem;
}

#member_header{
	padding: 1rem 0 2rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 3rem;
}
#member_main .img_clip::before{
	padding-top: 60%;
}
#member_header__txt{
	display: flex;
	margin: 2rem auto;
}
#member_header__name{
	flex: 1;
}
#member_header__name h1{
	font-size: 2.8rem;
	font-weight: 700;
}
#member_header .section_title__en{
	color: var(--asagi);
	font-weight: 700;
}
#member_sns{
	flex: 0 0 40%;
}
#member_sns .sns_links{
	justify-content: flex-end;
}
#member_sns .sns_links li{
	margin: 0 0 .2rem .3rem;
}
#member_sns .btn_sns{
	width: 3rem;
	height: 3rem;
}
#member_sns .sns_icon{
	width: 1.5rem;
	height: 1.5rem;
}
#member_header__data p{
	margin: 1rem 0;
	line-height: 1.5;
}
#member_header__data a{
	text-decoration: underline;
}
#member_header__data a:hover{
	color: var(--asagi);
	text-decoration: none;
}
.member_block{
	margin-bottom: 4rem;
}
.member_block h2{
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.history_table tr{
	border-bottom: #ccc solid 1px;
}
.history_table th{
	width: 30%;
}
.history_table td a{
	text-decoration: underline;
}
.history_table td a:hover{
	text-decoration: none;
	color: var(--asagi);
}

#member_photo01{
	display: flex;
	justify-content: space-between;
}
#member_photo01 li{
	width: 49%;
}
#member_photo02 .img_clip::before{
	padding-top: 60%;
}



/* =entry base
-------------------------------------------------------------- */

.no_posts{
	background: var(--bg);
	padding: 3rem 0;
	text-align: center;
}
.blog_list{
	margin: 0 -1rem 2rem;
	display: flex;
	flex-wrap: wrap;
}
.blog_list li{
	width: 50%;
	padding: 0 1rem;
	margin-bottom: 3rem;
}
.blog_box{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.posted_title{
	margin: 1rem 0;
	line-height: 1.5;
	font-weight: 700;
}
.blog_box__inner{
	margin-bottom: 1rem;
}
.blog_box .posted_date{
	font-size: 1.2rem;
}
.blog_box .blog_box__author{
	margin-top: auto !important;
}
.blog_box:hover .blog_box__author img{
	scale: none;
}
.author_box{
	display: flex;
	align-items: center;
	border-top: #ccc solid 1px;
	padding-top: 1rem;
	margin-top: 1rem;
}
.author_photo{
	width: 4rem;
	margin-right: 1rem;
	border: var(--asagi) solid 2px;
	border-radius: 50%;
	overflow: hidden;
}
.author_name{
	flex: 1;
	font-size: 1.2rem;
}


.blog_header{
	border: var(--bk) solid 1px;
	margin-bottom: 3rem;
	padding: 2rem;
	border-radius: 1rem;
}
.blog_header h1{
	font-size: 2.2rem;
	line-height: 1.5;
	margin-top: 1rem;
	font-weight: 700;
}
.entry_content{
	padding-bottom: 3rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--asagi) solid .4rem;
	font-weight: 700;
}
.entry_content h3{
	background: var(--asagi);
	padding: 1rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
	font-weight: 700;
}
.entry_content h4{
	color: var(--asagi);
	font-size: 1.6rem;
	margin: 2rem 0;
	font-weight: 700;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content strong{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}
.entry_content a{
	text-decoration: underline;
	color: var(--asagi);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.has-text-align-right{
	text-align: right;
}
.has-text-align-center{
	text-align: center;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}
.entry_content blockquote{
	margin: 2rem 0;
	padding-left: 3rem;
	border-left: var(--bg) solid .5rem;
}
.entry_content img,
.wp-block-image{
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.wp-block-image img{
	border-radius: 2rem;
	overflow: hidden;
}
.wp-block-image figcaption{
	font-size: 1.2rem;
	margin: .5rem 0 0;
	text-align: center;
}
.wp-block-gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 0 !important;
}
.wp-block-gallery .wp-block-image{
	width: 50%;
	padding-right: 1rem;
	margin: .5rem 0;
}
.wp-block-embed{
	margin: 2rem 0;
}

.entry_author{
	position: relative;
	transition: .3s;
	margin-top: 3rem;
}
.entry_author h2{
	position: absolute;
	top: 0;
	left: -1px;
	z-index: 5;
	font-size: 1.2rem;
}
.entry_author .member_list__box{
	box-shadow: none;
	border: var(--bk) solid 1px;
}







/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.4rem;
	padding: 0 .5rem;
}
.page_links span.current{
	color: var(--asagi);
}
.page_links a:hover{
	text-decoration: underline;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}

.nav_single{
	clear: both;
	display: flex;
  justify-content: center;
  margin: 5rem 0;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
}
.nav_single li{
	width: 50%;
}
.nav_single li a{
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1rem;
	height: 100%;
	font-size: 1.2rem;
	line-height: 1.4;
	justify-content: center;
}
.nav_single li a:hover{
	background: var(--bg);
}
.nav_next a{
	text-align: right;
}





/* =Contact
-------------------------------------------------------------- */

.require{
	background: #960014;
	color: #fff;
	font-size: 1.2rem;
	padding: .5rem 1rem;
	border-radius: 50px;
	margin-right: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  font-size: 1.6rem;
  border: #ccc solid 1px;
	min-height: 4rem;
	display: block;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}

.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}
.form_wrap .wpcf7-list-item{
	display: block;
	margin: 0 0 .5rem;
}
.form_wrap table th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
	border: 0;
}
.form_wrap table td{
	display: block;
	padding: 0 0 2rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 2rem;
	border: 0;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 1rem 0 3rem;
}
.policy_check p{
	margin: 1rem 0;
}

.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}

.btn_submit{
	width: 100%;
	display: block;
	padding: 1.5rem;
	text-align: center;
	background: var(--asagi);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	transition: .3s;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 3rem 0;
}




/* =policy
-------------------------------------------------------------- */

.page_block{
	margin-bottom: 5rem;
}
.page_block h2{
	font-size: 2rem;
	margin-bottom: 2rem;
}

#policy01 ol{
  margin-bottom: 2rem;
}
#policy01 li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
	background: var(--bg);
	font-size: 1.6rem;
	font-weight: 700;
	padding: 1rem 1.5rem;
	border-radius: .5rem;
	display: flex;
	align-items: center;
}
#policy01 ol{
  counter-reset: number;
}
#policy01 ol li::before{
  counter-increment: number;
  content: counter(number)'.';
	color: var(--asagi);
	font-size: 150%;
	margin-right: .5rem;
	line-height: 1;
}



#supporter_compare table th,
#supporter_compare table td{
	border: #ccc solid 1px;
	vertical-align: middle;
	text-align: center;
}
#supporter_compare table thead th{
	background: var(--asagi);
	color: #fff;
}
#supporter_compare table tbody th,
#supporter_compare table tbody td{
	height: 7rem;
	line-height: 1.5;
}
#supporter_compare table tbody th{
	background: var(--bg);
}
#supporter_compare table tbody td span{
	font-size: 120%;
}
.support_attentions{
	margin-top: 5rem;
}
.support_attentions h2{
	font-size: 1.6rem;
}
.support_attentions ul li{
	line-height: 1.5;
	margin-bottom: 1rem;
	text-indent: -1em;
	padding-left: 1em;
}
.support_attentions ul li a{
	color: var(--asagi);
	text-decoration: underline;
}
.support_attentions ul li a:hover{
	text-decoration: none;
}





/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.wp-block-gallery.columns-3 .wp-block-image{
		width: 33.33%;
	}
	.wp-block-gallery.columns-4 .wp-block-image{
		width: 25%;
	}
	.wp-block-gallery.columns-5 .wp-block-image{
		width: 20%;
	}
	body::before{
		content: '';
		background: url('images/bg.jpg') no-repeat left bottom / cover;
		width: 50%;
		height: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
		opacity: .4;
		z-index: 1;
	}
	#page{
		display: flex;
		margin: 0 auto;
    max-width: 1600px;
	}
	#site_header{
		flex: 1;
		position: static;
		height: auto;
		width: auto;
		background: none;
		box-shadow: none;
		max-width: 100%;
		padding: 0;
		align-self: stretch;
	}
	#site_header__inner{
		position: sticky;
		top: 2rem;
		left: 0;
		display: block;
		width: auto;
		margin: 0 0 0 auto;
		padding: 2rem;
	}
	#header_nav__btn{
		display: none;
	}
	#header_nav__inner{
		position: static;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		background: none;
		padding: 0;
	}
	#header_logo{
		text-align: center;
		font-size: 2.2rem;
		color: #fff;
		margin: 2rem auto 3rem;
		width: 15rem;
	}
	#site_container{
		padding: 0;
		flex: 0 0 420px;
		width: 420px;
		margin: 0 0 0 auto;
		position: relative;
		z-index: 10;
	}
	#footer_copy{
		padding: 3rem 0;
	}
	#bnr_supportor{
		position: sticky;
		top: 1rem;
		translate: 0;
		margin: 1rem auto;
		left: auto;
	}
	.member_list__txt p{
		font-size: 1.4rem;
	}
	#ornament01{
		bottom: 0;
		width: 15rem;
	}
	#main_visual__txt{
		font-size: 3.2rem;
	}
}




@media screen and (min-width: 1024px){
	#header_nav__inner{
		padding: 2rem 5%;
	}
	#header_logo{
		width: 28rem;
	}
	#site_container{
		margin: 0 auto;
	}
	#pc_side{
		display: block;
		width: 28%;
	}
	.main_navigation li a{
		font-size: 1.6rem;
		padding-left: 2rem;
	}
	.main_navigation li a::after{
		width: 1.5rem;
		height: 1.5rem;
	}
	#main_visual__txt{
		font-size: 3.6rem;
		left: -.5rem;
		bottom: -1rem;
	}
	.member_list__box .view_more{
		font-size: 1.2rem;
	}
	#member_header__name h1{
		font-size: 3rem;
		line-height: 1.4;
	}
	#member_header .section_title__en{
		font-size: 1.6rem;
	}
	#ornament01{
		right: 50%;
		margin-right: -500px;
		width: 25rem;
	}
}

@media screen and (min-width: 1300px){
	#ornament01{
		margin-right: -550px;
		width: 30rem;
	}
}