@charset "utf-8";

/* リセット */
html,
body,
address,
blockquote,
div,
dl,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
table,
ul,
dd,
dt,
li,
tbody,
td,
tfoot,
th,
thead,
tr,
button,
del,
ins,
map,
object,
a,
abbr,
acronym,
b,
bdo,
big,
br,
cite,
dfn,
em,
img,
kbd,
q,
smap,
span,
strong,
sub,
sup,
tt,
var,
legend,
fieldset {
	margin: 0;
	padding: 0;
}

img,
fieldset {
	border: 0;
}

.cf:before,
.cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
	width: 100%\9;
	padding-top: 5px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

/* General Style */
@font-face {
	font-family: 'mplus-1p-regular';
	src: url('http://mplus-webfonts.sourceforge.jp/mplus-1p-regular.eot');
	src: url('http://mplus-webfonts.sourceforge.jp/mplus-1p-regular.eot?#iefix') format('embedded-opentype'), url('http://mplus-webfonts.sourceforge.jp/mplus-1p-regular.woff') format('woff'), url('http://mplus-webfonts.sourceforge.jp/mplus-1p-regular.ttf') format('truetype');
}

*,
*::before,
*:after {
	box-sizing: border-box;
	word-break: break-all;
}

html {
	font-size: 62.5%;
	width: 100%
}

body {
	background: #fff;
	font-family: mplus-1p-regular Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.wf-mplus1p {
	font-family: "Mplus 1p";
}

/* ===============================
   HEADER全体
=============================== */
header {
	position: relative;
	width: 100%;
}

/* ===============================
   ロゴ・ナビの並び
=============================== */
.hed-list {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
}

/* ===============================
   ロゴ中央配置
=============================== */
.logo-h1 {
	margin: 0;
	text-align: center;
	flex: 1 1 auto;
}

.logo-h1 img {
	display: block;
	margin: 0 auto;
}

/* ===============================
   ハンバーガーボタン配置
=============================== */
.hamburger {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 1002;
}

.hamburger span {
	position: absolute;
	height: 3px;
	width: 100%;
	background: #74ad50;
	left: 0;
	transition: 0.3s;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
}

.hamburger span:nth-child(3) {
	top: 18px;
}

/* ×ボタン時 */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

/* ×の時は白色に */
.hamburger.active span {
	background: #fff;
}

/* ===============================
   スマホメニュー
=============================== */
.sp-nav {
	display: flex !important;
	flex-direction: column;
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100%;
	background-color: rgba(116, 173, 80, 0.85);
	gap: 20px;
	text-align: left;
	padding: 70px 20px 20px;
	box-sizing: border-box;
	transition: right 0.4s ease;
	z-index: 1001;
}

/* メニュー開閉 */
.sp-nav.active {
	right: 0;
}

.sp-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

.sp-nav li a {
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	display: block;
}

.sp-nav.active li:nth-child(1) a {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.1s;
}

.sp-nav.active li:nth-child(2) a {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

.sp-nav.active li:nth-child(3) a {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.sp-nav.active li:nth-child(4) a {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.sp-nav.active li:nth-child(5) a {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.sp-nav.active li:nth-child(6) a {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

/* メニュー閉じる */
.sp-nav.closing li a {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

/* 各項目を順番に上に消す */
.sp-nav.closing li:nth-child(1) a {
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.5s;
}

.sp-nav.closing li:nth-child(2) a {
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.4s;
}

.sp-nav.closing li:nth-child(3) a {
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.3s;
}

.sp-nav.closing li:nth-child(4) a {
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.2s;
}

.sp-nav.closing li:nth-child(5) a {
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.1s;
}

.sp-nav.closing li:nth-child(6) a {
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0s;
}

/* ===============================
   左側グレーアウト
=============================== */
#nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

#nav-overlay.active {
	display: block;
}

/* ===============================
   PC表示時は非表示
=============================== */
@media screen and (min-width: 1024px) {

	.hamburger,
	.sp-nav,
	#nav-overlay {
		display: none !important;
	}
}

/* 文字 */
h1 {}

h2 {
	padding-left: 2em;
	line-height: 2;
	font-size: 2em;
	color: #3c7319;
}

.h2 {
	background: url(images/h2.png) no-repeat center 75%;
	width: 100%;
	height: 2em;
	background-size: cover;
	position: relative;
	display: inline-block;
	/*margin-bottom: 2em;*/
	margin-bottom: 1em;
	margin-top: 20px
}

main h2 {
	border-top-left-radius: 7pt 8pt;
	border-top-right-radius: 7pt 8pt;
	border-bottom-left-radius: 7pt 8pt;
	border-bottom-right-radius: 7pt 8pt;
}

.sub-h2 {
	border: dotted 2px #abf3d1;
	border-top-left-radius: 8pt 8pt;
	border-top-right-radius: 8pt 8pt;
	border-bottom-left-radius: 8pt 8pt;
	border-bottom-right-radius: 8pt 8pt;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 5%;
	margin-bottom: 5%;
	background-color: #fff;
}

h3 {
	border: dotted 2px #abf3d1;
	/*border-radius: 8%;*/
	padding: 3%;
	font-size: 1.5em;
	font-weight: 500;
	color: #006837;
}

h4 {
	line-height: 2;
	font-size: 2em;
	color: #006837;
}

.side-wrapper h4 {
	padding-left: 2em;
}

.main-h4 {
	font-size: 2em;
	line-height: 2;
	margin-top: -14px;
}

.main-wrapper ul {
	margin-bottom: 5%;
}

.main-wrapper ul li {
	list-style: disc;
	margin-left: 7%;
	margin-right: 7%;
	line-height: 2;
	font-size: 1.2em;
	color: #006837;
}

.main-wrapper dl {
	font-size: 1.2em;
	color: #006837;
}

.main-wrapper dt {
	font-size: 1.2em;
	color: #006837;
	line-height: 1.7;
}

.main-wrapper dt.flow-tour {
	font-size: 1.5em;
	color: #006837;
	line-height: 1.7;
}

dt {
	color: #006837;
	font-size: 1.5em;
	line-height: 1.5;
}

dd {
	color: #006837;
	font-size: 1.5em;
	line-height: 1.5;
}

/* ご利用の流れと手続き */
.flow-tour {
	background-color: #fdfdf4;
	margin: 1% 0 10% 0;
	padding: 2%;
	font-size: 1.5em;
	position: relative;
}

.flow-tour:before {
	margin: 0 10px 0 0;
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(images/flow.svg);
	background-size: contain;
	vertical-align: middle;
}

.flow-tour-dl {
	/*position: relative;*/
}

.flow-tour:nth-child(1):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 125%;
	left: 80%;
	border-top: 23px solid #fdfdf4;
	border-right: 17px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 17px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(2):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 125%;
	left: 80%;
	border-top: 23px solid #fdfdf4;
	border-right: 17px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 17px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(3):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 125%;
	left: 80%;
	border-top: 23px solid #fdfdf4;
	border-right: 17px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 17px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(4):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 125%;
	left: 80%;
	border-top: 23px solid #fdfdf4;
	border-right: 17px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 17px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(5):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 125%;
	left: 80%;
	border-top: 23px solid #fdfdf4;
	border-right: 17px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 17px solid transparent;
	margin: -15px 0 0 -15px;
}

@media screen and (orientation: landscape) {
	.flow-tour {
		margin: 1% 0 8% 0;
		padding: 2%;
		font-size: 1.5em;
		position: relative;
	}

	.flow-tour:nth-child(1):after {
		top: 123%;
		left: 80%;
		border-top: 30px solid #fdfdf4;
		border-right: 30px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 30px solid transparent;
	}

	.flow-tour:nth-child(2):after {
		top: 123%;
		left: 80%;
		border-top: 30px solid #fdfdf4;
		border-right: 30px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 30px solid transparent;
	}

	.flow-tour:nth-child(3):after {
		top: 123%;
		left: 80%;
		border-top: 30px solid #fdfdf4;
		border-right: 30px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 30px solid transparent;
	}

	.flow-tour:nth-child(4):after {
		top: 123%;
		left: 80%;
		border-top: 30px solid #fdfdf4;
		border-right: 30px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 30px solid transparent;
	}

	.flow-tour:nth-child(5):after {
		top: 123%;
		left: 80%;
		border-top: 30px solid #fdfdf4;
		border-right: 30px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 30px solid transparent;
	}
}

main h3 {
	border-top-left-radius: 7pt 8pt;
	border-top-right-radius: 7pt 8pt;
	border-bottom-left-radius: 7pt 8pt;
	border-bottom-right-radius: 7pt 8pt;
	/*margin-bottom: 5%;*/
}

main img:last-child {
	margin-bottom: 7%;
}

p {
	font-size: 1.5em;
	line-height: 1.5;
	color: #006837;
}

.flow-p {
	margin-top: 5%;
	margin-bottom: 5%;

	/*width: 90%;
	margin: 0 auto;
	padding-top: 3%;
	padding-bottom: 2%;
	line-height: 6;*/

}

#copyright {
	font-size: 1em;
	padding: 0;
	position: relative;
	text-align: center;
	margin: 0 auto;
}

#copyright small {
	margin: 3.5em 0 0em 0;
	color: #fff;
}

/* LOGO */
.logo__h1__a {
	cursor: pointer;
	display: block;
	width: 100px;
	height: 52px;
	margin: 10px auto;
}

/* heder img */
.hed-img {
	margin-top: 0;
	z-index: -9999;
	overflow: hidden;
}

.hed-img:before {
	content: "";
	background: url(images/head_img-01.png) no-repeat center 75%;
	width: 100%;
	/*height: .5em;*/
	height: 1.5em;
	background-size: cover;
	position: relative;
	top: 8px;
	display: inline-block;
}

.hed-img:after {
	content: "";
	background: url(images/head-img-02.svg) no-repeat;
	width: 100%;
	height: 2.5em;
	background-size: cover;
	position: relative;
	top: -10px;
	display: inline-block;
	margin-top: -14px;
}

@media screen and (orientation: landscape) {
	.hed-img:after {
		height: 46px;
		margin-top: -35px;
	}
}

/* Content */
.content {
	background-image: url(images/bg_img.png);
	background-position: left top;
	background-size: auto;
	background-repeat: repeat;
	background-attachment: fixed;
	margin-top: -12px;
}

.content-in {
	/*background-color: #fff;*/
	padding-bottom: 1px;
	width: 100%;

	width: 80%;
	margin: 0 auto;
}

.main-wrapper {
	width: 90%;
	margin: 0 auto;
	padding-top: 5%;
}

@media screen and (max-width:768px) {

	.main-wrapper {
		width: 100%;
	}

	.content-in {
		background-color: #fff;
		width: 100%;
		padding-top: 5%;
	}

	.content-in-wrapper {
		width: 90%;
		margin: 0 auto;
	}
}

/* サイド */
.side-none {
	display: none;
}

/* Footer */

.footer {
	background-color: #74ad50;
	z-index: 5;
	position: relative;
	/*margin-top: 40px;*/
}

.footer-company {
	display: block;
	background: #fff;
	padding: 2% 0 6% 0;
	margin: 0 auto;
	text-align: center;
	width: 92%;
	border-radius: 10px;
	box-shadow: 6px 6px 0px -1px #030303;
}

.footer-company-tb {
	margin: 0 auto;
}

.footer-company td {
	color: #006837;
	font-size: 1.1em;
	line-height: 1.5;
}

td[summary*="Kirarin"] {
	font-size: 2.5em;
}

.footer:before {
	content: "";
	/*background: url(images/footer-before.svg) no-repeat center 75%;*/
	background: url(images/footer-img-01.png) no-repeat center 75%;
	width: 100%;
	height: 1em;
	background-size: cover;
	position: relative;
	top: -9px;
	display: inline-block;
}

.footer-color {
	/*background-color: #74ad50;*/
}

.last-footer-img {
	/*background: url(images/footer-img-02.png) no-repeat center 75%;*/
	width: 100%;
	height: 2em;
	background-size: cover;
	display: inline-block;
}

.last-footer-img:after {
	display: table-cell;
	width: 9999px;
	height: 10px;
	content: "© Copyright 2017 Kirarin. All Rights Reserved.";
	vertical-align: bottom;
	text-align: center;
	text-shadow: 0 1px #000;
	/*white-space: pre;*/
	background: url(images/footer-img-02.png) no-repeat center 75%;
	background-size: cover;
	z-index: -999;
	/*position: relative;
  top: -43px;*/
	color: #fff;
	padding-bottom: 10px;
}

/* Contact */
.contact dl {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	padding-top: 10%;
	padding-bottom: 8%;
}

.contact-btn {
	background: #fff;
	margin-right: 4%;
	margin-right: 13%\9;
	padding-top: 4%;
	padding-bottom: 4%;
	padding-left: 2%;
	padding-right: 2%;
	border-radius: 15px;
	box-shadow: 4px 3px 0 -1px #030303;
	width: 35%;
	text-align: center;
}

.contact a {
	text-decoration: none;
	color: #006837;
}

.contact-tel {
	background: #fff;
	/*margin-right: 4%;*/
	padding-top: 4%;
	padding-bottom: 4%;
	padding-left: 0;
	padding-right: 0;
	border-radius: 15px;
	box-shadow: 4px 3px 0 -1px #030303;
	width: 40%;
	text-align: center;
}

.contact-tel:first-child {
	margin-right: 4%;
}

.contact a {
	text-decoration: none;
	color: #006837;
	font-size: 1em;
	/*white-space: nowrap;*/
}

.contact-footer-dt a {
	white-space: nowrap;
}

/* MAP */
.g-map {
	position: relative;
	padding-bottom: 20%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.g-map iframe,
.g-map object,
.g-map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.contact-btn-i:before {
	content: '';
	display: inline-block;
	width: 23px;
	height: 23px;
	background-image: url(images/contact.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-right: 2px;
}

.contact-tel-i:before {
	content: '';
	display: inline-block;
	width: 23px;
	height: 23px;
	background-image: url(images/tel.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-right: 3%;
}

.small-contact {
	display: none;
}

.content-wrapper-access {
	float: left;
	width: 100%;
	margin: 0 auto;
}

.footer-access {
	/*margin-top: 40px;*/
	margin-top: 20px;
}

.content-access {
	padding-bottom: 4%;
}

.content-bottom {
	margin-bottom: 9%;
}

.content-bottom-02 {
	/*margin-bottom: 2%;*/
}

.pc-menu-none {
	display: none;
}

input {
	font-size: 1.3em;
}

.c-form-text {
	display: block;
	padding-left: 0;
}

.c-form-text h2 {
	font-size: 1em;
	margin-bottom: 4em;
	height: 4.5em;
	vertical-align: middle;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.form-text-kakunin h2 {
	margin-bottom: 0em;
	margin-top: 0;
	padding-left: 0;
	font-size: 2em;
}

.form-text-kakunin {
	margin-top: 0;
	padding-left: 0;
}

.send {
	margin-bottom: 2em;
	margin-left: 2%;
	margin-right: 2%;
	text-align: left;
}

.c-form-text small {
	font-size: 1.2em;
}

.hissu {
	color: #ff0000;
}

.c-formbody {
	margin-top: 4%;
	margin-bottom: 6%;
	margin-left: 4%;
	margin-right: 4%;
	text-align: left;
	/*display: inline-block;*/
	padding: 5%;
}

.c-formbody dl dt {
	font-size: 1.5em;
	line-height: 1.5;
	padding-bottom: 1%;
	padding-top: 2%;
}

.c-formbody table {
	width: 100%;
}

.c-formbody td input {
	overflow: visible;
	padding: 3%;
	margin-top: 3%;
	border-top-left-radius: 40px 100px;
	border-top-right-radius: 40px 100px;
	border-bottom-right-radius: 40px 100px;
	border-bottom-left-radius: 40px 100px;
	width: 100%;
	font-size: 1.8em;
}

.c-formbody td input:focus {
	outline: 1px rgb(119, 208, 113) dotted;
	border-radius: 10px 10px;
	font-size: 1.8em;
}

.c-formbody p {
	margin-right: 2%;
}

.c-formbody dl {
	/*text-align: center;*/
}

.form-bottom {
	margin-bottom: 3%;
}

.name p label {
	margin-right: 8%;
}

.name {
	margin-bottom: 2%;
	margin-top: 2%;
}

.name textarea {
	overflow: visible;
	padding: 3%;
	margin-bottom: 3%;
	width: 100%;
	border-top-left-radius: 10px 20px;
	border-top-right-radius: 10px 20px;
	border-bottom-right-radius: 10px 20px;
	border-bottom-left-radius: 10px 20px;
	font-size: 1.3em;
	box-shadow: 0.5px 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.29) inset;
	border-width: 2px;
	border-style: inset;
	border-color: initial;
	font-size: 1.8em;
}

.name textarea:focus {
	outline: 1px rgb(119, 208, 113) dotted;
	border-radius: 10px 10px;
	font-size: 1.8em;
}

.form-btn {
	background: url(images/kakuninn.png) 0 0 no-repeat;
	width: 200px;
	height: 100px;
	text-indent: -9999px;
	margin-left: 2px;
	border: 0;
	outline: 0;
}

.form-btn:hover {
	background: url(images/kakuninn01.png) 0 0 no-repeat;
	width: 200px;
	height: 100px;
	text-indent: -9999px;
	margin-left: 2px;
	border: 0;
	outline: 0;
}

.btnarea {
	text-align: center;
	margin-top: 2em;
}

.modoru {
	background: url(images/modoru.png) 0 0 no-repeat;
	width: 200px;
	height: 100px;
	text-indent: -9999px;
	margin-left: 2px;
	border: 0;
	outline: 0;
}

.modoru:hover {
	background: url(images/modoru1.png) 0 0 no-repeat;
	width: 200px;
	height: 100px;
	text-indent: -9999px;
	margin-left: 2px;
	border: 0;
	outline: 0;
}

.sousin {
	background: url(images/submit.png) 0 0 no-repeat;
	width: 200px;
	height: 100px;
	text-indent: -9999px;
	margin-left: 2px;
	border: 0;
	outline: 0;
}

.sousin:hover {
	background: url(images/submit1.png) 0 0 no-repeat;
	width: 200px;
	height: 100px;
	text-indent: -9999px;
	margin-left: 2px;
	border: 0;
	outline: 0;
}

.formError .formErrorContent {
	width: 100%;
	background: #08ad3c;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.side-none {
		display: none;
	}

	.small-contact {
		display: block;
	}

	.contact-tel {
		padding-top: 3%;
		padding-bottom: 3%;
	}
}

.flow-tour:nth-child(1):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 120%;
	left: 80%;
	border-top: 35px solid #fdfdf4;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(2):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 120%;
	left: 80%;
	border-top: 35px solid #fdfdf4;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(3):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 120%;
	left: 80%;
	border-top: 35px solid #fdfdf4;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(4):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 120%;
	left: 80%;
	border-top: 35px solid #fdfdf4;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
	margin: -15px 0 0 -15px;
}

.flow-tour:nth-child(5):after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 120%;
	left: 80%;
	border-top: 35px solid #fdfdf4;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
	margin: -15px 0 0 -15px;
}

.main-wrapper-p {
	font-size: 1.8em;
	line-height: 1.5;
	text-align: left;
	margin-bottom: 2%;
}

/* PC */
@media screen and (min-width: 1024px) {
	.side-none {
		display: block;
	}

	.pc-menu {
		display: block;
	}

	#nav-wrapper {
		display: none;
	}

	.main-wrapper-p {
		font-size: 1.8em;
		line-height: 1.5;
		text-align: left;
		margin-bottom: 2%;
	}

	main h3 {
		margin-bottom: 2%;
	}

	.main-img {
		margin-bottom: 2%;
	}

	main img:last-child {
		margin-bottom: 0;
	}

	.logo__h1__a img {
		max-width: 150%;
		width: 144%;
		height: 120%;
		margin-bottom: 2%;
	}

	.menu .line {
		display: none;
	}

	.menu .line:nth-child(2) {
		display: none;
	}

	.menu .line:nth-child(3) {
		display: none;
	}

	.pc-menu {
		/*display: flex;
flex-direction: row;
justify-content: center;*/
	}

	.nav a {
		color: #006837;
		text-decoration: none;
	}

	.menu .nav li+li {
		margin-left: 8%;
	}

	.menu {
		/*cursor: pointer;*/
		cursor: auto;
		padding: 15px;
		max-height: 100%;
		overflow: hidden;
		margin-left: auto;
	}

	.menu .line {
		height: 1px;
		display: block;
		width: 100%;
		background: rgba(255, 255, 255, 0);
		margin: 10px;
		opacity: 1;
		position: absolute;
		right: 0px;
	}

	.menu .line:nth-child(2) {
		margin-top: 2px;
	}

	.menu .line:nth-child(3) {
		margin-top: 18px;
	}

	.menu.active .line:nth-child(1) {
		height: 1000px;
		width: 250px;
		margin: -20px;
		background-color: rgba(116, 173, 80, 0.33);
	}

	.menu.active .line:nth-child(2),
	.menu.active .line:nth-child(3) {
		opacity: 1;
	}

	.nav {
		/*padding-top: 80px;*/
		padding-top: 17px;
		padding-bottom: 20px;
		padding-left: 39px;
		padding-right: 20px;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.menu:not(.active) .nav li {
		opacity: 1;
		margin-bottom: -10px;
	}

	.menu .nav li {
		opacity: 1;
		font-size: 16px;
		margin-bottom: 20px;
	}

	.menu .nav li:hover {
		opacity: 0.8;
	}

	.menu .nav li:hover {
		padding-left: 0;
	}

	/* ie9 */
	.nav:not(:target) {
		width: 80%\9;
		margin-right: auto\9;
		margin-left: auto\9;
		text-align: center\9;
	}

	.nav li {
		float: left\9;
		width: 250px\9;
		width: 17%\9;
	}

	.menu .nav li+li {
		margin-left: 3%\9;
	}


	h2 {
		padding-left: 3em;
		line-height: 2;
		font-size: 2.5em;
		color: #3c7319;
	}

	.sub-h2 {
		margin-top: 3%;
		margin-bottom: 3%;
	}

	.main-h4 {
		font-size: 3.5em;
	}

	.tantou {
		font-size: 0.8em;
		margin-left: 3%;
		vertical-align: middle;
		display: inline;
		white-space: nowrap;
	}

	.side-wrapper {
		display: block;
		float: left;
		width: 25%;
		margin-left: 3%;
		margin-top: 20px
	}

	.side-wrapper aside {
		background: #fff;
		padding: 5%;
		margin-bottom: 13%;
	}

	.side-wrapper .sideNewsWrap {
		padding: 10%;
	}

	.newsTxt {
		border-bottom: 1px solid #000;
		margin-bottom: 10px;
	}

	.newsTxt p {
		padding-top: 10px
	}

	.side-wrapper dl dt:first-child {
		/*padding-bottom: 25px;
		padding-top: 25px;*/

	}

	.side-wrapper dl dt {
		width: 90%;
		width: 55%\9;
		margin: 0 0 14px 0;
		text-align: center;
		padding-bottom: 6%;
		padding-top: 6%;
		padding-bottom: 25px;
		padding-top: 25px;
		min-width: 150px;
		min-width: 250px\9;
	}

	.side-wrapper dl dd {
		width: 90%;
		width: 55%\9;
		margin: 0 0 14px 0;
		text-align: center;
		padding-bottom: 6%;
		padding-top: 6%;
		padding-bottom: 25px;
		padding-top: 25px;
		min-width: 150px;
		min-width: 250px\9;
	}

	.side-wrapper h4 {
		border: dotted 2px #abf3d1;
		border-top-left-radius: 8pt 8pt;
		border-top-right-radius: 8pt 8pt;
		border-bottom-left-radius: 8pt 8pt;
		border-bottom-right-radius: 8pt 8pt;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: 5%;
		margin-bottom: 5%;
		background-color: #fff;
	}

	.side-wrapper .sideTopH4 {
		margin-top: 0
	}

	.contact-dl {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		padding-top: 10%;
		padding-bottom: 8%;
		flex-direction: column;
		align-items: center;
	}

	.content-in img {}

	.schedule-img {
		padding: 2.5% 12% 2.5% 12%;
	}

	.all-content-wrapper {
		width: 65%;
		margin: 0 auto;
	}

	@media screen and (min-width: 768px) and (max-width: 1024px) {
		.all-content-wrapper {
			width: 100%;
		}

		.side-wrapper aside {
			border-radius: 0;
		}

		.side-wrapper {
			margin-top: 10em;
		}

		.side-wrapper {
			float: right;
			max-width: 35%;
			width: 30%;
		}
	}

	.content-wrapper {
		float: left;
		width: 65%;
		margin: 0 auto;
	}

	.hed-img {
		margin-bottom: 0;
		margin-top: -11px;
	}

	.hed-img:after {
		height: 14.2em;
		margin-top: -134px;
	}

	.flow-p {
		margin: 0 auto;
		padding-left: 6.5%;
		text-align: left;
	}

	.flow-p p {
		line-height: 2.5;
		font-size: 2em;
	}

	.main-wrapper dt.flow-tour {
		font-size: 2em;
	}

	.main-wrapper dd.flow-tour {
		font-size: 2em;
	}

	.main-wrapper {
		width: 100%;
		margin: 0 auto;
		padding-top: 2%;
		padding-bottom: 5%;
		/*background-color: #fff;*/
		margin: 0 auto;
	}

	.main-wrapper ul li {
		font-size: 1.8em;
	}

	.main-wrapper dl {
		width: 80%;
		margin: auto;
	}

	.main-wrapper dt {
		font-size: 1.6em;
		line-height: 2;
	}

	.main-wrapper dd {
		font-size: 1.6em;
		line-height: 2;
	}

	.content-in-wrapper {
		background-color: #fff;
		width: 80%;
		padding-bottom: 3%;
		padding-top: 3%;
		margin: 0 auto;
	}

	.content-in {
		background-color: #fff;
		padding-bottom: 1px;
		width: 100%;
		margin: 0 auto;
	}

	.flow-tour {
		margin: 0 0 4% 0;
		position: relative;
	}

	.flow-tour:last-child {
		margin: 0;
	}

	/* ご利用の流れ */
	.flow-tour:nth-child(1):after {
		/*top: 14.5%;*/
		top: 115%;
	}

	.flow-tour:nth-child(2):after {
		/*top: 32%;*/
		top: 115%;
	}

	.flow-tour:nth-child(3):after {
		/*top: 49.5%;*/
		top: 115%;
	}

	.flow-tour:nth-child(4):after {
		/*top: 67.5%;*/
		top: 115%;
	}

	.flow-tour:nth-child(5):after {
		/*top: 82.2%;*/
		top: 115%;
	}

	.flow-tour:before {
		margin: 0 10px 0 0;
		content: "";
		display: inline-block;
		width: 37px;
		height: 37px;
		background: url(images/flow.svg);
		background-size: cover;
		vertical-align: middle;
	}

	/* 会社概要 */
	.footer-company {
		/*width: 30%;*/
		/*padding: 1% 0 2% 0;*/
		padding: 1% 1% 2% 1%;
	}

	.footer-company td {
		font-size: 1.7em;
		line-height: 1.8;
	}

	.contact dl {
		padding-top: 3%;
		padding-bottom: 3%;
	}

	/* Footer */
	.footer:before {
		height: 4em;
	}

	.last-contet {
		margin-bottom: 90px;
	}

	.footer:before {
		content: "";
		background: url(images/footer-before.svg) no-repeat center 75%;
		height: 7em;
		width: 100%;
		background-size: cover;
		position: relative;
		top: -4em;
		display: inline-block;
		z-index: 1;
	}

	.contact-btn {
		/*padding: 1.5% 1% 1.5% 1%;*/
		padding-bottom: 25px;
		padding-top: 25px;
		text-align: center;
	}

	contact-btn-i {
		white-space: normal;
	}

	.contact-tel {
		line-height: 1;
		padding-bottom: 0;
		padding-top: 20px;
		text-align: center;
		position: relative;
		width: 14%;
		min-width: 250px;
	}

	.contact-tel a {
		padding: 0px 0px 0 20px;
		font-size: 1.3em;
	}

	@media all and (-ms-high-contrast: none) {
		.contact-tel a {
			padding: 10px;
			/* IE10以上 */
		}
	}

	#content-btn-a {
		font-size: 1em;
	}

	#content-tel-a {
		/*font-size: 1.5em;*/
		font-size: 1.1em;
		vertical-align: text-bottom;
	}

	.contact-btn {
		width: 12%;
		min-width: 200px;
	}

	.contact-btn-i:before {
		content: '';
		display: inline-block;
		width: 23px;
		height: 23px;
		margin-right: 7px;
		/*margin-left: 2%;*/
		background-image: url(images/contact.svg);
		background-repeat: no-repeat;
		background-size: contain;
		vertical-align: middle;
	}


	.contact-tel-i:before {
		content: '';
		display: inline-block;
		width: 23px;
		height: 23px;
		margin-right: 2%;
		margin-left: 2%;
		background-image: url(images/tel.svg);
		background-repeat: no-repeat;
		background-size: contain;
		vertical-align: middle;
		text-align: left;
		margin-left: auto;
		/*position: absolute;*/
		left: 20px;
	}

	@media screen and (max-width: 1600px) {
		.side-none {
			display: block;
		}

		.contact-tel-i:before {
			/*margin-left: -20px;*/
			position: static;
		}

		.footer-company-tb {
			/*margin: 0px 6px;*/
			margin: 0px auto;
		}
	}

	/*.contact {
	padding-bottom: 3%;
}*/
	.contact dl {
		width: 28%\9;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		/*padding-top: 3%;*/
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		/*height: 200px;*/
		margin: 0 auto;
	}

	.contact dl:not(:target) {
		padding-bottom: 7%\9;
		/*display: block\9;*/
	}

	.contact dl dt:not(:target) {
		float: left\9;
		margin-left: -80px\9;
	}

	.contact dl dd:not(:target) {
		float: left\9;
		margin-left: -80px\9;
	}

	@media all and (-ms-high-contrast: none) {
		.contact dl dt {
			margin-left: 0\9;
			/* IE10 */
		}
	}


	.small-contact {
		display: block;
		font-size: xx-small;
		margin-top: 4%;
	}

	.contact a {
		text-decoration: none;
		color: #006837;
		font-size: 1.3em;
		/*white-space: nowrap;*/
		padding: 1px;
	}

	/* MAP */
	.g-map-wrapper {
		height: 30%;
	}

	.g-map {}

	.g-map>.g-map-kirarin {
		border: none;
		background-color: transparent;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}


	.g-map iframe,
	.g-map object,
	.g-map embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.last-footer-img:after {
		height: 6em;
		margin-top: 19px;
		width: 9999px;
		height: 30px;
	}

	#copyright small {
		margin: .5em 0 0em 0;
		color: #fff;
		/*position: absolute;*/
	}

	#copyright small {
		font-size: 2em;
	}

	.company {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (min-width: 1280px) and (max-width: 1670px) {
	.tantou {
		display: inline-table;
		text-align: center;
	}
}

/*@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.contact-tel:not(:target) {
	padding-bottom: 20px\9; /* IE10（\9なしでIE11にも適用）
} */

@-moz-document url-prefix() {
	.contact-tel {
		padding-bottom: 20px;
	}
}


@media screen and (max-width: 1800px) {
	.contact-tel-span {
		display: block;
		line-height: 2;
		margin-bottom: -10%;
	}

	/*.contact-tel-i:before {
    margin-left: -35%;
}*/
}

.pB10px {
	margin-bottom: 10px;
}

.side-wrapper .sideNewsWrap {
	padding: 10%;
	background: #fff;
	margin-bottom: 13%;
}