@charset "UTF-8";

/*common*/
html {
	margin: 0;
	padding:0;
}
body {
	margin: 0;
	padding: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #444;
	line-height: 2.0;
	position: relative;
	background-color: #f7f7f7;
	overflow-x: hidden;
}
.lock {overflow:hidden; width: 100%;}
h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}
img {
	width: 100%;
	vertical-align: bottom;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
ul,li,dl,dt,dd,ol {
	margin:0;
	padding:0;
	list-style: none;
}
p {margin: 0 0 1em 0;}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ins {text-decoration: none;}
em {font-style: normal;}
figure {margin:0; padding: 0;}

a {
	 transition: .3s ease all;
	 text-decoration: none;
}
a:hover { transition: .3s ease all;}

.inner {
	width:70%;
	min-width: 1360px;
	margin:0 auto;
}
@media screen and (max-width: 1399px) {
	.inner {
    	width: 90%;
    	min-width: auto;
    	margin: 0 auto;
	}
}

/* --------------------------------------------------------- header */
header {
	width: 100%;
	height: 110px;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	align-items: center;
	z-index: 999999999 !important;
	transition: .6s ease all;
	background-color: #fff;
	line-height: 1em;
	position: relative;
}
header.top {
	background-color: transparent;
}
header h1 {
	margin-left: 40px;
}
header h1 a {
	color: #444;
}
header h1 img {
	vertical-align: middle;
	max-width: 360px;
}
header nav {
	display: none;
}

.menu-container .menu {
	height: 110px;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	align-items: center;
}
.hamburger {
	position: absolute;
	top: 50%;
	left: calc(100vw - 80px);
	width: 60px;
	height: 60px;
	transform: translateY(-50%);
}
.menu-mobile {
	position: relative;
    display: block;
	width: 60px;
	height: 60px;
    text-decoration: none;
    padding: 0;
    top: 0;
    background-color: #d85077;
    border-radius: 10px;
}
.menu-mobile:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 0;
	background-color: transparent;
}

.menu .show-on-mobile {
	top: 110px;
}

@media screen and (max-width: 1399px) {
	header {
    	display: block;
	}
	header h1 {
		height: 40px;
	}
	header h1 img {
		width: auto;
		max-height: 40px;
		margin: 0 auto;
		max-width: calc(100% - 80px);
		vertical-align: top;
	}
	.menu-mobile.active {
    	top: 0;
	}
}

/* --------------------------------------------------------- banner */
#banner {
	margin-bottom: 120px;
}
#banner ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}
#banner ul li {
	margin: 0 7px 14px 7px;
}
@media screen and (max-width: 767px) {
	#banner {
		margin-bottom: 100px;
	}
	#banner ul li {
		width: calc(50% - 14px);
	}
}
@media screen and (max-width: 479px) {
	#banner ul li {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 20px;
	}
}

/* --------------------------------------------------------- link */
#link {
	margin-bottom: 120px;
}
#link ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}
#link ul li {
	margin: 0 28px;
}
#link ul li a {
	color: #d88f98;
	text-decoration: underline;
	font-weight: bold;
}
#link ul li a:hover {
	color: #555;
	text-decoration: none;
}
@media screen and (max-width: 1399px) {
	#link {
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 479px) {
	#link ul li {
		margin: 0 10px 10px 10px;
	}
}

/* --------------------------------------------------------- footer */
footer {
	width: 100%;
	border-top: 1px solid #3a3126;
	background-color: #3a3126;
}
footer section {
	padding: 60px 0;
	color: #fff;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	align-items: center;
	box-direction : reverse;
	box-orient : horizontal;
	flex-direction : row-reverse;
}
footer section div {
	width: 400px;
}
footer section ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	max-width: 900px;
}
footer section li {
	margin:0 0 10px 40px;
	line-height: 1.5em;
}
footer section li a {
	color: #fff;
}
footer section li a:hover {
	color: #d85077;
}
footer p {
	text-align: center;
	margin: 0;
	line-height: 62px;
	color: #3a3126;
	background-color: #fff;
}

@media screen and (max-width: 1199px) {
	footer section {
		display: block;
		padding: 50px 0 0 0;
	}
	footer section ul {
		-ms-flex-pack: start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		padding-bottom: 40px;
		border-bottom: 1px solid #fff;
		max-width: initial;
	}
	footer section li {
		margin:0 20px 10px 20px;
	}
	footer section div {
		width: 100%;
		padding-top: 50px;
		padding-bottom: 50px;
		border-bottom: 1px solid #fff;
	}
	footer p {
		background-color: transparent;
		color: #fff;
		line-height: 75px;
	}
}
@media screen and (max-width: 479px) {
	footer section li {
		width: calc(50% - 20px);
		margin: 0 10px 10px 10px;
		text-align: center;
	}
}

/* --------------------------------------------------------- pagetop */
.pagetop {
	position:fixed;
	right: 30px;
	bottom: 100px;
  	z-index: 70;
	width: 68px;
	height: 68px;
}
.pagetop a {
	display: block;
	text-align: center;
	background-color: #d85077;
	width: 68px;
	height: 68px;
	border-radius: 34px 30px 38px 32px;
	transform: rotate(-45deg);
	position: relative;
}
.pagetop a:hover {
	border-radius: 30px 32px 30px 34px;
}
.pagetop a img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	transform: translate(-50%,-50%)  rotate(45deg);
}
@media screen and (max-width: 1199px) {
	.pagetop {
		position: inherit;
		left: 0;
		top: 0;
		width: 100%;
		height: 42px;
	}
	.pagetop a {
		width: 100%;
		height: 42px;
		border-radius: 0;
		transform: rotate(0);
	}
	.pagetop a:hover {
		border-radius: 0;
	}
	.pagetop a img {
		display: none;
	}
	.pagetop a:after {
		content: "PAGE TOP";
		color: #fff;
		line-height: 42px;
	}
}


/*
   ===================================================================================
   ------------------------------------- main ------------------------------------
   ===================================================================================
*/
main.top {
	padding-top: 100px;
}

/* --------------------------------------------------------- mainvisual */
#mainvisual {
  position: relative;
  width: 100%;
  height: 40vw;
  margin: 0 auto;
  max-height: 870px;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
  background-position: right;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.swiper-wrapper .txt {
	position: absolute;
	height: auto;
	top: 50%;
	left: 12.5%;
	-webkit-transform: translateY(-40%);
	-moz-transform: translateY(-40%);
	-ms-transform: translateY(-40%);
	transform: translateY(-40%);
	font-weight: bold;
	font-size: 2.35vw;
	letter-spacing: 0;
	opacity: 1;
	font-family: 'Comic Sans MS', 'MV Boli', sans-serif;
	line-height: 1.5em;
	width: 40vw;
}
.swiper-pagination-bullets {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.swiper-pagination-bullet {
	background-color: transparent;
	opacity: 1.0;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    font-size: 0;
    margin: 0 7px;
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid #d88f98;
    border-radius: 100%;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #d85077;
    border: 1px solid #d85077;
}
@media (max-width: 767px) {
  .swiper-wrapper .txt {
    right:0;
  }
  .swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white,
  .swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-size: 30px 30px;
  }
}
@media (max-width: 479px) {
  .swiper-wrapper .txt {
    font-size: 3vw;
    right: 2%;
  }
  .swiper-wrapper .txt span {
    padding: 0;
  }
  .swiper-wrapper .sentence span {
    font-size: 2.5vw;
  }
  .swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white,
  .swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    display: none;
  }
}
.swiper-wrapper .swiper-slide-active .txt {
  opacity: 1;
  animation-name: slidetxtIn;
  -webkit-animation-name: slidetxtIn;
  animation-duration: .5s;
  -webkit-animation-duration: .5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slidetxtIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slidetxtIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}



/*
   ===================================================================================
   ------------------------------------- contents ------------------------------------
   ===================================================================================
*/
#page-title {
	margin-bottom: 70px;
}
#page-title section {
	background-color: #eaeaea;
}
#page-title h1 {
	text-align: center;
	color: #555;
	line-height: 155px;
	font-weight: normal;
}

/*
   ===================================================================================
   -------------------------------------- parts --------------------------------------
   ===================================================================================
*/
main h2 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #d88f98;
	text-align: center;
	margin-bottom: 1em;
	font-weight: 500;
	letter-spacing: 10px;
}

main h3 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #db6783;
	text-align: center;
	margin-bottom: 1em;
	font-weight: 500;
}
main h4 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #d88f98;
	text-align: center;
	margin-bottom: 1em;
	font-weight: 500;
}

main hr.space {
	border: 0;
	height: 1px;
	margin-bottom: 50px;
}


/* --------------------------------------------------------- paragraph */
.paragraph-left {
	text-align: left;
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.paragraph-center {
	text-align: center;
	width:70%;
	min-width: 1360px; /* adjust */
	margin:0 auto 2em auto;
}
.paragraph-right {
	text-align: right;
	width:70%;
	min-width: 1360px; /* adjust */
	margin:0 auto 2em auto;
}

@media screen and (max-width: 1399px) {
	.paragraph-left {
    	width: 90%;
    	min-width: auto;
	}
	.paragraph-center {
    	width: 90%;
    	min-width: auto;
	}
	.paragraph-right {
    	width: 90%;
    	min-width: auto;
	}
}


/* --------------------------------------------------------- blockquote */
blockquote {
	background-color: #e5e1da;
	box-sizing: border-box;
	padding: 50px;
	width:70%;
	min-width: 1360px;
	margin:0 auto 20px auto;
}
@media screen and (max-width: 1399px) {
	blockquote {
    	width: 90%;
    	min-width: auto;
		margin:0 auto 20px auto;
    }
}

/* ---------------------------------------------------------------- hr */
hr {
	border: 0;
	border-bottom: 1px dotted #d88f98;
	width:70%;
	min-width: 1360px;
	margin:0 auto;
}
@media screen and (max-width: 1399px) {
	hr {
    	width: 90%;
    	min-width: auto;
    	margin: 0 auto;
    }
}


/* -------------------------------------------------------------- list */
.list {
	border-top: 1px dotted #d88f98;
	border-bottom: 1px dotted #d88f98;
	width:70%;
	min-width: 1360px;
	margin:0 auto;
	padding: 1.5em;
	box-sizing: border-box;
}
.list li {
	box-sizing: border-box;
	padding: 1em 0 1em 2em;
	position: relative;
}
.list li:before {
	content: "";
	background: url(../images/icon-list.png) center top no-repeat;
	position: absolute;
	left: 0;
	top: 26px;
	width: 15px;
	height: 13px;
}
.list li a {
	color: #db6783;
	text-decoration: underline;
}
.list li a:hover {
	color: #444;
	text-decoration: none;
}
@media screen and (max-width: 1399px) {
	.list {
    	width: 90%;
    	min-width: auto;
    	margin: 0 auto;
	}
}

/* -------------------------------------------------------------- table.vl2 */
table.hl2 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
table.hl2 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 50%;
	line-height: 1.5em;
}
table.hl2 th:first-of-type {
	border-right: 1px solid #fff;
}
table.hl2 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	padding: 15px;
	line-height: 1.5em;
}
table.hl2 tr td:first-of-type {
	border-right: 1px solid #eaeaea;
}

@media screen and (max-width: 1399px) {
	table.hl2 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
}

/* -------------------------------------------------------------- table.hl3 */
table.hl3 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
table.hl3 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 33.3%;
	border-right: 1px solid #fff;
	line-height: 1.5em;
}
table.hl3 th:last-of-type {
	border-right: 0;
}
table.hl3 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	padding: 15px;
	line-height: 1.5em;
}
table.hl3 tr td:last-of-type {
	border-right: 0;
}
@media screen and (max-width: 1399px) {
	table.hl3 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
}

/* -------------------------------------------------------------- table.hl4 */
table.hl4 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
table.hl4 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 25%;
	border-right: 1px solid #fff;
	line-height: 1.5em;
}
table.hl4 th:last-of-type {
	border-right: 0;
}
table.hl4 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	padding: 15px;
	line-height: 1.5em;
}
table.hl4 tr td:last-of-type {
	border-right: 0;
}
@media screen and (max-width: 1399px) {
	.scroll {
		overflow: auto;
		white-space: nowrap;
		width:90%;
		margin: 0 auto;
	}
	table.hl4 {
		width:100%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.hl4 th {
		width: 33.3%;
	}
}

/* -------------------------------------------------------------- table.hl5 */
table.hl5 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
table.hl5 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 20%;
	border-right: 1px solid #fff;
	line-height: 1.5em;
}
table.hl5 th:last-of-type {
	border-right: 0;
}
table.hl5 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	padding: 15px;
	line-height: 1.5em;
}
table.hl5 tr td:last-of-type {
	border-right: 0;
}
@media screen and (max-width: 1399px) {
	.scroll {
		overflow: auto;
		white-space: nowrap;
		width:90%;
		margin: 0 auto;
	}
	table.hl5 {
		width:100%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.hl5 th {
		width: 33.3%;
	}
}

/* -------------------------------------------------------------- table.hl6 */
table.hl6 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
table.hl6 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: calc(100% / 6);
	border-right: 1px solid #fff;
	line-height: 1.5em;
}
table.hl6 th:last-of-type {
	border-right: 0;
}
table.hl6 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	padding: 15px;
	line-height: 1.5em;
}
table.hl6 tr td:last-of-type {
	border-right: 0;
}
@media screen and (max-width: 1399px) {
	.scroll {
		overflow: auto;
		white-space: nowrap;
		width:90%;
		margin: 0 auto;
	}
	table.hl6 {
		width:100%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.hl6 th {
		width: 33.3%;
	}
}

/* -------------------------------------------------------------- table.vl2 */
table.vl2 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.vl2 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 50%;
	line-height: 1.5em;
}
table.vl2 th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.vl2 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	line-height: 1.5em;
}

@media screen and (max-width: 1399px) {
	table.vl2 {
		width:90%;
		min-width: auto;
	}
}

@media screen and (max-width: 1199px) {
	table.vl2 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.vl2 th {
		display: block;
		width: 100%;
	}
	table.vl2 td {
		display: block;
		width: 100%;
	}
}

/* -------------------------------------------------------------- table.vl3 */
table.vl3 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.vl3 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 33.3%;
	line-height: 1.5em;
}
table.vl3 th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.vl3 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	width: 33.3%;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	line-height: 1.5em;
}
table.vl3 tr td:last-of-type {
	border-right: 0;
}

@media screen and (max-width: 1399px) {
	table.vl3 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
}

@media screen and (max-width: 1199px) {
	table.vl3 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.vl3 th {
		display: block;
		width: 100%;
	}
	table.vl3 td {
		display: block;
		width: 100%;
		border-right: 0;
	}
}

/* -------------------------------------------------------------- table.vl4 */
table.vl4 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.vl4 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 25%;
	line-height: 1.5em;
}
table.vl4 th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.vl4 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	width: 25%;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	line-height: 1.5em;
}
table.vl4 tr td:last-of-type {
	border-right: 0;
}

@media screen and (max-width: 1399px) {
	table.vl4 {
		width:100%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
}

@media screen and (max-width: 1199px) {
	table.vl4 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.vl4 th {
		display: block;
		width: 100%;
	}
	table.vl4 td {
		display: block;
		width: 100%;
		border-right: 0;
	}
}

/* -------------------------------------------------------------- table.vl5 */
table.vl5 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.vl5 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 20%;
	line-height: 1.5em;
}
table.vl5 th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.vl5 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	width: 20%;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	line-height: 1.5em;
}
table.vl5 tr td:last-of-type {
	border-right: 0;
}

@media screen and (max-width: 1399px) {
	table.vl5 {
		width:100%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
}

@media screen and (max-width: 1199px) {
	table.vl5 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.vl5 th {
		display: block;
		width: 100%;
	}
	table.vl5 td {
		display: block;
		width: 100%;
		border-right: 0;
	}
}

/* -------------------------------------------------------------- table.vl6 */
table.vl6 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.vl6 th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: calc(100% / 6);
	line-height: 1.5em;
}
table.vl6 th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.vl6 td {
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	width: calc(100% / 6);
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	line-height: 1.5em;
}
table.vl6 tr td:last-of-type {
	border-right: 0;
}

@media screen and (max-width: 1399px) {
	table.vl6 {
		width:100%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
}

@media screen and (max-width: 1199px) {
	table.vl6 {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.vl6 th {
		display: block;
		width: 100%;
	}
	table.vl6 td {
		display: block;
		width: 100%;
		border-right: 0;
	}
}

/* ---------------------------------------------------------- img-txt-h1-left */
.img-txt-h1-left {
	width: 84%;
	min-width: 1360px;
	margin: 0 auto 2em 0;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	box-direction : reverse;
	box-orient : horizontal;
	flex-direction : row-reverse;
	align-items: center;
}
.img-txt-h1-left dt {
	width: 48%;
	margin: 0 8% 0 0;
}
.img-txt-h1-left dd {
	width: 44%;
}
.img-txt-h1-left dd em {
	font-weight: 500;
	color: #db6783;
	display: block;
}

@media screen and (max-width: 1399px) {
	.img-txt-h1-left{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-txt-h1-left {
		display: block;
		min-width: auto;
		width: 90%;
		margin: 0 auto 2em auto;
	}
	.img-txt-h1-left dt {
		width: 100%;
		margin: 0;
	}
	.img-txt-h1-left dd {
		width: 100%;
		margin: 0 0 1em 0;
	}
}

/* ---------------------------------------------------------- img-txt-h2-left */
.img-txt-h2-left {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.img-txt-h2-left dl {
	width: 47%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	box-direction : reverse;
	box-orient : horizontal;
	flex-direction : row-reverse;
	align-items: center;
}
.img-txt-h2-left dt {
	width: 51.5%;
}
.img-txt-h2-left dd {
	width: 45.45%;
}
.img-txt-h2-left dd em {
	font-weight: 500;
	color: #db6783;
	display: block;
}

@media screen and (max-width: 1399px) {
	.img-txt-h2-left{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-txt-h2-left {
		display: block;
		min-width: auto;
		width: 90%;
		margin: 0 auto 2em auto;
	}
	.img-txt-h2-left dl {
		display: block;
		width: 100%;
		margin: 0 0 2em 0;
	}
	.img-txt-h2-left dt {
		width: 100%;
	}
	.img-txt-h2-left dd {
		width: 100%;
		margin: 0 0 1em 0;
	}
}

/* ---------------------------------------------------------- img-txt-h3-left */
.img-txt-h3-left {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.img-txt-h3-left dl {
	width: 31%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	box-direction : reverse;
	box-orient : horizontal;
	flex-direction : row-reverse;
	align-items: center;
}
.img-txt-h3-left dt {
	width: 46%;
}
.img-txt-h3-left dd {
	width: 52%;
}
.img-txt-h3-left dd em {
	font-weight: 500;
	color: #db6783;
	display: block;
}

@media screen and (max-width: 1399px) {
	.img-txt-h3-left{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-txt-h3-left {
		display: block;
		min-width: auto;
		width: 90%;
		margin: 0 auto 2em auto;
	}
	.img-txt-h3-left dl {
		display: block;
		width: 100%;
		margin: 0 0 2em 0;
	}
	.img-txt-h3-left dt {
		width: 100%;
	}
	.img-txt-h3-left dd {
		width: 100%;
		margin: 0 0 1em 0;
	}
}

/* ---------------------------------------------------------- img-txt-h1-right */
.img-txt-h1-right {
	width: 84%;
	min-width: 1360px;
	margin: 0 0 2em auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	align-items: center;
}
.img-txt-h1-right dt {
	width: 48%;
	margin: 0 0 0 8%;
}
.img-txt-h1-right dd {
	width: 44%;
}
.img-txt-h1-right dd em {
	font-weight: 500;
	color: #db6783;
	display: block;
}

@media screen and (max-width: 1399px) {
	.img-txt-h1-right{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-txt-h1-right {
		display: block;
		min-width: auto;
		width: 90%;
		margin: 0 auto 2em auto;
	}
	.img-txt-h1-right dt {
		width: 100%;
		margin: 0;
	}
	.img-txt-h1-right dd {
		width: 100%;
		margin: 0 0 1em 0;
	}
}

/* ---------------------------------------------------------- img-txt-h2-left */
.img-txt-h2-right {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.img-txt-h2-right dl {
	width: 47%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	align-items: center;
}
.img-txt-h2-right dt {
	width: 51.5%;
}
.img-txt-h2-right dd {
	width: 45.45%;
}
.img-txt-h2-right dd em {
	font-weight: 500;
	color: #db6783;
	display: block;
}

@media screen and (max-width: 1399px) {
	.img-txt-h2-right{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-txt-h2-right {
		display: block;
		min-width: auto;
		width: 90%;
		margin: 0 auto 2em auto;
	}
	.img-txt-h2-right dl {
		display: block;
		width: 100%;
		margin: 0 0 2em 0;
	}
	.img-txt-h2-right dt {
		width: 100%;
	}
	.img-txt-h2-right dd {
		width: 100%;
		margin: 0 0 1em 0;
	}
}

/* ---------------------------------------------------------- img-txt-h3-left */
.img-txt-h3-right {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.img-txt-h3-right dl {
	width: 31%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	align-items: center;
}
.img-txt-h3-right dt {
	width: 46%;
}
.img-txt-h3-right dd {
	width: 52%;
}
.img-txt-h3-right dd em {
	font-weight: 500;
	color: #db6783;
	display: block;
}

@media screen and (max-width: 1399px) {
	.img-txt-h3-right{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-txt-h3-right {
		display: block;
		min-width: auto;
		width: 90%;
		margin: 0 auto 2em auto;
	}
	.img-txt-h3-right dl {
		display: block;
		width: 100%;
		margin: 0 0 2em 0;
	}
	.img-txt-h3-right dt {
		width: 100%;
	}
	.img-txt-h3-right dd {
		width: 100%;
		margin: 0 0 1em 0;
	}
}


/* ---------------------------------------------------------- btn-left */
p.btn-left {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
p.btn-left a {
	display: block;
	text-align: center;
	width: 370px;
	height: 70px;
	margin: 0 auto 0 0;
	line-height: 70px;
	color: #fff;
	background-color: #555;
	border: 1px solid #555;
}
p.btn-left a:hover {
	color: #d37b1c;
	border: 1px solid #d37b1c;
	background-color: #fff;
}

@media screen and (max-width: 1399px) {
	p.btn-left{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	p.btn-left {
		width: 90%;
		min-width: auto;
	}
	p.btn-left a {
		width: 100%;
		max-width: 370px;
		margin: 0 auto;
	}
}

/* ---------------------------------------------------------- btn-center */
p.btn-center {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
p.btn-center a {
	display: block;
	text-align: center;
	width: 370px;
	height: 70px;
	margin: 0 auto;
	line-height: 70px;
	color: #fff;
	background-color: #555;
	border: 1px solid #555;
}
p.btn-center a:hover {
	color: #d37b1c;
	border: 1px solid #d37b1c;
	background-color: #fff;
}

@media screen and (max-width: 1399px) {
	p.btn-center{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	p.btn-center {
		width: 90%;
		min-width: auto;
	}
	p.btn-center a {
		width: 100%;
		max-width: 370px;
		margin: 0 auto;
	}
}
/* ---------------------------------------------------------- btn-right */
p.btn-right {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
p.btn-right a {
	display: block;
	text-align: center;
	width: 370px;
	height: 70px;
	margin: 0 0 0 auto;
	line-height: 70px;
	color: #fff;
	background-color: #555;
	border: 1px solid #555;
}
p.btn-right a:hover {
	color: #d37b1c;
	border: 1px solid #d37b1c;
	background-color: #fff;
}

@media screen and (max-width: 1399px) {
	p.btn-right{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	p.btn-right {
		width: 90%;
		min-width: auto;
	}
	p.btn-right a {
		width: 100%;
		max-width: 370px;
		margin: 0 auto;
	}
}

/* ---------------------------------------------------------- txt-link-left */
.txt-link-left {
	text-align: left;
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.txt-link-left a {
	color: #db6783;
	text-decoration: underline;
}
.txt-link-left a:hover {
	color: #444;
	text-decoration: none;
}

@media screen and (max-width: 1399px) {
	.txt-link-left {
		width: 90%;
		min-width: auto;
	}
}

@media screen and (max-width: 479px) {
	.txt-link-left {
		text-align: center;
	}
}

/* ---------------------------------------------------------- txt-link-center */
.txt-link-center {
	text-align: center;
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.txt-link-center a {
	color: #db6783;
	text-decoration: underline;
}
.txt-link-center a:hover {
	color: #444;
	text-decoration: none;
}

@media screen and (max-width: 1399px) {
	.txt-link-center {
		width: 90%;
		min-width: auto;
	}
}

@media screen and (max-width: 479px) {
	.txt-link-center {
		text-align: center;
	}
}

/* ---------------------------------------------------------- txt-link-right */
.txt-link-right {
	text-align: right;
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.txt-link-right a {
	color: #db6783;
	text-decoration: underline;
}
.txt-link-right a:hover {
	color: #444;
	text-decoration: none;
}

@media screen and (max-width: 1399px) {
	.txt-link-right {
		width: 90%;
		min-width: auto;
	}
}

@media screen and (max-width: 479px) {
	.txt-link-right {
		text-align: center;
	}
}


/* ---------------------------------------------------------- txt-link-list */
p.txt-link-left.txt-link-list a{
  display: inline-block;
  margin-right: 1em;
}

p.txt-link-center.txt-link-list a{
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

p.txt-link-right.txt-link-list a{
  display: inline-block;
  margin-left: 1em;
}

@media screen and (max-width: 479px) {
  p.txt-link-left.txt-link-list a{
    margin-left: 0.5em;
    margin-right: 0.5em;
  }

  p.txt-link-center.txt-link-list a{
    margin-left: 0.5em;
    margin-right: 0.5em;
  }

  p.txt-link-right.txt-link-list a{
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}


/* ---------------------------------------------------------- btn-background */
.btn-background {
	background-image: center top no-repeat;
	height: 330px;
	position: relative;
	z-index: 1;
	margin: 0 auto 2em auto;
}
.btn-background:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,0.4);
	z-index: 2;
}
.btn-background p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.btn-background p a {
	display: block;
	color: #fff;
	width: 370px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border: 1px solid #fff;
}
.btn-background p a:hover {
	background: #f7f7f7;
	border: 1px solid #f7f7f7;
	color: #444;
}
@media screen and (max-width: 479px) {
	.btn-background {
		height: 230px;
	}
	.btn-background p {
		width: 80%;
	}
	.btn-background p a {
		width: 100%;
	}
}


/* --------------------------------------------------------- news */
#news {
	background-color: #eaeaea;
	padding: 80px 0;
	margin: 0 0 2em 0;
}
#news table {
	width:70%;
	min-width: 1360px;
	margin:0 auto;
}
#news tbody {
	width: 100%;
	overflow: hidden;
}
#news tr {
	float: left;
	display: block;
	background-color: #fff;
	width: 23%;
	box-sizing: border-box;
	margin-right: calc(7.9% / 3);
	border: 2px solid #fff;
	transition: .3s ease all;
}
#news tr:hover {
	border: 2px solid #555;
	transition: .3s ease all;
}
#news tr.nolink:hover {
	border: 2px solid #fff;
}
#news tr:nth-of-type(4n) {
	margin-right: 0;
}
#news th {
	text-align: left;
	display: block;
	color: #d88f98;
	font-weight: bold;
	padding: 20px 20px 0 20px;
}
#news td {
	display: block;
}
#news td a {
	display: block;
	color: #555;
	height: 100%;
	padding: 0 20px 20px 20px;
	box-sizing: border-box;
}
#news tr.nolink td {
	padding: 0 20px 20px 20px;
}

@media screen and (max-width: 1399px) {
	#news table{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	#news {
		padding: 40px 0;
	}
	#news table {
		width: 90%;
		min-width: 0;
	}
	#news tbody {
		display: block;
    	width: 100%;
    	min-width: auto;
    	margin: 0 auto;
	}
	#news tr {
		float: none;
		display: block;
		width: 100%;
		margin: 0 0 20px 0;
	}
	#news th {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	#news td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
}


/* --------------------------------------------------------- img-text1 */
.img-text1 {
	width:50%;
	min-width: 1000px;
	margin:0 auto 2em auto;
}
.img-text1 a {
	color: #444;
}
.img-text1 figure {
	margin: 0 0 20px 0;
	position: relative;
}
.img-text1 figure:after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}

.img-text1 a figure:after {
	transition: .3s ease all;
}
.img-text1 a:hover figure:after {
	background: none;
	transition: .3s ease all;
}
.img-text1 h3 {
	text-align: left;
	margin-bottom: 0;
}
@media screen and (max-width: 1399px) {
	.img-text1 {
		width: 90%;
		min-width: auto;
	}
}

/* --------------------------------------------------------- img-text2 */
.img-text2 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.img-text2 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	padding: 0 45px;
}
.img-text2 li {
	width: 46.5%;
}
.img-text2 li a {
	display: block;
	color: #555;
}
.img-text2 figure {
	position: relative;
	margin-bottom: 12px;
}
.img-text2 figure:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.img-text2 li a figure:after {
	transition: .3s ease all;
}
.img-text2 li a:hover figure:after {
	background: none;
}
.img-text2 em {
	display: block;
	color: #db6783;
}

@media screen and (max-width: 1399px) {
	.img-text2{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-text2 {
    	width: 90%;
    	min-width: auto;
	}
	.img-text2 ul {
		display: block;
		padding: 0;
	}
	.img-text2 li {
		width: 100%;
		margin: 0 auto 40px auto;
		padding-bottom: 40px;
		border-bottom: 1px dotted #232323;
	}
	.img-text2 li figure {
		width: 100%;
		max-width: 650px;
		margin: 0 auto 25px auto;
	}
	.img-text2 li em,
	.img-text2 li span {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
		display: block;
	}
}

/* --------------------------------------------------------- img-text3 */
.img-text3 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.img-text3 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	padding: 0 45px;
}
.img-text3 li {
	width: 320px;
}
.img-text3 li a {
	display: block;
	color: #555;
}
.img-text3 figure {
	position: relative;
	margin-bottom: 12px;
}
.img-text3 figure:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.img-text3 li a figure:after {
	transition: .3s ease all;
}
.img-text3 li a:hover figure:after {
	background: none;
}
.img-text3 em {
	display: block;
	color: #db6783;
	text-align: center;
}

@media screen and (max-width: 1399px) {
	.img-text3{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-text3 {
    	width: 90%;
    	min-width: auto;
	}
	.img-text3 ul {
		display: block;
		padding: 0;
	}
	.img-text3 li {
		width: 100%;
		margin: 0 auto 40px auto;
		padding-bottom: 40px;
		border-bottom: 1px dotted #232323;
	}
	.img-text3 li figure {
		width: 100%;
		max-width: 320px;
		margin: 0 auto 25px auto;
	}
	.img-text3 li em,
	.img-text3 li span {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		display: block;
	}
}


/* --------------------------------------------------------- img-text4 */
.img-text4 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.img-text4 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	padding: 0 45px;
}
.img-text4 li {
	width: 300px;
}
.img-text4 li a {
	display: block;
	color: #555;
}
.img-text4 figure {
	position: relative;
	margin-bottom: 12px;
}
.img-text4 figure:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.img-text4 li a figure:after {
	transition: .3s ease all;
}
.img-text4 li a:hover figure:after {
	background: none;
}
.img-text4 em {
	display: block;
	color: #db6783;
	text-align: center;
}

@media screen and (max-width: 1399px) {
	.img-text4{
		min-width: 1160px;
	}

	.img-text4 li{
		width: 250px;
	}
}

@media screen and (max-width: 1199px) {
	.img-text4{
		min-width: auto;
	}

	.img-text4 ul{
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding: 0;
		list-style: none;
		flex-flow: wrap;
	}
	.img-text4 li{
		width: 45%;
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 767px) {
	.img-text4 {
    	width: 90%;
    	min-width: auto;
	}
	.img-text4 ul {
		display: block;
		padding: 0;
	}
	.img-text4 li {
		width: 100%;
		margin: 0 auto 40px auto;
		padding-bottom: 40px;
		border-bottom: 1px dotted #232323;
	}
	.img-text4 li figure {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 25px auto;
	}
	.img-text4 li em,
	.img-text4 li span {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		display: block;
	}
}

/* --------------------------------------------------------- img-text-in1 */
.img-text-in1 {
	width:50%;
	min-width: 1000px;
	margin:0 auto 2em auto;
	position: relative;
}
.img-text-in1 a {
	color: #444;
}
.img-text-in1 figure {
	margin: 0 0 0 0;
	position: relative;
}
.img-text-in1 figure:after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}

.img-text-in1 a figure:after {
	transition: .3s ease all;
}
.img-text-in1 a:hover figure:after {
	background: none;
	transition: .3s ease all;
}
.img-text-in1 div {
	position: absolute;
	width: 60%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img-text-in1 h3 {
	text-align: center;
	margin-bottom: 0;
	color: #fff;
}
.img-text-in1 p {
	color: #fff;
}
@media screen and (max-width: 1199px) {
	.img-text-in1 {
		width: 90%;
		min-width: auto;
	}
	.img-text-in1 div {
		position: inherit;
		transform: translate(0,0);
		width: 100%;
	}
	.img-text-in1 h3 {
		color: #db6783;
		text-align: left;
	}
	.img-text-in1 p {
		color: #444;
	}
}

/* --------------------------------------------------------- img-text-in2 */
.img-text-in2 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.img-text-in2 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	padding: 0 45px;
}
.img-text-in2 li {
	width: 46.5%;
	position: relative;
}
.img-text-in2 li a {
	display: block;
	color: #fff;
}
.img-text-in2 figure {
	position: relative;
	margin: 0;
}
.img-text-in2 figure:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.img-text-in2 li a figure:after {
	transition: .3s ease all;
}
.img-text-in2 li a:hover figure:after {
	background: none;
}
.img-text-in2 ins {
	position: absolute;
	width: 60%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img-text-in2 em {
	display: block;
	color: #fff;
}
.img-text-in2 span {
	color: #fff;
}

@media screen and (max-width: 1399px) {
	.img-text-in2{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-text-in2 {
    	width: 90%;
    	min-width: auto;
    }
	.img-text-in2 ul {
		display: block;
		padding: 0;
	}
	.img-text-in2 li {
		width: 100%;
		margin: 0 auto 40px auto;
		padding-bottom: 40px;
		border-bottom: 1px dotted #232323;
	}
	.img-text-in2 li figure {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
	}
	.img-text-in2 ins {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0,0);
	}
	.img-text-in2 li em {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
		display: block;
		color: #db6783;
		text-align: left;
	}
	.img-text-in2 li span {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
		display: block;
		color: #444;
	}
}

/* --------------------------------------------------------- img-text-in3 */
.img-text-in3 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.img-text-in3 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	padding: 0 45px;
}
.img-text-in3 li {
	width: 320px;
	position: relative;
}
.img-text-in3 li a {
	display: block;
	color: #555;
}
.img-text-in3 figure {
	position: relative;
	margin: 0;
}
.img-text-in3 figure:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.img-text-in3 li a figure:after {
	transition: .3s ease all;
}
.img-text-in3 li a:hover figure:after {
	background: none;
}
.img-text-in3 ins {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
}
.img-text-in3 em {
	display: block;
	color: #fff;
	text-align: center;
}
.img-text-in3 span {
	color: #fff;
}

@media screen and (max-width: 1399px) {
	.img-text-in3{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.img-text-in3 {
    	width: 90%;
    	min-width: auto;
	}
	.img-text-in3 ul {
		display: block;
		padding: 0;
	}
	.img-text-in3 li {
		width: 100%;
		margin: 0 auto 40px auto;
		padding-bottom: 40px;
		border-bottom: 1px dotted #232323;
	}
	.img-text-in3 li figure {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.img-text-in3 li ins {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0,0);
	}
	.img-text-in3 li em {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		display: block;
		color: #db6783;
	}
	.img-text-in3 li span {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		display: block;
		color: #444;
	}
}

/* --------------------------------------------------------- img-text-in4 */
.img-text-in4 {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
}
.img-text-in4 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	padding: 0 45px;
}
.img-text-in4 li {
	width: 300px;
	position: relative;
}
.img-text-in4 li a {
	display: block;
	color: #555;
}
.img-text-in4 figure {
	position: relative;
}
.img-text-in4 figure:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.img-text-in4 li a figure:after {
	transition: .3s ease all;
}
.img-text-in4 li a:hover figure:after {
	background: none;
}
.img-text-in4 ins {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
}
.img-text-in4 em {
	display: block;
	color: #fff;
	text-align: center;
}
.img-text-in4 span {
	color: #fff;
}

@media screen and (max-width: 1399px) {
	.img-text-in4{
		min-width: 1160px;
	}

	.img-text-in4 li{
		width: 250px;
	}

	.img-text-in4 ins{
		width: 90%;
	}
}

@media screen and (max-width: 1199px) {
	.img-text-in4{
		min-width: auto;
	}

	.img-text-in4 ul{
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding: 0;
		list-style: none;
		flex-flow: wrap;
	}

	.img-text-in4 li{
		width: 45%;
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 767px) {
	.img-text-in4 {
    	width: 90%;
    	min-width: auto;
	}
	.img-text-in4 ul {
		display: block;
		padding: 0;
	}
	.img-text-in4 li {
		width: 100%;
		margin: 0 auto 40px auto;
		padding-bottom: 40px;
		border-bottom: 1px dotted #232323;
	}
	.img-text-in4 li figure {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
	.img-text-in4 li ins {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0,0);
	}
	.img-text-in4 li em {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		display: block;
		color: #db6783; /* adjust */
	}
	.img-text-in4 li span {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		display: block;
		color: #444;
	}
}

/* ---------------------------------------------------------- large-img */
.large-img {
	height: 330px;
	margin: 0 0 2em 0;
	background: center top no-repeat;
}

/* ---------------------------------------------------------- btn-img */
.btn-img {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	margin: 0 0 2em 0;
}
.btn-img li {
	width: 50%;
}
.btn-img li a {
	display: block;
	position: relative;
}
.btn-img li a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
	z-index: 2;
	transition: .3s ease all;
}
.btn-img li a:hover:after {
	background: none;
	transition: .3s ease all;
}
.btn-img li em {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	z-index: 3;
}


/* ---------------------------------------------------------- greeting */
.greeting {
	position: relative;
	margin: 0 0 2em 0;
}
.greeting:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 100%;
	background-color: #eaeaea;
	z-index: -1;
}
.greeting dl {
	width:70%;
	min-width: 1360px;
	margin:0 auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	box-direction : reverse;
	box-orient : horizontal;
	flex-direction : row-reverse;
}
.greeting dt {
	width: 50%;
	margin: 110px 0;
	position: relative;
}
.greeting dt span {
	position: relative;
	display: block;
}
.greeting dt span:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.4);
}
.greeting dd {
	width: 42%;
}
.greeting dd em {
	display: block;
	color: #d88f98;
	letter-spacing: 0.5em;
	margin-bottom: 0.5em;
}
.greeting dd span {
	display: block;
	padding-top: 1em;
	text-align: right;
}
.greeting dd span ins {
	margin-right: 3em;
}

@media screen and (max-width: 1399px) {
	.greeting dl {
    	width: 70%;
    	min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.greeting {
		overflow: hidden;
	}
	.greeting:before {
		display: none;
	}
	.greeting dl {
		display: block;
    	width: 90%;
    	min-width: auto;
    	margin: 0 auto;
	}
	.greeting dd {
		width: 100%;
	}
	.greeting dd em {
		letter-spacing: 0;
	}
	.greeting dt {
	    width: 100%;
    	margin: 70px -500%;
    	padding: 5vw 500%;
		background-color: #eaeaea;
    }
    .greeting dt:after {
		background-color: transparent;
	}
}

/* ---------------------------------------------------------- greeting2 */
.greeting2 {
	position: relative;
	margin: 0 0 2em 0;
}
.greeting2:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 25%;
	height: 100%;
	background-color: #eaeaea;
	z-index: -1;
}
.greeting2 dl {
	width:70%;
	min-width: 1360px;
	margin:0 auto;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack:justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.greeting2 dt {
	width: 50%;
	margin: 110px 0;
	position: relative;
}
.greeting2 dt span {
	position: relative;
}
.greeting2 dt span:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.4);
}
.greeting2 dd {
	width: 42%;
}
.greeting2 dd em {
	display: block;
	color: #d88f98;
	letter-spacing: 0.5em;
	margin-bottom: 0.5em;
}
.greeting2 dd span {
	display: block;
	padding-top: 1em;
	text-align: right;
}
.greeting2 dd span ins {
	margin-right: 3em;
}

@media screen and (max-width: 1399px) {
	.greeting2 dl {
    	width: 70%;
    	min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	.greeting2 {
		overflow: hidden;
	}
	.greeting2:before {
		display: none;
	}
	.greeting2 dl {
		display: block;
    	width: 90%;
    	min-width: auto;
    	margin: 0 auto;
	}
	.greeting2 dd {
		width: 100%;
	}
	.greeting2 dd em {
		letter-spacing: 0;
	}
	.greeting2 dt {
	    width: 100%;
    	margin: 70px -500%;
    	padding: 5vw 500%;
		background-color: #eaeaea;
    }
    .greeting2 dt:after {
		background-color: transparent;
	}
}


/* -------------------------------------------------------------- company */
table.company {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.company th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 30%;
	line-height: 1.5em;
	white-space: nowrap;
	text-align: left;
}
table.company th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.company td {
	text-align: left;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	line-height: 1.5em;
}

@media screen and (max-width: 1399px) {
	table.company{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	table.company {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.company th {
		display: block;
		width: 100%;
	}
	table.company td {
		display: block;
		width: 100%;
	}
}

/* -------------------------------------------------------------- office */
.office ul {
	border-top: 1px dotted #d88f98;
	border-bottom: 1px dotted #d88f98;
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	padding: 1.5em;
	box-sizing: border-box;
}
.office li {
	box-sizing: border-box;
	padding: 1em 0 1em 2em;
	position: relative;
}
.office li:before {
	content: url(../images/icon-list.png);
	position: absolute;
	left: 0;
}
.office li a {
	color: #d88f98;
	text-decoration: underline;
}
.office li a:hover {
	color: #444;
	text-decoration: none;
}
@media screen and (max-width: 1399px) {
	.office ul {
    	width: 90%;
    	min-width: auto;
    	margin: 0 auto;
	}
}

/* -------------------------------------------------------------- recruit */
table.recruit {
	width:70%;
	min-width: 1360px;
	margin:0 auto 2em auto;
	border-top: 1px solid #eaeaea;
}
table.recruit th {
	background-color: #eaeaea;
	box-sizing: border-box;
	padding: 20px;
	width: 30%;
	line-height: 1.5em;
	white-space: nowrap;
	text-align: left;
}
table.recruit th:first-of-type {
	border-bottom: 1px solid #fff;
}
table.recruit td {
	text-align: left;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	line-height: 1.5em;
}

@media screen and (max-width: 1399px) {
	table.recruit{
		min-width: 1160px;
	}
}

@media screen and (max-width: 1199px) {
	table.recruit {
		width:90%;
		min-width: auto;
		margin:0 auto 2em auto;
	}
	table.recruit th {
		display: block;
		width: 100%;
	}
	table.recruit td {
		display: block;
		width: 100%;
	}
}


/* -------------------------------------------------------------- local-navi02 */
#local-navi02 {
	width:70%;
	min-width: 1360px;
	margin: 0 auto 120px auto;
}
#local-navi02 ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 -8px;
}
#local-navi02 li {
	width: 220px;
	height: 50px;
	text-align: center;
	margin: 0 8px 16px 8px;
}
#local-navi02 li a {
	display: block;
	width: 220px;
	height: 50px;
	border: 1px dotted #c1c1c1;
	font-weight: bold;
	color: #666;
	position: relative;
	line-height: 1.5em;
}
#local-navi02 li a:hover {
	background: #d88f98;
	color: #fff;
	border: 1px dotted #d88f98;
}
#local-navi02 li a:after {
	content: url(../images/icon-local-navi.png);
	position: absolute;
	top: 50%;
	right: 7px;
	width: 9px;
	height: 13px;
	transform: translateY( calc(-50% - 4px));
}
#local-navi02 li a:hover:after {
	content: url(../images/icon-local-navi_hover.png);
}
#local-navi02 li span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#local-navi02 img {
	vertical-align: top;
}

@media screen and (max-width: 1399px) {
	#local-navi02 {
		width:90%;
		min-width: auto;
		margin: 0 auto 100px auto;
	}
}
@media screen and (max-width: 479px) {
	#local-navi02 li {
		width: 100%;
	}
	#local-navi02 li a {
		width: 100%;
	}
}


/* -------------------------------------------------------------- local-navi */
#local-navi {
	width:70%;
	min-width: 1360px;
	margin: 0 auto 120px auto;
}
#local-navi ul {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 -8px;
}
#local-navi li {
	width: 220px;
	height: 70px;
	text-align: center;
	margin: 0 8px 16px 8px;
}
#local-navi li a {
	display: block;
	width: 220px;
	height: 70px;
	background: #fff;
	border: 1px solid #c1c1c1;
	font-weight: bold;
	color: #666;
	position: relative;
	line-height: 1.5em;
}
#local-navi li a:hover {
	background: #d88f98;
	color: #fff;
	border: 1px solid #d88f98;
}
#local-navi li a:after {
	content: url(../images/icon-local-navi.png);
	position: absolute;
	top: 50%;
	right: 7px;
	width: 9px;
	height: 13px;
	transform: translateY( calc(-50% - 4px));
}
#local-navi li a:hover:after {
	content: url(../images/icon-local-navi_hover.png);
}
#local-navi li span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#local-navi img {
	vertical-align: top;
}

@media screen and (max-width: 1399px) {
	#local-navi {
		width:90%;
		min-width: auto;
		margin: 0 auto 100px auto;
	}
}
@media screen and (max-width: 479px) {
	#local-navi li {
		width: 100%;
	}
	#local-navi li a {
		width: 100%;
	}
}



/*
   ===================================================================================
   ------------------------------------- form ------------------------------------
   ===================================================================================
*/
#form {
	margin-bottom: 120px;
}
#form dl {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	padding: 20px 0;
	border-bottom: 1px dotted #d88f98;
}
#form dl:first-of-type {
	border-top: 1px dotted #d88f98;
}
#form dt {
	width: 310px;
	box-sizing: border-box;
	padding: 22px 100px 22px 12px;
	line-height: 1em;
}
#form dd {
	width: calc(100% - 310px);
	box-sizing: border-box;
}
#form dd input,
#form dd select,
#form dd textarea {
	color: #777;
	border: 1px solid #555;
	background-color: #f7f7f7;
	box-sizing: border-box;
}
#form dd input,
#form dd select {
	line-height: 58px;
	height: 58px;
	padding: 0 18px;
}
#form dd textarea {
	height: 134px;
	line-height: 2em;
	padding: 18px;
}

#form dl.required dt {
	position: relative;
}
#form dl.required dt:after {
	content: "必須";
	width: 68px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	background-color: #d85077;
	border-radius: 3px;
	text-align: center;
	position: absolute;
	top: 14px;
	right: 26px;
}
#form dl.name01 dd input {
	width: 660px;
}
#form dl.name02 dd {
	padding: 0 0 0 26px;
}
#form dl.name02 dd span {
	margin: 0 18px 0 0;
}
#form dl.name02 dd input {
	width: 260px;
}
#form dl.name02 dd input:first-of-type {
	margin: 0 46px 0 0;
}
#form dl.furigana01 dd input {
	width: 660px;
}
#form dl.furigana02 dd {
	padding: 0 0 0 10px;
}
#form dl.furigana02 dd span {
	margin: 0 18px 0 0;
}
#form dl.furigana02 dd input {
	width: 260px;
}
#form dl.furigana02 dd input:first-of-type {
	margin: 0 30px 0 0;
}
#form dl.mail01 dd input {
	width: calc(100% - 10px);
}
#form dl.mail02 dd input {
	width: calc(100% - 10px);
}
#form dl.phone01 dd input {
	width: 660px;
}
#form dl.phone02 dd input {
	width: 190px;
}
#form dl.phone02 dd span {
	margin: 0 19px;
}
#form dl.zip01 dd input {
	width: 425px;
}
#form dl.zip02 dd input {
	width: 190px;
}
#form dl.zip02 dd span {
	margin: 0 19px;
}
#form dl.pref dd select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 190px;
	background: url(../images/icon-select.png) no-repeat;
	background-position : right 13px center;
}

select::-ms-expand {
    display: none;
}

#form dl.address dd input {
	width: calc(100% - 10px);
}
#form dl.url dd input {
	width: calc(100% - 10px);
}
#form dd ins {
	display: block;
	padding-top: 1em;
	color: red;
	font-weight: bold;
}
#form dl.name02 dd ins {
	margin-left: -26px;
}
#form dl.furigana02 dd ins {
	margin-left: -10px;
}
#form .sentence {
	padding: 90px 0;
	border-bottom: 1px dotted #d88f98;
}
#form dl.text-1line dd input {
	width: calc(100% - 10px);
}
#form dl.text-multi dd textarea {
	width: calc(100% - 10px);
}

#form dl.radio-button dd input {
	display: none;
}
#form dl.radio-button dd label:focus,
#form dl.radio-button dd label:hover,
#form dl.radio-button dd label:active,
#form dl.radio-button dd input:checked + label {
	color: #444;
}
#form dl.radio-button dd label:focus:before,
#form dl.radio-button dd label:hover:before,
#form dl.radio-button dd label:active:before,
#form dl.radio-button dd input:checked + label:before {
	background: #e2e2e2;
}
#form dl.radio-button dd label {
	line-height: 1;
	position: relative;
	overflow: hidden;
	padding: 0 43px 0 45px;
	line-height: 60px;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
}
#form dl.radio-button dd label:before {
	position: absolute;
	top: 50%;
	left: 9px;
	width: 24px;
	height: 24px;
	content: '';
	background-color: #e2e2e2;
	border-radius: 50%;
	transform: translateY(-50%);
}
#form dl.radio-button dd input:checked + label:after {
	background: #d88f98;
	position: absolute;
	top: 50%;
	left: 9px;
	width: 24px;
	height: 24px;
	content: "";
	border-radius: 50%;
	transform: translateY(-50%) scale(0.5);
}
#form dl.check-box dd {
	font-size: 0;
}
#form dl.check-box dd input {
	display: none;
}
#form dl.check-box dd label:focus,
#form dl.check-box dd label:hover,
#form dl.check-box dd label:active,
#form dl.check-box dd input:checked + label {
	color: #444;
}
#form dl.check-box dd label:focus:before,
#form dl.check-box dd label:hover:before,
#form dl.check-box dd label:active:before,
#form dl.check-box dd input:checked + label:before {
	background: #e2e2e2;
}
#form dl.check-box dd label {
	position: relative;
	overflow: hidden;
	padding: 0 43px 0 45px;
	line-height: 60px;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
}
#form dl.check-box dd label:before {
	position: absolute;
	top: 50%;
	left: 9px;
	width: 24px;
	height: 24px;
	content: '';
	background-color: #e2e2e2;
	border-radius: 3px;
	transform: translateY(-50%);
}
#form dl.check-box dd input:checked + label:after {
	position: absolute;
	top: 50%;
	left: 13.5px;
	width: 15px;
	height: 13px;
	content: "";
	background: url(../images/icon-check.png) center center no-repeat;
	transform: translateY(-50%);
}
#form dl.select-box dd select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 425px;
	background: url(../images/icon-select.png) no-repeat;
	background-position : right 13px center;
}

#form section.policy {
	background-color: #eaeaea;
	padding: 50px;
	margin: 100px 0;
}
#form section.policy p.center {
	text-align: center;
	margin: 0;
	font-size: 0;
}
#form section.policy a {
	display: block;
	text-align: center;
	color: #db6783;
	text-decoration: underline;
}
#form section.policy a:hover {
	text-decoration: none;
}
#form section.policy input {
	display: none;
}
#form section.policy label:focus,
#form section.policy label:hover,
#form section.policy label:active,
#form section.policy input:checked + label {
	color: #444;
}
#form section.policy label:focus:before,
#form section.policy label:hover:before,
#form section.policy label:active:before,
#form section.policy input:checked + label:before {
	background: #fff;
}
#form section.policy label {
	position: relative;
	overflow: hidden;
	padding: 0 43px 0 45px;
	line-height: 60px;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
}
#form section.policy label:before {
	position: absolute;
	top: 50%;
	left: 9px;
	width: 24px;
	height: 24px;
	content: '';
	background-color: #fff;
	border-radius: 3px;
	transform: translateY(-50%);
}
#form section.policy input:checked + label:after {
	position: absolute;
	top: 50%;
	left: 13.5px;
	width: 15px;
	height: 13px;
	content: "";
	background: url(../images/icon-check.png) center center no-repeat;
	transform: translateY(-50%);
}

#form .form-button {
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	box-direction : reverse;
	box-orient : horizontal;
	flex-direction : row-reverse;
}
#form .form-button input {
	display: block;
	width: 280px;
	line-height: 70px;
	text-align: center;
	color: #fff;
	background-color: #555;
	border: 1px solid #555;
	margin: 0 15px;
	cursor: pointer;
	transition: .3s ease all;
}
#form .form-button input:hover {
	background-color: transparent;
	color: #444;
	transition: .3s ease all;
}

section.form-check {
    width: 1360px;
    margin: 50px auto 0 auto;
    text-align: center;
}

section.form-check ul{
  width: 70%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto;
}

section.form-check ul li{
  width: 280px;
}

section.form-check ul li:last-child{
  margin-left: 5%;
}

section.form-check ul li input[type="button"]{
  width: 100%;
  background-color: #555;
	border: 1px solid #555;
	margin: 0 15px;
	cursor: pointer;
	transition: .3s ease all;
	color: #fff;
	line-height: 70px;
}

section.form-check ul li input[type="button"]:hover{
  background-color: transparent;
	color: #444;
	transition: .3s ease all;
}

@media screen and (max-width: 1399px) {
	section.form-check {
		width: 100%;
	}
}

@media screen and (max-width: 1199px) {
	#form dl {
		display: block;
	}
	#form dt {
		width: 100%;
		padding: 22px 100px 10px 0;
	}
	#form dd {
		width: 100%;
		padding: 0 0 22px 0;
	}
	#form dl.required dt:after {
		right: 0;
	}
	#form dd input,
	#form dd select {
		line-height: 2em;
		padding: 5px;
		height: auto;
	}

	#form dl.name01 dd input {
		width: 100%;
	}
	#form dl.name02 dd {
		padding: 0 0 22px 0;
	}
	#form dl.name02 dd input {
		width: calc(50% - 57px);
	}
	#form dl.name02 dd input:first-of-type {
		margin: 0 30px 0 0;
	}
	#form dl.name02 dd span {
		display: inline-block;
		width: 32px;
		margin: 0 10px 0 0;
	}
	#form dl.furigana01 dd input {
		width: 100%;
	}
	#form dl.furigana02 dd {
		padding: 0 0 22px 0;
	}
	#form dl.furigana02 dd input {
		width: calc(50% - 57px);
	}
	#form dl.furigana02 dd span {
		margin: 0 10px 0 0;
	}
	#form dl.mail01 dd input {
		width: 100%;
	}
	#form dl.mail02 dd input {
		width: 100%;
	}
	#form dl.phone01 dd input {
		width: 100%;
	}
	#form dl.phone02 dd input {
		width: calc(33.3% - 19px);
	}
	#form dl.phone02 dd span {
		margin: 0 10px;
	}
	#form dl.zip01 dd input {
		width: 100%;
	}
	#form dl.zip02 dd input {
		width: calc(50% - 14px);
	}
	#form dl.zip02 dd span {
		margin: 0 10px;
	}
	#form dl.pref dd select {
		width: 100%;
	}
	#form dl.address dd input {
		width: 100%;
	}
	#form dl.url dd input {
		width: 100%;
	}
	#form .sentence {
		padding: 60px 0;
	}
	#form dl.text-1line dd input {
		width: 100%;
	}
	#form dl.text-multi dd textarea {
		width: 100%;
	}
	#form dl.radio-button dd label {
		line-height: 24px;
	}
	#form dl.check-box dd label {
		line-height: 24px;
		margin: 0 0 10px 0;
	}
	#form dl.select-box dd select {
		width: 100%;
	}

	#form dl.name02 dd ins {
		margin-left: 0;
	}
	#form dl.furigana02 dd ins {
		margin-left: 0;
	}

	section.form-check ul{
		width: 100%;
	}

	section.form-check ul li input[type="button"]{
		margin: 0;
	}
}

@media screen and (max-width: 479px) {
	#form section.policy {
		padding: 30px;
	}
	#form .form-button {
		display: block;
	}
	#form .form-button input {
		width: 100%;
		margin: 0 0 20px 0;
	}
	#form dl.name02 dd input:first-of-type,
	#form dl.name02 dd input:nth-of-type(2) {
    	width: calc(100% - 42px);
    	margin: 0 0 5px 0;
	}
	#form dl.furigana02 dd input:first-of-type,
	#form dl.furigana02 dd input:nth-of-type(2) {
    	width: calc(100% - 46px);
    	margin: 0 0 5px 0;
	}

	section.form-check ul{
		display: block;
	}

	section.form-check ul li{
		width: 100%;
	}

	section.form-check ul li:last-child{
		margin-left: 0;
	}

	#form .form-check input{
		margin: 0 0 20px 0;
	}

	section.form-check{
		margin: 0;
	}

}


/*
   ===================================================================================
   ------------------------------------- sitemap -------------------------------------
   ===================================================================================
*/
#sitemap {
	width:70%;
	min-width: 1360px;
	margin:0 auto 190px auto;
}
#sitemap li {
	font-weight: bold;
	line-height: 1.5em;
	border-bottom: 1px solid #d88f98;
	padding: 20px 0;
}
#sitemap li.nolink {
	padding: 40px 0 0 36px;
}
#sitemap li a {
	color: #444;
	padding: 20px 36px;
	display: block;
	position: relative;
}
#sitemap li a:hover {
	letter-spacing: 0.1em;
}
#sitemap li a:after {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	content: "";
	width: 9px;
	height: 13px;
	background: url(../images/icon-local-navi.png) no-repeat;
	transition: .3s ease all;
}
#sitemap li a:hover:after {
	right: 0;
	transition: .3s ease all;
}
#sitemap li li {
	border-bottom: 1px solid #bfaa95;
}
#sitemap li li:last-of-type {
	border-bottom: 0;
}

#sitemap li li a {
	color: #444;
	padding: 20px 36px;
	display: block;
	position: relative;
}
#sitemap li.nolink li a {
	padding: 10px 0 10px 36px;
	margin: 10px 0 0 0 ;
}

#sitemap li ul ul {
	margin-left: 36px;
}
#sitemap li li li {
	font-weight: normal;
	border-bottom: 1px dotted #d88f98;
}
#sitemap li li li:last-of-type {
	padding: 20px 0 0 0;
}
#sitemap li.nolink li li:last-of-type {
	border-bottom: 0;
}
#sitemap li.nolink li li a {
	color: #444;
	padding: 10px 16px 10px 16px;
	margin: 0 ;
}
@media screen and (max-width: 1399px) {
	#sitemap {
		width: 90%;
		min-width: auto;
	}
	#sitemap li {
		padding: 20px 0;
	}
	#sitemap li.nolink {
    	padding: 20px 0 0 20px;
	}
	#sitemap li a {
		padding: 20px;
	}
	#sitemap li.nolink li a {
   		padding: 10px 0 10px 20px;
   	}
   	#sitemap li ul ul {
    	margin-left: 20px;
	}
}
