@charset "UTF-8";
/* CSS Document */

/************************
 BASE
*************************/
html {
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS P Gothic, Verdana, sans-serif;
	/* font-family: Noto Sans JP, "ヒラギノ角 Pro W3", "Hiragino Kaku Pro W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif; */
	font-weight: 400;
	font-style: normal;
	font-kerning: auto;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 2.0;
	color: #222;
	background: #f6f6f6;
	overflow-x: hidden;
	letter-spacing: .5px;
	-webkit-font-smoothing: antialiased;
}

.eng {
	font-family: 'Noto Sans', sans-serif;
}

body * {
	box-sizing: border-box;
}

a {
	transition: .5s;
	color: #222;
	cursor: pointer;
}

a:hover {
	opacity: 0.8;
}

ul,
li,
ol {
	list-style: none;
}

img {
	/* display: block; */
	height: auto;
	max-width: 100%;
}

.prepare {
	text-align: center;
	font-weight: bold;
	padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5 {
	/* font-family: Noto Sans JP, "ヒラギノ角 Pro W3", "Hiragino Kaku Pro W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif; */
	font-weight: 500;
}

*:last-child {
	margin-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
	.sp-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.sp-none {
		display: none !important;
	}

	.no-top #mainvisual {
		padding-top: 0;
	}
}


/************************
 .sc-fade
*************************/

.sc-fade {
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 0.8s;
}

.sc-fade.sc-fadein {
	opacity: 1;
	transform: translate(0, 0);
}



/************************
 material
*************************/
.button {
	/* max-width: 350px;
	width: 20%;
	font-size: 1.8rem;
	font-weight: normal;
	margin: auto;
	font-size: 2.0rem;
	padding: 0.5rem 1.6rem;
	color: #333;
	border: 1px solid #fff; */
}

.button-normal {
	background-color: transparent;
	color: #FFF;
	/* border: 1px solid #fff; */
}

.btn_corp .button-normal {
	background-color: #333;
	color: #FFF;
}

.button-primary {
	background-color: #0071bc;
	color: #FFF;
}

.button-caution {
	background-color: transparent;
	color: #FFF;
	/* border: 1px solid #fff; */
}

.button-caution:hover,
.button-primary:hover {
	color: rgba(255, 255, 255, 0.8);
}



/************************
 layout
*************************/

.d-flex {
	display: flex;
	justify-content: center;
}

.d-block {
	display: block;
}

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

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

/**header**/

header {
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	position: fixed;
	background: #fff;
}

.header::before {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	content: "";
	background: #1e489d;
	background: -webkit-gradient(linear, left top, right top, from(#315399), to(#162560));
	background: -o-linear-gradient(left, #315399 0%, #162560 100%);
	background: linear-gradient(90deg, #315399 0%, #162560 100%);
	-webkit-transition: height 0.3s ease-in-out;
	-o-transition: height 0.3s ease-in-out;
	transition: height 0.3s ease-in-out;
}

.header.is-fixed {
	box-shadow: 0px 7px 13px 0px rgba(39, 39, 39, 0.3);
}

.header.is-fixed::before {
	height: 100%;
}

header .container {
	width: 100%;
	max-width: 100%;
	padding: 0 10px;
	background: transparent;
}

header .container .d-flex {
	width: 100%;
	height: 64px;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
}

header .container h1 {
	margin-bottom: 0;
}

header .container h1 img {
	max-width: 185px;
}

header .container h1 a {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
	background: #fff;
	padding: 5px;
}

header .container h1 a span {
	display: inline-block;
	margin-left: 1em;
	display: none;
}

.nav_btn {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
}

.nav_btn li {
	max-width: 140px;
	margin: 0 auto;
	padding: 0 15px;
}

.nav_btn li a {
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	position: relative;
	display: inline-block;
	text-decoration: none;
}

.nav_btn li a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.nav_btn li a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

header .container nav * {
	margin-bottom: 0;
}

header .container nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

header .container nav ul li {
	margin-right: 1rem;
}

header .container nav ul>li:last-child {
	margin-right: 72px;
}

header .container nav ul li a.button {
	font-size: 0.7em;
	padding: 10px;
}

header .container nav ul li a.button img {
	margin-bottom: 0.5em;
}

/**detail**/

.detail header {
	background: #fff;
}

.detail header .container .d-flex {
	padding-left: 0;
}



@media screen and (max-width: 768px) {
	.detail header {
		background: #fff;
	}

	.detail header .container .d-flex {
		justify-content: space-between;
	}
}

/**sp用**/

.sp-gnav {
	top: 0em;
	left: 0;
	z-index: 1000;
	width: 100%;
	position: fixed;
}

.sp-only-header nav ul {
	display: block;
}

.sp-only-header nav ul li a {
	display: block;
	color: #fff;
	padding: 10px 15px;
	text-decoration: none;
	font-weight: 400;
}

.sp-only-header nav ul li a span {
	color: #00bfff;
	font-size: 12px;
	padding: 2px 10px;
	line-height: 35px;
}

.sp-only-header nav ul li {
	border-bottom: 1px dotted #fff;
	margin-bottom: 0;
}

.sp-only-header {
	top: 0em;
	left: 0;
	z-index: 1000;
	width: 100%;
	position: fixed;
}

nav {
	display: block;
	width: 300px;
	transition: all .5s;
	z-index: 3;
	opacity: 1;
}

.open nav {
	left: 0;
	opacity: 1;
}

nav .inner {
	padding: 25px 0px;
}

nav .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav .inner ul li {
	position: relative;
	margin: 0;
	border-bottom: solid 1px rgba(255, 255, 255, 0.15);
}

nav .inner ul li a {
	display: block;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 1em 10px;
	text-decoration: none;
	transition-duration: 0.2s;
	text-align: center;
}

nav .inner ul li a:hover {
	opacity: .8;
}

nav .inner ul li a span {
	color: #fff;
	border-bottom: 1px solid #fff;
	font-size: 10px;
	font-weight: 500;
	padding: 3px 0;
}

nav .inner ul li a img {
	width: 200px;
}

/* detail */
.detail nav {
	width: 250px;
}

@media screen and (max-width: 767px) {
	nav {
		left: -220px;
		width: 260px;
	}

	nav {
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		background: #333;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transition: all .5s;
		z-index: 3;
		opacity: 0;
	}
}

/*============
.toggle_btn
=============*/
.toggle_btn {
	display: block;
	position: fixed;
	top: 18px;
	right: 30px;
	width: 30px;
	height: 30px;
	transition: all .5s;
	cursor: pointer;
	z-index: 3;
}

.toggle_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #333;
	border-radius: 4px;
	transition: all .5s;
}

.toggle_btn span:nth-child(1) {
	top: 4px;
}

.toggle_btn span:nth-child(2) {
	top: 14px;
}

.toggle_btn span:nth-child(3) {
	bottom: 4px;
}

.open .toggle_btn span {
	background-color: #333;
}

.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
	opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
	display: none;
	transition: all .5s;
}

.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .5;
	z-index: 2;
	cursor: pointer;
}

.drawer-overlay {
	z-index: 10;
}

.sp-only ul.d-flex {
	background: #fff;
	border: 1px solid #00bfff;
	margin-top: 4em;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 900;
	width: 100%;
	position: fixed;
}

.sp-only ul.d-flex li {
	padding: 0px 7px 5px;
	margin-bottom: 0;
	border-right: 1px dotted #00bfff;
	width: 100px;
}

.sp-only ul.d-flex li:nth-child(5) {
	border: none;
}

.sp-only ul.d-flex li a {
	color: #00bfff;
	font-size: 2vw;
	padding: 10px 3px;
}

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

	/* detail */
	.detail .sp-only ul.d-flex {
		top: 0;
	}
}

header .container nav ul>li:last-child {
	margin-right: 52px;
}

@media screen and (min-width: 769px) {
	header .container .d-flex {
		height: 42.5px;
		align-items: center;
	}

	header .container h1 img {
		max-width: 255px;
		width: 100%;
		margin: 0 auto;
	}

	header .container h1 a {
		font-size: 2.0rem;
	}

	header .container h1 a span {
		display: inline-block;
		margin-left: 0;
		font-size: 15px;
	}

	header .container {
		padding: 45px 40px;
		background: transparent;
	}

	header .container nav ul li a.button {
		font-size: 0.9em;
		padding: 15px 35px;
		position: relative;
		background: #333;
	}

	header .container nav ul li a.button:hover {
		color: rgba(255, 255, 255, 0.8);
	}

	/* header .container nav ul li .button:before {
	content: "\f105";
	position:absolute;
	left:8px;
	font-family: 'FontAwesome';
} */

	header .container nav ul li a.button img {
		margin-bottom: 0;
	}

	header .container nav ul>li:last-child {
		margin-right: 0;
	}
}

/**footer**/

footer {
	text-align: center;
	/* border-top: 1px solid #fff; */
	padding-top: 3em;
	background: #fff;
}

footer h1 {
	margin-bottom: 10px;
}

footer h1 img {
	max-width: 300px;
	width: 100%;
}

footer .footer_top {

	padding: 0 2.0rem 0;
}

footer .footer_top h1 {
	margin-bottom: 0;
}

footer .footer_top img {
	margin: 0 auto;
	width: 350px;
}

footer .footer_top p,
footer .footer_top a {
	color: #333 !important;
	font-size: 1.2rem;
	text-decoration: none;
	pointer-events: auto;
}

footer .footer_top p {
	margin-top: 8px;
	margin-bottom: 2em !important;
}

footer .footer_btm p {
	font-size: 1.1rem;
	padding: 1.6rem;
	color: #333;
}

footer .footer_table {
	width: 100%;
	max-width: 1000px;
	margin: 20px auto;
	display: flex;
	justify-content: center;
}

footer table {
	width: 100%;
	margin: 0 20px;
}

footer table th {
	width: 25%;
	font-weight: 600;
	font-size: 1.2rem;
}

footer table th::before {
	display: none;
}

footer table td {
	font-weight: 300;
}

footer table th,
footer table td {
	padding: 8px 15px;
	font-size: 1.2rem;
	color: #333;
	font-weight: 500;
	border-bottom: solid 1px rgba(255, 255, 255, 0.15);
}

/***追従するトップへ戻るボタン***/
#page-top {
	position: fixed;
	right: -35px;
	bottom: 55px;
	height: 50px;
	text-decoration: none;
	font-weight: 600;
	transform: rotate(90deg);
	font-size: 1.2em;
	line-height: 3.5rem;
	color: #00bfff;
	padding: 0 0 0 35px;
	border-top: solid 1px;
	letter-spacing: 2px;
	font-family: 'Playfair Display', serif;
}

#page-top::before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 15px;
	border-top: solid 1px;
	transform: rotate(35deg);
	transform-origin: left top;
}

.no-top #mainvisual .img-wrapper .d-flex .copy-box {
	padding: 3%;
}

/***トップへ戻るボタンここまで***/
@media screen and (min-width: 769px) {
	footer .footer_top p {
		font-size: 1.2rem;
		margin-bottom: 2em !important;
	}

	footer .footer_btm p {
		font-size: 1.2rem;
	}
}


/** index #mainvisual **/

#mainvisual {
	width: 100%;
	position: relative;
}

body:not(.no-top) #mainvisual .img-wrapper {
	padding-top: 64px;
	width: 88%;
	max-width: 1664px;
	margin: auto;
}

.txt-wrapper {
	text-align: center;
	background-size: cover;
	color: #4e4e4e;
	position: relative;
}

.txt-wrapper:before {
	content: "";
	width: 100%;
	height: 120px;
	position: absolute;
	top: -120px;
	left: 0;
	z-index: -1;
}

.txt-wrapper h2 strong {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	display: inline-block;
	text-align: center;
	position: relative;
	z-index: 1;
}

.txt-wrapper h2 {
	font-size: 4.8rem;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #4e4e4e;
	text-align: center;
	position: relative;
}

.txt-wrapper h2 span {
	font-size: 2.0rem;
	text-align: center;
	display: block;
}

@media screen and (min-width: 769px) {
	body:not(.no-top) #mainvisual .img-wrapper {
		padding-top: 80px;
	}

	.txt-wrapper h2 {
		font-size: 5.6rem;
	}

}

/** detail #mainvisual **/
.no-top #mainvisual {
	padding-bottom: 0;
	position: relative;
	height: auto;
}

@keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.detail #mainvisual .img-wrapper img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	object-position: 50% 50%;
	animation-name: fadein;
	animation-duration: 2s;
}

.no-top #mainvisual .img-wrapper .d-flex {
	height: 100%;
	flex-flow: column;
	justify-content: space-between;
}

.no-top #mainvisual .img-wrapper {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec01.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail2 {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec02.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail3 {
	background: url("../img/mainImg_rec03.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail4 {
	background: url("../img/mainImg_rec04.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail5 {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec08.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail6 {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec08.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail7 {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec05.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}


.no-top #mainvisual .img-wrapper.detail8 {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec06.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper.detail9 {
	background: linear-gradient(rgba(76, 76, 76, .5), rgba(76, 76, 76, .5)), url("../img/mainImg_rec07.jpg") no-repeat center;
	background-size: cover;
	height: 700px;
	position: relative;
}

.no-top #mainvisual .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation-duration: 2s;
}

.no-top #mainvisual .inner {
	position: relative;
	z-index: 4;
	top: 50%;
}

.no-top #mainvisual .img-wrapper .container {
	max-width: 1728px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 100%;
	width: 90%;
}

.no-top #mainvisual .img-wrapper .icon {
	width: 60%;
	margin: 20px auto 0;
}

.no-top #mainvisual .img-wrapper .d-flex {
	/* height:100%; */
	flex-flow: row;
	justify-content: center;
}

.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 strong {
	font-size: 4rem;
	margin-bottom: 0.25em;
	text-align: center;
	color: #fff;
	font-weight: 600;
	/* font-family: 'Oswald', '游ゴシック' ,'YuGothic' ,'メイリオ' ,'Meiryo' ,'ＭＳ Ｐゴシック' ,sans-serif; */
	letter-spacing: 2px;
}

.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 {
	font-size: 4rem;
	margin-bottom: 0.25em;
	text-align: center;

}

.no-top #mainvisual .img-wrapper .d-flex .maiTit p strong {
	font-size: 5.5rem;
	font-weight: 600;
	letter-spacing: 6px;
	color: #fff;
	text-shadow: 0 0 10px #000;
}

/* detail */

.detail.no-top #mainvisual .img-wrapper .mainvisual-img {
	display: flex;
	width: 100%;
	height: 700px;
}

.detail.no-top #mainvisual .img-wrapper .mainvisual-img .colorback {
	width: 32%;
	background: #333;
}

.detail.no-top #mainvisual .img-wrapper .mainvisual-img .colorback-img {
	width: 68%;
}

.detail.no-top #mainvisual .img-wrapper .mainvisual-img .colorback-img img {
	height: 700px;
}

.detail.no-top #mainvisual .img-wrapper .container {
	height: auto;
}

/* detail end*/

@media screen and (max-width: 768px) {
	.no-top #mainvisual .img-wrapper {
		height: 500px;
	}

	.detail #mainvisual .img-wrapper {
		height: 800px;
	}

	.no-top #mainvisual .img-wrapper img {
		height: 500px;
	}

	.detail.no-top #mainvisual .img-wrapper .mainvisual-img .colorback-img {
		width: 100%;
	}

	.detail.no-top #mainvisual .img-wrapper .container {
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.detail.no-top #mainvisual .img-wrapper .container img {
		height: auto;
	}
}

@media screen and (max-width: 495px) {
	.no-top #mainvisual .img-wrapper img {
		height: 300px;
	}
}

.point_box1 {
	display: flex;
	justify-content: space-between;
	width: 420px;
}

.point_box2 {
	display: flex;
	justify-content: space-between;
	width: 420px;
}

@media screen and (max-width: 767px) {
	header {
		background: #fff;
	}

	.no-top #mainvisual .img-wrapper .container {
		width: 100%;
	}

	.no-top #mainvisual .inner {
		position: relative;
		z-index: 4;
		top: 50%;
	}

	.no-top #mainvisual {
		padding-top: 65px;
	}

	.detail #mainvisual {
		padding-top: 130px;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 {
		/* font-family: "游教科書体"; */
		font-size: 1.4rem;
		color: #fff;
		margin-bottom: 0.25em;
		text-align: center;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 strong {
		text-align: center;
		color: #fff;
		text-shadow: 1px 1px 20px #000;
		font-size: 4rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit p {
		font-size: 1.8rem;
		/* font-family: 'Oswald', '游ゴシック' ,'YuGothic' ,'メイリオ' ,'Meiryo' ,'ＭＳ Ｐゴシック' ,sans-serif; */
		letter-spacing: 2px;
		font-weight: 400;
		text-align: center;
		color: #fff;
		padding: 10px 0 10px 10px;
		border-top: 1px solid #333;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit .kv_koyo {
		padding: 5px 0;
		margin: 0 auto 1em;
		max-width: 200px;
		background: #fff;
		color: #00bfff;
		text-shadow: none;
		border: none;

	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span {
		font-size: 2.5rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
		display: flex;
		justify-content: center;
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li {
		width: 90px;
		height: 90px;
		color: #fff;
		text-align: center;
		font-size: 1.5rem;
		line-height: 1.2;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 400;
		margin: 0 1.5%;
	}
}


@media screen and (max-width:460px) {
	.no-top #welfare .container .fBox .text-box h3 {
		font-size: 1.7rem;
	}

	.no-top #welfare .container .fBox .text-box {
		padding: 25px 10px;
	}
}

@media screen and (min-width: 769px) {
	.no-top #mainvisual {
		position: relative;
	}

	.no-top #mainvisual .img-wrapper .icon {
		position: absolute;
		right: 40px;
		top: 90px;
		width: 18%;
		margin: 0;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
		display: flex;
		justify-content: center;
		/* padding-bottom: 20px; */
		/* padding-top: 20px; */
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li {
		width: 160px;
		height: 160px;
		text-align: center;
		font-size: 1.6rem;
		line-height: 1.4;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		margin: 0 1.5%;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 {
		font-size: 4.8rem;
		margin-bottom: 0.25em;
		text-align: center;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box {
		display: inline-block;
		max-width: 800px;
		width: 100%;
		text-align: center;
		height: 100%;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit p {
		font-size: 2.4rem;
		font-weight: 700;
		max-width: 800px;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
		letter-spacing: 0.07em;
		font-size: 2.3rem;
		color: #fff;
		border-top: 1px solid #fff;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span.price-color {
		color: #fff;
		font-size: 1.8rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span {
		font-size: 3rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span.price-color {
		color: #fff;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li {
		width: 90px;
		height: 90px;
		color: #fff;
		background-color: #fff;
		text-align: center;
		font-size: 1.5rem;
		line-height: 1.2;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 400;
		margin: 0 1.5%;
	}
}

@media screen and (max-width:768px) {
	.no-top #mainvisual {
		padding-top: 65px;
	}

	.detail.no-top #mainvisual {
		padding-top: 6.3em;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 strong {
		text-align: center;
		text-shadow: 1px 1px 20px #fff;
		font-size: 4rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit p {
		font-size: 1.8rem;
		font-weight: 700;
		text-align: center;
		padding: 10px 0 10px 10px;
		border-top: 1px solid #fff;
		background-size: 60%;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit .kv_koyo {
		font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
		display: inline-block;
		padding: 5px 10px;
		margin: 0.5em auto 1em;
		background: #00bfff;
		color: #fff;
		font-weight: 600;
		text-shadow: none;
		border: none;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box {
		/* height: 420px; */
		display: block;
		text-align: center;
		padding: 3%;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span {
		font-size: 2.5rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span.price-color {
		display: inline-block;
		color: #fff;
		font-size: 2rem;
		line-height: 1.8;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
		display: flex;
		justify-content: center;
		/* padding-bottom: 20px; */
		/* padding-top: 20px; */
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li {
		width: 80px;
		height: 80px;
		color: #fff;
		background: #00bfff;
		background-size: cover;
		text-align: center;
		font-size: 1.3rem;
		line-height: 1.2;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 400;
		margin: 0 1%;
		padding: 5px;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li p {
		margin: 0 auto;
	}
}

.wrap {
	padding: 16px;
}

.kv_txt {
	position: relative;
}

.eachTextAnime {
	position: absolute;
	top: 50%;
	left: 5%;
	color: #fff;
	font-size: 2em;
	-webkit-font-smoothing: auto;
	/* font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",sans-serif; */
	font-size: 2.5vw;
	letter-spacing: .2em;
	text-shadow: 0 0 10px #000;
}

.kv_subtxt {
	position: absolute;
	top: 70%;
	left: 5%;
	color: #fff;
	font-size: 1em;
	-webkit-font-smoothing: auto;
	/* font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",sans-serif; */
	font-size: 1.5vw;
	margin-top: 5%;
	text-align: left;
	letter-spacing: .2em;
	/* text-shadow: 0 0 10px #000; */
}

.eachTextAnime span {
	opacity: 0;
}

.eachTextAnime.appeartext span {

	animation: text_anime_on 1s ease-out forwards;
}


@keyframes text_anime_on {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}


	100% {
		opacity: 1;
	}
}

@media screen and (max-width:640px) {
	.wrap {
		width: 100%;
	}

	.text-move {
		font-size: 30px;
	}
}

/** detail pankuzu **/
.no-top .pankuzu {
	position: relative;
	width: 100%;
	z-index: 1;
	font-size: 14px;
	padding: 16px 0;
}

.no-top .pankuzu .inner {
	padding: 0 20px;
}

.no-top .pankuzu * {
	color: #4e4e4e;
}

.no-top .pankuzu li {
	display: inline-block;
	margin-right: 0.8rem;
}

.no-top .pankuzu li:after {
	content: ">";
	padding-left: 0.8rem;
}

.no-top .pankuzu li:last-child:after {
	content: "";
}

@media screen and (min-width: 769px) {
	.no-top .pankuzu {
		padding: 20px 0 0;
	}
}

/** #contents **/
#contents {
	margin-bottom: 10px;
}

#contents section {
	padding: 100px 0 50px;
}

#contents section h2 {
	text-align: center;
	color: #222;
	font-size: 4.8rem;
}

#contents section h2 strong {
	font-size: 10rem;
	line-height: 1.2;
	margin-bottom: 15px;
	color: #00bfff;
	text-align: center;
	position: relative;
	/* text-shadow: 0 0 2px white; */
	z-index: 1;
	font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
	letter-spacing: 4px;
	display: flex;
	align-items: center;
}

#contents section h2 img {
	width: 100px;
	padding: 0 10px;
}

#contents section .about_ttl h2 {
	text-align: left;
	display: flex;
	align-items: center;
	margin-top: 2em;
	animation-duration: 1.5s;

}

#contents section .about_ttl h2:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #333;
	display: block;
	margin-left: .4em;
}

#contents section .about_ttl h2 strong {
	padding-left: 0.5em;
}


#contents section .privacy_ttl h2 {
	text-align: left;
	display: flex;
	align-items: center;
	margin-bottom: 2em !important;
}

#contents section .privacy_ttl h2:after,
#contents section .privacy_ttl h2:before {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #333;
	display: block;
	margin: 0 0.4em;
}

#contents section .privacy_ttl h2 strong {
	padding-left: 0.5em;
	font-size: 7rem;
	margin-bottom: 0;
}


#contents section .thanx_ttl h2 {
	text-align: left;
	display: flex;
	align-items: center;
	margin-bottom: 4em !important;
	margin-top: 5em;
}

#contents section .thanx_ttl h2:after,
#contents section .thanx_ttl h2:before {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #333;
	display: block;
	margin: 0 0.4em;
}

#contents section .thanx_ttl h2 strong {
	padding-left: 0.5em;
	font-size: 7rem;
	margin-bottom: 0;
}


#contents section .recruit_ttl h2 strong {
	padding-right: 0.5em;
}

#contents section .recruit_ttl h2 {
	text-align: right;
	display: flex;
	align-items: center;
	animation-duration: 1.5s;

}

#contents section .recruit_ttl h2:before {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #333;
	display: block;
	margin-right: .4em;
}

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

	#contents section .privacy_ttl h2 strong {
		margin-top: 2em;
		padding-left: 0;
	}

	#contents section h2 {
		font-size: 2.5rem;
	}

	#contents section .privacy_ttl h2:after,
	#contents section .privacy_ttl h2:before {
		margin: 4em 0.4em 0;
	}

	.no-top .pankuzu {
		font-size: 12px;
	}
}

.slideshow {
	position: absolute;
	width: 100vw;
	height: 700px;
	overflow: hidden;
}

.slideshow-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	-webkit-animation-name: kenburns;
	animation-name: kenburns;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 16s;
	animation-duration: 16s;
	opacity: 1;
	transform: scale(1.2);
}

.slideshow-image:nth-child(1) {
	-webkit-animation-name: kenburns-1;
	animation-name: kenburns-1;
	z-index: 3;
}

.slideshow-image:nth-child(2) {
	-webkit-animation-name: kenburns-2;
	animation-name: kenburns-2;
	z-index: 2;
}

.slideshow-image:nth-child(3) {
	-webkit-animation-name: kenburns-3;
	animation-name: kenburns-3;
	z-index: 1;
}

.slideshow-image:nth-child(4) {
	-webkit-animation-name: kenburns-4;
	animation-name: kenburns-4;
	z-index: 0;
}

@-webkit-keyframes kenburns-1 {
	0% {
		opacity: 1;
		transform: scale(1.2);
	}

	1.5625% {
		opacity: 1;
	}

	23.4375% {
		opacity: 1;
	}

	26.5625% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}

	98.4375% {
		opacity: 0;
		transform: scale(1.2117647059);
	}

	100% {
		opacity: 1;
	}
}

@keyframes kenburns-1 {
	0% {
		opacity: 1;
		transform: scale(1.2);
	}

	1.5625% {
		opacity: 1;
	}

	23.4375% {
		opacity: 1;
	}

	26.5625% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}

	98.4375% {
		opacity: 0;
		transform: scale(1.2117647059);
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes kenburns-2 {
	23.4375% {
		opacity: 1;
		transform: scale(1.2);
	}

	26.5625% {
		opacity: 1;
	}

	48.4375% {
		opacity: 1;
	}

	51.5625% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}

@keyframes kenburns-2 {
	23.4375% {
		opacity: 1;
		transform: scale(1.2);
	}

	26.5625% {
		opacity: 1;
	}

	48.4375% {
		opacity: 1;
	}

	51.5625% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}

@-webkit-keyframes kenburns-3 {
	48.4375% {
		opacity: 1;
		transform: scale(1.2);
	}

	51.5625% {
		opacity: 1;
	}

	73.4375% {
		opacity: 1;
	}

	76.5625% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}

@keyframes kenburns-3 {
	48.4375% {
		opacity: 1;
		transform: scale(1.2);
	}

	51.5625% {
		opacity: 1;
	}

	73.4375% {
		opacity: 1;
	}

	76.5625% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}

@-webkit-keyframes kenburns-4 {
	73.4375% {
		opacity: 1;
		transform: scale(1.2);
	}

	76.5625% {
		opacity: 1;
	}

	98.4375% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}

@keyframes kenburns-4 {
	73.4375% {
		opacity: 1;
		transform: scale(1.2);
	}

	76.5625% {
		opacity: 1;
	}

	98.4375% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}

#mainvisual .index_top h1 {
	position: absolute;
	max-width: 800px;
	width: 100%;
	top: 65%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	z-index: 99;
	text-align: center;
	/* font-family: Raleway, sans-serif; */
	font-weight: 600;
	text-transform: uppercase;
	/* background-color: rgba(255, 255, 255, 0.75); */
	box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
	padding: 3em 2em;
	line-height: 1.5;
	font-size: 40px;
	color: #fff;
}

#mainvisual .index_top h1 small {
	display: block;
	text-transform: lowercase;
	font-size: 25px;
}

#mainvisual .index_top h1 small:first-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 0.5em;
}

#mainvisual .index_top h1 small:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-top: 0.5em;
}

#contents section .vision_ttl h2,
#contents section .welfare_ttl h2,
#contents section .message_ttl h2,
#contents section .entry_ttl h2 {
	text-align: right;
	display: flex;
	align-items: center;
	animation-duration: 1.5s;

}

#contents section .vision_ttl h2:before,
#contents section .welfare_ttl h2:before,
#contents section .message_ttl h2:before,
#contents section .entry_ttl h2:before {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #333;
	display: block;
	margin-right: .4em;
}

#contents section .vision_ttl h2 strong,
#contents section .welfare_ttl h2 strong,
#contents section .message_ttl h2 strong,
#contents section .entry_ttl h2 strong {
	font-size: 10rem;
	line-height: 1.2;
	margin-bottom: 40px;
	padding-right: 0.5em;
	color: #00bfff;
	text-align: center;
	position: relative;
	text-shadow: 0 0 2px white;
	z-index: 1;
	font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
	letter-spacing: 4px;
}

#contents section .work_ttl h2,
#contents section .interview_ttl h2,
#contents section .guideline_ttl h2 {
	text-align: left;
	display: flex;
	align-items: center;
	animation-duration: 1.5s;

}

#contents section .work_ttl h2:after,
#contents section .interview_ttl h2:after,
#contents section .guideline_ttl h2:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #333;
	display: block;
	margin-left: .4em;
}

#contents section .work_ttl h2 strong,
#contents section .interview_ttl h2 strong,
#contents section .guideline_ttl h2 strong {
	padding-left: 0.5em;
}

#contents section h2 span {
	font-size: 2.0rem;
	text-align: center;
	display: block;
}

#contents section h2.sp-only {
	clear: both;
}

.no-top #contents section .container {
	max-width: 1584px;
	margin-top: 8em;
}

.offer-wrapper {
	/* height:500px; */
	text-align: center;
}

.offers {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}

.offer {
	width: 200px;
}

.offer img {
	width: 100px;
	margin: 0 10px;
}

/* テキストを中央寄せ */
.box_txt {
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, 0%);
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	width: 85%;
	text-align: center;
}

#message .container {
	position: relative;
	width: 100%;
	height: 100%;
}

#message .container .photoBox {
	position: relative;
	width: 100%;
	padding-left: 37.5vw;
}

#message .container .txtBox {
	/* display: flex; */
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	position: absolute;
	top: 20em;
	left: 15%;
	max-width: 650px;
	/* height: 24em; */
	padding: 4vh 2.5vw 3vh;
	z-index: 1;
	background: #fff;
}

@media screen and (min-width: 769px) {
	#contents section h2 {
		font-size: 2.5rem;
		font-weight: 600;
		letter-spacing: 0px;
	}

	#contents .offer h2 {
		font-size: 1.8rem;
		margin-top: 24px;
	}

	#contents section h2 span {
		font-size: 2.0rem;

	}
}

@media screen and (max-width:1150px) {
	#message .container .txtBox {
		top: 15em;
		width: 70vw;
	}
}

@media screen and (max-width:950px) {
	#message .container .txtBox {
		top: 12em;
		width: 85vw;
	}
}

@media screen and (max-width:950px) {
	#message .container .txtBox {
		top: 11em;
		width: 90vw;
		left: 3em;
	}
}

@media screen and (max-width:768px) {
	#message .container .txtBox {
		top: 11em;
		width: 60vw;
		left: 3em;
	}

	.txt_flex {
		display: block;
	}

	.bg-image {
		background: url(../img/point01.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image2 {
		background: url(../img/point02.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image3 {
		background: url(../img/point03.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image4 {
		background: url(../img/point04.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image5 {
		background: url(../img/point05.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image6 {
		background: url(../img/point06.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image7 {
		background: url(../img/point07.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image8 {
		background: url(../img/point08.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image9 {
		background: url(../img/point09.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	.bg-image10 {
		background: url(../img/point10.jpg) no-repeat center;
		background-size: cover;
		max-width: 450px;
		width: 100%;
		height: 250px;
		position: relative;
		margin: 10px auto;
	}

	/* 画像を暗くするオーバーレイ */
	.bg-image::before,
	.bg-image2::before,
	.bg-image3::before,
	.bg-image4::before,
	.bg-image5::before,
	.bg-image6::before,
	.bg-image7::before,
	.bg-image8::before,
	.bg-image9::before,
	.bg-image10::before {
		content: '';
		/* ↓暗いオーバーレイを半透明で配置 */
		background-color: rgba(0, 0, 0, 0.4);
		/* ↓全体を覆うように配置 */
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: block;
	}

	.bg-image h1,
	.bg-image2 h1,
	.bg-image3 h1,
	.bg-image4 h1,
	.bg-image5 h1,
	.bg-image6 h1,
	.bg-image7 h1,
	.bg-image8 h1,
	.bg-image9 h1,
	.bg-image10 h1 {
		position: absolute;
		top: 20%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #fff;
		font-size: 16px;
		font-weight: 600;
		width: 95%;
		text-align: center;
		border-bottom: 2px solid #fff;
		padding-bottom: 5px;
	}

	/* テキストを中央寄せ */
	.box_txt {
		position: absolute;
		top: 30%;
		left: 50%;
		transform: translate(-50%, 0%);
		color: #fff;
		font-size: 12px;
		font-weight: 400;
		width: 95%;
		text-align: center;
	}
}

@media screen and (max-width:768px) {
	#contents .bg_color {
		padding-bottom: 5em;
	}

	#mainvisual .index_top h1 {
		position: absolute;
		max-width: 800px;
		width: 87%;
		top: 65%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
		z-index: 99;
		text-align: center;
		font-family: Raleway, sans-serif;
		font-weight: 300;
		text-transform: uppercase;
		background-color: rgba(255, 255, 255, 0.75);
		box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
		padding: 3em 1em;
		line-height: 1.5;
		font-size: 18px;
	}

	#mainvisual h1 small {
		display: block;
		text-transform: lowercase;
		font-size: 12px;
	}

	.no-top #contents section .container {
		max-width: 1584px;
		display: block;
		margin: 0 auto;
	}

	.slideshow {
		position: absolute;
		width: 100vw;
		height: 500px;
		overflow: hidden;
	}

	.eachTextAnime {
		position: absolute;
		top: 55%;
		left: 5%;
		color: #fff;
		font-size: 2em;
		-webkit-font-smoothing: auto;
		/* font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",sans-serif; */
		font-size: 1vw;
		letter-spacing: .2em;
	}

	.kv_subtxt {
		position: absolute;
		top: 60%;
		left: 5%;
		color: #fff;
		font-size: 1.3em;
		-webkit-font-smoothing: auto;
		/* font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",sans-serif; */
		font-size: 2.5vw;
		letter-spacing: .1em;
		margin-top: 6vh;
		text-align: left;
		/* text-shadow: 0 0 5px #000; */
	}

	.offer-wrapper {
		margin-top: 40px;
	}

	.offers {
		display: block;
	}

	.offer {
		margin: 0 auto;
	}

	.offer img {
		width: auto;
	}

	.eachTextAnime span {
		opacity: 0;
		font-size: 4vw;
	}

	.eachTextAnime.appeartext span {

		animation: text_anime_on 1s ease-out forwards;
	}


	@keyframes text_anime_on {
		0% {
			opacity: 0;
		}

		50% {
			opacity: 0;
		}


		100% {
			opacity: 1;
		}
	}

	.txt-wrapper {
		padding: 0;
		margin: 0;
	}

	.txt-wrapper h2 strong {
		font-size: 3.6rem;
	}

	.txt-wrapper p {
		text-align: left;
		line-height: 1.8;
		font-size: 13px;
	}

	#contents section {
		padding: 56px 0;
	}

	#contents section h2 strong {
		font-size: 3.6rem !important;
		margin-bottom: 0;
	}

	#contents section .about_ttl h2 {
		margin-bottom: 2em !important;
		margin-top: 5em;
	}

	#contents section .vision_ttl h2 strong {
		font-size: 3.6rem;
		margin-bottom: 0;
	}

	#contents section h2 span {
		font-size: 1.5rem;
	}

	#contents section h2 {
		font-size: 1.6rem;
		letter-spacing: 3px;
		font-weight: 600;
		padding: 2rem 0 1em
	}

	#contents .offer {
		margin-bottom: 3em;
	}

	#contents .offer h2 {
		font-size: 16px;
		font-weight: 600;
		padding: 0;
	}

	#contents section h2 img {
		width: 60px;
		padding: 0 5px;
	}

	.text-box {
		background: #fff;
		padding: 2%;
	}

	.text-box p {
		font-size: 13px;
	}

	.no-top #introduction .container .text-box h2 {
		position: relative;
		padding-bottom: 0.5em;
	}

	/* .no-top #introduction .container .text-box h2:before {
	content: '';
	position: absolute;
	bottom: -5px;
	display: inline-block;
	width: 30px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #00bfff;
	} */
	#contents section .thanx_ttl h2 {
		margin-bottom: 3em !important;
		margin-top: 0;
	}

	#message .container {
		position: relative;
		width: 100%;
		height: 100%;
		padding: 0 20px;
	}

	#message .container .photoBox {
		padding-left: 0;
	}

	#message .container .txtBox {
		position: inherit;
		top: 0;
		left: 0;
		max-width: 1000px;
		width: 100%;
		height: auto;
		padding: 5%;
		z-index: 1;
		background: #fff;
	}

	.no-top #message {
		padding-bottom: 5em !important;
	}

	.privacy_txt {
		padding: 0 20px;
		margin-top: 2em;
	}

	.privacy_txt h3 {
		font-size: 18px;
		text-align: center;
		position: relative;
		padding-bottom: 0.5em;
		margin-bottom: 1.5em;
	}

	.privacy h3:before {
		content: '';
		position: absolute;
		bottom: -5px;
		display: inline-block;
		width: 30px;
		height: 2px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: #00bfff;
	}

	.privacy_txt p {
		font-size: 14px;

	}

	.button {
		/* max-width: 250px;
		width: 40%;
		font-weight: normal;
		margin: 2em auto 0;
		font-size: 1.5rem;
		padding: 0.4rem;
		color: #333;
		border: 1px solid #333; */
	}

	footer h1 img {
		width: 200px;
	}

	footer .footer_table {
		width: 100%;
		max-width: 800px;
		margin: 20px auto;
		display: block;
	}

	footer table {
		width: 100%;
		margin: auto;
	}

	footer table th {
		width: 34%;
		font-weight: 600;
	}

	footer table th::before {
		display: none;
	}

	footer table td,
	footer table td {
		padding: 10px 15px;
	}
}

/** info-wrapper **/
.info-wrapper {
	background: url("../img/contact_back.jpg")fixed center no-repeat;
	background-size: cover;
	padding: 40px 0;
}

.info-wrapper .d-flex {
	justify-content: space-between;
	flex-flow: column;
	align-items: center;
}

.info-wrapper .d-flex>div {
	margin: 0 auto 4.0rem;
	width: 100%;
	text-align: center;
}

.info-wrapper .d-flex .tel-box h2 {
	font-size: 3rem;
	margin-bottom: 0;
	color: #fff;
	text-align: center;
	font-weight: 600;
}

.info-wrapper .d-flex .tel-box p {
	margin-bottom: 0;
	line-height: 1.5;
	text-align: center;
}

.info-wrapper .d-flex .tel-box a[href^="tel:"] {
	font-size: 4.0rem;
	font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
	letter-spacing: 2px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

.info-wrapper .d-flex .tel-box a[href^="tel:"]:before {
	content: "\f095";
	font-family: FontAwesome;
	display: inline-block;
	margin-right: 16px;
}

.info-wrapper .d-flex .tel-box .time-box {
	width: 100%;
	text-align: center;
	font-size: 3rem;
	color: #fff;
}

.btn-box {
	justify-content: center;
	display: flex;
}

.info-wrapper .d-flex .btn-box .button {
	width: 75%;
	font-size: 1.8rem;
	padding: 0 16px;
	margin-bottom: 2.4rem;
	background-color: #fff;
	height: 72px;
	line-height: 72px;
	color: #333;
	position: relative;
	font-weight: normal;
}

.info-wrapper .d-flex .btn-box .button.button-caution {
	width: 75%;
	font-size: 2.0rem;
	padding: 0 16px;
	margin-bottom: 2.4rem;
	background-color: #333;
	height: 72px;
	line-height: 72px;
	color: #FFF;
	position: relative;
	font-weight: normal;
}


@media screen and (min-width: 769px) {
	.info-wrapper .d-flex .tel-box a[href^="tel:"] {
		font-size: 5.2rem;
	}

	.info-wrapper .d-flex {
		/* flex-flow: row; */
		justify-content: center;
	}

	.info-wrapper .d-flex>div {
		width: 60%;

	}

	.info-wrapper .d-flex .tel-box p {
		margin-bottom: 0;
		line-height: 1.5;
		text-align: center;
	}

	.info-wrapper .d-flex .tel-box .time-box {
		text-align: center;
	}

	.info-wrapper .d-flex>div h2 {
		text-align: left;
	}

	.info-wrapper .d-flex .tel-box a[href^="tel:"] {
		font-size: 5rem;
		text-decoration: none;
	}

}


@media screen and (min-width: 769px) {
	.no-top #introduction .container.d-flex {
		justify-content: flex-end;
		/* flex-flow: row; */
		position: relative;
	}

	.about_img {
		width: 100%;
		max-width: 1000px;

	}

	.no-top #introduction .container .photo-box,
	.no-top #introduction .container .text-box {
		width: 45%;
		position: absolute;
		background: #fff;
		bottom: -10%;
		padding: 60px 70px 60px;
		left: 0;
	}

	.text-box h2,
	.text-box h2 span,
	.text-box p {
		text-align: left !important;
	}

	.text-box h2 {
		font-size: 2.5rem !important;
	}

	.text-box h2 span {
		font-size: 1.8rem !important;
		margin-top: 0.5em;
		color: #333 !important;
	}

	/* .no-top #introduction .container .text-box h2:before {
	content: '';
	position: absolute;
	bottom: -5px;
	display: inline-block;
	width: 30px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #00bfff;
	} */


	.no-top #introduction.rec02 .container {
		background: url("../img/bg_intro_rec02.jpg") no-repeat left;
		padding: 40px 0 40px 48%;
	}
}

@media screen and (max-width: 1350px) {
	.no-top #introduction .container.d-flex {
		display: block;
	}

	.no-top #introduction .container .photo-box,
	.no-top #introduction .container .text-box {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		position: unset;
	}

	.about_img {
		margin: 0 auto;
	}
}

/** .no-top #vision **/

.no-top #vision .container .eng_tit {
	position: absolute;
	left: 0;
	top: 0;
	width: 5%;
	max-width: 70px;
}

.no-top #vision .container .txtBox {
	position: relative;
}

.no-top #vision .container .txtBox .step1_img,
.no-top #vision .container .txtBox .step2_img,
.no-top #vision .container .txtBox .step3_img {
	width: 80%;
	margin: 0 auto 40px;
}



.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
	display: flex;
	justify-content: center;
	padding-bottom: 40px;
}

@media screen and (min-width: 769px) {
	.no-top #mainvisual {
		position: relative;
		padding-top: 8.3em;
	}

	.no-top #mainvisual .img-wrapper .icon {
		position: absolute;
		right: 40px;
		top: 90px;
		width: 18%;
		margin: 0;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
		display: flex;
		justify-content: center;
		/* padding-bottom: 20px; */
		/* padding-top: 20px; */
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li {
		width: 110px;
		height: 90px;
		color: #fff;
		background: #00bfff;
		background-size: cover;
		text-align: center;
		line-height: 1.3;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		margin: 0 0.5%;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li p {
		margin: 0 auto;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 {
		font-size: 2rem;
		margin-bottom: 0em;
		text-align: center;
		font-weight: 500;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit .kv_koyo {
		font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
		display: inline-block;
		padding: 3px 20px;
		margin: 0.5em auto 1em;
		background: #00bfff;
		font-size: 1.8rem !important;
		font-weight: 700;
		color: #fff;
		text-shadow: none;
		border: none;
	}
}

@media screen and (max-width: 480px) {
	.no-top #mainvisual .img-wrapper img {
		width: 100%;
		height: 500px;
		object-fit: cover;
	}

	.text {
		margin: 200px 0 0;
		text-align: center;
		opacity: 0;
		position: absolute;
		top: -38em;
		padding: 1em 0.5em;
		font-family: 'Playfair Display', serif;
		color: #257AD1;
		font-weight: 600;
		line-height: 1.3;
	}

	.no-top #contents section .container {
		display: block;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 strong {
		font-size: 4rem;
		margin-bottom: 0.25em;
		text-align: center;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 {
		font-size: 4rem;
		margin-bottom: 0.25em;
		text-align: center;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit p strong {
		font-size: 2.3rem;
		font-family: 'Playfair Display', serif;
		font-weight: 600;
		text-shadow: 0 0 4px #000;
		letter-spacing: 0px;
		color: #fff;
	}

	.point_box1 {
		display: flex;
		justify-content: space-between;
		width: 160px;
	}

	.point_box2 {
		display: flex;
		justify-content: space-between;
		width: 160px;
	}

	.no-top #mainvisual .img-wrapper,
	.no-top #mainvisual .img-wrapper.detail2,
	.no-top #mainvisual .img-wrapper.detail3 {
		height: 500px;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box {
		/* margin-top: 6em; */
		width: 100%;
		/* height: 280px; */
		/* padding: 6% 3% 3%; */
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 {
		font-size: 1.3rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit h1 strong {
		font-size: 2rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .maiTit p {
		font-size: 1.2rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span {
		font-size: 1.3rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .copy-box span.price-color {
		color: #fff;
		font-size: 1rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
		padding-top: 0;
		padding-bottom: 5px;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap li {
		width: 65px;
		height: 55px;
		/* background: rgba(0, 0, 128, 0.8); */
		color: #fff;
		text-align: center;
		font-size: 0.8rem;
		line-height: 1.2;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 600;
		margin: 0 0.5%;
	}
}

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

	.text {
		margin: 200px 0 0;
		text-align: center;
		opacity: 0;
		position: absolute;
		top: -35em;
		padding: 1em 0.5em;
		/* font-family: 'Playfair Display', serif; */
		text-shadow: 0px 0px 10px #00bfff;
		color: #fff;
	}

	.text.active .text-move {
		font-size: 2.5rem;
		letter-spacing: 5px;
	}

	.no-top #contents section .container {
		display: block;
	}
}

/* detail */
@media screen and (min-width: 769px) {
	.kv_second {
		background: linear-gradient(90deg, #7b7ba6 0%, #7b7ba6 50%, #ffffff 50%, #ffffff 100%);
	}

	.kv_second .inner {
		height: 840px;
		margin: 0 auto;
		padding-top: 20px;
		background: url("../img/mainImg_rec01.jpg") no-repeat top center;
		background-size: cover;
		position: relative;
	}

	.kv_second .inner2 {
		height: 840px;
		margin: 0 auto;
		padding-top: 20px;
		background: url("../img/mainImg_rec02.jpg") no-repeat top center;
		background-size: cover;
	}

	.kv_second .inner_txt {
		width: 1400px;
		margin: 0 auto;
		padding: 45px 0 85px 4.5%;
		position: absolute;
		bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	.kv_second .inner {
		max-width: auto;
		height: 70vh;
		padding-top: 0;
		background: url(../img/mainImg_rec01sp.jpg) no-repeat top center;
		background-size: cover;
		position: relative;
	}

	.kv_second .inner_txt {
		max-width: 520px;
		width: 90%;
		margin: 40px auto 0;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.kv_second .inner_txt img {
		width: 100%;
	}
}

@media screen and (max-width: 540px) {
	.kv_second .inner_txt {
		max-width: auto;
		width: auto;
		margin: 40px auto 0;
	}
}

@media screen and (max-width: 420px) {
	.kv_second .inner_txt {
		width: 80%;
		margin: 40px auto 0;
	}
}

/* detail end */


@media screen and (min-width: 769px) {
	.no-top #vision .container .txtBox .step1_img {
		position: absolute;
		right: 0;
		top: 0;
		width: 21%;
		max-width: 220px;
	}

	.no-top #vision .container .txtBox .step2_img {
		position: absolute;
		right: 44%;
		bottom: 0;
		width: 21%;
		max-width: 220px;
		margin: 0;
	}

	.no-top #vision .container .txtBox .step3_img {
		position: absolute;
		right: 21%;
		bottom: 0;
		width: 21%;
		max-width: 220px;
		margin: 0;
	}

}





/** detail #interview **/
.photoBox {
	max-width: 1584px;
	width: 100%;
	margin: 0 auto;
}

.no-top #interview {
	padding: 56px 0 0;

}

.no-top #interview .main-title {
	position: relative;
	text-align: center;
}

.no-top #interview .main-title .figure-box {
	margin-bottom: 20px;
	max-width: 1584px;
	width: 85%;
	margin: 0 auto 20px;
}

.no-top #interview .main-title .prof {
	color: #333;
	padding: 0 50px 5px;
	font-size: 2.2rem;
	margin: 0;
	display: inline-block;
	line-height: 2;
	font-weight: 400;
	position: relative;
	margin: auto;
}

.no-top #interview .main-title .prof span {
	font-size: 1.6rem;
}

.no-top #interview .qa-wrapper {
	margin-top: 40px;
}

.no-top #interview .qa-wrapper .qa-box {
	display: flex;
	justify-content: flex-start;
	flex-flow: column;
	margin-bottom: 40px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.no-top #interview .qa-wrapper>.qa-box:nth-of-type(2n) {
	display: flex;
	justify-content: flex-start;
	flex-flow: column;
	margin-bottom: 40px;
	align-items: flex-end;
	margin-bottom: 40px;
}


.no-top #interview .qa-wrapper .qa-box .q-box .title {
	font-family: "lato", sans-serif;
	font-size: 4.5rem;
	font-weight: 400;
	color: #333;
	line-height: 1.2;
}

.no-top #interview .qa-wrapper .qa-box .q-box .fukidashi {
	position: relative;
	display: inline-block;
	padding: 16px 32px;
	width: auto;
	color: #333;
	font-weight: 400;
	background: rgba(0, 29, 71, 0.1);
	font-size: 2.4rem;
}

.no-top #interview .qa-wrapper .qa-box .q-box .fukidashi:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 36px solid transparent;
	border-top-color: rgba(0, 29, 71, 0.1);
	border-bottom: 0;
	border-right: 0;
	margin-left: -18px;
	margin-bottom: -36px;
}

.no-top #interview .qa-wrapper>.qa-box:nth-of-type(2n) .q-box .fukidashi:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 36px solid transparent;
	border-top-color: rgba(0, 29, 71, 0.1);
	border-bottom: 0;
	border-left: 0;
	margin-right: -18px;
	margin-bottom: -36px;
}

.no-top #interview .qa-wrapper .qa-box .a-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 48px;
}

.no-top #interview .qa-wrapper .qa-box:nth-of-type(2n) .a-box {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	margin-top: 48px;
}

.no-top #interview .qa-wrapper .qa-box .a-box>div {
	width: 90%;
	background-color: #FFF;
	border: #333 1px solid;
	padding: 24px;
	position: relative;

}

.no-top #interview .qa-wrapper .qa-box .a-box>div p {
	padding-left: 48px;
	font-weight: 600;
}

.no-top #interview .qa-wrapper .qa-box .a-box>div p:before {
	content: "A";
	font-family: 'Noto Sans', sans-serif;
	color: #333;
	font-style: italic;
	font-weight: 200;
	font-size: 4.8rem;
	position: absolute;
	left: 24px;
	line-height: 1.2;
	top: 12px;
}




/** detail #message **/

.no-top #message {
	position: relative;
	padding-bottom: 24em;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0)0%, rgba(0, 0, 0, 0)40%, rgb(0, 191, 255, 0.3) 40%, rgb(0, 191, 255, 0.3) 100%);
}

.no-top #message .photoBox {
	margin-bottom: 20px;
}

.no-top #contents #message h3 {
	color: #000;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 1.5em;
	position: relative;
}

.no-top #contents #message h3:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 30px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333;
}

.no-top #contents #message p {
	text-align: left;
	font-size: 16px;
}

@media screen and (min-width: 769px) {
	.no-top #message .photoBox {
		margin-bottom: 0;
		max-width: 1584px;
		width: 100%;
		margin: 0 auto;
		animation-name: fadein;
		animation-duration: 2s;
	}
}

/** detail #guideline **/

.no-top #guideline {
	padding: 56px 0 0;
}

.no-top #guideline .container table {
	width: 100%;
	max-width: 1024px;
	margin: auto;
	font-size: 13px;
}

.no-top #guideline .container table td {
	width: 80%;
}

.no-top #guideline .container table td span {
	color: #00bfff;
}

.no-top #guideline .container table td p {
	font-size: 1.4rem;
}

/** detail #entry **/

.no-top #entry {
	padding: 56px 0 10em;
	/* background-color: #f7f7f7; */
}

.no-top #entry .container form {
	width: 100%;
	max-width: 1020px;
	margin: auto;
}

.no-top #entry .container .CMS-FORM-GROUP {
	margin-bottom: 24px;
	font-size: 13px;
}

.no-top #entry .container .CMS-FORM-GROUP laber,
.no-top #entry .container .CMS-FORM-GROUP input {
	border-bottom: none;
	display: block;
	padding: 30px 0;
}

.no-top #entry .container .CMS-FORM-GROUP .CMS-FORM-INPUT-LABEL {
	margin-bottom: 16px;
	font-size: 13px;
}

.CMS-FORM-INPUT-LABEL:after,
.CMS-FORM-NUMBER-LABEL:after,
.CMS-FORM-TEL-LABEL:after,
.CMS-FORM-EMAIL-LABEL:after,
.CMS-FORM-SELECT-LABEL:after {
	content: "必須";
	display: inline-block;
	font-size: 10px;
	color: #FFF;
	text-align: center;
	width: 40px;
	height: 20px;
	background: #333;
	margin-left: 16px;
	line-height: 20px;
	font-weight: 500;
}

.no-top #entry .container .CMS-FORM-GROUP input {
	width: 100%;
	border: 1px solid #DDDDDD;
	outline: none;
	padding-left: 1rem;
	transition: .5s;
}

.no-top #entry .container .CMS-FORM-GROUP input:hover {
	background: rgba(255, 0, 0, 0.1);
	color: #333;
	opacity: 1;
}

.no-top #entry .container .CMS-FORM-GROUP:last-child {
	text-align: center;
	margin: 40px auto 0;
	display: block;
	border: none;
}

.no-top #entry .container .CMS-FORM-GROUP input[type="submit"] {
	margin: auto;
	font-size: 2.0rem;
	padding: 1.6rem;
	color: #333;
	border: 1px solid #333;
	width: 50%;
}

.no-top #entry .container .CMS-FORM-GROUP input[type="submit"]:hover {
	background: #00bfff;
	color: #fff;
	border: 1px solid #00bfff;
}

/*****************
  thanks
************************/
.thanks {
	padding-top: 64px;
}

.thanks .text-lead {
	text-align: center;
	padding: 0 25px;
}

.thanks .button.button_back {
	max-width: 200px;
	width: 40%;
	font-weight: normal;
	margin: 4em auto 0;
	font-size: 1.5rem;
	padding: 0.4rem;
	color: #333;
	border: 1px solid #333;
}

@media screen and (min-width: 769px) {
	.thanks {
		padding-top: 80px;
	}
}

/*****************
  privacy
************************/
@media screen and (min-width: 769px) {
	.privacy {
		padding-top: 80px;
	}

	.privacy p {
		padding: 0 100px;
	}

	.privacy h3 {
		padding: 0 0 0.5em;
		text-align: center;
		position: relative;
	}

	.privacy h3:before {
		content: '';
		position: absolute;
		bottom: -5px;
		display: inline-block;
		width: 30px;
		height: 2px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: #00bfff;
	}
}

/*guideline_txt-------------------------*/
#guideline_txt {
	margin: 10px 0 25px;
}

#guideline_txt .txt_box {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: center;
}

#guideline_txt .txt_box h3 {
	text-align: center;
	color: #000;
	font-size: 22px;
}

@media screen and (max-width:767px) {
	.no-top #message {
		position: relative;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0)0%, rgba(0, 0, 0, 0)30%, #333 30%, #333 100%);
		padding: 56px 0 0;
	}

	.no-top #contents #message h3 {
		font-size: 1.6rem;
		margin-bottom: 2.5em;
	}

	.no-top #contents #message p {
		font-size: 14px;
	}

	#guideline_txt .txt_box h3 {
		text-align: left;
		color: #000;
		font-size: 18px;
	}

	.no-top #entry .container .CMS-FORM-GROUP laber,
	.no-top #entry .container .CMS-FORM-GROUP input {
		padding: 20px 0 20px 1rem;
		font-size: 13px;
	}

	.no-top #entry .container .CMS-FORM-GROUP input[type="submit"] {
		padding: 0.5rem;
		font-size: 1.5rem;
		width: 85%;
	}

	.thanks .text-lead {
		text-align: left;
		margin: 0 auto;
		font-size: 14px;
	}

	.info-wrapper .d-flex .tel-box a[href^="tel:"] {
		font-size: 3.7rem;
		font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
		letter-spacing: 2px;
		color: #fff;
		text-decoration: none;
		font-weight: bold;
	}

	.info-wrapper .d-flex .btn-box .button {
		width: 100%;
		max-width: 350px;
		font-size: 1.5rem;
		padding: 0 45px;
		margin: 0 auto 2.4rem;
		background-color: #fff;
		height: 55px;
		line-height: 55px;
		color: #333;
		position: relative;
		font-weight: normal;
	}

	.info-wrapper .d-flex .btn-box .button.button-caution {
		width: 75%;
		font-size: 1.7rem;
		padding: 0 16px;
		margin-bottom: 2.4rem;
		background-color: #333;
		height: 55px;
		line-height: 55px;
		color: #fff;
		position: relative;
		font-weight: normal;
	}

	.no-top #message p.name {
		font-size: 15px;
	}

	#contents section .about_ttl h2 {
		margin-top: 2rem;
	}

	.no-top #mainvisual .img-wrapper .d-flex .pointWrap {
		padding: 10px 0;
	}
}



.recruit_info-box .button-more::after {
	position: absolute;
	top: 50%;
	right: .8em;
	content: '';
	margin-top: -5px;
	border: 7px solid transparent;
	border-top-width: 5px;
	border-bottom-width: 5px;
	border-left-color: #fff;
	opacity: 0;
}

.recruit_info-box .button-more:hover::after {
	animation: arrow 1.2s infinite;
}

@keyframes arrow {
	50% {
		right: .2em;
		opacity: 1;
	}

	100% {
		right: -.4em;
		opacity: 0;
	}
}

.top_txt {
	border: 1px solid #fff;
}

#top_sec01 .ph {
	width: 100%;
	max-width: 640px;
	padding: 20px;
	margin: 0 auto
}

#top_sec01 .ph img {
	display: block
}

.recruit_menu_cnt .cmenu_list .item a .ph {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

.recruit_menu_cnt .cmenu_list .item a .ph div {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center
}

.greeting_cnt .base_width .inner .column .ph {
	padding: 10px 20px
}

#btm_article .article_body .item a .ph {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden
}

#btm_article .article_body .item a .ph div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	transform: scale(1.01)
}

html.no_touch_device #btm_article .article_body .item a .ph div {
	transition: all .5s ease-in-out
}

html.no_touch_device #btm_article .article_body .item a:hover .ph div {
	transform: scale(1.2)
}

.recruit_menu_cnt .cmenu_list {
	flex-wrap: wrap;
	text-align: left
}

@media screen and (min-width: 769px) {
	.recruit_menu_cnt .cmenu_list {
		align-items: stretch;
		padding: 0 2%;
	}
}

.recruit_menu_cnt .cmenu_list .item {
	position: relative;
	z-index: 1
}

.recruit_menu_cnt .cmenu_list .item a {
	position: relative;
	display: block;
	height: 100%;
	text-decoration: none;
	color: #111;
	background: #fff
}

.recruit_menu_cnt .cmenu_list .item a .ph {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.recruit_menu_cnt .cmenu_list .item a .ph div {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	margin: 0 auto;
}

.recruit_menu_cnt .cmenu_list .item a .txt {
	position: relative;
	padding: 40px 20px;
	z-index: 10;
}

.post {
	position: relative;
}

.post .caption {
	font-size: 40px;
	text-align: center;
	color: #fff;
	padding-top: 20%;
	font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
	letter-spacing: 2px;
	text-shadow: 0 0 10px #000;
}

.post .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	/* マスクを表示しない */
	/* background-color:	rgba(0,0,0,0.4); */
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.post:hover .mask {
	opacity: 1;
	/* マスクを表示する */
	padding-top: 80px;
	/* ホバーで下にずらす */
}

@media screen and (min-width: 769px) {
	.recruit_menu_cnt .cmenu_list .item a .txt {
		padding: 80px 20px;
		background: rgba(0, 0, 0, 0.35);

	}
}

@media screen and (max-width: 768px) {
	.info-wrapper {
		background: url("../img/contact_back.jpg") center no-repeat;
		background-size: cover;
		padding: 40px 0;
	}

	.recruit_menu_cnt .cmenu_list .item a .txt {
		padding: 80px 20px;
		background: rgba(0, 0, 0, 0.35);
	}
}

.recruit_menu_cnt .cmenu_list .item a .txt h3 {
	font-size: 3.2rem;
}

.recruit_menu_cnt .cmenu_list .item a .txt p {
	margin: 0 0 1em;
	line-height: 2em;
	font-size: 1.4rem
}

.recruit_menu_cnt .cmenu_list .item a .txt .more {
	display: inline-block;
	padding: 10px;
	font-weight: 600;
	line-height: 1;
	border: 1px solid #fff;
	color: #fff;
	float: right;
}

.recruit_menu_cnt .cmenu_list .item a:hover .txt .more {
	background: #fff;
	color: #333;
	border: 1px solid #fff;
	font-weight: 600;
	transition: 0.5s all;
}

html.touch_device .recruit_menu_cnt .cmenu_list .item a .txt .more {
	background: #333;
	color: #fff
}

.recruit_menu_cnt .cmenu_list.col3 .item {
	margin: 5px auto 3em;
	max-width: 1200px;
}

@media screen and (max-width: 768px) {
	.recruit_menu_cnt .cmenu_list.col3 .item {
		width: 100%
	}
}

@media screen and (max-width: 480px) {
	.recruit_menu_cnt .cmenu_list.col3 .item {
		width: 100%
	}

	header .container h1 img {
		width: 165px;
	}
}

.recruit_menu_cnt .cmenu_list2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (min-width: 769px) {
	.recruit_menu_cnt .cmenu_list2 {
		align-items: stretch
	}
}

.recruit_menu_cnt .cmenu_list2 .box2 .txt {
	position: relative;
	padding: 20px 20px;
	z-index: 10;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
	text-align: left;
}

.recruit_menu_cnt .cmenu_list .box2 .txt p {
	margin: 0 0 1em;
	line-height: 2em;
	font-size: 1.2rem
}

@media screen and (min-width: 769px) {
	.recruit_menu_cnt .cmenu_list2 .box2 .txt {
		padding: 20px 20px
	}
}

.txt h3 strong {
	color: #fff;
	font-size: 2.5rem;
	padding-right: 0.5em;
}

.txt span {
	font-size: 1.4rem;
	color: #fff;
	background-color: #2b5595;
	display: inline-block;
	vertical-align: middle;
	padding: 0.2em 0.5em;
	margin-right: 8px;
}

.txt h4 {
	color: #fff;
	border-bottom: 1px dotted #fff;
}

.txt p {
	color: #fff;
}

.accordion_area {
	max-width: 1584px;
	width: 60%;
	margin: 2em auto 20px;
}

.accordion_area .accordion_one .ac_header {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 1.5rem 4rem 1.5rem 2rem;
	position: relative;
	z-index: 0;
	cursor: pointer;
	transition: .2s;
}

.accordion_area .accordion_one .ac_header:not(.open):hover {
	background-color: rgba(51, 51, 51, 0.15);
}

.accordion_area .accordion_one:nth-child(odd) .ac_header {
	background-color: #fff;
}

.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
	background-color: rgba(51, 51, 51, 0.15);
}

.accordion_area .accordion_one .ac_header .i_box {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
	border-top: 2px solid #333;
	width: 20px;
	height: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
	border-left: 2px solid #333;
	width: 0;
	height: 20px;
	top: 0;
	bottom: 0;
	right: 9px;
	transition: .3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
	height: 0;
}

.accordion_area .accordion_one .ac_inner {
	display: none;
	padding: 1.5rem 2rem 1.5rem 2rem;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	background: #fff;
}

.gutter>*:not(:last-child) {
	margin-bottom: 1.5rem;
}

@media screen and (max-width: 736px) {
	.accordion_area .accordion_one .ac_header {
		padding: 1.5rem 2rem 1.5rem 1.0rem;
	}

	.accordion_area {
		width: 85%;
	}

	.accordion_area .accordion_one .ac_header .i_box {
		right: 0.8rem;
		width: 15px;
		height: 15px;
		margin-top: -7px;
	}

	.accordion_area .accordion_one .ac_header .i_box:before {
		width: 15px;
	}

	.accordion_area .accordion_one .ac_header .i_box:after {
		height: 15px;
		right: 7px;
	}

	.accordion_area .accordion_one .ac_inner {
		padding: 1.5rem 1.5rem 1.5rem 1.5rem;
	}
}

/*=========
faq
=========*/

.p-faq__headinner {
	display: block;
	padding-left: 35px;
	position: relative;
	line-height: 1.5;
}

.p-faq__headinner::before {
	position: absolute;
	left: 0;
	content: "Q．";
	color: #00bfff;
	font-size: 1.7rem;
	font-weight: bold;
}

.p-faq__headinner p.p-faq__q-txt {
	font-size: 1.5rem;
}

@media screen and (max-width: 736px) {
	.p-faq__headinner {
		padding: 0 25px;
	}

	.p-faq__headinner::before {
		font-size: 14px;
	}

	.p-faq__headinner p.p-faq__q-txt {
		font-size: 14px;
	}
}

.p-faq__bodyinner {
	display: block;
	padding-left: 35px;
	position: relative;
	line-height: 1.5;
}

.p-faq__bodyinner::before {
	position: absolute;
	left: 0;
	content: "A．";
	color: #de0000;
	font-size: 1.7rem;
	font-weight: bold;
}

.p-faq__bodyinner p.p-faq__a-txt {
	font-size: 1.5rem;
}

@media screen and (max-width: 736px) {
	.p-faq__bodyinner {
		padding-left: 25px;
	}

	.p-faq__bodyinner::before {
		font-size: 14px;
	}

	.p-faq__bodyinner p.p-faq__a-txt {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	.no-top #interview .main-title .prof span {
		font-size: 1.2rem;
	}

	.no-top #interview .main-title .prof {
		color: #333;
		padding: 0 30px 5px;
		font-size: 1.5rem;
		margin: 0;
		display: inline-block;
		line-height: 2;
		font-weight: 400;
		position: relative;
		margin: auto;
	}

	.card {
		margin: 5px 0 0;
	}

	.qa-list dl {
		margin: 10px 0 0;
	}

	.qa-list dl:after {
		top: 20px;
		right: 20px;
		width: 7px;
		height: 7px;
	}

	.qa-list dl dt {
		padding: 16px 16px 16px 50px;
		font-size: 14px;
	}

	.qa-list dl dt::before {
		font-size: 14px;
		top: 20px;
		left: 20px;
	}

	.qa-list dl dd::before {
		font-size: 14px;
		left: 20px;
		margin-top: 5px;
	}

	.qa-list dl dd {
		margin: 0;
		padding: 16px 16px 16px 50px;
		font-size: 14px;
	}

	.qa-list dl dd p {
		margin: 30px 0 0;
	}

	.qa-list dl dd p:first-child {
		margin-top: 0;
	}
}



@media screen and (max-width: 768px) {
	header .container nav ul li a.button {
		font-size: 12px;
		padding: 14px 6px;
		position: relative;
		background: #333;
	}

	.sp-only ul.d-flex li {
		width: 200px;
	}

	.no-top #vision .container .txtBox .text-lead {
		font-size: 2.3rem;
		text-align: center;
	}

	.no-top #vision .container .txtBox .text-lead strong {
		font-size: 4rem;
		color: #333;
	}
}

@-webkit-keyframes drop {
	0% {
		top: -50%;
	}

	100% {
		top: 110%;
	}
}

@keyframes drop {
	0% {
		top: -50%;
	}

	100% {
		top: 110%;
	}
}

.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 600px;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.grid {
		max-width: 1580px;
	}

	.grid_margin {
		margin-bottom: 7em !important;
	}
}

.card {
	position: relative;
	flex: 1 1 100%;
	margin: 5px 0 0;
	background: #fff;
}

#recruit .container {
	display: flex;
	justify-content: center;
	/* flex-wrap: wrap; */
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

#recruit .card__desc {
	height: auto;
	padding-bottom: 1em;
}

.post h2 {
	background: #00bfff;
	color: #fff !important;
	line-height: 0.8;
	padding: 20px 0;
}

.post h2 span {
	border-bottom: 1px solid #fff;
	width: 8vw;
	margin: 0 auto;
	padding-bottom: 10px;
}

.post h3 {
	text-align: center;
	padding-bottom: 0.5em;
	position: relative;
}

.post h3:before {
	content: '';
	position: absolute;
	bottom: -5px;
	display: inline-block;
	width: 30px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333;
}

.post p {
	padding: 10px 25px;

}

.post {
	margin: 0 20px;
	background: #fff;
	flex: 1;
}

a .image {
	/* height: 450px; */
	overflow: hidden;
}

a .image img {
	width: 100%;
	height: auto;
	transition: all .6s ease-out 0.1s;
	display: block;
}

a:hover .image img {
	transform: scale(1.2);
}

@media screen and (min-width: 768px) {
	.card {
		/* flex-basis: calc(25% - (62px + 40px)); */
		display: flex;
		margin: 0 0.5em 5em;
		width: 600px;
	}

	.card:nth-of-type(2n) {
		flex-flow: row-reverse;
	}

	#welfare .card {
		flex-basis: calc(25% - (62px + 40px));
		display: block;
		margin: 0 0.5em 5em;
		width: 600px;
		height: 100%;
		background: none;
	}

	#welfare .card p {
		text-align: center;
	}

	#welfare .grid {
		/* margin-bottom: 3em !important */
	}
}

.card__thumb {
	overflow: hidden;
}

.card__img {
	margin: -20px -20px 0;
}

.card__img img {
	max-width: 100%;
	width: 100%;
	height: auto;
	border: 0;
	vertical-align: middle;
	box-sizing: border-box;
}

.card__desc {
	/* margin-top: 20px; */
	background: #fff;
	height: 175px;
	flex: 1;
	padding-bottom: 3.5em;
}

#welfare .card__desc {
	padding-bottom: 0;
}

#welfare .card__desc p {
	font-size: 12px;
}

.card__desc p {
	padding: 0 2%;
	color: #333;
	text-align: left;
	font-size: 16px;
}

.more_btn {
	max-width: 700px;
	width: 100%;
	margin: 4em auto 1em !important;
	display: flex;
	justify-content: space-around;
}

.more {
	position: relative;
	text-decoration: none;
}

.more a:hover {
	opacity: 1;
}

.more::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.more:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

a {
	text-decoration: none;
}

.card__desc h3 {
	text-align: center;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 600;
	background: #00bfff;
	padding: 0 2%;
	line-height: 2.2;
}

.card__desc h3 span {
	padding: 5px 10px;
	background: #fff;
	color: #4e4e4e;
	margin-bottom: 1rem;
	font-size: 12px;
}

.card__two .card__img {
	flex: 1;
	padding: 20px 20px 0;
	/* height: 100%; */
	overflow: hidden;
}



.navigation {
	font-family: "Pathway Gothic One", sans-serif;
	font-size: 22px;
}

.menu {
	display: flex;
	justify-content: center;
	max-width: 1150px;
	margin: 0 auto;
	padding-left: 0;
}

.menu__item {
	display: inline-block;
	white-space: nowrap;
}

@media screen and (max-width: 480px) {
	.menu__item:nth-child(n+3) {
		display: none;
	}

	.menu__item:nth-child(2) .menu__link {
		border-right: 0;
	}
}

@media screen and (max-width: 900px) {
	.card__desc h3 {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 768px) {
	#recruit .container {
		display: flex;
		justify-content: space-between;
		/* flex-wrap: wrap; */
		width: 100%;
		max-width: 900px;
		margin: 0 auto;
	}

	.post h2 {
		background: #333;
		color: #fff !important;
		line-height: 0.8;
		padding: 20px 0;
	}

	.post h2 span {
		border-bottom: 1px solid #fff;
		width: 20vw;
		margin: 0 auto;
		padding-bottom: 10px;
	}

	.post h3 {
		text-align: center;
		font-size: 16px;
	}

	.post p {
		padding: 0;

	}

	.post {
		margin: 0 20px;
		background: #fff;
		flex: 1;
	}

	a .image {
		/* height: 450px; */
		overflow: hidden;
	}

	a .image img {
		width: 100%;
		height: auto;
		transition: all .6s ease-out 0.1s;
		display: block;
	}

	a:hover .image img {
		transform: scale(1.2);
	}

	.card {
		padding: 20px 0;
	}

	.card__desc {
		/* height: 130px; */
	}

	.card__desc p {
		line-height: 1.8;
		text-align: center;
	}

	.card__desc h3 {
		font-size: 1.6rem;
	}

	.card__desc h2 {
		position: relative;
		font-size: 1.6rem !important;
		letter-spacing: 1px !important;
	}

	#welfare .card {
		background: none;
	}

	/* .card__desc h2:before {
	content: '';
	position: absolute;
	bottom: -5px;
	display: inline-block;
	width: 30px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #00bfff;
	} */
	#recruit .card__desc p {
		text-align: left;
		font-size: 14px;
	}

	.menu__item:nth-child(n+4) {
		display: none;
	}

	.menu__item:nth-child(3) .menu__link {
		border-right: 0;
	}
}

@media screen and (max-width: 992px) {
	.menu__item:nth-child(n+5) {
		display: none;
	}

	.menu__item:nth-child(4) .menu__link {
		border-right: 0;
	}
}

.menu__item:last-child .menu__link {
	border-right: 0;
}

.menu__link {
	display: block;
	padding: 6px 30px 3px;
}

.menu__link:hover .menu__first-word,
.menu__link:focus .menu__first-word {
	transform: translate3d(0, -105%, 0);
}

.menu__link:hover .menu__second-word,
.menu__link:focus .menu__second-word {
	transform: translate3d(0, 105%, 0);
}

@media screen and (min-width: 768px) {
	.menu__link {
		padding: 6px 40px 3px;
		font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
		letter-spacing: 2px;
		font-size: 25px;
	}

	/* detail */
	.menu__link {
		padding: 15px 10px 3px 20px;
		font-family: 'Oswald', '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
		letter-spacing: 2px;
		font-size: 25px;
	}
}

.menu__title {
	display: inline-block;
	overflow: hidden;
	/* border-bottom: 1px solid #4e4e4e; */
}

.menu__first-word,
.menu__second-word {
	display: inline-block;
	position: relative;
	transition: transform 0.3s;
}

.menu__first-word::before,
.menu__second-word::before {
	position: absolute;
	content: attr(data-hover);
}

.menu__first-word {
	color: #00bfff;
}

.menu__first-word::before {
	top: 105%;
	color: #333;
}

.menu__second-word {
	color: #333;
}

.menu__second-word::before {
	bottom: 105%;
	color: #00bfff;
}

.outline-outward {
	display: inline-block;
	position: relative;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.outline-outward:before {
	content: "";
	position: absolute;
	border: #ececec solid 1px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition-duration: 0.3s;
	transition-property: top right bottom left;
}

.outline-outward:hover:before {
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}

.button {
	/* margin: 0.4em;
	padding: 1em;
	cursor: pointer;
	background: #ececec;
	text-decoration: none;
	color: #333; */
}

.outline-outward2 {
	display: inline-block;
	position: relative;
	-webkit-tap-highlight-color: #fff;
	transform: translateZ(0);
	box-shadow: 0 0 1px #fff;
	border: 0.5px solid #fff;
	width: 22%;
}

.outline-outward2:before {
	content: "";
	position: absolute;
	border: #fff solid 0.5px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition-duration: 0.3s;
	transition-property: top right bottom left;
}

.outline-outward2:hover:before {
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}

.button {
	margin: 0.4em;
	padding: 0.5em 1em;
	cursor: pointer;
	border: 1px solid #333;
	text-decoration: none;
	color: #333;
	font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
	.btn-box {
		display: grid;
	}

	.outline-outward2 {
		width: 85%;
	}

	#page-top {
		position: fixed;
		right: -25px;
		bottom: 45px;
		height: 50px;
		text-decoration: none;
		font-weight: 400;
		transform: rotate(90deg);
		font-size: 1em;
		line-height: 3.5rem;
		color: #00bfff;
		padding: 0 0 0 35px;
		border-top: solid 1px;
		letter-spacing: 2px;
	}
}

.sideways {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: fixed;
	left: -5px;
	bottom: -2em;
	font-weight: 600;
	font-size: 10px;
	line-height: 1.9;
	letter-spacing: 4px;
	color: #00bfff;
	/* font-family: 'Playfair Display', serif; */
}

/*****************
  SNSbtn
************************/
/* アイコン周り全体 */
.flowbtn16 {
	font-family: 'Georgia', sans-serif;
	/* 好きなフォントに変えてね */
	display: inline-block;
	width: 61px;
	height: 57px;
	font-size: 25px;
	transition: .5s;
	text-decoration: none;
	background: transparent;
	color: #4e4e4e;
}

.flowbtn16:hover {
	text-decoration: none;
}

/* Twitterマウスホバー時 */
.flowbtn16.fl_tw2:hover {
	background: #4e4e4e;
	color: #fff;
}

/* Instagramマウスホバー時 */
.flowbtn16.insta_btn2:hover {
	background: #4e4e4e;
	color: #fff;
}

/* Facebookマウスホバー時 */
.flowbtn16.fl_fb2:hover {
	background: #4e4e4e;
	color: #fff;
}

/* ボタン内テキスト調整 */
.flowbtn16 div {
	font-size: 9px;
	letter-spacing: 0;
	font-weight: bold;
	position: relative;
	bottom: 16px;
}

/* ulタグの内側余白を０にする */
ul.snsbtniti {
	padding: 3rem 0 0;
}

/* アイコンボタンの位置調整 */
.snsbtniti {
	display: flex;
	justify-content: center;
}

/* アイコンボタン同士の余白調整 */
.snsbtniti li {
	flex: 0 0 7%;
	text-align: center !important;
}

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

	/*****************
	  SNSbtn
	************************/
	/* アイコン周り全体 */
	.flowbtn16 {
		height: 50px;
	}

	/* ボタン内テキスト調整 */
	.flowbtn16 div {
		bottom: 8px;
	}

	/* アイコンボタン同士の余白調整 */
	.snsbtniti li {
		flex: 0 0 22%;
	}
}


.main_imgBox {
	width: 600px;
	height: 390px;
	overflow: hidden;
	position: relative;
}

.main_logo {
	z-index: 11;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: auto;
}

.main_imgM {
	opacity: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 36s 0s infinite;
	animation: anime 36s 0s infinite;
}

.main_imgM:nth-of-type(2) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}

.main_imgM:nth-of-type(3) {
	-webkit-animation-delay: 12s;
	animation-delay: 12s;
}

.main_imgM:nth-of-type(4) {
	-webkit-animation-delay: 18s;
	animation-delay: 18s;
}

.main_imgM:nth-of-type(5) {
	-webkit-animation-delay: 24s;
	animation-delay: 24s;
}

.main_imgM:nth-of-type(6) {
	-webkit-animation-delay: 30s;
	animation-delay: 30s;
}

@keyframes anime {
	0% {
		opacity: 0;
	}

	8% {
		opacity: 1;
	}

	17% {
		opacity: 1;
	}

	25% {
		opacity: 0;
		transform: scale(1.2);
		z-index: 9;
	}

	100% {
		opacity: 0
	}
}

@-webkit-keyframes anime {
	0% {
		opacity: 0;
	}

	8% {
		opacity: 1;
	}

	17% {
		opacity: 1;
	}

	25% {
		opacity: 0;
		-webkit-transform: scale(1.2);
		z-index: 9;
	}

	100% {
		opacity: 0
	}
}

@media screen and (max-width:767px) {
	.button {
		margin: 0.4em;
		padding: 0.4em 1em;
		cursor: pointer;
		background: #fff;
		text-decoration: none;
		color: #333;
		font-size: 1.4rem;
	}

	.main_imgBox {
		max-width: 400px;
		height: 245px;
		overflow: hidden;
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.sideways {
		font-size: 6px;
		letter-spacing: 2px;
		bottom: -4em;
	}
}

#work_txt .inner ul {
	background-image: url(../img/work_back.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}

#work_txt .inner ul li {
	padding: 90px 100px 70px 93px;
	color: #FFFFFF;
	display: flex;
	-moz-transition-duration: 0.6s;
	-o-transition-duration: 0.6s;
	-webkit-transition-duration: 0.6s;
	transition-duration: 0.6s;
	animation-name: fadein;
	animation-duration: 2s;
	margin-bottom: 0;
}

#work_txt .inner ul li:hover {}

#work_txt .inner ul li>div {
	width: 100%;
	padding: 0 20px;
	animation-name: fadein;
	animation-duration: 2s;
}

#work_txt .inner ul li .vctitle {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

#work_txt .inner ul li .vctitle .vctitleno {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0.165em;
	margin-right: 20px;
}

#work_txt .inner ul li .vctitle .vctitletxt {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 23px;
}

#work_txt .inner ul li .vstext {
	line-height: 1.8;
	margin-bottom: 38px;
}

#work_txt .inner ul li .vsusre {
	font-size: 14px;
	line-height: 17px;
	text-align: right;
}

.tbl-r02 {
	max-width: 1000px;
	/* margin: 0 auto; */
	width: 100%;
}

.tbl-r02 th {
	/* background: #333; */
	/* border: solid 1px #ccc; */
	color: #333;
	padding: 10px;
	font-size: 12px;
}

.tbl-r02 th:before {
	position: initial;
	bottom: -2px;
	left: 0;
	width: 90%;
	height: 2px;
	content: '';
	background: #00bfff;
}

th:before {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 90%;
	height: 2px;
	content: '';
	background: #00bfff;
}

.tbl-r02 th,
.tbl-r02 td {
	border-bottom: 1px dotted #fff;
}

.tbl-r02 td {
	/* border: solid 1px #ccc; */
	padding: 10px;
	font-size: 12px;
	/* background: #fff; */
	color: #fff;
	width: 70%;
}

#work_txt .inner ul li:after {
	clear: both;
	content: '';
	display: block;
}

#work_txt .inner ul li:nth-child(2n) {
	display: block;
	background-color: rgb(0, 191, 255, 0.6);
}

#work_txt .inner ul li:nth-child(2n) .vcright {
	opacity: 1;
	float: right;
	display: inline-block;
	width: 50%;
}

#work_txt .inner ul li:nth-child(2n) .vcleft {
	opacity: 1;
	width: 50%;
}

@media screen and (max-width: 780px) {
	#work_txt .inner {
		margin-left: 0;
		width: 100%;
	}

	#work_txt .inner ul {
		padding-top: 25px;
		background-image: url(../img/work_backsp.jpg);
	}

	#work_txt .inner ul li {
		display: block;
		padding: 25px 18px;
	}

	#work_txt .inner ul li .vcleft {
		margin-bottom: 20px;
	}

	#work_txt .inner ul li .vctitle {
		margin-bottom: 25px;
	}

	#work_txt .inner ul li .vctitle .vctitleno {
		font-size: 37px;
		line-height: 1;
		margin-right: 18px;
	}

	#work_txt .inner ul li .vctitle .vctitletxt {
		font-size: 18px;
		line-height: 22px;
	}

	#work_txt .inner ul li .vstext {
		margin-bottom: 15px;
		font-size: 13px;
	}

	#work_txt .inner ul li .vsusre {
		font-size: 14px;
		line-height: 17px;
		text-align: right;
	}

	.tbl-r02 td {
		border: solid 1px #ccc;
		padding: 10px;
		font-size: 12px;
		background: #fff;
		color: #333;
		width: 70%;
	}

	#work_txt .inner ul li .vcleft,
	#work_txt .inner ul li .vcright {
		padding: 0;
	}

	#work_txt .inner ul li .vcimg {
		width: 100%;
	}

	#work_txt .inner ul li .vcimg img {
		width: 100%;
	}

	#work_txt .inner ul li:nth-child(2n) .vcleft {
		width: 100%;
	}

	#work_txt .inner ul li:nth-child(2n) .vcright {
		float: none;
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	#slide_wrap .slide_item p {
		position: absolute;
		bottom: 0.1em;
		right: 3em;
		width: 100px;
		text-align: center;
		color: #4e4e4e;
		background: #fff;
		font-size: 13px;
		padding: 5px 10px;
	}
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4 {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 1%;
	right: 50%;
	/*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
	0% {
		bottom: 1%;
	}

	50% {
		bottom: 3%;
	}

	100% {
		bottom: 1%;
	}
}

/*Scrollテキストの描写*/
.scrolldown4 span {
	/*描画位置*/
	position: absolute;
	left: -20px;
	bottom: -10px;
	/*テキストの形状*/
	color: #333;
	font-size: 2rem;
	text-shadow: 0 0 5px #fff;
	font-family: 'Playfair Display', serif;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
	content: "";
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 1px;
	height: 20px;
	background: #333;
	transform: skewX(-31deg);
}

.scrolldown4:after {
	content: "";
	position: absolute;
	bottom: -20px;
	right: -14px;
	width: 1px;
	height: 85px;
	background: #333;
}