@charset "UTF-8";

html {
	font-size: 62.5%;
}

body {
	color: #333;
	line-height: 1.5;
	font-family: "游明朝体", "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
	font-size: 1.6rem;
}

body:not(.top) nav {
	margin-bottom: 48px;
}

body.top .content {
	margin-top: 150px;
}

body.top .content .mv {
	margin-bottom: 120px;
}

body.top .content .mv figure {
	margin: 0 auto;
	text-align: center;
}

body.top .content .mv img {
	width: 100%;
	height: auto;
}

body.top .content .mv p {
	display: none;
}

body.top .content .intro p {
	text-align: center;
	line-height: 1.8;
	font-size: 2rem;
}

body.top .content .contact__container {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

body.top section:not(:last-child) {
	margin-bottom: 120px;
}

.sp-hide {
	display: block;
}

.pc-hide {
	display: none;
}

picture,
img {
	vertical-align: top;
	max-width: 100%;
}

figure {
	margin: 0;
}

a {
	color: #211f74;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

a:hover {
	opacity: 0.7;
}

a.form {
	background-color: #211f74;
	color: white;
	display: inline-block;
	margin: 2em auto 0;
	padding: 0.3em;
	width: 350px;
	text-align: center;
	position: relative;
}

a.form.top {
	width: 200px;
	margin-top: 3em;
}

a.form::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: solid 1px white;
	border-right: solid 1px white;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	right: 14px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}

a.form:hover::after {
	right: 10px;
}

header h1 {
	background-color: #211f74;
	color: white;
	text-align: center;
	font-size: 1.6rem;
	padding: 0.3em 0;
}

@media screen and (min-width: 1051px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}

	header.scroll {
		top: -34px;
		-webkit-transition: 0.3s ease-out top;
		transition: 0.3s ease-out top;
	}

	header .space {
		display: inline-block;
		width: 1em;
	}

	header .hamburger-wrap {
		display: none;
	}
}

@media screen and (min-width: 1051px) {
	nav {
		-webkit-transition: 0.3s ease-in-out top;
		transition: 0.3s ease-in-out top;
		position: fixed;
		top: 34px;
		left: 0;
		width: 100%;
		background-color: white;
		z-index: 3;
	}

	nav.scroll {
		top: 0;
	}
}

nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 0 auto;
	width: 100%;
	margin-left: 2em;
	gap: 3%;
}

nav ul li a {
	display: block;
	font-size: 1.6rem;
	padding: 1em 0.3em;
}

@media screen and (min-width:1051px) and (max-width: 1250px) {
	nav ul {
		margin-left: 1%;
	}

	nav ul li a {
		font-size: 14px;
		font-size: 1.3685239492vw;
	}
}

@media screen and (min-width:1051px) and (max-width: 1250px) and (min-width: 1024px) {
	nav ul li a {
		font-size: 14px;
	}
}

@media screen and (min-width: 1051px) {
	nav #g-nav-list {
		border-bottom: solid 1px #211f74;
		padding: 0 2em;
	}

	nav #g-nav-list .g-nav-list__wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		max-width: 1240px;
		margin: 0 auto;
	}

	nav a img.logo {
		max-width: 262px;
		width: 100%;
	}
}

.accordions {
	width: 100%;
	margin: 2em auto 0;
}

.accordion__btn {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding: 20px 44px 20px 0px;
	border: none;
	background-color: white;
	border-bottom: 1px solid #dddddd;
	color: #333;
	font-size: 1.6rem;
	font-family: "游明朝体", "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
	font-weight: bold;
	text-align: left;
	cursor: pointer;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.accordion__btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 17px;
	display: block;
	width: 14px;
	height: 2px;
	background-color: #999999;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.accordion__btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 23px;
	display: block;
	width: 2px;
	height: 14px;
	background-color: #999999;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.accordion__btn--active::after {
	content: none;
}

.accordion__btn .que {
	margin-right: 5px;
}

.accordion__title:nth-of-type(1) .accordion__btn {
	border-top: 1px solid #dddddd;
}

.accordion__body {
	display: none;
	padding: 20px 10px 20px 0;
	margin: 0;
	width: 100%;
	border-bottom: 1px solid #dddddd;
}

.accordion__body>*:last-child {
	margin-bottom: 0;
}

.accordion__body--active {
	display: block;
}

.accordion__text {
	margin-bottom: 20px;
	font-size: 1.6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.accordion__text .ans {
	margin-right: 5px;
}

footer {
	margin-top: 150px;
	background-color: #211f74;
	color: white;
	text-align: center;
	font-size: 1.6rem;
	padding: 0.3em 0;
}

.is_flow {
	position: fixed;
	right: 30px;
	bottom: 30px;
}

.is_flow a {
	background-color: lightgray;
	color: white;
	position: relative;
	opacity: 0.6;
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
}

.is_flow a::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: solid 2px white;
	border-right: solid 2px white;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 43%;
}

.is_flow a:hover {
	opacity: 1;
}

.content {
	max-width: 1100px;
	width: 96%;
	margin: 200px auto 0;
}

.content h2 {
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	color: #211f74;
	margin-bottom: 1em;
}

.content h3 {
	background-color: #211f74;
	color: white;
	line-height: 1;
	padding: 0.6em 1em;
	font-size: 1.8rem;
}

.content .price {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.content .price h2 {
	width: 100%;
}

.content .price__wrap {
	width: 48%;
}

.content .price__wrap:nth-of-type(1) {
	margin-right: 3%;
}

.content .price__wrap h3 {
	margin-bottom: 1.3em;
}

.content .price__wrap dl div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	border-bottom: 1px solid #ccc;
	padding-bottom: 8px;
}

.content .price__wrap dl div:not(:last-child) {
	margin-bottom: 1.5em;
}

.content .price__wrap dl dd {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.content .map__list {
	margin: 1em auto 0;
	width: 100%;
}

.content .map__list div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.content .map__list div:nth-of-type(1) {
	margin-bottom: 1.5em;
}

.content .map__list div dt {
	font-weight: bold;
}

.contact-area {
	max-width: 800px;
	width: 95%;
}

.contact-area .contact-form {
	position: relative;
}

.contact-area .contact-form::before {
	content: "";
	float: left;
	padding-top: 137.5%;
}

.contact-area .contact-form::after {
	content: "";
	display: block;
	clear: both;
}

.contact-area .contact-form> :first-child {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.form-area {
	margin: 0 auto;
}

.form-area__cont {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.form-area__cont:not(:last-child) {
	margin-bottom: 1.5em;
}

.form-area__cont span {
	font-weight: bold;
	width: 33%;
}

.form-area__cont.hissu span {
	position: relative;
}

.form-area__cont.hissu span::after {
	content: "必須";
	margin-left: 1em;
	background-color: #dd1111;
	color: white;
	font-size: 1.2rem;
	padding: 0.4em;
	line-height: 1;
	font-weight: normal;
}

.form-area__cont input[type=text],
.form-area__cont select,
.form-area__cont textarea {
	width: 60%;
	font-size: 1.4rem;
	height: 30px;
	border: solid 1px #ddd;
	padding: 0.5em;
	background-color: #efefef;
	border-radius: 4px;
}

.form-area__cont textarea {
	height: 180px;
}

.form-area__cont input[type=submit] {
	background-color: #211f74;
	color: white;
	border: solid 1px #ddd;
	font-size: 1.8rem;
	width: 100px;
	padding: 0.5em;
	margin: 3em auto 0;
}

.menuwrap>h2 {
	margin-bottom: 72px;
}

.menuwrap__cont {
	font-size: 1.6rem;
	margin-bottom: 60px;
}

.menuwrap__cont h3 {
	margin-bottom: 24px;
	line-height: 1.3;
}

.menuwrap__cont .pricelist {
	padding: 12px 24px 36px;
}

.menuwrap__cont .pricelist li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.6rem;
}

.menuwrap__cont .pricelist li .circle {
	position: relative;
	text-indent: -1em;
	padding-left: 1em;
}

.menuwrap__cont .pricelist li .circle:before {
	content: "";
	position: relative;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 6px;
	height: 6px;
	border: 6px solid rgba(255, 255, 255, 0);
	border-left: 6px solid #211f74;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	top: 2px;
	margin-right: 0.3em;
}

.menuwrap__cont .pricelist li a {
	position: relative;
	color: #333;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	width: 100%;
}

.menuwrap__cont .pricelist li a .list-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

@media screen and (max-width: 750px) {
	.menuwrap__cont .pricelist li a .list-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.menuwrap__cont .pricelist li a .list-inner .set-price {
	margin-left: 4%;
}

@media screen and (max-width: 750px) {
	.menuwrap__cont .pricelist li a .list-inner .set-price {
		margin-left: 0;
	}
}

.menuwrap__cont .pricelist li a:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #211f74 transparent transparent transparent;
	border-width: 6px 6px 0 6px;
	margin-top: 9px;
	margin-right: 4px;
}

.menuwrap__cont .pricelist li:not(:last-child) {
	margin-bottom: 0.5em;
}

.menuwrap__inner {
	border: solid 1px #ccc;
	padding: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.menuwrap__inner figure {
	margin-right: 3%;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 350px;
}

.menuwrap__inner--dtl {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.menuwrap.voice {
	max-width: 950px;
}

.menuwrap.voice .menuwrap__inner {
	display: block;
}

.menuwrap.voice .menuwrap__inner p:not(:last-child) {
	margin-bottom: 1em;
}

.menuwrap.about .about__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

.menuwrap.about .about__wrap .about__wrap--left {
	margin-right: 60px;
}

.menuwrap.about .about__wrap .about__wrap--left figure {
	margin-bottom: 60px;
}

.menuwrap.about .about__wrap .about__wrap--left figure img {
	width: 256px;
	-webkit-box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 7px 7px 15px 0px #211f74;
	box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 7px 7px 15px 0px #211f74;
}

.menuwrap.about .about__wrap .about__wrap--list {
	margin-bottom: 30px;
}

.menuwrap.about .about__wrap .about__wrap--list li:nth-child(1) {
	text-align: center;
	margin-bottom: 0.5em;
}

.menuwrap.about .about__wrap .about__wrap--list li strong {
	text-align: center;
}

.menuwrap.about .about__wrap p {
	text-align: left;
	font-size: 1.6rem;
}

.menuwrap.about .about__wrap p:not(:last-child) {
	margin-bottom: 1.2em;
}

.menuwrap.concept .concept__wrap p {
	text-align: center;
	font-size: 1.6rem;
}

.menuwrap.concept .concept__wrap p:not(:last-child) {
	margin-bottom: 1.2em;
}

.inner-list {
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

@media screen and (max-width: 1050px) {
	html {
		font-size: 62.5%;
	}

	body {
		color: #333;
		line-height: 1.5;
		font-size: 1.4rem;
	}

	body:not(.top) header {
		margin-bottom: 0;
	}

	body.fixed {
		width: 100%;
		height: 100%;
		position: fixed;
	}

	body.fixed header {
		top: -50px;
	}

	body.top .content {
		margin-top: 100px;
	}

	body.top .content .mv {
		margin-bottom: 60px;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
	}

	body.top .content .mv img {
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center;
		object-position: center;
		height: 100%;
	}

	body.top .content .mv p {
		display: block;
		text-align: center;
		line-height: 1.8;
		font-size: 1.6rem;
		margin-top: 1em;
		margin-bottom: 0;
	}

	body.top .content .intro p {
		text-align: left;
		line-height: 1.8;
		font-size: 1.8rem;
	}

	body.top section:not(:last-child) {
		margin-bottom: 60px;
	}

	.sp-hide {
		display: none;
	}

	.pc-hide {
		display: block;
	}

	a:hover {
		opacity: 1;
	}

	a.form {
		margin: 2em auto 0;
		padding: 0.3em 0.3em;
		width: 100%;
	}

	/* ナビゲーション */
}

@media screen and (max-width: 1050px) and (max-width: 359px) {
	a.form {
		font-size: 4vw;
	}
}

@media screen and (max-width: 1050px) {
	a.form::after {
		content: "";
		position: absolute;
		width: 8px;
		height: 8px;
		border-top: solid 1px white;
		border-right: solid 1px white;
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
		right: 14px;
		-webkit-transition: 0.3s all;
		transition: 0.3s all;
	}

	a.form:hover::after {
		right: 10px;
	}

	header {
		-webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
		filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
		position: fixed;
		z-index: 2;
		width: 100%;
		top: 0;
		left: 0;
		background-color: white;
		-webkit-transition: 0.3s ease-out top;
		transition: 0.3s ease-out top;
	}

	header h1 {
		font-size: 1.3rem;
		padding: 0.3em 0;
	}
}

@media screen and (max-width: 1050px) and (max-width: 359px) {
	header h1 {
		font-size: 3.4666666667vw;
	}
}

@media screen and (max-width: 1050px) {
	header.scroll {
		top: -50px;
	}

	footer {
		margin-top: 80px;
		padding: 0.8em 0;
		font-size: 1.4rem;
	}

	.is_flow {
		right: 22px;
		bottom: 45px;
	}

	.content {
		max-width: 100%;
		width: 92%;
		margin: 154px auto 0;
	}

	.content h2 {
		font-size: 2rem;
	}

	.content h3 {
		padding: 0.6em 1em;
		font-size: 1.6rem;
	}

	.content .price__wrap {
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.content .price__wrap:nth-of-type(1) {
		margin-right: 0;
		margin-bottom: 2em;
	}

	.content .price__wrap h3 {
		margin-bottom: 1.3em;
	}

	.content .price__wrap dl dd {
		font-size: 1.4rem;
	}

	.content .price__wrap dl dd {
		-webkit-flex-shrink: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}

	.hamburger-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 10px;
	}

	.hamburger-wrap a img {
		max-width: 262px;
		width: 100%;
	}
}

@media screen and (max-width: 1050px) and (max-width: 359px) {
	.hamburger-wrap a img {
		width: 69.8666666667vw;
	}
}

@media screen and (max-width: 1050px) {
	.hamburger-menu {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		width: 15px;
		height: 12px;
		cursor: pointer;
		z-index: 10;
		position: relative;
		top: -4px;
		right: 10px;
	}

	.hamburger-menu__line {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #211f74;
		position: relative;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}

	.hamburger-menu__line::before,
	.hamburger-menu__line::after {
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		background-color: #211f74;
		position: absolute;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}

	.hamburger-menu__line::before {
		top: -6px;
	}

	.hamburger-menu__line::after {
		top: 6px;
	}

	.hamburger-menu__txt {
		position: absolute;
		-webkit-transition: 0.4s all;
		transition: 0.4s all;
		width: 100%;
	}

	.hamburger-menu__txt::after {
		content: "MENU";
		position: absolute;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		font-size: 10px;
		font-weight: bold;
		color: #211f74;
		top: 9px;
	}

	.hamburger-menu.open .hamburger-menu__line {
		background-color: transparent;
	}

	.hamburger-menu.open .hamburger-menu__line::before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: auto;
	}

	.hamburger-menu.open .hamburger-menu__line::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: auto;
	}

	.hamburger-menu.open .hamburger-menu__txt::after {
		content: "CLOSE";
	}

	.nav-sp {
		display: block;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: -117.3333333333vw;
		width: 100vw;
		height: 100vh;
		z-index: 1;
		padding: 0 10px;
		background-color: #211f74;
		text-align: left;
		-webkit-transition: right 0.5s;
		transition: right 0.5s;
	}

	.nav-sp.open {
		right: 0;
	}

	.nav-sp ul {
		background-color: white;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		border-bottom: 0;
		margin-top: 72px;
		width: 98%;
		padding: 3em;
		height: 70%;
		max-height: 420px;
		border-radius: 8px;
		margin-left: auto;
	}

	.nav-sp ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 1em;
		padding: 0;
	}

	.nav-sp a:not(.sp-hide) {
		display: inline-block;
		padding: 5px 0;
	}

	.accordion__btn {
		position: relative;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		padding: 16px 36px 16px 0px;
		font-size: 1.4rem;
	}

	.accordion__btn::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 18px;
		display: block;
		width: 12px;
		height: 2px;
		background-color: #999999;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.accordion__btn::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 23px;
		display: block;
		width: 2px;
		height: 12px;
		background-color: #999999;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.accordion__btn--active::after {
		content: none;
	}

	.accordion__title:nth-of-type(1) .accordion__btn {
		border-top: 1px solid #dddddd;
	}

	.accordion__body>*:last-child {
		margin-bottom: 0;
	}

	.accordion__body--active {
		display: block;
	}

	.accordion__text {
		font-size: 1.4rem;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.contact-area {
		max-width: 800px;
		width: 95%;
	}

	.form-area {
		margin: 0 auto;
	}

	.form-area__cont {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.form-area__cont:not(:last-child) {
		margin-bottom: 2.3em;
	}

	.form-area__cont span {
		width: 100%;
		margin-bottom: 0.5em;
	}

	.form-area__cont input[type=text],
	.form-area__cont select,
	.form-area__cont textarea {
		height: 36px;
		width: 100%;
	}

	.form-area__cont textarea {
		height: 180px;
	}

	.form-area__cont input[type=submit] {
		font-size: 1.6rem;
		margin: 2em auto 0;
	}

	.menuwrap>h2 {
		margin-bottom: 60px;
	}

	.menuwrap__cont {
		font-size: 1.4rem;
		line-height: 1.6;
		margin-bottom: 45px;
	}

	.menuwrap__cont h3 {
		margin-bottom: 24px;
		padding: 0.5em 0.8em;
		line-height: 1.4;
	}

	.menuwrap__cont h3 small {
		line-height: 1.3;
		display: inline-block;
		margin-top: 0.3em;
		font-size: 1.3rem;
	}

	.menuwrap__cont .pricelist {
		padding: 0 14px;
	}

	.menuwrap__cont .pricelist li {
		font-size: 1.4rem;
		line-height: 1.6;
		text-indent: 0em;
		padding-left: 0em;
	}

	.menuwrap__cont .pricelist li:not(:last-child) {
		margin-bottom: 0.5em;
	}

	.menuwrap__cont .pricelist li span:not(.circle) {
		-webkit-flex-shrink: 1;
		-ms-flex-negative: 1;
		flex-shrink: 1;
	}

	.menuwrap__cont .pricelist li .circle::before {
		top: 4%;
		width: 4px;
		height: 4px;
		border: 4px solid rgba(255, 255, 255, 0);
		border-left: 4px solid #211f74;
	}

	.menuwrap__inner {
		padding: 24px 19px 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.menuwrap__inner figure {
		margin-right: 0;
		margin-bottom: 1em;
		text-align: center;
		width: 100%;
	}

	.menuwrap__inner--dtl {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.menuwrap.about .about__wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.menuwrap.about .about__wrap .about__wrap--left {
		margin-right: 0px;
		margin-bottom: 5em;
	}

	.menuwrap.about .about__wrap .about__wrap--left figure {
		margin-bottom: 3em;
		text-align: center;
	}

	.menuwrap.about .about__wrap .about__wrap--left figure img {
		width: 85%;
		-webkit-box-shadow: 0px 4px 8px -1px rgba(10, 10, 10, 0.1), 3px 3px 8px 0px #211f74;
		box-shadow: 0px 4px 8px -1px rgba(10, 10, 10, 0.1), 3px 3px 8px 0px #211f74;
	}

	.menuwrap.about .about__wrap .about__wrap--right {
		width: 100%;
	}

	.menuwrap.about .about__wrap .about__wrap--list {
		margin-bottom: 3em;
		width: 100%;
		font-size: 1.4rem;
		display: block;
	}

	.menuwrap.about .about__wrap .about__wrap--list.sp-hide {
		display: none;
	}

	.menuwrap.about .about__wrap p {
		text-align: left;
		font-size: 1.4rem;
	}

	.menuwrap.about .about__wrap p br {
		display: none;
	}

	.menuwrap.about .about__wrap p:not(:last-child) {
		margin-bottom: 1.5em;
	}

	.menuwrap.concept .concept__wrap p {
		text-align: left;
		font-size: 1.4rem;
	}

	.menuwrap.concept .concept__wrap p br {
		display: none;
	}

	.menuwrap.concept .concept__wrap p:not(:last-child) {
		margin-bottom: 1.5em;
	}
}
