@charset "UTF-8";

/* CSS Document */
/*共通*/
section {
	width: 100%;
	padding: 3.0em 0;
}

.container {
	position: relative;
	margin-top: 105px;
	padding-bottom: 105px;
}

.inner {
	width: 90%;
	max-width: 1260px;
	margin: 0 auto;
}

h2 {
	font-size: 5rem;
	font-weight: bold;
	text-align: center;
	margin: 0 auto 0.5em auto;
}

h3 {
	font-size: 3rem;
	font-weight: bold;
	margin: 0.5em auto;
}

h3.f22 {
	font-size: 2.2rem;
}

h4 {
	font-size: 1.4em;
	font-weight: bold;
}

@media (max-width: 768px) {
	section {
		padding: 2.0em 0;
	}

	.container {
		position: relative;
		margin-top: 67px;
		padding-bottom: 0;
	}

	h2 {
		font-size: 2.2rem;
		margin-bottom: 1em;
	}

	h3 {
		font-size: 2rem;
		margin-bottom: 1em;
	}

	.container p {
		margin-bottom: 1em;
		text-align: left;
	}
}

/*-----------------ヒーローヘッダー------------------*/
.hero-area {
	width: 100%;
	margin: 0 auto;
}

.hero-area img {
	width: 100%;
	object-fit: cover;
}

/*-----------------About------------------*/
/*北見について*/
#about {
	padding-top: 105px;
	margin-top: -105px;
}

.about-wrap {
	background-color: #d8cbb5;
}

.about-inner {
	margin-bottom: 2.0em;

}

.about-cont {
	width: 48%;
	text-align: justify;
}

.about-txt-cont figure {
	text-align: center;
}

.about-txt-cont img {
	width: 60%;
	max-width: 290px;
}

.about-img-cont img {
	width: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.about-txt-wrapper {
		flex-wrap: wrap !important;
	}

	.about-cont {
		width: 100%;
	}

	#about {
		padding-top: 67px;
		margin-top: -67px;
		text-align: left;
	}
}

/*電子ギフトについて*/
.e-gift-wrap {
	background-color: #fff;
	border-radius: 10px;
	padding: 50px;
}

.e-gift-cont {
	width: 48%;
	text-align: justify;
}

.e-gift-cont img {
	margin: 1.0em auto;
}

.about-btn div {
	width: 48%;
	height: 120px;
	font-size: 2.2rem;
}

.about-btn .wp-block-button__link {
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.about-btn a {
	position: relative;
	border: solid 1px #fff;
	font-size: 2.2rem;
}

.about-btn .btn-green a {
	background-color: #00995b;
}

.about-btn .btn-blue a {
	background-color: #009bd9;
}

.about-btn a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 5em;
	width: 22px;
	height: 22px;
	background: #fff;
	border-radius: 50%;
	transform: translate(50%, -50%);
	z-index: 1;
}

.about-btn a::after {
	content: '';
	position: absolute;
	top: 49%;
	right: 5em;
	width: 8px;
	height: 8px;
	transform: translate(50%, -50%) rotate(45deg);
	/* 下向きのくの字 */
	z-index: 2;
}

.about-btn .btn-green a::after {
	border-bottom: 2px solid #00995b;
	border-right: 2px solid #00995b;
}

.about-btn .btn-blue a::after {
	border-bottom: 2px solid #009bd9;
	border-right: 2px solid #009bd9;
}

.icon {
	margin-bottom: 1em;
}


@media (max-width: 1040px) {

	.about-btn a::before,
	.about-btn a::after {
		right: 2em;
	}
}

@media (max-width: 768px) {
	.e-gift-wrap {
		padding: 1em;
	}

	.e-gift-wrapper {
		flex-wrap: wrap !important;
	}

	.e-gift-cont {
		width: 100%;
	}

	.about-btn div {
		width: 100%;
		height: 75px;
	}

	.about-btn a {
		font-size: 1.4rem;
	}
}

/*---------------------使い道-------------------*/
#use {
	padding-top: 105px;
	margin-top: -105px;
}

.use-wrap {
	padding-bottom: 0 !important;
}

.use-exp {
	text-align: center;
	margin-bottom: 2.0em;
}

.use-eg-wrapper {
	display: flex;
	align-items: stretch !important;
}

.use-eg {
	width: 30%;
	border-radius: 10px;
	padding: 30px;
	background-color: #ccebf7;
	text-align: justify;
}

.use-eg img {
	width: 100%;
	max-width: 340px;
	margin: 1.0em auto;
}

.use-eg li {
	list-style-position: inside;
}

@media (max-width: 960px) {
	.use-eg-wrapper {
		flex-wrap: wrap !important;
		gap: 30px;
	}

	.use-eg {
		width: 100%;
		padding: 1em;
	}
}

/*スライドショー*/
.carousel {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	position: relative;
	margin-top: 2.0em;
}

.carousel>div {
	display: flex;
	width: max-content;
	animation: scroll-carousel 30s linear infinite;
}

.carousel>div>figure {
	margin: 0;
	flex-shrink: 0;
}

.carousel>div>figure>img {
	height: 222px;
	width: auto;
	display: block;
	object-fit: cover;
}

@keyframes scroll-carousel {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.carousel>div>figure>img {
		height: 120px;
	}
}

/*---------------------マップ-------------------*/

#map {
	padding-top: 105px;
	margin-top: -105px;
}

.map-wrap {
	background-color: #d8cbb5;
}

.map-exp {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.map {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9のアスペクト比 */
	height: 0;
	margin: 1.0em auto;
}

.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*寄付ボタン白*/
.donate-btn-white>.wp-block-button {
	width: 90%;
	max-width: 320px;
	height: 68px;
}

.donate-btn-white {
	margin-top: 2.0em;
}

.donate-btn-white a {
	position: relative;
	display: inline-block;
	background-color: #fff;
	color: #b38745;
	text-decoration: none;
	padding-right: 3em;
}

.donate-btn-white a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 3em;
	width: 20px;
	height: 20px;
	background: #b38745;
	border-radius: 50%;
	transform: translate(50%, -50%);
	z-index: 1;
}

.donate-btn-white a::after {
	content: '';
	position: absolute;
	top: 48%;
	right: 3em;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	transform: translate(50%, -50%) rotate(45deg);
	/* 下向きのくの字 */
	z-index: 2;
}

@media (max-width: 768px) {
	.map-exp {
		text-align: left;
		text-align: justify;
	}

	.donate-btn-white>.wp-block-button {
		width: 100%;
		height: 68px;
	}
}

/*---------------------重要なお知らせ-------------------*/
.caution-inner {
	background-color: #00995b;
	border-radius: 10px;
	padding: 30px;
	color: #fff;
}

.caution-inner img {
	margin-bottom: 1.0em;
}

.caution-inner p {
	text-align: center;
}

@media (max-width: 768px) {
	.caution-inner {
		padding: 1em;
	}

	.caution-inner p {
		text-align: left;
		text-align: justify;
	}
}

/*---------------------FAQ-------------------*/
#FAQ {
	padding-top: 105px;
	margin-top: -105px;
}

.faq-inner {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}

.faq_quest {
	border-top: solid 1px #d8cbb5;
	font-weight: bolder;
	text-align: justify;
}

.faq_quest-last {
	border-bottom: solid 1px #d8cbb5;
}

.faq_quest summary {
	display: block;
	list-style-type: none;
	width: 100%;
	padding: 1em;
}

.faq_quest summary {
	position: relative;
	display: inline-block;
	background-color: #fff;
	color: #000;
	font-size: 2rem;
	text-decoration: none;
	padding-right: 3em;
}

.faq_quest summary::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	width: 20px;
	height: 20px;
	background: #b38745;
	border-radius: 50%;
	transform: translate(50%, -50%);
	z-index: 1;
}

.faq_quest summary::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	transform: translate(50%, -50%) rotate(45deg);
	transition: transform 0.1s ease;
	z-index: 2;
}

.faq_quest[open] summary::after {
	transition: transform 0.3s ease;
	transform: translate(50%, -50%) rotate(-135deg);
}
summary::-webkit-details-marker {
  display:none;
}

.faq-ans {
	padding: 1em 1em;
	font-size: 1.0em;
}

.faq-ans-cont {
	width: 100%;
	background-color: #f7f5f0;
	border-top: solid 1px #d8cbb5;
}

@media (max-width: 768px) {
	.faq_quest summary {
		font-size: 1.6rem;
	}

	.faq-ans {
		font-size: 1.4rem;
		font-weight: normal;
	}
}

/*---------------------トップページここまで-------------------*/
/*=================2階層以下==================*/
/*共通*/
.header-area {
	width: 100%;
	margin: 0 auto;
}

.header-area img {
	width: 100%;
	object-fit: cover;
}

.breadcrumb-cont {
	width: 90%;
	max-width: 1260px;
	margin: 1.0em auto;
}

.breadcrumb-cont a {
	text-decoration: none;
	color: #000;
	font-size: 0.8em;
}

/*---------------------プライバシーポリシー-------------------*/
#privacy h2 {
	font-size: 2.2em;
	text-align: left;
}

#privacy h3 {
	font-size: 2rem;
}

#privacy h4 {
	font-size: 1.8em;
}

.privacy-inner {
	width: 90%;
	max-width: 1260px;
	margin: 0 auto;
	text-align: justify;
}

.privacy-cont {
	margin: 2.0em auto;
}

.privacy-cont li {
	list-style-position: inside;
}

.privacy-google {
	padding-left: 1.0em;
}

.privacy-google a {
	padding-left: 1.2em;
	text-decoration: none;
	color: #000;
	font-size: 0.8em;
}

@media (max-width: 768px) {
	#privacy h2 {
		font-size: 1.4rem;
	}

	#privacy h3 {
		font-size: 1.4rem;
	}

	#privacy p {
		font-size: 1.2rem;
	}

	#privacy li {
		font-size: 1.2rem;
	}

	.privacy-google {
		padding-left: 0.5em;
		word-break: break-all;
		overflow-wrap: break-word;
	}
}

/*---------------------お問い合わせ-------------------*/
.contact-title {
	width: 100%;
}

.contact-title p {
	text-align: center;
}

.contact-inner {
	width: 90%;
	max-width: 976px;
}

.form-flex {
	display: flex;
	flex-wrap: nowrap;
	margin: 1.0em auto;
}

.form-index {
	width: 20%;
	max-width: 180px;
	text-align: center;
	line-height: 37px;
}

.form-input {
	width: 90%;
	max-width: 672px;
}

.form-input input,
.form-input textarea {
	width: 100%;
	max-width: 100%;
}

.form-input input {
	height: 35px;
}

.form-input-bg input,
.form-input textarea {
	background-color: #ebe5da;
	border-radius: 3px;
	border: solid 1px #8b8b8b;
}

.form-agree {
	text-align: center;
}

.form-submit-btn {
	width: 60%;
	max-width: 485px;
	margin: 1.0em auto;
}

.form-submit-btn input {
	width: 100%;
	height: 60px;
	background-color: #8b8b8b;
	border-radius: 5px;
	border-style: none;
	color: #fff;
	font-size: 2.2rem;
}

.text-gray {
	color: #8b8b8b;
}

@media (max-width: 768px) {
	.form-flex {
		flex-wrap: wrap;
		overflow-x: hidden;
	}

	.form-index {
		width: 100%;
		max-width: 100%;
		text-align: left;
		line-height: 1em;
		margin: 0.5em auto;
	}

	.form-input {
		width: 100%;
		max-width: 100%;
	}

	.form-submit-btn {
		width: 100%;
		max-width: 100%;
	}
}

/*=================フッター等==================*/
/*---------------------footer-------------------*/
.footer {
	width: 100%;
	background-color: #b38745;
}

.footer-inner {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 1.0em 0;
}

@media (max-width: 768px) {
	.footer-inner {
		width: 90%;
	}
}

/*メニュー*/
ul.footer-menu-cont {
	padding-left: 0;
	display: flex;
	justify-content: space-between;
	color: #fff;
}

ul.footer-menu-cont li {
	list-style: none;
}

ul.footer-menu-cont li a {
	text-decoration: none;
	color: #fff;
}

span.footer-arrow {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	margin: 4px auto 0;
}

span.footer-arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	z-index: 0;
}

span.footer-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 45%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #B38745;
	border-bottom: 2px solid #B38745;
	transform: translate(-50%, -50%) rotate(225deg);
	z-index: 1;
}

/*寄付ボタン*/
.footer-donate-btn {
	position: relative;
	display: flex;
	width: 90%;
	max-width: 555px;
	height: 120px;
	margin: 2.0em auto;
	background-color: #009BD9;
	color: white;
	font-size: 2.2rem;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: solid 1px #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	cursor: pointer;
	gap: 2.0em;
}

.footer-donate-btn a {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.footer-donate-arrow-icon {
	position: relative;
	width: 20px;
	height: 20px;
}

.footer-donate-arrow-icon::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 30px;
	height: 30px;
	background: white;
	border-radius: 50%;
	z-index: 0;
}

.footer-donate-arrow-icon::after {
	content: '';
	position: absolute;
	top: 40%;
	left: 75%;
	width: 12px;
	height: 12px;
	border-right: 3px solid #009BD9;
	border-bottom: 3px solid #009BD9;
	transform: translate(-50%, -50%) rotate(45deg);
	z-index: 1;
}

@media (max-width: 768px) {
	.footer-donate-btn {
		font-size: 1.4rem;
		height: 75px;
	}

	.footer-donate-btn a {
		font-size: 1.4rem;
	}
}

/*ロゴとか*/
.footer-logo {
	width: 90%;
	max-width: 400px;
	margin: 0 auto;
}

.copyright {
	text-align: center;
	color: #fff;
	margin: 1.0em auto;
}

/*404*/
.error404 {height: auto;}
.error404 .contents{max-height: 100vh; max-width: 90%; margin: 100px auto;}