@charset "UTF-8";
/* CSS Document for Salon */

body {
	margin: 0;
	text-align: center;
	animation: fadein 2s forwards;}
	@keyframes fadein {0% {opacity: 0}100% {opacity: 1}}

#wrapper {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
}

header {
	box-sizing: border-box;
	border-bottom: solid thin red;
	position: fixed;
	background-color: #fff;
	z-index: 1000;
}
nav {font-family: 'M PLUS Rounded 1c', sans-serif;}
nav a {
	text-decoration: none;
	color: #000;
}

article div {
	text-align: justify;
}

h2 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}


/** logo **/

header h1 {margin-bottom: 0.5rem;}

h1 img {
	width: 200px;
	height: auto;
}

/** main **/

main {
	margin: 0 1rem;
	padding-top: 110px;
}

/** contents **/

.contents {margin: 0 3rem;}
.ixt {
	display: flex;
}
.ixt img {
	border: solid thin #c0c0c0;
	border-radius: 6px;
	padding: 0.5rem;
}
.price {
	width: 100%;
	text-align: center;
	margin: 2rem 0;
}
.price th {
	text-align: center;
	border-bottom: dotted thin #c0c0c0;
}
.price td {
	border-bottom: dotted thin #c0c0c0;
	padding: 0.5rem 0;
}

.aboutUs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 2rem;
}
.aboutUs img {
	border-radius: 50%;
	width: 200px;
	height: 200px;
	flex-shrink: 0;
}
.aboutUs div {
	text-align: center!important;
}

.Cross {
	background-color: rgba(245,245,245,0.4)
}

.signature {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
.square {text-align: center;}
.square img:nth-child(1) {position: relative;}
.square img:nth-child(2) {position: absolute;}

.line {text-align: center;}
.line img {padding-right: 10%;}

/** point **/

.point {
	display: flex;
	margin: 0 1rem;
}
.bubble {
	position: relative;
	display: inline-block;
	margin: 1.5em 15px 1.5em 0;
	padding: 0 5px;
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	background: #f8b62d;
	border-radius: 50%;
	box-sizing: border-box;
	flex-shrink: 0;
}

.bubble:before {
	content: "";
	position: absolute;
	bottom: -8px;
	right: -8px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #f8b62d;
	z-index: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.tweet {
	border: 8px dotted #f8b62d;
	border-radius: 1rem;
	padding: 1rem;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 1.6rem;
}
.disclaimer {font-size: 0.8rem;}

/** border **/

hr {
	background-color: red;
	border: none;
	height: 1px;
	width: 100%;
}

/** arrow circle **/

.arrow {
	text-align: center;
}
.arrow a {
	color: #e7a95f;
	font-size: 2rem;
	height: 2rem;
}

/** footer **/

footer {
	border-top: solid thin red;
	box-sizing: border-box;
	padding-top: 1rem;
	min-height: 60px;
}

/** hamburger **/

.hamburger {
	position: absolute;
	top: 1rem;
	right: 1rem;
}
.drawer-hidden {
	display: none;
}
.drawer-open {
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;
	cursor: pointer;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #e7a95f;
	transition: 0.5s;
	position: absolute;
}
.drawer-open span:before {
	bottom: 8px;
}
.drawer-open span:after {
	top: 8px;
}
#drawer-check:checked ~ .drawer-open span {
	background: rgba(255, 255, 255, 0);
}
#drawer-check:checked ~ .drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
}

	/* メニューのデザイン*/

.drawer-content {
	width: 100%;
	height: 100%;
	position: fixed;
	padding-top: 40%;
	top: 0;
	left: 100%;
	z-index: 99;
	background-color: rgba(255,255,255,0.5);
	transition: .5s;
}

	@media screen and (min-width: 768px){
		.drawer-content {padding-top: 14%;}
	}
	
.drawer-list {
	margin: 0;
	padding: 0;
	height: 56%;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

.drawer-item {
	width: 50%;
	height: 50%;
	list-style: none;
	box-sizing: border-box;
	display: table;
}
	@media screen and (min-width: 600px){
		.drawer-item {height: 67%;}
	}
.drawer-item a {
	display: block;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
	font-size: 22px;
	text-shadow: #777 2px 2px;
	color: #fff;
}
.drawer-item:nth-of-type(1){
	background-color: rgba(255,163,163,0.7)
}
.drawer-item:nth-of-type(2){
	background-color: rgba(138,218,249,0.7)
}
.drawer-item:nth-of-type(3){
	background-color: rgba(6,108,170,0.7)
}
.drawer-item:nth-of-type(4){
	background-color: rgba(255,255,0,0.7)
}

#drawer-check:checked ~ .drawer-content {
	left: 0;
}

/** calendar **/

#calendar {
	width: 80%;
	margin: 0 auto;
}
.fc-daygrid-day:has(.my-events){background-color: #efefef;}
.fc-daygrid-day:has(.ja-holidays){background-color: #efefef;}
.fc-toolbar-chunk {text-align: end;}

/** media screen **/

@media screen and (min-width:1025px){
	.sp {display: none;}
	header {
		width: 1024px;
		min-height: 110px;
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	header img {padding-left: 2rem;}
	/** nav **/
	header ul {
		display: flex;
		justify-content: space-around;
		padding: 0;
		margin: 0;}
	header li {
		list-style: none;
		padding: 0 2rem;
	}
	.hamburger {display: none;}
	.aboutUs div {min-width: 450px;}
	.ixt img {
		width: 300px;
		margin-right: 2rem;
	}
}

@media screen and (max-width:1024px){
	.pc {display: none;}
	#wrapper {width: 100%;}
	header {width: 100%;}
	.ixt {flex-wrap: wrap;}
	.ixt img {width: 100%;}
}

@media screen and (max-width:640px){
	.point {flex-wrap: wrap;}
	.bubble {margin: 0;}
	.tweet {margin-top: 0.5rem;}
	.contents {margin: 0 1rem;}
	h1 img {padding-right: 2rem;}
	#calendar {width: 90%;}
	.disclaimer ul {padding-inline-start: 1.5rem;}
	.ixt img {width: 95%;}
}
