@charset "utf-8";
/* CSS Document */

/*　基本設定　*/
html{
	font: 62.5%/1.6 "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

body * {
	box-sizing: border-box;
}

body{
	color: #363427;
	background: #f1eceb;
	font-size: 1.4rem;
    line-height: 1.25em;
    letter-spacing: .05em;
	font-optical-sizing: auto;
}

section{
	background: #f1eceb;
	padding: 3.2em 0;
}

/*header
---------------------------------------------------------------------------*/
header {
	width: 100%;
}

.menu_in{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 20;
	width: 100%;
	height: 6.4vh;
	padding: 0 3vw;
	font-weight: 700;
	font-style: normal;
	animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}

@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#logo img{
	display: block;
	width: 100px;
	margin: 0;
	padding: 0;
}

#logo p{
	display: none;
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
#menubar{
	display: none;
}
#menubar > nav > ul{
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#menubar li a{
	padding: 0.2rem 1rem;

}

li.contact{
	margin-top: 3em;
	color: #e7674c;
}

/*footer
---------------------------------------------------------------------------*/
footer{
	background: #446e72;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	padding: 2.4em 3vw;
}

address{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-rogo{
	width: 100%;
}

.footer-rogo img{
	display: block;
	width: 25%;
	height: auto;
	margin-bottom: .5em;
}

.footer-rogo p{
	width: 100%;
	color: #c0c0c0;
}

.address{
	width: 100%;
	margin-top: .5em;
	margin-left: 0;
	border-left: 2px solid #fff;
	padding:  .5em;
}

.map {
	width: 100%;
	height: 0;
	overflow: hidden;
	margin-bottom: 0;
	padding-bottom: 72%;
	position: relative;
}

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

.footer-menu_area{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.footer-menu_1{
	display: none;
}

.footer-menu_1,.footer-menu_2{
	width: 100%;
}

.footer-menu_1 ul,.footer-menu_2 ul{
	display: flex;
	flex-wrap: wrap;
}

.footer-menu_1 li,.footer-menu_2 li{
	box-sizing: border-box;
}

.footer-menu_2 li{
	width: 100%;
	margin-top: .5em;
}

.privacy_mark_area{
	width: 100%;
}

.privacy_mark{
	width: 65px;
	height: 65px;
	margin-top: 1em;
	margin-bottom: .5em;
}

.privacy_mark img{
	width: 100%;
	height: auto;
	background: #fff;
	border-radius: 10px;
	padding: 5px
}

.copyright{
	width: 100%;
	padding: .5em 0;
	color: #fff;
	background: #363427;
	text-align: center;
}


/*中型画面向けデザイン（タブレットなど）
---------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
	/*　基本設定　*/
	body{
		font-size: 1.5rem;
		line-height: 1.25em;
	}
	
	section{
		
	}
	
	.menu_in{
		height: 10vh;
	}
	
	#menubar{
		display: block;
	}
	
	#logo img{
		width: 120px;
	}
	
	#logo p{
		display: block;
	}
	
	li.contact{
		margin-top: 0;
		padding: 1rem;
		background: #e7674c;
		color: #fff;
		border-radius: 100px;
	}
	
	/*　フッター　*/
	
	address{
		width: 50%;
	}
	
	.footer-rogo{
		width: 25%;
	}
	
	.footer-rogo img{
		width: 50%;
		height: auto;
		margin-bottom: 0;
	}
	
	.footer-rogo p{
		text-align: left;
		display: none;
	}
	
	.address{
		width: 50%;
		margin-top: 0;
		margin-left: 5%;
	}
	
	.map {
		padding-bottom: 32%;
	}
	
	.footer-menu_area{
		width: 100%;
	}
	
	.footer-menu_1{
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	
	.footer-menu_1 ul,.footer-menu_2 ul{
		justify-content: center;
	}
	
	.footer-menu_1 li{
		border-right: 2px solid #a9a9a9;
	}
	
	.footer-menu_1 li:last-child,.footer-menu_2 li:last-child{
		border-right: none;
	}
	
	.footer-menu_1 li{
		width: 25%;
		text-align: center;
	}
	
	.footer-menu_2 li{
		width: 50%;
		padding: 0 1em;
	}
	
	.footer-menu_2 li:first-child{
		text-align: right;
	}
	
	.privacy_mark_area{
		width: 50%;
	}
	
	.privacy_mark{
		margin: 0 0 0 auto;
	}
}