@charset "UTF-8";

/*

スマホ用 960pxまで
PC用 961px以上
※一般的なスマホ 428px

@media screen and (max-width: 960px){
}
*/

/* スタイル初期化 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Prevent font size inflation */
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
	margin-block-end: 0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
P,
blockquote,
th,
td {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}
fieldset,
img {
	border: 0px;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight:normal;
}
ol,
ul {
	list-style:none;
}
caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight:normal;
}
q:before,
q:after {
	content: '';
}
abbr,
acronym {
	border: 0px;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor;
	text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/*　フォント */
@font-face{
	font-family: "notsansjp";
	font-weight: 400;
	src: url(../font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face{
	font-family: "shipporimincho";
	font-weight: 700;
	src: url(../font/ShipporiMincho-Bold.ttf) format("truetype");
}
@font-face{
	font-family: "shipporimincho";
	font-weight: 500;
	src: url(../font/ShipporiMincho-Medium.ttf) format("truetype");
}

/* ベースデザイン */
body{
	background-color: #fff;
	color: #0c0c0c;
	width: 100%;
	font-family: "notsansjp","メイリオ",sans-serif;
}
.wrapper{
	background-color: #f4f3f1;
	margin: 0 auto;
	max-width: 1280px;
}
@media screen and (max-width: 960px){
	.wrapper{
		min-width: 100vw;
		max-width: 100vw;
	}
}

/* ヘッダ */
header{
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0 20px;
	font-size: 24px;
	font-weight: 400;
}
header .logo-icon,
header .logo-name,
header .topmenu-pc,
header .topmenu-contact,
header .topmenu-sp{
}
header .logo-icon img{
	width: 5vw;
	margin: 0 10px;
}
header .logo-name img{
	width: 20vw;
	margin: 0 10px;
}
header .topmenu-pc{
	display: block;
	margin-left: auto;
}
header .topmenu-pc .upper .upper-about{
	position: relative;
}
header .topmenu-pc ul.lower{
	opacity: 0;
	position: absolute;
	top: 30px;
	left: -26px;
	background-color: #a28679;
	padding: 15px;
	z-index: 10;
	width: 110px;
	transition: opacity 0.5s;
}
header .topmenu-pc ul.lower.active{
	opacity: 1;
}
header .topmenu-pc ul.lower.elase{
	opacity: 0;
	transition: opacity 0.5s 3s;
}
header .topmenu-pc ul.lower li{
	color: #fff;
	border-bottom: 1px solid #fff;
	padding: 0 10px;
	margin: 10px 0;
	text-align: center;
}

header .topmenu-pc ul.upper{
	display: flex;
}
header .topmenu-pc ul.upper > li{
	margin: 0 10px;
	white-space: nowrap;
}
header .topmenu-contact{
	margin: 0 6px;
	width: 9vw;
}
header .topmenu-contact a{
	display: block;
	border: 1px solid #0c0c0c;
	border-radius: 18px;
	padding: 6px 0;
	text-align: center;
}
header .topmenu-contact a .contact-inner-pc{
	display: inline;
	font-size: 12px;
}
header .topmenu-contact a .contact-inner-sp{
	display: none;
}

header .topmenu-sp{
	display: none;
}
@media screen and (max-width: 960px){
	header{
		height: 60px;
		padding: 0;
		justify-content: space-between;
	}
	header .logo-icon img{
		width: 10vw;
	}
	header .logo-name img{
		width: 44vw;
		margin: 0;
	}
	header .topmenu-contact{
		width: 14vw;
	}

	header .topmenu-contact a{
		padding: 5px 0 0 0;
		text-align: center;
		height: 30px;
	}
	header .topmenu-contact a .contact-inner-pc{
		display: none;
	}
	header .topmenu-contact a .contact-inner-sp{
		display: inline;
		width: 20px;
		vertical-align: baseline;
	}

	header .topmenu-pc{
		display: none;
	}
	header .topmenu-sp{
		display: block;
		width: 14vw;
	}
	header .topmenu-sp nav{
		position: absolute;
		transition: all 0.4s;
		opacity: 0;
	}
	header .topmenu-sp nav.active{
		opacity: 1;
	}
	header .topmenu-sp .menu-button{
		position: relative;
		cursor: pointer;
		width: 70px;
		height: 40px;
		top: 0;
		left: calc((100% - 70px) / 2);
	}
	header .topmenu-sp .menu-button span{
		display: inline-block;
		transition: all 0.4s;
		position: absolute;
		left: 18px;
		height: 2px;
		border-radius: 2px;
		background-color: #9f8274;
		width: 45%;
	}
	header .topmenu-sp .menu-button span:nth-of-type(1){
		top: 15px;
	}
	header .topmenu-sp .menu-button span:nth-of-type(2){
		top: 24px;
	}
	header .topmenu-sp .menu-button span:nth-of-type(3){
		top: 34px;
	}
	header .topmenu-sp .menu-button.active span:nth-of-type(1){
		top: 20px;
		transform: rotate(45deg);
	}
	header .topmenu-sp .menu-button.active span:nth-of-type(2){
		opacity: 0;
	}
	header .topmenu-sp .menu-button.active span:nth-of-type(3){
		top: 20px;
		transform: rotate(-45deg);
	}
	header .topmenu-sp .menu-bottom{
		width: 70px;
		text-align: center;
		color: #9f8274;
		position: relative;
		left: calc((100% - 70px) / 2);
	}
}

/* 共通 */
.marker::before{
	content: "";
	display: inline-block;
	background-image: url(../img/icon-marker.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 3em;
	height: 1.5em;
}
h2.marker .small{
	font-size: 50%;
}
.centering{
	text-align: center;
}

/* フッタ */
footer{
	position: relative;
	margin-top: 120px;
}
footer .contact-outer{
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
	width: 840px;
	margin: 0 auto;
	background-color: #fff;
	display: flex;
}
footer .contact-outer .contact-inner{
	width: 450px;
	order: 1;
}
footer .contact-outer .contact-image{
	display: block;
	order: 2;
}
footer .contact-outer .contact-image img{
	width: 100%;
}
footer .contact-outer .contact-inner h2{
	font-size: 16px;
	width: 140px;
	margin: 40px auto 20px auto;
}
footer .contact-outer .contact-inner p{
	font-size: 14px;
	width: 260px;
	margin: 0 auto 20px auto;
}
footer .contact-outer .contact-inner .telephone{
	text-align: center;
	font-family: "shipporimincho";
	font-weight: 500;
	font-size: 21px;
}
footer .contact-outer .contact-inner .bussnesshours{
	text-align: center;
	font-size: 13px;
}
footer .contact-outer .contact-inner .footer-contact{
	margin-top: 20px;
}
footer .contact-outer .contact-inner .footer-contact a{
	display: block;
	width: 220px;
	margin: 0 auto;
}
footer .contact-outer .contact-inner .footer-contact .footer-contact-inner{
	display: block;
	border: 1px solid #0c0c0c;
	border-radius: 18px;
	padding: 8px 30px;
	text-align: center;
}
footer .about-outer{
	background-color: #a58c7f;
	padding-top: 340px;
	padding-bottom: 40px;
	display: flex;
	justify-content: center;
}
footer .about-inner a{
	display: block;
	width: 240px;
	border: 1px solid #fff;
	background-color: #fff;
	border-radius: 26px;
	padding: 16px 30px;
	text-align: center;
	margin: 0 30px;
}
footer .footermenu nav ul{
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
footer .footermenu nav ul li{
	margin: 0 20px;
}
footer .footername{
	margin-top: 40px;
	padding-bottom: 60px;
	text-align: center;
}
footer .footername img{
	display: inline;
	height: 30px;
}
@media screen and (max-width: 960px){
	footer .contact-outer{
		display: block;
		width: 90%;
		background-color: #fff;
		margin: 0 auto;
	}
	footer .contact-outer .contact-inner{
		width: 100%;
		padding-bottom: 40px;
	}
	footer .contact-outer .contact-inner .telephone{
		font-size: 30px;
	}
	footer .contact-outer .contact-inner .bussnesshours{
		font-size: 18px;
	}
	footer .contact-outer .contact-inner .footer-contact .footer-contact-inner{
		padding: 12px 30px;
	}
	footer .about-outer{
		padding-top: calc(50vw + 280px);
		padding-bottom: 40px;
		display: block;
	}
	footer .about-inner{
		margin: 20px 0;
	}
	footer .about-inner a{
		margin: 0 auto;
	}
	footer .footermenu nav ul{
		display: block;
		margin-top: 0;
	}
	footer .footermenu nav ul li{
		border-bottom: 1px solid #ccc;
	}
	footer .footermenu nav ul li a{
		display: inline-block;
		width: 100%;
		height: 100%;
		padding: 10px;
	}
}

#sidemenu{
	position: absolute;
	top: 60px;
	left: 0;
	width: 100vw;
	z-index: 10;
	background-color: #a58c7f;
	background-image: url(../img/bg_sidemenu.png);
	background-repeat: no-repeat;
	background-size: auto;
	overflow: hidden;
	height: 0;
	transition: all 0.5s;
}
#sidemenu .sidemenu-inner{
	background-color: rgba(165,140,127,0.9);
	width: 100%;
	color: #fff;
}
#sidemenu .sidemenu-inner a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 18px;
}
#sidemenu .sidemenu-inner nav .upper{
}
#sidemenu .sidemenu-inner nav .upper > li{
	width: 90%;
	margin: 0 auto;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about {
	position: relative;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about > a::after {
	content: "";
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 18px;
	right: 18px;
	transform: rotate(135deg);
	transition: all 0.5s;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about.active > a::after {
	transform: rotate(-45deg);
}
#sidemenu .sidemenu-inner nav .upper li.upper-about .lower{
	height: 0;
	overflow: hidden;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about.active .lower{
	height: auto;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about.active .lower > li::before{
	content: "";
	display: block;
	background-color: #fff;
	width: 16px;
	height: 2px;
	position: absolute;
	top: 18px;
	left: 0;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about.active .lower > li{
	font-size: 14px;
	position: relative;
}
#sidemenu .sidemenu-inner nav .upper li.upper-about.active .lower > li a{
	padding: 8px 0 8px 24px;
}
#sidemenu .contact{
	padding: 40px 80px;
}
#sidemenu .contact p{
}
#sidemenu .contact .telephone{
	text-align: center;
	font-family: "shipporimincho";
	font-weight: 500;
	font-size: 30px;
	margin-top; 20px;
}
#sidemenu .contact .bussnesshours{
	text-align: center;
	font-size: 18px;
}
#sidemenu .contact .to-contact{
	margin-top: 20px;
}
#sidemenu .contact .to-contact a{
	display: block;
	width: 230px;
	margin: 0 auto;
}
#sidemenu .contact .to-contact .footer-contact-inner{
	display: block;
	border: 1px solid #fff;
	background-color: #fff;
	color: #000;
	border-radius: 18px;
	padding: 8px 30px;
	text-align: center;
}
#sidemenu .name{
	margin-top: 40px;
	padding-bottom: 60px;
	text-align: center;
}
#sidemenu .name img{
	display: inline;
	height: 30px;
}


