@charset "UTF-8";

/* ====================================================
# mixins
===================================================== */
/* ====================================================
# colors
===================================================== */
.bg-silver {
	background-color: #b3d0bf;
	padding: 4px 0px;
	color: #444;
}

.col-greyish-brownthree {
	color: #444444;
}

.col-dark-sage {
	color: #467158;
}

.col-slate-green {
	color: #599170;
}

.col-desert {
	color: #d79f4b;
}

.col-light-grey {
	color: #f0efe9;
}

.col-cloudy-blue {
	color: #c6d0db;
}

.col-slate-green {
	color: #599170;
}

.col-greyish-brown {
	color: #50413e;
}

.col-sandy-brown {
	color: #bca866;
}

.col-main {
	color: #333;
}

h3 {
	font-weight: 600;
}


/*＝＝＝＝＝＝＝＝＝＝＝
    フェードイン
＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein {
	transform: translate3d(0, -10px, 0);
	transition: 1s;
	opacity: 0;
}

.fadein.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

/* ====================================================
# font
===================================================== */
/* NotoSansCJKjp */
@font-face {
	font-family: "Noto Sans Japanese";
	font-style: normal;
	font-weight: 200;
	src: url("../fonts/NotoSansCJKjp-Light.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Light.woff") format("woff"), url("../fonts/NotoSansCJKjp-Light.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Light.eot") format("embedded-opentype");
}

@font-face {
	font-family: "Noto Sans Japanese";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}

@font-face {
	font-family: "Noto Sans Japanese";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Medium.woff") format("woff"), url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}

@font-face {
	font-family: "Noto Sans Japanese";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}

/* ====================================================
# content width
===================================================== */
/* $wrapper-width: calc(960 / 1366 * 100%);
$content-width: calc(760 / 960 * 100%);
$inner-width: calc(560 / 960 * 100%); */
.wrapper {
	width: 960px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

@media screen and (max-width: 768px) {
	.wrapper {
		width: 95%;
	}
}

.container {
	width: 760px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

@media screen and (max-width: 768px) {
	.container {
		width: 90%;
	}
}

.inner {
	width: 560px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

@media screen and (max-width: 768px) {
	.inner {
		width: 85%;
	}
}

/* ====================================================
# bace(共通)
===================================================== */
body {
	width: 100%;
	color: #333;
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: 400;
	-webkit-font-feature-settings: "palt"1;
	font-feature-settings: "palt"1;
	background-color: #e7e7e7;
	scroll-behavior: smooth;
	font-size: 16px;
	/*IE9以前に対応する*/
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 4vw;
	}
}

a {
	color: #333;
	display: block;
}

@media screen and (min-width: 769px) {
	a:hover {
		opacity: 0.7;
		-webkit-transition: 0.5s ease;
		transition: 0.5s ease;
		/* transform: scale(1.05, 1.05); */
	}
}

a:hover img {
	opacity: 0.7;
	-webkit-transition: 0.5s ease;
	transition: 0.5s ease;
	/* transform: scale(1.05, 1.05); */
}

img {
	width: 100%;
	height: auto;
}

.text-center {
	text-align: center;
}

.is-pc {
	display: block;
}

@media screen and (max-width: 768px) {
	.is-pc {
		display: none;
	}
}

.is-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.is-sp {
		display: block;
	}
}

/* ================================================
 * flex
/* ================================================*/
.flex_start {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex_end {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex_around {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex_all_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	text-align: center;
	margin: 0 auto;
	font-weight: 500;
}

/* ====================================================
# header
===================================================== */
section {
	background-color: #fff;
	padding: 80px 0;
}

@media screen and (max-width: 768px) {
	section {
		padding: 10% 0 20%;
	}
}

.section-title {
	font-size: 24px;
	/*IE9以前に対応する*/
	font-size: 1.5rem;
	line-height: 1.7;
	letter-spacing: 0.18em;
	color: #fff;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
}

@media screen and (max-width: 768px) {
	.section-title {
		font-size: 4.5vw;
	}
}

.border-bottom {
	border-top: dotted 1px #ccc;
	margin: 1em auto 0.8em;
	width: 100%;
}

.under-marker {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ebe5d1));
	background: linear-gradient(transparent 50%, #ebe5d1 50%);
	padding-bottom: 4px;
}

.mb4em {
	margin-bottom: 4em;
}

.mt34em {
	margin-top: 3.4em;
}

.mb3em {
	margin-bottom: 3em;
}

.mb25em {
	margin-bottom: 2.5em;
}

.mb2em {
	margin-bottom: 2em;
}

.mb15em {
	margin-bottom: 1.5em;
}

.mb1em {
	margin-bottom: 1em;
}

.mb05em {
	margin-bottom: 0.5em;
}

.mt2em {
    margin-top: 2em;
}

.fz18 {
	font-size: 18px;
	/*IE9以前に対応する*/
	font-size: 1.125rem;
	line-height: 1.77778;
}

@media screen and (max-width: 768px) {
	.fz18 {
		font-size: 4vw;
	}
}

.fz20 {
	font-size: 20px;
	/*IE9以前に対応する*/
	font-size: 1.25rem;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.fz20 {
		font-size: 4.66667vw;
	}
}

.fz22 {
	font-size: 22px;
	/*IE9以前に対応する*/
	font-size: 1.375rem;
	line-height: 1.45455;
}

@media screen and (max-width: 768px) {
	.fz22 {
		font-size: 5.06667vw;
	}
}

.fwbold {
	font-weight: 500;
}

.fw-bold {
	font-weight: bold;
}

.Yumin {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
}

/* ====================================================
# header
===================================================== */
.header-top {
	background-color: #829db9;
	padding: 1.5em 0 0.6em;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	color: #fff;
	line-height: 1.75;
}

.header-top .header-text {
	font-size: 20px;
	/*IE9以前に対応する*/
	font-size: 1.25rem;
	margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
	.header-top .header-text {
		font-size: 4vw;
	}
}

.header-top .header-lead {
	color: #bca866;
	font-size: 24px;
	/*IE9以前に対応する*/
	font-size: 1.5rem;
	background-color: #fff;
	border-radius: 100vh;
	font-weight: bold;
	width: 430px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.header-top .header-lead {
		font-size: 4.5vw;
		width: 100%;
	}
}

.header-top .header-note {
	font-size: 18px;
	/*IE9以前に対応する*/
	font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
	.header-top .header-note {
		font-size: 3vw;
	}
}

/* ====================================================
# contact
===================================================== */
.contact {
	background-color: #fbf9f2;
}

.contact-box {
	-webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	border: solid 1px #599170;
	background-color: #fff;
	padding-top: 42px;
	padding-bottom: 38px;
}

@media screen and (max-width: 768px) {
	.contact-box {
		padding: 5% 0;
	}
}

.contact-box-wrap {
	width: 490px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width: 768px) {
	.contact-box-wrap {
		width: 90%;
	}
}

.contact-logo {
	width: 35%;
	margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
	.contact-logo {
		width: 50%;
		margin: 0 auto 5%;
	}
}

.contact-catch {
	margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
	.contact-catch {
		margin-bottom: 5%;
	}
}

.contact .section-title {
	color: #599170;
	font-size: 23px;
	/*IE9以前に対応する*/
	font-size: 1.375rem;
	letter-spacing: 0.1em;
}

.contact .section-title .fsZ {
	font-size: 21px;
	/*IE9以前に対応する*/
	font-size: 1.3125rem;
}

@media screen and (max-width: 768px) {
	.contact .section-title .fsZ {
		font-size: 4vw;
	}
}

@media screen and (max-width: 768px) {
	.contact .section-title {
		font-size: 4.66667vw;
	}
}

.contact-title {
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	color: #599170;
	font-size: 19px;
	/*IE9以前に対応する*/
	font-size: 1.1875rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	.contact-title {
		font-size: 4.66667vw;
		margin-bottom: 30px;
	}
}

.contact-subtitle {
	color: #fff;
	background-color: #93bda4;
	border-radius: 100vh;
	line-height: 1.6;
	width: 90%;
	margin: 4px auto 35px;
	letter-spacing: 1px;
}

.contact-subtitle .fzS {
	font-size: 16px;
	/*IE9以前に対応する*/
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.contact-subtitle .fzS {
		font-size: 4vw;
	}
}

@media screen and (max-width: 768px) {
	.contact-subtitle {
		width: 80%;
		margin: 4px auto 5%;
	}
}

.contact-em {
	background-color: #a3c7b2;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.2em;
	padding: 4px 1px;
}

.contact-img {
	margin: 0 auto 16px;
}

@media screen and (max-width: 768px) {
	.contact-img {
		width: 100%;
		margin: 0 auto 5%;
	}
}

.contact-note {
	color: #555555;
	font-size: 14px;
	/*IE9以前に対応する*/
	font-size: 0.875rem;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.contact-note {
		font-size: 3.73333vw;
	}
}

.contact-small {
	font-size: 11px;
	/*IE9以前に対応する*/
	font-size: 0.6875rem;
	color: #999;
	line-height: 1.75;
}

@media screen and (max-width: 768px) {
	.contact-small {
		font-size: 3.33333vw;
		width: 90%;
		margin: 0 auto;
	}
}

.contact .contact-form-box {
	margin-top: 33px;
	margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
	.contact .contact-form-box {
		margin: 5% auto;
	}
}

.contact .contact-form-box form input {
	display: block;
	width: 100%;
	margin: 0 auto;
	font-size: 12px;
	/*IE9以前に対応する*/
	font-size: 0.75rem;
	line-height: 2.33333;
	letter-spacing: 0em;
	border: solid 1px #ccc;
	background-color: #eee !important;
	color: #666;
	padding: 1em;
	text-align: center;
	font-family: "Noto Sans Japanese", sans-serif;
	border-radius: 0;
}

@media screen and (max-width: 768px) {
	.contact .contact-form-box form input {
		font-size: 3vw;
		padding: 1em;
	}
}

.contact .contact-form-box form .form_input_submit {
	margin-top: 0;
	text-align: left;
}

.contact .contact-form-box form .contact-btn {
	font-size: 16px;
	/*IE9以前に対応する*/
	font-size: 1.1rem;
	letter-spacing: 0;
	margin: 18px auto 0;
	position: relative;
	padding: 1.2em 1.8em 1.2em 1.2em;
	background-color: #ccb155;
	color: #fff;
	display: inline-block;
	text-align: center;
	border: none;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 10px;
	left: 50%;
	font-weight: 400;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 60%;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	font-family: "Noto Sans Japanese", sans-serif;
}

@media screen and (max-width: 768px) {
	.contact .contact-form-box form .contact-btn {
		width: 100%;
		font-size: 4.2vw;
	}
}

.contact .contact-form-box form .contact-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 1em;
	font-size: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: right 0.3s;
	transition: right 0.3s;
	width: 10px;
	height: 10px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.contact .contact-form-box form .contact-btn:hover {
	opacity: 0.7;
	cursor: pointer;
}

.btn {
	position: relative;
	margin: 22px auto;
	width: 92%;
	padding: 0.5em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	border-radius: 10px;
	background-color: #bca866;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn::after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2em;
	font-size: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: right 0.3s;
	transition: right 0.3s;
	width: 10px;
	height: 10px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

/* ====================================================
# nayami
===================================================== */
@media screen and (max-width: 768px) {
	.nayami {
		padding-top: 20%;
	}
}

.nayami-box {
	position: relative;
	padding: 4em 0.5em 1.5em;
	border: solid 1px #599170;
}

@media screen and (max-width: 768px) {
	.nayami-box {
		padding: 2em 1em;
	}
}

.nayami-box-title {
	position: absolute;
	display: inline-block;
	width: 400px;
	top: -0.8em;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 0.4em;
	font-size: 24px;
	/*IE9以前に対応する*/
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
	background: #599170;
	border-radius: 20px;
}

@media screen and (max-width: 768px) {
	.nayami-box-title {
		font-size: 4.5vw;
		width: 85%;
	}
}

.nayami-list-box ul li {
	position: relative;
	font-size: 16px;
	/*IE9以前に対応する*/
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0em;
	list-style: none;
	padding-left: 4.8em;
	-webkit-font-feature-settings: "palt"1;
	font-feature-settings: "palt"1;
	background: url(../img/00_list-mark.png) left 42px top 2px no-repeat;
	background-size: 26px auto;
	margin-bottom: -6px;
}

.nayami-about-img.center {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
	.nayami-list-box ul li {
		font-size: 3.5vw;
		padding-left: 2.5em;
		background: url(../img/00_list-mark.png) left 0 top 4px no-repeat;
		background-size: 6vw auto;
	}
}

.nayami-list-box .border-bottom {
	width: 94%;
}

/* ====================================================
# voice
===================================================== */
.voice {
	background-color: #93bda4;
}

.voice .section-title {
	background-image: url(../img/01_voice-title.png);
	background-repeat: no-repeat;
	background-position: right bottom 20px;
	background-size: 24%;
	padding-bottom: 32px;
	font-weight: 600;
}

@media screen and (max-width: 768px) {
	.voice .section-title {
		background-image: url(../img/01_voice-title.png);
		background-repeat: no-repeat;
		background-position: right bottom 15%;
		background-size: 35%;
	}
}

.voice-box {
	-webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	padding: 32px 32px 60px;
	margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
	.voice-box {
		padding: 5% 3% 5%;
		margin-bottom: 10%;
	}

	.voice-box img {
		width: 80%;
	}
}


@media screen and (max-width: 768px) {
	.voice-box:first-of-type {
		padding: 5% 3% 5%;
	}
}

.voice-box:last-child {
	margin-bottom: 0;
}

.voice-item-img {
	width: 216px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.voice-item-img {
		width: 80%;
	}
}

.voice-item-img-caption {
	margin-top: 4px;
}

.voice-item-text {
	padding: 8px;
	line-height: 1.75;
}

.voice-item-note {
	margin-bottom: 1.8em;
}

.voice-item-text .col-dark-sage{
	font-weight: bold;
}

.voice-item-text .col-desert{
	font-weight: bold;
}

.voice-item-note:last-child {
	margin-bottom: 0;
}

.voice-name {
	font-size: 18px;
	/*IE9以前に対応する*/
	font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
	.voice-name {
		/* font-size: 5.33333vw; */
	}
}

.voice .border-bottom {
	width: 97%;
}

/* ====================================================
# nayami-about
===================================================== */
.nayami-about {
	padding-top: 0;
}

.nayami-about .col-blue{
	color: #6184a7;
}

.nayami-about .col-slate-green{
	font-weight: bold;
}

.nayami-about .col-desert{
	font-weight: bold;
}

.nayami-about-add-band {
    margin-bottom: 1.5em;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    background-color: #c7d6cd;
    border-radius: 5px;
    padding: 0.5em 1.25em;
}

.nayami-about-head {
	margin-bottom: 38px;
	padding-top: 40px;
}

.nayami-about .section-title {
	color: #599170;
	background-color: #fbf9f2;
	padding: 2em 0;
}

.nayami-about .bg {
	color: #fff;
	background-color: #a3c7b2;
	display: inline-block;
	padding: 2px 4px;
}

.nayami-about-catch {
	background-color: #f0efe9;
	padding: 30px 0;
	font-size: 24px;
	/*IE9以前に対応する*/
	font-size: 1.5rem;
	line-height: 1.83333;
	letter-spacing: 0.17em;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	position: relative;
}

.nayami-about-emphasis .flex_all_center {
	font-weight: 600;
}

@media screen and (max-width: 768px) {
	.nayami-about-catch {
		font-size: 4vw;
		padding: 3% 0;
		margin-bottom: 10%;
	}
}

/* .nayami-about-catch-text {
	padding: 0 0 0 1.5em;
	font-weight: 600;
} */

/* .nayami-about-catch-box {
	position: relative;
	width: 62%;
} */

@media screen and (max-width: 768px) {
	.nayami-about-catch-box {
		width: 100%;
	}
}

.nayami-about-catch-left {
	position: absolute;
	top: -1em;
	left: 0;
}

@media screen and (max-width: 768px) {
	.nayami-about-catch-left {
		width: 5%;
	}
}

.nayami-about-catch-right {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media screen and (max-width: 768px) {
	.nayami-about-catch-right {
		width: 5%;
	}
}

.nayami-about-catch-en {
	position: absolute;
	top: -31%;
	right: -42%;
	width: 150px;
}

@media screen and (max-width: 768px) {
	.nayami-about-catch-en {
		width: 40%;
		right: 8%;
		top: inherit;
		bottom: -30%;
	}
}

.nayami-about-catch-img {
	position: absolute;
	-webkit-box-shadow: -10px -10px 0px 0 #c6d0db;
	box-shadow: -10px -10px 0px 0 #c6d0db;
	top: 30%;
	right: 10%;
	width: 240px;
}

@media screen and (max-width: 768px) {
	.nayami-about-catch-img {
		width: 50%;
		margin: 0 auto;
		position: static;
		display: none;
	}
}

.nayami-about-text-box {
	margin-top: 70px;
}

.ongaku {
	line-height: 2.5;
	font-weight: bold;
}

.nayami-about-img {
	width: 400px;
	margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
	.nayami-about-img {
		width: 100%;
		margin-bottom: 60px;
	}

	.ongaku {
		font-size: 16px;
	}

	.nayami-about-text-box {
		margin-top: 40px;
	}
}

.nayami-about-intro {
	background-color: #e7e7e7;
	padding: 0.4em;
	margin-top: 2em;
}

.nayami-about .arrow {
	width: 24px;
	margin: 0 auto 8px;
}

.nayami-about-action {
	font-weight: 500;
	font-size: 18px;
	/*IE9以前に対応する*/
	font-size: 1.125rem;
	line-height: 2;
	padding: 0.5em;
	background-color: #bca866;
	color: #fff;
	margin: 0 0 1em 0;
}

.nayami-about-list-box {
	padding: 7px 0;
	margin-bottom: 42px;
}

.nayami-about-list-box ul li {
	padding-left: 1em;
	text-indent: -1em;
}

.nayami-about-list-box ul li .list-mark {
	font-size: 12px;
	color: #ddd;
	margin-right: 4px;
}

.nayami-about-list-box .border-bottom {
	margin: 6px auto;
	border-top: 0px;
}

.nayami-about-text-img {
	width: 55%;
	margin: 72px auto 60px;
}

@media screen and (max-width: 768px) {
	.nayami-about-text-img {
		width: 100%;
	}

	.nayami-about-action {
		font-size: 16px;
	}
}

.nayami-about-emphasis {
	font-size: 20px;
	/*IE9以前に対応する*/
	font-size: 1.25rem;
	line-height: 2.3;
	letter-spacing: 0.18em;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
	.nayami-about-emphasis.flex_between {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.nayami-about-emphasis .nayami-about-img {
	margin-bottom: 0;
	width: 53%;
}

@media screen and (max-width: 768px) {
	.nayami-about-emphasis .nayami-about-img {
		width: 100%;
		margin: 0 auto;
	}
}

.nayami-about-feature {
	font-size: 20px;
	/*IE9以前に対応する*/
	font-size: 1.25rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	font-weight: 600;
	margin-bottom: 1.5em;
}

.nayami-about-img2 {
	width: 265px;
	margin: 0 auto 38px;
}

.nayami-about-ballon {
	border-radius: 10px;
	padding: 0.5em 1.5em;
	background-color: #f0efe9;
	border: 1px solid #f0efe9;
	-webkit-box-shadow: 0 0 8px #f0efe9;
	box-shadow: 0 0 8px #f0efe9;
	margin-right: 30px;
}

@media screen and (max-width: 768px) {
	.nayami-about-ballon {
		margin-bottom: 3%;
		margin-right: 0;
	}

	.nayami-about-feature {
		font-size: 18px;
	}
}

.nayami-about-ballon:last-of-type {
	margin-right: 0;
}

.nayami-about-ballon01 {
	margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
	.nayami-about-ballon01 {
		margin-bottom: 0%;
	}

	.nayami-about-ballon01.flex_start {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

}

.nayami-about-ballon2 {
	border-radius: 10px;
	padding: 0.5em 1.5em;
	background-color: #f0efe9;
	border: 1px solid #f0efe9;
	-webkit-box-shadow: 0 0 8px #f0efe9;
	box-shadow: 0 0 8px #f0efe9;
	margin-bottom: 16px;
}

.nayami-about-ballon2:last-of-type {
	margin-bottom: 0;
}

.nayami-about-ballon2.right {
	margin-left: auto;
}

@media screen and (max-width: 768px) {
	.nayami-about-ballon2.right {
		margin-left: 0;
	}

	.nayami-about-ballon,
	.nayami-about-ballon2 {
		margin-bottom: 3%;
		margin-right: 0;
	}
}

.nayami-about-ballon02 {
	margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
	.nayami-about-ballon02 {
		margin-bottom: 10%;
	}

	.nayami-about-ballon02.flex_start {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/* ====================================================
# service_detail
===================================================== */
.service_detail {
	padding-top: 0;
	background-color: #f2f7f4;
}

.service_detail-title-box {
	color: #fff;
	background-color: #bca866;
	letter-spacing: 0.05em;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 1em 0;
}

@media screen and (max-width: 768px) {
	.service_detail-title-box {
		-webkit-transform: translateY(-15%);
		transform: translateY(-15%);
		padding: 1em 0;
	}

	.service_detail .container {
		margin-bottom: 20px;
	}
}

.service_detail-title {
	letter-spacing: 0.2em;
	font-size: 28px;
	/*IE9以前に対応する*/
	font-size: 1.75rem;
}

@media screen and (max-width: 768px) {
	.service_detail-title {
		font-size: 4.66667vw;
	}
}

.service_detail-subtitle {
	font-size: 14px;
	/*IE9以前に対応する*/
	font-size: 0.875rem;
	letter-spacing: 0.25em;
}

@media screen and (max-width: 768px) {
	.service_detail-subtitle {
		font-size: 2vw;
	}
}

.service_detail-item {
	border-radius: 10px;
	-webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	padding-bottom: 33px;
	margin-bottom: 63px;
}

@media screen and (max-width: 768px) {
	.service_detail-item {
		padding-bottom: 10%;
		margin-bottom: 10%;
	}
}

.service_detail-item:last-child {
	margin-bottom: 0;
}

.service_detail-item-title {
	position: relative;
	font-size: 1.2em;
	background: #93bda4;
	padding: 10px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.05em;
	margin-bottom: 46px;
	border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 768px) {
	.service_detail-item-title {
		margin-bottom: 10%;
	}
}

.service_detail-item-title::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #93bda4;
}

.service_detail-item-title img {
	width: 15%;
}

@media screen and (max-width: 768px) {
	.service_detail-item-title img {
		width: 25%;
	}
}

.service_detail-item-subtitle {
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	letter-spacing: 0.2em;
	color: #50413e;
	font-weight: 600;
}

.service_detail-border {
	border: solid 1px #93bda4;
	background-color: #93bda4;
	height: 0.5px;
}

.service_detail-item-img {
	margin: 0 auto 36px;
}

@media screen and (max-width: 768px) {
	.service_detail-item-img {
		margin: 0 auto 5%;
	}
}

.service_detail-item-wrap {
	width: 480px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width: 768px) {
	.service_detail-item-wrap {
		width: 90%;
	}
}

/* ====================================================
# profile
===================================================== */
.profile {
	background-color: #f2f7f4;
}

@media screen and (max-width: 768px) {
	.profile {
		padding-top: 20vw;
	}
}

.profile-box {
	-webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	margin-top: 128px;
	position: relative;
	padding: 144px 5% 30px;
}

@media screen and (max-width: 768px) {
	.profile-box {
		padding: 34vw 5% 5%;
	}
}

.profile-img {
	width: 250px;
	position: absolute;
	display: inline-block;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.profile-img {
		width: 70%;
	}
}

.profile-name {
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	font-size: 24px;
	/*IE9以前に対応する*/
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 600;
	color: #444;
	letter-spacing: 2px;
}

.profile-name-en {
	margin: 0 auto 20px;
	width: 83px;
}

@media screen and (max-width: 768px) {
	.profile-name-en {
		width: 30%;
	}
}

/* ====================================================
# result
===================================================== */
.result {
	padding-bottom: 68px;
	padding-top: 0;
}

.result .section-title {
	margin-bottom: 32px;
	background-color: #93bda4;
	padding: 1.6em 0;
}

.result .result-list-box {
	line-height: 1.85;
}

@media screen and (max-width: 768px) {
	.result .result-list-box {
		width: 100%;
	}
}

.result .result-list-box ul li {
	padding: 0 0 0 1em;
	list-style-type: none;
	margin-left: 1em;
	text-indent: -1em;
}

.result .result-list-box ul li::before {
	position: relative;
	top: 0px;
	left: -6px;
	display: inline-block;
	width: 16px;
	height: 16px;
	content: "";
	background-color: #ebe4d0;
	border-radius: 50%;
}

@media screen and (max-width: 768px) {
	.result .result-list-box ul li::before {
		width: 3.5vw;
		height: 3.5vw;
	}
}

.result .result-list-box .border-bottom {
	width: 100%;
	margin-left: 0px;
	padding-bottom: 5px;
	margin-bottom: 6px;
	border-top: solid 1px #ccc;
}

.result-img {
	width: 300px;
	margin: 27px auto;
}

@media screen and (max-width: 768px) {
	.result-img {
		width: 100%;
	}
}

/* ====================================================
# footer
===================================================== */
.footer {
	background-color: #32523f;
	color: #fff;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
	font-weight: normal;
}

.footer-link {
	color: #fff;
	margin: 0 0.5em;
	font-size: 10px;
	/*IE9以前に対応する*/
	font-size: 0.625rem;
	border-bottom: solid 1px #fff;
	line-height: 1;
	font-weight: normal;
}

@media screen and (max-width: 768px) {
	.footer-link {
		font-size: 2.66667vw;
	}
}

/*# sourceMappingURL=style.css.map */
/* add */
.nayami-about-catch-box {
	text-align: center;
}

.nayami-about-catch-text {
	padding: 0;
	font-weight: 600;
	display: inline-block;
	position: relative;
}

.nayami-about-catch-text::before,
.nayami-about-catch-text::after {
	position: absolute;
	content: "";
}

.nayami-about-catch-text::before {
	background-image: url(../img/02_nayami-about-catch-left.png);
	background-repeat: no-repeat;
	background-size: 100%;
	top: 0;
	left: -2em;
	width: 25px;
	height: 20px;
}

.nayami-about-catch-text::after {
	background-image: url(../img/02_nayami-about-catch-right.png);
	background-repeat: no-repeat;
	background-size: 100%;
	bottom: 0;
	right: -2em;
	width: 25px;
	height: 20px;
}

.resolution_key {
	padding-top: 0;
}

.resolution_key.pb0 {
	padding-bottom: 0;
}

.resolution_key-main {
	position: relative;
	margin-top: -3.5em;
}

.resolution_key-main .col-slate-green{
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.resolution_key-main {
		margin-top: 0;
	}
}

.resolution_key-main .resolution_key-music {
	position: absolute;
	width: 65px;
	top: -30px;
	right: 10%;
}

@media screen and (max-width: 768px) {
	.resolution_key-main .resolution_key-music {
		margin-top: 0;
		width: 10%;
		right: 5%;
		top: -10vw;
	}
}

.resolution_key .section-title {
	background-color: #599170;
	margin-bottom: 8px;
	display: inline-block;
	padding: 0 0.5em;
}

.resolution_key .section-title:last-of-type {
	/* margin-bottom: 46px; */
}

.resolution_key .section-title-last {
	margin-bottom: 46px;
}

.resolution_key .section-title.is-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.resolution_key .section-title.is-sp {
		display: inline-block;
	}
}

@media screen and (max-width: 768px) {
	.resolution_key .section-title.is-pc {
		display: none;
	}
}

.resolution_key-emphasis {
	margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis {
		margin-bottom: 3%;
	}

	.resolution_key-emphasis.flex_between {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.resolution_key-emphasis-text {
	width: 47%;
	text-align: left;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis-text {
		width: 100%;
		margin-bottom: 5%;
	}
}

.resolution_key-emphasis-img {
	width: 53%;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis-img {
		width: 100%;
		margin-bottom: 5%;
	}
}

.resolution_key-img {
	width: 300px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.resolution_key-img {
		width: 100%;
	}
}

.resolution_key-emphasis2 {
	margin: 0 auto 52px;
	width: 90%;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis2 {
		margin-bottom: 3%;
	}

	.resolution_key-emphasis2.flex_all_center {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.resolution_key-emphasis2-text {
	width: 50%;
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
	font-weight: 600;
	text-align: left;
	line-height: 2;
	letter-spacing: 0.5px;
	font-size: 20px;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis2-text {
		width: 100%;
		margin-bottom: 5%;
		font-size: 18px;
	}
}

.resolution_key-emphasis2-img {
	width: 50%;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis2-img {
		width: 100%;
		margin-bottom: 5%;
	}
}

.resolution_key-emphasis3 {
	margin: 0 auto 36px;
}

.resolution_key-emphasis3-text {
	width: 55%;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis3-text {
		width: 100%;
		margin-bottom: 5%;
	}
}

.resolution_key-emphasis3-img {
	width: 40%;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis3-img {
		width: 100%;
		margin-bottom: 5%;
	}
}

.resolution_key-emphasis4-img {
	width: 38%;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis4-img {
		width: 100%;
		margin-bottom: 5%;
	}
}

.resolution_key-emphasis5 {
	width: 62.5%;
	margin: 0 auto 2em;
}

@media screen and (max-width: 768px) {
	.resolution_key-emphasis5 {
		width: 100%;
	}
}
