@charset "UTF-8";

/*--------------------------------------------------------------------------
   reset
   --------------------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 0;
}

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

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

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

img {
	border: 0;
	vertical-align: top;
}

em {
	font-style: italic;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 0;
	padding: 0;
}

input,
select,
textarea {
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
li,
table,
tbody,
th,
td,
a {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*------------------------------
変数
-------------------------------*/
@media (min-width: 751px) {
	.pc {
		display: block;
	}
}

@media (max-width: 750px) {
	.pc {
		display: none !important;
	}
}

@media (min-width: 751px) {
	.sp {
		display: none !important;
	}
}

@media (max-width: 750px) {
	.sp {
		display: block;
	}
}

@keyframes pageTop {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(0, -8px);
	}

	100% {
		transform: translate(0, 0);
	}
}

@keyframes tremble {
	0% {
		transform: translate(0, 0) rotateZ(0deg);
	}

	25% {
		transform: translate(1px, 1px) rotateZ(0.5deg);
	}

	50% {
		transform: translate(1px, 0) rotateZ(0deg);
	}

	75% {
		transform: translate(0, 1px) rotateZ(-0.5deg);
	}

	100% {
		transform: translate(0, 0) rotateZ(0deg);
	}
}

@keyframes fadeInLeft {
	0% {
		transform: translate(60%, 0);
		opacity: 0;
	}

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

@keyframes explode {
	0% {
		transform: scale(0.8, 0.8);
		opacity: 0.7;
	}

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

@keyframes scalebounce {
	0% {
		transform: scale(6, 6) rotate(-60deg);
		opacity: 0.2;
	}

	50% {
		transform: scale(0.5, 0.5) rotate(0);
	}

	80% {
		transform: scale(1.3, 1.3) rotate(0);
	}

	90% {
		transform: scale(0.8, 0.8) rotate(0);
	}

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

@keyframes rollIn {
	0% {
		transform: rotate(40deg);
		opacity: 0;
	}

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

/*--------------------------------------------------------------------------
 *   default;
 *---------------------------------------------------------------------------*/
/*-----------------------
  fonts
  -----------------------*/
/*--------------------------------------------------------------------------
 *   html, body, etc;
 *---------------------------------------------------------------------------*/
html,
body {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
	letter-spacing: 0.08em;
	font-family: "Noto Sans Japanese";
	color: #202020;
	line-height: 2;
	font-weight: 400;
}

body {
	font-size: 1.6rem;
}

@media (max-width: 750px) {
	body {
		font-size: 1.4rem;
	}
}

* {
	box-sizing: border-box;
}

img {
	display: block;
}

@media (max-width: 750px) {
	img {
		max-width: 100%;
	}
}

/*--------------------------------------------------------------------------
 *   base link;
 *---------------------------------------------------------------------------*/
a {
	outline: none;
	opacity: 1;
	transition: 0.3s ease;
	color: #202020;
}

a:link,
a:visited {
	text-decoration: none;
}

/* clearfix */
.clearfix {
	*zoom: 1;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.fb_iframe_widget span {
	display: block !important;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.fb_iframe_widget {
		display: block !important;
	}
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.l-content .wpcf7-list-item {
	display: block;
	margin: 0;
}

/*-------------------------------
WordPressエディタのデフォルト設定
--------------------------------*/
strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
}

.aligncenter {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
	max-width: 100%;
}

.clearfix {
	overflow: hidden;
	zoom: 1;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.l-footer {
	background-color: #053c63;
	position: relative;
	margin: 0 auto;
	min-width: 1200px;
	max-width: 1700px;
}

@media (max-width: 750px) {
	.l-footer {
		min-width: 320px;
		max-width: 750px;
		background-color: #0f4469;
		padding: 0 0 68px;
	}
}

.l-footer a,
.l-footer p,
.l-footer span {
	color: #fff;
}

.l-footer__head {
	position: absolute;
	height: 157px;
	top: -157px;
	left: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
}

.l-footer .pageTop {
	width: 108px;
	height: 157px;
	display: block;
	right: 10px;
	position: absolute;
	bottom: 0;
	background: url(../images/common/man_pose01.png) left top no-repeat;
	cursor: pointer;
	z-index: 999;
}

@media (max-width: 750px) {
	.l-footer .pageTop {
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 74px;
		height: 107px;
		background-size: cover;
	}
}

.l-footer .pageTop a {
	display: block;
	width: 100%;
	height: 100%;
}

.l-footer .pageTop:hover span {
	animation: pageTop 1.2s ease infinite;
}

.l-footer .pageTop span {
	background-color: #053c63;
	width: 78px;
	height: 28px;
	font-size: 1.3rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 14px;
	position: absolute;
	left: 5px;
	top: 12px;
}

@media (max-width: 750px) {
	.l-footer .pageTop span {
		width: 52px;
		height: 18px;
		font-size: 0.75rem;
		border-radius: 9px;
	}
}

.l-footer .pageTop span:after {
	content: "";
	width: 0;
	height: 0;
	border-width: 6px 5px 0 5px;
	border-style: solid;
	border-color: #053c63 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transform: translate(0, 100%);
}

@media (max-width: 750px) {
	.l-footer .pageTop span:after {
		border-width: 4px 3px 0 3px;
	}
}

.l-footer__foot {
	background-color: #0a2c44;
}

.l-footer__foot .l-inner {
	padding: 5px 10px;
}

.l-footer__foot .copyright {
	font-size: 1.4rem;
	font-weight: 300;
	text-align: right;
	letter-spacing: 0.06em;
}

@media (max-width: 750px) {
	.l-footer__foot .copyright {
		font-size: 0.7rem;
		text-align: center;
		line-height: 1.4;
	}
}

.l-header {
	background-color: #fff;
	min-width: 1200px;
	max-width: 1700px;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.l-header {
		min-width: 320px;
		max-width: 750px;
	}
}

.l-header__head {
	border-bottom: 1px solid #d6d6d6;
}

.l-header__head p {
	font-size: 1rem;
	color: #222;
	padding: 3px 10px;
}

.l-header .l-inner {
	height: 110px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 750px) {
	.l-header .l-inner {
		height: 54px;
		-ms-flex-pack: start;
		justify-content: flex-start;
		position: relative;
		padding-right: 80px;
	}
}

@media (max-width: 750px) {
	.l-header__logo {
		width: 104px;
	}
}

.l-header__copy {
	font-size: 1.3rem;
	letter-spacing: 0;
	color: #4d4d4d;
	font-weight: 400;
	line-height: 1;
}

.l-header__copy span {
	display: block;
}

@media (max-width: 750px) {
	.l-header__copy span {
		font-size: 1rem;
		margin: 0 0 0 20px;
	}
}

.l-header__copy span img {
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.l-header__copy span img {
		width: 177px;
		margin: 0;
	}
}

.l-header__btn .m-btn:first-child {
	margin: 0 0 10px;
}

.l-header__contact {
	font-size: 1.4rem;
	font-weight: 500;
}

.l-header__contact p {
	text-align: center;
}

.l-header__contact span img {
	margin: 3px 0;
}

.l-header__menuBtn {
	position: absolute;
	top: 12px;
	right: 10px;
	padding: 8px 0 0;
	z-index: 9999;
}

.l-header__menuBtn.active span {
	background-color: rgba(255, 255, 255, 0);
}

.l-header__menuBtn.active span:before,
.l-header__menuBtn.active span:after {
	background-color: #fff;
}

.l-header__menuBtn.active span:before {
	transform: rotate(315deg);
	top: 0;
}

.l-header__menuBtn.active span:after {
	transform: rotate(-315deg);
	bottom: 0;
}

.l-header__menuBtn.active p {
	color: rgba(255, 255, 255, 0);
}

.l-header__menuBtn.active p:before {
	color: #fff;
}

.l-header__menuBtn span {
	position: relative;
	display: block;
	width: 25px;
	height: 2px;
	background-color: #053c63;
	margin: 0 auto;
}

.l-header__menuBtn span:before,
.l-header__menuBtn span:after {
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background-color: #053c63;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: 0.5s ease;
}

.l-header__menuBtn span:before {
	top: -6px;
}

.l-header__menuBtn span:after {
	bottom: -6px;
}

.l-header__menuBtn p {
	font-size: 1.5rem;
	color: #053c63;
	transform: scale(0.5, 0.5);
	text-align: center;
	position: relative;
}

.l-header__menuBtn p:before {
	content: "閉じる";
	display: block;
	text-align: center;
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0);
	position: absolute;
	width: 100%;
	bottom: 0;
}

.l-header .nav {
	position: absolute;
	background-color: #0f4469;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	color: #fff;
	display: none;
}

.l-header .nav .l-inner {
	background-color: #0f4469;
	height: auto;
	padding-right: 0;
	display: block;
}

.l-header .nav a {
	color: #fff;
}

.l-header .nav .nav__logo {
	width: 125px;
	margin: 0 0 0 20px;
}

.l-header .closeArea {
	position: relative;
	height: 60px;
	background-color: #0a2c44;
}

.l-header .closeArea__btn {
	position: absolute;
	padding: 18px 0 0;
	top: 5px;
	right: 10px;
}

.l-header .closeArea__btn span {
	position: relative;
	display: block;
	width: 25px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0);
	margin: 0 auto;
}

.l-header .closeArea__btn span:before,
.l-header .closeArea__btn span:after {
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.l-header .closeArea__btn span:before {
	transform: rotate(315deg);
	top: 0;
}

.l-header .closeArea__btn span:after {
	transform: rotate(-315deg);
	bottom: 0;
}

.l-header .closeArea__btn p {
	font-size: 1.4rem;
	color: #fff;
	transform: scale(0.5, 0.5);
	text-align: center;
	position: relative;
}

.l-side {
	width: 320px;
	padding: 0 10px;
	position: relative;
	z-index: 10;
}

@media (max-width: 750px) {
	.l-side {
		width: 100%;
		max-width: 375px;
		margin: 30px auto 0;
	}
}

.l-side > * {
	margin: 0 0 20px;
}

.l-side__bnr {
	transition: 0.3s ease;
}

.l-side__bnr:hover {
	opacity: 0.7;
}

@media (max-width: 750px) {
	.l-side__bnr img {
		margin: 0 auto;
	}
}

.l-side__btn .m-btn a {
	width: 100%;
	height: 40px;
	border-radius: 20px;
	font-size: 1.6rem;
}

.l-side__category {
	margin: 0 0 30px;
}

.l-side__category__ttl {
	line-height: 1;
	border-bottom: 5px solid #053c63;
}

.l-side__category ul {
	padding: 5px 0 0;
}

.l-side__category li {
	font-size: 1.7rem;
	line-height: 1;
	padding: 0 0 0 10px;
	margin: 20px 0 0;
	position: relative;
}

.l-side__category li a {
	transition: 0.3s ease;
}

.l-side__category li a:hover {
	opacity: 0.7;
}

.l-side__category li:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-width: 3px 0 3px 6px;
	border-style: solid;
	border-color: transparent transparent transparent #053c63;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
}

.l-side__menu__ttl {
	height: 50px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.6rem;
	background-color: #053c63;
	color: #fff;
	font-weight: 300;
	padding: 0 20px;
	position: relative;
}

.l-side__menu__ttl:before {
	content: "";
	display: inline-block;
	margin: 0 0.7em 0 0;
}

.l-side__menu li {
	border: 1px solid #cecece;
	border-top: none;
}

.l-side__menu li:first-child {
	border-top: 1px solid #cecece;
}

.l-side__menu a {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	background-color: #fff;
}

.l-side__menu a:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #cecece;
	transform: rotate(45deg);
	position: absolute;
	right: 18px;
	transition: 0.3s ease;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.l-side__menu.media .l-side__menu__ttl:before {
	width: 17px;
	height: 17px;
	background: url(../images/common/icon_media.png) left top no-repeat;
	background-size: cover;
}

.l-side__menu.media a {
	-ms-flex-pack: center;
	justify-content: center;
	height: 60px;
}

.l-side__menu.media a:hover:after {
	right: 24px;
	border-color: #3c3c3c;
}

.l-side__menu.media a:before {
	content: "";
	display: block;
	width: 3px;
	height: 20px;
	background-color: #cecece;
	position: absolute;
	left: 15px;
}

.l-side__menu.media a img {
	transform: scale(0.75, 0.75);
}

.l-side__menu.result .l-side__menu__ttl:before {
	width: 17px;
	height: 17px;
	background: url(../images/common/icon_check.png) left top no-repeat;
	background-size: cover;
}

.l-side__menu.result .l-side__menu__textarea {
	padding: 0 10px 15px;
	border: 1px solid #cecece;
}

.l-side__menu.result .l-side__menu__result {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 4px solid #e0e0e0;
}

.l-side__menu.result .l-side__menu__result p {
	font-size: 1.6rem;
	font-weight: 500;
	border-left: 3px solid #053c63;
	padding: 0 0 0 12px;
}

.l-side__menu.result .l-side__menu__result > span {
	font-size: 2.3rem;
	font-weight: 900;
	font-style: italic;
	line-height: 1.8;
}

.l-side__menu.result .l-side__menu__result > span .pink {
	font-size: 3.3rem;
	color: #e40081;
	font-family: "Roboto";
	letter-spacing: -0.01em;
	margin: 0 3px 0 0;
}

.l-side__menu.result .l-side__menu__date {
	font-size: 1.4rem;
	text-align: right;
}

.l-side__menu.result .m-btn {
	margin: 10px 0 0;
}

.l-side__menu.result .m-btn a {
	width: 100%;
	height: 40px;
	border-radius: 20px;
	font-size: 1.6rem;
}

.l-side__menu.job a {
	height: 50px;
	padding: 0 0 0 54px;
}

.l-side__menu.job a:hover:after {
	right: 24px;
	border-color: #3c3c3c;
}

.l-side__menu.job img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 18px;
	margin: auto 0;
}

.l-side__menu.type a:hover:after {
	right: 24px;
	border-color: #3c3c3c;
}

.l-side__menu.type .l-side__menu__ttl:before,
.l-side__menu.job .l-side__menu__ttl:before {
	width: 17px;
	height: 17px;
	background: url(../images/common/icon_search.png) left top no-repeat;
	background-size: cover;
}

.l-inner {
	width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}

@media (max-width: 750px) {
	.l-inner {
		width: 100%;
	}
}

.l-content {
	min-width: 1200px;
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 0 50px;
	background: url(../images/footer/footer_building.png) left bottom repeat-x;
}

@media (max-width: 750px) {
	.l-content {
		min-width: 320px;
		max-width: 750px;
		padding: 0 0 130px;
		background: url(../images/footer/footer_building-sp.png) center bottom no-repeat;
		background-size: 750px auto;
	}
}

.l-wrapper {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	padding: 20px 0 0;
}

@media (max-width: 750px) {
	.l-wrapper {
		display: block;
		width: 100%;
	}
}

.l-main {
	width: 880px;
	padding: 0 10px;
	-ms-flex-order: 2;
	order: 2;
}

@media (max-width: 750px) {
	.l-main {
		width: 100%;
		padding: 0 10px;
	}

	.l-main._event {
		max-width: 375px;
		margin: 0 auto;
	}

	.l-main._seminar {
		max-width: 375px;
		margin: 0 auto;
	}
}

.lower .mv__head {
	min-height: 12px;
}

.lower .mv__head .l-inner:before,
.lower .mv__head .l-inner:after {
	content: none;
}

.lower .mv__main {
	height: auto;
}

.lower .mv__main img {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
}

.lower .mv_ownedpac img {
	width: 100%;
}

.error404 .l-header {
	border-bottom: 4px solid #053c63;
}

.error404 .l-content {
	padding: 50px 0 120px;
}

.g-nav {
	background-color: #053c63;
	padding: 20px 0;
	position: relative;
	z-index: 99;
}

@media (max-width: 750px) {
	.g-nav {
		padding: 0;
		position: relative;
	}
}

.g-nav > ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

@media (max-width: 750px) {
	.g-nav > ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		max-width: 355px;
		margin: 0 auto;
	}

	.g-nav > ul:before {
		content: "";
		width: 100%;
		height: 1px;
		display: block;
		background-color: #fff;
		position: absolute;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		top: 33%;
		margin: auto;
	}

	.g-nav > ul:after {
		content: "";
		width: 100%;
		height: 1px;
		display: block;
		background-color: #fff;
		position: absolute;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		top: 66%;
		margin: auto;
	}
}

.g-nav > ul > li {
	position: relative;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
}

@media (max-width: 750px) {
	.g-nav > ul > li {
		position: static;
		-ms-flex: 1 1 33.3%;
		flex: 1 1 33.3%;
		border-right: 1px solid #d7d7d7;
	}

	.g-nav > ul > li:nth-child(3n + 1) {
		border-left: 1px solid #d7d7d7;
	}
}

.g-nav > ul > li > a:after {
	content: "";
}

.g-nav > ul > li > a,
.g-nav > ul > li span {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	display: block;
	position: relative;
	cursor: pointer;
}

@media (max-width: 750px) {

	.g-nav > ul > li > a,
	.g-nav > ul > li span {
		font-size: 1rem;
		font-weight: 300;
		height: 45px;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		text-align: center;
		letter-spacing: 0;
		line-height: 1.4;
	}
}

.g-nav > ul > li > a:hover:after,
.g-nav > ul > li span:hover:after {
	width: 100%;
	opacity: 1;
}

.g-nav > ul > li > a:after,
.g-nav > ul > li span:after {
	display: block;
	width: 0%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	transition: 0.3s ease-out;
	left: 0;
	right: 0;
}

@media (max-width: 750px) {

	.g-nav > ul > li > a:after,
	.g-nav > ul > li span:after {
		content: none;
	}
}

.g-nav__modal {
	display: none;
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 99;
}

@media (min-width: 751px) {
	.g-nav__modal {
		box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
		transform: translate(-50%, 0);
		z-index: 9999;
	}
}

@media (max-width: 750px) {
	.g-nav__modal {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 9999;
	}
}

.g-nav__modal ul {
	width: 320px;
}

@media (max-width: 750px) {
	.g-nav__modal ul {
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

.g-nav__modal li {
	border: 1px solid #cecece;
	border-top: none;
	width: 100%;
}

.g-nav__modal li:first-child {
	border-top: 1px solid #cecece;
}

.g-nav__modal a {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	background-color: #fff;
}

@media (max-width: 750px) {
	.g-nav__modal a {
		font-size: 1.4rem;
	}
}

.g-nav__modal a:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #cecece;
	transform: rotate(45deg);
	position: absolute;
	right: 18px;
	transition: 0.3s ease;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.g-nav__modal.media a {
	-ms-flex-pack: center;
	justify-content: center;
	height: 60px;
}

@media (max-width: 750px) {
	.g-nav__modal.media a {
		height: 50px;
	}
}

.g-nav__modal.media a:hover:after {
	right: 24px;
	border-color: #3c3c3c;
}

.g-nav__modal.media a:before {
	content: "";
	display: block;
	width: 3px;
	height: 20px;
	background-color: #cecece;
	position: absolute;
	left: 15px;
}

.g-nav__modal.media a img {
	transform: scale(0.75, 0.75);
}

.g-nav__modal.job a {
	height: 50px;
	padding: 0 0 0 54px;
}

@media (max-width: 750px) {
	.g-nav__modal.job a {
		height: 40px;
	}
}

.g-nav__modal.job a:hover:after {
	right: 24px;
	border-color: #3c3c3c;
}

.g-nav__modal.job img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 18px;
	margin: auto 0;
}

.g-nav__modal.type a:hover:after {
	right: 24px;
	border-color: #3c3c3c;
}

.g-nav .closeArea {
	position: relative;
	height: 60px;
}

@media (min-width: 751px) {
	.g-nav .closeArea {
		display: none;
	}
}

.g-nav .closeArea__btn {
	position: absolute;
	padding: 18px 0 0;
	top: 5px;
	right: 10px;
}

.g-nav .closeArea__btn span {
	position: relative;
	display: block;
	width: 25px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0);
	margin: 0 auto;
}

.g-nav .closeArea__btn span:before,
.g-nav .closeArea__btn span:after {
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.g-nav .closeArea__btn span:before {
	transform: rotate(315deg);
	top: 0;
}

.g-nav .closeArea__btn span:after {
	transform: rotate(-315deg);
	bottom: 0;
}

.g-nav .closeArea__btn p {
	font-size: 1.4rem;
	color: #fff;
	transform: scale(0.5, 0.5);
	text-align: center;
	position: relative;
}

/* ==========================================================================
 会社概要 追加
========================================================================== */
.sdgs-wrap {
	border: 2px solid #053c63;
	margin-bottom: 60px;
	padding-bottom: 30px;
}

.sdgs-wrap .sdgs_img {
	padding: 50px 0;
	background-color: #e1eef8;
	margin-bottom: 10px;
}

.sdgs-wrap .sdgs_img img {
	width: 430px;
	margin: 0 auto;
}

.sdgs-wrap h2 {
	font-family: "Noto Sans";
	font-weight: bold;
	font-size: 3.4rem;
	color: #053c63;
	text-align: center;
}

.sdgs-wrap p.sdgs-txt {
	font-size: 2rem;
	line-height: 2;
	text-align: center;
	margin-bottom: 10px;
}

.sdgs-wrap .company-name {
	text-align: right;
	padding-right: 50px;
	margin-bottom: 50px;
	font-family: "Hiragino Mincho ProN";
}

.sdgs-wrap .company-name p.company-day {
	font-size: 1.6rem;
	margin-bottom: 10px;
	letter-spacing: -0.1em;
}

.sdgs-wrap .company-name p.company-txt {
	font-size: 1.6rem;
}

.sdgs-wrap .company-name p.company-txt b {
	font-size: 2.4rem;
	font-weight: normal;
	padding-left: 10px;
}

.sdgs-wrap h3 {
	font-family: "Noto Sans";
	font-weight: bold;
	font-size: 3rem;
	text-align: center;
}

.sdgs-area {}

.sdgs-area + .sdgs-area {
	margin-top: 60px;
}

.sdgs-area .sdgs-ttl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	box-sizing: border-box;
}

.sdgs-area .sdgs-ttl h4 {
	font-family: "Noto Sans";
	font-weight: bold;
	font-size: 3rem;
	color: #053c63;
	/*position: relative;
	text-indent: 40px;*/
}

/*
.sdgs-area .sdgs-ttl h4:before {
	position: absolute;
    top: 25px;
    left: 0;
    content: "";
    display: inline-block;
    width: 24px;
    height: 4px;
    background: url(../images/company/company-sub.png) no-repeat;
    background-size: contain;
}*/
.sdgs-area .sdgs-ttl .sdgs-icon {}

.sdgs-area .sdgs-ttl .sdgs-icon img.sdg01,
.sdgs-area .sdgs-ttl .sdgs-icon img.sdg03 {
	width: 343px;
	height: 54px;
}

.sdgs-area .sdgs-ttl .sdgs-icon img.sdg02 {
	width: 287px;
	height: 54px;
}

.sdgs-area p.normal-desc {
	font-size: 1.6rem;
	padding: 23px 35px 0;
	letter-spacing: 0 !important;
}

.sp-01 {
	display: none;
}

@media screen and (max-width: 750px) {
	.sdgs-wrap {
		padding-bottom: 30px;
	}

	.sdgs-wrap .sdgs_img {
		padding: 30px 0;
	}

	.sdgs-wrap .sdgs_img img {
		width: 90%;
	}

	.sdgs-wrap h2 {
		font-size: 2rem;
		margin-bottom: 10px;
		font-family: "ヒラギノ角ゴ ProN", sans-serif;
	}

	.sdgs-wrap p.sdgs-txt {
		font-size: 1.3rem;
		text-align: left;
		padding: 0 1%;
	}

	.sdgs-wrap p.sdgs-txt br {
		display: none;
	}

	.sdgs-wrap .company-name p.company-day {
		margin-bottom: 0;
	}

	.sdgs-wrap .company-name {
		text-align: right;
		padding-right: 2%;
		margin-bottom: 40px;
	}

	.sdgs-wrap .company-name p.company-txt {
		font-size: 1.2rem;
	}

	.sdgs-wrap .company-name p.company-txt b {
		font-size: 2rem;
		font-weight: normal;
		padding-left: 0;
	}

	.sdgs-wrap h3 {
		font-size: 1.7rem;
		font-family: "ヒラギノ角ゴ ProN", sans-serif;
	}

	.sdgs-area .sdgs-ttl h4 {
		font-size: 1.6rem;
	}

	.sdgs-area .sdgs-ttl {
		display: flex;
		align-items: center;
		padding: 0 2%;
		box-sizing: border-box;
	}

	.sdgs-area .sdgs-ttl .sdgs-icon {
		width: 60%;
	}

	.sdgs-area .sdgs-ttl .sdgs-icon img.sdg01,
	.sdgs-area .sdgs-ttl .sdgs-icon img.sdg03 {
		height: auto;
	}

	.sdgs-area .sdgs-ttl .sp-wi50 {
		width: 50%;
	}

	.sdgs-area .sdgs-ttl .sdgs-icon img.sdg02 {
		height: auto;
	}

	.sdgs-area .sdgs-ttl h4 {
		font-size: 1.8rem;
		/*text-indent: 20px;*/
		font-family: "ヒラギノ角ゴ ProN", sans-serif;
	}

	/*
	.sdgs-area .sdgs-ttl h4:before {
		position: absolute;
	    top: 15px;
	    left: 0;
	    content: "";
	    display: inline-block;
	    width: 16px;
	    height: 2px;
	}*/
	.sdgs-area .sdgs-ttl h4.sp-ttl:before {
		position: absolute;
		top: 25px !important;
	}

	.sdgs-area .sdgs-ttl h4.sp-ttl {
		line-height: 1.4;
	}

	.sdgs-area .sdgs-ttl h4.sp-ttl span {
		padding-left: 1.4em !important;
	}

	.sdgs-area p.normal-desc {
		font-size: 1.4rem;
		padding: 2% 2% 0;
	}

	.sdgs-area + .sdgs-area {
		margin-top: 35px;
	}

	.sp-01 {
		display: inherit;
	}
}

/*--------------------------------
modules
-----------------------------------*/
.m0 {
	margin: 0 !important;
}

.m-btn a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	width: 216px;
	height: 32px;
	border-radius: 16px;
	color: #fff;
	background-color: #053c63;
	position: relative;
	font-size: 1.3rem;
	overflow: hidden;
}

.m-btn a:hover:before {
	opacity: 0;
	width: 100%;
	transition: width 0.5s ease, opacity 0.5s ease;
}

.m-btn a:hover:after {
	right: 8%;
}

.m-btn a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	width: 0;
	height: 100%;
	z-index: 10;
}

@media (max-width: 750px) {
	.m-btn a:before {
		content: none;
	}
}

.m-btn a:after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 5%;
	transform: rotate(45deg);
	transition: 0.3s ease;
}

.m-btn.blue a {
	background-color: #16a2f2;
}

.m-btn.pink a {
	background-color: #e40081;
}

.m-listTtl {
	font-size: 23px;
	font-family: "Noto Sans Japanese";
	font-weight: bold;
	color: #fff;
	border-bottom: 1px solid #a8a8a8;
	margin-bottom: 15px;
}

.m-listIcon {
	position: relative;
	line-height: 1.2;
	margin: 0 0 15px;
	font-family: "Noto Sans Japanese";
	font-size: 15px;
	font-weight: bold;
}

@media (max-width: 750px) {
	.m-listTtl {
		padding: 15px 0 0;
		margin: 0 20px 10px 20px;
	}

	.m-listIcon {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		margin: 0;
		padding: 8px 20px;
	}

	.m-listIcon.active p:after {
		border-width: 0 0 2px 2px;
		top: 7px;
	}
}

@media (max-width: 750px) {
	.m-listIcon a {
		width: 100%;
		height: 100%;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (max-width: 750px) {
	.m-listIcon p {
		border-left: 2px solid #fff;
		line-height: 2;
		padding: 0 0 0 0.5em;
		position: relative;
		width: 100%;
	}

	.m-listIcon p:after {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-width: 2px 2px 0 0;
		border-style: solid;
		border-color: #fff;
		position: absolute;
		right: 20px;
		top: 3px;
		transform: rotate(135deg);
		transition: 0.3s ease;
	}
}

/*.m-listIcon:before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    color: transparent; }
    @media (max-width: 750px) {
      .m-listIcon:before {
        content: none; } }*/
/*.m-listIcon:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-width: 3px 0 3px 4px;
    border-style: solid;
    border-color: transparent transparent transparent #053c63;
    top: 4px;
    left: 5px;
    margin: auto;
    position: absolute; }
    @media (max-width: 750px) {
      .m-listIcon:after {
        content: none; } }*/
.fixedNav {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 68px;
	background-color: #e7e7e7;
	z-index: 9999;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 10px;
}

.fixedNav a {
	width: 100%;
	height: 100%;
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 5px;
}

.fixedNav a img {
	max-height: 100%;
	width: auto;
}

.fixedNav__btn {
	width: 100%;
	height: 50px;
	border-radius: 4px;
}

.fixedNav__btn.blue {
	background-color: #16a2f2;
	-ms-flex: 1 1 95px;
	flex: 1 1 95px;
}

.fixedNav__btn.pink {
	background-color: #e40081;
	-ms-flex: 1 1 95px;
	flex: 1 1 95px;
	margin: 0 8px;
}

.fixedNav__btn.tel {
	background-color: #0a2c44;
	-ms-flex: 1 1 142px;
	flex: 1 1 142px;
}

.fixedNav__btn.tel a {
	padding: 8px 3px;
}

.breadcrumbs {
	background-color: #f2f2f2;
	padding: 3px 0;
	font-size: 1.3rem;
}

@media (max-width: 750px) {
	.breadcrumbs {
		font-size: 1.1rem;
	}
}

@media (max-width: 750px) {
	.breadcrumbs .l-inner {
		max-width: 375px;
		margin: 0 auto;
	}
}

.breadcrumbs span {
	margin: 0 5px;
}

.cont-wrap {
	margin-bottom: 60px;
}

.title-deco01 {
	font-size: 3.8rem;
	line-height: 1.6;
	color: #053c63;
	font-weight: 900;
	border-left: 4px solid #053c63;
	padding: 0 0 0 20px;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.title-deco01 {
		font-size: 1.8rem;
		border-left-width: 2px;
		padding: 0 0 0 10px;
		margin: 0 0 20px;
	}
}

.title-deco01 > span {
	display: block;
	margin: 0 0 8px;
}

@media (max-width: 750px) {
	.title-deco01 > span {
		display: inline-block;
		margin: 0 0 4px;
	}
}

.title-deco01 .yellow {
	position: relative;
}

.title-deco01 .yellow:before {
	content: "";
	display: block;
	width: 100%;
	height: 18%;
	background-color: #fffc1d;
	position: absolute;
	left: 0;
	bottom: 5%;
	z-index: -1;
}

@media (max-width: 750px) {
	.title-deco01 .yellow:before {
		height: 12%;
		bottom: 18%;
	}
}

.normal-desc {
	font-size: 1.6rem;
	color: #202020;
	line-height: 2;
	letter-spacing: 0.08em;
	margin: 0 0 30px;
}

.normal-desc .red {
	color: #f04949;
}

.normal-desc.alignC {
	text-align: center;
}

@media (max-width: 750px) {
	.normal-desc {
		font-size: 1.2rem;
		line-height: 1.8;
		margin: 0 0 20px;
	}
}

.title-deco02 {
	font-size: 3.2rem;
	position: relative;
	padding: 0 0 0 60px;
	font-weight: 900;
	color: #5b5b5b;
	margin: 0 0 25px;
}

@media (max-width: 750px) {
	.title-deco02 {
		font-size: 1.7rem;
		padding: 0 0 0 35px;
		margin: 0 0 20px;
	}
}

.title-deco02:before {
	content: "";
	display: block;
	width: 49px;
	height: 49px;
	position: absolute;
	bottom: 2px;
	left: 0;
	background: url(../images/common/icon_face.png);
}

@media (max-width: 750px) {
	.title-deco02:before {
		background-size: cover;
		width: 25px;
		height: 25px;
		bottom: 0;
		top: 0;
		margin: auto 0;
	}
}

.title-deco02 span {
	padding: 0 0 8px;
	background: url(../images/common/line-deco.png) left bottom repeat-x;
	background-size: 15px auto;
}

.title-deco03 {
	width: 100%;
	height: 90px;
	background-color: #b5b5b5;
	border-radius: 8px;
	font-size: 2.4rem;
	font-weight: 900;
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.title-deco03 {
		font-size: 1.6rem;
		text-align: center;
		line-height: 1.5;
		min-height: 80px;
		height: auto;
		margin: 0 0 20px;
		padding: 0 20px;
	}
}

.content-img {
	width: 100%;
	margin: 0 0 30px;
}

.content-img__right {
	float: right;
	margin: 0 0 30px 30px;
}

@media (max-width: 750px) {
	.content-img {
		margin: 0 0 20px;
	}

	.content-img__right {
		margin: 0 0 20px;
		float: none;
	}

	.content-img__right img {
		margin: auto;
	}
}

.content-img img {
	margin: 0 auto;
}

.content-img span {
	text-align: center;
	display: block;
}

.title-deco04 {
	width: 100%;
	height: 64px;
	font-size: 2.7rem;
	color: #fff;
	line-height: 1;
	background-color: #053c63;
	font-weight: 900;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 32px;
	position: relative;
	margin: 0 0 40px;
}

@media (max-width: 750px) {
	.title-deco04 {
		font-size: 1.6rem;
		height: auto;
		text-align: center;
		margin: 0 0 20px;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 10px 20px;
		border-radius: 50px;
		line-height: 1.2;
	}
}

.title-deco04:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-width: 15px 15px 0 15px;
	border-style: solid;
	border-color: #053c63 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translate(0, 100%);
	margin: 0 auto;
}

@media (max-width: 750px) {
	.title-deco04:after {
		border-width: 10px 10px 0 10px;
	}
}

.title-deco04.eye p {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.title-deco04.eye p:before {
	content: "";
	display: inline-block;
	width: 45px;
	height: 27px;
	background: url(../images/common/icon_eye.png) left top no-repeat;
	background-size: contain;
	margin: 0 13px 0 0;
}

@media (max-width: 750px) {
	.title-deco04.eye p:before {
		width: 30px;
		height: 19px;
		margin: 0 8px 0 0;
		content: none;
	}
}

.title-deco04.message p {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.title-deco04.message p:before {
	content: "";
	display: inline-block;
	width: 35px;
	height: 35px;
	background: url(../images/common/icon_message2.png) left top no-repeat;
	background-size: contain;
	margin: 0 13px 0 0;
}

@media (max-width: 750px) {
	.title-deco04.message p:before {
		width: 28px;
		height: 28px;
		margin: 0 8px 0 0;
		content: none;
	}
}

.title-deco04.addArrow {
	margin-bottom: 70px;
}

.title-deco04.addArrow:before {
	content: "";
	display: block;
	width: 34px;
	height: 18px;
	background-color: #053c63;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translate(0, 100%);
	margin: 0 auto;
}

.title-deco04.addArrow:after {
	bottom: -18px;
	border-width: 32px 32px 0 32px;
}

.title-deco04 .yellow {
	padding: 5px 8px 3px 8px;
	font-size: 1.5rem;
	color: #053c63;
	background-color: #fdfb1c;
	font-family: "Roboto";
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.title-deco04 .yellow {
		font-size: 1.1rem;
		margin: 0 0 5px;
		letter-spacing: 0;
		padding: 3px 4px 2px 4px;
	}
}

.title-deco04 span {
	font-size: 3.2rem;
}

@media (max-width: 750px) {
	.title-deco04 span {
		font-size: 1.8rem;
	}
}

.desc-list01 {
	margin: 0 0 20px;
}

.desc-list01 li {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.6rem;
	color: #202020;
	padding: 30px 10px;
	border-bottom: 1px dashed #e1e1e1;
	letter-spacing: 0.08em;
}

@media (max-width: 750px) {
	.desc-list01 li {
		position: relative;
		font-size: 1.2rem;
		line-height: 1.8rem;
		padding: 50px 10px 20px;
		color: #202020;
	}
}

.desc-list01 li:before {
	content: "";
	width: 95px;
	height: 124px;
	display: block;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.desc-list01 li:before {
		position: absolute;
		z-index: -1;
		top: 15px;
		left: -10px;
	}
}

.desc-list01 li:first-child {
	border-top: 1px dashed #e1e1e1;
}

.desc-list01 li:first-child:before {
	background: url(../images/common/number1.png) center top no-repeat;
}

@media (max-width: 750px) {
	.desc-list01 li:first-child:before {
		background-size: auto 45%;
	}
}

.desc-list01 li:nth-child(2):before {
	background: url(../images/common/number2.png) center top no-repeat;
}

@media (max-width: 750px) {
	.desc-list01 li:nth-child(2):before {
		background-size: auto 45%;
	}
}

.desc-list01 li:nth-child(3):before {
	background: url(../images/common/number3.png) center top no-repeat;
}

@media (max-width: 750px) {
	.desc-list01 li:nth-child(3):before {
		background-size: auto 45%;
	}
}

.desc-list02 {
	padding: 0 0 10px;
}

.desc-list02 li {
	padding: 15px 20px 15px 15px;
	font-size: 1.6rem;
	color: #202020;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	background-color: #deedf8;
	border-radius: 8px;
	margin: 0 0 20px;
	letter-spacing: 0.08em;
}

@media (max-width: 750px) {
	.desc-list02 li {
		display: block;
		font-size: 1.2rem;
		line-height: 1.8;
		color: #202020;
		padding: 12px;
		margin: 0 0 10px;
	}
}

.desc-list02 li:before {
	content: "";
	width: 86px;
	height: 86px;
	display: block;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.desc-list02 li:before {
		width: 43px;
		height: 43px;
		margin: 0 0 10px;
	}
}

.desc-list02 li:first-child:before {
	background: url(../images/common/icon_number1.png) center top no-repeat;
}

@media (max-width: 750px) {
	.desc-list02 li:first-child:before {
		background-size: cover;
	}
}

.desc-list02 li:nth-child(2):before {
	background: url(../images/common/icon_number2.png) center top no-repeat;
}

@media (max-width: 750px) {
	.desc-list02 li:nth-child(2):before {
		background-size: cover;
	}
}

.desc-list02 li:nth-child(3):before {
	background: url(../images/common/icon_number3.png) center top no-repeat;
}

@media (max-width: 750px) {
	.desc-list02 li:nth-child(3):before {
		background-size: cover;
	}
}

.title-list01 {
	padding: 0 0 20px;
}

.title-list01 li {
	height: 105px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	font-size: 2.4rem;
	color: #053c63;
	font-weight: 900;
	line-height: 1.4;
	border-bottom: 1px dashed #e1e1e1;
	padding: 0 10px;
}

@media (max-width: 750px) {
	.title-list01 li {
		font-size: 1.7rem;
		height: 90px;
	}
}

.title-list01 li:before {
	content: "";
	width: 45px;
	height: 44px;
	display: block;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 20px 0 0;
	background: url(../images/common/checkbox.png) left top no-repeat;
}

@media (max-width: 750px) {
	.title-list01 li:before {
		width: 23px;
		height: 22px;
		background-size: cover;
	}
}

.title-list01 li:first-child {
	border-top: 1px dashed #e1e1e1;
}

.anchorlinks {
	padding: 37px 0;
}

@media (max-width: 750px) {
	.anchorlinks {
		padding: 25px 0;
	}
}

.anchorlinks ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 750px) {
	.anchorlinks ul {
		display: block;
	}
}

.anchorlinks li {
	margin: 0 10px;
}

@media (max-width: 750px) {
	.anchorlinks li {
		margin: 0 0 10px;
	}
}

.anchorlinks li:first-child a:before {
	background: url(../images/common/man_pose03.png) left bottom no-repeat;
}

.anchorlinks li:nth-child(2) a:before {
	background: url(../images/common/man_pose04.png) left bottom no-repeat;
}

.anchorlinks li:nth-child(3) a:before {
	background: url(../images/common/man_pose05.png) center bottom no-repeat;
}

.anchorlinks a {
	width: 380px;
	height: 82px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: end;
	align-items: flex-end;
	font-size: 2rem;
	color: #053c63;
	font-weight: 500;
	border: 2px solid #053c63;
	border-radius: 8px;
	padding: 0 0 28px 50px;
	position: relative;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	transition: 0.4s ease;
}

.anchorlinks a:hover {
	background-color: #053c63;
	color: #fff;
}

.anchorlinks a:hover:after {
	border-color: #fff;
}

@media (max-width: 750px) {
	.anchorlinks a {
		width: 100%;
		height: 60px;
		font-size: 1.4rem;
		padding: 0 0 10px;
		-ms-flex-align: center;
		align-items: center;
	}
}

.anchorlinks a:before {
	content: "";
	display: block;
	width: 86px;
	height: 92px;
	position: absolute;
	left: 0;
	bottom: 0;
}

@media (max-width: 750px) {
	.anchorlinks a:before {
		content: none;
	}
}

.anchorlinks a:after {
	content: "";
	width: 10px;
	height: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #053c63;
	display: block;
	position: absolute;
	right: 0;
	left: 50px;
	bottom: 12px;
	transform: rotate(135deg);
	margin: 0 auto;
	transition: 0.4s ease;
}

@media (max-width: 750px) {
	.anchorlinks a:after {
		width: 8px;
		height: 8px;
		left: 0;
		bottom: 12px;
		border-width: 1px 1px 0 0;
	}
}

.table-list01 {
	margin: 0 0 30px;
}

.table-list01.orange th {
	background-color: #fdece2;
}

.table-list01.gray th {
	background-color: #efefef;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.table-list01.gray td {
	text-align: left;
	padding: 25px 45px;
	line-height: 2;
	font-weight: 400;
}

@media (max-width: 750px) {
	.table-list01.gray td {
		padding: 15px;
	}
}

.table-list01 table {
	margin: 0 auto;
	width: 100%;
}

.table-list01 tr {
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	line-height: 1;
}

@media (max-width: 750px) {
	.table-list01 tr {
		font-size: 1.3rem;
	}
}

.table-list01 th {
	font-weight: 500;
	width: 300px;
	padding: 18px 0;
	border: 1px solid #a8a8a8;
	vertical-align: middle;
	background-color: #e1eef7;
}

@media (max-width: 750px) {
	.table-list01 th {
		width: 40%;
	}
}

.table-list01 td {
	width: 720px;
	border: 1px solid #a8a8a8;
	vertical-align: middle;
	padding: 18px 0;
	line-height: 1.3;
}

@media (max-width: 750px) {
	.table-list01 td {
		width: 60%;
		padding: 0 10px;
	}
}

.table-list01__col2 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 30px 10px 0;
}

.table-list01__col2:first-child {
	padding: 0 30px 0 0;
}

@media (max-width: 750px) {
	.table-list01__col2:first-child {
		padding: 0;
	}
}

@media (max-width: 750px) {
	.table-list01__col2 {
		display: block;
		padding: 0;
	}
}

.table-list01__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

@media (max-width: 750px) {
	.table-list01__ph {
		padding: 10px 0;
	}
}

.table-list02 {
	width: 100%;
	counter-reset: num 0;
	max-height: 868px;
	overflow-y: scroll;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.table-list02 {
		max-height: 474px;
	}
}

.table-list02 table {
	width: 100%;
	position: relative;
}

.table-list02 th,
.table-list02 td {
	font-size: 1.8rem;
	line-height: 2;
	font-weight: 400;
	letter-spacing: 0.1em;
	padding: 7px 0;
	text-align: center;
	border: 1px solid #d3d3d3;
}

@media (max-width: 750px) {

	.table-list02 th,
	.table-list02 td {
		font-size: 1.4rem;
	}
}

.table-list02 th {
	background-color: #e6f4f6;
}

.table-list02 td:first-child {
	width: 9%;
}

.table-list02 td:first-child:before {
	counter-increment: num 1;
	content: counter(num);
}

.table-list02 td:nth-child(2) {
	width: 23%;
}

.table-list02 td:nth-child(3) {
	width: 47%;
}

.table-list02 td:last-child {
	width: 21%;
}

.table-list02 td:last-child:after {
	content: "%";
}

.merit-box {
	display: -ms-flexbox;
	display: flex;
	padding: 20px 0 10px;
	margin: 0 0 20px;
	border-bottom: 1px solid #ccc;
}

@media (max-width: 750px) {
	.merit-box {
		display: block;
	}
}

.merit-box__ph {
	width: 323px;
	height: 323px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	border: 2px solid #053c63;
	border-radius: 50%;
	margin: 0 30px 0 0;
}

@media (max-width: 750px) {
	.merit-box__ph {
		width: 140px;
		height: 140px;
		margin: 0 auto 30px;
	}
}

.merit-box__ph img {
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
	.merit-box__ph img {
		transform: translate(-50%, -50%) scale(0.6, 0.6);
	}
}

.merit-box__ttl {
	font-size: 3.3rem;
	color: #053c63;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 20px;
}

@media (max-width: 750px) {
	.merit-box__ttl {
		font-size: 1.7rem;
		margin: 0 0 15px;
		line-height: 1.3;
	}
}

.merit-box__copy {
	font-size: 2.4rem;
	font-weight: 900;
	border-left: 4px solid #053c63;
	padding: 0 0 0 10px;
	color: #053c63;
	line-height: 1.4;
	margin: 0 0 20px 10px;
}

@media (max-width: 750px) {
	.merit-box__copy {
		font-size: 1.4rem;
		margin: 0 0 10px;
	}
}

@media (min-width: 751px) {
	.merit-box .normal-desc {
		margin-left: 10px;
	}
}

.title-deco05 {
	font-size: 3.8rem;
	line-height: 1.6;
	color: #053c63;
	font-weight: 900;
	line-height: 1;
	padding: 0 0 0 140px;
	margin: 0 0 30px;
	position: relative;
}

@media (max-width: 750px) {
	.title-deco05 {
		font-size: 1.8rem;
		margin: 0 0 20px;
		padding: 0;
	}
}

.title-deco05 .icon {
	display: block;
}

@media (min-width: 751px) {
	.title-deco05 .icon {
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translate(0, -50%);
	}
}

@media (max-width: 750px) {
	.title-deco05 .icon {
		width: 60px;
		margin: 0 0 15px;
	}
}

.title-deco05 p > span {
	display: block;
	margin: 0 0 8px;
}

@media (max-width: 750px) {
	.title-deco05 p > span {
		display: inline-block;
		margin: 0 0 4px;
	}
}

.title-deco05 .yellow {
	position: relative;
}

.title-deco05 .yellow:before {
	content: "";
	display: block;
	width: 100%;
	height: 18%;
	background-color: #fffc1d;
	position: absolute;
	left: 0;
	bottom: 5%;
	z-index: -1;
}

@media (max-width: 750px) {
	.title-deco05 .yellow:before {
		height: 12%;
		bottom: 18%;
	}
}

.title-deco05 .pink {
	color: #e40081;
}

.strong-list li {
	padding: 30px 0 40px;
	margin: 0 0 20px;
	border-bottom: 1px solid #ccc;
}

@media (max-width: 750px) {
	.strong-list li {
		padding: 15px 0 20px;
	}
}

.strong-list__box {
	display: -ms-flexbox;
	display: flex;
}

.strong-list__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.strong-list__textarea {
	margin: 0 0 0 16px;
}

@media (max-width: 750px) {
	.strong-list__textarea {
		margin: 0;
	}
}

.strong-list__textarea .normal-desc {
	letter-spacing: 0.04em;
}

.strong-list__copy {
	font-size: 2.4rem;
	line-height: 1;
	font-weight: 900;
	color: #053c63;
	border-left: 4px solid #053c63;
	padding: 0 0 0 20px;
	margin: 0 0 20px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 64px;
}

@media (max-width: 750px) {
	.strong-list__copy {
		font-size: 1.4rem;
		min-height: 0;
		display: block;
		padding: 3px 0 3px 12px;
		border-width: 2px;
	}
}

.strong-list__copy span {
	display: block;
}

@media (max-width: 750px) {
	.strong-list__copy span {
		line-height: 1.3;
	}
}

.strong-list .m-btn a {
	width: 100%;
}

.staff-list li {
	display: -ms-flexbox;
	display: flex;
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}

@media (max-width: 750px) {
	.staff-list li {
		display: block;
		padding: 20px 0;
	}
}

.staff-list__ph {
	border-radius: 50%;
	width: 216px;
	height: 216px;
	overflow: hidden;
	position: relative;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.staff-list__ph img {
	position: absolute;
	height: 100%;
	max-width: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
	.staff-list__ph {
		margin: 0 auto;
	}
}

.staff-list__textarea {
	padding: 10px 50px 0 30px;
	position: relative;
}

@media (max-width: 750px) {
	.staff-list__textarea {
		padding: 10px 10px 20px;
	}
}

.staff-list__name {
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	font-weight: 900;
}

@media (max-width: 750px) {
	.staff-list__name {
		font-size: 1.7rem;
	}
}

.staff-list__name .career {
	font-size: 1.5rem;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.staff-list__name .career {
		display: block;
		font-size: 1.4rem;
	}
}

.staff-list__name .eng {
	font-size: 2.2rem;
	font-family: "Roboto";
}

@media (max-width: 750px) {
	.staff-list__name .eng {
		font-size: 1.7rem;
	}
}

.staff-list__desc {
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.08em;
}

@media (max-width: 750px) {
	.staff-list__desc {
		font-size: 1.2rem;
		line-height: 1.4;
		margin: 10px 0 0;
	}
}

.staff-list__copy {
	position: absolute;
	right: 60px;
	bottom: 0;
}

@media (max-width: 750px) {
	.staff-list__copy {
		bottom: auto;
		top: -60px;
		right: 0;
		transform: scale(0.55, 0.55);
		transform-origin: right bottom;
	}
}

.title-deco06 {
	padding: 0 0 12px;
	border-bottom: 7px solid #ebebeb;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.title-deco06 {
		border-width: 4px;
		padding: 0 0 8px;
		margin: 0 0 15px;
	}
}

.title-deco06 span {
	font-size: 3.4rem;
	line-height: 1.5;
	color: #053c63;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 0 0 0 15px;
	border-left: 4px solid #053c63;
}

@media (max-width: 750px) {
	.title-deco06 span {
		font-size: 1.8rem;
		border-width: 2px;
		padding: 0 0 0 10px;
	}
}

.staff-box {
	border-bottom: 1px dashed #a0a0a0;
	margin: 0 0 30px;
}

.staff-box__head {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: end;
	align-items: flex-end;
	margin: 0 0 15px;
	position: relative;
}

@media (max-width: 750px) {
	.staff-box__head {
		display: block;
	}
}

.staff-box__data {
	color: #000;
	letter-spacing: 0.05em;
	line-height: 1;
	margin: 0 0 5px 20px;
}

@media (max-width: 750px) {
	.staff-box__data {
		margin: 15px 0 0;
	}
}

.staff-box__data span {
	display: block;
}

.staff-box__data .role {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 15px;
}

@media (max-width: 750px) {
	.staff-box__data .role {
		font-size: 1.5rem;
		margin: 0 0 10px;
	}
}

.staff-box__data .eng {
	font-size: 2.4rem;
	font-family: "Roboto";
	font-weight: 900;
}

@media (max-width: 750px) {
	.staff-box__data .eng {
		font-size: 2rem;
	}
}

.staff-box__copy {
	position: absolute;
	bottom: 90px;
	right: 60px;
}

@media (max-width: 750px) {
	.staff-box__copy {
		left: 0;
		right: 0;
		margin: 0 auto;
		bottom: 55px;
		width: 80%;
	}
}

.staff-box__middle {
	padding: 5px 0 15px;
}

.staff-box__middle p {
	display: -ms-flexbox;
	display: flex;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: 0.06em;
	margin: 0 0 15px;
}

@media (max-width: 750px) {
	.staff-box__middle p {
		display: block;
		font-size: 1.3rem;
	}
}

.staff-box__middle span {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	background-color: #053c63;
	color: #fff;
	font-weight: 300;
	width: 105px;
	height: 30px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.staff-box__middle span {
		margin: 0 0 5px;
		font-size: 1.3rem;
		width: 95px;
		height: 26px;
	}
}

.staff-box__voice {
	color: #000;
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-radius: 4px;
	margin: 0 0 20px;
}

.staff-box__voice__ttl:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../images/common/icon_speaker.png) left top no-repeat;
	vertical-align: -30%;
	margin: 0 5px 0 0;
}

@media (max-width: 750px) {
	.staff-box__voice__ttl:before {
		width: 12px;
		height: 12px;
		background-size: cover;
		vertical-align: -12%;
	}
}

.staff-box__voice__ttl span {
	font-size: 1.5rem;
	line-height: 1;
	text-decoration: underline;
	display: inline-block;
}

@media (max-width: 750px) {
	.staff-box__voice__ttl span {
		font-size: 1.1rem;
	}
}

.staff-box__voice__copy {
	font-size: 1.4rem;
}

@media (max-width: 750px) {
	.staff-box__voice__copy {
		font-size: 1.1rem;
		line-height: 1.7;
		margin: 5px 0 0;
	}
}

.staff-box__desc {
	font-size: 1.6rem;
	line-height: 1.7;
	margin: 0 0 20px;
}

@media (max-width: 750px) {
	.staff-box__desc {
		font-size: 1.3rem;
	}
}

.readmore {
	font-size: 1.7rem;
	color: #015db2;
	font-weight: 500;
	border-bottom: 1px solid #015db2;
	position: relative;
	line-height: 1.3;
	display: inline-block;
}

@media (max-width: 750px) {
	.readmore {
		font-size: 1.3rem;
	}
}

.readmore:before {
	content: "";
	display: block;
	position: absolute;
	width: 17px;
	height: 17px;
	background: url(../images/common/icon_arrow.png) left top no-repeat;
	right: -22px;
	top: 2px;
	bottom: 0;
	margin: auto 0;
}

.ajax-loader {
	display: none !important;
}

/*.form-wrap {
  display: none; }*/
.form-wrap__policy {
	width: calc(100% - 40px);
	height: 160px;
	margin: 30px auto;
	background-color: #eee;
	border-radius: 5px;
	padding: 20px 5px 20px 25px;
}

@media (max-width: 750px) {
	.form-wrap__policy {
		margin: 15px 0;
		width: 100%;
		padding: 15px 5px 10px 15px;
	}
}

.form-wrap__policy__inner {
	overflow-y: scroll;
	height: 100%;
}

.form-wrap__policy__ttl {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

@media (max-width: 750px) {
	.form-wrap__policy__ttl {
		font-size: 1.6rem;
	}
}

.form-wrap__policy__desc {
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.1em;
}

@media (max-width: 750px) {
	.form-wrap__policy__desc {
		font-size: 1.3rem;
	}
}

.form-wrap__submit {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
}

.form-wrap__submit .lever {
	white-space: nowrap;
	position: relative;
	padding: 0 0 0 26px;
}

@media (max-width: 750px) {
	.form-wrap__submit .lever {
		padding: 0 0 0 20px;
	}
}

.form-wrap__submit .lever:before {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid #053c63;
	border-radius: 50%;
	top: 2px;
	left: 0;
	bottom: 0;
	margin: auto 0;
}

@media (max-width: 750px) {
	.form-wrap__submit .lever:before {
		width: 12px;
		height: 12px;
	}
}

.form-wrap__submit .lever:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: #053c63;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 7px;
	bottom: 0;
	margin: auto 0;
	transition: 0.3s ease;
	opacity: 0;
}

@media (max-width: 750px) {
	.form-wrap__submit .lever:after {
		width: 4px;
		height: 4px;
		left: 6px;
	}
}

.form-wrap__submit p {
	border-radius: 5px;
	margin: 15px 0 0;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background-color: #e40081;
}

.form-wrap__submit p:hover:before {
	opacity: 0;
	width: 100%;
	transition: width 0.5s ease, opacity 0.5s ease;
}

.form-wrap__submit p:hover:after {
	right: 20px;
}

.form-wrap__submit p:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	width: 0;
	height: 100%;
	z-index: 10;
}

.form-wrap__submit p:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #fff;
	top: 0;
	bottom: 0;
	right: 15px;
	transform: rotate(45deg);
	margin: auto 0;
	transition: 0.3s ease;
}

.form-wrap__submit p.back {
	background-color: #16a2f2;
}

.form-wrap__submit input[type="submit"] {
	cursor: pointer;
	width: 500px;
	height: 70px;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 100;
}

@media (max-width: 750px) {
	.form-wrap__submit input[type="submit"] {
		width: 300px;
	}
}

.form-wrap__submit input[type="button"] {
	cursor: pointer;
	width: 500px;
	height: 70px;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 100;
}

@media (max-width: 750px) {
	.form-wrap__submit input[type="button"] {
		width: 300px;
	}
}

.form-wrap input[type="checkbox"]:checked + span:after {
	opacity: 1;
}

.form-wrap input[type="checkbox"].wpcf7c-conf {
	opacity: 0;
}

.form-wrap input[type="hidden"] + span:after {
	opacity: 1;
}

.form-wrap label {
	display: block;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0.1em;
	margin: 0 0 20px;
	cursor: pointer;
}

@media (max-width: 750px) {
	.form-wrap label {
		font-size: 1.4rem;
		margin: 15px 0;
	}
}

.form-wrap label br {
	display: none;
}

.form-wrap input[type="radio"] {
	display: none;
}

.form-wrap input[type="radio"]:checked + span:after {
	opacity: 1;
}

.formtable {
	width: 100%;
}

@media (max-width: 750px) {
	.formtable tr {
		display: block;
		margin: 0 0 10px;
	}
}

.formtable tr.sizeMiddle textarea {
	height: 115px;
}

.formtable tr.requered th span:after {
	content: "必須";
	color: #fff;
	background-color: #f75252;
	font-size: 1.4rem;
	padding: 1px 4px;
	letter-spacing: 0.1em;
	margin: 0 0 0 5px;
}

@media (max-width: 750px) {
	.formtable tr.requered th span:after {
		font-size: 1.2rem;
	}
}

.formtable th {
	border: 1px solid #b3b3b3;
	width: 230px;
	padding: 34px 0;
	background-color: #f3f3f3;
	letter-spacing: 0.1em;
}

@media (max-width: 750px) {
	.formtable th {
		width: 100%;
		display: block;
		padding: 12px 0;
		border-bottom: none;
	}
}

.formtable th span {
	display: -ms-flexbox;
	display: flex;
	font-size: 1.6rem;
	line-height: 1.7;
	text-align: left;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: 400;
}

@media (max-width: 750px) {
	.formtable th span {
		font-size: 1.4rem;
	}
}

.formtable td {
	border: 1px solid #b3b3b3;
	padding: 20px 25px;
}

@media (max-width: 750px) {
	.formtable td {
		display: block;
		padding: 10px;
	}
}

.formtable td label span {
	position: relative;
	padding: 0 0 0 26px;
}

@media (max-width: 750px) {
	.formtable td label span {
		padding: 0 0 0 20px;
	}
}

.formtable td label span:before {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid #053c63;
	border-radius: 50%;
	top: 2px;
	left: 0;
	bottom: 0;
	margin: auto 0;
}

@media (max-width: 750px) {
	.formtable td label span:before {
		width: 12px;
		height: 12px;
	}
}

.formtable td label span:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: #053c63;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 7px;
	bottom: 0;
	margin: auto 0;
	transition: 0.3s ease;
	opacity: 0;
}

@media (max-width: 750px) {
	.formtable td label span:after {
		width: 4px;
		height: 4px;
		left: 6px;
	}
}

.formtable td input[type="text"],
.formtable td input[type="tel"],
.formtable td input[type="email"] {
	padding: 16px 20px;
	font-size: 1.6rem;
	line-height: 0;
	letter-spacing: 0.1em;
	width: 415px;
	border: 1px solid #a6a6a6;
}

.formtable td .wpcf7-select {
	padding: 16px 20px;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	width: 415px;
	border: 1px solid #a6a6a6;
}

.wpcf7-form-control-wrap.menu-470 {
	position: relative;
}

.wpcf7-form-control-wrap.menu-470::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: "";
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}

@media (max-width: 750px) {

	.formtable td input[type="text"],
	.formtable td input[type="tel"],
	.formtable td input[type="email"],
	.formtable td .wpcf7-select {
		width: 100%;
		font-size: 1.4rem;
		padding: 10px 12px;
	}
}

.formtable td input[type="text"]:placeholder,
.formtable td input[type="tel"]:placeholder,
.formtable td input[type="email"]:placeholder {
	color: #a4a4a4;
}

.formtable td textarea {
	width: 100%;
	height: 215px;
	resize: none;
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: 0.1em;
	padding: 16px 20px;
	border: 1px solid #b3b3b3;
}

.contact01-open #contact02 {
	visibility: hidden;
	height: 0;
}

.contact02-open #contact01 {
	visibility: hidden;
	height: 0;
}

.contact-list {
	margin: 0 0 30px;
	padding-top: 70px;
	margin-top: -70px;
}

.contact-list ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.contact-list ul {
		display: block;
	}
}

.contact-list li {
	/*width: 275px;*/
	width: 49%;
	height: 70px;
	border-radius: 4px;
	border: 2px solid #053c63;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	color: #053c63;
	font-weight: 500;
	position: relative;
	transition: 0.3s ease;
	padding: 0 18px 0 0;
	cursor: pointer;
}

.contact-list li a {
	color: #053c63;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contact-list li.active a {
	color: #fff;
}

@media (max-width: 750px) {
	.contact-list li {
		width: 100%;
		height: 60px;
		font-size: 1.4rem;
		margin: 0 0 10px;
	}
}

.contact-list li.active {
	background-color: #053c63;
	color: #fff;
}

.contact-list li.active:before {
	background-color: #fff;
}

.contact-list li.active:after {
	border-color: #fff transparent transparent transparent;
}

.contact-list li:before,
.contact-list li:after {
	content: "";
	display: block;
	position: absolute;
	margin: auto 0;
	transition: 0.3s ease;
}

.contact-list li:before {
	width: 10px;
	height: 6px;
	background-color: #053c63;
	top: 0;
	bottom: 8px;
	right: 12px;
}

.contact-list li:after {
	width: 0;
	height: 0;
	border-width: 10px 10px 0 10px;
	border-style: solid;
	border-color: #053c63 transparent transparent transparent;
	top: 7px;
	bottom: 0;
	right: 7px;
}

.title-deco07 {
	color: #053c63;
	font-weight: 900;
	line-height: 1;
	border-left: 4px solid #053c63;
	margin: 0 0 20px;
}

@media (min-width: 751px) {
	.title-deco07.col2 > span {
		display: -ms-flexbox;
		display: flex;
	}

	.title-deco07.col2 .title-deco07__sub {
		margin: 0;
	}
}

.title-deco07 > span {
	margin: 0 0 0 15px;
	padding: 0 0 10px;
	border-bottom: 6px solid #ededed;
	display: block;
}

.title-deco07__sub {
	font-size: 1.9rem;
	line-height: 1.2;
	display: block;
	margin: 15px 0 0;
}

@media (max-width: 750px) {
	.title-deco07__sub {
		font-size: 1.4rem;
	}
}

.title-deco07 .yellow {
	font-size: 3.8rem;
	position: relative;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.title-deco07 .yellow {
		font-size: 2.2rem;
	}
}

.title-deco07 .yellow:before {
	content: "";
	display: block;
	width: 100%;
	height: 18%;
	background-color: #fffc1d;
	position: absolute;
	left: 0;
	bottom: 5%;
	z-index: -1;
}

@media (max-width: 750px) {
	.title-deco07 .yellow:before {
		height: 12%;
		bottom: 18%;
	}
}

.title-deco08 {
	font-size: 2.3rem;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #053c63;
	font-weight: 700;
	line-height: 1;
	padding: 10px 20px;
	position: relative;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.title-deco08 {
		font-size: 1.6rem;
	}
}

.title-deco08:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-width: 14px 8px 0 8px;
	border-style: solid;
	border-color: #053c63 transparent transparent transparent;
	position: absolute;
	left: 67px;
	bottom: 0;
	transform: translate(0, 100%);
}

@media (max-width: 750px) {
	.title-deco08:after {
		border-width: 10px 6px 0 6px;
		left: 30px;
	}
}

.model-movie {
	margin: 40px auto;
	display: block;
	width: 1000px;
	height: 540px;
}

.title-deco09 {
	width: 100%;
	max-width: 768px;
	height: 90px;
	font-size: 3.1rem;
	color: #053c63;
	line-height: 1;
	border: 2px solid #053c63;
	font-weight: 900;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 45px;
	position: relative;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.model-movie {
		margin: 20px auto 0;
		display: block;
		width: 100%;
		height: 53vw;
	}

	.title-deco09 {
		font-size: 1.6rem;
		height: auto;
		text-align: center;
		margin: 0 0 20px;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 10px 20px;
		border-radius: 50px;
		line-height: 1.2;
	}
}

.title-deco09.black {
	border-color: #000;
	color: #000;
}

.title-deco09.stairs p {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.title-deco09.stairs p:before {
	content: "";
	display: inline-block;
	width: 29px;
	height: 29px;
	background: url(../images/common/icon_stairs.png) left top no-repeat;
	background-size: contain;
	margin: 0 13px 0 0;
}

@media (max-width: 750px) {
	.title-deco09.stairs p:before {
		width: 20px;
		height: 20px;
		margin: 0 8px 0 0;
		content: none;
	}
}

.title-deco09.mail p {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.title-deco09.mail p:before {
	content: "";
	display: inline-block;
	width: 35px;
	height: 28px;
	background: url(../images/common/icon_mail_gray.png) left top no-repeat;
	background-size: contain;
	margin: 0 13px 0 0;
}

@media (max-width: 750px) {
	.title-deco09.mail p:before {
		width: 28px;
		height: 22px;
		margin: 0 8px 0 0;
		content: none;
	}
}

.title-deco09 .yellow {
	padding: 6px 10px 5px 10px;
	font-size: 1.5rem;
	color: #fdfb1c;
	background-color: #053c63;
	font-family: "Roboto";
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.title-deco09 .yellow {
		font-size: 1.1rem;
		margin: 0 0 5px;
		letter-spacing: 0;
		padding: 3px 5px 2px 5px;
	}
}

.title-deco09 span {
	font-size: 3.2rem;
}

@media (max-width: 750px) {
	.title-deco09 span {
		font-size: 1.8rem;
	}
}

.title-deco10 {
	font-size: 2.8rem;
	font-weight: 600;
	color: #053c63;
	text-align: center;
	position: relative;
	display: block;
	width: 100%;
	margin: 50px 0 20px;
}

.title-deco10 span {
	display: inline-block;
	background-color: #fff;
	padding: 0 10px;
}

.title-deco10:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6px;
	background-color: #053c63;
	margin: auto;
	z-index: -1;
}

.quote-desc {
	font-size: 1.7rem;
	letter-spacing: 0.1em;
	color: #080808;
	padding: 22px 22px 22px 68px;
	border-radius: 5px;
	background: #ededed url(../images/common/icon_quote.png) 15px 15px no-repeat;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.quote-desc {
		background-size: 15px 10px;
		background-position: 8px 8px;
		font-size: 1.3rem;
		line-height: 1.5;
		padding: 18px 18px 18px 30px;
	}
}

.col2-box {
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 60px;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.col2-box {
		display: block;
		margin: 0 0 30px;
	}
}

@media (min-width: 751px) {
	.col2-box.reverse .col2-box__ph {
		-ms-flex-order: 2;
		order: 2;
	}

	.col2-box.reverse .col2-box__desc {
		padding: 3px 18px 12px 12px;
	}
}

.col2-box__ph {
	width: 352px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.col2-box__ph img {
	width: 100%;
}

.col2-box__desc {
	font-size: 1.7rem;
	line-height: 1.9;
	padding: 3px 12px 12px 18px;
	letter-spacing: -0.04em;
}

@media (max-width: 750px) {
	.col2-box__desc {
		font-size: 1.3rem;
		padding: 5px 5px 10px;
	}
}

@media (max-width: 750px) {
	.col2-box__ph {
		width: 100%;
	}
}

.flow-step {
	padding: 0 0 40px;
}

.flow-step__ttl {
	font-size: 2rem;
	letter-spacing: 0.03em;
	width: 520px;
	height: 40px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto 40px;
	background-color: #dedede;
	border-radius: 20px;
	font-weight: 500;
}

@media (max-width: 750px) {
	.flow-step__ttl {
		width: 80%;
		font-size: 1.6rem;
	}
}

.flow-step ol {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.flow-step ol {
		display: block;
	}
}

.flow-step li {
	width: 322px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
}

.flow-step li:first-child:before {
	content: none;
}

@media (max-width: 750px) {
	.flow-step li {
		width: 100%;
		padding: 0 0 30px;
	}
}

.flow-step li:before {
	content: "";
	display: block;
	width: 25px;
	height: 46px;
	background: url(../images/common/arrow_light.png) left top no-repeat;
	background-size: contain;
	position: absolute;
	top: 190px;
	left: -67px;
}

@media (max-width: 750px) {
	.flow-step li:before {
		width: 13px;
		height: 23px;
		transform: rotate(90deg);
		top: -35px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

.flow-step__ph {
	height: 100px;
	margin: 0 0 10px;
}

@media (max-width: 750px) {
	.flow-step__ph {
		display: none;
	}
}

.flow-step__ph img {
	margin: 0 auto;
	height: 100%;
}

.flow-step__name {
	font-size: 2.8rem;
	color: #053c63;
	font-weight: 600;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 15px;
}

@media (max-width: 750px) {
	.flow-step__name {
		font-size: 2.2rem;
		margin: 0 0 8px;
	}
}

.flow-step__name:before {
	counter-increment: step 1;
	content: counter(step);
	font-size: 2.5rem;
	width: 43px;
	height: 43px;
	background-color: #053c63;
	border-radius: 50%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-weight: 900;
	margin: 0 10px 0 0;
}

@media (max-width: 750px) {
	.flow-step__name:before {
		width: 30px;
		height: 30px;
		font-size: 1.8rem;
	}
}

.captionBox {
	position: relative;
	width: calc(100% - 120px);
	margin: 0 auto;
	border-radius: 8px;
	border: 2px solid #ff8c04;
	padding: 38px 0 0;
}

@media (max-width: 750px) {
	.captionBox {
		width: 100%;
	}
}

.captionBox__ttl {
	font-size: 2rem;
	color: #fff;
	background-color: #ff8c04;
	height: 40px;
	width: 550px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	transform: translate(0, -50%);
	margin: 0 auto;
	font-weight: 500;
}

@media (max-width: 750px) {
	.captionBox__ttl {
		width: calc(100% - 30px);
		font-size: 1.6rem;
	}
}

.captionBox__item {
	text-align: center;
	font-size: 2.2rem;
	color: #ff8c04;
	letter-spacing: 0.05em;
	margin: 12px 0;
	line-height: 1.2;
	font-weight: 600;
}

@media (max-width: 750px) {
	.captionBox__item {
		font-size: 1.6rem;
	}
}

.captionBox__att {
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	text-align: right;
	padding: 10px;
	line-height: 1;
}

@media (max-width: 750px) {
	.captionBox__att {
		font-size: 1.2rem;
	}
}

.boxGrid ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 750px) {
	.boxGrid ul {
		display: block;
	}
}

.boxGrid li {
	width: 580px;
	height: 232px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	border: 2px solid #ff8c04;
	border-radius: 8px;
	padding: 40px 210px 0 35px;
	position: relative;
	margin: 60px 0 0;
}

@media (max-width: 750px) {
	.boxGrid li {
		width: 100%;
		padding: 40px 15px 20px;
		height: auto;
	}
}

@media (min-width: 751px) {
	.boxGrid li:first-child {
		background: url(../images/costdown/costdown_ph03.png) right 15px top 20px no-repeat;
	}

	.boxGrid li:nth-child(2) {
		background: url(../images/costdown/costdown_ph04.png) right 15px top 20px no-repeat;
	}

	.boxGrid li:nth-child(3) {
		background: url(../images/costdown/costdown_ph05.png) right 45px top 50% no-repeat;
		height: 194px;
	}

	.boxGrid li:nth-child(4) {
		height: 194px;
		padding-right: 70px;
	}
}

.boxGrid__ttl {
	position: absolute;
	top: 0;
	left: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	font-size: 2.2rem;
	color: #fff;
	font-weight: 500;
	background-color: #ff8c04;
	height: 56px;
	line-height: 1;
	padding: 16px 30px 16px 100px;
	border-radius: 28px;
}

@media (max-width: 750px) {
	.boxGrid__ttl {
		font-size: 1.6rem;
		height: 32px;
		padding: 8px 20px 8px 80px;
	}
}

.boxGrid__ttl img {
	position: absolute;
	left: 20px;
	bottom: 14px;
}

@media (max-width: 750px) {
	.boxGrid__ttl img {
		transform-origin: right bottom;
		transform: scale(0.7);
		left: 0;
		bottom: 5px;
	}
}

.nav .l-inner {
	padding: 50px 10px 50px 10px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	/* height: 300px;  */
}

@media (max-width: 750px) {
	.nav .l-inner {
		height: auto;
		display: block;
		padding: 0 0 20px;
	}
}

.nav__logo {
	width: 180px;
}

@media (max-width: 750px) {
	.nav__logo {
		width: 180px;
		margin: 0 auto;
		padding: 30px 0;
	}
}

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

.nav__sitemap {
	/*height: 220px;*/
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 750px) {
	.nav__sitemap {
		display: block;
		height: auto;
		border-top: 1px solid #ababab;
	}
}

@media (min-width: 751px) {
	.nav__sitemap__wrap {
		width: 270px;
	}

	.nav__sitemap .nav__sitemap__wrap:not(:first-child) {
		margin: 0 0 0 30px;
	}

	.nav__sitemap__wrap.col2 {
		width: 320px;
	}

	.nav__sitemap__wrap .media {
		height: 145px;
	}

	.nav__sitemap__wrap .job {
		height: 180px;
	}
}

@media (max-width: 750px) {

	.nav__sitemap__wrap .media,
	.nav__sitemap__wrap .job,
	.nav__sitemap__wrap .type {
		display: none;
	}

	.nav__sitemap__wrap .job {
		counter-reset: number 0;
	}

	.nav__sitemap__wrap .job li a {
		padding: 0;
	}

	.nav__sitemap__wrap .job li a:before {
		content: none;
	}

	.nav__sitemap__wrap .job li a:after {
		content: none;
	}

	.nav__sitemap__wrap .job li a img {
		opacity: 0.5;
		max-width: 15px;
		max-height: 15px;
		margin: 0 8px 0 0;
	}
}

.nav__sitemap ul {
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 750px) {
	.nav__sitemap ul {
		-ms-flex-direction: row;
		flex-direction: row;
		background-color: #577c96;
	}
}

.nav__sitemap li {
	font-size: 1.4rem;
	line-height: 1;
	margin: 0 8px 13px 0;
	position: relative;
	padding: 0 0 0 0.8em;
	display: block;
	color: #fff;
}

@media (max-width: 750px) {
	.nav__sitemap li {
		font-size: 1.2rem;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		margin: 0;
		height: 55px;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		border-bottom: 1px solid #ababab;
		padding: 0 0 0 20px;
	}

	.nav__sitemap li:nth-child(2n-1) {
		border-right: 1px solid #ababab;
	}
}

.nav__sitemap li:before {
	content: "･";
}

@media (max-width: 750px) {
	.nav__sitemap li:before {
		content: none;
	}
}

@media (max-width: 750px) {
	.nav__sitemap a {
		position: relative;
		width: 100%;
		height: 100%;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
	}

	/*.nav__sitemap a:before {
        content: '';
        display: block;
        width: 1em;
        height: 1em;
        border-radius: 50%;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        color: transparent; }
      .nav__sitemap a:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-width: 3px 0 3px 4px;
        border-style: solid;
        border-color: transparent transparent transparent #577c96;
        top: 0;
        bottom: 0;
        left: 4px;
        margin: auto;
        position: absolute; }*/
}

.nav__sitemap a:hover {
	opacity: 0.7;
}

.section-blog {
	padding: 45px 0 0;
	border-top: 7px solid #053c63;
}

@media (max-width: 750px) {
	.section-blog .l-inner {
		padding: 0 20px;
		max-width: 375px;
	}
}

.section-blog__ttl {
	text-align: center;
	font-size: 2.9rem;
	font-weight: 900;
	color: #053c63;
	line-height: 1;
}

.section-blog__ttl span {
	display: inline-block;
}

@media (max-width: 750px) {
	.section-blog__ttl {
		font-size: 1.8rem;
	}
}

.section-blog__subttl {
	font-size: 1.2rem;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	text-align: center;
	color: #053c63;
	font-weight: 900;
	letter-spacing: 0.5em;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.section-blog__subttl {
		font-size: 1rem;
		margin: 5px 0 0;
	}
}

.section-blog__categorylist {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	width: 1070px;
	padding: 8px 18px;
	border: 1px solid #ebebeb;
	border-radius: 4px;
	margin: 20px 0 0;
}

@media (max-width: 750px) {
	.section-blog__categorylist {
		display: none;
	}
}

.section-blog__categorylist:before {
	content: "CATEGORY";
	display: inline-block;
	min-height: 15px;
	padding: 2px 0 2px 18px;
	font-size: 1.5rem;
	line-height: 1;
	color: #9a9a9a;
	font-weight: 500;
	background: url(../images/common/icon_fire.png) left center no-repeat;
}

.section-blog__categorylist ul {
	display: -ms-flexbox;
	display: flex;
	padding: 0 0 0 20px;
}

.section-blog__categorylist li {
	margin: 0 10px 0 0;
}

.section-blog__categorylist li a {
	font-size: 1.5rem;
	color: #fff;
	padding: 2px 20px;
	background-color: #7b7b7b;
	letter-spacing: -0.02em;
	font-weight: 200;
	transition: 0.3s ease;
}

.section-blog__categorylist li a:hover {
	opacity: 0.7;
}

.section-blog .m-btn {
	margin: 29px 0 0;
}

@media (max-width: 750px) {
	.section-blog .m-btn {
		margin: 5px 0 0;
	}
}

.section-blog .m-btn a {
	width: 538px;
	height: 36px;
	border-radius: 18px;
	font-size: 1.5rem;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.section-blog .m-btn a {
		width: 100%;
		height: 50px;
		border-radius: 25px;
		font-size: 1.2rem;
		letter-spacing: 0.15em;
		margin: 0;
	}
}

/* アクセスのブログ・セミナーのお知らせ */
.article-list {
	margin: 0px 0 0;
	padding-top: 40px;
}

.article-list ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (max-width: 750px) {
	.article-list > iframe {
		width: 100%;
		height: 52vw;
	}

	.article-list {
		padding-top: 20px;
	}

	.article-list ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.article-list.--column2 ul {
	justify-content: space-around;
}

@media (max-width: 750px) {
	.article-list.--column2 ul {
		justify-content: space-between;
	}
}

.article-list li {
	margin-bottom: 16px;
	width: 273px;
}

@media (max-width: 750px) {
	.article-list li {
		width: calc(50% - 7px);
		margin: 0 0 25px;
	}
}

.article-list a {
	display: block;
	transition: 0.3s ease;
}

.article-list a:hover {
	opacity: 0.7;
}

.article-list a:hover .article-list__ph img {
	transition: 1s ease-out;
	transform: scale(1.05, 1.05);
}

.article-list__ph {
	overflow: hidden;
}

.article-list__ph img {
	transition: 0.5s ease-out;
}

.article-list__textarea {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 0 0;
}

@media (max-width: 750px) {
	.article-list__textarea {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 8px 0 0;
	}
}

.article-list__category {
	font-size: 1.5rem;
	font-weight: 200;
	line-height: 1;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.9);
	padding: 6px 15px;
	background-color: #053c63;
	display: inline-block;
}

.article-list__category a {
	color: #fff;
}

@media (max-width: 750px) {
	.article-list__category {
		-ms-flex-order: 2;
		order: 2;
		font-size: 1rem;
	}
}

.article-list__category.green {
	background-color: #42ae42;
}

.article-list__category.blue {
	background-color: #07bfe0;
}

.article-list__category.orange {
	background-color: #f86f24;
}

.article-list__category.pink {
	background-color: #f37070;
}

.article-list__date {
	font-size: 1.4rem;
	color: #7b7b7b;
	line-height: 1;
	margin: 0 0 0 20px;
}

@media (max-width: 750px) {
	.article-list__date {
		font-size: 1rem;
		margin: 0 0 5px;
	}
}

.article-list__ttl {
	font-size: 1.8rem;
	line-height: 3.2rem;
	letter-spacing: 0.05em;
	color: #015db2;
	text-decoration: underline;
	font-weight: 600;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.article-list__ttl {
		-ms-flex-order: 3;
		order: 3;
		font-size: 1.2rem;
		line-height: 1.8;
		margin: 5px 0 0;
	}
}

.section-bnrArea {
	position: relative;
	z-index: 20;
	padding: 40px 0 0;
}

@media (max-width: 750px) {
	.section-bnrArea {
		padding: 45px 0 0;
	}
}

@media (max-width: 750px) {
	.section-bnrArea .l-inner {
		max-width: 375px;
	}
}

.section-bnrArea .bnr-wrap {
	margin: 50px 0 0;
}

@media (max-width: 750px) {
	.section-bnrArea .bnr-wrap {
		margin: 25px 0 0;
	}
}

.section-bnrArea .bnr-wrap:first-child {
	margin: 0;
}

.section-bnrArea .normal-bnr a {
	transition: 0.3s ease;
	display: block;
}

.section-bnrArea .normal-bnr a:hover {
	opacity: 0.7;
}

.section-bnrArea .tel-bnr01 {
	position: relative;
	height: 294px;
	background: url(../images/common/bnr_02.png?v=2) left top no-repeat;
}

@media (max-width: 750px) {
	.section-bnrArea .tel-bnr01 {
		background: none;
	}
}

.section-bnrArea .tel-bnr01 .m-btn {
	position: absolute;
	bottom: 30px;
}

@media (max-width: 750px) {
	.section-bnrArea .tel-bnr01 .m-btn {
		position: static;
		padding: 0 10px;
		margin: 15px 0 0;
	}
}

.section-bnrArea .tel-bnr01 .m-btn.blue {
	right: 400px;
}

.section-bnrArea .tel-bnr01 .m-btn.pink {
	right: 77px;
}

.section-bnrArea .tel-bnr01 .m-btn a {
	width: 300px;
	height: 40px;
	border-radius: 20px;
	font-size: 1.6rem;
}

@media (max-width: 750px) {
	.section-bnrArea .tel-bnr01 .m-btn a {
		width: 100%;
		height: 50px;
		border-radius: 25px;
		font-size: 1.2rem;
		letter-spacing: 0.15em;
		margin: 0;
	}
}

.section-bnrArea .tel-bnr02 {
	position: relative;
	height: 299px;
	background: url(../images/common/bnr_03.png) left top no-repeat;
	background-size: contain;
}

.section-bnrArea .tel-bnr05 {
	position: relative;
	height: 237px;
	background: url(../images/common/bnr_05.png) left top no-repeat;
}

@media (max-width: 750px) {
	.section-bnrArea .tel-bnr02 {
		background: none;
	}

	.section-bnrArea .tel-bnr05 {
		background: none;
		height: auto;
	}
}

.section-bnrArea .tel-bnr02 .m-btn {
	position: absolute;
	bottom: 45px;
}

@media (max-width: 750px) {
	.section-bnrArea .tel-bnr02 .m-btn {
		position: static;
		padding: 0 10px;
		margin: 15px 0 0;
	}
}

.section-bnrArea .tel-bnr02 .m-btn.blue {
	left: 24px;
}

.section-bnrArea .tel-bnr02 .m-btn.pink {
	right: 65px;
}

.section-bnrArea .tel-bnr02 .m-btn a {
	width: 350px;
	height: 40px;
	border-radius: 20px;
	font-size: 1.6rem;
}

@media (max-width: 750px) {
	.section-bnrArea .tel-bnr02 .m-btn a {
		width: 100%;
		height: 50px;
		border-radius: 25px;
		font-size: 1.2rem;
		letter-spacing: 0.15em;
		margin: 0;
	}
}

.section-feature__head {
	padding: 40px 0 75px;
}

@media (max-width: 750px) {
	.section-feature__head {
		padding: 20px 0 30px;
	}
}

.section-feature__head .l-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 30px;
}

@media (max-width: 750px) {
	.section-feature__head .l-inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0 10px;
	}
}

.section-feature__head li {
	width: 246px;
}

@media (max-width: 750px) {
	.section-feature__head li {
		width: 50%;
	}
}

@media (max-width: 750px) {
	.section-feature__ph {
		width: 80%;
		margin: 0 auto;
	}
}

.section-feature__desc {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	padding: 20px 3px 0;
}

@media (max-width: 750px) {
	.section-feature__desc {
		font-size: 1.2rem;
		padding: 15px 5px 30px;
	}
}

.section-feature__middle {
	background: url(../images/top/linework_bg.jpg) center top no-repeat;
	background-size: 100% 100%;
}

.section-feature__middle .l-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 230px;
	position: relative;
}

@media (max-width: 750px) {
	.section-feature__middle .l-inner {
		height: 130px;
	}
}

.section-feature__middle .l-inner:before,
.section-feature__middle .l-inner:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
	display: block;
}

.section-feature__middle .l-inner:before {
	width: 100px;
	height: 40px;
	transform: translate(0, -100%);
	background-color: #231815;
}

@media (max-width: 750px) {
	.section-feature__middle .l-inner:before {
		width: 50px;
		height: 20px;
	}
}

.section-feature__middle .l-inner:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 70px 100px 0 100px;
	border-color: #231815 transparent transparent transparent;
}

@media (max-width: 750px) {
	.section-feature__middle .l-inner:after {
		border-width: 35px 50px 0 50px;
	}
}

.section-feature__text {
	padding: 50px 0 0;
}

@media (max-width: 750px) {
	.section-feature__text {
		padding: 20px 0 0;
	}
}

.section-feature__point .l-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 50px 0 30px;
	border-bottom: 1px solid #ccc;
}

@media (max-width: 750px) {
	.section-feature__point .l-inner {
		padding: 50px 10px 30px;
		display: block;
	}
}

.section-feature__point__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

@media (max-width: 750px) {
	.section-feature__point__ph img {
		width: 100%;
	}
}

.section-feature__point__textarea {
	padding: 0 0 0 35px;
}

@media (max-width: 750px) {
	.section-feature__point__textarea {
		padding: 25px 0 0;
	}
}

.section-feature__point__textarea .normal-desc {
	margin: 0;
}

.section-feature__point__copy {
	font-size: 3.2rem;
	color: #053c63;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1;
	margin: 0 0 15px;
}

@media (max-width: 750px) {
	.section-feature__point__copy {
		font-size: 2rem;
	}
}

.section-feature__foot {
	padding: 40px 0 0;
}

@media (max-width: 750px) {
	.section-feature__foot {
		padding: 20px 0 0;
	}
}

@media (min-width: 751px) {
	.section-feature__foot .title-deco05 {
		font-size: 3.3rem;
		padding: 0 0 0 90px;
	}

	.section-feature__foot .title-deco05 .icon {
		width: 70px;
		left: 0;
	}

	.section-feature__foot .title-deco05 .icon img {
		width: 100%;
	}
}

@media (max-width: 750px) {
	.section-feature__foot .title-deco05 {
		line-height: 1.4;
	}
}

.section-feature__foot li:nth-child(2n) .strong-list__ph {
	-ms-flex-order: 2;
	order: 2;
}

.section-feature__foot li:last-child {
	border-bottom: none;
}

.section-feature__foot .strong-list__copy {
	min-height: 0;
	line-height: 1.4;
}

.section-feature__foot .strong-list .m-btn {
	width: 460px;
	margin: 0 0 0 auto;
	padding: 20px 0 0;
}

@media (max-width: 750px) {
	.section-feature__foot .strong-list .m-btn {
		width: 100%;
	}
}

.section-handling {
	padding: 15px 0 60px;
}

@media (max-width: 750px) {
	.section-handling {
		padding-bottom: 79px;
	}
}

.section-handling .l-inner {
	width: 1320px;
}

@media (max-width: 750px) {
	.section-handling .l-inner {
		width: 100%;
	}
}

.section-handling__ttl {
	margin-bottom: 52px;
	text-align: center;
	transform: translate(-50px, 0);
}

@media (max-width: 750px) {
	.section-handling__ttl {
		transform: translate(-25px, 0);
		margin-bottom: 49.5px;
	}
}

.section-handling__ttl span {
	font-size: 2.9rem;
	font-weight: 900;
	color: #053c63;
	border-bottom: 2px solid #053c63;
	line-height: 1;
	display: inline-block;
	padding: 0 10px;
}

@media (max-width: 750px) {
	.section-handling__ttl span {
		font-size: 1.8rem;
		border-width: 1px;
	}
}

.section-handling__ttl:before {
	content: "";
	display: inline-block;
	width: 115px;
	height: 67px;
	background: url(../images/top/top_markup01.png) left top no-repeat;
	margin: 0 10px 0 0;
}

@media (max-width: 750px) {
	.section-handling__ttl:before {
		width: 76px;
		height: 44px;
		background-size: cover;
	}
}

.section-handling__intro {
	display: flex;
	justify-content: center;
}

.section-handling ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 750px) {
	.section-handling ul {
		width: calc(150px * 2 + 21px);
		-ms-flex-pack: flex-start;
		justify-content: flex-start;
	}
}

.section-handling li {
	display: flex;
	width: 240px;
	margin: 0 10px 54px;
	border-radius: 14px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 750px) {
	.section-handling li {
		width: 150px;
		margin: 0 21px 31px 0;
		border-radius: 11px;
	}

	.section-handling li:nth-child(2n) {
		margin-right: 0;
	}
}

.section-handling a {
	transition: 0.3s ease;
	display: flex;
	flex-direction: column;
}

.section-handling a:hover .section-handling__more {
	background: #b9b9b9;
	color: #000;
}

.section-handling a:hover .section-handling__more::after {
	border-top-color: #000;
	border-right-color: #000;
}

.section-handling__item {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 15.5px 8px 11.4px;
}

@media (max-width: 750px) {
	.section-handling__item {
		padding: 10px 8.5px 11px;
	}

	.section-handling__item03 {
		padding-bottom: 6px;
	}

	.section-handling__item04 {
		padding-bottom: 10px;
	}

	.section-handling__item05 {
		padding: 9px 8.5px 9px;
	}

	.section-handling__item06 {
		padding: 5px 8.5px 9px;
	}

	.section-handling__item07 {
		padding-bottom: 7px;
	}

	.section-handling__item08 {
		padding-bottom: 7px;
	}

	.section-handling__item09 {
		padding: 5.5px 8.5px 3.5px;
	}
}

.section-handling__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 7.8px;
	padding-bottom: 14px;
}

.section-handling__logo::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #707070, #707070 2px, transparent 2px, transparent 4px);
	background-size: 4px 1px;
	background-repeat: repeat-x;
	position: absolute;
	left: 0;
	bottom: 0;
}

.section-handling__logo img {
	max-width: 100%;
}

@media (min-width: 751px) {
	.section-handling__logo01 img {
		max-width: 186px;
	}

	.section-handling__logo02 img {
		max-width: 119px;
	}

	.section-handling__logo03 img {
		max-width: 165px;
	}

	.section-handling__logo04 img {
		max-width: 159px;
	}

	.section-handling__logo05 img {
		max-width: 149px;
	}

	.section-handling__logo06 {
		padding-bottom: 9px;
	}

	.section-handling__logo06 img {
		max-width: 147px;
	}

	.section-handling__logo07 img {
		max-width: 152px;
		padding-top: 3px;
	}

	.section-handling__logo08 {
		padding-bottom: 17px;
	}

	.section-handling__logo08 img {
		max-width: 149px;
		padding-top: 6px;
	}

	.section-handling__logo09 img {
		max-width: 174px;
		padding-top: 7px;
	}
}

@media (max-width: 750px) {
	.section-handling__logo {
		margin-bottom: 4px;
		padding-right: 0;
		height: auto;
	}

	.section-handling__logo img {
		margin: 0 auto;
		max-height: 28px;
	}

	.section-handling__logo01 img {
		max-width: 116px;
	}

	.section-handling__logo02 img {
		max-width: 74px;
	}

	.section-handling__logo03 {
		margin-bottom: 10px;
	}

	.section-handling__logo03 img {
		max-width: 103px;
		padding-top: 2px;
		transform: translateX(-5px);
	}

	.section-handling__logo04 {
		margin-bottom: 4px;
	}

	.section-handling__logo04 img {
		max-width: 99px;
		padding-top: 0.5px;
		transform: translateX(-3px);
	}

	.section-handling__logo05 {
		margin-bottom: 8px;
		padding-bottom: 13px;
	}

	.section-handling__logo05 img {
		padding-top: 3px;
		max-width: 94px;
	}

	.section-handling__logo06 {
		margin-bottom: 8px;
		padding-bottom: 9px;
	}

	.section-handling__logo06 img {
		max-width: 91px;
	}

	.section-handling__logo07 {
		margin-bottom: 9px;
		padding-bottom: 8px;
	}

	.section-handling__logo07 img {
		max-width: 95px;
		transform: translate(-1px, -2px);
	}

	.section-handling__logo08 {
		margin-bottom: 9px;
		padding-bottom: 13px;
	}

	.section-handling__logo08 img {
		max-width: 92px;
	}

	.section-handling__logo09 {
		margin-bottom: 13px;
		padding-bottom: 17px;
	}

	.section-handling__logo09 img {
		max-width: 109px;
		transform: translate(-5px);
	}
}

.section-handling__name {
	font-size: 1.9rem;
	font-weight: 600;
	color: #053c63;
	border-left: 3px solid #053c63;
	padding: 0 0 0 6px;
	line-height: 1.7;
	margin: 18px 0 10px;
}

@media (max-width: 750px) {
	.section-handling__name {
		margin: 15px 0 8px;
		font-size: 1.6rem;
	}
}

.section-handling__desc {
	padding: 0 10px;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: #6a6a6a;
}

@media (max-width: 750px) {
	.section-handling__desc {
		padding: 0 5px 0 4px;
		font-size: 1rem;
		line-height: 1.5;
	}
}

.section-handling__more {
	padding: 8px 1em 6px;
	background: #043b64;
	transition: all ease 0.3s;
	border-radius: 0 0 14px 14px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.04em;
	line-height: 1.75;
	text-align: center;
	position: relative;
}

.section-handling__more span {
	margin-right: 7px;
}

@media (max-width: 750px) {
	.section-handling__more {
		padding: 0 1em 0;
		border-radius: 0 0 11px 11px;
	}

	.section-handling__more span {
		display: inline-block;
		font-size: 10px;
		transform: scale(0.9);
	}
}

.section-handling__more::after {
	content: "";
	width: 4px;
	height: 4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	display: block;
	transform: rotate(45deg) skew(4deg);
	position: absolute;
	top: calc((100% - 6px) / 2);
	right: 15px;
	transition: all ease 0.3s;
}

@media (max-width: 750px) {
	.section-handling__more::after {
		width: 3px;
		height: 3px;
		transform: rotate(45deg) skew(3deg);
		top: calc((100% - 4.5px) / 2);
		right: 9px;
	}
}

.section-form {
	margin-bottom: 60px;
}

.section-form-title {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	font-size: 3.9rem;
	color: #fff;
	text-align: center;
	font-weight: 900;
	line-height: 3;
	margin-bottom: 60px;
}

.section-form-wrap {
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.section-form {
		margin-bottom: 40px;
	}

	.section-form-title {
		font-size: 2.1rem;
		margin-bottom: 20px;
	}
}

.section-key {
	overflow: hidden;
}

@media (max-width: 750px) {
	.section-key {
		padding: 0 0 10px;
	}
}

.section-key__head {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
}

.section-key__head .l-inner {
	padding: 5px 0 10px;
	position: relative;
}

.section-key__head .l-inner:before {
	content: "";
	width: 132px;
	height: 136px;
	display: block;
	background: url(../images/common/thunder.png) left top no-repeat;
	position: absolute;
	bottom: -136px;
	right: 90px;
}

@media (max-width: 750px) {
	.section-key__head .l-inner:before {
		content: none;
	}
}

.section-key__ttl {
	font-size: 3.9rem;
	color: #fff;
	text-align: center;
	font-weight: 900;
	line-height: 1;
}

@media (max-width: 750px) {
	.section-key__ttl {
		font-size: 2.1rem;
	}
}

.section-key__ttl:before {
	content: "";
	display: inline-block;
	width: 42px;
	height: 42px;
	background: url(../images/common/icon_key.png) left top no-repeat;
	vertical-align: -18%;
	margin: 0 10px 0 0;
}

@media (max-width: 750px) {
	.section-key__ttl:before {
		width: 24px;
		height: 24px;
		background-size: cover;
	}
}

.section-key__ttl span {
	font-size: 8rem;
	vertical-align: -18%;
}

@media (max-width: 750px) {
	.section-key__ttl span {
		font-size: 4.4rem;
	}
}

.section-key__main li {
	height: 300px;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-align: center;
	align-items: center;
	margin: 50px 0 0;
}

@media (max-width: 750px) {
	.section-key__main li {
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		max-width: 355px;
		margin: 35px auto 0;
		padding: 65px 0 25px;
	}
}

@media (min-width: 751px) {
	.section-key__main li:first-child .section-key__ph img {
		transform: translate(35px, 0);
	}
}

.section-key__main li:nth-child(2) {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.section-key__main li:nth-child(2) .section-key__ph {
	left: auto;
	right: 0;
}

.section-key__main li:nth-child(2) .section-key__ph:before {
	left: auto;
	right: 0;
}

@media (min-width: 751px) {
	.section-key__main li:nth-child(2) .section-key__ph:before {
		transform: translate(100%, 0);
	}
}

@media (max-width: 750px) {
	.section-key__main li:nth-child(2) .section-key__ph:before {
		width: calc(50vw + 70px);
		left: 80px;
	}
}

.section-key__main li:nth-child(2) .section-key__ph:after {
	right: auto;
	left: 0;
	border-width: 300px 160px 0 0;
	border-color: transparent #f5f5f5 transparent transparent;
}

@media (min-width: 751px) {
	.section-key__main li:nth-child(2) .section-key__ph:after {
		transform: translate(-100%, 0);
	}
}

@media (max-width: 750px) {
	.section-key__main li:nth-child(2) .section-key__ph:after {
		border-width: 150px 80px 0 0;
		right: 0;
	}
}

@media (max-width: 750px) {
	.section-key__main li:nth-child(2) .section-key__copy {
		margin: 0 80px 0 0;
		font-size: 1.7rem;
	}
}

.section-key__main li:nth-child(2) .section-key__copy span {
	transform: translate(115%, -50%);
	left: auto;
	right: 0;
}

.section-key__ph {
	width: 285px;
	height: 100%;
	display: block;
	background-color: #f5f5f5;
	position: absolute;
	left: 0;
	top: 0;
}

@media (max-width: 750px) {
	.section-key__ph {
		position: relative;
		height: 150px;
		background-color: transparent;
	}
}

.section-key__ph:before,
.section-key__ph:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	z-index: -1;
}

.section-key__ph:before {
	width: calc(50vw - 590px);
	min-width: 10px;
	height: 100%;
	background-color: #f5f5f5;
}

@media (min-width: 751px) {
	.section-key__ph:before {
		transform: translate(-100%, 0);
	}
}

@media (max-width: 750px) {
	.section-key__ph:before {
		width: calc(50vw + 70px);
		right: 80px;
	}
}

.section-key__ph:after {
	content: "";
	width: 0;
	height: 0;
	border-width: 300px 0 0 160px;
	border-style: solid;
	border-color: transparent transparent transparent #f5f5f5;
	right: 0;
}

@media (min-width: 751px) {
	.section-key__ph:after {
		transform: translate(100%, 0);
	}
}

@media (max-width: 750px) {
	.section-key__ph:after {
		border-width: 150px 0 0 80px;
	}
}

.section-key__ph img {
	position: absolute;
	height: auto;
	bottom: 0;
}

@media (max-width: 750px) {
	.section-key__ph img {
		height: 170px;
		margin: 0 auto;
		left: 0;
		right: 0;
	}
}

.section-key__ph img {
	margin: 0 auto;
	left: 0;
	right: 0;
}

.section-key__textarea {
	width: 745px;
	position: relative;
	z-index: 20;
}

@media (max-width: 750px) {
	.section-key__textarea {
		width: 100%;
		position: static;
	}
}

.section-key__copy {
	font-size: 4.8rem;
	color: #053c63;
	font-weight: 900;
	position: relative;
	line-height: 1;
	display: inline-block;
	letter-spacing: 0;
}

@media (max-width: 750px) {
	.section-key__copy {
		font-size: 2.4rem;
		margin: 0 0 0 80px;
		position: absolute;
		top: 0;
	}
}

.section-key__copy:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 18%;
	bottom: -8%;
	background-color: #fffc1b;
	z-index: -1;
}

.section-key__copy span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-115%, -50%);
}

.section-key__copy img {
	height: auto;
}

@media (max-width: 750px) {
	.section-key__copy span {
		width: 68px;
	}
}

.section-key__desc {
	font-size: 1.6rem;
	letter-spacing: 0;
	border-top: 1px solid #eee;
	margin: 20px 0 0;
	padding: 10px 0 0;
}

@media (max-width: 750px) {
	.section-key__desc {
		font-size: 1.1rem;
		line-height: 1.8;
		border-top: none;
		padding: 10px 10px 0;
	}
}

.section-mediaFlow {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	padding: 40px 0;
}

@media (max-width: 750px) {
	.section-mediaFlow {
		padding: 30px 0 40px;
	}
}

.section-mediaFlow__ttl {
	text-align: center;
	font-size: 2.9rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

@media (max-width: 750px) {
	.section-mediaFlow__ttl {
		font-size: 1.8rem;
	}
}

.section-mediaFlow__subttl {
	font-size: 1.2rem;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	text-align: center;
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.5em;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.section-mediaFlow__subttl {
		font-size: 1rem;
		margin: 5px 0 0;
	}
}

.section-mediaFlow ol {
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 15px 20px 0;
}

@media (max-width: 750px) {
	.section-mediaFlow ol {
		display: block;
	}
}

.section-mediaFlow li {
	width: 189px;
	position: relative;
}

@media (max-width: 750px) {
	.section-mediaFlow li {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		margin: 40px 0 0;
	}
}

@media (max-width: 750px) {
	.section-mediaFlow li:first-child {
		margin: 0;
	}
}

.section-mediaFlow li:first-child:before {
	content: none;
}

.section-mediaFlow li:before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	border-width: 5px 5px 0 0;
	border-style: solid;
	border-color: #fff;
	transform: rotate(45deg);
	position: absolute;
	left: -45px;
	top: 65px;
	border-radius: 3px;
}

@media (max-width: 750px) {
	.section-mediaFlow li:before {
		content: none;
	}
}

.section-mediaFlow__ph {
	margin: 0 0 15px;
}

@media (max-width: 750px) {
	.section-mediaFlow__ph {
		width: 50px;
		margin: 0 15px 10px 0;
	}
}

.section-mediaFlow__ph img {
	margin: 0 auto;
}

.section-mediaFlow__copy {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	margin: 0 0 15px;
	letter-spacing: 0.08em;
}

@media (max-width: 750px) {
	.section-mediaFlow__copy {
		font-size: 1.7rem;
	}
}

.section-mediaFlow__desc {
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.08em;
	font-weight: 200;
}

@media (max-width: 750px) {
	.section-mediaFlow__desc {
		font-size: 1.3rem;
	}
}

@media (min-width: 751px) {
	.section-mediaInfo .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-mediaInfo__plan,
.section-mediaInfo__merit,
.section-mediaInfo__voice {
	padding: 0 0 30px;
}

@media (max-width: 750px) {

	.section-mediaInfo__plan,
	.section-mediaInfo__merit,
	.section-mediaInfo__voice {
		padding: 0 0 15px;
	}
}

@media (max-width: 750px) {
	.section-mediaInfo__voice {
		padding: 0 0 40px;
	}
}

.section-mediaInfo__voice {
	display: none;
}

.section-mediaInfo__voice ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px 0 0;
}

.section-mediaQA {
	padding: 55px 0 15px;
	margin: 0 0 30px;
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	background-repeat: repeat-x;
	background-position: 0 bottom;
}

@media (max-width: 750px) {
	.section-mediaQA {
		padding: 30px 0 15px;
	}
}

.section-mediaQA__ttl {
	text-align: center;
	font-size: 2.9rem;
	font-weight: 900;
	color: #053c63;
	line-height: 1;
}

@media (max-width: 750px) {
	.section-mediaQA__ttl {
		font-size: 1.8rem;
	}
}

.section-mediaQA__subttl {
	font-size: 1.2rem;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	text-align: center;
	color: #053c63;
	font-weight: 900;
	letter-spacing: 0.5em;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.section-mediaQA__subttl {
		font-size: 1rem;
		margin: 5px 0 0;
	}
}

.section-mediaQA ul {
	padding: 40px 0 0;
}

@media (max-width: 750px) {
	.section-mediaQA ul {
		padding: 20px 0 0;
	}
}

.section-mediaQA li {
	margin: 0 0 25px;
	padding: 0 0 25px;
	border-bottom: 1px dashed #adadad;
}

.section-mediaQA li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.section-mediaQA__Q {
	font-size: 2.6rem;
	letter-spacing: 0.06em;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 20px;
}

@media (max-width: 750px) {
	.section-mediaQA__Q {
		font-size: 1.4rem;
		line-height: 1.6;
		margin: 0 0 15px;
	}
}

.section-mediaQA__Q:before {
	content: "";
	display: inline-block;
	width: 44px;
	height: 32px;
	background: url(../images/common/text-Q.png) left top no-repeat;
	vertical-align: bottom;
	margin: 0 8px 0 0;
}

@media (max-width: 750px) {
	.section-mediaQA__Q:before {
		width: 22px;
		height: 16px;
		background-size: cover;
		vertical-align: text-bottom;
	}
}

.section-mediaQA__A {
	font-size: 1.6rem;
	letter-spacing: -0.05em;
	padding: 20px 25px;
	border: 1px solid #999;
	border-radius: 5px;
}

@media (max-width: 750px) {
	.section-mediaQA__A {
		padding: 10px 15px;
		font-size: 1.3rem;
		line-height: 1.7;
	}
}

.section-mediaQA .red {
	color: #ff0000;
}

.section-package {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
}

.section-package .l-inner {
	position: relative;
	padding: 50px 10px;
}

@media (max-width: 750px) {
	.section-package .l-inner {
		padding: 25px 10px;
	}
}

.section-package .l-inner:before {
	content: "";
	display: block;
	width: 132px;
	height: 139px;
	background: url(../images/common/thunder_white.png) left top no-repeat;
	position: absolute;
	top: 0;
	left: 10px;
	transform: scale(-1, 1);
}

@media (max-width: 750px) {
	.section-package .l-inner:before {
		content: none;
	}
}

.section-package .l-inner:after {
	content: "";
	display: block;
	width: 283px;
	height: 338px;
	background: url(../images/common/man_pose10.png) left top no-repeat;
	position: absolute;
	left: -10px;
	bottom: 0;
}

@media (max-width: 750px) {
	.section-package .l-inner:after {
		content: none;
	}
}

.section-package__ttl {
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.section-package__ttl {
		margin: 0 0 20px;
	}
}

.section-package__ttl img {
	margin: 0 auto;
}

.section-package__main {
	padding: 30px;
	border-radius: 8px;
	background-color: #fff;
}

@media (max-width: 750px) {
	.section-package__main {
		padding: 20px;
	}
}

.section-package__foot {
	padding: 90px 0 0 270px;
	position: relative;
}

@media (max-width: 750px) {
	.section-package__foot {
		padding: 45px 0 0;
	}
}

.section-package__foot:before {
	content: "";
	display: block;
	width: 65px;
	height: 65px;
	background: url(../images/common/icon_plus.png) left top no-repeat;
	background-size: cover;
	position: absolute;
	top: 33px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.section-package__foot:before {
		top: 18px;
		width: 30px;
		height: 30px;
	}
}

.section-package__text01 {
	margin: 40px 0 0;
	padding: 0 0 15px;
	border-bottom: 5px solid #f4f11a;
}

@media (max-width: 750px) {
	.section-package__text01 {
		margin: 20px 0 0;
		border-width: 3px;
		padding: 0 0 8px;
	}
}

.section-package__desc {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #fff;
	font-weight: 200;
	letter-spacing: 0.08em;
	margin: 20px 0 0;
	padding: 0 30px 0 0;
}

@media (max-width: 750px) {
	.section-package__desc {
		font-size: 1.2rem;
		line-height: 1.4;
		padding: 0;
	}
}

.package-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 750px) {
	.package-list {
		display: block;
	}
}

.package-list li {
	margin: 0 15px;
}

@media (max-width: 750px) {
	.package-list li {
		margin: 0 0 30px;
		position: relative;
	}
}

.package-list__logo {
	height: 36px;
}

@media (max-width: 750px) {
	.package-list__logo {
		height: auto;
		padding: 15px 0 0;
	}
}

.package-list__logo img {
	margin: 0 auto;
}

.package-list__textarea {
	width: 245px;
	padding: 20px 0 0;
}

@media (max-width: 750px) {
	.package-list__textarea {
		width: 100%;
		padding: 20px 0 0;
	}
}

.package-list__name {
	font-size: 1.9rem;
	color: #053c63;
	border-left: 3px solid #053c63;
	font-weight: 600;
	line-height: 1.4;
	padding: 0 0 0 8px;
	margin: 0 0 10px;
}

@media (max-width: 750px) {
	.package-list__name {
		font-size: 1.6rem;
		border-width: 2px;
		padding: 0 0 0 4px;
	}
}

.package-list__desc {
	font-size: 1.5rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

@media (max-width: 750px) {
	.package-list__desc {
		font-size: 1.2rem;
	}
}

.section-packageIndustry {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	color: #fff;
}

.section-packageIndustry .l-inner {
	width: 1317px;
	padding: 60px 0 40px;
	position: relative;
}

@media (max-width: 750px) {
	.section-packageIndustry .l-inner {
		width: 100%;
		padding: 30px 10px;
	}
}

.section-packageIndustry .l-inner:before {
	content: "";
	width: 132px;
	height: 136px;
	display: block;
	background: url(../images/common/thunder_white.png) left top no-repeat;
	position: absolute;
	top: 0;
	right: 90px;
}

@media (max-width: 750px) {
	.section-packageIndustry .l-inner:before {
		content: none;
	}
}

.section-packageIndustry__ttl {
	text-align: center;
	font-size: 2.9rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

@media (max-width: 750px) {
	.section-packageIndustry__ttl {
		font-size: 1.8rem;
	}
}

.section-packageIndustry__subttl {
	font-size: 1.2rem;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	text-align: center;
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.5em;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.section-packageIndustry__subttl {
		font-size: 1rem;
		margin: 5px 0 0;
	}
}

.section-packageIndustry ul {
	padding: 60px 0 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 750px) {
	.section-packageIndustry ul {
		max-width: 355px;
		margin: 0 auto;
		padding: 15px 0 0;
	}
}

.section-packageIndustry li {
	display: flex;
	width: 416px;
	margin: 0 33px 48px 0;
}

@media (max-width: 750px) {
	.section-packageIndustry li {
		margin: 0 0 20px;
	}
}

.section-packageIndustry li:nth-child(3n) {
	margin-right: 0;
}

.section-packageIndustry a {
	display: -ms-flexbox;
	display: flex;
	position: relative;
	padding: 19px 43px 23px 1px;
	background: #074067;
	border: 1px solid #043b64;
	border-radius: 14px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	transition: all ease 0.3s;
	color: #fff;
	z-index: 10;
}

.section-packageIndustry a::before {
	content: "";
	width: 20px;
	height: 8.5px;
}

.section-packageIndustry a::after {
	content: "";
	display: inline-block;
	width: 21px;
	height: 7.5px;
	border-right: 2px solid #fff;
	border-bottom: 1px solid #fff;
	position: absolute;
	bottom: 20px;
	right: 23px;
	transform: skew(43deg);
}

.section-packageIndustry a:hover {
	background: #2a9ad4;
}

.section-packageIndustry__ph {
	width: 115px;
	height: 115px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #fff;
	border-radius: 50%;
	margin: -2px 15px 0 0;
	transition: 0.3s ease;
}

@media (max-width: 750px) {
	.section-packageIndustry__ph {
		width: 60px;
		height: 60px;
		margin: 0 10px 0 0;
	}
}

.section-packageIndustry__ph img {
	transition: 0.3s ease;
	max-width: 50%;
	max-height: 50%;
}

.section-packageIndustry__name {
	margin-bottom: 15px;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.04em;
}

@media (max-width: 750px) {
	.section-packageIndustry__name {
		font-size: 1.6rem;
	}
}

.section-packageIndustry__desc {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 0.04em;
	border-top: 1px solid #fff;
	padding: 8px 0 0;
}

@media (max-width: 750px) {
	.section-packageIndustry__desc {
		font-size: 1.1rem;
		margin: 5px 0 0;
		padding: 5px 0 0;
		font-weight: 300;
	}
}

.section-packageType {
	padding: 40px 0 42px;
	background: url(../images/top/linework_bg.jpg) center top no-repeat;
	background-size: cover;
}

@media (max-width: 750px) {
	.section-packageType {
		padding-bottom: 0;
		height: auto;
		background: url(../images/top/linework_bg-sp.jpg) center center no-repeat;
	}
}

@media (max-width: 750px) {
	.section-packageType .l-inner {
		padding: 0 20px;
	}
}

.section-packageType__ttl {
	margin-bottom: 5px;
	text-align: center;
	font-size: 3.6rem;
	font-weight: bold;
	color: #053c63;
	letter-spacing: -0.08em;
	line-height: 1;
	margin-bottom: 6px;
}

@media (max-width: 750px) {
	.section-packageType__ttl {
		font-size: 1.8rem;
	}
}

.section-packageType__subttl {
	font-size: 1.5rem;
	font-family: "Roboto", sans-serif;
	text-align: center;
	color: #053c63;
	font-weight: normal;
	letter-spacing: 0.43em;
	margin: 0 0 12px 9px;
}

@media (max-width: 750px) {
	.section-packageType__subttl {
		font-size: 1rem;
	}
}

.section-packageType ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 750px) {
	.section-packageType ul {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-ms-flex-align: center;
		align-items: center;
		padding: 0 0 30px;
	}
}

.section-packageType li {
	width: 298px;
	margin: 0 35px;
}

@media (min-width: 751px) {
	.section-packageType li:nth-child(1) .section-packageType__ph {
		width: 345px;
	}

	.section-packageType li:nth-child(1) .section-packageType__ph img {
		left: 42%;
	}

	.section-packageType li:nth-child(3) .section-packageType__ph {
		width: 302px;
	}

	.section-packageType li:nth-child(3) .section-packageType__ph img {
		left: 53%;
	}

	.section-packageType li:nth-child(3) .section-packageType__name {
		letter-spacing: -0.01em;
		white-space: nowrap;
	}
}

@media (max-width: 750px) {
	.section-packageType li {
		width: 100%;
		max-width: 335px;
		margin: 10px auto 25px;
	}
}

.section-packageType__ph {
	width: 298px;
	height: 316px;
	position: relative;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.section-packageType__ph {
		width: 134px;
		height: 134px;
	}
}

.section-packageType__ph img {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	height: auto;
	transform: translate(-50%, 0);
}

.section-packageType__name {
	font-size: 2.9rem;
	font-weight: bold;
	color: #053c63;
	letter-spacing: -0.08em;
	text-align: center;
	line-height: 1;
	margin: 13px 0 16px;
}

@media (max-width: 750px) {
	.section-packageType__name {
		font-size: 1.6rem;
	}
}

.section-packageType__desc {
	margin-bottom: 32px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: -0.03em;
}

@media (max-width: 750px) {
	.section-packageType__desc {
		padding: 0 32px;
		font-size: 1.1rem;
	}
}

.section-packageType__more {
	display: block;
	padding: 8px 1em 10px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.04em;
	position: relative;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 21px;
	text-align: center;
	transition: all ease 0.3s;
}

@media (max-width: 750px) {
	.section-packageType__more {
		max-width: 80%;
		margin: 0 auto;
		font-size: 14px;
	}
}

.section-packageType__more::after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	display: block;
	transform: rotate(45deg) skew(-4deg);
	position: absolute;
	top: calc((100% - 6.3px) / 2);
	right: 33px;
	transition: all ease 0.3s;
}

.section-packageType__more:hover {
	background: #074168;
	color: #fff;
	opacity: 1;
}

.section-packageType__more:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
}

.section-ranking {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
}

.section-ranking .l-inner {
	position: relative;
	padding: 50px 10px;
}

@media (max-width: 750px) {
	.section-ranking .l-inner {
		padding: 25px 10px;
	}
}

.section-ranking .l-inner:before {
	content: "";
	display: block;
	width: 209px;
	height: 331px;
	background: url(../images/common/man_pose09.png) left top no-repeat;
	position: absolute;
	left: 30px;
	bottom: 0;
}

@media (max-width: 750px) {
	.section-ranking .l-inner:before {
		content: none;
	}
}

.section-ranking__ttl {
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.section-ranking__ttl {
		margin: 0 0 20px;
	}
}

.section-ranking__ttl img {
	margin: 0 auto;
}

.section-ranking__main {
	padding: 30px;
	border-radius: 8px;
	background-color: #fff;
}

@media (max-width: 750px) {
	.section-ranking__main {
		padding: 20px;
	}
}

.section-ranking__foot {
	padding: 0 0 0 270px;
}

@media (max-width: 750px) {
	.section-ranking__foot {
		padding: 0;
	}
}

.section-ranking__text01 {
	margin: 40px 0 0;
	padding: 0 30px 0 0;
}

@media (max-width: 750px) {
	.section-ranking__text01 {
		padding: 0;
		margin: 20px 0 0;
	}
}

.section-ranking__text01 img {
	margin: 0 0 0 auto;
}

@media (max-width: 750px) {
	.section-ranking__text01 img {
		margin: 0;
	}
}

.section-ranking__text02 {
	margin: 40px 0 0;
	padding: 0 0 15px;
	border-bottom: 5px solid #f4f11a;
}

@media (max-width: 750px) {
	.section-ranking__text02 {
		margin: 20px 0 0;
		border-width: 3px;
		padding: 0 0 8px;
	}
}

.section-ranking__desc {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #fff;
	font-weight: 200;
	letter-spacing: 0.08em;
	margin: 20px 0 0;
	padding: 0 30px 0 0;
}

@media (max-width: 750px) {
	.section-ranking__desc {
		font-size: 1.2rem;
		line-height: 1.4;
		padding: 0;
	}
}

.ranking-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: center;
}

@media (max-width: 750px) {
	.ranking-list {
		display: block;
	}
}

.ranking-list li {
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 750px) {
	.ranking-list li {
		display: block;
		margin: 0 0 30px;
		position: relative;
	}
}

.ranking-list__rank {
	margin: 0 20px 0 0;
}

@media (max-width: 750px) {
	.ranking-list__rank {
		width: 60px;
		margin: 0 auto 20px;
		position: absolute;
		top: 0;
		left: 0;
	}
}

.ranking-list__rank span {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	background-color: #053c63;
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 22px;
	width: 100%;
	border-radius: 13px;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.ranking-list__rank span {
		font-size: 1.3rem;
		height: 18px;
	}
}

.ranking-list__logo {
	height: 36px;
}

@media (max-width: 750px) {
	.ranking-list__logo {
		height: auto;
		padding: 15px 0 0 80px;
	}
}

.ranking-list__logo img {
	margin: 0 auto;
}

.ranking-list__textarea {
	width: 245px;
	padding: 20px 0 0;
}

@media (max-width: 750px) {
	.ranking-list__textarea {
		width: 100%;
		padding: 60px 0 0;
	}
}

.ranking-list__name {
	font-size: 1.9rem;
	color: #053c63;
	border-left: 3px solid #053c63;
	font-weight: 600;
	line-height: 1.4;
	padding: 0 0 0 8px;
	margin: 0 0 10px;
}

@media (max-width: 750px) {
	.ranking-list__name {
		font-size: 1.6rem;
		border-width: 2px;
		padding: 0 0 0 4px;
	}
}

.ranking-list__desc {
	font-size: 1.5rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

@media (max-width: 750px) {
	.ranking-list__desc {
		font-size: 1.2rem;
	}
}

@media (min-width: 751px) {
	.section-typeInfo .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-typeInfo__staff {
	padding: 60px 0 50px;
}

@media (max-width: 750px) {
	.section-typeInfo__staff {
		padding: 30px 0 20px;
	}
}

.section-typeInfo__movie {
	padding: 0 0 50px;
}

@media (max-width: 750px) {
	.section-typeInfo__movie {
		padding: 0 0 20px;
	}
}

.section-typeInfo__movie .youtube {
	display: block;
	width: 860px;
	height: 400px;
	margin: 0 auto;
	padding: 10px 0 0;
}

@media (max-width: 750px) {
	.section-typeInfo__movie .youtube {
		width: 100%;
		height: calc(58.5vw - 20px);
	}
}

.section-typeInfo__movie .youtube iframe {
	width: 100%;
	height: 100%;
}

.section-typeInfo__feature .merit-box {
	border-bottom: none;
}

.section-typeLink ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 750px) {
	.section-typeLink ul {
		display: block;
	}
}

.section-typeLink li {
	margin: 0 10px;
}

@media (max-width: 750px) {
	.section-typeLink li {
		margin: 0 0 10px;
	}
}

.section-typeLink li:first-child a:before {
	background: url(../images/common/man_pose06.png) left bottom no-repeat;
}

.section-typeLink li:nth-child(2) a:before {
	background: url(../images/common/man_pose07.png) left bottom no-repeat;
}

.section-typeLink li:nth-child(3) a:before {
	background: url(../images/common/man_pose08.png) center bottom no-repeat;
}

.section-typeLink a {
	width: 380px;
	height: 82px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #053c63;
	font-weight: 500;
	border: 2px solid #053c63;
	border-radius: 8px;
	padding: 0 0 0 50px;
	position: relative;
	font-weight: 600;
	transition: 0.4s ease;
}

.section-typeLink a:hover {
	background-color: #053c63;
	color: #fff;
}

.section-typeLink a:hover:after {
	border-color: #fff;
}

@media (max-width: 750px) {
	.section-typeLink a {
		width: 100%;
		height: 60px;
		font-size: 1.4rem;
		text-align: center;
		padding: 0;
	}
}

.section-typeLink a:before {
	content: "";
	display: block;
	width: 75px;
	height: 75px;
	position: absolute;
	left: 2px;
	bottom: 0;
	top: 0;
	margin: auto 0;
}

@media (max-width: 750px) {
	.section-typeLink a:before {
		content: none;
	}
}

.section-typeLink a:after {
	content: "";
	width: 10px;
	height: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #053c63;
	display: block;
	position: absolute;
	right: 15px;
	bottom: 0;
	top: 0;
	margin: auto 0;
	transform: rotate(45deg);
	transition: 0.4s ease;
}

@media (max-width: 750px) {
	.section-typeLink a:after {
		width: 8px;
		height: 8px;
		border-width: 1px 1px 0 0;
	}
}

.section-voice {
	padding: 45px 0 35px;
}

@media (max-width: 750px) {
	.section-voice {
		padding: 40px 0 35px;
	}
}

.section-voice__ttl {
	text-align: center;
	font-size: 2.9rem;
	font-weight: 900;
	color: #053c63;
	line-height: 1;
}

@media (max-width: 750px) {
	.section-voice__ttl {
		font-size: 1.8rem;
	}
}

.section-voice__subttl {
	font-size: 1.2rem;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	text-align: center;
	color: #053c63;
	font-weight: 900;
	letter-spacing: 0.5em;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.section-voice__subttl {
		font-size: 1rem;
		margin: 5px 0 0;
	}
}

.section-voice ul {
	padding: 60px 0 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.section-voice ul {
		padding: 15px 0 0;
		margin: 0 auto;
	}
}

.voice-box {
	width: 575px;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.voice-box {
		width: 100%;
		max-width: 335px;
		margin: 0 auto;
		display: block !important;
		padding: 0 10px;
	}
}

.voice-box__head {
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 750px) {
	.voice-box__head {
		display: block;
	}
}

@media (max-width: 750px) {
	.voice-box__ph {
		margin: 0 auto;
		width: 220px;
	}
}

.voice-box__ph img {
	width: 100%;
}

@media (max-width: 750px) {
	.voice-box__textarea {
		margin: 15px 0 0 18px;
	}
}

.voice-box__textarea tr {
	display: block;
	margin: 8px 0 0 10px;
}

@media (min-width: 751px) {
	.voice-box__textarea tr:first-child {
		margin: 0 0 0 10px;
	}
}

@media (max-width: 750px) {
	.voice-box__textarea tr {
		margin: 8px 0 0;
	}
}

.voice-box__textarea th {
	font-size: 1.3rem;
	color: #fff;
	background-color: #818181;
	line-height: 1;
	text-align: center;
	padding: 5px 0;
	font-weight: 200;
	width: 75px;
}

@media (max-width: 750px) {
	.voice-box__textarea th {
		font-size: 1rem;
		font-weight: 300;
	}
}

.voice-box__textarea td {
	font-size: 1.5rem;
	line-height: 1;
	padding: 0 0 0 10px;
	color: #000;
}

@media (max-width: 750px) {
	.voice-box__textarea td {
		font-size: 1.1rem;
	}
}

.voice-box__main {
	color: #000;
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-radius: 4px;
	margin: 20px 0 0;
}

.voice-box__main__ttl:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../images/common/icon_voice.png) left top no-repeat;
	vertical-align: -30%;
	margin: 0 5px 0 0;
}

@media (max-width: 750px) {
	.voice-box__main__ttl:before {
		width: 12px;
		height: 12px;
		background-size: cover;
		vertical-align: -12%;
	}
}

.voice-box__main__ttl span {
	font-size: 1.5rem;
	line-height: 1;
	text-decoration: underline;
	display: inline-block;
}

@media (max-width: 750px) {
	.voice-box__main__ttl span {
		font-size: 1.1rem;
	}
}

.voice-box__main__copy {
	font-size: 1.4rem;
}

@media (max-width: 750px) {
	.voice-box__main__copy {
		font-size: 1.1rem;
		line-height: 1.7;
		margin: 5px 0 0;
	}
}

.voice-box__prev,
.voice-box__next {
	content: "";
	display: block;
	width: 24px;
	height: 42px;
	background: url(../images/common/slide_arrow.png) left top no-repeat;
	background-size: cover;
	position: absolute;
	top: 75px;
	z-index: 20;
}

.voice-box__prev {
	transform: rotate(180deg);
	left: calc(50% - 150px);
}

.voice-box__next {
	right: calc(50% - 150px);
}

.voice-box .m-btn a {
	width: 174px;
	margin: 15px 0 0 auto;
}

@media (max-width: 750px) {
	.voice-box .m-btn a {
		width: 100%;
		height: 50px;
		border-radius: 25px;
		font-size: 1.2rem;
		letter-spacing: 0.15em;
		margin: 20px 0 0;
	}
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

@media (max-width: 750px) {
	.page-blog_more .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-blog_more .title-deco06 span {
	font-size: 2.4rem;
	color: #1d1d1d;
}

@media (max-width: 750px) {
	.page-blog_more .title-deco06 span {
		font-size: 1.7rem;
	}
}

.page-blog_more .blog-content {
	border-bottom: 1px dashed #a0a0a0;
}

.page-blog_more .blog-content__date {
	font-size: 1.7rem;
	color: #6d6d6d;
}

@media (max-width: 750px) {
	.page-blog_more .blog-content__date {
		font-size: 1.4rem;
	}
}

.page-blog_more .blog-content__category {
	padding: 2px 15px;
	font-size: 1.3rem;
	margin: 0 0 0 15px;
	color: #fff;
	letter-spacing: -0.02em;
}

@media (max-width: 750px) {
	.page-blog_more .blog-content__category {
		font-size: 1.2rem;
	}
}

.page-blog_more .blog-content__category.blue {
	background-color: #07bfe0;
}

.page-blog_more .blog-content__ttl {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #404040;
	margin: 10px 0 20px;
}

@media (max-width: 750px) {
	.page-blog_more .blog-content__ttl {
		font-size: 2rem;
	}
}

.page-blog_more .blog-pager {
	padding: 20px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: end;
	align-items: flex-end;
}

.page-blog_more .blog-pager__prev,
.page-blog_more .blog-pager__next {
	transition: 0.3s ease;
}

.page-blog_more .blog-pager__prev:hover,
.page-blog_more .blog-pager__next:hover {
	opacity: 0.7;
}

@media (max-width: 750px) {

	.page-blog_more .blog-pager__prev,
	.page-blog_more .blog-pager__next {
		display: none !important;
	}
}

.page-blog_more .blog-pager__prev .blog-pager__ttl {
	padding: 0 0 0 25px;
}

.page-blog_more .blog-pager__prev .blog-pager__ttl:after {
	left: 0;
	transform: rotate(180deg);
}

.page-blog_more .blog-pager__next {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: end;
	align-items: flex-end;
}

.page-blog_more .blog-pager__next .blog-pager__ttl {
	padding: 0 25px 0 0;
}

.page-blog_more .blog-pager__next .blog-pager__ttl:after {
	right: 0;
}

.page-blog_more .blog-pager__ph {
	width: 150px;
}

.page-blog_more .blog-pager__ph img {
	width: 100%;
}

.page-blog_more .blog-pager__ttl {
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	margin: 10px 0 0;
}

.page-blog_more .blog-pager__ttl:after {
	content: "";
	display: block;
	position: absolute;
	width: 17px;
	height: 17px;
	background: url(../images/common/icon_arrow.png) left top no-repeat;
	top: 2px;
	bottom: 0;
	margin: auto 0;
}

@media (max-width: 750px) {
	.page-blog_more .blog-pager__archive {
		margin: 0 auto;
	}
}

.page-blog_more .blog-pager__archive a {
	border: 1px solid #053c63;
	border-radius: 5px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	width: 264px;
	height: 45px;
	color: #053c63;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	transition: 0.4s ease;
}

.page-blog_more .blog-pager__archive a:hover {
	background-color: #053c63;
	color: #fff;
}

@media (max-width: 750px) {
	.page-blog_more .blog-pager__archive a {
		font-size: 1.4rem;
		height: 42px;
		width: 280px;
	}
}

.category-blog .section-bnrArea,
.tag .section-bnrArea {
	margin: 0 0 70px;
}

@media (max-width: 750px) {

	.category-blog .l-main,
	.tag .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.category-blog .article-list,
.tag .article-list {
	margin: 0;
}

.category-blog .article-list ul,
.tag .article-list ul {
	display: block;
}

.category-blog .article-list li,
.tag .article-list li,
.event .article-list li {
	width: 100%;
	border-bottom: 1px dashed #a0a0a0;
	padding: 0 0 30px;
	margin: 0 0 30px;
}

@media (max-width: 750px) {

	.category-blog .article-list li,
	.tag .article-list li,
	.event .article-list li {
		padding: 0 0 15px;
		margin: 0 0 20px;
	}
}

.category-blog .article-list a,
.tag .article-list a {
	position: relative;
}

@media (min-width: 751px) {

	.category-blog .article-list a,
	.tag .article-list a {
		display: -ms-flexbox;
		display: flex;
	}
}

@media (min-width: 751px) {

	.category-blog .article-list__ph,
	.tag .article-list__ph {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

.category-blog .article-list__textarea,
.tag .article-list__textarea {
	display: block;
}

@media (min-width: 751px) {

	.category-blog .article-list__textarea,
	.tag .article-list__textarea {
		padding: 0;
		margin: 0 0 0 25px;
	}
}

@media (max-width: 750px) {

	.category-blog .article-list__textarea,
	.tag .article-list__textarea {
		padding: 15px 0 0;
	}
}

@media (max-width: 750px) {

	.category-blog .article-list__date,
	.tag .article-list__date {
		margin: 0 0 0 10px;
	}
}

@media (min-width: 751px) {

	.category-blog .article-list__ttl,
	.tag .article-list__ttl {
		font-size: 2.1rem;
		line-height: 1.9;
	}
}

@media (max-width: 750px) {

	.category-blog .article-list__ttl,
	.tag .article-list__ttl {
		font-size: 1.4rem;
		margin: 10px 0 0;
	}
}

.category-blog .article-list__desc,
.tag .article-list__desc {
	font-size: 1.7rem;
	line-height: 1.9;
	margin: 15px 0 0;
}

@media (max-width: 750px) {

	.category-blog .article-list__desc,
	.tag .article-list__desc {
		font-size: 1.2rem;
		margin: 10px 0 0;
	}
}

.category-blog .article-list .readmore,
.tag .article-list .readmore {
	position: absolute;
	right: 22px;
	bottom: 0;
}

@media (max-width: 750px) {

	.category-blog .article-list .readmore,
	.tag .article-list .readmore {
		position: relative;
		right: auto;
		margin: 15px 0 0;
	}
}

.category-blog .article-list__foot,
.tag .article-list__foot,
.event .article-list__foot {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-top: 1px solid #ccc;
	padding: 10px 0 0;
}

@media (max-width: 750px) {

	.category-blog .article-list__foot,
	.tag .article-list__foot,
	.event .article-list__foot {
		padding: 0;
	}
}

.category-blog .article-list__foot p,
.tag .article-list__foot p,
.event .article-list__foot p {
	font-size: 1.4rem;
	line-height: 1;
}

@media (max-width: 750px) {

	.category-blog .article-list__foot p,
	.tag .article-list__foot p,
	.event .article-list__foot p {
		font-size: 1rem;
		margin: 15px 0 0;
	}
}

.category-blog .article-list__foot .pager,
.tag .article-list__foot .pager,
.event .article-list__foot .pager {
	display: -ms-flexbox;
	display: flex;
	margin: 15px 0 0;
}

.category-blog .article-list__foot .pager .page-numbers,
.tag .article-list__foot .pager .page-numbers,
.event .article-list__foot .pager .page-numbers {
	margin: 0 0 0 8px;
	width: 28px;
	height: 28px;
	border: 1px solid #ccc;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2rem;
	border-radius: 2px;
	font-family: "Roboto";
	font-weight: 400;
}

.category-blog .article-list__foot .pager .page-numbers.current,
.tag .article-list__foot .pager .page-numbers.current,
.event .article-list__foot .pager .page-numbers.current {
	background-color: #e40081;
	color: #fff;
}

@media (max-width: 750px) {

	.category-blog .article-list__foot .pager .page-numbers,
	.tag .article-list__foot .pager .page-numbers,
	.event .article-list__foot .pager .page-numbers {
		margin: 0 0 0 5px;
		width: 24px;
		height: 24px;
		font-size: 1rem;
	}
}

.category-blog .article-list__foot .pager .page-numbers a,
.tag .article-list__foot .pager .page-numbers a,
.event .article-list__foot .pager .page-numbers a {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 750px) {
	.page-chuto .l-content .l-inner {
		max-width: 375px;
		margin: 0 auto;
	}
}

@media (min-width: 751px) {
	.page-chuto .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 750px) {
	.page-company .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-company .title-deco01 {
	padding: 0;
	border: none;
	letter-spacing: 0;
}

.page-company .normal-desc {
	line-height: 1.7;
	letter-spacing: 0.08em;
}

.page-company .greet-wrap,
.page-company .concept-wrap,
.page-company .overview-wrap {
	margin: 0 0 50px;
}

@media (max-width: 750px) {

	.page-company .greet-wrap,
	.page-company .concept-wrap,
	.page-company .overview-wrap {
		margin: 0 0 25px;
	}
}

.page-company .greet-wrap .title-deco01 {
	font-size: 2.8rem;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.page-company .greet-wrap .title-deco01 {
		font-size: 1.6rem;
		line-height: 1.4;
		margin: 0 0 15px;
	}
}

.page-company .greet-wrap .content-img {
	width: auto;
	float: right;
	margin: 0 30px 40px 70px;
}

@media (max-width: 750px) {
	.page-company .greet-wrap .content-img {
		float: none;
		margin: 0 0 30px;
	}
}

.page-company .purpose-wrap .title-deco01 {
	font-size: 2.8rem;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.page-company .purpose-wrap .title-deco01 {
		font-size: 1.6rem;
		line-height: 1.4;
		margin: 0 0 15px;
	}
}

@media (max-width: 750px) {
	.page-company .seminar-wrap .title-deco06 span {
		letter-spacing: 0;
	}
}

.page-company .seminar-wrap .m-btn {
	margin-top: 40px;
	margin-bottom: 40px;
}

.page-company .seminar-wrap .m-btn a,
.page-company .hitomusubi-wrap .m-btn a {
	width: 538px;
	height: 36px;
	border-radius: 18px;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.13em;
	margin: 0 auto;
}

@media (max-width: 750px) {

	.page-company .seminar-wrap .m-btn,
	.page-company .hitomusubi-wrap .m-btn a {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.page-company .seminar-wrap .m-btn a,
	.page-company .hitomusubi-wrap .m-btn a {
		width: 100%;
		font-size: 1.2rem;
	}
}

.page-company .hitomusubi-wrap .hitomusubi_img {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 40px;
}

.page-company .hitomusubi-wrap .title-deco06 span {
	display: block;
	letter-spacing: 0;
}

.page-company .concept-wrap .title-deco01 {
	font-size: 6.7rem;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.page-company .concept-wrap .title-deco01 {
		font-size: 2.5rem;
		margin: 0 0 15px;
	}
}

.page-company .overview-wrap .table-list01 th {
	font-weight: 400;
}

@media (min-width: 751px) {
	.page-company .overview-wrap .table-list01 th {
		font-size: 1.6rem;
		width: 230px;
	}
}

.page-company .overview-wrap .table-list01 td {
	text-align: left;
	font-weight: 400;
	line-height: 2;
}

@media (min-width: 751px) {
	.page-company .overview-wrap .table-list01 td {
		font-size: 1.6rem;
		padding-left: 40px;
	}
}

@media (max-width: 750px) {
	.page-company .overview-wrap .table-list01 td {
		line-height: 1.5;
		padding: 10px;
	}
}

.page-company .access-wrap .googlemap {
	width: 100%;
	height: 600px;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.page-company .access-wrap .googlemap {
		height: 350px;
		margin: 0 0 30px;
	}
}

.page-company .yt-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.page-company .yt-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 750px) {
	.page-contact .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-contact .book-wrap {
	border: 1px solid #ababab;
	padding: 20px 18px;
}

.page-contact .book-wrap .title-deco01 {
	font-size: 3.3rem;
	line-height: 1.2;
	margin-bottom: 30px;
}

.page-contact .book-wrap__ttl {
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff;
	width: 95px;
	height: 28px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 14px;
	background-color: #053c63;
	margin: 0 0 10px;
}

.page-thanks .title-deco10 {
	margin: 50px 0 30px;
}

@media (max-width: 750px) {
	.page-thanks .title-deco10 {
		font-size: 1.8rem;
	}

	.page-thanks .title-deco10:before {
		height: 3px;
	}
}

.page-thanks .thanks-area {
	padding: 0 0 70px;
}

.page-thanks .thanks-area .download-btn a {
	font-size: 20px;
	width: 400px;
	height: 60px;
	border-radius: 40px;
	margin: auto auto 30px;
	font-weight: bold;
}

@media (max-width: 750px) {
	.page-thanks .thanks-area {
		padding: 0 0 40px;
	}

	.page-thanks .thanks-area .download-btn a {
		font-size: 16px;
		width: 80%;
		height: 50px;
		margin: auto auto 20px;
	}
}

.page-costdown {
	counter-reset: step 0;
}

@media (min-width: 751px) {
	.page-costdown .title-deco04 {
		max-width: 996px;
		margin-left: auto;
		margin-right: auto;
	}
}

.page-costdown .section-mediaQA {
	background-image: none;
}

.section-costdown__head {
	font-size: 2.3rem;
	letter-spacing: 0.05em;
	color: #053c63;
	text-align: center;
	padding: 30px 0;
	border-bottom: 1px solid #878787;
	position: relative;
}

@media (max-width: 750px) {
	.section-costdown__head {
		font-size: 1.4rem;
		line-height: 1.3;
	}
}

.section-costdown__head:after {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #878787;
	position: absolute;
	background-color: #fff;
	transform: rotate(135deg);
	left: 0;
	right: 0;
	bottom: -15px;
	margin: 0 auto;
}

.section-costdown__head img {
	display: block;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.section-costdown__head img {
		margin: 0 auto 10px;
	}
}

.section-costdown__ttl {
	font-size: 5.8rem;
	letter-spacing: 0.05em;
	font-weight: 900;
	color: #053c63;
	text-align: center;
	padding: 40px 0;
	border-bottom: 1px solid #878787;
	line-height: 1.6;
	margin: 0 0 80px;
}

@media (max-width: 750px) {
	.section-costdown__ttl {
		font-size: 3.2rem;
		margin: 0 0 40px;
	}
}

.section-costdown__ttl span {
	color: #e40081;
}

.section-costdown__subttl {
	font-size: 4rem;
	letter-spacing: 0.05em;
	font-weight: 900;
	color: #053c63;
	text-align: center;
	padding: 20px 0 40px;
	line-height: 1.4;
}

@media (max-width: 750px) {
	.section-costdown__subttl {
		font-size: 2.2rem;
	}
}

.section-costdown__subttl span {
	position: relative;
}

.section-costdown__subttl span:before {
	content: "";
	display: block;
	width: 100%;
	height: 18%;
	background-color: #fffc1d;
	position: absolute;
	left: 0;
	bottom: 5%;
	z-index: -1;
}

.section-costdown__att {
	text-align: right;
	padding: 0 20px 0 0;
}

@media (max-width: 750px) {
	.section-costdown__att {
		padding: 0;
	}
}

.section-costdown__col2 {
	display: -ms-flexbox;
	display: flex;
	padding: 50px 40px 40px 20px;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.section-costdown__col2 {
		display: block;
		padding: 30px 0 0;
	}
}

.section-costdown__col2__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding: 0 60px;
}

@media (max-width: 750px) {
	.section-costdown__col2__ph {
		padding: 20px;
	}

	.section-costdown__col2__ph img {
		width: 100%;
	}
}

.section-costdown__col2.border {
	padding-bottom: 50px;
	border-bottom: 1px solid #878787;
	margin: 0 0 50px;
}

.section-costdown__col2__grp {
	width: 50%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px 24px 0;
}

@media (min-width: 751px) {
	.section-costdown__col2__grp:last-child {
		border-left: 1px solid #878787;
	}
}

@media (max-width: 750px) {
	.section-costdown__col2__grp {
		width: 100%;
	}
}

.section-costdown__col2__item {
	text-align: center;
	padding-top: 40px;
}

.section-costdown__col2__item:first-child {
	padding-top: 0;
}

.section-costdown__col2__item.small p {
	font-size: 1.9rem;
	letter-spacing: 0;
}

.section-costdown__col2__item p {
	display: inline-block;
	padding: 12px 20px;
	border: 2px solid #053c63;
	color: #053c63;
	font-weight: 600;
	font-size: 2.2rem;
	border-radius: 64px;
	letter-spacing: 0.05em;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.section-costdown__col2__item p {
		font-size: 1.6rem;
		padding: 10px 16px;
		line-height: 1.4;
	}
}

.section-costdown__col2__item img {
	display: block;
	margin: 0 auto;
}

.section-costdown__col2__item span {
	text-align: right;
	display: block;
}

@media (max-width: 750px) {
	.section-costdown__col2__item span {
		font-size: 1.4rem;
	}
}

@media (min-width: 751px) {
	.section-costdown .title-deco04 {
		font-size: 3.2rem;
	}
}

.section-costdown__flow {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.section-costdown__flow {
		display: block;
	}
}

.section-costdown__flow li {
	width: 330px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.section-costdown__flow li:first-child:before {
	content: none;
}

@media (max-width: 750px) {
	.section-costdown__flow li {
		width: 100%;
		padding: 0 15px;
		margin: 0 0 30px;
		-ms-flex-align: center;
		align-items: center;
	}
}

.section-costdown__flow li:before {
	content: "";
	display: block;
	position: absolute;
	width: 23px;
	height: 39px;
	background: url(../images/common/slide_arrow.png) left top no-repeat;
	background-size: contain;
	top: 8px;
	left: -57px;
	opacity: 0.4;
}

@media (max-width: 750px) {
	.section-costdown__flow li:before {
		content: none;
	}
}

.section-costdown__flow__ttl {
	color: #fff;
	font-size: 2.2rem;
	width: 256px;
	height: 56px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	background-color: #053c63;
	border-radius: 32px;
	margin: 0 auto 15px;
}

@media (max-width: 750px) {
	.section-costdown__flow__ttl {
		font-size: 1.6rem;
		width: 240px;
		height: 42px;
	}
}

.section-costdown__flow__copy {
	font-size: 2.2rem;
	color: #053c63;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.section-costdown__flow__copy .yellow {
	position: relative;
}

.section-costdown__flow__copy .yellow:after {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	background-color: #f5ed03;
	position: absolute;
	left: 0;
	bottom: 3px;
	z-index: -1;
}

.section-costdown__flow__copy.heisya,
.section-costdown__flow__copy.onsya {
	width: 258px;
	height: 70px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto;
}

.section-costdown__flow__copy.heisya:before,
.section-costdown__flow__copy.onsya:before {
	display: block;
	width: 70px;
	height: 70px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 12px 0 0;
	border: 2px solid #053c63;
	border-radius: 50%;
	color: #053c63;
	font-weight: 600;
	font-size: 2rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-costdown__flow__copy.heisya {
	margin-bottom: 15px;
}

.section-costdown__flow__copy.heisya:before {
	content: "弊社";
}

.section-costdown__flow__copy.onsya:before {
	content: "御社";
}

.section-costdown__flow .normal-desc {
	margin: 0 0 8px;
}

.section-costdown__mainttl {
	height: 110px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #053c63;
	color: #fff;
	font-weight: 900;
	position: relative;
	font-size: 3rem;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.section-costdown__mainttl {
		font-size: 1.6rem;
		height: auto;
		padding: 15px 0;
		margin: 0 0 20px;
		line-height: 1.2;
		text-align: center;
	}
}

.section-costdown__mainttl p {
	background-color: #f04949;
	border-radius: 50px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	width: 628px;
	height: 60px;
}

@media (max-width: 750px) {
	.section-costdown__mainttl p {
		width: 90%;
	}
}

.section-costdown__mainttl p:before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/common/icon_check_middle.png);
	background-size: contain;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.section-costdown__mainttl p:before {
		width: 20px;
		height: 20px;
	}
}

.section-costdown__mainttl p span {
	font-size: 7.2rem;
	margin: 0 7px 32px 0;
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0;
}

@media (max-width: 750px) {
	.section-costdown__mainttl p span {
		font-size: 3.2rem;
		margin: 0 7px 10px 0;
	}
}

.section-costdown__mainttl:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 15px 0 15px;
	border-color: #053c63 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transform: translate(0, 100%);
}

@media (max-width: 750px) {
	.page-jirei_more .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

@media (min-width: 751px) {
	.page-jirei_more .title-deco01 {
		font-size: 3.2rem;
	}
}

.page-jirei_more .normal-desc {
	padding: 0 0 0 20px;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.page-jirei_more .normal-desc {
		margin: 0 0 25px;
	}
}

.page-jirei_more .table-list01 {
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.page-jirei_more .table-list01 {
		margin: 0 0 25px;
	}
}

.category-jirei .section-bnrArea {
	margin: 0 0 70px;
}

@media (max-width: 750px) {
	.category-jirei .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.category-jirei .jirei-list__foot {
	margin: 20px 0 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.category-jirei .jirei-list__foot p {
	font-size: 1.4rem;
	line-height: 1;
}

@media (max-width: 750px) {
	.category-jirei .jirei-list__foot p {
		font-size: 1rem;
		margin: 15px 0 0;
	}
}

.category-jirei .jirei-list__foot .pager {
	display: -ms-flexbox;
	display: flex;
	margin: 15px 0 0;
}

.category-jirei .jirei-list__foot .pager .page-numbers {
	margin: 0 0 0 8px;
	width: 28px;
	height: 28px;
	border: 1px solid #ccc;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2rem;
	border-radius: 2px;
	font-family: "Roboto";
	font-weight: 400;
}

.category-jirei .jirei-list__foot .pager .page-numbers.current {
	background-color: #e40081;
	color: #fff;
}

@media (max-width: 750px) {
	.category-jirei .jirei-list__foot .pager .page-numbers {
		margin: 0 0 0 5px;
		width: 24px;
		height: 24px;
		font-size: 1rem;
	}
}

.category-jirei .jirei-list__foot .pager .page-numbers a {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

.category-jirei .voice-box {
	width: 100%;
	padding: 30px;
	border-bottom: 2px solid #dedede;
	margin: 0;
	max-width: 100%;
	transition: 0.3s ease;
}

.category-jirei .voice-box:hover {
	box-shadow: 0 0 5px #dcdcdc;
	border-bottom: 1px solid #fff;
}

.category-jirei .voice-box:hover .m-btn span::after {
	right: 3px;
}

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

.category-jirei .voice-box__ph {
	margin: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 40%;
}

@media (max-width: 750px) {
	.category-jirei .voice-box:hover {
		box-shadow: 0;
		border-bottom: 2px solid #dedede;
	}

	.category-jirei .voice-box {
		padding: 20px 15px 25px;
	}

	.category-jirei .voice-box__ph {
		width: 100%;
	}
}

.category-jirei .voice-box__ttl {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: 700;
	color: #111;
	margin: 0 0 20px;
	margin-bottom: 24px;
}

@media (max-width: 750px) {
	.category-jirei .voice-box__ttl {
		font-size: 1.8rem;
		margin: 0;
	}
}

.category-jirei .voice-box__ttl span {
	display: block;
	margin: 0 0 8px;
}

.category-jirei .voice-box__textarea {
	margin: 0 0 0 25px;
	width: 60%;
}

@media (max-width: 750px) {
	.category-jirei .voice-box__textarea {
		margin: 15px 0 0;
		width: 100%;
	}
}

.category-jirei .voice-box__textarea tr {
	margin: 0 0 8px;
}

.category-jirei .voice-box__textarea th {
	font-size: 1.4rem;
	width: 100px;
	background: #053c63;
	padding: 8px;
}

@media (max-width: 750px) {
	.category-jirei .voice-box__textarea th {
		font-size: 1.3rem;
		width: 100px;
	}
}

.category-jirei .voice-box__textarea td {
	font-size: 1.6rem;
}

@media (max-width: 750px) {
	.category-jirei .voice-box__textarea td {
		font-size: 1.3rem;
	}
}

.category-jirei .voice-box .m-btn span {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 10px 0 0 auto;
	height: 32px;
	color: #fff;
	background-color: #053c63;
	position: relative;
	font-size: 1.3rem;
	overflow: hidden;
	width: 257px;
	background: none;
	color: #16a2f2;
	position: relative;
	padding-right: 58px;
	padding-bottom: 10px;
	letter-spacing: 0;
}

.category-jirei .voice-box .m-btn span::before {
	content: "";
	position: absolute;
	background: #16a2f2;
	height: 3px;
	width: 100%;
	bottom: 0;
	top: auto;
	z-index: 11;
	left: 0;
}

.category-jirei .voice-box .m-btn span::after {
	content: "";
	position: absolute;
	display: inline-block;
	margin-left: 1em;
	padding: 0 1em;
	border-right: 1px solid #16a2f2;
	border-bottom: 1px solid #16a2f2;
	transform: skewX(45deg);
	width: 20px;
	height: 5px;
	bottom: 18px;
	right: 16px;
	transition: 0.3s ease;
}

.category-jirei .voice-box .m-btn span:hover::before {
	background: #16a2f2;
	opacity: 1;
}

@media (max-width: 750px) {
	.category-jirei .voice-box .m-btn span {
		margin: 20px auto 0;
	}
}

@media (max-width: 750px) {
	.category-jirei .voice-box__main {
		margin: 10px 0 0;
	}
}

.category-jirei .voice-box__main__ttl:before {
	background-image: url(../images/common/icon_message.png);
}

@media (max-width: 750px) {
	.page-job .l-content .l-inner {
		max-width: 375px;
		margin: 0 auto;
	}
}

@media (min-width: 751px) {
	.page-job .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 750px) {
	.page-media .l-content .l-inner {
		max-width: 375px;
		margin: 0 auto;
	}
}

@media (min-width: 751px) {
	.page-media .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

.page-media .section-handling {
	padding-bottom: 20px;
}

.page-omoi .section-bnrArea {
	margin: 0 0 70px;
}

.page-omoi .title-deco04 {
	width: 820px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}

@media (max-width: 750px) {
	.page-omoi .title-deco04 {
		max-width: 355px;
		width: 100%;
	}
}

.page-omoi .normal-desc {
	padding: 0 0 30px;
	margin: 0;
}

@media (max-width: 750px) {
	.page-omoi .normal-desc {
		padding: 20px 0 10px;
	}
}

@media (max-width: 750px) {
	.section-omoi {
		padding: 40px 0;
	}
}

@media (max-width: 750px) {
	.section-omoi .l-inner {
		max-width: 375px;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-omoi__ttl {
	font-size: 4.3rem;
	color: #053c63;
	font-weight: 900;
	position: relative;
	line-height: 1;
	display: inline-block;
	letter-spacing: 0;
	margin: 40px 0;
}

@media (max-width: 750px) {
	.section-omoi__ttl {
		display: inline;
		font-size: 2.4rem;
		background: linear-gradient(to bottom, rgba(250, 242, 10, 0) 1%, rgba(250, 242, 10, 0) 74%, #faf20a 75%, #faf20a 88%, rgba(250, 242, 10, 0) 89%, rgba(250, 242, 10, 0) 100%);
	}
}

.section-omoi__ttl:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 18%;
	bottom: -8%;
	background-color: #fffc1b;
	z-index: -1;
}

@media (max-width: 750px) {
	.section-omoi__ttl:before {
		content: none;
	}
}

.section-omoi__copy {
	font-size: 3.8rem;
	font-weight: 900;
	color: #053c63;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px 0 10px;
}

@media (max-width: 750px) {
	.section-omoi__copy {
		font-size: 1.8rem;
		line-height: 1.3;
	}
}

.section-omoi__copy.border {
	border-top: 1px solid #ccc;
}

.section-omoi__copy:before {
	content: "";
	width: 45px;
	height: 44px;
	display: block;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0 20px 0 0;
	background: url(../images/common/checkbox.png) left top no-repeat;
}

@media (max-width: 750px) {
	.section-omoi__copy:before {
		width: 23px;
		height: 22px;
		background-size: cover;
	}
}

.section-omoi__col2 {
	display: -ms-flexbox;
	display: flex;
	padding: 20px 0;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 750px) {
	.section-omoi__col2 {
		display: block;
	}
}

.section-omoi__col2.reverse .section-omoi__ph {
	-ms-flex-order: 2;
	order: 2;
}

@media (min-width: 751px) {
	.section-omoi__col2.small .section-omoi__ph {
		padding: 0 60px 0 0;
	}
}

.section-omoi__col2.separate {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section-omoi__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding: 0 60px;
}

@media (max-width: 750px) {
	.section-omoi__ph {
		padding: 20px;
	}

	.section-omoi__ph img {
		width: 100%;
	}
}

.section-omoi__mission__ttl {
	height: 110px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #053c63;
	color: #fff;
	font-weight: 900;
	position: relative;
	font-size: 3rem;
	margin: 0 0 50px;
}

@media (max-width: 750px) {
	.section-omoi__mission__ttl {
		font-size: 1.6rem;
		height: auto;
		padding: 15px 0;
		margin: 0 0 20px;
		line-height: 1.2;
		text-align: center;
	}
}

.section-omoi__mission__ttl span {
	background-color: #f04949;
	border-radius: 50px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	width: 460px;
	height: 60px;
}

@media (max-width: 750px) {
	.section-omoi__mission__ttl span {
		width: 80%;
	}
}

.section-omoi__mission__ttl span:before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/common/icon_check_middle.png);
	background-size: contain;
	margin: 0 15px 0 0;
}

@media (max-width: 750px) {
	.section-omoi__mission__ttl span:before {
		width: 20px;
		height: 20px;
	}
}

.section-omoi__mission__ttl:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 15px 0 15px;
	border-color: #053c63 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transform: translate(0, 100%);
}

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

@media (max-width: 750px) {
	.section-omoi__phBox {
		padding: 0 0 15px;
	}
}

@media (max-width: 750px) {
	.page-part .l-content .l-inner {
		max-width: 375px;
		margin: 0 auto;
	}
}

@media (min-width: 751px) {
	.page-part .strong-list li:first-child .title-deco05 span {
		font-size: 2.9rem;
	}
}

@media (min-width: 751px) {
	.page-part .ranking-list__logo img {
		margin: 0 0 0 20px;
	}

	.page-part .ranking-list__textarea {
		width: 420px;
	}
}

@media (min-width: 751px) {
	.page-part .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 750px) {
	.page-policy .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-policy .title-deco06 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: end;
	align-items: flex-end;
}

.page-policy .title-deco06 .date {
	font-size: 1.7rem;
	font-weight: 400;
	color: #202020;
	letter-spacing: 0.05em;
	border: none;
}

@media (max-width: 750px) {
	.page-policy .title-deco06 .date {
		padding: 0;
		font-size: 1.1rem;
		letter-spacing: 0;
	}
}

@media (min-width: 751px) {
	.page-policy .title-deco04 {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}

.page-policy__info {
	padding: 15px 20px;
	background-color: #deedf8;
	font-size: 1.7rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	border-radius: 5px;
}

@media (max-width: 750px) {
	.page-policy__info {
		font-size: 1.2rem;
	}
}

.page-policy .Pmark {
	position: absolute;
	right: 20px;
	bottom: 0;
	box-sizing: content-box;
	display: inline-block;
}

@media (max-width: 750px) {
	.page-policy .Pmark {
		position: static;
		padding: 20px;
	}
}

.page-policy .Pmark__wrap {
	position: relative;
}

.sub-cont {
	margin: -20px 0 30px 70px;
}

@media (max-width: 750px) {
	.sub-cont {
		margin: -10px 0 20px 35px;
		font-size: 1.2rem;
		line-height: 1.8;
	}
}

.page-recruit_more .form-wrap {
	display: block;
}

.recruit-enjoy {
	padding: 30px 0;
}

.recruit-enjoy__box {
	display: -ms-flexbox;
	display: flex;
	padding: 40px 10px;
	border-bottom: 1px dashed #ccc;
}

@media (max-width: 750px) {
	.recruit-enjoy__box {
		display: block;
	}
}

@media (min-width: 751px) {
	.recruit-enjoy__box:nth-of-type(2n) .recruit-enjoy__ph {
		-ms-flex-order: 2;
		order: 2;
	}

	.recruit-enjoy__box:nth-of-type(2n) .recruit-enjoy__textarea {
		padding: 0 25px 0 0;
	}
}

.recruit-enjoy__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.recruit-enjoy__textarea {
	padding: 0 0 0 25px;
}

@media (max-width: 750px) {
	.recruit-enjoy__textarea {
		padding: 10px 0 0;
	}
}

.recruit-enjoy__copy {
	font-size: 3.7rem;
	line-height: 1.3;
	margin: 0 0 5px;
	font-weight: 900;
	color: #053c63;
}

@media (max-width: 750px) {
	.recruit-enjoy__copy {
		font-size: 2.2rem;
	}
}

.recruit-voice {
	padding: 20px 0 50px;
}

.recruit-voice__inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 20px 0 0;
}

.recruit-voice__box {
	width: 527px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

@media (max-width: 750px) {
	.recruit-voice__box {
		width: 100%;
	}
}

.recruit-voice__ph {
	width: 100%;
	height: 276px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 750px) {
	.recruit-voice__ph {
		height: auto;
	}
}

.recruit-voice__ph img {
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
}

@media (min-width: 751px) {
	.recruit-voice__ph img {
		transform: translate(-50%, 0);
	}
}

@media (max-width: 750px) {
	.recruit-voice__ph img {
		position: static;
	}
}

.recruit-voice__name {
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.recruit-voice__name {
		font-size: 1.8rem;
	}
}

.recruit-voice__name .role {
	font-size: 1.8rem;
	color: #8f8f8f;
	font-weight: 500;
	margin: 0 15px 0 0;
	line-height: 1;
}

@media (max-width: 750px) {
	.recruit-voice__name .role {
		font-size: 1.4rem;
	}
}

.recruit-voice__name .role:nth-child(2) {
	margin: 0 0 0 15px;
	font-size: 1.4rem;
	display: inline-block;
}

@media (max-width: 750px) {
	.recruit-voice__name .role:nth-child(2) {
		font-size: 1rem;
	}
}

.recruit-plan ul {
	padding: 80px 0 60px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 750px) {
	.recruit-plan ul {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: center;
		align-items: center;
	}
}

.recruit-plan li {
	width: 263px;
	position: relative;
}

.recruit-plan li:after {
	content: "";
	display: block;
	position: absolute;
	width: 18px;
	height: 32px;
	background: url(../images/common/slide_arrow.png) left top no-repeat;
	background-size: contain;
	top: 0;
	right: 25px;
}

@media (max-width: 750px) {
	.recruit-plan li:after {
		position: static;
		transform: rotate(90deg);
		margin: 20px auto;
	}
}

.recruit-plan li:last-child:after {
	content: none;
}

@media (min-width: 751px) {
	.recruit-plan li:nth-child(5):before {
		content: "";
		display: block;
		position: absolute;
		width: 18px;
		height: 32px;
		background: url(../images/common/slide_arrow.png) left top no-repeat;
		background-size: contain;
		top: 0;
		left: 0;
	}

	.recruit-plan li:nth-child(n + 5) .recruit-plan__name {
		margin-left: 45px;
	}

	.recruit-plan li:nth-child(n + 5):after {
		right: -30px;
	}
}

.recruit-plan__name {
	width: 178px;
	height: 35px;
	background-color: #053c63;
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 20px;
	margin: 0 0 20px;
}

@media (max-width: 750px) {
	.recruit-plan__name {
		font-size: 1.4rem;
		width: 160px;
		height: 28px;
		margin: 0 auto 15px;
	}
}

@media (max-width: 750px) {
	.recruit-plan .normal-desc {
		margin: 0;
	}
}

.recruit-overview__ttl {
	height: 104px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #053c63;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 900;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.recruit-overview__ttl {
		font-size: 1.8rem;
		height: 60px;
		margin: 0 0 20px;
	}
}

.recruit-overview__ttl:before {
	content: "";
	display: inline-block;
	width: 43px;
	height: 36px;
	background: url(../images/common/icon_message3.png) left top no-repeat;
	background-size: contain;
	margin: 0 18px 0 0;
}

@media (max-width: 750px) {
	.recruit-overview__ttl:before {
		content: none;
	}
}

.recruit-contact {
	font-size: 1.6rem;
	padding: 40px 0;
}

.recruit-contact .formtable {
	margin: 30px 0;
}

.page-recruit .section-bnrArea {
	margin: 0 0 70px;
}

@media (max-width: 750px) {
	.page-recruit .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-recruit .title-deco04 {
	width: 820px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 750px) {
	.page-recruit .title-deco04 {
		max-width: 355px;
		width: 100%;
	}
}

.page-recruit .form-wrap {
	display: block;
}

.recruit-reason {
	overflow: hidden;
	padding: 40px 0 0;
}

.recruit-reason__inner {
	max-width: 1700px;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.recruit-reason {
		padding: 40px 0;
	}

	.recruit-reason__inner {
		max-width: 375px;
		padding: 0 10px;
	}
}

.slicePh-box {
	height: 303px;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-align: center;
	align-items: center;
	margin: 50px 0 0;
}

@media (max-width: 1400px) {
	.slicePh-box {
		height: 242px;
	}
}

@media (max-width: 750px) {
	.slicePh-box {
		display: block;
		padding: 40px 0 0;
		height: auto;
		margin: 40px 0 0;
	}
}

.slicePh-box:nth-child(2n) {
	flex-direction: row-reverse;
}

.slicePh-box__ph {
	flex: 0 0 703px;
}

@media (max-width: 1400px) {
	.slicePh-box__ph {
		flex: 0 0 562px;
	}
}

@media (max-width: 750px) {
	.slicePh-box__ph {}
}

.slicePh-box__ph img {
	display: block;
	width: 100%;
}

.slicePh-box__textarea {
	flex: 0 0 calc(100% - 703px);
	max-width: 745px;
	margin-left: -8px;
	position: relative;
	z-index: 20;
}

.slicePh-box:nth-child(2n) .slicePh-box__textarea {
	margin-left: 0;
	margin-right: -8px;
}

@media (max-width: 1400px) {
	.slicePh-box__textarea {
		flex: 0 0 calc(100% - 562px);
		margin-left: 0;
	}

	.slicePh-box:nth-child(2n) .slicePh-box__textarea {
		margin-right: 0;
	}
}

@media (max-width: 750px) {
	.slicePh-box__textarea {
		width: 100%;
		position: static;
	}
}

.slicePh-box__copy {
	font-size: 3.8rem;
	color: #053c63;
	font-weight: 900;
	position: relative;
	line-height: 1;
	display: inline-block;
	letter-spacing: 0;
}

@media (max-width: 1400px) {
	.slicePh-box__copy {
		font-size: 3rem;
	}
}

@media (max-width: 750px) {
	.slicePh-box__copy {
		font-size: 2.1rem;
		position: absolute;
		top: 0;
	}
}

.slicePh-box__copy:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 18%;
	bottom: -8%;
	background-color: #fffc1b;
	z-index: -1;
}

.slicePh-box__copy span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-115%, -50%);
}

@media (max-width: 750px) {
	.slicePh-box__copy span {
		width: 68px;
	}
}

.slicePh-box__desc {
	margin: 20px 0 0;
	padding: 10px 12px 0 0;
	border-top: 1px solid #ccc;
}

@media (max-width: 1400px) {
	.slicePh-box__desc {
		margin: 10px 0 0;
	}
}

@media (max-width: 750px) {
	.slicePh-box__desc {
		margin-top: 20px;
		padding-right: 0;
		border-top: none;
	}
}

.slicePh-box__desc p {
	font-size: 1.6rem;
	max-width: 700px;
}

@media (max-width: 750px) {
	.slicePh-box__desc p {
		font-size: 1.1rem;
		line-height: 1.8;
	}
}

@media (max-width: 750px) {
	.recruit-power .l-inner {
		max-width: 375px;
		margin-left: auto;
		margin-right: auto;
	}
}

.recruit-power__ttl {
	height: 104px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #053c63;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 900;
	margin: 0 0 30px;
}

@media (max-width: 750px) {
	.recruit-power__ttl {
		font-size: 1.8rem;
		height: 60px;
		margin: 0 0 20px;
		line-height: 1.2;
		text-align: center;
	}
}

.recruit-power__ttl:before {
	content: "";
	display: inline-block;
	width: 41px;
	height: 44px;
	background: url(../images/common/icon_gj.png) left top no-repeat;
	background-size: contain;
	margin: 0 13px 0 0;
}

@media (max-width: 750px) {
	.recruit-power__ttl:before {
		content: none;
	}
}

.recruit-power__box {
	display: -ms-flexbox;
	display: flex;
	padding: 40px 0;
	border-bottom: 1px solid #ccc;
}

@media (max-width: 750px) {
	.recruit-power__box {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: center;
		align-items: center;
		padding: 20px 0;
	}
}

.recruit-power__ph {
	width: 197px;
	height: 197px;
	position: relative;
	border-radius: 50%;
	border: 2px solid #053c63;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

@media (max-width: 750px) {
	.recruit-power__ph {
		width: 120px;
		height: 120px;
		margin: 0 0 20px;
	}
}

.recruit-power__ph img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
	.recruit-power__ph img {
		width: 50%;
	}
}

.recruit-power__textarea {
	padding: 10px 0 0 25px;
}

@media (max-width: 750px) {
	.recruit-power__textarea {
		padding: 0;
	}
}

.recruit-power__copy {
	font-size: 3.5rem;
	color: #053c63;
	font-weight: 900;
	position: relative;
	line-height: 1;
	display: inline-block;
	letter-spacing: 0;
	margin: 0 0 20px;
}

@media (max-width: 750px) {
	.recruit-power__copy {
		display: inline;
		font-size: 2.2rem;
		background: linear-gradient(to bottom, rgba(250, 242, 10, 0) 1%, rgba(250, 242, 10, 0) 74%, #faf20a 75%, #faf20a 88%, rgba(250, 242, 10, 0) 89%, rgba(250, 242, 10, 0) 100%);
	}
}

.recruit-power__copy:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 18%;
	bottom: -8%;
	background-color: #fffc1b;
	z-index: -1;
}

@media (max-width: 750px) {
	.recruit-power__copy:before {
		content: none;
	}
}

@media (max-width: 750px) {
	.recruit-power .normal-desc {
		padding: 20px 10px 0;
	}
}

.recruit-job {
	padding: 40px 0;
}

@media (max-width: 750px) {
	.recruit-job {
		padding: 40px 0 0;
	}
}

.recruit-job ul {
	padding: 20px 0 0;
}

@media (max-width: 750px) {
	.recruit-job ul {
		max-width: 375px;
		margin-left: auto;
		margin-right: auto;
	}
}

.recruit-job li {
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #ccc;
	padding: 40px 0;
}

@media (max-width: 750px) {
	.recruit-job li {
		display: block;
		padding: 25px 0;
	}
}

.recruit-job__ph {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.recruit-job__textarea {
	padding: 10px 0 0 30px;
	position: relative;
}

@media (max-width: 750px) {
	.recruit-job__textarea {
		padding: 10px 0 0;
	}
}

.recruit-job__date {
	font-size: 1.8rem;
	line-height: 1;
	padding: 0 0 10px;
}

@media (max-width: 750px) {
	.recruit-job__date {
		font-size: 1rem;
	}
}

.recruit-job__ttl {
	font-size: 3.2rem;
	line-height: 1.3;
	color: #e40081;
	font-weight: 600;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
}

@media (max-width: 750px) {
	.recruit-job__ttl {
		display: block;
		font-size: 2.2rem;
	}

	.recruit-job__ttl span {
		display: block;
	}

	.recruit-job__ttl .recruit-job__type {
		display: inline-block;
	}
}

.recruit-job__type {
	height: 37px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border: 2px solid #e40081;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	padding: 0 15px;
	margin: 0 20px 0 0;
}

@media (max-width: 750px) {
	.recruit-job__type {
		padding: 8px 15px;
		font-size: 1.4rem;
		margin: 0 0 10px;
	}
}

.recruit-job .m-btn {
	position: absolute;
	bottom: 0;
	left: 30px;
}

@media (max-width: 750px) {
	.recruit-job .m-btn {
		position: relative;
		left: auto;
	}
}

.recruit-job .m-btn a {
	width: 338px;
	height: 48px;
	border-radius: 24px;
	font-size: 1.7rem;
}

@media (max-width: 750px) {
	.recruit-job .m-btn a {
		width: 100%;
		height: 36px;
		font-size: 1.4rem;
	}
}

@media (max-width: 750px) {
	.page-shinsotu .l-content .l-inner {
		max-width: 375px;
		margin: 0 auto;
	}
}

@media (min-width: 751px) {
	.page-shinsotu .ranking-list__right {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
	}

	.page-shinsotu .ranking-list__logo {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		margin: 0 40px 0 0;
	}

	.page-shinsotu .ranking-list__logo img {
		margin: 0 0 0 20px;
	}

	.page-shinsotu .ranking-list__textarea {
		width: 100%;
		padding: 0;
	}
}

@media (min-width: 751px) {
	.page-shinsotu .title-deco04 {
		width: 820px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 750px) {
	.page-staff .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-strong .section-bnrArea {
	margin: 0 0 70px;
	padding: 10px 0 0;
}

@media (max-width: 750px) {
	.page-strong .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.page-usp .section-bnrArea {
	margin: 0 0 70px;
}

@media (max-width: 750px) {
	.page-usp .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.mv__head {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
}

.mv__head .l-inner {
	padding: 16px 0;
	position: relative;
}

.mv__head .l-inner:before {
	content: "";
	width: 132px;
	height: 136px;
	display: block;
	background: url(../images/common/thunder.png) left top no-repeat;
	position: absolute;
	bottom: -136px;
	left: 500px;
}

@media (max-width: 750px) {
	.mv__head .l-inner:before {
		content: none;
	}
}

.mv__head h1 {
	font-size: 3.9rem;
	line-height: 1.25;
	letter-spacing: 0.08em;
	color: #fff;
	text-align: center;
	font-weight: 900;
}

@media (max-width: 750px) {
	.mv__head h1 {
		font-size: 1.5rem;
	}
}

.mv__head h1 .big {
	font-size: 5.2rem;
	margin-right: 130px;
}

@media (max-width: 750px) {
	.mv__head h1 .big {
		font-size: 1.8rem;
		margin-right: 0;
	}
}

.mv__head h1 .yellow {
	color: #fffc1b;
}

@media (max-width: 750px) {
	.mv__head h1 .sp {
		display: inline;
	}
}

.mv__main {
	height: 460px;
	background: url(../images/top/mv_bg.jpg) center bottom no-repeat;
	overflow: hidden;
}

@media (max-width: 750px) {
	.mv__main {
		height: 170px;
		background: url(../images/top/mv_bg-sp.jpg) center bottom no-repeat;
		background-size: auto 280%;
	}
}

.mv__main .l-inner {
	position: relative;
	height: 100%;
	padding: 20px 10px 0;
}

.mv__main .mv_text01 {
	position: absolute;
	top: 73px;
	left: 0;
	z-index: 10;
	animation: scalebounce 0.7s linear 0.5s forwards;
	opacity: 0;
}

@media (max-width: 750px) {
	.mv__main .mv_text01 {
		width: 155px;
		top: 212px;
		left: calc(50% - 176px);
	}
}

.mv__main .mv_text02 {
	position: absolute;
	top: 86px;
	right: 11px;
	z-index: 5;
	animation: fadeInLeft 0.6s ease 0.2s forwards;
	opacity: 0;
}

@media (max-width: 750px) {
	.mv__main .mv_text02 {
		width: 350px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

.mv__main .mv_text03 {
	position: absolute;
	bottom: 32px;
	right: 87px;
	z-index: 5;
	transform-origin: 10px 230px;
	animation: rollIn 0.4s ease 0.5s forwards;
	opacity: 0;
}

@media (max-width: 750px) {
	.mv__main .mv_text03 {
		width: 131px;
		bottom: 80px;
		right: calc(50% - 170px);
	}
}

@media (max-width: 750px) {
	.mv__main .mv_logo {
		width: 338px;
		margin: 0 auto;
	}
}

.mv__main .mv_explode {
	position: absolute;
	bottom: 0;
	left: 0;
	right: -12px;
	margin: 0 auto;
	transform-origin: bottom;
	animation: explode 0.8s ease-in forwards;
	opacity: 0;
}

.mv__main .mv_human {
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 65px;
	margin: 0 auto;
}

@media (max-width: 750px) {
	.mv__main .mv_human {
		height: 126px;
		right: 0;
		bottom: -10px;
	}
}

.mv__main .mv_sound {
	position: absolute;
	bottom: 76px;
	left: 248px;
	animation: tremble 0.2s 4;
}

@media (max-width: 750px) {
	.mv__main .mv_sound {
		width: 62px;
		bottom: 42px;
		left: calc(50% - 167px);
	}
}

.mv__att {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	color: #053c63;
	position: absolute;
	left: 3px;
	bottom: 5px;
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: 500;
}

@media (max-width: 750px) {
	.mv__att {
		font-size: 1rem;
		bottom: 0;
	}
}

/*# sourceMappingURL=maps/style.css.map */
/*------------------------------
page-lp.php
-------------------------------*/
@media (min-width: 769px) {
	.sp {
		display: none;
	}
}

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

@media (max-width: 750px) {
	.lp figure img {
		width: 94%;
		margin: 0 auto;
	}
}

.lp figure img {
	margin: 0 auto;
}

.section-text {
	font-size: 14px;
}

.lp-header {
	padding: 40px 0;
}

@media (max-width: 750px) {
	.lp-header {
		padding: 20px 0;
	}
}

.lp-header figure img {
	margin-bottom: 20px;
}

.lp-header__img03 {
	margin-bottom: 24px;
}

.lp-header .section-text {
	width: 94%;
	margin: 0 auto;
}

.lp-content01 {
	height: auto;
	padding-bottom: 40px;
}

.lp-content02 {
	padding: 40px 0;
}

.lp-content02__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 750px) {
	.lp-content02__wrap {
		display: block;
		width: 94%;
		margin: 0 auto;
	}
}

.lp-content02__right {
	margin-left: 30px;
}

@media (max-width: 750px) {
	.lp-content02__right {
		margin-left: 0;
	}
}

.lp-content02__right h2 {
	font-size: 30px;
	color: #053c63;
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 20px;
}

@media (max-width: 750px) {
	.lp-content02__right h2 {
		font-size: 20px;
	}
}

.lp-content02__right .content02_hl {
	background: linear-gradient(transparent 80%, #ffff00 60%);
	font-size: 48px;
}

@media (max-width: 750px) {
	.lp-content02__right .content02_hl {
		font-size: 25px;
		line-height: 2;
	}
}

.lp-content03 {
	padding: 60px 0;
}

@media (max-width: 768px) {
	.lp-content03 {
		padding: 30px 0;
	}
}

.lp-content04 {
	padding: 40px 0;
}

@media (max-width: 768px) {
	.lp-content04 {
		padding: 20px 0;
	}
}

.lp-content04__wrap {
	width: 1000px;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
}

.lp-content04__wrap > * {
	flex: 1 1 45%;
	margin-right: 30px;
}

.lp-content04__wrap > *:nth-child(even) {
	margin-right: 0px;
}

.lp-content04__wrap figure img {
	margin: 0;
	width: 100%;
}

@media (max-width: 768px) {
	.lp-content04__wrap {
		width: 94%;
		margin: 0 auto 30px;
	}
}

.lp-content04__img01 {
	margin-bottom: 30px;
}

.lp-content04__img01 img {
	width: 1000px;
}

@media (max-width: 768px) {

	.lp-content04__img02 img,
	.lp-content04__img03 img {
		width: 94%;
	}
}

.lp-content04__btn {
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.lp-content04__btn {
		margin-bottom: 20px;
	}
}

.lp-content04__btn img {
	margin: 0 auto;
}

@media (max-width: 768px) {
	.lp-content04__btn img {
		width: 94%;
	}
}

.lp-content04__img04 {
	margin-bottom: 30px;
}

.lp-content04__img04 img {
	width: 74%;
}

.lp-content04 .section-text {
	width: 90%;
	border-bottom: 1px solid #ccc;
	padding-bottom: 30px;
	margin: 0 auto;
}

.lp-content05 {
	padding: 40px 0;
}

@media (max-width: 768px) {
	.lp-content05 {
		padding: 20px 0;
	}
}

.lp-content05__img01 {
	margin-bottom: 20px;
}

.lp-content05__img01 img {
	width: 1031px;
	padding-left: 1%;
}

.lp-content05__img02 {
	margin-bottom: 20px;
}

.lp-content05 .section-text {
	width: 90%;
	margin: 0 auto;
}

.lp-content06 {
	padding: 40px 0;
}

@media (max-width: 768px) {
	.lp-content06 {
		padding: 20px 0;
	}
}

.lp-company,
.lp-contact {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0;
}

@media (max-width: 750px) {

	.lp-company,
	.lp-contact {
		width: 94%;
		padding: 30px 0;
	}
}

.form-btn-wrap {
	position: relative;
	max-width: 100%;
}

@media (max-width: 750px) {
	.lp-contact {
		padding-bottom: 150px;
	}
}

.lp-company__title {
	border-bottom: 6px solid #ebebeb;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.lp-company__title {
		padding-bottom: 4px;
	}
}

.lp-company__title span {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	color: #073c61;
	border-left: 4px solid #073c61;
	padding-left: 14px;
}

@media (max-width: 768px) {
	.lp-company__title span {
		font-size: 20px;
	}
}

.lp-table {
	width: 100%;
	border: 1px solid #ababab;
}

.lp-table th,
.lp-table td {
	border-bottom: 1px solid #ababab;
}

.lp-table th {
	width: 20%;
	background: #e1eef7;
	border-right: 1px solid #ababab;
	padding: 14px 0;
}

@media (max-width: 750px) {
	.lp-table th {
		width: 30%;
		font-size: 12px;
		vertical-align: middle;
	}
}

.lp-table.company-table th {
	background: #e1eef7;
}

.lp-table.company-table th {
	background: #f3f3f3;
}

.lp-table td {
	padding: 14px 40px;
}

@media (max-width: 750px) {
	.lp-table td {
		font-size: 12px;
		padding: 10px;
	}
}

.lp-table.contact-table td {
	padding: 14px 20px;
}

@media (max-width: 750px) {
	.lp-table.contact-table td {
		padding: 10px;
	}
}

.lp-table td .table-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

@media (max-width: 750px) {
	.lp-table td .table-wrap {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
}

@media (max-width: 750px) {
	.lp-table td .table-wrap figure img {
		width: auto;
	}
}

.lp-table td a {
	color: #0aafe5;
	text-decoration: underline;
}

.lp-table input[type="text"],
.lp-table input[type="tel"],
.lp-table input[type="email"],
.lp-table textarea {
	border: 1px solid #a6a6a6;
}

.lp-table input[type="text"],
.lp-table input[type="tel"],
.lp-table input[type="email"] {
	width: 90%;
	height: 40px;
	padding-left: 10px;
}

@media (max-width: 750px) {

	.lp-table input[type="text"],
	.lp-table input[type="tel"],
	.lp-table input[type="email"] {
		width: 100%;
		height: 30px;
		font-size: 12px;
	}
}

input[type="radio"] {
	display: none;
}

span.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	position: relative;
	padding: 0 20px 0 25px;
}

.wpcf7-list-item-label:after,
.wpcf7-list-item-label:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
}

.wpcf7-list-item-label:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: #053c63;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 7px;
	bottom: 0;
	margin: auto 0;
	transition: 0.3s ease;
	opacity: 0;
}

.wpcf7-list-item-label:before {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid #053c63;
	border-radius: 50%;
	top: 2px;
	left: 0;
	bottom: 0;
	margin: auto 0;
}

input[type="radio"]:checked + .wpcf7-list-item-label:before {
	opacity: 1;
}

.lp-table textarea {
	width: 100%;
	height: 200px;
}

.lp-table .form-wrap__submit p {
	position: relative;
}

.lp-table .form-wrap__submit label {
	height: 50px;
	margin-top: -30px;
}

.lp-table .req {
	background: #f75252;
	color: #fff;
	padding: 0 6px;
	margin-left: 6px;
}

.lp-contact .form-wrap__submit p:after {
	display: none;
}

.lp-contact .form-wrap__submit p input[type="submit"] {
	width: 700px;
	height: 90px;
}

@media (max-width: 750px) {
	.lp-contact .form-wrap__submit p input[type="submit"] {
		width: 310px;
		height: 70px;
	}
}

.lp-contact__title {
	background: #0f4469;
	padding: 40px 0;
}

@media (max-width: 750px) {
	.lp-contact__title {
		padding: 20px 0;
	}

	.lp-contact__title figure img {
		width: 70%;
	}
}

.form-btn-wrap {
	position: relative;
}

.lp-contact__btn-img {
	position: absolute;
	bottom: -21.2px;
	left: 20%;
}

@media (max-width: 750px) {
	.lp-contact__btn-img {
		position: absolute;
		bottom: -17px;
		left: -8%;
	}

	.lp-contact__btn-img img {
		width: 70%;
	}
}

.lp-contact input[type="checkbox"]:checked + span:after {
	opacity: 1;
}

.lp-contact input[type="checkbox"].wpcf7c-conf {
	opacity: 0;
}

.lp-contact input[type="hidden"] + span:after {
	opacity: 1;
}

.grecaptcha-badge {
	visibility: hidden;
}

.form-wrap__submit .recaptcha_policy {
	background: none;
	margin-top: 0;
	font-size: 14px;
}

.recaptcha_policy a {
	color: #3685ff;
}

.form-wrap__submit .recaptcha_policy:before,
.form-wrap__submit .recaptcha_policy:after {
	display: none;
}

.recaptcha_policy._top {
	margin: 40px 0 0;
	text-align: center;
	font-size: 14px;
}

.form-wrap__submit._top {
	/*padding-top: 50px;*/
}

@media (max-width: 750px) {
	.form-wrap__submit._top {
		padding-top: 10px;
	}

	.recaptcha_policy._top {
		margin: 20px 20px 0;
	}
}

.wpcf7-response-output.wpcf7-validation-errors {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.bnr-wrap._mb {
	margin-bottom: 30px;
}

.fixedNav__btn.half {
	flex: 1 0 0px;
	max-width: calc(50% - 5px);
}

.contact-note {
	padding-top: 20px;
}

.contact-note__text {
	padding: 0 20px;
	margin-bottom: 20px;
}

.contact-note__list li {
	margin-left: 1em;
	text-indent: -1em;
}

.contact-note__list li::before {
	content: "・";
}

.contact-note__pictures {
	text-align: center;
	padding: 0 20px;
}

.contact-note__pictures img {
	width: 33.3%;
	display: inline-block;
}

.section-key__main li:nth-child(1) .section-key__ph img {
	width: 269px;
}

.section-key__main li:nth-child(2) .section-key__ph img {
	width: 330px;
}

.section-key__main li:nth-child(3) .section-key__ph img {
	transform: translateX(-50px);
	width: 330px;
}

@media (max-width: 750px) {

	.section-key__main li:nth-child(1) .section-key__ph img,
	.section-key__main li:nth-child(2) .section-key__ph img,
	.section-key__main li:nth-child(3) .section-key__ph img {
		transform: none;
		width: auto;
	}
}

/**
 * 会社行事 event
 */
.event-header__title {
	font-size: 3.8rem;
	font-weight: 800;
	color: #053c63;
}

@media (max-width: 750px) {
	.event-header__title {
		font-size: 19px;
		padding: 0;
	}
}

.event-header__title span {
	background: linear-gradient(transparent 4rem, #fffc1b 4rem, #fffc1b 5.2rem, transparent 5.2rem);
}

@media (max-width: 750px) {
	.event-header__title span {
		background: linear-gradient(transparent 19px, #fffc1b 19px, #fffc1b 23px, transparent 23px);
	}
}

.event-header__description p:not(:last-child) {
	margin-bottom: 1em;
}

.event .article-list .single-mo-seminer-movie {
	border-bottom: 0;
	margin-bottom: 0;
}

.event .article-list ul {
	margin-bottom: 20px;
}

ul.mo-seminer-dl-datas {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.event .article-list .single-mo-seminer-dl-data {
	width: 30%;
	border-bottom: 0;
	margin-bottom: 0;
}

.event .article-list .single-mo-seminer-dl-data:not(:nth-child(3n)) {
	margin-right: 20px;
}

.event .article-list .single-mo-seminer-dl-data figure {
	border: 1px solid grey;
	height: 320px;
	position: relative;
	overflow: hidden;
}

.event .article-list .single-mo-seminer-dl-data img {
	width: 100%;
}

.event .article-list .single-mo-seminer-dl-data figure figcaption {
	position: absolute;
	bottom: 0;
	background: rgba(29, 29, 29, 0.478);
	left: 0;
	right: 0;
	text-align: center;
	padding: 8px;
	color: #fff;
}

.event .article-list .single-mo-seminer-dl-data .dl-btn {
	background: #053c63;
	color: #fff;
	text-align: center;
	padding: 10px;
}

@media (max-width: 750px) {
	.event .article-list ul {
		margin-bottom: 0;
	}

	.event .article-list .single-mo-seminer-movie iframe {
		width: 100%;
		height: 53vw;
	}

	ul.mo-seminer-dl-datas {
		margin: auto 2%;
	}

	.event .article-list .single-mo-seminer-dl-data:not(:nth-child(3n)) {
		margin-right: 0;
	}

	.event .article-list .single-mo-seminer-dl-data:nth-child(odd) {
		margin-right: 4%;
	}

	.event .article-list .single-mo-seminer-dl-data {
		width: 48%;
		border-bottom: 0;
		margin-bottom: 0;
	}

	.event .article-list .single-mo-seminer-dl-data figure {
		height: 60vw;
	}
}

.event .article-list li.event-article {
	border: none;
	border-top: dashed 1px #a0a0a0;
	padding: 30px 1px 0;
}

.event-article__main {
	overflow: hidden;
	margin-bottom: 30px;
}

@media (max-width: 750px) {
	.event-article__main {
		display: flex;
		flex-direction: column;
		margin-bottom: 10px;
	}

	.event-article__main-picture {
		order: 2;
	}

	event-article__main-text {
		order: 1;
	}
}

.event-article__main-picture {
	float: left;
	margin-right: 30px;
}

@media (max-width: 750px) {
	.event-article__main-picture {
		float: none;
		margin: 0 auto;
		margin-bottom: 10px;
	}
}

.event-article__title {
	font-size: 3.4rem;
	line-height: 1.2;
	margin-bottom: 10px;
}

@media (max-width: 750px) {
	.event-article__title {
		font-size: 2.4rem;
	}
}

.event-article__theme {
	font-size: 2.8rem;
	font-weight: bold;
	color: #015db2;
	text-decoration: underline;
}

@media (max-width: 750px) {
	.event-article__theme {
		font-size: 2rem;
	}
}

.event-article__sub {
	display: flex;
	margin: 0 -10px;
}

@media (max-width: 750px) {
	.event-article__sub {
		flex-wrap: wrap;
	}
}

.event-article__sub-picture {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 10px;
}

@media (max-width: 750px) {
	.event-article__sub-picture {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 20px;
	}
}

.event-article__sub-picture-inner {
	background: center / cover;
	padding-bottom: 77.5%;
	cursor: pointer;
}

.event .article-list__foot {
	border-top: solid 1px #cccccc;
	padding-top: 10px;
}

.page-company .concept-wrap .title-deco01._small {
	font-size: 4rem;
	margin-bottom: 40px;
}

@media (max-width: 750px) {
	.page-company .concept-wrap .title-deco01._small {
		font-size: 20px;
		margin-bottom: 10px;
		line-height: 1.4;
	}
}

@media (max-width: 750px) {
	.page-company .concept-wrap .title-deco01._small .yellow {
		background: linear-gradient(transparent 20px, #fffc1b 20px, #fffc1b 24px, transparent 24px);
	}

	.page-company .concept-wrap .title-deco01._small .yellow::before {
		content: none;
	}
}

.event-button {
	text-align: center;
	border-top: dashed 1px #a0a0a0;
	padding-top: 30px;
}

.event-button.m-btn a {
	display: inline-block;
	background-color: #053c63;
	border-radius: 4px;
	width: 380px;
	height: auto;
	max-width: 100%;
	padding: 15px 0;
	font-size: 1.6rem;
	font-weight: bold;
}

.event-button.m-btn a::after {
	content: none;
}

.mv__main._event img {
	height: 316px;
}

@media (max-width: 750px) {
	.mv__main._event img {
		height: auto;
	}
}

.event .article-list__desc p {
	margin-bottom: 1em;
}

.normal-desc p:not(:last-child) {
	margin-bottom: 1em;
}

/**
 * セミナー seminar
 */
.seminar-header__title {
	margin-top: 15px;
	margin-bottom: 40px;
}

.seminar-header__title img {
	margin: 0 auto;
	max-width: 625px;
	width: 75%;
}

#modal_popup {
	overflow: unset;
	position: fixed;
	top: 10%;
	left: 5%;
	width: 90%;
	height: 80%;
	z-index: 9999;
	border: 5px solid #999;
	background: #fff;
}

#modal_popup .close_btn {
	position: absolute;
	top: -17px;
	right: -17px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: #fff;
	border-radius: 50px;
	border: 2px solid #000;
	z-index: 9999;
}

#modal_popup .close_btn img {
	width: 55%;
	margin: 0 auto;
	transform: translateY(-50%);
	top: 50%;
	position: relative;
}

#modal_popup .modal_inner {
	width: 100%;
	height: 100%;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}

#modal_popup .modal_inner img {
	width: 1500px;
	max-width: none;
}

#modal_popup embed,
#modal_popup iframe {
	width: 100%;
	height: 100%;
	overflow: scroll;
}

@media (max-width: 750px) {
	#modal_popup .modal_inner img {
		width: 1000px;
		max-width: none;
	}
}

.seminar-header__description p:not(:last-child) {
	margin-bottom: 1em;
}

.seminar-header .modal_btn {
	text-align: right;
	margin-top: 20px;
}

.seminar-header .modal_btn #modal_open,
.seminar-header .modal_btn > a {
	margin-left: 15px;
	cursor: pointer;
	display: inline-block;
	line-height: 1em;
	color: #015db2;
	border-bottom: 1px solid #015db2;
	padding-bottom: 3px;
	transition: 0.3s ease;
}

.seminar-header .modal_btn #modal_open:hover,
.seminar-header .modal_btn > a:hover {
	opacity: 0.7;
}

.mv__main._seminar img {
	height: 316px;
}

._seminar .article-list.single {
	margin-top: 0px;
}

._seminar .article-list .seminar-article {
	margin-bottom: 50px;
}

._seminar .article-list .seminar-article:nth-of-type(1) {
	border-top: 1px dashed #a0a0a0;
	padding-top: 60px;
	margin-top: 50px;
}

._seminar .article-list.single .seminar-article:nth-of-type(1) {
	border-top: none;
	padding-top: 0px;
	margin-top: 0px;
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

._seminar .article-list .seminar-article h3 {
	color: #181818;
	font-size: 38px;
	font-weight: bold;
	line-height: 1em;
	margin-bottom: 30px;
}

._seminar .article-list .seminar-article .content {
	margin-bottom: 30px;
}

._seminar .article-list .seminar-article .content .seminar_mainimg {
	margin: 0 0 20px;
}

._seminar .article-list .seminar-article table {
	width: 100%;
	border-top: 1px solid #c1c1c1;
}

._seminar .article-list .seminar-article table tr {
	border-bottom: 1px solid #c1c1c1;
}

._seminar .article-list .seminar-article table tr td {
	font-size: 18px;
	color: #010101;
}

._seminar .article-list .seminar-article table tr td:nth-of-type(1) {
	background: #f1f1f1;
	text-align: center;
	padding: 13px 0px;
	width: 28%;
	vertical-align: middle;
}

._seminar .article-list .seminar-article table tr td:nth-of-type(2) {
	background: none;
	line-height: 1.8em;
	padding: 13px 35px;
}

._seminar .article-list .seminar-article .details_lnk {
	text-align: right;
	margin-top: 30px;
	line-height: 1em;
	padding-right: 35px;
}

._seminar .article-list .seminar-article .details_lnk a {
	display: inline-block;
	line-height: 1em;
	color: #015db2;
	border-bottom: 1px solid #015db2;
	padding-bottom: 3px;
	font-size: 17px;
	letter-spacing: 0px;
	position: relative;
}

._seminar .article-list .seminar-article .details_lnk a::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -25px;
	width: 17px;
	height: 17px;
	background: url(../images/seminar/arrow_right.png) center center no-repeat;
}

._seminar .article-list .seminar-article .schedule {
	margin-top: 40px;
}

._seminar .article-list .seminar-article .schedule h3 {
	font-size: 22px;
	color: #fff;
	background: #053c63;
	line-height: 1em;
	margin-bottom: 30px;
	padding-top: 12px;
	padding-bottom: 15px;
	padding-left: 30px;
	font-weight: bold;
}

._seminar .article-list .seminar-article .schedule .schedule_items {
	margin-bottom: 0px;
}

._seminar .article-list .seminar-article .schedule .schedule_items li {
	margin-bottom: 40px;
	padding-bottom: 40px;
}

._seminar .article-list .seminar-article .schedule .schedule_items .top {
	margin-bottom: 30px;
	position: relative;
}

._seminar .article-list .seminar-article .schedule .schedule_items .top h4 {
	font-size: 22px;
	color: #fff;
	background: #053c63;
	line-height: 1em;
	display: inline-block;
	padding: 13px 0px;
	width: 160px;
	text-align: center;
	border-radius: 50px;
}

._seminar .article-list .seminar-article .schedule .schedule_items .top .schedule_hours {
	position: absolute;
	top: 0px;
	right: 0px;
	border-top: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	width: 55%;
	padding-top: 6px;
	padding-bottom: 8px;
}

._seminar .article-list .seminar-article .schedule .schedule_items .top .schedule_hours .ttl {
	display: inline-block;
	vertical-align: middle;
	width: 35%;
	border-right: 1px solid #c1c1c1;
	text-align: center;
	line-height: 1.5em;
	color: #010101;
	font-size: 16px;
}

._seminar .article-list .seminar-article .schedule .schedule_items .top .schedule_hours .desc {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	line-height: 1.5em;
	width: 60%;
	color: #010101;
	font-size: 16px;
}

._seminar .article-list .seminar-article .schedule .schedule_items .details {}

._seminar .article-list .seminar-article .schedule .schedule_items .details .title {
	font-size: 24px;
	color: #181818;
	font-weight: bold;
	margin-bottom: 20px;
}

._seminar .article-list .seminar-article .schedule .schedule_items .details .desc {}

._seminar .article-list .seminar-article .lecturer {
	margin-top: 20px;
}

._seminar .article-list .seminar-article .lecturer h3 {
	font-size: 22px;
	color: #fff;
	background: #053c63;
	line-height: 1em;
	margin-bottom: 30px;
	padding-top: 12px;
	padding-bottom: 15px;
	padding-left: 30px;
	font-weight: bold;
}

._seminar .article-list .seminar-article .lecturer .lecturer_items {}

._seminar .article-list .seminar-article .lecturer .lecturer_items .photo {
	max-width: 160px;
	display: inline-block;
	vertical-align: middle;
	width: 20%;
}

._seminar .article-list .seminar-article .lecturer .lecturer_items .photo img {
	max-width: 100%;
}

._seminar .article-list .seminar-article .lecturer .lecturer_items .details {
	display: inline-block;
	vertical-align: middle;
	width: 75%;
	margin-left: 3%;
}

._seminar .article-list .seminar-article .lecturer .lecturer_items .details .title {
	font-size: 24px;
	color: #181818;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 10px;
}

._seminar .article-list .seminar-article .lecturer .lecturer_items .details .desc {}

._seminar .article-list .seminar-article .contact {
	margin-top: 20px;
}

._seminar .article-list .seminar-article .contact h3 {
	font-size: 22px;
	color: #fff;
	background: #053c63;
	line-height: 1em;
	margin-bottom: 30px;
	padding-top: 12px;
	padding-bottom: 15px;
	padding-left: 30px;
	font-weight: bold;
}

._seminar .article-list .seminar-article .contact .section-bnrArea {
	padding-top: 0px;
}

._seminar .article-list .seminar-article .contact .form_ttl {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
}

._seminar .article-list .seminar-article .contact h4 {
	position: relative;
	display: inline-block;
	font-size: 29px;
	color: #000000;
	font-style: italic;
	line-height: 1.1em;
}

._seminar .article-list .seminar-article .contact h4:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 18%;
	bottom: -8%;
	background-color: #fffc1b;
	z-index: -1;
}

._seminar .article-list .seminar-article .contact table tr td:nth-of-type(1) {
	background: #fff;
	width: auto;
	text-align: left;
}

@media (max-width: 750px) {
	.mv__main._seminar img {
		height: auto;
	}

	._seminar .article-list .seminar-article .details_lnk a {
		font-size: 12px;
	}

	._seminar .article-list .seminar-article h3 {
		font-size: 25px;
		padding-top: 20px;
	}

	._seminar .article-list .seminar-article table tr td:nth-of-type(1) {
		display: block;
		width: 100%;
		font-size: 16px;
	}

	._seminar .article-list .seminar-article table tr td:nth-of-type(2) {
		display: block;
		width: 100%;
		font-size: 14px;
	}

	._seminar .article-list .seminar-article .schedule h3,
	._seminar .article-list .seminar-article .lecturer h3,
	._seminar .article-list .seminar-article .contact h3 {
		font-size: 16px;
	}

	._seminar .article-list .seminar-article .schedule .schedule_items .details .title {
		font-size: 18px;
	}

	._seminar .article-list .seminar-article .schedule .schedule_items .top h4 {
		display: block;
		font-size: 14px;
		width: 120px;
	}

	._seminar .article-list .seminar-article .schedule .schedule_items .top .schedule_hours {
		position: static;
		display: block;
		width: 100%;
		margin-top: 30px;
	}

	._seminar .article-list .seminar-article .lecturer .lecturer_items .photo {
		display: block;
		width: 100%;
		text-align: center;
		max-width: none;
	}

	._seminar .article-list .seminar-article .lecturer .lecturer_items .photo img {
		display: block;
		margin: 0 auto;
	}

	._seminar .article-list .seminar-article .lecturer .lecturer_items .details {
		margin-left: 0px;
		width: 100%;
	}

	._seminar .article-list .seminar-article .lecturer .lecturer_items .details .title {
		font-size: 18px;
		margin-top: 20px;
	}

	._seminar .article-list .seminar-article .contact h3 {
		margin-bottom: 0px;
	}

	._seminar .article-list .seminar-article .contact h4 {
		font-size: 14px;
	}
}

/*------------------------------
page-ownedpac.php
-------------------------------*/
/* 全体 */
.page-ownedpac {
	box-sizing: border-box;
}

.c-yellow {
	color: #fffc1b;
}

p.ownedpac-p.__center {
	text-align: center;
	letter-spacing: 0.06em;
}

@media (max-width: 750px) {
	.ownedpac-p {
		font-size: 1.1rem;
		font-weight: 300;
		line-height: 1.6;
	}
}

.l-inner.__owned01 {
	padding: 0 90px;
}

.l-inner.__owned02 {
	padding: 0 45px;
}

.l-inner.__owned03 {
	padding: 0 70px;
}

/* オウンドパックとは？ */
.section-feature__text .content-img {
	padding: 30px 0;
}

.ownedpac-img img {
	width: 100%;
}

.section-feature__text .l-inner .__owned {
	margin-bottom: 60px;
}

.section-ownedpac-3point {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	padding: 40px 0;
}

.section-ownedpac-3point-inner ol {
	display: flex;
	justify-content: space-between;
}

.ownedpac-3point__img img {
	margin: 0 auto;
}

.ownedpac-3point__copy {
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
	letter-spacing: normal;
	line-height: 1.6;
	margin: 30px 0 20px 0;
}

.ownedpac-3point__text {
	padding: 0 15px;
}

.section-ownedpac-3point-inner ol li {
	width: 32%;
	color: white;
}

@media (max-width: 750px) {

	.l-inner.__owned01,
	.l-inner.__owned02,
	.l-inner.__owned03 {
		padding: 0 10px;
		margin: 0;
	}

	.section-feature__text .content-img {
		padding: 25px 0 0 0;
	}

	.section-feature__text .l-inner .__owned {
		margin-bottom: 30px;
	}

	.section-ownedpac-3point-inner ol {
		display: block;
	}

	.section-ownedpac-3point-inner ol li {
		width: 100%;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin-top: 40px;
	}

	.section-ownedpac-3point-inner ol li:first-child {
		margin-top: 0;
	}

	.ownedpac-3point__img {
		width: 50px;
		display: inline-block;
		margin-right: 15px;
	}

	.ownedpac-3point__copy {
		display: inline-block;
		font-size: 1.5rem;
		text-align: left;
		margin: 0;
	}

	.ownedpac-3point__text {
		padding: 0;
		font-size: 1.3rem;
		line-height: 1.7;
		letter-spacing: 0.08em;
		font-weight: 200;
		margin-top: 10px;
	}
}

/* オウンドパックを使うメリット */
.section-ownedpac-merit {
	padding: 60px 0 40px 0;
}

.ownedpac-merit-list {
	padding-top: 50px;
	margin: 0 auto;
}

.ownedpac-merit-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 1px #bcbcbc;
	padding: 0 15px 45px 15px;
	margin-bottom: 35px;
}

.merit-list-hadding {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 30px;
}

.merit-hedding span {
	display: inline !important;
	font-size: 4.2rem;
	color: #053c63;
	font-weight: 900;
	line-height: 1.3;
	padding: 0 10px;
	background: -webkit-linear-gradient(transparent 70%, #eeeeee 0%);
	background: -o-linear-gradient(transparent 70%, #eeeeee 0%);
	background: linear-gradient(transparent 70%, #eeeeee 0%);
}

.merit-hedding .merit-hedding2 {
	font-size: 3.6rem;
}

.merit-icon {
	margin-right: 30px;
}

.ownedpac-merit-list__left_wrap {
	margin-right: 30px;
}

.merit-p {
	padding-left: 25px;
}

@media (max-width: 750px) {
	.section-ownedpac-merit {
		padding: 25px 0 10px 0;
	}

	.ownedpac-merit-list {
		padding-top: 25px;
	}

	.ownedpac-merit-list li {
		flex-direction: column-reverse;
		padding: 0 0 20px 0;
		margin-bottom: 25px;
	}

	.merit-p {
		padding-left: 0;
		font-size: 1.1rem;
		font-weight: 300;
		line-height: 1.6;
	}

	.merit-list-icon {
		width: 120px;
		height: auto;
		margin-bottom: 15px;
	}

	.merit-list-hadding {
		margin-bottom: 15px;
	}

	.merit-hedding span {
		font-size: 1.7rem;
		display: inline;
	}

	.merit-hedding .merit-hedding2 {
		font-size: 14px;
	}

	.merit-icon {
		width: 60px;
		margin-right: 15px;
	}

	.ownedpac-merit-list__left_wrap {
		margin-right: 0;
	}
}

/* 動画 */
.section-ownedpac-movie {
	max-width: 1200px;
	margin: 0 auto 40px;
}

.section-ownedpac-movie-inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.section-ownedpac-movie-inner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* オウンドパックの料金・プラン紹介 */
.owned-img img {
	width: 100%;
	padding-bottom: 30px;
}

.ownedpac-price-plan-head {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	padding: 40px 0;
	margin-bottom: 50px;
	text-align: center;
}

.ownedpac-price-plan-head .l-inner span {
	display: block;
}

.ownedpac-price-plan-head_img {
	padding: 25px 0 30px 0;
}

.ownedpac-price-plan-head_img img {
	margin: 0 auto;
}

.ownedpac-price-plan-head .p1,
.ownedpac-price-plan-head .p2 {
	font-weight: 900;
	color: white;
}

.ownedpac-price-plan-head .p2 {
	font-size: 2rem;
}

.ownedpac-price-plan-head .p1 {
	display: inline;
	font-size: 4.2rem;
	padding: 0 10px;
	background: -webkit-linear-gradient(transparent 74%, rgba(255, 255, 255, 0.2) 0%);
	background: -o-linear-gradient(transparent 74%, rgba(255, 255, 255, 0.2) 0%);
	background: linear-gradient(transparent 74%, rgba(255, 255, 255, 0.2) 0%);
}

.ownedpac-price-plan-head .p2 .bg-yellow {
	display: inline;
	background-color: #fffc1b;
	color: #0c4267;
	line-height: 1.5;
	padding: 0 10px;
}

.ownedpac-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 60px 0 30px 0;
}

.ownedpac-price02 {
	width: 100%;
	margin-top: 30px;
}

.ownedpac-price02 img {
	width: 100%;
}

.ownedpac-price-plan-content {
	margin-bottom: 50px;
}

.ownedpac-price-plan-content_title {
	border-bottom: 1px solid #053c63;
	padding-bottom: 15px;
	display: block;
}

.ownedpac-price-plan-content_title span {
	border-left: 5px solid #053c63;
	padding: 5px 0 5px 30px;
	font-size: 3rem;
	font-weight: 900;
	color: #053c63;
}

.ownedpac-price-plan-content__copy {
	font-size: 3.4rem;
	font-weight: 900;
	line-height: 1.7;
	color: #053c63;
	padding-bottom: 30px;
}

.ownedpac-price-plan-content__text.__02 {
	margin-bottom: 35px;
}

.ownedpac-price-plan-content_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
}

.ownedpac-price-plan-content_box li {
	width: 22%;
	margin-bottom: 35px;
}

.ownedpac-price-plan-content_box__copy {
	padding: 20px 0;
	text-align: center;
	font-weight: 900;
	font-size: 2.5rem;
	color: #053c63;
}

.ownedpac-price-plan-content_box__copy.__fsize23 {
	font-size: 2.3rem;
	padding: 21px 0 21px 0;
}

.ownedpac-price-plan-content_box__img {
	display: flex;
	justify-content: center;
}

@media (max-width: 750px) {
	.ownedpac-price-plan-head {
		margin-bottom: 25px;
	}

	.ownedpac-price-plan-head_img img {
		width: 100px;
		height: auto;
	}

	.ownedpac-price-plan-head .p1 {
		font-size: 1.7rem;
	}

	.ownedpac-price-plan-head .p2 {
		font-size: 1.3rem;
		line-height: 1.7;
		letter-spacing: 0.08em;
		font-weight: bold;
	}

	.ownedpac-price {
		flex-direction: column;
		flex-wrap: wrap;
		margin-top: 20px;
	}

	.ownedpac-price02 {
		margin-top: 15px;
	}

	.ownedpac-price-plan-content {
		margin-bottom: 25px;
	}

	.ownedpac-price-plan-content_title {
		padding-bottom: 8px;
	}

	.ownedpac-price-plan-content_title span {
		font-size: 1.8rem;
		padding: 3px 0 3px 15px;
	}

	.ownedpac-price-plan-content__copy {
		font-size: 1.4rem;
		padding-bottom: 15px;
	}

	.ownedpac-price-plan-content__text,
	.ownedpac-price-plan-content__text.__02 {
		font-size: 1.1rem;
		font-weight: 300;
		line-height: 1.6;
		margin-bottom: 15px;
	}

	.ownedpac-price-plan-content_box {
		padding-top: 15px;
	}

	.ownedpac-price-plan-content_box li {
		width: 45%;
		margin-bottom: 25px;
	}

	.ownedpac-price-plan-content_box__copy,
	.ownedpac-price-plan-content_box__copy.__fsize23 {
		font-size: 1.3rem;
		padding: 10px 0 10px 0;
	}

	.ownedpac-price-plan-content_box__text {
		font-size: 1.1rem;
		font-weight: 300;
		line-height: 1.6;
	}
}

/*------------------------------
個人情報の取り扱いについて
-------------------------------*/
.policy-content {
	margin-top: 50px;
}

.policy-indent-wrap {
	padding: 15px 0;
}

.policy-indent {
	display: block;
	margin-left: 16px;
	padding-left: 16px;
	padding-bottom: 5px;
	text-indent: -16px;
}

.policy-indent2 {
	padding-left: 53px;
	text-indent: -53px;
}

.policy-indent3 {
	display: block;
	padding-left: 53px;
	text-indent: -53px;
}

.policy-pb {
	display: block;
	padding-bottom: 15px;
}

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

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

.policy-address {
	display: block;
	text-indent: 0;
	margin-left: 16px;
	padding: 16px 0;
}

@media (max-width: 750px) {

	.policy-indent,
	.policy-indent3 {
		margin-left: 0;
	}

	.policy-indent2,
	.policy-indent3 {
		padding-left: 37px;
		text-indent: -37px;
	}
}

/*------------------------------
お役立ちコラム(一覧)
-------------------------------*/
.mv__main._column {
	background: none;
}

.post-type-archive-column .article-list,
.tag .article-list {
	margin: 0;
}

.post-type-archive-column .article-list ul,
.tag .article-list ul {
	display: block;
}

.post-type-archive-column .article-list li,
.tag .article-list li,
.event .article-list li {
	width: 100%;
	border-bottom: 1px dashed #a0a0a0;
	padding: 0 0 30px;
	margin: 0 0 30px;
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list li,
	.tag .article-list li,
	.event .article-list li {
		padding: 0 0 15px;
		margin: 0 0 20px;
	}
}

.post-type-archive-column .article-list a,
.tag .article-list a {
	position: relative;
}

@media (min-width: 751px) {

	.post-type-archive-column .article-list a,
	.tag .article-list a {
		display: -ms-flexbox;
		display: flex;
	}
}

@media (min-width: 751px) {

	.post-type-archive-column .article-list__ph,
	.tag .article-list__ph {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

.post-type-archive-column .article-list__textarea,
.tag .article-list__textarea {
	display: block;
}

@media (min-width: 751px) {

	.post-type-archive-column .article-list__textarea,
	.tag .article-list__textarea {
		padding: 0;
		margin: 0 0 0 25px;
	}
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__textarea,
	.tag .article-list__textarea {
		padding: 15px 0 0;
	}
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__date,
	.tag .article-list__date {
		margin: 0 0 0 10px;
	}
}

@media (min-width: 751px) {

	.post-type-archive-column .article-list__ttl,
	.tag .article-list__ttl {
		font-size: 2.1rem;
		line-height: 1.9;
	}
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__ttl,
	.tag .article-list__ttl {
		font-size: 1.4rem;
		margin: 10px 0 0;
	}
}

.post-type-archive-column .article-list__desc,
.tag .article-list__desc {
	font-size: 1.7rem;
	line-height: 1.9;
	margin: 15px 0 0;
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__desc,
	.tag .article-list__desc {
		font-size: 1.2rem;
		margin: 10px 0 0;
	}
}

.post-type-archive-column .article-list .readmore,
.tag .article-list .readmore {
	position: absolute;
	right: 22px;
	bottom: 0;
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list .readmore,
	.tag .article-list .readmore {
		position: relative;
		right: auto;
		margin: 15px 0 0;
	}
}

.post-type-archive-column .article-list__foot,
.tag .article-list__foot,
.event .article-list__foot {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-top: 1px solid #ccc;
	padding: 10px 0 0;
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__foot,
	.tag .article-list__foot,
	.event .article-list__foot {
		padding: 0;
	}
}

.post-type-archive-column .article-list__foot p,
.tag .article-list__foot p,
.event .article-list__foot p {
	font-size: 1.4rem;
	line-height: 1;
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__foot p,
	.tag .article-list__foot p,
	.event .article-list__foot p {
		font-size: 1rem;
		margin: 15px 0 0;
	}
}

.post-type-archive-column .article-list__foot .pager,
.tag .article-list__foot .pager,
.event .article-list__foot .pager {
	display: -ms-flexbox;
	display: flex;
	margin: 15px 0 0;
}

.post-type-archive-column .article-list__foot .pager .page-numbers,
.tag .article-list__foot .pager .page-numbers,
.event .article-list__foot .pager .page-numbers {
	margin: 0 0 0 8px;
	width: 28px;
	height: 28px;
	border: 1px solid #ccc;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2rem;
	border-radius: 2px;
	font-family: "Roboto";
	font-weight: 400;
}

.post-type-archive-column .article-list__foot .pager .page-numbers.current,
.tag .article-list__foot .pager .page-numbers.current,
.event .article-list__foot .pager .page-numbers.current {
	background-color: #e40081;
	color: #fff;
}

@media (max-width: 750px) {

	.post-type-archive-column .article-list__foot .pager .page-numbers,
	.tag .article-list__foot .pager .page-numbers,
	.event .article-list__foot .pager .page-numbers {
		margin: 0 0 0 5px;
		width: 24px;
		height: 24px;
		font-size: 1rem;
	}
}

.post-type-archive-column .article-list__foot .pager .page-numbers a,
.tag .article-list__foot .pager .page-numbers a,
.event .article-list__foot .pager .page-numbers a {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

/*------------------------------
お役立ちコラム（詳細）
-------------------------------*/
.l-main._column,
.section-blog__categorylist._column {
	width: 100%;
}

.post-type-archive-column .article-list li ._column ul li {
	width: 20%;
}

@media (max-width: 750px) {
	.single-column .l-main {
		max-width: 375px;
		margin: 0 auto;
	}
}

.single-column .title-deco06 span {
	font-size: 2.4rem;
	color: #1d1d1d;
}

@media (max-width: 750px) {
	.single-column .title-deco06 span {
		font-size: 1.7rem;
	}
}

.single-column .blog-content {
	border-bottom: 1px dashed #a0a0a0;
}

.single-column .blog-content__date {
	font-size: 1.7rem;
	color: #6d6d6d;
}

@media (max-width: 750px) {
	.single-column .blog-content__date {
		font-size: 1.4rem;
	}
}

.single-column .blog-content__category {
	padding: 2px 15px;
	font-size: 1.3rem;
	margin: 0 0 0 15px;
	color: #fff;
	letter-spacing: -0.02em;
}

@media (max-width: 750px) {
	.single-column .blog-content__category {
		font-size: 1.2rem;
	}
}

.single-column .blog-content__category.blue {
	background-color: #07bfe0;
}

.single-column .blog-content__ttl {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #404040;
	margin: 10px 0 20px;
}

@media (max-width: 750px) {
	.single-column .blog-content__ttl {
		font-size: 2rem;
	}
}

.single-column .blog-pager {
	padding: 20px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: end;
	align-items: flex-end;
}

.single-column .blog-pager__prev,
.single-column .blog-pager__next {
	transition: 0.3s ease;
}

.single-column .blog-pager__prev:hover,
.single-column .blog-pager__next:hover {
	opacity: 0.7;
}

@media (max-width: 750px) {

	.single-column .blog-pager__prev,
	.single-column .blog-pager__next {
		display: none !important;
	}
}

.single-column .blog-pager__prev .blog-pager__ttl {
	padding: 0 0 0 25px;
}

.single-column .blog-pager__prev .blog-pager__ttl:after {
	left: 0;
	transform: rotate(180deg);
}

.single-column .blog-pager__next {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: end;
	align-items: flex-end;
}

.single-column .blog-pager__next .blog-pager__ttl {
	padding: 0 25px 0 0;
}

.single-column .blog-pager__next .blog-pager__ttl:after {
	right: 0;
}

.single-column .blog-pager__ph {
	width: 150px;
}

.single-column .blog-pager__ph img {
	width: 100%;
}

.single-column .blog-pager__ttl {
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	margin: 10px 0 0;
}

.single-column .blog-pager__ttl:after {
	content: "";
	display: block;
	position: absolute;
	width: 17px;
	height: 17px;
	background: url(../images/common/icon_arrow.png) left top no-repeat;
	top: 2px;
	bottom: 0;
	margin: auto 0;
}

@media (max-width: 750px) {
	.single-column .blog-pager__archive {
		margin: 0 auto;
	}
}

.single-column .blog-pager__archive a {
	border: 1px solid #053c63;
	border-radius: 5px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	width: 264px;
	height: 45px;
	color: #053c63;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	transition: 0.4s ease;
}

.single-column .blog-pager__archive a:hover {
	background-color: #053c63;
	color: #fff;
}

@media (max-width: 750px) {
	.single-column .blog-pager__archive a {
		font-size: 1.4rem;
		height: 42px;
		width: 280px;
	}
}

/* アクセスのブログ・セミナーのお知らせ */
.section-blog._column {
	margin: 60px 0;
	border-top: none;
}

.article-list_column {
	margin: 20px 0 0;
}

.article-list_column ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (max-width: 750px) {
	.article-list_column ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.article-list_column li {
	margin-bottom: 16px;
	width: 24%;
}

@media (max-width: 750px) {
	.article-list_column li {
		width: calc(50% - 7px);
		margin: 0 0 25px;
	}
}

.article-list_column a {
	display: block;
	transition: 0.3s ease;
}

.article-list_column a:hover {
	opacity: 0.7;
}

.article-list_column a:hover .article-list_column__ph img {
	transition: 1s ease-out;
	transform: scale(1.05, 1.05);
}

.article-list_column__ph {
	overflow: hidden;
}

.article-list_column__ph img {
	transition: 0.5s ease-out;
}

.article-list_column__textarea {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 0 0;
}

@media (max-width: 750px) {
	.article-list_column__textarea {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 8px 0 0;
	}
}

.article-list_column__category {
	font-size: 1.5rem;
	font-weight: 200;
	line-height: 1;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.9);
	padding: 6px 15px;
	background-color: #053c63;
	display: inline-block;
}

.article-list_column__category a {
	color: #fff;
}

@media (max-width: 750px) {
	.article-list_column__category {
		-ms-flex-order: 2;
		order: 2;
		font-size: 1rem;
	}
}

.article-list_column__category.green {
	background-color: #42ae42;
}

.article-list_column__category.blue {
	background-color: #07bfe0;
}

.article-list_column__category.orange {
	background-color: #f86f24;
}

.article-list_column__category.pink {
	background-color: #f37070;
}

.article-list_column__date {
	font-size: 1.4rem;
	color: #7b7b7b;
	line-height: 1;
	margin: 0 0 0 20px;
}

@media (max-width: 750px) {
	.article-list_column__date {
		font-size: 1rem;
		margin: 0 0 5px;
	}
}

.article-list_column__ttl {
	font-size: 1.8rem;
	line-height: 3.2rem;
	letter-spacing: 0.05em;
	color: #015db2;
	text-decoration: underline;
	font-weight: 600;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.article-list_column__ttl {
		-ms-flex-order: 3;
		order: 3;
		font-size: 1.2rem;
		line-height: 1.8;
		margin: 5px 0 0;
	}
}

.article-list-column__textarea {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 0 0;
}

@media (max-width: 750px) {
	.article-list-column__textarea {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 8px 0 0;
	}
}

.article-list-column__date {
	font-size: 1.2rem;
	color: #7b7b7b;
	line-height: 1;
	margin: 0 0 0 10px;
}

@media (max-width: 750px) {
	.article-list-column__date {
		font-size: 1rem;
		margin: 0 0 5px;
	}
}

.article-list-column__ttl {
	font-size: 1.8rem;
	line-height: 3.2rem;
	letter-spacing: 0.05em;
	color: #015db2;
	text-decoration: underline;
	font-weight: 600;
	margin: 10px 0 0;
}

@media (max-width: 750px) {
	.article-list-column__ttl {
		-ms-flex-order: 3;
		order: 3;
		font-size: 1.2rem;
		line-height: 1.8;
		margin: 5px 0 0;
	}
}

/*　iphoneでplaceholderがずれる不具合を修正　*/
input::-webkit-input-placeholder {
	padding-top: 0.7em;
}

.section-mediaInfo__movie {
	max-width: 1200px;
	margin: 0 auto 40px;
}

.section-mediaInfo__movie {
	max-width: 1200px;
	margin: 0 auto 40px;
}

.section-mediaInfo__movie-inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.section-mediaInfo__movie-inner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* ==========================================================================
   homepage
   ========================================================================== */
#homepage {
	font-family: 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
}

#homepage .font-hira3 {
	font-family: "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

#homepage .font-hira4 {
	font-family: "ヒラギノ角ゴ Pro W4", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

#homepage .font-hira6 {
	font-family: "ヒラギノ角ゴ Pro W6", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

#homepage .font-hira7 {
	font-family: "ヒラギノ角ゴ Pro W7", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

#homepage .font-hira_std {
	font-family: "ヒラギノ角ゴ StdN W8", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

#homepage .font-ryo {
	font-family: ryo-gothic-plusn, sans-serif;
	font-weight: 900;
	font-style: normal;
}

#homepage .content_box img {
	max-width: 100%;
	width: auto;
	display: block;
	margin: 0 auto;
}

#homepage .content_box {
	max-width: 1180px;
	width: 95%;
	margin: 0 auto;
}

#homepage .mv__main {
	background: url(../images/homepage/bg_hero.png) center center no-repeat;
	background-size: cover;
}

#homepage br.sp {
	display: none;
}

@media (max-width: 750px) {
	#homepage .content_box {
		max-width: 350px;
	}

	#homepage .mv__main {
		background: none;
	}

	#homepage br.sp {
		display: block;
	}
}

#homepage #banner_area {}

#homepage #banner_area ul {
	max-width: 1060px;
	margin: 0 auto;
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin-top: 2%;
	margin-bottom: 3.5%;
}

#homepage #banner_area ul li {
	width: 48.5%;
}

#homepage #banner_area ul li a {}

#homepage #banner_area ul li img {}

@media (max-width: 750px) {
	#homepage #banner_area ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 10%;
	}

	#homepage #banner_area ul li {
		width: 100%;
		padding-top: 5%;
	}
}

#homepage #recommend {}

#homepage #recommend fieldset {
	border: 2px solid #e8e8e8;
	border-radius: 6px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 2% 2.6%;
	position: relative;
}

#homepage #recommend fieldset::after {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_01.png) right bottom no-repeat;
	background-size: contain;
	bottom: -8%;
	right: 2%;
	margin: auto;
	width: 16%;
	max-width: 179px;
	height: 0px;
	padding-top: 29%;
}

#homepage #recommend fieldset legend {
	background: #053c63;
	color: #fff;
	font-size: 2.7rem;
	font-weight: bold;
	padding: 0px 10%;
	text-align: center;
	border-radius: 100px;
	line-height: 2.2em;
	position: relative;
}

#homepage #recommend fieldset legend::after {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/arrow_blue.png) center center no-repeat;
	background-size: contain;
	bottom: -25%;
	left: 0;
	right: 0;
	margin: auto;
	width: 5%;
	max-width: 39px;
	height: 0px;
	padding-top: 3.1%;
}

#homepage #recommend fieldset legend span {
	background: #fffc1b;
	color: #053c63;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 0.3em 0.3em;
	vertical-align: bottom;
	margin-right: 0.5em;
	letter-spacing: 0px;
}

#homepage #recommend fieldset ul {}

#homepage #recommend fieldset ul li {
	background: url(../images/homepage/check_blue.png) left center no-repeat;
	background-size: 1em;
	font-size: 2.2rem;
	color: #053c63;
	padding-left: 1.6em;
	letter-spacing: 0px;
	font-weight: bold;
	line-height: 1.5em;
	margin: 2% 0px;
}

#homepage #recommend fieldset ul li br {
	display: none;
}

#homepage #recommend fieldset ul li span {
	position: relative;
	z-index: 2;
}

#homepage #recommend fieldset ul li span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -0.01em;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #ececec;
	z-index: -1;
}

@media (max-width: 750px) {
	#homepage #recommend fieldset {
		padding-right: 0px;
	}

	#homepage #recommend fieldset legend {
		font-size: 1.3rem;
		padding: 1% 5%;
		letter-spacing: 0px;
	}

	#homepage #recommend fieldset legend span {
		font-size: 1rem;
	}

	#homepage #recommend fieldset ul li {
		font-size: 1.2rem;
		line-height: 1.8;
		letter-spacing: 0px;
		margin: 5% 0px;
	}

	#homepage #recommend fieldset ul li span::after {
		width: 98%;
	}

	#homepage #recommend fieldset ul li br {
		display: block;
	}

	#homepage #recommend fieldset::after {
		display: none;
	}
}

#homepage #value_pack {}

#homepage #value_pack h2 {
	color: #053c63;
	text-align: center;
	font-size: 5.4rem;
	font-style: italic;
	line-height: 1.5em;
	margin-top: 6%;
}

#homepage #value_pack h2 br {
	display: none;
}

#homepage #value_pack h2 span {
	background: #fffc1b;
	padding: 0.15em 0.15em;
	position: relative;
}

#homepage #value_pack h2 span::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_02.png) center center no-repeat;
	background-size: contain;
	top: -45%;
	left: -24%;
	width: 28%;
	max-width: 132px;
	height: 0px;
	padding-top: 16%;
}

#homepage #value_pack ul {
	padding-top: 2%;
}

#homepage #value_pack ul li {
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	border-bottom: 1px dashed #c6c6c6;
	padding: 2.5% 0px;
}

#homepage #value_pack ul li .value__photo {
	width: 13.7%;
	margin-left: 2.5%;
}

#homepage #value_pack ul li .value__photo img {
	position: relative;
	z-index: 3;
}

#homepage #value_pack ul li .value__text {
	width: 78%;
	margin-right: 2.5%;
}

#homepage #value_pack ul li .value__text h3 {
	color: #053c63;
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1.5em;
	padding-top: 2%;
	padding-bottom: 2%;
	position: relative;
	z-index: 2;
}

#homepage #value_pack ul li .value__text h3::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 10%;
	left: -5%;
	width: 130px;
	height: 2px;
	background: #053c63;
	z-index: -1;
}

#homepage #value_pack ul li .value__text p {
	font-size: 1.6rem;
	color: #202020;
}

@media (max-width: 750px) {
	#homepage #value_pack h2 {
		font-size: 2.5rem;
		margin-top: 10%;
	}

	#homepage #value_pack h2 span::before {
		top: 0.8em;
	}

	#homepage #value_pack h2 br {
		display: block;
	}

	#homepage #value_pack ul {
		padding-top: 0%;
	}

	#homepage #value_pack ul li {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 10% 0px;
	}

	#homepage #value_pack ul li .value__photo {
		width: 30%;
		margin-left: 0%;
		margin: 0 auto;
	}

	#homepage #value_pack ul li .value__text {
		width: 100%;
		margin-right: 0%;
	}

	#homepage #value_pack ul li .value__text h3 {
		font-size: 2rem;
		padding-top: 5%;
		padding-bottom: 5%;
	}

	#homepage #value_pack ul li .value__text p {
		font-size: 1.2rem;
	}
}

#homepage #about {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	text-align: center;
}

#homepage #about h2 {
	font-size: 4.3rem;
	color: #fff;
	text-align: center;
	padding-top: 10.5%;
	margin-top: 8%;
	margin-bottom: 2%;
	position: relative;
}

#homepage #about h2::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_03.png) center center no-repeat;
	background-size: contain;
	top: 25%;
	left: 0;
	right: 0;
	margin: auto;
	width: 5.5%;
	max-width: 61px;
	height: 0;
	padding-top: 6.1%;
}

#homepage #about h2 span {
	position: relative;
	z-index: 2;
}

#homepage #about h2 span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0%;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #33607f;
	z-index: -1;
	opacity: 0.6;
}

#homepage #about .about__photo {}

#homepage #about .about__photo img {}

#homepage #about .about_text {}

#homepage #about .about_text p {
	color: #fff;
	font-size: 2.1rem;
	line-height: 1.8em;
	padding-top: 3%;
	padding-bottom: 3%;
}

#homepage #about .about_text p span {
	color: #053c63;
	background: #fffc1b;
	padding: 0.1em 0.2em;
}

#homepage #about .about_text h3 {
	color: #fff;
	font-size: 3.6rem;
	line-height: 1.5em;
	font-weight: bold;
}

#homepage #about .about_text h3 span.color {
	color: #fffc1b;
}

#homepage #about .about_text h3 span.line {
	position: relative;
	z-index: 2;
}

#homepage #about .about_text h3 span.line::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0%;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #33607f;
	z-index: -1;
	opacity: 0.6;
}

#homepage #about .about__list {}

#homepage #about .about__list ul {
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
	margin-top: 4%;
	padding-bottom: 7%;
}

#homepage #about .about__list ul li {
	width: 24%;
}

#homepage #about .about__list ul li .about__list__photo {
	width: 67%;
	margin: 0 auto;
}

#homepage #about .about__list ul li .about__list__photo img {}

#homepage #about .about__list ul li h4 {
	color: #073c61;
	font-size: 2rem;
	margin-top: 5%;
	letter-spacing: 0px;
}

#homepage #about .about__list ul li h4 span {
	background: #ffffff;
	padding: 0.2em 0.1em;
}

@media (max-width: 750px) {
	#homepage #about h2 {
		font-size: 2.4rem;
		padding-top: 20%;
		margin-top: 10%;
		margin-bottom: 5%;
	}

	#homepage #about h2::before {
		width: 17.5%;
		padding-top: 11.1%;
	}

	#homepage #about .about_text p {
		font-size: 1.3rem;
	}

	#homepage #about .about_text h3 {
		font-size: 1.6rem;
		line-height: 2em;
	}

	#homepage #about .about__list ul {
		margin-top: 0%;
		padding-bottom: 15%;
	}

	#homepage #about .about__list ul li {
		width: 47%;
		margin-top: 10%;
	}

	#homepage #about .about__list ul li h4 {
		font-size: 1.2rem;
	}
}

#homepage #plan {}

#homepage #plan h2 {
	font-size: 4.7rem;
	color: #053c63;
	text-align: center;
	padding-top: 10.5%;
	margin-bottom: 2%;
	position: relative;
}

#homepage #plan h2::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_04.png) center center no-repeat;
	background-size: contain;
	top: 29%;
	left: 0;
	right: 0;
	margin: auto;
	width: 5%;
	max-width: 51px;
	height: 0;
	padding-top: 5%;
}

#homepage #plan h2 span {
	position: relative;
	z-index: 2;
}

#homepage #plan h2 span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -0.05em;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #dae2e8;
	z-index: -1;
	opacity: 1;
}

#homepage #plan .msg {
	color: #053c63;
	padding-bottom: 5%;
	text-align: right;
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0px;
	padding-top: 1%;
	padding-right: 2%;
}

#homepage #plan .plan__banner {
	margin-bottom: 80px;
}

#homepage #plan .plan__banner ul {
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#homepage #plan .plan__banner ul li {
	width: 49%;
}

#homepage #plan .plan__banner ul li img {}

@media (max-width: 750px) {
	#homepage #plan h2 {
		font-size: 3rem;
		padding-top: 20%;
		margin-bottom: 5%;
	}

	#homepage #plan h2::before {
		width: 15%;
		padding-top: 8%;
	}

	#homepage #plan .plan__banner ul {
		padding-bottom: 0%;
	}

	#homepage #plan .plan__banner ul li {
		width: 100%;
		margin-bottom: 10%;
	}

	#homepage #plan .plan__banner ul li:nth-of-type(2) {
		margin-bottom: 0px;
	}

	#homepage #plan .msg {
		padding-top: 5%;
		font-size: 1.3rem;
		padding-right: 0px;
		text-align: center;
		padding-bottom: 8%;
	}
}

#homepage #record {
	display: none;
}

#homepage #record h2 {
	border-top: 1px solid #d6d6d6;
	font-size: 4.7rem;
	color: #053c63;
	text-align: center;
	padding-top: 4%;
	margin-bottom: 2%;
	position: relative;
}

#homepage #record h2 span {
	position: relative;
	z-index: 2;
}

#homepage #record h2 span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -0.05em;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #dae2e8;
	z-index: -1;
	opacity: 1;
}

#homepage #record .record_slider {
	padding-bottom: 5%;
}

#homepage #record .record_slider .slider__img {
	text-align: center;
}

#homepage #record .record_slider .slider__img img {
	max-width: 100%;
	width: auto;
}

#homepage #record .record_slider .slider__text {
	padding: 1em;
}

#homepage #record .record_slider .slider__text .cat {
	line-height: 1em;
}

#homepage #record .record_slider .slider__text .cat li {
	background: #053c63;
	color: #fff;
	display: inline-block;
	line-height: 1em;
	padding: 0.3em 0.5em;
	margin-right: 0.5em;
	font-size: 1.6rem;
}

#homepage #record .record_slider .slider__text h3 {
	font-size: 2.2rem;
	color: #053c63;
}

#homepage #record .record_slider .slider__text p {
	font-size: 1.6rem;
}

@media (max-width: 750px) {
	#homepage #record h2 {
		font-size: 3rem;
		padding-top: 6%;
		margin-bottom: 5%;
	}

	#homepage #record .record_slider .slider__text .cat li {
		font-size: 1.2rem;
	}

	#homepage #record .record_slider .slider__text h3 {
		font-size: 1.8rem;
	}

	#homepage #record .record_slider .slider__text p {
		font-size: 1.2rem;
	}

	#homepage #record .record_slider {
		padding-bottom: 10%;
	}
}

#homepage .section-mediaFlow {
	padding-top: 0px;
}

#homepage .section-mediaFlow .section-mediaFlow__ttl {
	color: #fff;
	font-size: 4.3rem;
	padding-top: 5%;
	margin-bottom: 4%;
}

#homepage .section-mediaFlow .section-mediaFlow__ttl span {
	position: relative;
	z-index: 2;
}

#homepage .section-mediaFlow .section-mediaFlow__ttl span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0%;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #33607f;
	z-index: -1;
	opacity: 0.6;
}

#homepage .section-mediaFlow ol {
	position: relative;
	margin-top: 9%;
}

#homepage .section-mediaFlow ol::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/flow_ico.png) center center no-repeat;
	background-size: contain;
	top: -16%;
	right: 10%;
	width: 46%;
	max-width: 539px;
	height: 0px;
	padding-top: 6%;
}

#homepage .section-mediaFlow .section-mediaFlow__copy {
	font-size: 2.4rem;
}

#homepage .section-mediaFlow .section-mediaFlow__desc {
	font-size: 1.6rem;
}

@media (max-width: 750px) {
	#homepage .section-mediaFlow .section-mediaFlow__ttl {
		font-size: 3rem;
		padding-top: 10%;
		margin-bottom: 5%;
	}

	#homepage .section-mediaFlow .l-inner {
		max-width: 350px;
	}

	#homepage .section-mediaFlow ol::before {
		display: none;
	}

	#homepage .section-mediaFlow .section-mediaFlow__desc {
		font-size: 1.2rem;
		line-height: 1.8em;
	}
}

#homepage #faq {}

#homepage #faq h2 {
	font-size: 4.7rem;
	color: #053c63;
	text-align: center;
	padding-top: 10.5%;
	margin-bottom: 1%;
	position: relative;
}

#homepage #faq h2::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_05.png) center center no-repeat;
	background-size: contain;
	top: 25%;
	left: 0;
	right: 0;
	margin: auto;
	width: 6.1%;
	max-width: 71px;
	height: 0;
	padding-top: 6.1%;
}

#homepage #faq h2 span {
	position: relative;
	z-index: 2;
}

#homepage #faq h2 span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -0.05em;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #dae2e8;
	z-index: -1;
	opacity: 1;
}

#homepage #faq dl {
	border-bottom: 1px dashed #bdbdbd;
	padding: 2.5% 0.6em;
}

#homepage #faq dl dt {
	font-size: 2.6rem;
	line-height: 1.5em;
	position: relative;
	padding-left: 2.5em;
	margin-bottom: 0.8em;
}

#homepage #faq dl dt::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_q.png) center center no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	left: 0%;
	width: 2em;
	max-width: 46px;
	height: 2em;
	max-height: 46px;
}

#homepage #faq dl dd {
	font-weight: normal;
	font-size: 1.6rem;
	background: #f6f6f6;
	border-radius: 6px;
	margin-left: 1em;
	padding: 0.9em;
	padding-left: 3.5em;
	position: relative;
}

#homepage #faq dl dd::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_a.png) center center no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.6rem;
	left: -0.6em;
	width: 2em;
	max-width: 46px;
	height: 2em;
	max-height: 46px;
}

@media (max-width: 750px) {
	#homepage #faq h2 {
		font-size: 3rem;
		padding-top: 20%;
		margin-bottom: 5%;
	}

	#homepage #faq h2::before {
		width: 21.1%;
		padding-top: 10.1%;
	}

	#homepage #faq dl {
		padding: 6% 0.6em;
	}

	#homepage #faq dl dt {
		font-size: 1.8rem;
	}

	#homepage #faq dl dd {
		font-size: 1.2rem;
	}
}

.common-contact {}

.common-contact .content_box {
	max-width: 1180px;
	width: 95%;
	margin: 0 auto;
	padding-bottom: 12%;
}

.common-contact h2 {
	font-size: 4.7rem;
	color: #053c63;
	text-align: center;
	padding-top: 10.5%;
	margin-bottom: 3%;
	position: relative;
}

.common-contact h2 span {
	position: relative;
	z-index: 2;
}

.common-contact h2::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/homepage/ico_06.png) center center no-repeat;
	background-size: contain;
	top: 36%;
	left: 0;
	right: 0;
	margin: auto;
	width: 5%;
	max-width: 59px;
	height: 0;
	padding-top: 4%;
}

.common-contact h2 span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -0.05em;
	left: 0%;
	width: 100%;
	height: 0.3em;
	background: #dae2e8;
	z-index: -1;
	opacity: 1;
}

.common-contact .form-wrap__submit label {
	line-height: 1em;
}

@media (max-width: 750px) {
	.common-contact .content_box {
		max-width: 350px;
	}

	.common-contact h2 {
		font-size: 3rem;
		padding-top: 20%;
		margin-bottom: 5%;
	}

	.common-contact h2::before {
		width: 17%;
		padding-top: 7%;
	}
}

/* ==========================================================================
   slider
   ========================================================================== */
#homepage .slick-slider {
	position: relative;
}

#homepage .slick-slide {
	margin-left: 10px;
}

#homepage .slick-list {
	margin-left: -10px;
}

#homepage .slick-prev {
	cursor: pointer;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-indent: -9999px;
	display: block;
	position: absolute;
	background: url(../images/common/arrow_left.png) center center no-repeat;
	background-size: contain;
	top: 30%;
	transform: translateY(-50%);
	left: -2%;
	width: 2%;
	max-width: 18px;
	height: 0;
	padding-top: 3%;
}

#homepage .slick-next {
	cursor: pointer;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-indent: -9999px;
	display: block;
	position: absolute;
	background: url(../images/common/arrow_right.png) center center no-repeat;
	background-size: contain;
	top: 30%;
	transform: translateY(-50%);
	right: -2%;
	width: 2%;
	max-width: 18px;
	height: 0;
	padding-top: 3%;
}

@media (max-width: 750px) {
	#homepage .slick-slider {
		width: 95%;
		margin: 0 auto;
	}

	#homepage .slick-prev {
		width: 6%;
		padding-top: 6%;
		left: -5%;
		top: 27%;
	}

	#homepage .slick-next {
		width: 6%;
		padding-top: 6%;
		right: -5%;
		top: 27%;
	}
}

.l-main__jirei .maincont-wrap {
	padding: 30px;
	border: 1px solid #ededed;
}

.l-main__jirei .title-deco01 {
	font-size: 2.8rem;
	color: #111;
	font-weight: 900;
	line-height: 1.4;
	margin: 0 0 30px;
	padding: 0;
	border-left: 0;
}

.l-main__jirei .heading__02 {
	background: #ededed;
	font-size: 2.6rem;
	padding: 14px 30px;
	line-height: 1.6;
	position: relative;
	margin: 45px 0 20px;
}

.l-main__jirei .heading__02::after {
	content: "";
	top: 0;
	left: 0;
	border-top: 20px solid #fff;
	border-right: 20px solid #16a2f2;
	position: absolute;
	z-index: 100;
}

.l-main__jirei .heading__03 {
	font-size: 2.2rem;
	padding: 10px 30px;
	border-bottom: 1px solid #053c63;
	margin: 20px 0 30px;
	position: relative;
	overflow: hidden;
}

.l-main__jirei .heading__03::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 14px;
	background: url(../images/jirei/ar-left.png) center / 100%;
}

.l-main__jirei .table-list01 {
	margin: 0 20px 40px;
}

.l-main__jirei .table-list01 th {
	border-left: 0;
	border-right: 0;
	padding: 24px 36px;
	width: 250px;
}

.l-main__jirei .table-list01 td {
	border-left: 0;
	border-right: 0;
	padding: 24px 36px;
	line-height: 1.4;
	text-align: left;
}

.l-main__jirei .textbox {
	margin: 0 20px 45px;
}

.l-main__jirei .list .p-single:not(:last-child),
.l-main__jirei .list .n-single:not(:last-child) {
	margin-bottom: 24px;
}

.l-main__jirei .p-single,
.l-main__jirei .n-single {
	background: #e1eef7 url(../images/jirei/thunder.png) no-repeat right 20px top / 129px 137px;
	padding: 30px;
}

.l-main__jirei .p-single .p-single-ttl,
.l-main__jirei .n-single .n-single-ttl {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
	line-height: 1;
}

.l-main__jirei .p-single .p-sublist li {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 10px;
	padding-left: 30px;
	color: #202020;
	position: relative;
}

.l-main__jirei .p-single .p-sublist li::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: #16a2f2;
	left: 10px;
	top: 10px;
}

.l-main__jirei .n-single .n-sublist li {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 10px;
	padding-left: 30px;
	color: #202020;
	position: relative;
	counter-increment: count;
}

.l-main__jirei .n-single .n-sublist li::after {
	content: counter(count, decimal-leading-zero);
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 12px;
	background: #16a2f2;
	color: #fff;
	left: 0;
	top: 4px;
	font-size: 13px;
	letter-spacing: 0;
	text-align: center;
	line-height: 1.7;
}

.l-main__jirei .mes-cont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 20px;
	min-height: 140px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-right: 60px;
}

.l-main__jirei .mes-cont .imgbox {
	width: 358px;
	margin-right: 24px;
}

.l-main__jirei .mes-cont .imgbox img {
	width: 100%;
	height: auto;
}

.l-main__jirei .mes-cont .mes-balloonwrap {
	width: 354px;
	background: #053c63;
	padding: 15px 20px;
	font-size: 22px;
	line-height: 1.6;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0;
	border-radius: 10px;
	position: relative;
}

.l-main__jirei .mes-cont .mes-balloonwrap .name {
	font-size: 14px;
	margin: 8px 0 0 auto;
	text-align: right;
}

.l-main__jirei .mes-cont .mes-balloonwrap::after {
	content: "";
	position: absolute;
	background: url(../images/jirei/balloon-right.png) no-repeat right 20px top / 80px 58px;
	width: 100px;
	height: 60px;
	right: -100px;
	bottom: -28px;
}

.l-main__jirei .textbox__mes {
	margin: 0 0 45px;
}

.l-content .section-job-market .l-inner {
	width: 1160px;
	margin: 0 auto 64px;
}

.l-content .section-job-market .heading-wrap {
	margin: 124px 0 24px;
}

.l-content .section-job-market .heading-wrap .heading__ja {
	font-size: 52px;
	color: #053c63;
	text-align: center;
	position: relative;
}

.l-content .section-job-market .heading-wrap .heading__ja::after {
	content: "";
	position: absolute;
	background: url(../images/it/title-sub.png) no-repeat center / 100%;
	width: 400px;
	height: 195px;
	top: -105px;
	left: 100px;
	z-index: -1;
}

.l-content .section-job-market .c-target {
	background: #e1eef7 url(../images/it/thunder.png) no-repeat right 20px top / 129px 137px;
	padding: 25px 40px 40px;
	margin: 0 0 30px;
}

.l-content .section-job-market .c-target .c-target__ttl {
	font-size: 22px;
	text-align: center;
	margin: 0 0 10px;
}

.l-content .section-job-market .layout__00 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 35px;
}

.l-content .section-job-market .layout__00 figure {
	width: 540px;
}

.l-content .section-job-market .layout__00 figure img {
	width: 100%;
}

.l-content .section-job-market .layout__00 .textbox {
	width: 550px;
}

.l-content .section-job-market .layout__00.layout__type04 .textbox {
	width: 100%;
}

.l-content .section-worry {
	background: #ededed;
	padding: 140px 0 80px;
	position: relative;
	margin: 0 0 224px;
}

.l-content .section-worry::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #f4f4f4;
	bottom: -224px;
}

.l-content .section-worry .l-inner {
	width: 1160px;
}

.l-content .section-worry .l-inner .heading-wrap {
	position: relative;
}

.l-content .section-worry .l-inner .heading-wrap .heading__en {
	font-size: 140px;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-weight: bold;
	bottom: 0;
	line-height: 0.8;
}

.l-content .section-worry .l-inner .heading-wrap .heading__ja {
	font-size: 40px;
	color: #053c63;
	line-height: 1;
	text-align: center;
	position: relative;
}

.l-content .section-worry .l-inner .worrylist {
	background: #fff;
	padding: 60px 100px;
}

.l-content .section-worry .l-inner .worrylist li {
	position: relative;
	padding-left: 55px;
	font-size: 20px;
	line-height: 1.6;
}

.l-content .section-worry .l-inner .worrylist li:not(:last-child) {
	margin-bottom: 20px;
}

.l-content .section-worry .l-inner .worrylist li::before {
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	border: 2px solid #a8a8a8;
	left: 0;
}

.l-content .section-worry .l-inner .worrylist li::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 25px;
	border-bottom: 4px solid #e40081;
	border-right: 4px solid #e40081;
	transform: rotate(45deg);
	left: 15px;
	top: -5px;
}

.l-content .section-worry .m-btn {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

.l-content .section-worry .m-btn a {
	font-size: 20px;
	width: 400px;
	height: 80px;
	border-radius: 40px;
	bottom: -144px;
	margin: auto;
	font-weight: bold;
}

.l-content .section-worry .m-btn a::after {
	width: 10px;
	height: 10px;
	border-width: 3px 3px 0 0;
	right: 32px;
}

.l-content .section-worry .m-btn a:hover::after {
	right: 22px;
}

@media (max-width: 750px) {
	.l-main__jirei .maincont-wrap {
		padding: 12px;
	}

	.l-main__jirei .title-deco01 {
		font-size: 2rem;
		color: #111;
		font-weight: 900;
		line-height: 1.4;
		margin: 0 0 20px;
		padding: 0;
		border-left: 0;
	}

	.l-main__jirei .heading__02 {
		background: #ededed;
		font-size: 2rem;
		padding: 8px 32px;
		line-height: 1.6;
		position: relative;
		margin: 25px 0 15px;
	}

	.l-main__jirei .heading__02::after {
		content: "";
		top: 0;
		left: 0;
		border-top: 15px solid #fff;
		border-right: 15px solid #16a2f2;
		position: absolute;
		z-index: 100;
	}

	.l-main__jirei .heading__03 {
		font-size: 1.8rem;
		padding: 8px 30px;
		border-bottom: 1px solid #053c63;
		margin: 10px 0 20px;
		position: relative;
		line-height: 1.6;
		overflow: hidden;
	}

	.l-main__jirei .heading__03::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 20px;
		height: 10px;
		background: url(../images/jirei/ar-left.png) center / 100%;
	}

	.l-main__jirei .table-list01 {
		margin: 0 8px 24px;
	}

	.l-main__jirei .table-list01 th {
		border-left: 0;
		border-right: 0;
		padding: 12px 12px;
		width: auto;
	}

	.l-main__jirei .table-list01 td {
		border-left: 0;
		border-right: 0;
		padding: 12px 12px;
		line-height: 1.4;
		text-align: left;
	}

	.l-main__jirei .textbox {
		margin: 0 8px 24px;
	}

	.l-main__jirei .p-single,
	.l-main__jirei .n-single {
		padding: 30px 20px;
	}

	.l-main__jirei .list .p-single:not(:last-child),
	.l-main__jirei .list .n-single:not(:last-child) {
		margin-bottom: 15px;
	}

	.l-main__jirei .p-single .p-single-ttl,
	.l-main__jirei .n-single .n-single-ttl {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 18px;
		line-height: 1;
	}

	.l-main__jirei .p-single .p-sublist li {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 10px;
		padding-left: 26px;
		color: #202020;
		position: relative;
	}

	.l-main__jirei .p-single .p-sublist li::after {
		content: "";
		position: absolute;
		width: 5px;
		height: 5px;
		border-radius: 4px;
		background: #16a2f2;
		left: 10px;
		top: 10px;
	}

	.l-main__jirei .n-single .n-sublist li {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 10px;
		padding-left: 30px;
		color: #202020;
		position: relative;
		counter-increment: count;
	}

	.l-main__jirei .n-single .n-sublist li::after {
		content: counter(count, decimal-leading-zero);
		position: absolute;
		width: 20px;
		height: 20px;
		border-radius: 12px;
		background: #16a2f2;
		color: #fff;
		left: 0;
		top: 4px;
		font-size: 12px;
		letter-spacing: 0;
		text-align: center;
		line-height: 1.6;
	}

	.l-main__jirei .mes-cont {
		display: block;
		min-height: auto;
		padding-right: 0;
	}

	.l-main__jirei .mes-cont .imgbox {
		width: 100%;
		margin: 0 0 20px;
	}

	.l-main__jirei .mes-cont .mes-balloonwrap {
		width: auto;
		margin-right: 48px;
		font-size: 18px;
	}

	.l-main__jirei .mes-cont .mes-balloonwrap .name {
		font-size: 12px;
	}

	.l-main__jirei .mes-cont .mes-balloonwrap::after {
		content: "";
		position: absolute;
		background: url(../images/jirei/balloon-right.png) no-repeat right 20px top / contain;
		width: 72px;
		height: 35px;
		right: -68px;
		bottom: 4px;
	}

	.l-main__jirei .textbox__mes {
		margin: 0 0 20px;
	}

	.l-content .section-job-market .l-inner {
		width: 100%;
		margin: 0 0 32px;
	}

	.l-content .section-job-market .heading-wrap {
		margin: 84px 0 24px;
		text-align: center;
	}

	.l-content .section-job-market .heading-wrap .heading__ja {
		font-size: 24px;
		display: inline-block;
	}

	.l-content .section-job-market .heading-wrap .heading__ja::after {
		width: 200px;
		height: 98px;
		left: -54px;
		top: -70px;
	}

	.l-content .section-job-market .c-target {
		padding: 24px 24px 32px;
	}

	.l-content .section-job-market .c-target .c-target__ttl {
		font-size: 18px;
		margin: 0;
	}

	.l-content .section-job-market .layout__00 {
		display: block;
		margin: 0 14px;
	}

	.l-content .section-job-market .layout__00 .textbox {
		width: 100%;
		margin: 0 0 20px;
	}

	.l-content .section-job-market .layout__00 figure {
		width: 100%;
		margin: 0 0 20px;
	}

	.l-content .section-worry {
		padding: 70px 0 40px;
		margin: 0 0 120px;
	}

	.l-content .section-worry .l-inner {
		width: 100%;
	}

	.l-content .section-worry .l-inner .heading-wrap .heading__en {
		font-size: 70px;
	}

	.l-content .section-worry .l-inner .heading-wrap .heading__ja {
		font-size: 20px;
	}

	.l-content .section-worry .l-inner .worrylist {
		padding: 30px 20px;
	}

	.l-content .section-worry .l-inner .worrylist li:not(:last-child) {
		margin: 0 0 10px;
	}

	.l-content .section-worry .l-inner .worrylist li {
		font-size: 14px;
		padding-left: 30px;
	}

	.l-content .section-worry .l-inner .worrylist li::before {
		width: 15px;
		height: 15px;
		top: 2px;
	}

	.l-content .section-worry .l-inner .worrylist li::after {
		width: 8px;
		height: 14px;
		left: 8px;
		top: -1px;
		border-bottom: 3px solid #e40081;
		border-right: 3px solid #e40081;
		transform: rotate(45deg);
	}

	.l-content .section-worry .m-btn a {
		width: 80%;
		font-size: 16px;
		height: 50px;
		bottom: -75px;
	}

	.l-content .section-worry .m-btn a::after {
		width: 8px;
		height: 8px;
	}
}

/* ==========================================================================
   movie
   ========================================================================== */
.movie::before {
	content: "";
	display: block;
	width: 100%;
	height: 12px;
	max-width: 1700px;
	margin: auto;
	background: url(../images/movie/bg01.png) center / cover;
}

.movie-mv {
	background: url(../images/movie/bg02.png) center / cover;
}

.movie-mv__inner {
	display: flex;
	margin: auto;
	padding: 91px 20px 91px;
	max-width: 1350px;
}

.movie-mv__movie {
	width: 57.1%;
}

.movie-mv__ttl-en {
	font-size: 28px;
	font-weight: bold;
	color: #1ba2f2;
	letter-spacing: 0.125em;
	margin-top: 15px;
}

.movie-mv__ttl-jp {
	font-size: 82px;
	color: #e71481;
	line-height: 1.32;
	letter-spacing: 0;
	margin-bottom: 31px;
}

.movie-mv__txt {
	color: #053c63;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	width: 89%;
	letter-spacing: 0;
	margin-bottom: 26px;
}

.movie-mv__movie iframe {
	width: 100%;
	height: 421px;
}

.movie-mv__more {
	width: 100%;
	max-width: 289px;
	height: 61px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: #1ba2f2;
	position: relative;
	transition: 0.3s;
}

.movie-mv__more:hover {
	opacity: 0.8;
}

.movie-mv__more:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10%;
	transform: rotate(45deg);
}

.movie-mv__right {
	flex: 1;
}

.movie-check {
	max-width: 1180px;
	width: 95%;
	margin: 0 auto;
}

.movie-check__inner {
	border: 2px solid #e8e8e8;
	border-radius: 10px;
	margin: 108px 0 159px;
	position: relative;
}

.movie-check__inner::after {
	content: "";
	background: url(../images/movie/img01.png) center / cover;
	position: absolute;
	right: 6%;
	bottom: 0;
	transform: translateY(22%);
	width: 198px;
	height: 366px;
}

.movie-check__ttl {
	font-size: 27px;
	color: #fff;
	background: #053c63;
	border-radius: 100px;
	max-width: 874px;
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 9px 0;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	letter-spacing: 0.13em;
}

.movie-check__ttl::before {
	content: "CHECK!!";
	background: #fffc38;
	color: #053c63;
	font-size: 15px;
	padding: 2px 2px;
	letter-spacing: 0;
	margin-right: 8px;
}

.movie-check__ttl::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	border: 14px solid transparent;
	border-top: 18px solid #053c63;
	width: 0;
	height: 0;
}

.movie-check__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 90px 35px 26px;
}

.movie-check__list-item {
	margin-bottom: 31px;
	padding-left: 44px;
	position: relative;
}

.movie-check__list-item span {
	font-size: 22px;
	color: #053c63;
	background: linear-gradient(transparent 70%, #ececec 0%);
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.13em;
	padding-bottom: 5px;
}

.movie-check__list-item::before {
	content: "";
	background: url(../images/movie/icon01.svg) center / contain;
	width: 28px;
	height: 28px;
	line-height: 1;
	position: absolute;
	top: 2px;
	left: 0;
}

.movie__ttl {
	background: url(../images/movie/bg01.png) center / cover;
	font-size: 32px;
	color: #fff;
	text-align: center;
	position: relative;
	padding-bottom: 1px;
	margin-bottom: 80px;
	letter-spacing: 0.18em;
}

.movie__ttl::after {
	content: "";
	background: url(../images/movie/img02.svg) center / cover;
	width: 128px;
	height: 147px;
	position: absolute;
	right: 15.2%;
	bottom: 0;
	transform: translateY(100%);
}

.movie__ttl span {
	font-size: 52px;
}

.movie__txt {
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.133em;
	padding: 0 20px;
	font-size: 21px;
}

.movie-effect__list {
	display: flex;
	flex-wrap: wrap;
	max-width: 1350px;
	margin: 67px auto 19.5px;
	max-width: 1180px;
	width: 95%;
}

.movie-effect__list-item {
	width: calc(50% - 33px);
	margin-right: 66px;
	margin-bottom: 55px;
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	padding-left: 158px;
}

.movie-effect__list-item:nth-of-type(2n) {
	margin-right: 0;
}

.movie-effect__list-head {
	position: relative;
}

.movie-effect__list-ttl {
	color: #053c63;
	font-size: 31px;
	border-bottom: 2px solid #053c63;
	padding-left: 20px;
	padding-bottom: 10px;
	line-height: 1.5;
	letter-spacing: 0.12em;
}

.movie-effect__list-ttl span {
	color: #e71481;
}

.movie-effect__list-img {
	position: absolute;
	bottom: 0;
	left: -158px;
	border: 2px solid #053c63;
	border-radius: 100px;
	width: 158px;
	height: 158px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(50%);
}

.movie-effect__list-txt {
	padding-left: 20px;
	padding-top: 13px;
	line-height: 1.7;
	font-family: "游ゴシック体", YuGothic;
	letter-spacing: 0.13em;
}

.movie-reason__list-item {
	display: flex;
	margin: 0 auto 56px;
	max-width: 1180px;
	width: 95%;
}

.movie-reason__list-item:nth-of-type(2n) {
	display: flex;
	flex-direction: row-reverse;
}

.movie-reason__list {
	margin: 80px 0 78px;
}

.movie-reason__list-img {
	width: 45.6%;
}

.movie-reason__list-img img {
	max-width: 100%;
	width: 100%;
}

.movie-reason__list-right {
	flex: 1;
	margin: 0 104px 0 111px;
}

.movie-reason__list-item:nth-of-type(2n) .movie-reason__list-right {
	margin: 0 111px 0 104px;
}

.movie-reason__list-ttl {
	margin: 57px 0 38px;
	position: relative;
}

.movie-reason__list-ttl span {
	font-size: 34px;
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	color: #053c63;
	letter-spacing: 0em;
	background: linear-gradient(transparent 80%, #ececec 0%);
	line-height: 1.4;
	font-weight: 700;
	padding-bottom: 5px;
}

.movie-reason__list-ttl::before {
	content: "";
	width: 107px;
	height: 83px;
	background: url(../images/movie/icon12.png) center / contain no-repeat;
	position: absolute;
	top: 22px;
	left: 0;
	transform: translate(-100%, -100%);
}

.movie-reason__list-item:nth-of-type(2) .movie-reason__list-ttl::before {
	background: url(../images/movie/icon13.png) center / contain no-repeat;
}

.movie-reason__list-item:nth-of-type(3) .movie-reason__list-ttl::before {
	background: url(../images/movie/icon14.png) center / contain no-repeat;
}

.movie-reason__list-link {
	width: 100%;
	max-width: 281px;
	height: 61px;
	background: #16a2f2;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 83px;
	color: #fff;
	font-weight: bold;
	position: relative;
	transition: 0.3s;
}

.movie-reason__list-link--channel {
	max-width: 350px;
}

.movie-reason__list-link:hover {
	opacity: 0.8;
}

.movie-reason__list-link::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 9%;
	transform: rotate(45deg);
}

.movie-reason__list-txt {
	letter-spacing: 0;
}

.movie-result__list {
	display: flex;
	flex-wrap: wrap;
	margin: 80px auto 57.5px;
	max-width: 1180px;
	width: 95%;
}

.movie-result__list-item {
	width: 31%;
	margin-right: 1%;
}

.movie-result__list-item {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 26px;
}

.movie-result__list-item:nth-of-type(3n) {
	margin-right: 0;
}

.movie-result__list-movie img {
	width: 100%;
}

.movie-result__list-movie {
	margin-bottom: 19px;
	position: relative;
	cursor: pointer;
}

.movie-result__list-movie::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}

.movie-result__list-movie::after {
	content: url(../images/movie/icon15.svg);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 0.3s;
}

.movie-result__list-movie:hover::before {
	background: rgba(14, 67, 105, 0.6);
}

.movie-result__list-movie:hover::after {
	opacity: 1;
}

.movie-result__list-type {
	color: #fff;
	background: #053c63;
	font-family: DIN Condensed;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.45;
	padding: 6px 22px 0;
	display: inline-block;
	margin-bottom: 8px;
}

.movie-result__list-name {
	font-size: 20px;
	font-family: DIN Condensed;
	margin-bottom: 13px;
	letter-spacing: 0.12em;
}

.movie-result__list-txt {
	font-family: DIN Condensed;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 0.17em;
}

.movie-flow {
	background: url(../images/movie/bg01.png) center / cover;
	padding: 50px 0 98px;
}

.movie-flow__ttl {
	color: #fff;
	text-align: center;
	font-size: 34px;
	letter-spacing: 0.13em;
	margin-bottom: 10px;
}

.movie-flow___txt {
	color: #fff;
	text-align: center;
	font-size: 19px;
	line-height: 1.46;
	letter-spacing: 0.13em;
	padding: 0 20px;
}

.movie-flow__list {
	display: flex;
	margin: 74px auto 0;
	counter-reset: num;
	max-width: 1180px;
	width: 95%;
}

.movie-flow__list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.movie-flow__list-movie {
	width: 148px;
	height: 148px;
	border: 4px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	margin-bottom: 10px;
	position: relative;
	background: #053c63;
}

.movie-flow__list-movie::before {
	counter-increment: num;
	content: counter(num);
	position: absolute;
	font-size: 61px;
	font-family: DIN Condensed;
	top: -25%;
	left: 9%;
	color: #fff;
	text-shadow: 6px 6px 0px #053c63, -6px -6px 0px #053c63, -6px 6px 0px #053c63, 6px -6px 0px #053c63, 6px 0px 0px #053c63, -6px -0px 0px #053c63, 0px 6px 0px #053c63, 0px -6px 0px #053c63;
}

.movie-flow__list-movie::after {
	content: "";
	display: block;
	width: 23px;
	height: 23px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	border-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -55px;
	transform: rotate(45deg);
}

.movie-flow__list-item:last-of-type .movie-flow__list-movie::after {
	content: none;
}

.movie-flow__list-ttl {
	flex: 1;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 25px;
	margin-bottom: 8px;
	letter-spacing: 0.13em;
}

.movie-flow__list-txt {
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	margin: 0 15px;
	letter-spacing: 0.12em;
}

.movie-price {
	margin-top: 110px;
}

.movie__ttl2 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #053c63;
	font-size: 44px;
	line-height: 1.46;
	letter-spacing: 0.12em;
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
}

.movie-price__inner {
	display: flex;
	margin: 46px auto 0;
	justify-content: space-between;
	max-width: 1180px;
	width: 95%;
}

.movie-price__ttl {
	font-size: 28px;
	color: #053c63;
	letter-spacing: 0;
	margin: 0 0 42px;
	line-height: 1.8;
}

.movie-price__left {
	width: 52%;
	margin: 62px 0 0;
}

.movie-price__img {
	width: 41.6%;
}

.movie-price__img-ttl {
	margin-bottom: 20px;
	margin-left: -70px;
	text-align: right;
}

.movie-price__img-ttl span {
	font-size: 34px;
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	color: #053c63;
	letter-spacing: 0em;
	background: linear-gradient(transparent 80%, #ececec 0%);
	line-height: 1.4;
	font-weight: 700;
	padding-bottom: 5px;
	white-space: nowrap;
}

.movie-price__img img {
	width: 88.5%;
}

.movie-price__txt {
	letter-spacing: 0;
}

.movie-contact {
	max-width: 1180px;
	width: 95%;
	margin: auto;
}

.movie-contact .movie__ttl2 {
	margin-bottom: 33px;
}

.movie-faq {
	margin: 109px auto 110px;
	max-width: 1180px;
	width: 95%;
}

.movie-faq .movie__ttl2 {
	line-height: 2.13;
	letter-spacing: -0.06em;
}

.movie-faq__list {
	margin-top: 33px;
}

.movie-faq__list-item {
	padding-bottom: 29.5px;
	border-bottom: 1px dashed #bdbdbd;
	margin-bottom: 22px;
}

.movie-faq__q {
	font-size: 26px;
	letter-spacing: -0.06em;
	padding-left: 63px;
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	margin-bottom: 12px;
	position: relative;
	color: #053c63;
}

.movie-faq__a {
	font-family: Hiragino Sans, "ヒラギノ角ゴシック";
	font-weight: bold;
	padding: 15px 47px;
	background: #f0f0f0;
	margin-left: 16px;
	letter-spacing: -0.06em;
	position: relative;
	color: #053c63;
}

.movie-faq__q::before,
.movie-faq__a::before {
	font-size: 26px;
	position: absolute;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 47px;
	height: 47px;
	border-radius: 50px;
}

.movie-faq__q::before {
	content: "Q";
	background: #053c63;
	left: 0;
	top: 4px;
}

.movie-faq__a::before {
	content: "A";
	background: #e71481;
	left: -16px;
	top: 4px;
}

.movie-contact {
	margin-bottom: 250px;
}

.movie-result__moal {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 8;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.75);
	transition: 0.5s;
}

.movie-result__moal.close {
	filter: opacity(0);
	visibility: hidden;
}

.movie-result__moal.open {
	filter: opacity(1);
	visibility: visible;
}

@media (max-width: 1250px) {
	.movie-mv__inner {
		display: block;
		padding: 91px 20px 91px;
		max-width: 1310px;
	}

	.movie-mv__right {
		margin-bottom: 60px;
	}

	.movie-mv__movie {
		margin: auto;
	}
}

@media (max-width: 750px) {
	.movie-mv__inner {
		padding: 0 20px;
	}

	.movie-mv__right {
		margin-bottom: 40px;
	}

	.movie-mv__ttl-en {
		font-size: 18px;
	}

	.movie-mv__ttl-jp {
		font-size: 21px;
	}

	.movie-mv__more {
		font-size: 16px;
		height: 50px;
		margin: 0 auto;
	}

	.movie-mv__movie {
		width: 100%;
	}

	.movie-mv__movie iframe {
		width: 100%;
		height: calc((9 / 16) * (100vw - 40px));
	}

	.movie-mv__txt {
		font-size: 15px;
	}

	.movie-check__ttl {
		font-size: 14px;
	}

	.movie-check__ttl::before {
		font-size: 10px;
	}

	.movie-check__list {
		padding: 40px 20px;
	}

	.movie-check__list-item {
		margin-bottom: 15px;
		padding-left: 22px;
	}

	.movie-check__list-item span {
		font-size: 14px;
	}

	.movie-check__list-item::before {
		width: 14px;
		height: 14px;
		top: 10px;
	}

	.movie-check__inner {
		margin: 60px 0;
	}

	.movie-check__inner::after {
		width: 40px;
		height: 74px;
	}

	.movie__ttl {
		font-size: 16px;
	}

	.movie__ttl span {
		font-size: 18px;
	}

	.movie__ttl::after {
		width: 51.2px;
		height: 58.8px;
	}

	.movie__txt {
		font-size: 12px;
	}

	.movie-reason__list {
		margin: 60px 0 60px;
	}

	.movie-effect__list {
		display: block;
		padding: 0 20px;
		width: 100%;
		margin: 40px 0 40px;
	}

	.movie-effect__list-item {
		width: 100%;
		margin-bottom: 20px;
		padding-left: 79px;
	}

	.movie-effect__list-img {
		left: -79px;
		width: 79px;
		height: 79px;
	}

	.movie-effect__list-img img {
		max-width: 50%;
	}

	.movie-effect__list-ttl {
		font-size: 16px;
		padding-left: 20px;
	}

	.movie-effect__list-txt {
		font-size: 12px;
		padding-left: 20px;
	}

	.movie-flow__list {
		flex-wrap: wrap;
	}

	.movie-reason__list-item {
		flex-wrap: wrap;
		padding: 0 20px;
	}

	.movie-reason__list-img {
		width: 100%;
	}

	.movie-reason__list-right,
	.movie-reason__list-item:nth-of-type(2n) .movie-reason__list-right {
		margin: 0;
	}

	.movie-reason__list-ttl {
		margin: 30px 0 15px;
		margin-left: 50px;
	}

	.movie-reason__list-ttl span {
		font-size: 16px;
	}

	.movie-reason__list-ttl::before {
		content: "";
		width: 53.5px;
		height: 41.5px;
	}

	.movie-reason__list-link {
		height: 50px;
		background: #16a2f2;
		margin: 30px auto 0;
	}

	.movie-reason__list-txt {
		font-size: 12px;
	}

	.movie-result__list {
		padding: 0 20px;
		margin: 30px 0 30px;
	}

	.movie-result__list-item {
		width: 100%;
		margin: 0 0 15px;
	}

	.movie-result__list-type {
		font-size: 12px;
	}

	.movie-result__list-name {
		font-size: 16px;
	}

	.movie-result__list-txt {
		font-size: 12px;
	}

	.movie-flow___txt {
		font-size: 12px;
	}

	.movie-flow__list-movie::after {
		content: none;
	}

	.movie-flow__list {
		max-width: 350px;
		margin: 40px auto 0;
	}

	.movie-flow__list-item {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.movie-flow__list-movie {
		flex: 0 0 50px;
		height: 50px;
		border-width: 1px;
		margin-bottom: 0;
	}

	.movie-flow__list-movie::before {
		font-size: 18px;
		text-shadow: 2px 2px 0px #053c63, -2px -2px 0px #053c63, -2px 2px 0px #053c63, 2px -2px 0px #053c63, 2px 0px 0px #053c63, -2px -0px 0px #053c63, 0px 2px 0px #053c63, 0px -2px 0px #053c63;
	}

	.movie-flow__list-movie img {
		max-width: 60%;
	}

	.movie-flow__list-ttl {
		flex: 0 0 calc(100% - 50px);
		line-height: 1.5;
		padding-left: 15px;
	}

	.movie-flow__list-txt {
		flex: 0 0 100%;
		font-size: 12px;
		line-height: 1.8;
		margin: 0 0 30px;
		padding-top: 10px;
	}

	.movie-flow {
		background: url(../images/movie/bg01.png) center / cover;
		padding: 50px 0 60px;
	}

	.movie__ttl2 {
		font-size: 18px;
	}

	.movie__ttl2 img {
		width: 50px;
	}

	.movie-price {
		margin-top: 60px;
	}

	.movie-price__inner {
		padding: 0 20px;
		display: block;
		margin: 30px auto 0;
	}

	.movie-price__left {
		width: 100%;
		margin: 0;
	}

	.movie-price__ttl {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.movie-price__txt {
		font-size: 12px;
	}

	.movie-price__img-ttl {
		margin-left: 0;
		text-align: center;
	}

	.movie-price__img-ttl span {
		font-size: 16px;
	}

	.movie-price__img {
		margin: 30px 0 0;
		width: 100%;
	}

	.movie-faq {
		padding: 0 20px;
		margin: 60px 0 60px;
	}

	.movie-faq__q {
		font-size: 16px;
		padding-left: 46px;
	}

	.movie-faq__a {
		font-size: 12px;
		padding-left: 30px;
	}

	.movie-faq__q::before,
	.movie-faq__a::before {
		font-size: 18px;
		width: 32px;
		height: 32px;
	}

	.movie-result__moal iframe {
		width: 100vw;
		height: 56.25vw;
	}
}

/* ==========================================================================
   TOP セミナー情報吐き出し
   ========================================================================== */
.section-seminar .l-inner {
	max-width: 1310px;
	width: 100%;
}

.section-seminar__ttl {
	background-image: linear-gradient(-45deg, #0c4166 10%, #0f4469 10%, #0f4469 50%, #0c4166 50%, #0c4166 60%, #0f4469 60%, #0f4469);
	background-size: 10px 10px;
	font-size: 3.9rem;
	color: #fff;
	text-align: center;
	font-weight: 900;
	letter-spacing: 0.13em;
	margin-bottom: 85px;
	padding: 21px 0;
}

.section-seminar__list {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 85px;
}

.section-seminar__more {
	margin-bottom: 90px;
}

.section-seminar__more.m-btn a {
	width: 538px;
	height: 36px;
	border-radius: 18px;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.13em;
	margin: 0 auto;
}

.section-seminar-item {
	width: 47%;
	max-width: 605px;
	border-radius: 30px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	padding: 53px 70px;
}

.section-seminar-item + .section-seminar-item {
	margin-left: 80px;
}

.section-seminar-item__img {
	border: solid 1px #707070;
	margin-bottom: 20px;
}

.section-seminar-item__img img {
	max-width: 100%;
	height: auto;
}

.section-seminar-item__ttl {
	border-bottom: solid 1px #053c63;
	color: #053c63;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: calc(34 / 20);
	margin-bottom: 24px;
	padding-bottom: 24px;
}

.section-seminar-item__time {
	color: #202020;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.13em;
	line-height: calc(23 / 13);
	margin-bottom: 28px;
	text-align: center;
}

.section-seminar-item .m-btn a {
	width: 90%;
	max-width: 302px;
	height: 40px;
	background-color: #1ba0f5;
	border-radius: 20px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.13em;
	margin: 0 auto;
}

.section-seminar-item .m-btn a::after {
	right: 8%;
}

.section-seminar-item .m-btn a:hover::after {
	right: 11%;
}

@media screen and (max-width: 750px) {
	.section-seminar__ttl {
		font-size: 2.1rem;
		margin-bottom: 20px;
	}

	.section-seminar__list {
		display: block;
		margin-bottom: 40px;
	}

	.section-seminar__more.m-btn {
		margin-bottom: 50px;
	}

	.section-seminar__more.m-btn a {
		width: 100%;
		font-size: 1.2rem;
	}

	.section-seminar-item {
		width: 100%;
		border-radius: 15px;
		padding: 15px 20px;
	}

	.section-seminar-item + .section-seminar-item {
		margin-left: 0;
		margin-top: 30px;
	}

	.section-seminar-item__img {
		margin-bottom: 15px;
	}

	.section-seminar-item__ttl {
		font-size: 15px;
		margin-bottom: 15px;
		padding-bottom: 15px;
		line-height: 1.5;
	}

	.section-seminar-item__time {
		font-size: 11px;
		margin-bottom: 20px;
	}

	.section-seminar-item .m-btn a {
		font-size: 13px;
	}
}

/* ==========================================================================
  ヘッダー取引社数累計
========================================================================== */
.l-header__copy .l-header__copy-head {
	font-weight: 900;
	font-size: 27px;
	color: #111;
	font-style: italic;
	margin: 2px 0 6px;
	letter-spacing: -0.05em;
}

.l-header__copy .l-header__copy-number {
	font-size: 45px;
	color: #e40081;
	display: inline;
	margin: 2px 0 6px;
	letter-spacing: 0.01em;
}

@media screen and (max-width: 750px) {
	.l-header__copy .l-header__copy-head {
		font-size: 12px;
		margin-left: 20px;
	}

	.l-header__copy .l-header__copy-head .l-header__copy-number {
		font-size: 20px;
	}
}

/* 2024.06.27 */
.page-company .link {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: all ease 0.3s;
	color: #16a2f2;
}

.page-company .link:hover {
	opacity: 0.6;
}

/* 2025.02.19 */
.mv__head.mv-indeed-pb .l-inner {
	max-width: 1320px;
}

.mv__head.mv-indeed-pb h1 {
	font-size: 3.5rem;
}

.mv__head.mv-indeed-pb h1 .big {
	font-size: 5rem;
	margin-right: auto;
}

.mv__head.mv-indeed-pb .l-inner:before {
	left: 0;
	right: 0;
	margin: 0 auto;
}

.h1-flex {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.indeed-pb-gold {
	width: 120px;
	display: flex;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	height: auto;
	flex-shrink: 0;
	margin: 0;
}

.indeed-pb-gold > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section-handling .l-inner {
	width: 100%;
}

@media (max-width: 750px) {
	.mv__head.mv-indeed-pb h1 .big {
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.mv__head.mv-indeed-pb h1 {
		font-size: 1.5rem;
	}

	.h1-flex {
		padding: 0 10px;
		gap: 10px;
	}

	.indeed-pb-gold {
		width: 60px;
	}

	.g-nav > ul:before {
		top: 50%;
	}

	.g-nav > ul:after {
		content: none;
	}
}
