@charset "UTF-8";

/* common */
html, body, div, p, h1, h2, h3, ul, ol, li {
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
	color: #555;
	font-family: "GenJyuuGothic", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", Meiryo, "メイリオ", sans-serif;
	line-height: 1.5;
}

h2 {
	font-size: 135%;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
}

p {
	margin-bottom: 0.75em;
}
p:last-child {
	margin-bottom: 0;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: bottom;
}

li {
	list-style: none;
}

.container {
	width: calc(100% - 2em);
	max-width: 1200px;
	margin: auto;
	padding: 2em 0;
}

.box2 {
	display: grid;
	align-items: center;
}

a.linebtn {
	position: relative;
	display: block;
	width: 17.5em;
	margin: 0 auto;
	color: #fff;
	text-decoration: none;
	line-height: 4;
	border-radius: 0.75em;
	text-align: center;
	margin-bottom: 0.5em;
	background: #06c755;
}

a.linebtn:before {
	content: "\f3c0";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0.5em;
	width: 1em;
	height: 1em;
	margin: auto;
	font-size: 2.5em;
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
	color: #fff;
	line-height: 1;
}

a.linebtn:after {
	content: "\f054";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 0.5em;
	width: 1em;
	height: 1em;
	margin: auto;
	font-size: 1.5em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

/* layout */

header img {
	width: 100%;
}

main {
	background: url(./img/bg.jpg) repeat-y top center;
	background-size: 100% auto;
}

.about {
	background: #109ea2;
	color: #fff;
}

.description h2 {
	color: #2e5f5c;
}

.description .box2:first-of-type {
	margin-bottom: 4em;
}

.menu h2 {
	margin-bottom: 2rem;
	color: #2e5f5c;
}

.menu ul {
	display: grid;
	gap: 1em;
	text-align: center;
}

.qa {
	background: #109ea2;
	color: #fff;
	text-align: center;
}

.qa li {
	max-width: 600px;
	margin: 0 auto 1em auto;
	padding: 1em 0;
	border: 2px solid #fff;
	border-radius: 0.5em;
	font-size: 95%;
}

.contact {
	text-align: center;
}

.contact .box2 {
	gap: 2em;
}

.contact a.linebtn {
	margin-top: 2em;
}

footer {
	width: 100%;
	background: #109ea2;
	color: #fff;
	text-align: center;
}

@media all and (min-width: 750px){
/* pc */
.box2 {
	grid-template-columns: 0.9fr 1fr;
	gap: 5%;
}
.about {
	text-align: center;
}
.description p {
	line-height: 2;
}
.description .box2:nth-of-type(2) {
	grid-template-columns: 1fr 0.9fr;
}
.description .box2:nth-of-type(2) p:first-child {
	grid-row: 1;
    grid-column: 2;
}
.menu ul {
	grid-template-columns: 1fr 1fr 1fr;
}
.qa .box2 {
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	align-items: start;
}
/* pc end */
}

@media all and (max-width: 749px){
/* sp */
.box2 {
	grid-template-columns: 1fr;
}
.menu ul {
	grid-template-columns: 1fr;
}
/* sp end */
}