@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

/*============================================================
	基本
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
img {
	display: block;
	width: 100%;
}
a,
button {
	display: block;
	cursor: pointer;

}
input,
select,
textarea,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: 0;
	resize: none;
	font-family: inherit;
	line-height: normal;
}
select::-ms-expand {
	display: none;
}

/*============================================================
	ICON
*/
@font-face {
  font-family: 'icon';
  src: url('../fonts/icon.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow-next:before {
  content: "\e900";
}
.icon-arrow-prev:before {
  content: "\e901";
}

/*============================================================
	HTML
*/
body {
	background-color: #f7f7f7;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
}
main {
	position: relative;
	overflow: hidden;
	background-color: #f7f7f7;
}
h1, h2, h3, h4 ,h5 {
	font-weight: 700;
}
.en {
	font-family: 'Montserrat', sans-serif;
}

/*============================================================
	VISIBLE
*/
@media screen and (min-width:769px) {
	.visible-sp {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.visible-pc {
		display: none;
	}
}

/*============================================================
	INPUT
*/
::-webkit-input-placeholder {
	color: #999;
}
::-moz-placeholder {
	color: #999;
}
:-moz-placeholder {
	color: #999;
}
:-ms-input-placeholder {
	color: #999;
}
::placeholder {
	color: #999;
}
input[type='text'],
input[type='email'],
textarea {
	display: block;
	width: 100%;
	padding: 0.6em 1em;
	border: 2px solid #e7e7e7;
	background-color: #e7e7e7;
	border-radius: 5px;
	font-size: 18px;
	line-height: 1.4;
}
select {
	display: block;
	width: 100%;
	padding: 0.6em 1em;
	padding-right: 50px;
	border-radius: 5px;
	border: 2px solid #e7e7e7;
	background-color: #e7e7e7;
	background-image: url(../img/common/form-select.png);
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: 40px 100px;
	font-size: 18px;
	line-height: 1.4;
}
input[type="radio"],
input[type="checkbox"] {
	display: block;
	margin: 0 5px 0 0;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background-color: #e7e7e7;
	background-size: contain;
}
input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-image: url('../img/common/form-radio.svg');
	background-color: #00418b;
}
input[type='text'].has-alert,
input[type='email'].has-alert,
textarea.has-alert,
select.has-alert {
	border-color: #f00;
}
@media screen and (max-width:768px) {
	input[type='text'],
	input[type='email'],
	textarea,
	select {
		font-size: 16px;
	}
}

/*============================================================
	CONTAINER
*/
.container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	max-width: 1100px;
}
@media screen and (max-width:768px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/*============================================================
	HEADER
*/
.header {
	position: relative;
	z-index: 50;
}
.header .logo {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 280px;
	background-color: #fff;
	border-radius: 0 0 20px 0;
}
.header .logo a {
	display: block;
}
.header__content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100px;
	font-weight: 700;
	font-size: 14px;
}
.header__content ul {
	display: flex;
}
.header__content li {
	margin: 0 50px 0 0;
}
.header__content a {
	padding: 5px;
}
/**/
.megamenu__toggle {
	display: none;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background-color: #00418b;
}
.megamenu__toggle::before,
.megamenu__toggle::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
}
.megamenu__toggle::before {
	background-image: url(../img/common/megamenu-opener.svg);
}
.megamenu__toggle::after {
	background-image: url(../img/common/megamenu-closer.svg);
	opacity: 0;
}
.megamenu__toggle[aria-expanded=true]::before {
	opacity: 0;
}
.megamenu__toggle[aria-expanded=true]::after {
	opacity: 1;
}
/* HOVER */
.device-pc .header__content a {
	transition: all 0.4s ease;
}
.device-pc .header__content a:hover {
	opacity: 0.5;
}
@media screen and (max-width:1100px) {
	.header__content ul {
		display: none;
	}
	.megamenu__toggle {
		display: block;
	}
}
@media screen and (max-width:768px) {
	.header .logo {
		width: 162px;
	}
	.header__content {
		height: 70px;
	}
	.megamenu__toggle {
		width: 50px;
		height: 50px;
	}
}

/*============================================================
	MEGAMENU
*/
.megamenu {
	display: block;
	position: fixed;
	z-index: 99;
	top: 0;
	bottom: 0;
	right: 0;
	width: 0;
}
html.megamenu-active .megamenu {
	width: 100%;
}
.megamenu__content {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 0;
	transition: width 0.6s ease;
}
.megamenu__content[aria-hidden=false] {
	width: 100%;
}
.megamenu__nav {
	width: 100vw;
	height: 100%;
	background-color: rgba(255,255,255,0.9);
	overflow: auto;
}
.megamenu__nav-content {
	padding: 70px 35px 30px 35px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
}
.megamenu__nav-content li {
	display: flex;
	padding: 0.8em 0;
}
.ios .megamenu__nav {
	overscroll-behavior: none;
}
.ios .megamenu__nav-content {
	min-height: calc(100% + 0.5px);
}
.megamenu__nav-content a {
	transition: color 0.3s ease;
}
.megamenu__nav-content a:hover {
	color: #00418b;
}
.megamenu__nav-icon {
	margin-top: 20px;
	width: 50px;
}
.megamenu__nav-icon a {
	display: block;
	transition: opacity 0.3s ease;
}
.megamenu__nav-icon img {
	width: 100%;
}
.megamenu__nav-icon a:hover {
	opacity: 0.7;
}
@media screen and (min-width: 1101px) {
	.megamenu {
		display: none;
	}
}
@media screen and (min-width: 769px) {
	html.megamenu-active .megamenu {
		width: 320px;
	}
	.megamenu__nav-content {
		padding: 110px 40px 0 40px;
		font-weight: 700;
		font-size: 20px;
	}
}

/*============================================================
	FOTTER
*/
.footer {
	position: relative;
	padding: 40px 50px 50px 50px;
	background-color: #00418b;
	color: #fff;
}
.footer .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .logo {
	width: 100%;
	max-width: 280px;
}
.footer nav {
	display: table;
	margin: 20px 0 0 0;
}
.footer nav ul {
	display: table-row;
}
.footer nav li {
	display: table-cell;
	padding: 0 25px 0 0;
}
.footer nav a {
	display: inline-block;
	font-weight: 700;
}
.footer nav a i {
	position: relative;
	top: 0.08em;
	display: inline-block;
	margin: 0 0.3em 0 0;
}
.footer .code {
	text-align: right;
	font-size: 12px;
	line-height: 2;
}
.footer small {
	display: block;
	text-align: right;
	font-weight: 500;
	font-size: 12px;
}
.footer small span {
	display: block;
}
/* HOVER */
.footer nav a {
	transition: all 0.4s ease;
}
.footer nav a:hover {
	opacity: 0.5;
}
@media screen and (max-width:980px) {
	.footer .row {
		display: block;
	}
	.footer nav {
		display: inline-block;
		margin-bottom: 30px;
	}
	.footer nav ul {
		display: inline-block;
	}
	.footer nav li {
		display: inline-block;
		padding: 0 25px 0 0;
	}
}
@media screen and (max-width:768px) {
	.footer {
		padding: 25px 10px 30px 10px;
	}
	.footer .logo {
		float: none;
		width: 74%;
		margin: 0 auto;
		padding: 0 0 10px 0;
	}
	.footer nav {
		display: none;
	}
	.footer .code {
		float: none;
		display: table;
		margin: 0 auto;
		padding: 10px 0 0 0;
		text-align: left;
		font-size: 12px;
	}
	.footer small {
		margin: 20px 0 0 0;
		text-align: center;
		font-size: 10px;
	}
}

/*============================================================
	[COMPONENT] BREADCRUMBS
*/
.c-breadcrumbs {
	position: absolute;
	z-index: 10;
	top: 35px;
	right: 50px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	padding-left: 280px;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.2;
}
.c-breadcrumbs.black {
	color: #000;
}
.c-breadcrumbs li {
	position: relative;
	margin: 0 0 0.5em 1em;
	padding-right: 1.5em;
}
.c-breadcrumbs li:last-child {
	padding-right: 0;
}
.c-breadcrumbs li::after {
	content: '>';
	position: absolute;
	top: 0;
	right: 0;
}
.c-breadcrumbs li:last-child::after {
	content: none;
}
/* HOVER */
.device-pc .c-breadcrumbs a {
	transition: all 0.4s ease;
}
.device-pc .c-breadcrumbs a:hover {
	opacity: 0.5;
}
@media screen and (max-width:768px) {
	.c-breadcrumbs {
		top: 15px;
		right: 10px;
		padding-left: 170px;
	}
}

/*============================================================
	[COMPONENT] BUTTON
*/
.c-button,
.c-button-white,
.c-button-back {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 20px;
	min-height: 60px;
	max-width: 270px;
	width: 100%;
	background-color: #00418b;
	border-radius: 5px;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
}
.c-button i,
.c-button-white i,
.c-button-back i {
	display: block;
	position: absolute;
	top: 50%;
	right: 18px;
	margin-top: -9px;
	width: 16px;
	height: 16px;
	font-size: 18px;
}
.c-button-white {
	background-color: #fff;
	color: #00418b;
}
.c-button-back {
	background-color: transparent;
	color: #666;
}
/* HOVER */
.device-pc .c-button,
.device-pc .c-button-white,
.device-pc .c-button-back {
	transition: all 0.3s ease;
}
.device-pc .c-button:hover {
	background-color: #fff;
	color: #00418b;
	box-shadow: 0 0 30px rgba(0,0,0,0.16);
}
.device-pc .c-button-white:hover {
	background-color: #00418b;
	color: #fff;
	box-shadow: 0 0 30px rgba(12,34,59,1);
}
.device-pc .c-button-back:hover {
	opacity: 0.5;
}
@media screen and (max-width:768px) {
	.c-button,
	.c-button-white,
	.c-button-back {
		max-width: 100%;
	}
}

/*============================================================
	[COMPONENT] MAIN
*/
.c-main {
	position: relative;
}
.c-main .kv {
	overflow: hidden;
	height: 500px;
	border-radius: 20px 5px 20px 5px;
	background-size: cover;
	background-position: center;
}
.c-main .heading {
	position: absolute;
	left: 0;
	top: 235px;
}
.c-main h1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 0 15px 0;
}
.c-main h1 span {
	display: block;
	position: relative;
	margin: 20px 0 0 0;
	padding: 0 50px;
	background-color: #fff;
	font-size: 50px;
	white-space: nowrap;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.loaded .c-main h1 span {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.c-main h2 {
	display: flex;
	padding: 0 0 0 50px;
	font-weight: 700;
	font-size: 20px;
	opacity: 0;
	transform: translateX(40px);
	transition: all 1s ease;
}
.loaded .c-main h2 {
	opacity: 1;
	transform: translateX(0);
}
.c-main h2 span {
	display: block;
	border-bottom: 5px solid #000;
}
@media screen and (max-width:768px) {
	.c-main .kv {
		height: 400px;
	}
	.c-main .heading {
		top: auto;
		bottom: 30px;
	}
	.c-main h1 > span {
		display: block;
		padding: 0 20px;
		font-size: 30px;
	}
	.c-main h2 {
		padding: 0 0 0 20px;
	}
}

/*============================================================
	[COMPONENT] HEADING
*/
.c-heading {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 30px;
	line-height: 1.5;
}
.c-heading span {
	display: inline-block;
}

/*============================================================
	[COMPONENT] FORM
*/
.c-form {
	margin: 50px 0 80px 0;
}
.c-form .frame {
	padding: 40px 50px 60px 50px;
	border-radius: 20px;
	background-color: #fff;
}
.c-form .check-list {
	display: flex;
	flex-wrap: wrap;
	padding: 14px 0 0 0;
	font-size: 18px;
	line-height: 1.5;
}
.c-form .check-list label {
	display: flex;
	align-items: center;
	margin-right: 1em;
	padding-bottom: 14px;
}
.c-form .check-list label:last-child {
	margin: 0;
}
.c-form .btn-wrap {
	margin: 30px 0 0 0;
}
.c-form .btn-wrap > div {
	display: flex;
	justify-content: center;
	margin: 20px 0 0 0;
}
.c-form .btn-wrap > div:first-child {
	margin: 0;
}
.c-form .error-massage {
	margin: 30px 0;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	color: #f00;
}
.c-form .error-massage:first-child {
	margin-top: 0;
}
.c-form .alert {
	display: flex;
	margin: 5px 0 0 0;
	font-weight: 700;
	color: #f00;
}
.c-form .agreement {
	margin: 20px 0;
	text-align: center;
	font-size: 18px;
}
/**/
.c-form .confirm {
	margin: 0 auto 40px auto;
	max-width: 680px;
}
.c-form .confirm table {
	width: 100%;
}
.c-form .confirm th {
	padding: 26px 0 0 0;
	vertical-align: top;
	text-align: left;
	width: 1em;
	white-space: nowrap;
	font-size: 24px;
	line-height: 1.2;
}
.c-form .confirm th p {
	font-weight: normal;
	font-size: 14px;
	line-height: 1.5;
}
.c-form .confirm td {
	padding: 22px 0 0 30px;
	font-size: 18px;
}
.c-form .confirm .email {
	word-break: break-all;
}
@media screen and (max-width:768px) {
	.c-form {
		margin: 30px 0 40px 0;
	}
	.c-form .frame {
		padding: 30px 20px 40px 20px;
	}
	.c-form .check-list {
		display: block;
		padding: 10px 0 0 0;
		font-size: 16px;
	}
	.c-form .check-list label {
		margin-right: 0;
		padding-bottom: 12px;
	}
	.c-form .agreement {
		margin: 30px 0 20px 0;
		font-size: 16px;
		line-height: 1.5;
	}
	/**/
	.c-form .confirm {
		margin: 0 auto;
		max-width: initial;
	}
	.c-form .confirm table,
	.c-form .confirm tbody,
	.c-form .confirm tr,
	.c-form .confirm th,
	.c-form .confirm td {
		display: block;
	}
	.c-form .confirm th {
		padding: 0 0 5px 0;
		width: auto;
		white-space: normal;
		font-size: 18px;
	}
	.c-form .confirm td {
		padding: 0 0 20px 0;
		font-size: 16px;
	}
	.c-form .confirm tr:last-child td {
		padding: 0;
	}
}

/*============================================================
	[COMPONENT] FORM HEADING
*/
.c-form-heading {
	margin: 0 0 20px 0;
}
.c-form-heading h2 {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 30px;
	line-height: 1.5;
}
.c-form-heading h2:last-child {
	margin: 0;
}
.c-form-heading .lead {
	text-align: center;
	font-size: 16px;
}
@media screen and (max-width:768px) {
	.c-form-heading h2 {
		margin: 0 0 10px 0;
		text-align: center;
		font-size: 26px;
		line-height: 1.5;
	}
	.c-form-heading .lead {
		line-height: 1.5;
	}
}

/*============================================================
	[COMPONENT] BEGINNING
*/
.c-beginning {
	margin: 40px 0;
}
.c-beginning .head {
	position: relative;
}
.c-beginning .head .image {
	position: absolute;
}
.c-beginning .head h2 {
	position: relative;
	font-size: 40px;
	line-height: 1.5;
}
.c-beginning .lead {
	position: relative;
	margin: 15px 0 0 0;
}
@media screen and (max-width:1100px) {
	.c-beginning .head h2 {
		font-size: 3.636vw;
	}
}
@media screen and (max-width:768px) {
	.c-beginning {
		margin: 20px 0 30px 0;
	}
	.c-beginning .head h2 {
		font-size: 24px;
		font-size: 6.4vw;
	}
	.c-beginning .lead {
		margin: 15px 0 0 0;
		font-size: 4vw;
	}
}

/*============================================================
	[COMPONENT] UL NORMAL
*/
.c-ul-normal li {
	position: relative;
	padding-left: 1em;
}
.c-ul-normal li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

/*============================================================
	[HOME] MAIN
*/
.p-home .main {
	position: relative;
}
.p-home .main .kv {
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.8s linear 0.1s;
}
.p-home.loaded .main .kv {
	opacity: 1;
}
.p-home .main .wrap {
	display: flex;
	width: calc(8 * 82vw);
	animation: 120s linear slide infinite;
}
.p-home .main .block {
	padding: 0 15px;
	width: 12.5%;
}
.p-home .main .block span {
	display: block;
	overflow: hidden;
	height: 660px;
	border-radius: 20px 5px 20px 5px;
}
.p-home .main .block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-home .main h1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	left: 0;
	bottom: 40px;
}
.p-home .main h1 span {
	display: block;
	margin: 20px 0 0 0;
	padding: 0 50px;
	background-color: #fff;
	font-size: 50px;
	white-space: nowrap;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.p-home .main h1 span:first-child {
	transition: clip-path 0.6s cubic-bezier(0.32, 0, 0.67, 0) 0.6s;
}
.p-home .main h1 span:last-child {
	padding-right: 30px;
	transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1.2s;
}
.p-home.loaded .main h1 span {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width:768px) {
	.p-home .main .wrap {
		width: 800vw;
	}
	.p-home .main .block {
		padding: 0 5px;
	}
	.p-home .main .block span {
		height: 460px;
	}
	.p-home .main .block img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.p-home .main h1 {
		bottom: 45px;
	}
	.p-home .main h1 > span {
		margin: 15px 0 0 0;
		padding: 0 30px;
		font-size: 33px;
	}
	.p-home .main h1 > span:last-child {
		padding-right: 15px;
	}
}
@keyframes slide {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/*============================================================
	[HOME] PARTNER
*/
.p-home .partner {
	margin: 40px 0 80px 0;
}
.p-home .partner .frame {
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	padding: 0 0 0 42%;
	max-width: 1000px;
	background-color: #00418b;
	border-radius: 20px;
	color: #fff;
}
.p-home .partner .kv {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 42%;
	background-position: 50% 50%;
	background-size: cover;
}
.p-home .partner .detail {
	flex: 1;
	padding: 30px 40px;
}
.p-home .partner h2 {
	margin: 0 0 5px 0;
	font-size: 30px;
	line-height: 1.5;
}
.p-home .partner .foot {
	margin: 10px 0 0 0;
}
@media screen and (max-width:768px) {
	.p-home .partner {
		margin: 30px 0;
	}
	.p-home .partner .frame {
		padding: 0 0 0 0;
		border-radius: 10px;
	}
	.p-home .partner .kv {
		position: static;
		width: 100%;
		height: 37vw;
	}
	.p-home .partner .detail {
		padding: 20px 20px;
	}
	.p-home .partner h2 {
		margin: 0 0 5px 0;
		font-size: 20px;
	}
	.p-home .partner .foot {
		margin: 10px 0 0 0;
	}
}

/*============================================================
	[HOME] SECTION
*/
.p-home .section {
	position: relative;
	margin: 0 auto;
	max-width: 1100px;
}
.p-home .section::before {
	content: '';
	display: block;
	overflow: hidden;
	position: absolute;
	top: 150px;
	bottom: -30px;
	left: 50px;
	right: 50px;
	border-radius: 20px 5px 20px 5px;
	background-color: #fff;
}
.p-home .section .kv {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 660px;
}
.p-home .section .kv span {
	display: block;
	height: 100%;
	border-radius: 20px 5px 20px 5px;
	background-size: cover;
}
.p-home .section .detail {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0 50px;
	min-height: 660px;
}
.p-home .section .en {
	display: flex;
	padding: 20px 0 0 0;
	font-weight: 700;
	font-size: 20px;
}
.p-home .section .en span {
	display: block;
	border-bottom: 5px solid #000;
}
.p-home .section h2 {
	margin: 20px 0;
	font-size: 40px;
	line-height: 1.5;
}
.p-home .section .lead {
	width: 270px;
	font-size: 16px;
}
.p-home .section .lead p {
	margin: 0 0 1em 0;
}
.p-home .section .lead p:last-child {
	margin: 0;
}
.p-home .section .foot {
	margin: 40px 0 0 0;
	width: 270px;
}
@media screen and (max-width:768px) {
	.p-home .section::before {
		top: 150px;
		bottom: -20px;
	}
	.p-home .section .kv {
		top: 110px;
		height: 460px;
	}
	.p-home .section .detail {
		padding: 0 0;
		min-height: initial;
	}
	.p-home .section .en {
		padding: 0;
	}
	.p-home .section h2 {
		margin: 20px 0 380px 0;
		font-size: 30px;
	}
	.p-home .section .lead {
		width: 100%;
		text-align: left;
		font-size: 14px;
	}
	.p-home .section .foot {
		margin: 20px 0 0 0;
		width: 100%;
	}
}

/*============================================================
	[HOME] ABOUT
*/
.p-home .about {
	margin-bottom: 150px;
}
.p-home .about .kv {
	left: 50%;
}
.p-home .about .kv span {
	margin-left: -130px;
	background-position: 50% 50%;
}
.p-home .about .detail {
	align-items: flex-start;
}
@media screen and (max-width:1100px) {
	.p-home .about .kv {
		left: 420px;
	}
	.p-home .about .kv span {
		margin-left: 0;
	}
}
@media screen and (max-width:768px) {
	.p-home .about {
		margin-bottom: 50px;
	}
	.p-home .about::before {
		left: 30px;
		right: 10px;
	}
	.p-home .about .kv {
		left: 10px;
	}
	.p-home .about .kv span {
		margin-left: 0;
		background-position: 50% 50%;
	}
}

/*============================================================
	[HOME] PRODUCT
*/
.p-home .product {
	margin-bottom: 100px;
	text-align: right;
}
.p-home .product .kv {
	right: 50%;
}
.p-home .product .kv span {
	margin-right: -130px;
	background-position: 20% 20%;
}
.p-home .product .detail {
	align-items: flex-end;
}
@media screen and (max-width:1100px) {
	.p-home .product .kv {
		right: 420px;
	}
	.p-home .product .kv span {
		margin-right: 0;
	}
}
@media screen and (max-width:768px) {
	.p-home .product {
		margin-bottom: 50px;
	}
	.p-home .product::before {
		left: 10px;
		right: 30px;
	}
	.p-home .product h2 {
		margin-right: -0.5em;
	}
	.p-home .product .kv {
		right: 10px;
	}
	.p-home .product .kv span {
		margin-left: 0;
		background-position: 50% 50%;
	}
}

/*============================================================
	[HOME] INFORMATION
*/
.p-home .information {
	display: flex;
	margin: 80px auto;
	padding: 0 35px;
	max-width: 1100px;
}
.p-home .section-information {
	display: flex;
	flex-direction: column;
	padding: 0 15px;
	width: 50%;
}
.p-home .section-information h2 {
	margin: 0 0 30px 0;
	text-align: center;
	font-size: 30px;
	line-height: 1.5;
}
.p-home .section-information .frame {
	flex: 1;
	padding: 50px;
	border-radius: 20px;
	background-color: #fff;
}
.p-home .section-information li {
	margin: 0 0 20px 0;
}
.p-home .section-information .thumb {
	overflow: hidden;
	margin: 0 0 10px 0;
	border-radius: 5px;
}
.p-home .section-information .thumb span {
	display: block;
	padding-top: 35.79%;
	width: 100%;
	height: 0;
	background-position: center;
	background-color: #f7f7f7;
	background-size: cover;
}
.p-home .section-information .detail {
	min-height: 70px;
	line-height: 1.5;
}
.p-home .section-information .detail h3 {
	font-size: 16px;
}
.p-home .section-information .foot {
	display: flex;
	justify-content: center;
}
.p-home .section-information iframe {
	width: 100%;
}
/* HOVER */
.device-pc.p-home .section-information .thumb span {
	transition: all 0.4s ease;
}
.device-pc.p-home .section-information .detail {
	transition: all 0.4s ease;
}
.device-pc.p-home .section-information a:hover .detail {
	opacity: 0.3;
}
.device-pc.p-home .section-information a:hover .thumb span {
	transform: scale(1.2);
}
@media screen and (max-width:768px) {
	.p-home .information {
		display: block;
		margin: 80px auto 50px auto;
		padding: 0 10px;
	}
	.p-home .section-information {
		display: block;
		margin: 0 0 50px 0;
		padding: 0;
		width: 100%;
	}
	.p-home .section-information h2 {
		margin: 0 0 20px 0;
		font-size: 24px;
	}
	.p-home .section-information .frame {
		padding: 30px 20px;
		border-radius: 10px;
	}
	.p-home .section-information .detail {
		min-height: initial;
	}
	.p-home .section-information .foot {
		display: block;
	}
}

/*============================================================
	[ABOUT] [COMPONENT] MAIN
*/
.p-about .c-main .kv {
	background-image: url(../img/about/kv-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-about .c-main .kv {
		background-image: url(../img/about/kv-sp.jpg);
	}
}

/*============================================================
	[ABOUT] [COMPONENT] BEGINNING
*/
.p-about .c-beginning .container {
	padding-right: 0;
}
.p-about .c-beginning .head .image {
	right: 0;
	top: -90px;
	width: 300px;
}
.p-about .c-beginning .lead {
	padding-right: 300px;
}
@media screen and (max-width:1100px) {
	.p-about .c-beginning .head .image {
		top: -8.181vw;
		width: 27.272vw;
	}
	.p-about .c-beginning .lead {
		padding-right: 27.272vw;
	}
}
@media screen and (max-width:768px) {
	.p-about .c-beginning .container {
		padding-right: 10px;
	}
	.p-about .c-beginning .head .image {
		right: -16vw;
		top: -26.66vw;
		width: 58.66vw;
	}
	.p-about .c-beginning .lead {
		padding-right: 0;
	}
}

/*============================================================
	[ABOUT] MENU
*/
.p-about .menu {
	margin: 80px 0;
}
.p-about .menu h2 {
	margin: 0 0 50px 0;
	text-align: center;
	font-size: 30px;
	line-height: 1.3;
}
.p-about .menu h2 span {
	display: inline-block;
}
.p-about .menu ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px;
}
.p-about .menu li {
	padding: 20px;
	flex-basis: 50%;
}
.p-about .menu .frame {
	padding: 25px 30px 45px 30px;
	border-radius: 20px;
	background-color: #fff;
}
.p-about .menu .kv {
	margin: 0 auto;
	width: 270px;
}
.p-about .menu h3 {
	font-size: 24px;
	text-align: center;
}
.p-about .menu .foot {
	display: flex;
	justify-content: center;
	margin: 20px 0 0 0;
}
@media screen and (max-width:768px) {
	.p-about .menu {
		margin: 50px 0;
	}
	.p-about .menu h2 {
		margin: 0 0 30px 0;
		font-size: 18px;
		line-height: 2;
	}
	.p-about .menu ul {
		display: block;
		margin: 0;
	}
	.p-about .menu li {
		margin: 0 0 20px 0;
		padding: 0;
	}
	.p-about .menu .frame {
		padding: 20px 20px 30px 20px;
	}
	.p-about .menu .kv {
		width: 270px;
	}
	.p-about .menu h3 {
		font-size: 20px;
	}
	.p-about .menu .foot {
		display: block;
	}
}

/*============================================================
	[ABOUT] OVERVIEW
*/
.p-about .overview {
	margin: 80px 0;
}
.p-about .overview h2 {
	margin: 0 0 10px 0;
	text-align: center;
	font-size: 30px;
}
.p-about .overview table {
	width: 100%;
	border-bottom: 1px solid #ccc;
}
.p-about .overview th,
.p-about .overview td {
	padding: 25px 0;
	vertical-align: top;
	border-top: 1px solid #ccc;
}
.p-about .overview th {
	text-align: left;
	font-size: 16px;
	line-height: 1.8;
	white-space: nowrap;
}
.p-about .overview td {
	text-align: right;
}
.p-about .overview tr:first-child th,
.p-about .overview tr:first-child td {
	border-top: 0;
}
.p-about .overview .gmap {
	border-top: 0;
}
.p-about .overview .map {
	overflow: hidden;
	position: relative;
	min-height: 340px;
}
.p-about .overview iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width:768px) {
	.p-about .overview {
		margin: 50px 0;
	}
	.p-about .overview h2 {
		margin: 0;
		font-size: 24px;
	}
	.p-about .overview th,
	.p-about .overview td {
		padding: 20px 0;
	}
	.p-about .overview .gmap {
		padding-top: 0;
	}
}

/*============================================================
	[PRODUCTS] MAIN
*/
.p-products .c-main .kv {
	background-position: 0 40%;
	background-image: url(../img/products/kv00-pc.jpg);
}
.p-products .c-main .heading {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
}
.p-products .c-main h1 span {
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.p-products.loaded .c-main h1 span {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-products .c-main h2 {
	padding: 0 50px 0 0;
	transform: translateX(-40px);
}
.p-products.loaded .c-main h2 {
	transform: translateX(0);
}
@media screen and (max-width:768px) {
	.p-products .c-main .kv {
		background-position: 50% 25%;
		background-image: url(../img/products/kv00-sp.jpg);
	}
}

/*============================================================
	[PRODUCTS] MENU
*/
.p-products .menu {
	margin: 50px 0 80px 0;
}
.p-products .menu ul {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}
.p-products .menu li {
	padding: 10px;
	flex-basis: 50%;
}
.p-products .menu .frame {
	overflow: hidden;
	height: 100%;
	border-radius: 20px;
	background-color: #fff;
}
.p-products .menu .kv {
	position: relative;
}
.p-products .menu .kv img:last-child {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -140px 0 0 -140px;
	width: 280px;
}
.p-products .menu .detail {
	position: relative;
	padding: 40px;
}
.p-products .menu .detail img {
	position: absolute;
	left: 30px;
	bottom: 100%;
	margin-bottom: -40px;
	width: 150px;
}
.p-products .menu .detail h2 {
	margin: 0 0 10px 0;
	font-size: 28px;
	line-height: 1.5;
}
.p-products .menu .detail .foot {
	margin: 15px 0 0 0;
}
@media screen and (max-width:768px) {
	.p-products .menu {
		margin: 40px 0 40px 0;
	}
	.p-products .menu ul {
		display: block;
		margin: 0;
	}
	.p-products .menu li {
		margin: 0 0 20px 0;
		padding: 0;
	}
	.p-products .menu .kv img:last-child {
		margin: -100px 0 0 -100px;
		width: 200px;
	}
	.p-products .menu .detail {
		margin: 40px 0 0 0;
		padding: 20px 20px 30px 20px;
	}
	.p-products .menu .detail img {
		left: 50%;
		margin-bottom: -20px;
		margin-left: -70px;
		width: 140px;
	}
	.p-products .menu .detail h2 {
		text-align: center;
	}
	.p-products .menu .detail p {
		font-size: 15px;
	}
	.p-products .menu .detail .foot {
		margin: 15px 0 0 0;
	}
}

/*============================================================
	[PRODUCTS] [COMPONENT] MAIN
*/
.c-products-main {
	position: relative;
	color: #fff;
}
.c-products-main .kv {
	overflow: hidden;
	height: 840px;
	border-radius: 20px 5px 20px 5px;
	background-size: cover;
	background-position: center;
}
.c-products-main .heading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 0 0 50px 0;
	text-align: center;
}
.c-products-main .heading img {
	width: 280px;
}
.c-products-main h1 {
	font-size: 48px;
	line-height: 1.4;
}
.c-products-main h1 span {
	display: inline-block;
}
@media screen and (max-width:768px) {
	.c-products-main .kv {
		height: 400px;
	}
	.c-products-main .heading {
		padding: 30px 0 0 0;
	}
	.c-products-main .heading img {
		width: 168px;
	}
	.c-products-main h1 {
		font-size: 30px;
	}
}

/*============================================================
	[PRODUCTS] [COMPONENT] CODE
*/
.c-products-code {

}
.c-products-code ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.c-products-code li {
	flex-basis: 50%;
	padding: 0 10px;
}
.c-products-code dl {
	height: 100%;
	border-radius: 20px;
	background-color: #fff;
	padding: 25px 30px 30px 30px;
	font-weight: 700;
}
.c-products-code dt {
	font-size: 20px;
	line-height: 1.5;
}
.c-products-code dd {
	font-size: 16px;
	line-height: 1.5;
}
@media screen and (max-width:768px) {
	.c-products-code ul {
		display: block;
		margin: 0;
	}
	.c-products-code li {
		margin: 0 0 10px 0;
		padding: 0;
	}
	.c-products-code dl {
		padding: 25px 20px;
	}
}

/*============================================================
	[PRODUCTS] [COMPONENT] CONTACT
*/
.c-products-contact {
	margin: 50px 0;
	display: flex;
	justify-content: center;
}
@media screen and (max-width:768px) {
	.c-products-contact {
		margin: 40px 0;
	}
}

/*============================================================
	[PRODUCTS] [COMPONENT] NAV
*/
.c-products-nav {
	margin: 50px 0;
}
.c-products-nav ul {
	display: flex;
	margin: 0 -10px;
}
.c-products-nav li {
	padding: 0 10px;
	flex-basis: 33.333%;
}
.c-products-nav a {
	display: block;
	overflow: hidden;
	position: relative;
	height: 100%;
	border-radius: 20px;
	background-color: #fff;
	line-height: 1.3;
}
.c-products-nav dl {
	display: flex;
	align-items: center;
}
.c-products-nav dt {
	position: relative;
	overflow: hidden;
	width: 100px;
	height: 100px;
}
.c-products-nav dt img:last-child {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translate(-50%,-50%);
}
.c-products-nav dd {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	font-weight: 700;
	font-size: 16px;
}
.c-products-nav dd i {
	font-size: 18px;
}
/**/
.p-products01 .c-products-nav .nav01,
.p-products02 .c-products-nav .nav02,
.p-products03 .c-products-nav .nav03,
.p-products04 .c-products-nav .nav04 {
	display: none;
}
/* HOVER */
.device-pc .c-products-nav a,
.device-pc .c-products-nav dt img {
	transition: all 0.4s ease;
}
.device-pc .c-products-nav a:hover {
	box-shadow: 0 0 30px rgba(0,0,0,0.16);
	color: #00418b;
}
.device-pc .c-products-nav a:hover dt img:first-child {
	transform: scale(1.2);
}
.device-pc .c-products-nav a:hover dt img:last-child {
	opacity: 0.6;
}
@media screen and (max-width:980px) {
	.c-products-nav br {
		display: none;
	}
	.c-products-nav dl {
		flex-direction: column;
		height: 100%;
	}
	.c-products-nav dt {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 80px;
	}
	.c-products-nav dt img:last-child {
		width: 66px;
		transform: translate(-50%,-50%);
	}
	.c-products-nav dd {
		padding: 15px 10px 52px 10px;
		text-align: center;
	}
	.c-products-nav dd i {
		position: absolute;
		left: 0;
		bottom: 22px;
		width: 100%;
		text-align: center;
	}
}
@media screen and (max-width:768px) {
	.c-products-nav {
		margin: 40px 0;
	}
	.c-products-nav ul {
		margin: 0 -5px;
	}
	.c-products-nav li {
		padding: 0 5px;
	}
	.c-products-nav dd {
		padding: 10px 10px 36px 10px;
		font-size: 12px;
	}
	.c-products-nav dd i {
		bottom: 12px;
	}
}

/*============================================================
	[PRODUCTS01] [COMPONENT] MAIN
*/
.p-products01 .c-products-main .kv {
	background-image: url(../img/products/kv01-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-products01 .c-products-main .kv {
		background-image: url(../img/products/kv01-sp.jpg);
	}
}

/*============================================================
	[PRODUCTS01] [COMPONENT] BEGINNING
*/
.p-products01 .c-beginning .container {
	padding-right: 0;
}
.p-products01 .c-beginning .head .image {
	right: 80px;
	top: -90px;
	width: 180px;
}
.p-products01 .c-beginning .lead {
	padding-right: 300px;
}
@media screen and (max-width:1100px) {
	.p-products01 .c-beginning .head .image {
		right: 7.27vw;
		top: -8.18vw;
		width: 16.36vw;
	}
	.p-products01 .c-beginning .lead {
		padding-right: 27.27vw;
	}
}
@media screen and (max-width:768px) {
	.p-products01 .c-beginning .container {
		padding-right: 10px;
	}
	.p-products01 .c-beginning .head .image {
		right: -5.33vw;
		top: -26.6vw;
		width: 32vw;
	}
	.p-products01 .c-beginning .lead {
		padding-right: 0;
	}
}

/*============================================================
	[PRODUCTS01] CONSTRUCTION
*/
.p-products01 .construction {
	margin: 80px 0 0 0;
}
.p-products01 .construction .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.p-products01 .construction .item {
	flex-basis: 33.333%;
	margin: 0 0 30px 0;
	padding: 0 10px;
}
.p-products01 .construction .frame {
	overflow: hidden;
	height: 100%;
	border-radius: 20px;
	background-color: #fff;
}
.p-products01 .construction .detail {
	padding: 20px 25px 30px 25px;
}
.p-products01 .construction .detail h3 {
	margin: 0 0 15px 0;
	text-align: center;
	font-size: 24px;
	line-height: 1.5;
}
.p-products01 .construction .item-code {
	flex-basis: 50%;
	margin: 0;
}
.p-products01 .construction .item-code .detail {
	padding: 25px 30px 30px 30px;
	font-weight: 700;
}
.p-products01 .construction .item-code .detail dt {
	font-size: 20px;
	line-height: 1.5;
}
.p-products01 .construction .item-code .detail dd {
	font-size: 16px;
	line-height: 1.5;
}
@media screen and (max-width:768px) {
	.p-products01 .construction {
		margin: 40px 0;
	}
	.p-products01 .construction h2 {
		margin: 0 0 20px 0;
	}
	.p-products01 .construction .list {
		display: block;
		margin: 0;
	}
	.p-products01 .construction .item {
		padding: 0;
	}
	.p-products01 .construction .detail {
		padding: 20px 20px 30px 20px;
	}
	.p-products01 .construction .detail h3 {
		margin: 0 0 10px 0;
	}
}

/*============================================================
	[PRODUCTS02] [COMPONENT] MAIN
*/
.p-products02 .c-products-main .kv {
	background-image: url(../img/products/kv02-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-products02 .c-products-main .kv {
		background-image: url(../img/products/kv02-sp.jpg);
	}
}

/*============================================================
	[PRODUCTS02] [COMPONENT] BEGINNING
*/
.p-products02 .c-beginning .container {
	padding-right: 0;
}
.p-products02 .c-beginning .head .image {
	right: -40px;
	top: -90px;
	width: 340px;
}
.p-products02 .c-beginning .lead {
	padding-right: 300px;
}
@media screen and (max-width:1100px) {
	.p-products02 .c-beginning .head .image {
		right: -3.63vw;
		top: -8.18vw;
		width: 30.9vw;
	}
	.p-products02 .c-beginning .lead {
		padding-right: 27.27vw;
	}
}
@media screen and (max-width:768px) {
	.p-products02 .c-beginning .container {
		padding-right: 10px;
	}
	.p-products02 .c-beginning .head .image {
		right: -8vw;
		top: -18.66vw;
		width: 45.33vw;
	}
	.p-products02 .c-beginning .lead {
		padding-right: 0;
	}
}

/*============================================================
	[PRODUCTS02] FACTORY
*/
.p-products02 .factory {
	margin: 80px 0 50px 0;
}
.p-products02 .factory .container {
	padding-left: 0;
}
.p-products02 .factory .image {
	display: flex;
	align-items: center;
}
.p-products02 .factory .image span {
	overflow: hidden;
	display: block;
	border-radius: 20px 5px 20px 5px;
}
.p-products02 .factory .image .large {
	flex-basis: 67.62%;
}
.p-products02 .factory .image ul {
	flex: 1;
	padding-left: 20px;
}
.p-products02 .factory .image li {
	padding-top: 20px;
}
.p-products02 .factory .image li:first-child {
	padding-top: 0;
}
.p-products02 .factory .image li span {
	border-radius: 20px;
}
@media screen and (max-width:768px) {
	.p-products02 .factory {
		margin: 40px 0;
	}
	.p-products02 .factory .container {
		padding: 0;
	}
	.p-products02 .factory .image {
		display: block;
	}
	.p-products02 .factory .image .large {
		padding-left: 10px;
	}
	.p-products02 .factory .image ul {
		display: flex;
		flex-wrap: wrap;
		padding: 0 5px;
	}
	.p-products02 .factory .image li {
		padding: 0 5px;
		flex-basis: 50%;
	}
	.p-products02 .factory .image li:first-child {
		padding-top: 20px;
		padding-bottom: 20px;
		flex-basis: 100%;
	}
	.p-products02 .factory .image li span {
		border-radius: 20px;
	}
}

/*============================================================
	[PRODUCTS02] FACILITY
*/
.p-products02 .facility {
	margin: 60px 0;
}
.p-products02 .facility .frame {
	padding: 25px 30px;
	border-radius: 20px;
	background-color: #fff;
}
.p-products02 .facility h2 {
	font-size: 20px;
}
.p-products02 .facility .list {
	display: flex;
}
.p-products02 .facility .list ul {
	margin-right: 12%;
}
.p-products02 .facility .list ul:last-child {
	margin-right: 0;
}
@media screen and (max-width:768px) {
	.p-products02 .facility {
		margin: 40px 0;
	}
	.p-products02 .facility .frame {
		padding: 25px 20px;
	}
	.p-products02 .facility .list {
		display: block;
	}
	.p-products02 .facility .list ul {
		margin-right: 0;
	}
}

/*============================================================
	[PRODUCTS03] [COMPONENT] MAIN
*/
.p-products03 .c-products-main .kv {
	background-image: url(../img/products/kv03-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-products03 .c-products-main .kv {
		background-image: url(../img/products/kv03-sp.jpg);
	}
}

/*============================================================
	[PRODUCTS03] [COMPONENT] BEGINNING
*/
.p-products03 .c-beginning .container {
	padding-right: 0;
}
.p-products03 .c-beginning .head .image {
	right: -80px;
	top: -140px;
	width: 320px;
}
.p-products03 .c-beginning .lead {
	padding-right: 240px;
}
@media screen and (max-width:1100px) {
	.p-products03 .c-beginning .head .image {
		right: -7.27vw;
		top: -12.72vw;
		width: 29vw;
	}
	.p-products03 .c-beginning .lead {
		padding-right: 21.81vw;
	}
}
@media screen and (max-width:768px) {
	.p-products03 .c-beginning .container {
		padding-right: 10px;
	}
	.p-products03 .c-beginning .head .image {
		right: -22.4vw;
		top: -24vw;
		width: 56vw;
	}
	.p-products03 .c-beginning .lead {
		padding-right: 0;
	}
}

/*============================================================
	[PRODUCTS03] RENTAL
*/
.p-products03 .rental {
	
}
.p-products03 .rental .container {
	padding-left: 0;
}
.p-products03 .rental .image {
	display: flex;
	align-items: center;
}
.p-products03 .rental .image span {
	overflow: hidden;
	display: block;
	border-radius: 20px 5px 20px 5px;
}
.p-products03 .rental .image .large {
	flex-basis: 67.62%;
}
.p-products03 .rental .image ul {
	flex: 1;
	padding-left: 20px;
}
.p-products03 .rental .image li {
	padding-top: 20px;
}
.p-products03 .rental .image li:first-child {
	padding-top: 0;
}
.p-products03 .rental .image li span {
	border-radius: 20px;
}
@media screen and (max-width:768px) {
	.p-products03 .rental {

	}
	.p-products03 .rental .container {
		padding: 0;
	}
	.p-products03 .rental .image {
		display: block;
	}
	.p-products03 .rental .image .large {
		padding-left: 10px;
		padding-bottom: 10px;
	}
	.p-products03 .rental02 .image .large {
		padding-left: 0;
		padding-right: 10px;
	}
	.p-products03 .rental .image ul {
		display: flex;
		flex-wrap: wrap;
		padding: 0 5px;
	}
	.p-products03 .rental .image li {
		padding: 0 5px;
		flex-basis: 50%;
	}
	.p-products03 .rental .image li span {
		border-radius: 20px;
	}
}

/*============================================================
	[PRODUCTS03] RENTAL
*/
.p-products03 .information {
	margin: 30px 0 50px 0;
}
.p-products03 .information .list {
	display: flex;
	margin: 0 -10px;
}
.p-products03 .information .list li {
	padding: 0 10px;
	width: 100%;
}
.p-products03 .information .list h2 {
	font-size: 16px;
	line-height: 1.5;
}
@media screen and (max-width:768px) {
	.p-products03 .information {
		margin: 20px 0 30px 0;
	}
	.p-products03 .information .list {
		display: block;
		margin: 0;
		line-height: 1.5;
	}
	.p-products03 .information .list li {
		display: flex;
		justify-content: space-between;
		margin: 0 0 20px 0;
		padding: 0;
	}
	.p-products03 .information .list li:last-child {
		margin: 0;
	}
	.p-products03 .information .list li h2 {
		padding-right: 1em;
		flex-shrink: 0;
	}
	.p-products03 .information .list li div {
		text-align: right;
	}
}

/*============================================================
	[PRODUCTS03] ACCESS
*/
.p-products03 .access {
	margin: 60px 0;
}
.p-products03 .access .map {
	position: relative;
	height: 360px;
}
.p-products03 .access .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.p-products03 .access .text {
	margin: 15px 0 0 0;
}
@media screen and (max-width:768px) {
	.p-products03 .access {
		margin: 40px 0;
	}
}

/*============================================================
	[PRODUCTS03] VACANCY
*/
.c-vacancy {
	margin: 60px 0 100px 0;
}
.p-estate-detail + .c-vacancy {
	margin: 80px 0;
}
.c-vacancy h2 {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 24px;
	line-height: 1.5;
}
.c-vacancy table {
	width: 100%;
	white-space: nowrap;
}
.c-vacancy th {
	padding-bottom: 10px;
	border-bottom: 2px solid #000;
	text-align: center;
	font-size: 16px;
}
.c-vacancy td {
	padding: 20px 10px;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
.c-vacancy td:first-child {
	padding-left: 0;
	padding-right: 0;
	width: 80px;
}
.c-vacancy td:last-child {
	padding-left: 20px;
	padding-right: 0;
	width: 1em;
}
.c-vacancy td:last-child .c-button {
	min-width: 160px;
}
.c-vacancy th:nth-child(2),
.c-vacancy td:nth-child(2) {
	padding-left: 2em;
	padding-right: 1em;
}
.c-vacancy .image {
	position: relative;
	width: 80px;
	height: 50px;
}
.c-vacancy .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-vacancy .number {
	font-weight: 700;
	font-size: 24px;
}
.c-vacancy .c-button {
	min-width: 200px;
	min-height: 50px;
}
.c-vacancy .empty {
	padding: 40px 0 0 0;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
}
@media screen and (min-width:769px) {
	.c-vacancy td:nth-child(5) {
		white-space: normal;
	}
}
@media screen and (max-width:768px) {
	.c-vacancy {
		margin: 40px 0;
	}
	.p-estate-detail + .c-vacancy {
		margin: 40px 0;
	}
	.c-vacancy .scroll {
		overflow-x: scroll;
		padding: 0 0 10px 0;
	}
	.c-vacancy .c-button {
		min-width: 120px;
	}
	.c-vacancy .empty {
		padding: 30px 0 0 0;
		font-size: 16px;
	}
}

/*============================================================
	[PRODUCTS04] [COMPONENT] MAIN
*/
.p-products04 .c-products-main .kv {
	background-image: url(../img/products/kv04-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-products04 .c-products-main .kv {
		background-image: url(../img/products/kv04-sp.jpg);
	}
}

/*============================================================
	[PRODUCTS04] [COMPONENT] BEGINNING
*/
.p-products04 .c-beginning .container {
	padding-right: 0;
}
.p-products04 .c-beginning .head .image {
	right: -20px;
	top: -180px;
	width: 250px;
}
.p-products04 .c-beginning .lead {
	padding-right: 300px;
}
@media screen and (max-width:1100px) {
	.p-products04 .c-beginning .head .image {
		right: -1.81vw;
		top: -16.36vw;
		width: 22.72vw;
	}
	.p-products04 .c-beginning .lead {
		padding-right: 27.27vw;
	}
}
@media screen and (max-width:768px) {
	.p-products04 .c-beginning .container {
		padding-right: 10px;
	}
	.p-products04 .c-beginning .head .image {
		right: -16vw;
		top: -29.33vw;
		width: 45.33vw;
	}
	.p-products04 .c-beginning .lead {
		padding-right: 0;
	}
}

/*============================================================
	[PRODUCTS04] JOB
*/
.p-products04 .job {

}
.p-products04 .job .list {
	display: flex;
	margin: 0 -10px;
}
.p-products04 .job .list li {
	padding: 0 10px;
	flex-basis: 33.333%;
}
.p-products04 .job .frame {
	overflow: hidden;
	border-radius: 20px;
	background-color: #fff;
}
.p-products04 .job .detail {
	padding: 20px;
}
.p-products04 .job .detail h3 {
	text-align: center;
	font-size: 24px;
	line-height: 1.5;
}
@media screen and (max-width:768px) {
	.p-products04 .job {

	}
	.p-products04 .job .list {
		display: block;
		margin: 0;
	}
	.p-products04 .job .list li {
		margin: 0 0 20px 0;
		padding: 0;
	}
	.p-products04 .job .list li:last-child {
		margin: 0;
	}
}

/*============================================================
	[PRODUCTS04] MARGIN
*/
.p-products04 .margin {
	margin: 80px 0;
}
.p-products04 .margin h2 {
	margin: 0 0 10px 0;
}
.p-products04 .margin dl {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
}
.p-products04 .margin dt {
	padding: 25px 0;
	font-weight: 700;
	font-size: 16px;
}
.p-products04 .margin dd {
	padding: 25px 0;
	text-align: right;
}
@media screen and (max-width:768px) {
	.p-products04 .margin {
		margin: 40px 0;
	}
	.p-products04 .margin dl {
		display: block;
		padding: 15px 0;
	}
	.p-products04 .margin dt {
		padding: 0;
	}
	.p-products04 .margin dd {
		padding: 0;
		text-align: left;
	}
}

/*============================================================
	[CONTACT] MAIN
*/
.p-contact .c-main .kv {
	background-image: url(../img/contact/kv-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-contact .c-main .kv {
		background-image: url(../img/contact/kv-sp.jpg);
	}
}

/*============================================================
	[CONTACT] HEADING
*/
.p-contact .form .heading {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px 0 30px 0;
	font-size: 30px;
	line-height: 1.5;
	text-align: center;
}
.p-contact .form .heading span {
	display: block;
	padding: 0 0.2em;
}
@media screen and (max-width:768px) {
	.p-contact .form .heading {
		display: block;
		padding: 0 0 30px 0;
		font-size: 20px;
	}
}

/*============================================================
	[CONTACT] INPUT
*/
.p-contact .input-contact {
	margin: -12px auto 0 auto;
	max-width: 680px;
}
.p-contact .input-contact table {
	width: 100%;
}
.p-contact .input-contact th {
	padding: 22px 0 0 0;
	vertical-align: top;
	font-size: 24px;
	text-align: left;
	width: 1em;
	white-space: nowrap;
}
.p-contact .input-contact .title {
	display: flex;
	align-items: center;
	line-height: 1.5;
}
.p-contact .input-contact .must {
	display: block;
	margin-left: 15px;
	padding: 4px 8px;
	background-color: #00418b;
	font-size: 14px;
	color: #fff;
}
.p-contact .input-contact td {
	padding: 12px 0;
	padding-left: 30px;
	vertical-align: top;
}
.p-contact .input-contact .privacy {
	overflow-y: scroll;
	margin: 30px 0 0 0;
	padding: 30px 40px;
	height: 340px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.p-contact .input-contact .privacy h3 {
	text-align: center;
	font-size: 24px;
}
@media screen and (max-width:900px) {
	.p-contact .input-contact th {
		padding: 25px 0 0 0;
		font-size: 18px;
	}
	.p-contact .input-contact .must {
		font-size: 12px;
	}
}
@media screen and (max-width:768px) {
	.p-contact .input-contact {
		max-width: initial;
	}
	.p-contact .input-contact table,
	.p-contact .input-contact tbody,
	.p-contact .input-contact tr,
	.p-contact .input-contact th,
	.p-contact .input-contact td {
		display: block;
	}
	.p-contact .input-contact th {
		padding: 0 0 5px 0;
		width: auto;
	}
	.p-contact .input-contact .must {
		margin-left: 10px;
	}
	.p-contact .input-contact td {
		padding: 0 0 20px 0;
	}
	.p-contact .input-contact .privacy {
		margin: 10px 0 0 0;
		padding: 20px 15px;
		height: 300px;
	}
	.p-contact .input-contact .privacy h3 {
		font-size: 20px;
	}
	.p-contact .input-contact .agreement {
		margin: 20px 0;
		text-align: left;
		font-size: 16px;
	}
}

/*============================================================
	[PARTNER] MAIN
*/
.p-partner .c-main .kv {
	background-image: url(../img/partner/kv-pc.jpg);
}
@media screen and (max-width:768px) {
	.p-partner .c-main .kv {
		background-image: url(../img/partner/kv-sp.jpg);
	}
}

/*============================================================
	[PARTNER] ENTRY HEAD
*/
.p-partner .entry-head {
	margin: 0 auto;
	max-width: 680px;
}
.p-partner .entry-head::after {
	content: '';
	display: block;
	clear: both;
}
.p-partner .entry-head .image {
	float: left;
	padding: 0 30px 0 0;
	width: 40%;
}
.p-partner .entry-head .image span {
	display: block;
	margin: 0 0 0 -18px;
}
.p-partner .entry-head h3 {
	float: left;
	padding: 35px 0 0 0;
	width: 60%;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.6;
}
.p-partner .entry-head .text {
	float: left;
	margin: 15px 0 0 0;
	width: 60%;
	font-size: 14px;
	line-height: 1.7;
}
@media screen and (max-width:768px) {
	.p-partner .entry-head {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		max-width: 100%;
	}
	.p-partner .entry-head .image {
		float: none;
		padding: 0 10px 0 0;
		width: 40%;
	}
	.p-partner .entry-head .image span {
		margin: 0;
	}
	.p-partner .entry-head h3 {
		float: none;
		padding: 0;
		width: 60%;
		text-align: center;
		font-size: 5.3vw;
	}
	.p-partner .entry-head .text {
		float: none;
		margin: 20px 0 0 0;
		width: 100%;
		font-size: 15px;
		line-height: 1.8;
	}
}

/*============================================================
	[PARTNER] INPUT ENTRY
*/
.p-partner .input-entry {
	margin: 30px auto 40px auto;
	max-width: 680px;
}
.p-partner .input-entry h4 {
	font-size: 24px;
	line-height: 1.3;
	white-space: nowrap;
}
.p-partner .input-entry p {
	font-size: 14px;
	line-height: 1.5;
}
.p-partner .input-entry .block {
	margin: 0 0 20px 0;
}
.p-partner .input-entry .row {
	display: flex;
}
.p-partner .input-entry .row-top {
	align-items: flex-start;
}
.p-partner .input-entry .last {
	margin-top: 30px;
}
.p-partner .input-entry .row2 {
	display: flex;
}
.p-partner .input-entry .lcol {
	flex: 1;
}
.p-partner .input-entry .rcol {
	flex-basis: 390px;
}
.p-partner .input-entry .row2 .input {
	padding-left: 20px;
}
.p-partner .input-entry .lcol .row2 .input {
	padding-right: 20px;
}
.p-partner .input-entry h4.single {
	margin: 12px 0 0 0;
}
.p-partner .input-entry .list {
	display: flex;
	font-size: 18px;
	line-height: 1.5;
}
.p-partner .input-entry .list li {
	width: 100%;
}
.p-partner .input-entry .list li label {
	display: flex;
	align-items: center;
}
.p-partner .input-entry .inline {
	display: flex;
}
.p-partner .input-entry .alert .lcol {
	flex: 1;
}
.p-partner .input-entry .alert .rcol {
	flex-basis: 390px;
}
@media screen and (max-width:768px) {
	.p-partner .input-entry p {
		margin-top: 5px;
	}
	.p-partner .input-entry .block {
		margin: 0 0 20px 0;
	}
	.p-partner .input-entry .row {
		display: block;
	}
	.p-partner .input-entry .last {
		margin-top: 20px;
	}
	.p-partner .input-entry .row2 {
		display: block;
	}
	.p-partner .input-entry .rcol {
		flex-basis: 390px;
	}
	.p-partner .input-entry .row2 .input {
		padding-left: 0;
	}
	.p-partner .input-entry .lcol .row2 .input {
		padding-right: 0;
	}
	.p-partner .input-entry .rcol .row2 {
		margin-top: 20px;
	}
	.p-partner .input-entry h4 {
		margin: 0 0 10px 0 !important;
		font-size: 18px;
	}
	.p-partner .input-entry h4.single {
		margin: 0;
	}
	.p-partner .input-entry .list {
		padding: 5px 0 0 0;
		font-size: 15px;
	}
	.p-partner .input-entry .inline {
		display: block;
	}
	.p-partner .input-entry .alert {
		display: block;
	}
	.p-partner .input-entry .alert .lcol {
		display: none;
	}
}

/*============================================================
	[PARTNER] PRIVACY
*/
.p-partner .privacy {
	overflow-y: scroll;
	margin: 30px 0 0 0;
	padding: 30px 40px;
	height: 340px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.p-partner .privacy h3 {
	text-align: center;
	font-size: 24px;
}
@media screen and (max-width:768px) {
	.p-partner .privacy {
		margin: 10px 0 0 0;
		padding: 20px 15px;
		height: 300px;
	}
	.p-partner .privacy h3 {
		font-size: 20px;
	}
	.p-partner .agreement {
		margin: 20px 0;
		text-align: left;
		font-size: 16px;
	}
}

/*============================================================
	[PARTNER] ENTRY HEAD
*/
.p-partner .c-form .contact h3 {
	margin-bottom: 40px;
	text-align: center;
	font-size: 30px;
	line-height: 1.7;
}
.p-partner .c-form .contact h3 span {
	display: inline-block;
}
.p-partner .c-form .contact .row {
	display: flex;
	align-items: center;
	margin: 0 auto;
	max-width: 700px;
}
.p-partner .c-form .contact .image {
	flex-basis: 230px;
}
.p-partner .c-form .contact .detail {
	flex: 1;
	padding-left: 30px;
}
.p-partner .c-form .contact .detail h4 {
	font-size: 24px;
	line-height: 1.5;
}
.p-partner .c-form .contact .detail p {
	margin: 10px 0 20px 0;
}
@media screen and (max-width:768px) {
	.p-partner .c-form .contact h3 {
		margin-bottom: 10px;
		font-size: 20px;
	}
	.p-partner .c-form .contact .row {
		display: block;
		max-width: 700px;
	}
	.p-partner .c-form .contact .image {
		margin: 0 auto;
		width: 160px;
	}
	.p-partner .c-form .contact .detail {
		margin-top: 20px;
		padding-left: 0;
	}
	.p-partner .c-form .contact .detail h4 {
		font-size: 18px;
	}
	.p-partner .c-form .contact .detail p {
		margin: 10px 0 20px 0;
	}
}

/*============================================================
	[ESTATE] DETAIL
*/
.p-estate-headline {
	padding-top: 160px;
	text-align: center;
	font-size: 40px;
}
.p-estate-gallery {
	margin: 30px 0;
}
.p-estate-gallery .container {
	display: flex;
	padding-left: 0;
}
.p-estate-gallery .photo {
	position: relative;
	flex-basis: 67.62%;
	border-radius: 20px 5px 20px 5px;
	overflow: hidden;
}
.p-estate-gallery .photo .base {
	position: relative;
}
.p-estate-gallery .photo .front {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.p-estate-gallery .photo span {
	display: block;
	position: relative;
	padding-top: 61.97%;
	height: 0;
}
.p-estate-gallery .photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-estate-gallery .thumb {
	flex: 1;
}
.p-estate-gallery .thumb ul {
	display: flex;
	flex-wrap: wrap;
}
.p-estate-gallery .thumb li {
	flex-basis: 50%;
	padding: 10px 0 10px 20px;
}
.p-estate-gallery .thumb a {
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
.p-estate-gallery .thumb a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 0 solid #00418b;
	border-radius: 20px;
}
.p-estate-gallery .thumb a.current {
	pointer-events: none;
}
.p-estate-gallery .thumb a.current::after {
	border-width: 5px;
}
.p-estate-gallery .thumb span {
	display: block;
	position: relative;
	padding-top: 60%;
	height: 0;
}
.p-estate-gallery .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-estate-detail {
}
.p-estate-detail .price {
	display: flex;
	margin: 25px 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
}
.p-estate-detail .price > div {
	margin-right: 1.5em;
}
.p-estate-detail .price > div:last-child {
	margin-right: 0;
}
.p-estate-detail .price span {
	padding: 0 0.1em;
	font-size: 40px;
	color: #c00;
}
.p-estate-detail .price i {
	margin-left: 1em;
}
.p-estate-detail .lead {
	margin: 25px 0;
}
.p-estate-detail .information {
	display: flex;
	margin: 0 -20px;
}
.p-estate-detail .information .col {
	flex-basis: 50%;
	padding: 0 20px;
}
.p-estate-detail .information dl {
	display: table;
	width: 100%;
	border-top: 1px solid #ccc;
	line-height: 1.5;
}
.p-estate-detail .information dl:first-child {
	border: 0;
}
.p-estate-detail .information dt {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 20px 10px 0;
	height: 80px;
	font-weight: 700;
	font-size: 16px;
}
.p-estate-detail .information dd {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 0;
	height: 80px;
	text-align: right;
}
.p-estate-detail .contact {
	display: flex;
	justify-content: center;
	margin: 60px 0 40px 0;
}
.p-estate-detail .contact > div {
	padding: 0 20px;
}
.p-estate-detail .contact a {
	max-width: 100%;
	width: 280px;
}
.p-estate-detail .contact .button-call {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 10px;
	min-height: 60px;
	width: 100%;
	background-color: #fff;
	border: 2px solid #00418b;
	border-radius: 5px;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	color: #00418b;
}
.p-estate-detail__back {
	display: flex;
	justify-content: center;
	margin: 0 0 100px 0;
}
.p-estate-detail__back a {
	max-width: 100%;
	width: 280px;
}
@media screen and (max-width:768px) {
	.p-estate-headline {
		padding-top: 100px;
		font-size: 28px;
	}
	.p-estate-gallery {
		margin: 30px 0;
	}
	.p-estate-gallery .container {
		display: block;
	}
	.p-estate-gallery .thumb li {
		flex-basis: 33.333%;
		padding: 10px 0 0 10px;
	}
	.p-estate-gallery .thumb a.current::after {
		border-width: 3px;
	}
	.p-estate-detail .price {
		flex-wrap: wrap;
		margin: 20px 0;
		font-size: 3.7vw;
	}
	.p-estate-detail .price > div {
		margin-right: 0.6em;
	}
	.p-estate-detail .price span {
		padding: 0 0.1em;
		font-size: 8vw;
	}
	.p-estate-detail .price .rent-fee {
		font-size: 4.8vw;
	}
	.p-estate-detail .price i {
		display: block;
		margin-left: 0;
	}
	.p-estate-detail .lead {
		margin: 20px 0;
		line-height: 1.7;
	}
	.p-estate-detail .information {
		display: block;
		margin: 0;
	}
	.p-estate-detail .information .col {
		padding: 0;
		border-bottom: 1px solid #ccc;
	}
	.p-estate-detail .information .col:last-child {
		border-bottom: 0;
	}
	.p-estate-detail .contact {
		display: block;
		margin: 30px 0 0 0;
	}
	.p-estate-detail .contact > div {
		padding: 0 0 30px 0;
	}
	.p-estate-detail .contact > div:last-child {
		padding: 0;
	}
	.p-estate-detail .contact a {
		width: 100%;
	}
	.p-estate-detail .contact .button-call {
		padding: 0 20px;
	}
	.p-estate-detail__back {
		display: block;
		margin: 30px 0 60px 0;
	}
	.p-estate-detail__back a {
		width: 100%;
	}
}

/*============================================================
	[RECRUIT] MAIN
*/
.p-recruit .c-main .kv {
	background-position: 0 40%;
	background-image: url(../img/recruit/kv-pc.jpg);
}
.p-recruit .c-main .heading {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
}
.p-recruit .c-main h1 span {
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.p-recruit.loaded .c-main h1 span {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-recruit .c-main h2 {
	padding: 0 50px 0 0;
	transform: translateX(-40px);
}
.p-recruit.loaded .c-main h2 {
	transform: translateX(0);
}
@media screen and (max-width:768px) {
	.p-recruit .c-main .kv {
		background-position: 50% 25%;
		background-image: url(../img/recruit/kv-sp.jpg);
	}
	.p-recruit .c-main .heading {
		align-items: flex-start;
	}
	.p-recruit .c-main h1 span {
		clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	.p-recruit.loaded .c-main h1 span {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	.p-recruit .c-main h2 {
		padding: 0 0 0 20px;
		transform: translateX(40px);
	}
}

/*============================================================
	[RECRUIT] [COMPONENT] BEGINNING
*/
.p-recruit .c-beginning {
	margin-bottom: 40px;
}
.p-recruit .c-beginning .container {
	padding-right: 0;
}
.p-recruit .c-beginning .head .image {
	right: -160px;
	top: -110px;
	width: 590px;
}
.p-recruit .c-beginning .lead {
	padding-right: 400px;
}
@media screen and (max-width:1100px) {
	.p-recruit .c-beginning .head .image {
		right: -14.545vw;
		top: -10vw;
		width: 53.636vw;
	}
	.p-recruit .c-beginning .lead {
		padding-right: 36.36vw;
	}
}
@media screen and (max-width:768px) {
	.p-recruit .c-beginning {
		margin-bottom: 20px;
	}
	.p-recruit .c-beginning .container {
		padding-right: 10px;
	}
	.p-recruit .c-beginning .head .image {
		right: -11vw;
		top: -17vw;
		width: 52vw;
	}
	.p-recruit .c-beginning .lead {
		padding-right: 0;
	}
}

/*============================================================
	[RECRUIT] ABOUT
*/
.p-recruit .about {
	margin: 0 0 50px 0;
}
.p-recruit .about .dorm {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	padding: 0 0 0 30px;
}
.p-recruit .about .dorm .image {
	flex-basis: 230px;
}
.p-recruit .about .dorm .image span:last-child {
	display: none;
}
.p-recruit .about .dorm .detail {
	flex: 1;
	padding-left: 50px;
}
.p-recruit .about .dorm .detail h3 {
	margin-bottom: 15px;
	font-size: 24px;
}
.p-recruit .about ul {
	padding-bottom: 20px;
}
.p-recruit .about li {
	margin-bottom: 20px;
}
.p-recruit .about .frame {
	position: relative;
	padding: 25px 40px 25px 110px;
	background-color: #fff;
	border-radius: 20px;
}
.p-recruit .about .frame h3 {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.5;
}
.p-recruit .about .frame .image {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 90px;
}
.p-recruit .about .foot {
	display: flex;
	justify-content: center;
}
@media screen and (max-width:768px) {
	.p-recruit .about .dorm {
		display: block;
		margin-bottom: 40px;
		padding: 0;
	}
	.p-recruit .about .dorm .image {
		display: flex;
		align-items: center;
		margin-bottom: 10px;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-recruit .about .dorm .image span {
		display: block;
	}
	.p-recruit .about .dorm .image span:first-child {
		flex: 1;
	}
	.p-recruit .about .dorm .image span:last-child {
		display: block;
		flex-basis: 60%;
		padding-left: 20px;
	}
	.p-recruit .about .dorm .detail {
		padding-left: 0;
	}
	.p-recruit .about .dorm .detail h3 {
		display: none;
	}
	.p-recruit .about .frame {
		padding: 15px 20px; 25px 20px;
	}
	.p-recruit .about .frame > div::after {
		content: '';
		display: block;
		clear: both;
	}
	.p-recruit .about .frame .image {
		position: static;
		transform: translateY(0);
		width: 90px;
		float: left;
	}
	.p-recruit .about .frame h3 {
		padding-top: 10px;
	}
	.p-recruit .about .frame p {
		padding-bottom: 10px;
	}
}

/*============================================================
	[RECRUIT] SKILL
*/
.p-recruit .skill {

}
.p-recruit .skill .head {
	text-align: center;
}
.p-recruit .skill .head h2 {
	font-size: 30px;
}
.p-recruit .skill .frame {
	display: flex;
	align-items: center;
	position: relative;
	padding: 25px 40px 25px 190px;
	height: 100%;
	min-height: 160px;
	background-color: #fff;
	border-radius: 20px;
}
.p-recruit .skill .frame-first {
	margin: 30px 0 0 0;
	padding: 25px 40px 25px 230px;
}
.p-recruit .skill .frame h3 {
	margin-bottom: 5px;
	font-size: 24px;
	line-height: 1.5;
}
.p-recruit .skill .frame .image {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 160px;
}
.p-recruit .skill .frame-first .image {
	left: 40px;
}
.p-recruit .skill .frame-type01 .image {
	left: -20px;
	width: 200px;
}
.p-recruit .skill .change {
	text-align: center;
}
.p-recruit .skill .change h4 {
	font-size: 18px;
}
.p-recruit .skill .change .note {
	font-size: 12px;
}
.p-recruit .skill .change .arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0 50px 0;
}
.p-recruit .skill .change .arrow::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -30px;
	width: 60px;
	height: 120px;
	background-image: url(../img/recruit/change-arrow.svg);
	background-size: contain;
}
.p-recruit .skill .change .arrow h3 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 320px;
	height: 50px;
	background-color: #00418b;
	border-radius: 999px;
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
}
.p-recruit .skill .change .margin {
	margin-top: 10px;
	margin-bottom: 10px;
}
.p-recruit .skill .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	padding: 20px 0 0 0;
}
.p-recruit .skill .list li {
	flex-basis: 50%;
	margin-bottom: 20px;
	padding: 0 10px;
}
.p-recruit .skill .foot {
	margin: 30px 0 0 0;
	text-align: center;
}
.p-recruit .skill .foot h4 {
	font-size: 24px;
}
@media screen and (max-width:1100px) {
	.p-recruit .skill .frame {
		padding: 25px 40px 25px 230px;
	}
	.p-recruit .skill .frame .image {
		left: 40px;
	}
	.p-recruit .skill .frame-type01 .image {
		left: 0;
	}
	.p-recruit .skill .list {
		display: block;
		margin: 0;
	}
	.p-recruit .skill .list li {
		padding: 0;
	}
}
@media screen and (max-width:768px) {
	.p-recruit .skill .head h2 {
		font-size: 20px;
	}
	.p-recruit .skill .frame {
		padding: 20px 20px 20px 140px;
	}
	.p-recruit .skill .frame .image {
		left: 15px;
		width: 120px;
	}
	.p-recruit .skill .frame-type01 .image {
		margin-left: -20px;
		width: 140px;
	}
	.p-recruit .skill .frame-first {
		display: block;
		padding: 20px 20px 20px 15px;
	}
	.p-recruit .skill .frame-first .image {
		position: static;
		float: left;
		margin: 0 10px 0 0;
		transform: translateY(0);
	}
	.p-recruit .skill .frame h3 {
		font-size: 18px;
	}
	.p-recruit .skill .frame p {
		line-height: 1.8;
	}
	.p-recruit .skill .foot h4 {
		font-size: 18px;
	}
}

/*============================================================
	[RECRUIT] MENU
*/
.p-recruit .menu {
	margin: 50px 0 80px 0;
}
.p-recruit .menu .head {
	margin-bottom: 40px;
	text-align: center;
}
.p-recruit .menu .head h2 {
	font-size: 30px;
}
.p-recruit .menu .list {
	display: flex;
	margin: 0 -10px;
}
.p-recruit .menu li {
	flex-basis: 50%;
	padding: 0 10px;
}
.p-recruit .menu .frame {
	display: flex;
	overflow: hidden;
	background-color: #fff;
	border-radius: 20px;
}
.p-recruit .menu .frame .thumb {
	flex-basis: 50%;
}
.p-recruit .menu .frame .thumb span {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
}
.p-recruit .menu .menu01 .thumb span {
	background-image: url(../img/recruit/menu01-pc.jpg);
}
.p-recruit .menu .menu02 .thumb span {
	background-image: url(../img/recruit/menu02-pc.jpg);
}
.p-recruit .menu .frame .detail {
	flex: 1;
	padding: 25px;
}
.p-recruit .menu .frame .detail h3 {
	font-size: 20px;
}
.p-recruit .menu .frame .detail .button {
	margin-top: 20px;
}
.p-recruit .menu .foot {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
@media screen and (max-width:1100px) {
	.p-recruit .menu .list {
		display: block;
		margin: 0;
	}
	.p-recruit .menu li {
		margin: 0 0 20px 0;
		padding: 0;
	}
	.p-recruit .menu .menu01 .thumb span {
		background-image: url(../img/recruit/menu01-sp.jpg);
	}
	.p-recruit .menu .menu02 .thumb span {
		background-image: url(../img/recruit/menu02-sp.jpg);
	}
	.p-recruit .menu .frame .detail br {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.p-recruit .menu {
		margin: 40px 0 40px 0;
	}
	.p-recruit .menu .head {
		margin-bottom: 20px;
	}
	.p-recruit .menu .head h2 {
		font-size: 20px;
	}
	.p-recruit .menu .frame {
		display: block;
	}
	.p-recruit .menu .frame .thumb span {
		height: 200px;
	}
	.p-recruit .menu .frame .detail {
		padding: 15px 25px 25px 25px;
	}
	.p-recruit .menu .foot {
		margin-top: 30px;
	}
}