@charset "UTF-8";


header {
	text-align: center;
	padding: 1em;
}


#mainContent{
	
}

body {
	width: 100%;
}

main {
}

a.img {
	max-width: 100%;
}

.innerFrame{
	display:block;
	margin:0 auto;
	padding:0 30px;
	width: min(100%,1300px);
	position:relative;
}



h2{
	display:inline-block;
	overflow:hidden;
	text-align:center;
	font-weight:900;
	line-height:155%;
}


/* cover */
#cover {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1em;
	padding: 0 1em;
}
#cover a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
}
#cover div {
/*
	min-width: 800px;
	*/
	max-width: 1200px;
	position: relative;
}
#cover div .msg {
	font-size: 1.27rem;
	position: absolute;
	bottom: 24%;
	right: 4%;
}
#cover p {
	writing-mode: vertical-rl;
	text-orientation: upright;
}
#cover p span {
	padding-bottom: 1em;
	border-bottom: 1px solid;
}
#cover p span:last-child {
	border: none;
}


/* menu */
#menu {
  background-image: linear-gradient(90deg, rgba(175, 206, 250, 1), rgba(189, 237, 173, 1));
	margin-top: 10em;
	position: relative;
}
#menu .innerFrame{
	position: relative;
	top: -5em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5em;
}


/* message */
#message {
	background-image: url("../images/bg_dot.svg");
	background-repeat: repeat;
	background-size: 36px;
}
#message .innerFrame {
	overflow: hidden;
	padding: 5em 0 6em;
	text-align: center;
}
#message h2 {
	color: #ED8599;
	border-bottom: 1px solid;
	line-height: 1.2;
	width: min(100%,1014px);
	margin-bottom: 3em;
	padding-bottom: 1em;
}
#message h2 span {
	font-size: 1.47rem;
	font-weight: 300;
}
#message h2 strong {
	font-size: 4.25rem;
	font-weight: 400;
}


/* footer */
footer .innerFrame {
	text-align: center;
}
footer .name {
	font-size: 3.1rem;
	font-weight: 600;
	margin-bottom: .5em;
}
footer .address, footer .tel_mail {
	font-size: 1.0rem;
	line-height: 1.4;
}

/* for Sp --------------------*/
@media screen and (max-width:768px){
	a img {
		width: 80vw;
	}

	#cover {
		flex-direction: column;
	}
	#cover > p {
		writing-mode: horizontal-tb;
	}
	#cover p span {
		border-bottom: none;
		padding-bottom: .3em;
		border-right: 1px solid;
		padding-right: 1em;
		padding-left: .5em;
	}
	#cover div .msg {
		position: relative;
		display: block;
		text-align: center;
	}

	.innerFrame{
		padding:0 6vw;
	}


}


