@charset "utf-8";
/*
Theme Name: つどいの里
Author: Kotaro Saito
Description:  kaori.のテーマ
version: 1.0.0
*/

/* =========================================== */
/*common*/
/* =========================================== */
/* カラー ~~~~~~~~~~~~~~~ */
:root{
	--text-black:51 51 51;
	--brown:89 70 57;
	--orange:252 130 78;
	--green:0 161 148;
	--yellow-green:190 210 112;
	--pink:252 78 159;
	--blue:78 177 252;
	--white:255 255 255;
	--bg-color:247 240 229;
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* body ~~~~~~~~~~~~~~~ */
html{
	font-size: 16px;
	font-family: "Kiwi Maru", serif;
	font-weight: 400;
	color: rgb(var(--text-black));
	line-height: 1.5;
	letter-spacing: 0.05em;
}

@media screen and (max-width:767px) {
	html{
		font-size: 14px;
		line-height: 1.2;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* header(common) ~~~~~~~~~~~~~~~ */
header{
	position: relative;
}

header .header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	background-color: rgb(var(--bg-color)/ 0.7);
	filter: blur(1.2);
	backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 5px 50px;
}

header .header h1{
	max-width: 300px;
	width: 100%;
}

@media screen and (max-width:1279px) {
	header .header{
		padding: 5px 30px;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* header(PC) ~~~~~~~~~~~~~~~ */
header .header.pc .contact-list{
	display: flex;
	align-items: center;
	gap: 25px;
	max-width: 315px;
	width: 100%;
	margin-left: auto;
	margin-bottom: 5px;
}

header .header.pc .contact-list .list-item:first-of-type a{
	display: flex;
	align-items: center;
	gap: 10px;
}

header .header.pc .contact-list .list-item:first-of-type a:hover{
	filter: brightness(1.2);
}

header .header.pc .contact-list .list-item:first-of-type a div:nth-of-type(1){
	flex-grow: 1;
}

header .header.pc .contact-list .list-item:first-of-type a div:last-of-type{
	width: 20px;
	height: 15px;
	background: none;
	transform: none;
}

header .header.pc .contact-list .list-item.icon{
	width: 35px;
	height: 35px;
}

header .header.pc .nav-list{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	max-width: 950px;
	width: 100%;
}

header .header.pc .nav-list .list-item a{
	padding: 5px 0;
	position: relative;
}

header .header.pc .nav-list .list-item a::before{
	content: "";
	display: block;
	width: 0;
	height: 8px;
	position: absolute;
	bottom: 5px;
	left: 0;
	background-color: rgb(var(--green)/ 0.4);
	transition: width 0.5s ease;
	z-index: -1;
}

header .header.pc .nav-list .list-item a:hover::before{
	width: 100%;
}

@media screen and (max-width:1379px) {
	header .header.pc .nav-list{
		gap: 15px;
	}
}

@media screen and (max-width:1279px) {
	header .header.pc .nav-list .list-item:first-of-type{
		display: none;
	}

	header .header.pc h1{
		width: 22%;
	}
}

@media screen and (max-width:1023px) {
	header .header.pc{
		display: none;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* header(SP) ~~~~~~~~~~~~~~~ */
header .header.sp{
	background-color: rgb(var(--bg-color)/ 0.7);
	display: none;
}

header .header.sp h1{
	max-width: 230px;
	width: 100%;
}

header .header.sp .hamburger-btn{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	gap: 8px;
	position: relative;
	z-index: 30;
}

header .header.sp .hamburger-btn span.btn-text{
	text-transform: uppercase;
	font-family: "Kiwi Maru", serif;
	text-align: center;
	transition: opacity 0.3s ease;
}

header .header.sp .hamburger-btn span.bar{
	display: block;
  width: 40px;
  height: 3px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header .header.sp .hamburger-btn span.bar:first-of-type{
	background-color: rgb(var(--green));
	top: 10px;
}

header .header.sp .hamburger-btn span.bar:nth-of-type(2){
	background-color: rgb(var(--yellow-green));
	top: 24px;
}

header .header.sp .hamburger-btn span.bar:first-of-type,
header .header.sp .hamburger-btn span.bar:nth-of-type(2){
	transform-origin: center;
}

header .header.sp .hamburger-btn.open span.bar:first-of-type{
	transform: rotate(-20deg) translateX(-50%);
}

header .header.sp .hamburger-btn.open span.bar:nth-of-type(2){
	transform: rotate(22deg) translateX(-50%);
}

body.overlay {
  overflow: hidden;
  height: 100vh;
}

header .header.sp .header-nav.sp{
	background-color: rgb(246 255 225);
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	filter: blur(1.2);
	backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
	z-index: 10;
	padding: 30px 50px 20px;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

header .header.sp .header-nav.sp.open{
	visibility: visible;
	opacity: 1;
}

header .header.sp .header-nav .header-inner{
	overflow-y: scroll;
	height: 100%;
}

header .header.sp .header-nav .header-inner::-webkit-scrollbar {
  display: none;
}

header .header.sp .header-nav h1{
	margin: 0 auto 30px;
}

header .header.sp .header-nav .nav-list{
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 25px;
	border-top: 2px dashed rgb(147 195 104);
	margin-bottom: 30px;
}

header .header.sp .header-nav .nav-list .list-item{
	width: calc((100% - 25px)/ 2);
	border-bottom: 2px dashed rgb(147 195 104);
	position: relative;
}

header .header.sp .header-nav .nav-list .list-item:first-of-type{
	text-transform: uppercase;
}

header .header.sp .header-nav .nav-list .list-item a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 24px 0 24px 32px;
}

header .header.sp .header-nav .nav-list .list-item .circle{
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgb(var(--green));
	display: grid;
	place-items: center;
	transition: 0.6s;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	-o-transition: 0.6s;
}

header .header.sp .header-nav .nav-list .list-item div:nth-of-type(2){
	flex-grow: 1;
}

header .header.sp .header-nav .nav-list .list-item .circle::before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: url(./images/about_slide-arrow-right.png) no-repeat center/cover;
}

header .header.sp .header-nav .nav-list .list-item a:hover .circle{
	filter: brightness(1.2);
}
e

header .header.sp .header-nav .nav-list .list-item div:nth-of-type(2){
	flex-grow: 1;
	text-align: left;
}

header .header.sp .header-nav .contact{
	background-color: rgb(212 229 146);
	border-radius: 35px;
}

header .header.sp .header-nav .contact .contact-list{
	display: flex;
	flex-wrap: wrap;
	padding: 20px 25px;
}

header .header.sp .header-nav .contact .contact-list .list-item{
	width: 50%;
	padding: 0 10px;
	text-align: center;
}

header .header.sp .header-nav .contact .contact-list .list-item:first-of-type a{
	font-size: 2rem;
	color: rgb(var(--green));
	font-weight: 500;
	margin-bottom: 10px;
}

header .header.sp .header-nav .contact .contact-list .list-item:last-of-type a.btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 16px 25px;
}

header .header.sp .header-nav .contact .contact-list .list-item:last-of-type a.btn div:first-of-type{
	flex-grow: 1;
}

header .header.sp .header-nav .contact .contact-list .list-item:last-of-type a.btn div:last-of-type{
	width: 15px;
	height: 15px;
	background: none;
	transform: none;
}

header .header.sp .header-nav .contact .contact-list .list-item:last-of-type a.btn:hover{
	filter: brightness(1.2);
}

header .header.sp .header-nav .contact .contact-list .list-item:first-of-type{
	border-right: 2px dashed rgb(147 195 104);
}

header .header.sp .header-nav .contact .contact-list .list-item:last-of-type p:nth-of-type(2),
header .header.sp .header-nav .contact .contact-list .list-item:last-of-type p:first-of-type{
	margin-bottom: 10px;
}

header .header.sp .header-nav .contact .contact-list .list-item .icon{
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-bottom: 10px;
}

header .header.sp .header-nav .contact .contact-list .list-item .title{
	font-size: 1.2rem;
	margin-bottom: 5px;
}

header .header.sp .header-nav .contact .contact-list .list-item .title span.sp{
	font-family: "Montserrat", sans-serif;
}

@media screen and (max-width:1023px) {
	header .header.sp{
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 30px;
	}

	header .header.sp .header-nav.sp{
		padding: 25px 16px 20px;
	}

	header .header.sp .header-nav .nav-list{
		column-gap: 16px;
	}
}

@media screen and (max-width:767px) {
	header .header.sp{
		padding: 5px 15px;
	}

	header .header.sp h1{
		width: 52%;
	}

	header .header.sp .header-nav .nav-list .list-item a{
		padding: 16px 0 16px 16px;
		gap: 13px;
	}

	header .header.sp .header-nav .nav-list .list-item .circle{
		width: 25px;
		height: 25px;
	}

	header .header.sp .header-nav .nav-list .list-item .circle::before{
		width: 8px;
		height: 8px;
	}

	header .header.sp .header-nav .contact .contact-list .list-item{
		width: 100%;
	}

	header .header.sp .header-nav .contact .contact-list .list-item:first-of-type{
		border-right: none;
		border-bottom: 2px dashed rgb(147 195 104);
		padding-bottom: 16px;
	}

	header .header.sp .header-nav .contact .contact-list .list-item:last-of-type{
		padding-top: 16px;
	}

	header .header.sp .header-nav .contact .contact-list .list-item:last-of-type a.btn{
		padding: 20px 32px;
	}

	header .header.sp .header-nav .contact .contact-list .list-item .icon{
		width: 30px;
		height: 30px;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* footer ~~~~~~~~~~~~~~~ */
footer{
	background-color: rgb(236, 232, 210);
	position: relative;
}

footer::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(./images/footer_bg.png) no-repeat center/cover;
	position: absolute;
	top: 0;
	left: 0;
}

footer section.footer-content{
	padding: 50px 0;
}

footer .footer-nav{
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	position: relative;
}

footer .footer-nav .ornament-image{
	max-width: 80px;
	width: 100%;
	position: absolute;
	bottom: -4%;
	left: -5%;
	z-index: -1;
}

footer .footer-nav .logo h1{
	max-width: 300px;
	width: 100%;
	margin-bottom: 20px;
}

footer .footer-nav .logo p.address span{
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.1em;
}

footer .footer-nav .nav-list{
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

footer .footer-nav .nav-list .list-item p.title{
	font-weight: 500;
	margin-bottom: 15px;
}

footer .footer-nav .nav-list .list-item > a:not(:last-of-type){
	margin-bottom: 15px;
}

footer .footer-nav .nav-list .list-item > a{
	display: flex;
	align-items: center;
	gap: 10px;
}

footer .footer-nav .nav-list .list-item:not(:last-of-type) > a::before{
	content: "";
	display: block;
	width: 15px;
	height: 1px;
	background-color: rgb(var(--orange));
}

footer .footer-nav .nav-list .list-item:last-of-type p.title{
	text-transform: uppercase;
}


footer .footer-nav .nav-list .list-item.sns .icon-wrap{
	display: flex;
	gap: 25px;
}

footer .footer-nav .nav-list .list-item.sns .icon-wrap a{
	width: 25px;
	height: 25px;
}

@media screen and (max-width:1279px) {
	footer .footer-nav .nav-list{
		gap: 40px;
	}
}

@media screen and (max-width:1023px) {
	footer .footer-nav .logo h1{
		max-width: 230px;
	}

	footer .footer-nav .nav-list{
		gap: 25px;
	}

	footer .footer-nav .ornament-image{
		width: 9%;
		bottom: 20%;
		left: -3%;
	}
}

@media screen and (max-width:767px) {
	footer section.footer-content{
		padding: 25px 0;
	}

	footer .footer-nav{
		justify-content: center;
		gap: 15px;
	}

	footer .footer-nav .logo h1{
		margin-bottom: 15px;
	}

	footer .footer-nav .nav-list{
		width: 80%;
		justify-content: end;
	}

	footer .footer-nav .nav-list .list-item.menu,
	footer .footer-nav .nav-list .list-item.guidance{
		display: none;
	}

	footer .footer-nav .nav-list .list-item:last-of-type p.title{
		display: none;
	}

	footer .footer-nav .ornament-image{
		display: none;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* footer-contact ~~~~~~~~~~~~~~~ */
section.footer-contact{
	background-color: rgb(var(--bg-color));
	padding-top: 150px;
	padding-bottom: 100px;
	position: relative;
}

section.footer-contact .wave-box{
	width: 100%;
	position: absolute;
	top: -10%;
	left: 0;
	z-index: 5;
}

section.footer-contact .wave-box .sp{
	display: none;
}

section.footer-contact h3,
section.footer-contact p.sub-title{
	text-align: center;
}

section.footer-contact h3{
	margin-bottom: 15px;
}

section.footer-contact p.sub-title{
	margin-bottom: 35px;
}

section.footer-contact .contact-list .ornament-image{
	position: absolute;
}

section.footer-contact .contact-list .ornament-image:first-of-type{
	max-width: 80px;
	width: 100%;
	bottom: -20%;
	left: -5%;
}

section.footer-contact .contact-list .ornament-image:last-of-type{
	max-width: 140px;
	width: 100%;
	top: -15%;
	right: -7%;
}

section.footer-contact .contact-list{
	padding: 25px 30px;
	background-color: rgb(var(--white));
	border-radius: 45px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 35px;
	position: relative;
}

section.footer-contact .contact-list .list-item{
	width: 50%;
	padding: 0 20px;
	text-align: center;
}

section.footer-contact .contact-list .list-item .icon{
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-bottom: 20px;
}

section.footer-contact .contact-list .list-item p.title{
	font-size: 1.4375rem;
}

section.footer-contact .contact-list .list-item:first-of-type{
	border-right: 2px dashed rgb(147 195 104);
}

section.footer-contact .contact-list .list-item:first-of-type p.title{
	margin-bottom: 5px;
}

section.footer-contact .contact-list .list-item:first-of-type p.title + a{
	font-size: 2rem;
	color: rgb(var(--green));
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

section.footer-contact .contact-list .list-item:last-of-type p.title{
	margin-bottom: 10px;
}

section.footer-contact .contact-list .list-item:last-of-type p.title + p{
	margin-bottom: 10px;
}

section.footer-contact .contact-list ~ p{
	text-align: center;
}

@media screen and (max-width:2290px) {
	section.footer-contact .wave-box{
		top: -8%;
	}
}

@media screen and (max-width:1740px) {
	section.footer-contact .wave-box{
		top: -5%;
	}
}

@media screen and (max-width:1439px) {
	section.footer-contact .wave-box{
		top: -2%;
	}

	section.footer-contact{
		padding-top: 130px;
	}

	section.footer-contact .contact-list .ornament-image:last-of-type{
		right: -3%;
	}

	section.footer-contact .contact-list .ornament-image:first-of-type{
		left: -3%;
	}
}

@media screen and (max-width:1023px) {
	section.footer-contact{
		padding-top: 100px;
		padding-bottom: 80px;
	}

	section.footer-contact .contact-list{
		padding: 20px 25px;
	}

	section.footer-contact p.sub-title{
		margin-bottom: 20px;
	}

	section.footer-contact .contact-list .ornament-image:last-of-type{
		width: 15%;
		top: -8%;
	}

	section.footer-contact .contact-list .ornament-image:first-of-type{
		width: 9%;
		bottom: -13%;
	}
}

@media screen and (max-width:767px) {
	section.footer-contact {
		padding-top: 70px;
		padding-bottom: 40px;
	}

	section.footer-contact .wave-box{
		top: 0;
	}

	section.footer-contact .wave-box .sp{
			display: block;
	}

	section.footer-contact .wave-box .pc{
			display: none;
	}

	section.footer-contact .contact-list .list-item{
		width: 100%;
		padding: 0;
	}

	section.footer-contact .contact-list .list-item:first-of-type{
		border-right: none;
		padding-bottom: 15px;
		border-bottom: 2px dashed rgb(147 195 104);
	}

	section.footer-contact .contact-list .list-item:last-of-type{
		padding-top: 20px;
	}

	section.footer-contact .contact-list .list-item .icon{
		margin-bottom: 15px;
	}

	section.footer-contact .contact-list .ornament-image:last-of-type{
		width: 25%;
		top: -3%;
	}

	section.footer-contact .contact-list .ornament-image:first-of-type{
		width: 14%;
		bottom: -1%;
		left: -2%;
	}
}

@media screen and (max-width:550px) {
	section.footer-contact{
		padding-top: 60px;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* online-shop ~~~~~~~~~~~~~~~ */
section.online-shop{
	text-align: center;
	padding: 150px 0;
}

section.online-shop h3{
	margin-bottom: 50px;
	position: relative;
}

section.online-shop h3 .ornament-image{
	max-width: 97px;
	width: 100%;
	position: absolute;
	top: -50%;
	right: 12%;
}

section.online-shop p{
	margin-bottom: 35px;
}

section.online-shop .btn-wrap .ornament-image{
	max-width: 54px;
	width: 100%;
	position: absolute;
	bottom: -50%;
	left: -18%;
}

section.online-shop .btn-wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	width: fit-content;
	margin: 0 auto;
	position: relative;
}

section.online-shop .btn-wrap a:first-of-type{
	padding: 16px 25px;
}

section.online-shop .btn-wrap a:first-of-type div:last-of-type{
	background: none;
}

section.online-shop .btn-wrap a:first-of-type:hover{
	filter: brightness(1.2);
}

section.online-shop .btn-wrap a:hover:first-of-type div:last-of-type{
	transform: none;
}

@media screen and (max-width:1023px) {
	section.online-shop{
		padding: 100px 0;
	}

	section.online-shop h3{
		margin-bottom: 30px;
	}

	section.online-shop h3 .ornament-image{
		width: 11%;
		right: 3%;
	}

	section.online-shop .btn-wrap .ornament-image{
		width: 6%;
		bottom: -30%;
		left: -12%;
	}
}

@media screen and (max-width:767px) {
	section.online-shop{
		padding: 60px 0 30px;
	}

	section.online-shop h3{
		margin-bottom: 20px;
	}

		section.online-shop h3 span:not(.h3-g){
			display: block;
		}

	section.online-shop p{
		text-align: left;
		margin-bottom: 25px;
	}

	section.online-shop h3 .ornament-image{
		width: 14%;
	}

	section.online-shop .btn-wrap .ornament-image{
		display: none;
	}

	section.online-shop .btn-wrap{
		gap: 20px;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */



/* copy-right ~~~~~~~~~~~~~~~ */
footer .copy-right{
	padding: 30px 0 15px 0;
	text-align: center;
}

@media screen and (max-width:1023px) {
	footer .copy-right{
		padding-top: 0;
	}
}

@media screen and (max-width:1023px) {
	footer .copy-right{
		font-size: 11px;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* 要素フェードイン ~~~~~~~~~~~~~~~ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* ~~~~~~~~~~~~~~~~~~~~~ */


/* 404 ~~~~~~~~~~~~~~~ */
div.error-message{
	font-size: 150%;
}

@media screen and (max-width:767px) {
	div.error-message{
		font-size: 120%;
	}
}
/* ~~~~~~~~~~~~~~~~~~~~~ */
