/* ================================================================================ */
/*		スタイル初期化																*/
/* ================================================================================ */
@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

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;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

body {
	-webkit-text-size-adjust: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

input,
button,
select {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

textarea {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	resize: vertical;
}

button {
	border: 0;
}

a img,
img {
	border: 0;
}

img {
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
	height: auto;
	border: 0;
}

svg {
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
	height: auto;
}

svg:not([fill]) {
	fill: currentColor;
}

svg:not(:root) {
	overflow: hidden;
}

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

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

a {
	text-decoration: none;
	outline: none;
	overflow: hidden;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: none;
}

address {
	font-style: normal;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
fieldset,
legend,
p,
blockquote,
th,
td,
img {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
	border: 0;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-text-size-adjust: 100%;
}

hr {
	margin: 8px 0;
	padding: 0;
	clear: both;
	height: 0;
	border: none;
}

* html hr {
	border-top: 1px solid;
}

*:first-child+html hr {
	/* for IE7 */
	border-top: 1px solid;
}

a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	cursor: text;
}

/* ================================================================================ */
/*		clearfix																	*/
/* ================================================================================ */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-mac */

/* ================================================================================ */
/*		文字色・背景色指定																*/
/* ================================================================================ */
body {
	font-size: 16px;
	line-height: 1.5;
}

@media screen and (max-width: 897px) {
	body {
		font-size: 15px;
	}
}

@media screen and (max-width: 481px) {
	body {
		font-size: 14px;
	}
}

body.mv_load {
	background-image: url("../images/loading2.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #08121E;
	-moz-animation: cssAnimation 0s ease-in 5s forwards;
	-webkit-animation: cssAnimation 0s ease-in 5s forwards;
	-o-animation: cssAnimation 0s ease-in 5s forwards;
	animation: cssAnimation 0s ease-in 5s forwards;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@keyframes cssAnimation {
	to {
		background-image: none;
	}
}

@-webkit-keyframes cssAnimation {
	to {
		background-image: none;
	}
}

body,
a {
	color: #fff;
}

/* ================================================================================ */
/*		hover																*/
/* ================================================================================ */
a:hover {
	opacity: 0.75;
}

/* ================================================================================ */
/*		lazysizes																*/
/* ================================================================================ */
.lazyload {
	opacity: 0;
}

.lazyloaded {
	opacity: 1;
	transition: all 0.5s;
}

/* ================================================================================ */
/*		書式設定																	*/
/* ================================================================================ */
/* display */
.dispInBl {
	display: inline-block !important;
}

.dispIn {
	display: inline !important;
}

.dispBl {
	display: block !important;
}

/* テキストの位置 */
.taLeft {
	text-align: left !important;
}

.taCenter {
	text-align: center !important;
}

.taRight {
	text-align: right !important;
}

/* フォントの大きさ（プラス） */
.fsP-5 {
	font-size: 1.05em !important;
}

.fsP05 {
	font-size: 1.1em !important;
}

.fsP1 {
	font-size: 1.2em !important;
}

.fsP2 {
	font-size: 1.4em !important;
}

.fsP2-5 {
	font-size: 1.5em !important;
}

.fsP3 {
	font-size: 1.6em !important;
}

.fsP4 {
	font-size: 1.8em !important;
}

.fsP4-5 {
	font-size: 1.9em !important;
}

.fsP5 {
	font-size: 2em !important;
}

.fsP6 {
	font-size: 2.2em !important;
}

.fsP7 {
	font-size: 2.4em !important;
}

.fsP8 {
	font-size: 2.6em !important;
}

.fsP9 {
	font-size: 2.8em !important;
}

.fsP10 {
	font-size: 3em !important;
}

.fsP11 {
	font-size: 3.2em !important;
}

.fsP12 {
	font-size: 3.4em !important;
}

.fsP13 {
	font-size: 3.6em !important;
}

/* フォントの大きさ（マイナス） */
.fsM1 {
	font-size: 0.95em !important;
}

.fsM2 {
	font-size: 0.8em !important;
}

.fsM3 {
	font-size: 0.7em !important;
}

.fsM4 {
	font-size: 0.6em !important;
}

.fsM5 {
	font-size: 0.5em !important;
}

.fsM6 {
	font-size: 0.4em !important;
}

/* LineHeight */
.lh1 {
	line-height: 1 !important;
}

.lh1-1 {
	line-height: 1.1 !important;
}

.lh1-2 {
	line-height: 1.2 !important;
}

/* border */
.borderT {
	border-top: solid 1px #505050;
}

.borderB {
	border-bottom: solid 2px #505050;
	margin: 0 10px 10px;
	padding: 8px 8px 16px !important;
}

.borderL {
	border-left: solid 1px #505050;
}

.borderR {
	border-right: solid 1px #505050;
}

/* フォントの太さ */
.fwNormal {
	font-weight: normal !important;
}

.fwBold {
	font-weight: bold !important;
}

/* フォントの太さ */
.tdU {
	text-decoration: underline !important;
}

.tdN {
	text-decoration: none !important;
}

/* フォント */
.ttl-ja {
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
	font-weight: bold;
}

/* フォント */
.ttl-main {
	letter-spacing: 0;
	display: inline-block;
	text-align: left;
	line-height: 1.1;
	font-weight: bold;
	padding-left: calc(2em + 0.3em);
	position: relative;
}

.ttl-main::before {
	background: #727484;
	content: "";
	height: 2.1em;
	width: 2.1em;
	left: 0;
	position: absolute;
	top: 0.1em;
}

/* フォント */
.ttl-en {
	font-family: "Open Sans", sans-serif;
	font-size: 2.8em;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	word-break: normal;
	font-size: 3.6em;
	/*letter-spacing: -0.02em;
	margin-left: -0.02em;
	margin-top: 0.1em;
	margin-bottom: 0.1em; */
}

.price_list .ttl-en {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	z-index: 1;
	width: 100%;
	letter-spacing: 0;
	margin: 0;
	padding: 6px;
	font-size: 2.4em;
}

a span.hover_hidden {
	display: block;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .8));
}

a:hover span.hover_hidden {
	display: none;
}

a span.hover_active {
	display: none;
}

a:hover span.hover_active {
	display: block;
	font-size: .8em;
	font-weight: bold;
	line-height: 1;
}

@media all and (-ms-high-contrast: none) {
	.ttl-en {
		font-family: "Open Sans", sans-serif;
	}
}

.ttl-en span {}

.sub-ttl {
	background: #727484;
	color: #fff;
	padding: 6px 0px 7px;
	margin-bottom: 24px;
	display: block;
	font-size: 1.5em;
	border-radius: calc(1.2em + 8px);
	margin: 8px auto !important;
	max-width: 260px;
	text-align: center;
}

.bg-01 .ttl-en {
	color: #fff;
}

.bg-01 .sub-ttl {
	background: #fff;
	color: #92a6af;
}

/* マージン上 */
.maT0 {
	margin-top: 0 !important;
}

.maT0-5 {
	margin-top: 0.5em !important;
}

.maT1 {
	margin-top: 1.2em !important;
}

.maT2 {
	margin-top: 1.4em !important;
}

.maT3 {
	margin-top: 1.6em !important;
}

.maT4 {
	margin-top: 1.8em !important;
}

.maT5 {
	margin-top: 2em !important;
}

.maT6 {
	margin-top: 2.2em !important;
}

.maT7 {
	margin-top: 2.4em !important;
}

.maT8 {
	margin-top: 2.6em !important;
}

/* パディング上 */
.paT0 {
	padding-top: 0 !important;
}

.paT0-5 {
	padding-top: 0.5em !important;
}

.paT1 {
	padding-top: 1.2em !important;
}

.paT2 {
	padding-top: 1.4em !important;
}

.paT3 {
	padding-top: 1.6em !important;
}

.paT4 {
	padding-top: 1.8em !important;
}

.paT5 {
	padding-top: 2em !important;
}

/* マージン下 */
.maB0 {
	margin-bottom: 0 !important;
}

.maB1 {
	margin-bottom: 1.2em !important;
}

.maB2 {
	margin-bottom: 1.4em !important;
}

.maB3 {
	margin-bottom: 1.6em !important;
}

.maB4 {
	margin-bottom: 1.8em !important;
}

.maB5 {
	margin-bottom: 2em !important;
}

/* パディング下 */
.paB0 {
	padding-bottom: 0 !important;
}

/* リンクにアンダーライン */
a.link_under {
	text-decoration: underline;
}

.mw900 {
	max-width: 900px !important;
	margin: auto;
}

@media screen and (max-width: 960px) {
	.mw900 {
		padding: 0 50px;
	}
}

@media screen and (max-width: 701px) {
	.mw900 {
		padding: 0;
	}
}

.mW600 {
	max-width: 600px;
	margin: auto;
}

.mW300 {
	max-width: 300px;
	margin: auto;
}

.mW200 {
	max-width: 200px;
	margin: auto;
}

.mw900_maAuto {
	max-width: 900px !important;
	margin: auto !important;
}

.mW600_maAuto {
	max-width: 600px !important;
	margin: auto !important;
}

.mW300_maAuto {
	max-width: 300px !important;
	margin: auto !important;
}

.mW200_maAuto {
	max-width: 200px !important;
	margin: auto !important;
}

/* ================================================================================ */
/*		loading																	*/
/* ================================================================================ */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	z-index: 9999;
}

.sk-cube-grid {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.sk-cube-grid::after {
	position: absolute;
	top: calc(50% + 40px);
	left: calc(50% + 0px);
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	content: "Now Loading";
	color: #727484;
	/* font-weight: bold; */
	display: block;
	width: 200px;
	text-align: center;
	font-family: "Open Sans", sans-serif;
}

.sk-cube-grid .sk-cube {
	width: 33%;
	height: 33%;
	background-color: #727484;
	float: left;
	-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
	animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {

	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}

	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@keyframes sk-cubeGridScaleDelay {

	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}

	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@-webkit-keyframes sk-cubeFontDelay {

	0%,
	70%,
	100% {
		opacity: 1;
	}

	35% {
		opacity: 0;
	}
}

@keyframes sk-cubeFontDelay {

	0%,
	70%,
	100% {
		opacity: 1;
	}

	35% {
		opacity: 0;
	}
}


/* ================================================================================ */
/*		レイアウト																	*/
/* ================================================================================ */
#top-header-wrap {
	margin-top: 84px;
}

.top-header {
	width: 100vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.top-header.tryangle::before {
	animation: SlideIn 1.6s;
	content: "";
	bottom: 0;
	right: 0;
	border-top: 50vh solid transparent;
	border-right: 50vw solid #fff;
	position: absolute;
	z-index: 1;
}

@media screen and (max-width: 897px) {
	.top-header.tryangle::before {
		border-top: 40vh solid transparent;
		border-right: 65vw solid #fff;
	}
}

@media screen and (max-width: 481px) {
	.top-header.tryangle::before {
		border-top: 30vh solid transparent;
		border-right: 80vw solid #fff;
	}
}

#top-header-wrap2 {
	margin-top: 84px;
	overflow: hidden;
	background: #000;
	height: 720px;
	position: relative;
}

.top-header2 {
	width: calc(100vw - 250px);
	height: 550px;
}

.top-header2 h2 {
	height: 100%;
	z-index: 1;
	position: relative;
}

.top-header2 img {
	width: 100%;
	height: 100%;
	object-position: 50% 50%;
}

.top-header2::after {
	content: "";
	width: calc(100vw - 250px);
	height: 640px;
	position: absolute;
	right: 0;
	bottom: 0;
	background: -moz-linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	background: -webkit-linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	background: linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
}

@-webkit-keyframes SlideIn {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}

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

@keyframes SlideIn {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}

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

@-webkit-keyframes SlideOut {
	0% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}

@keyframes SlideOut {
	0% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}

.front_logo_wrap {
	height: 100%;
	position: relative;
}

.front_logo {
	width: 100%;
	max-width: 730px;
	padding: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

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

.front_logo svg {
	width: 100%;
	height: auto;
}

.front_logo svg path {
	fill-opacity: 0;
	transition: fill-opacity .5s;
	fill: none;
	stroke: #FFF;
	stroke-width: 5px;
	stroke-linecap: square;
	stroke-linejoin: miter;
}

.front_logo svg.done path {}

.front_logo2 {
	position: absolute;
	bottom: 0;
	margin: auto;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	width: 100%;
	background: rgba(255, 255, 255, .8);
	padding: .5em;
}

.front_logo_wrap2 .sub-ttl {
	position: absolute;
	bottom: 6.5em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	margin: 0;
	text-align: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.copy {
	position: absolute;
	bottom: 32px;
	text-align: right;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 32px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.copy h3 {}

@media all and (-ms-high-contrast: none) {

	.copy h2,
	.copy h3 {}
}

@media screen and (max-width: 715px) {
	.copy {}

	.front_logo {}
}

@media screen and (max-width: 555px) {
	.copy {}

	.front_logo {}
}

@media screen and (max-width: 455px) {
	.copy {}

	.front_logo {}
}

.copy h2 span,
.copy h3 span {
	font-size: 0.6em;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	display: block;
	font-weight: normal;
	line-height: 1.5;
	margin-top: 10px;
}

.copy p {
	line-height: 1.8 !important;
	transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.copy h3,
.copy p {
	color: #fff;
	text-shadow: 0 0 0;
}

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

	.copy h2,
	.copy h3 {}

	.copy h2 span,
	.copy h3 span {}

	.copy p {}
}

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

@-webkit-keyframes sdb {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	80% {
		-webkit-transform: translate(0, 20px);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

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

	40% {
		opacity: 1;
	}

	80% {
		transform: translate(0, 20px);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

a.scrolldown {
	padding-top: 60px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%);
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	width: 50px;
	text-align: center;
}

a.scrolldown span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid #fff;
	border-radius: 50px;
	box-sizing: border-box;
	z-index: 3;
}

a.scrolldown span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	box-sizing: border-box;
}

.mainvisual-overlay {
	background: url(../../common/images/mv_layer.png);
	position: static;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.mainvisual-overlay2 {
	background: url(../../common/images/mv_layer_black.png);
	position: static;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-size: 5px 5px;
}

.mainvisual .mainvisual-overlay {
	background: url(../../common/images/mv_layer_black.png);
	background-size: 5px 5px;
}

.mainvisual {
	position: relative;
	margin-top: 84px;
	width: 100%;
	height: calc(100% - 84px);
	overflow: hidden;
	position: fixed;
}

.mainvisual-video {
	height: calc(100vh - 84px);
	opacity: 0;
	position: absolute;
	left: -100%;
	right: -100%;
	top: -100%;
	bottom: -100%;
	z-index: -1;
	margin: auto;
}

.animated {
	animation-duration: 2s;
	animation-fill-mode: both;
}

.animated2 {
	animation-duration: 1s;
	animation-fill-mode: both;
}

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

	100% {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
}

.wrapper {
	position: relative;
	width: 100%;
	padding-top: 16px;
	padding-bottom: 48px;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #000;
	color: #fff;
}

.bg-fixed {
	width: 100%;
	height: calc(100vh - 85px);
	margin: 0 auto 1500px;
	background: url("../images/fixed-image.jpg") no-repeat center top;
	text-align: center;
	background-attachment: fixed;
	margin: 0;
	background-size: cover;
}

.reflector_wrapL {
	width: 100%;
	padding: 32px;
	position: absolute;
	top: 5%;
	left: 0;
}

.reflector_wrapL #logo2 {
	width: calc(4em * 9);
}

.reflector_wrapR {
	width: 100%;
	padding: 32px;
	position: absolute;
	top: 45%;
	right: 0;
}

.reflector_wrapR #logo2 {
	margin-top: 1em;
}

.reflector_wrapR #logo3 {
	width: calc(4em * 6.9855);
	margin-top: 1em;
}

.reflector_wrapR #logo4 {
	width: calc(4em * 4.63);
	margin-top: 1em;
}

@media screen and (max-width: 897px) {
	.bg-fixed {
		height: 575px;
	}

	.reflector_wrapL #logo2 {
		width: calc(3.5em * 9);
	}

	.reflector_wrapR #logo3 {
		width: calc(3.5em * 6.9855);
	}

	.reflector_wrapR #logo4 {
		width: calc(3.5em * 4.63);
	}
}

@media screen and (max-width: 481px) {
	.bg-fixed {
		height: 505px;
	}

	.reflector_wrapL,
	.reflector_wrapR {
		padding: 16px;
	}

	.reflector_wrapL #logo2 {
		width: calc(2.4em * 9);
	}

	.reflector_wrapR #logo3 {
		width: calc(2.4em * 6.9855);
	}

	.reflector_wrapR #logo4 {
		width: calc(2.4em * 4.63);
	}
}

#logo2 path,
#logo3 path,
#logo4 path {
	opacity: 0;
	fill: transparent;
	stroke-opacity: 0;
}

#logo2.is-show path,
#logo3.is-show path,
#logo4.is-show path {
	animation: Pathfade 1s ease forwards;
}

@keyframes Pathfade {
	100% {
		fill: #fff;
		opacity: .7;
	}
}

#logo2.is-show #R-2 {
	animation-delay: 0s;
}

#logo2.is-show #E-2 {
	animation-delay: .25s;
}

#logo2.is-show #F {
	animation-delay: .5s;
}

#logo2.is-show #L {
	animation-delay: .75s;
}

#logo2.is-show #E {
	animation-delay: 1s;
}

#logo2.is-show #C {
	animation-delay: 1.25s;
}

#logo2.is-show #T {
	animation-delay: 1.5s;
}

#logo2.is-show #O {
	animation-delay: 1.75s;
}

#logo2.is-show #R {
	animation-delay: 2s;
}

#logo3.is-show #E {
	animation-delay: 0s;
}

#logo3.is-show #L {
	animation-delay: .25s;
}

#logo3.is-show #E-2 {
	animation-delay: .5s;
}

#logo3.is-show #C {
	animation-delay: .75s;
}

#logo3.is-show #T {
	animation-delay: 1s;
}

#logo3.is-show #R {
	animation-delay: 1.25s;
}

#logo3.is-show #O {
	animation-delay: 1.5s;
}

#logo4.is-show #F {
	animation-delay: 1.75s;
}

#logo4.is-show #O {
	animation-delay: 2s;
}

#logo4.is-show #R {
	animation-delay: 2.25s;
}

#logo4.is-show #M {
	animation-delay: 2.5s;
}

#from-scrolldown {
	padding-top: 100vh;
	background: linear-gradient(180deg, transparent 0%, transparent 100vh, #000 100vh, #000 100vh);
	padding-bottom: 32px;
}

#from-scrolldown2 {
	padding-top: calc(500px + 60px);
	background: linear-gradient(180deg, transparent 0%, transparent 560px, #08121E 560px, #08121E 560px);
}

#from-scrolldown3 {
	padding-top: 85px;
}

.column_wrapper,
.column_wrapper2 {
	display: table;
	table-layout: fixed;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.column_wrapper>.main-column,
.column_wrapper>.side-column {
	display: table-cell;
	padding: 16px 0 16px 16px;
	vertical-align: top;
}

.column_wrapper2>.main-column2,
.column_wrapper2>.side-column2 {
	display: table-cell;
	padding: 0 0 16px 16px;
	vertical-align: top;
}

.column_wrapper>div:last-child,
.column_wrapper2>div:last-child {
	padding-right: 16px;
	padding-bottom: 16px;
}

.side-column {
	width: 30%;
}

.top-column {
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 32px;
	position: relative;
}

.wrapper.tilt .top-column::after {
	transition-duration: 1s;
	transition-delay: 1.6s;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 80%;
	margin: 3% 0 0;
	background: #f5f5f5;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: skewY(-10deg);
	-ms-transform: skewY(-10deg);
	transform: skewY(-10deg);
	z-index: -20;
}

.wrapper.tilt .top-column::before {
	transition-duration: 0.8s;
	transition-delay: 1s;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 80%;
	margin: 3% 0 0;
	background: #fafafa;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: skewY(6deg);
	-ms-transform: skewY(6deg);
	transform: skewY(6deg);
	z-index: -10;
}

.wrapper.tilt.isActive .top-column::after {
	width: 100%;
}

.wrapper.tilt.isActive .top-column::before {
	width: 100%;
}

.party-column {
	padding: 16px 8px;
}

#main,
#side,
#main2,
#side2 {
	background: rgba(0, 0, 0, .7);
	padding: 16px 16px 16px 16px;
}

#main {
	min-height: calc(100vh - 395px);
}

.bg-01 {
	overflow: hidden;
	background: -moz-linear-gradient(top, #1C1B20, #727484);
	background: -webkit-linear-gradient(top, #1C1B20, #727484);
	background: linear-gradient(to bottom, #1C1B20, #727484);
}

.co-01 {
	color: #727484;
}

.bg-02 {
	background: #727484;
	color: #fff;
}

.bg-03 {
	background: #fff;
}

.bg-04 {
	background: #735e3f;
	color: #fff;
	font-weight: bold;
}

.bg-05 {
	background: #727484;
	color: #000;
	padding: 16px 32px 24px;
}

.bg-06 {
	background: -moz-linear-gradient(#1c1b20 0%, #727484 60%, #000 40%);
	background: -webkit-linear-gradient(#1c1b20 0%, #727484 60%, #000 40%);
	background: linear-gradient(#1c1b20 0%, #727484 60%, #000 40%);
}

.bg-06 .co-01 {
	color: #fff;
}

.tilt-wrap {
	height: 585px;
	overflow: hidden;
}

.tilt-column {
	width: 100%;
	max-width: 1200px;
	height: 585px;
	margin: -16px auto -48px;
}

.tilt-column::before {
	content: "";
	clip-path: polygon(0 0, 0% 100%, calc((100vw - 1200px) / 2) 100%, calc((100vw - 1200px) / 2 + 200px) 0%);
	position: absolute;
	background-color: #000;
	height: 100%;
	width: calc((100vw - 1200px) / 2 + 200px);
	top: 0;
	left: 0;
	z-index: 1;
}

.tilt-column::after {
	content: "";
	clip-path: polygon(100% 0, 200px 0, 0 100%, 100% 100%);
	position: absolute;
	background-color: #000;
	height: calc(100% + 1px);
	width: calc((100vw - 1200px) / 2 + (1200px - 952px) + 200px);
	top: 0;
	right: 0;
}

.bg-01 .tilt-column::before {
	background: -moz-linear-gradient(top, #1C1B20, #727484);
	background: -webkit-linear-gradient(top, #1C1B20, #727484);
	background: linear-gradient(to bottom, #1C1B20, #727484);
}

.bg-01 .tilt-column::after {
	background: -moz-linear-gradient(top, #1C1B20, #727484);
	background: -webkit-linear-gradient(top, #1C1B20, #727484);
	background: linear-gradient(to bottom, #1C1B20, #727484);
}

.tilt-bg {
	background-image: url("../images/tilt-image01.jpg");
	background-position: 0px center;
	position: relative;
	height: 100%;
	background-size: 952px 585px;
	background-repeat: no-repeat;
	transition-duration: 0.5s;
}

.tilt-bg.tilt-img02 {
	background-image: url("../images/tilt-image02.jpg");
}

.tilt-bg.tilt-img03 {
	background-image: url("../images/tilt-image03.jpg");
}

.tilt-bg.tilt-img04 {
	background-image: url("../images/tilt-image04.jpg");
}

.tilt-bg.tilt-img05 {
	background-image: url("../images/tilt-image05.jpg");
}

@media screen and (max-width: 897px) {
	.tilt-bg.tilt-img05 {
		background-image: url("../images/tilt-image05_tab.jpg");
	}
}

@media screen and (max-width: 481px) {
	.tilt-bg.tilt-img05 {
		background-image: url("../images/tilt-image05_sp.jpg");
	}
}

.tilt-wrap:hover .tilt-bg {
	transform: scale(1.12);
}

.tilt-wrap.clickable:hover div {
	opacity: 1;
}

.tilt-wrap .top-column {
	position: absolute;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 1;
}

.tilt-wrap .top-column::after {
	content: "";
	position: absolute;
	background: #727484;
	height: 100px;
	bottom: 32px;
	right: calc(((100vw - 100%) / 2) * -1);
	width: calc((100vw - 100%) / 2 + 20px);
}

.bg-01.tilt-wrap .top-column::after {
	background-color: #000;
}

.slideLink {
	position: absolute;
	clip-path: polygon(100% 0, 42.5px 0, 0 100%, 100% 100%);
	height: 100px;
	bottom: 32px;
	right: -100px;
	width: 700px;
	background: #727484;
	text-align: right;
	transition: all .3s;
}

.bg-01 .slideLink {
	background: #000;
}

.slideLink::before {
	content: '';
	position: absolute;
	width: 80px;
	height: 1px;
	background: #fff;
	transition: all .3s;
	right: 0;
	top: 50%;
}

.slideLink::after {
	content: '';
	position: absolute;
	right: 15px;
	width: 15px;
	height: 1px;
	background: #fff;
	transform: rotate(35deg);
	transition: all .3s;
	top: calc(50% - 2px);
}

.slideLink:hover {
	right: 0;
	opacity: 1;
	text-decoration: none;
}

.slideLink:hover span.slide_title {
	color: #000;
}

.bg-01 .slideLink:hover span.slide_title {
	color: #727484;
}

.slideLink .slide_title {
	display: block;
	font-weight: bold;
	font-size: 2.9em;
	text-align: right;
	color: #000;
	margin-right: 132px;
	margin-top: .3em;
}

.bg-01 .slideLink .slide_title {
	color: #727484;
}

.slideLink .slide_title img {
	height: 100%;
}

.slideLink .slide_subtitle {
	display: block;
	margin-right: 132px;
	font-weight: bold;
	color: #fff;
}

.column_title {
	text-align: right;
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.column_title h3 {
	font-size: 4.4em;
}

.column_title span {
	font-size: 1.55em;
}

@media screen and (max-width: 897px) {
	.tilt-wrap {
		height: 435px;
	}

	.tilt-column {
		height: 435px;
		55
	}

	.tilt-column::before {
		clip-path: polygon(0 0, 0% 100%, calc((100vw - 952px) / 2) 100%, calc((100vw - 952px) / 2 + 160px) 0%);
		width: calc((100vw - 952px) / 2 + 160px);
	}

	.tilt-column::after {
		clip-path: polygon(100% 0, 160px 0, 0 100%, 100% 100%);
		width: calc((100vw - 1200px) / 2 + (1200px - 820px) + 160px);
		top: 0;
		right: 0;
	}

	.tilt-bg {
		background-size: 708px 435px;
	}

	.tilt-wrap .top-column::after {
		height: 90px;
	}

	.slideLink {
		width: 500px;
		height: 90px;
		clip-path: polygon(100% 0, 38.25px 0, 0 100%, 100% 100%);
	}

	.slideLink .slide_title {
		font-size: 2.6em;
		margin-top: .27em;
	}

	.column_title h3 {
		font-size: 2.9em;
	}

	.column_title span {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 481px) {
	.tilt-bg {
		background-size: 520px 320px;
	}

	.tilt-wrap .top-column::after {
		height: 80px;
		width: calc((100vw - 100%) / 2 + 16px);
	}

	.slideLink {
		width: 405px;
		height: 80px;
		clip-path: polygon(100% 0, 34px 0, 0 100%, 100% 100%);
	}

	.slideLink::after {
		top: calc(50% - 4px);
	}

	.slideLink .slide_title {
		font-size: 2.5em;
		margin-top: .32em;
		margin-right: 116px;
	}

	.slideLink .slide_subtitle {
		margin-right: 116px;
	}

	.column_title {
		right: 16px;
		top: 16px;
		transform: none;
	}

	.column_title h3 {
		font-size: 2.2em;
	}

	.column_title span {
		font-size: 1.07em;
	}
}

.bg-image {
	background-image: url("../images/aboutBG.jpg");
	background-position: center center;
	background-size: cover;
	position: relative;
}

.pattern-overlay {
	background: url(../../common/images/mv_layer.png);
	position: static;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.color-01 {
	color: #fff;
}

.color-02 {
	color: #fff;
}

.color-03 {
	color: #fff;
}

.color-04 {
	color: #fff;
}

.color-05 {
	color: #fff;
}

/* ================================================================================ */
/*		汎用																	*/
/* ================================================================================ */
.pc-none {
	display: none;
}

.sp-none {
	display: inline-block !important;
}

.sp-pc-disp {
	display: inline-block !important;
}

.sp-br {
	display: none !important;
}

.sp-br.pc-space::after {
	display: inline-block;
}

.sp-br2 {
	display: none !important;
}

.tab-none {
	display: inline-block !important;
}

.tab-br {
	display: none !important;
}

.block0 {
	padding: 0;
}

.block {
	padding: 8px 0 16px;
}

.block8 {
	padding: 8px;
}

.block8-0 {
	padding: 8px 0;
}

.block16 {
	padding: 16px;
}

.block16-0 {
	padding: 16px 0;
}

.block32 {
	padding: 32px;
}

.block32-0 {
	padding: 32px 0;
}

.block8-0-16 {
	padding: 8px 0 16px;
}

.block32-16 {
	padding: 32px 16px;
}

.block48-16 {
	padding: 48px 16px;
}

.wrap {
	margin: 0 0 8px;
}

.wrap02 {
	margin: 0 0 8px;
}

.linkbtn_wrap {
	text-align: center;
	display: block;
}

.linkbtn {
	position: relative;
	display: inline-block;
	text-align: left;
	padding: 16px 24px;
	margin: 16px auto;
	font-weight: bold;
	font-size: 1em;
	min-width: 280px;
	color: #fff;
	transition: color 0.25s ease;
	background: -moz-linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	background: -webkit-linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	background: linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	border: 1px solid #fff;
}

.linkbtn .linkbtn_text {
	z-index: 2;
	position: relative;
}


.demo_list .linkbtn {
	min-width: auto;
	width: 100%;
	margin: 16px auto 0;
}

.linkbtn:hover,
.linkbtn.hover,
.linkbtn:focus,
.linkbtn:active {
	opacity: 1;
	text-decoration: none;
}

.linkbtn:hover::before,
.linkbtn.hover::before,
.linkbtn:focus::before,
.linkbtn:active::before {
	width: 100%;
}

.linkbtn::before {
	content: "";
	position: absolute;
	display: block;
	background-color: #3e3e3e;
	background: -moz-linear-gradient(#000 0%, #000 11.72%, #545560 49.78%, #000 88.86%, #000 100%);
	background: -webkit-linear-gradient(#000 0%, #000 11.72%, #545560 49.78%, #000 88.86%, #000 100%);
	background: linear-gradient(#000 0%, #000 11.72%, #545560 49.78%, #000 88.86%, #000 100%);
	width: 0;
	top: 0;
	bottom: 0;
	left: 0;
	-webkit-transition: .2s ease 0s;
	transition: .2s ease 0s;
}

.linkbtn::after {
	content: "";
	width: 55px;
	height: 1em;
	background: url("arrow-right.svg") center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right: 16px;
	-webkit-transition: .2s ease 0s;
	transition: .2s ease 0s;
}

.linkbtn:hover::after {
	background-size: contain;
	right: -16px;
}

.linkbtn img {
	height: 1em;
	vertical-align: -3px;
	margin-right: .3em;
}




.linkbtn2_wrap {
	text-align: left;
	display: block;
}

.linkbtn2 {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.linkbtn2 {
	display: block;
	padding: 16px 8px;
	margin: 8px auto;
	font-weight: bold;
	font-size: 1em;
	min-width: 280px;
	color: #505050;
	background: #fff;
}

.linkbtn2:hover,
.linkbtn2.hover,
.linkbtn2:focus,
.linkbtn2:active {
	color: #fff;
	opacity: 1;
	text-decoration: none;
}

.linkbtn2:hover::before,
.linkbtn2.hover::before,
.linkbtn2:focus::before,
.linkbtn2:active::before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.linkbtn2::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	background: #505050;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.linkbtn2::after {
	content: '';
	width: 0.6em;
	height: 0.6em;
	border: 0px;
	border-top: solid 2px #505050;
	border-right: solid 2px #505050;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -0.3em;
}

.linkbtn2:hover::after {
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}

.linkbtn2 .thumbNailWrap {
	width: 115px;
	height: 115px;
	margin: 0 16px 0 8px;
}

.linkbtn2 .thumbNailWrap img {}

.linkbtn2 .ttl-en {
	color: #92a6af;
	display: block;
	text-align: left;
	font-size: 3.5em;
	letter-spacing: -0.09em;
}

.linkbtn2 .title {
	display: block;
	margin: 0.5em 24px 0 0;
}




.linkbtn_wrap_outer {
	background: #727484;
	padding-top: 20px;
	margin: 16px auto;
}

.linkbtn_wrap_outer span.linkbtn_title {
	background: #224a96;
	color: #fff;
	position: relative;
	padding: 8px 32px;
	display: inline-block;
	margin: 0 16px;
	min-width: 70%;
}

.linkbtn_wrap_outer span.small {
	color: #fff;
	display: block;
	font-size: 1.2em;
	margin-top: 0.5em;
	font-weight: bold;
}

.linkbtn_wrap_outer2 {
	background: #727484;
	padding-top: 20px;
	margin: 16px auto;
}

.linkbtn_wrap_outer2 span.linkbtn_title {
	background: #224a96;
	color: #fff;
	position: relative;
	padding: 8px 32px;
	display: inline-block;
	margin: 0 16px;
}

.linkbtn_wrap_outer2 span.small {
	color: #fff;
	display: block;
}

.bg-02 .linkbtn {}

.bg-02 .linkbtn:hover,
.linkbtn.hover,
.linkbtn:focus,
.linkbtn:active {}

.bg-02 .linkbtn::before {}

.bg-overlay {
	background: #92a6af;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 50%;
	top: 22px;
}

@media screen and (max-width: 481px) {
	.bg-overlay {
		top: 16px;
	}
}

.bg-overlay-bottom {
	background: #92a6af;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 50%;
	bottom: 0;
}

.bg-overlay-bottom2 {
	background: #92a6af;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 15%;
	bottom: 0;
}

.bg-overlay-white-top {
	background: #fff;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 40%;
	top: 0;
}

a:hover.modaal {
	text-decoration: none;
}

.clickable:hover>h3,
.clickable:hover>div,
.clickable:hover>span {
	opacity: 0.6;
}

.clickable:hover {
	cursor: pointer;
}

.salescomment p {
	padding: 10px;
	font-weight: bold;
	line-height: 1.6em !important;
}

.videowrap {
	text-align: center;
}

.videowrap video {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	display: block;
}

video::-webkit-media-controls-enclosure {
	overflow: hidden;
}

video::-webkit-media-controls-panel {
	width: calc(100% + 30px);
	/* Adjust as needed */
}

.modaal-container iframe {
	width: 100%;
}



/* ================================================================================ */
/*		タイトル																	*/
/* ================================================================================ */
.tit-01 {
	background: #e62832;
	padding: 8px 16px;
	display: inline-block;
	font-weight: bold;
}

.tit-01 span {
	padding: 0 8px;
	font-weight: normal;
}

/*.tit-02 {
	display:inline-block;
}*/
.tit-02 {
	font-weight: bold;
	line-height: 1.3;
	margin: 8px 0;
	font-size: 1.9em;
}

.tit-03 {
	font-weight: bold;
	line-height: 1.3 !important;
	margin: 8px 0;
	font-size: 1.8em;
}

.tit-04 {
	margin: 16px auto 16px;
	display: block;
}

.tit-05 {
	text-align: center;
	background: #000;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
	padding: 8px;
	width: 100%;
	display: block;
}

.tit-06 {
	font-weight: bold;
	line-height: 1.1;
	margin: 8px 0;
}

.tit-07 {
	line-height: 1.2;
	letter-spacing: 0.001em;
	text-align: center;
	font-weight: bold;
	position: relative;
	display: inline-block;
	margin: 16px 0;
	padding: 8px 0 10px;
	font-size: 2.1em !important;
	letter-spacing: -0.0281em;
}

.tit-07:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	content: '';
	background-image: -webkit-repeating-linear-gradient(135deg, #92a6af, #92a6af 1px, transparent 2px, transparent 5px);
	background-image: repeating-linear-gradient(-45deg, #92a6af, #92a6af 1px, transparent 2px, transparent 5px);
	background-size: 7px 7px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.tit-07:first-letter {
	font-size: 1.1em;
	color: #727484;
}

.tit-08 {
	line-height: 1;
	letter-spacing: 0.06em;
	font-weight: bold;
	position: relative;
	display: inline-block;
	margin: 16px 0;
	padding: 8px 0 4px;
}

.tit-08::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	content: '';
	background: #727484;
}

.tit-09 {
	display: block;
}

.tit-10 {
	text-align: center;
	color: #fff;
	border: 4px solid #727484;
	border-radius: 999px;
	font-weight: bold;
	line-height: 1.3;
	margin: 16px 0 8px;
	padding: 8px;
	width: 100%;
	display: block;
}

.tit-11 {
	font-weight: bold;
}

/* ================================================================================ */
/*		汎用																	*/
/* ================================================================================ */
.head_tel {
	max-width: 485px;
	margin: 0 auto;
}

.parts_list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0px;
	margin: -10px -15px 0px;
	list-style: none;
	justify-content: center;
}

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

.parts_list.ma15 {
	margin: -10px -15px 0px;
}

.parts_list.half {
	margin: -10px -15px 0px;
}

.parts_list.two-to-one {
	margin: -10px -15px 0px;
}

.parts_list.quarter {
	margin: -10px -15px 0px;
}

.parts_list.function_list>li:nth-child(1)>img:first-child {}

.parts_list.function_list>li:nth-child(2)>img:first-child {
	margin-top: 5em;
}

.parts_list.function_list>li:nth-child(3)>img:first-child {
	margin-top: 10em;
}

img.function_icon {
	width: 100%;
	max-width: 72px;
	height: auto;
	margin: 16px auto 8px;
}

.function_icon_list {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}

.function_icon_list li {
	margin: 0 6px;
	width: 25%;
	max-width: 64px;
}

.function_icon_list img.function_icon {
	max-width: 48px;
}

.parts_list>li {
	margin: 10px 15px 32px;
	width: calc(100% / 3 - 30px);
}

.parts_list>li.mw900 {
	width: 100% !important;
}

.parts_list.ma15>li {
	margin: 10px 15px 0px;
	width: calc(100% / 3 - 30px);
}

.parts_list.one_third>li {
	margin: 10px 15px 0px;
	width: calc(100% / 3 - 30px);
}

.parts_list.half>li {
	margin: 10px 15px 10px;
	width: calc(100% / 2 - 30px);
}

.parts_list.two-to-one>li {
	margin: 10px 15px 0px;
	width: calc(100% / 3 - 30px);
}

.parts_list.two-to-one>li:first-child {
	width: calc(100% / 3 * 2 - 30px);
}

.parts_list.quarter>li {
	margin: 10px 15px 32px;
	width: calc(100% / 4 - 30px);
}

.parts_list.divided6>li {
	margin: 10px 5px 0px;
	width: calc(100% / 6 - 10px);
}

.parts_list.circle-li>li {
	position: relative;
	padding-bottom: calc(100% / 3 - 10px);
	height: 0;
	border-radius: 50%;
}

.parts_list.half.circle-li>li {
	padding-bottom: calc(100% / 2 - 30px);
}

.parts_list.quarter.circle-li>li {
	padding-bottom: calc(100% / 4 - 30px);
	font-size: 1.3em;
}

.parts_list.divided6.circle-li>li {
	padding-bottom: calc(100% / 6 - 10px);
	font-size: 1.1em;
}

.parts_list.case_list>li {
	margin-bottom: 32px;
}

.parts_list.case_list>li a {}

.parts_list.price_list>li {
	margin: 10px 0px 0px;
	width: calc(100% / 4);
}

.parts_list.function_list>li {
	margin: 10px 15px 24px;
}

.bg-05 .parts_list {}

.bg-05 .parts_list>li {
	background: #fff;
	padding: 16px;
	border-radius: 24px;
	margin: 10px 15px;
}

.option_list img.function_icon,
.bg-05 .parts_list img.function_icon {
	margin: 0 auto;
}

.parts_list.option_list>li {
	border: solid 5px #727484;
	padding: 16px;
	border-radius: 24px;
	background: #fff;
	color: #000;
}

.corona_list img.function_icon {
	margin: 0 10px;
}

.parts_list.flow_list>li {
	width: 100%;
	margin: 10px 24px 15px;
}

.parts_list>li.list0 {
	width: calc(100% - 20px) !important;
	max-width: 100% !important;
}

.parts_list>li.list1 {
	width: calc(100% / 2 - 20px);
	max-width: 100% !important;
}

.parts_list>li.list2 {
	width: calc(100% / 4 - 20px);
	max-width: 100% !important;
}

/* IE*/
@media all and (-ms-high-contrast: none) {
	.parts_list>li {
		width: calc(100% / 3.05 - 20px);
	}

	.parts_list.ma15>li {
		width: calc(100% / 3.05 - 30px);
	}

	.parts_list.half>li {
		width: calc(100% / 2.05 - 30px);
	}

	.parts_list.two-to-one>li {
		width: calc(100% / 3.05 - 30px);
	}

	.parts_list.two-to-one>li:first-child {
		width: calc(100% / 3.05 * 2 - 30px);
	}

	.parts_list.quarter>li {
		width: calc(100% / 4.05 - 30px);
	}

	.parts_list.divided6>li {
		width: calc(100% / 6.05 - 10px);
	}

	.parts_list.circle-li>li {
		padding-bottom: calc(100% / 3.05 - 10px);
	}

	.parts_list.half.circle-li>li {
		padding-bottom: calc(100% / 2.05 - 30px);
	}

	.parts_list.quarter.circle-li>li {
		padding-bottom: calc(100% / 4.05 - 30px);
	}

	.parts_list.divided6.circle-li>li {
		padding-bottom: calc(100% / 6.05 - 10px);
	}
}

.parts_list.circle-li>li span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 100%;
	text-align: center;
	color: #fff;
}

.max850 img {
	width: 100%;
	max-width: 850px;
}

/* ================================================================================ */
/*		home																	*/
/* ================================================================================ */
.top-column p {
	line-height: 1.85em;
}

.tit-01 a img {
	height: 1em;
	vertical-align: -3px;
	margin-right: .3em;
}

.top-tel-link {
	padding: 32px 16px;
}

.top-tel-link img {
	width: 100%;
	max-width: 280px;
}

.bottom-tel-link {
	padding: 0 16px 32px;
}

.bottom-tel-link img {
	width: 100%;
	max-width: 280px;
}

.top-gallery {
	text-align: left;
}


iframe.map_view {
	max-width: 100%;
}

.map_iframe {
	position: relative;
	width: 1150px;
	max-width: 100%;
	padding: calc(650 / 1150 * 100%) 0 0;
	margin: 0 auto;
}

.map_iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.map_iframe:hover::after,
.map_iframe:focus::after {
	display: none;
}

/* ================================================================================ */
/*		news																	*/
/* ================================================================================ */
.news-wrapper h2 {
	position: absolute;
	left: 32px;
}

.news-wrapper .mw900 {
	max-width: 800px;
}

.news-wrapper #newsWrap {
	margin-right: -80px;
	margin-left: 80px;
	margin-top: 8px !important;
}

@media screen and (max-width: 1120px) {
	.news-wrapper h2 {
		position: relative;
		left: auto;
	}

	.news-wrapper #newsWrap {
		margin-right: 0;
		margin-left: 0;
		margin-top: 32px !important;
	}
}

#newsWrap ul li {
	padding: 0 0 16px 0;
	border-bottom: 1px solid #727484;
	margin: 0 0 16px 0;
}

#newsWrap ul li a {
	display: block;
	position: relative;
	padding: 0 32px 0 0;
}

#newsWrap ul li a:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	width: 11px;
	height: 11px;
	margin-top: -6px;
	border-top: solid 2px #727484;
	border-right: solid 2px #727484;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
}

.newsPage ul li a:after {}

.newsDetail p {
	line-height: 1.5;
	margin-top: 16px;
}

.newsDetail .news_ymd {
	vertical-align: middle;
}

.newsDetail .news_catName {
	vertical-align: middle;
}

.newsDetail a {
	text-decoration: underline;
	color: #00f;
}


#newsWrap ul li a:hover {
	text-decoration: none;
}

.news_ymd {
	font-size: 1em;
	vertical-align: middle;
	width: 6em;
	display: inline-block;
}

.news_catName {
	font-size: 0.76em;
	vertical-align: middle;
	padding: 2px 6px 1px;
}

.cat-all .news_catName {
	background: #505050;
	color: #fff;
}

.cat-0 .news_catName {
	background: #777;
	color: #fff;
}

.cat-1 .news_catName {
	background: #90072C;
	color: #fff;
}

.cat-2 .news_catName {
	background: #240;
	color: #fff;
}

.cat-3 .news_catName {
	background: #550;
	color: #fff;
}

.cat-4 .news_catName {
	background: #00ADA9;
	color: #fff;
}

.cat-5 .news_catName {
	background: #A64A97;
	color: #fff;
}

.cat-6 .news_catName {
	background: #F6AD3C;
	color: #fff;
}

.cat-7 .news_catName {
	background: #4D4398;
	color: #fff;
}

.cat-8 .news_catName {
	background: #187FC4;
	color: #fff;
}

.cat-9 .news_catName {
	background: #E85298;
	color: #fff;
}

.case_button {
	font-size: 1em !important;
	vertical-align: middle;
	background: #08121E;
	color: #fff;
	border: solid 2px #727484;
	display: inline-block;
	line-height: 2em;
	padding: 0 1em;
}


.news_title {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	padding: 0;
}

.news_title2 {
	padding: 0;
	display: block;
	margin: 12px auto 4px;
}

.news_title3 {
	padding: 0;
	display: inline-block;
}

#newsWrap ul li a:hover .news_title {
	text-decoration: underline;
}

.news_title2 a:hover {
	text-decoration: underline;
}

.news_comment {
	margin: 8px 0 0 0;
	display: block;
	overflow: hidden;
	line-height: 1.5em;
	height: 3em;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.business_category {
	border: 1px solid #ccc;
	font-size: 0.8em;
	padding: 0.2em 0.5em 0.2em;
	vertical-align: middle;
	position: relative;
	top: -0.1em;
}

.thumbNailWrap {
	width: 125px;
	height: 125 px;
	float: left;
	margin: 0 16px 0 0;
}

.thumbNailWrap img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

ul.svm {
	justify-content: left;
}

.svm li {
	background: #fff !important;
	padding: 8px 10px;
	color: #000;
}

.svm .news_catName {}

.svm li>p {
	margin-top: 4px;
}

.pager {
	text-align: center !important;
	display: block;
	padding: 16px;
}

.pager a {
	position: relative;
	display: inline-block;
	text-align: left;
	padding: 10px 16px;
	margin: 16px auto 0;
	font-weight: bold;
	font-size: 0.9em;
	color: #fff;
	background: #000;
	transition: color 0.25s ease;
	margin-right: 5px;
	margin-left: 5px;
	background: -moz-linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	background: -webkit-linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	background: linear-gradient(#1c1b20 0%, #1c1b20 11.72%, #727484 49.78%, #1c1b20 88.86%, #1c1b20 100%);
	border: 1px solid #fff;
}

.pager a .linkbtn_text {
	z-index: 2;
	position: relative;
}

.pager a:hover,
.pager a.hover,
.pager a:focus,
.pager a:active {
	opacity: 1;
	text-decoration: none;
	background: #000;
}

.pager a.current {
	background: #000;
}

/*
.pager a::before {
	content: "";
	position: absolute;
	display: block;
	background-color: #000;
	width: 0;
	top: 0;
	bottom: 0;
	left: 0;
	-webkit-transition: .2s ease 0s;
	transition: .2s ease 0s;
}
*/
.pager a:hover::before,
.pager a.hover::before,
.pager a:focus::before,
.pager a:active::before {
	width: 100%;
}

.overPagerPattern {
	vertical-align: text-bottom;
}

#detail {
	display: block;
}

#detail img {
	max-width: 100%;
}

#detail .detailUpfile {
	margin-bottom: 16px;
}

#detail .detailText {
	margin-bottom: 16px;
}



#baguetteBox-overlay .full-image figcaption {
	line-height: 1.6;
	padding: 10px;
}

.object_fit_img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/* ================================================================================ */
/*		system																	*/
/* ================================================================================ */
.system {
	border-collapse: collapse;
	margin: 32px auto 0;
	width: 100%;
}

.system td,
.system th {
	border-top: 1px solid #727484;
	padding: 32px 16px;
	text-align: left;
	min-width: 8em;
}

.system th {
	font-weight: bold;
}

.system tr:last-child td,
.system tr:last-child th {
	border-bottom: 1px solid #727484;
}

.system span {
	display: block;
}

.system dt {
	float: left;
	width: 4em;
	padding: 0;
	clear: both;
}

.system dd {
	padding: 0 0 16px 5em;
}

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

	.system td.sp-td,
	.system th.sp-th {
		display: block;
		width: 100%
	}
}

.system2 {
	border-collapse: collapse;
	margin: 0 auto;
	width: 100%;
}

.system2 td,
.system2 th {
	padding: 32px 16px;
	text-align: left;
	min-width: 8em;
	border-bottom: 1px solid #727484;
}

.system2 tr:first-child td,
.system2 tr:first-child th {
	border-top: 1px solid #727484;
}

.system2 th {
	font-weight: bold;
	padding-bottom: 0;
}

.system2 span {
	display: block;
}

.system2 dt {
	float: left;
	width: 4em;
	padding: 0;
	clear: both;
}

.system2 dd {
	padding: 0 0 16px 5em;
}

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

	.system2 td.sp-td,
	.system2 th.sp-th {
		display: block;
		width: 100%
	}

	.system2 td {
		/* padding-left: 32px; */
		text-align: right;
	}

	.system2 tr th {
		border-bottom: none;
	}

	.system2 tr:first-child td {
		border-top: none;
	}

	.system2 dt {
		text-align: left;
	}

	.system2 dd {
		word-break: break-word;
	}
}

/*===== Vertical Timeline =====*/
#conference-timeline {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 900px;
}

#conference-timeline .conference-center-line {
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	margin-left: -2px;
	background: #727484;
	z-index: 0;
}

#conference-timeline .conference-timeline-content {}

.timeline-article {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	padding: 32px 0 16px;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
	max-width: 44%;
	width: 100%;
}

.timeline-article .timeline-author {
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #242424;
	text-align: right;
}

.timeline-article .content-left,
.timeline-article .content-right {
	position: relative;
	width: auto;
	padding: 34px 0 0;
}

.timeline-article p {
	margin: 0;
	padding: 0;
	position: relative;
}

.timeline-article p img {
	width: 100%;
	height: auto;
}

.timeline-article .content-left-container {
	float: left;
}

.timeline-article .content-right-container {
	float: right;
}

.timeline-article.change_order .content-left-container {
	float: right;
}

.timeline-article.change_order .content-right-container {
	float: left;
}

.timeline-article .meta-date {
	position: absolute;
	top: 0;
	left: 50%;
	width: 8em;
	margin-left: -4em;
	color: #727484;
	background: #000;
	padding: 16px 0;
}

.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
	display: block;
	text-align: center;
	font-weight: bold;
}

.timeline-article .meta-date .date {
	font-size: 2em;
}

.timeline-article .meta-date .month {
	font-size: 18px;
	line-height: 10px;
}

/*===== // Vertical Timeline =====*/

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

/*===== Resonsive Vertical Timeline =====*/
@media screen and (max-width: 481px) {

	#conference-timeline .timeline-start,
	#conference-timeline .timeline-end {
		margin: 0;
	}

	#conference-timeline .conference-center-line {
		margin-left: 0;
		left: 32px;
	}

	.timeline-article .meta-date {
		margin-left: 0;
		left: 0px;
	}

	.timeline-article .meta-date .date,
	.timeline-article .meta-date .month {
		text-align: left;
	}

	.timeline-article .content-left-container,
	.timeline-article .content-right-container,
	.timeline-article.change_order .content-left-container,
	.timeline-article.change_order .content-right-container {
		max-width: 100%;
		width: auto;
		float: none;
		margin-left: 64px;
	}

	.timeline-article .content-left-container {}

	.timeline-article .content-left,
	.timeline-article .content-right {}
}

@media only screen and (max-width: 400px) {
	.timeline-article p {
		margin: 0;
	}

	.timeline-article p span.article-number {
		display: none;
	}

}

/*===== // Resonsive Vertical Timeline =====*/

/* ================================================================================ */
/*			フォーム																		 */
/* ================================================================================ */
#mf_wrapper p.t-foot {
	padding: 32px;
	margin: 32px auto;
	border: solid 1px #727484;
	font-size: 0.9em;
	line-height: 1.6;
	text-align: left;
}

form#mailform .privacylink {
	margin-top: 10px;
	display: inline-block;
	text-align: right;
	width: 100%;
}

input[type=checkbox],
input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	right: 0;
	bottom: 0;
	left: 0;
	height: 20px;
	width: 20px;
	vertical-align: -0.8rem;
	transition: all .15s ease-out 0s;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin: .4rem;
	outline: none;
	border-radius: 10%;
}

@media all and (-ms-high-contrast: none) {

	input[type=checkbox],
	input[type=radio] {
		vertical-align: middle;
	}
}

/* Checkbox */
input[type=checkbox]:before,
input[type=checkbox]:after {
	position: absolute;
	content: "";
	background: #444;
	transition: all .2s ease-in-out;
}

input[type=checkbox]:before {
	left: 2px;
	top: 6px;
	width: 0;
	height: 2px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

input[type=checkbox]:after {
	right: 9px;
	bottom: 3px;
	width: 2px;
	height: 0;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-moz-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	transition-delay: .2s;
}

input[type="checkbox"]:checked::before {
	left: 1px;
	top: 10.5px;
	width: 8px;
	height: 2px;
}

input[type="checkbox"]:checked::after {
	right: 5px;
	bottom: 2px;
	width: 2px;
	height: 14px;
}

input[type=checkbox]:indeterminate:before,
input[type=checkbox]:indeterminate:after {
	width: 7px;
	height: 2px;
	transform: rotate(0);
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
}

input[type=checkbox]:indeterminate:before {
	left: 1px;
	top: 7px;
}

input[type=checkbox]:indeterminate:after {
	right: 1px;
	bottom: 7px;
}

/* Radio */
input[type=radio] {
	border-radius: 50%;
}

input[type=radio]:checked:before {
	transform: scale(1);
}

input[type=radio]:before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 4px;
	transform: scale(0);
	transition: all ease-out 250ms;
}

/* 色は青色のみ */
input[type=checkbox],
input[type=radio] {
	border: 1px solid #ccc;
	background: #fafafa;
}

input[type=radio]:checked:before {
	background: #444;
}

input[type=checkbox]:checked,
input[type=checkbox]:indeterminate {
	background: #fafafa;
}

input[type=checkbox]:focus,
input[type=radio]:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

form#mailform select {
	padding-right: 3em !important;
}

span.required {
	background: #90072C !important;
}

span.optional {
	background: #747474 !important;
}

table.mailform {}

form#mailform .button_post {
	border: 1px solid #727484 !important;
	color: #fff !important;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="5"><path d="M0,0 10,0 5,5z" fill="%23fff" /></svg>') !important;
	background-position: 100% 1.15em !important;
	background-color: #727484;
	font-size: 0.9em !important;
}

form#mailform p#form_submit {
	max-width: 280px;
	overflow: hidden;
}

/* ================================================================================ */
/*			Map																		 */
/* ================================================================================ */

#map-wrap {
	position: relative;
	background: #ccc url("loading.svg") no-repeat center center;
}

.map-link {
	position: absolute;
	left: 10px;
	bottom: 36px;
	z-index: 100;
}

a.map-btn {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	border-radius: 2px;
	cursor: pointer;
	background-color: rgb(255, 255, 255);
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
	font-size: 0.8em;
	color: #111;
	opacity: 0.8;
}

a.map-btn:hover {
	opacity: 1;
}

#map {
	width: 100%;
	height: 400px;
}

/* ================================================================================ */
/*		パンくずリスト																	*/
/* ================================================================================ */
/* breadcrumb */
.breadcrumb-wrap {
	margin: 0 auto 0;
	padding: 0;
	position: relative;
	width: 100%;
	background-color: #000;
	color: #fff;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}

.breadcrumb {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto 0;
	padding: 16px 32px 16px;
	font-size: 0.9em;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	overflow-y: hidden;
}

/* スクロールバー */

.breadcrumb::-webkit-scrollbar {
	height: 5px;
}

.breadcrumb::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #eee;
}

.breadcrumb::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #999;
}

.breadcrumb ul {
	display: table;
	margin-left: -8px;
}

.breadcrumb ul li {
	font-size: 0.9em;
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
	padding-right: 32px;
	position: relative;
}

.breadcrumb ul li>a,
.breadcrumb ul li>span {
	vertical-align: middle;
}

.breadcrumb ul li a span,
.breadcrumb ul li span {
	padding: 0 8px;
}

.breadcrumb ul li img {
	height: 1.2em;
	vertical-align: -0.2em;
}

.breadcrumb ul li:last-child {
	padding-right: 0;
}

.breadcrumb ul li:last-child:after {
	display: none;
}

.breadcrumb ul li:after {
	position: absolute;
	display: block;
	content: '';
	top: 2px;
	right: 8px;
	height: 16px;
	width: 16px;
	background: url(../images/cd-custom-separator.svg) no-repeat center center;
	vertical-align: middle;
}

.breadcrumb ul li span {}

.breadcrumb ul li.current span {
	background-color: #eee;
	border-radius: 4px;
	padding: 6px 8px;
}

.breadcrumb ul li.current a {
	pointer-events: none;
	text-decoration: none;
	cursor: text;
}

/* スクロール設定解除 */

.breadcrumb.no-scroll ul {
	display: block;
}

.breadcrumb.no-scroll ul li {
	display: inline-block;
	margin-bottom: 12px;
	white-space: normal;
}

.breadcrumb.no-scroll ul li:after {
	top: -4px;
}


/* ================================================================================ */
/*		フッター																	*/
/* ================================================================================ */
#foot_menu ul {
	width: 100%;
	max-width: 1200px;
	text-align: center;
	padding: 40px 0 0;
	margin: 0 auto;
	letter-spacing: -0.4em;
	font-size: 0;
}

#foot_menu ul li {
	letter-spacing: normal;
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
}

#foot_menu ul li a {
	padding: 0 16px;
	color: #bfbfbf;
}

#foot_menu ul li.active a {
	color: #bfbfbf !important;
}

#foot_menu ul li a:hover {
	color: #fff;
	opacity: 1;
}

#foot_menu ul li span {
	padding: 0 16px;
}

#foot_menu ul.policy {
	padding: 16px 0 0;
}


.icon-link {
	max-width: 160px;
	margin: 2.6em auto 0;
}

.icon-link .parts_list>li {
	margin: 10px 10px 0px;
	width: calc(100% / 3 - 20px);
}

footer {
	text-align: center;
	padding: 48px 32px 0;
	position: relative;
	background: #fff;
	color: #000;
}

footer a {}

footer .logo {
	width: 75%;
	max-width: 116px;
	margin: 0 auto;
}

footer .logo img {
	width: 100%;
}

footer .address {
	color: #000;
	word-break: keep-all;
}

footer .address a {
	color: #000;
	font-weight: normal;
}

#copyright {
	background: #000;
	color: #fff;
	margin: 48px -32px -8px;
	padding: 16px 8px;
}

.foot-address {
	max-width: 850px;
	margin: 0 auto;
}

@media screen and (max-width: 897px) {
	.foot-address {
		max-width: 425px;
	}
}

#copyright a {
	color: #fff;
}

#topBtn {
	width: 62px;
	height: 62px;
	position: fixed;
	right: 24px;
	bottom: 24px;
	opacity: 0.5;
	z-index: 10;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#topBtn svg,
#topBtn img {
	width: 100%;
	height: auto;
}

#topBtn:hover {
	opacity: 0.9;
}

#topBtn .pagetop-inner {
	fill: #000;
	stroke: #727484;
	stroke-width: 10;
}

#topBtn .pagetop-arrow {
	fill: #fff;
}

#topBtn:hover .pagetop-inner {
	fill: #727484;
}

#topBtn:hover .pagetop-arrow {}

/* ================================================================================ */
/*		CHAT																	*/
/* ================================================================================ */
@keyframes FadeOUT {
	from {
		opacity: 1 !important;
	}

	to {
		opacity: 0 !important;
	}
}

#ch-plugin-core .textLauncherIcon.is-fade,
#ch-plugin-core .textLauncherContent.is-fade {
	display: none !important;
	-webkit-animation: FadeOUT 1.3s forwards !important;
	animation: FadeOUT 1.3s forwards !important;
}

@media screen and (max-width: 481px) {
	#ch-plugin-core .Launcherstyled__Wrapper-oef45p-0 {
		bottom: 12px !important;
		right: 16px !important;
	}

	#ch-plugin-core .textLauncherIcon {
		width: 50px !important;
		height: 50px !important;
		border-radius: 25px !important;
	}

	#ch-plugin-core .textLauncherContent {
		height: 58px !important;
		top: -3px !important;
	}
}

/* ================================================================================ */
/*		SWIPER																	*/
/* ================================================================================ */
.swiper-my-pagination .swiper-pagination-bullet {
	width: auto;
	height: auto;
	border-radius: 0;
}

.swiper-container-horizontal>.swiper-my-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0;
}

.swiper-my-pagination img {
	box-shadow: none;
	margin: 0;
	vertical-align: bottom;
}

.swiper-my-pagination {
	display: table;
}

.swiper-my-pagination {
	display: table;
	table-layout: fixed;
}

.swiper-my-pagination img {
	max-width: 100%;
}

.swiper-my-pagination .swiper-pagination-bullet {
	display: table-cell;
	padding: 16px 4px;
	background: transparent;
	opacity: 1;
}

.swiper-my-pagination .swiper-pagination-bullet-active {
	background: transparent;
	opacity: 0.6;
}

.swiper-button-next,
.swiper-button-prev {
	width: 27px;
	height: 44px;
	margin-top: -44px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-next {
	background-image: url("");
}

.swiper-button-prev {}

/* ================================================================================ */
/*		ヘッダー																	*/
/* ================================================================================ */
.inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	/* padding: 0 10px; */
	padding: 0 0 0 20px;
	height: 85px;
}

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

/* header */
#top-head {
	top: 0;
	position: fixed;
	width: 100%;
	margin: 0 auto 0;
	padding: 0;
	line-height: 1;
	z-index: 999;
	background: #000;
}

#top-head a,
#top-head {
	color: #bfbfbf;
	text-decoration: none;
	font-weight: bold;
}

#top-head .inner {
	position: relative;
}

#top-head .logo {
	float: left;
}

#top-head .logo img {
	height: 59px;
	margin-top: 13px;
}

#global-nav {
	height: 100%;
}

#global-nav>ul {
	list-style: none;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
	height: 100%;
	align-items: stretch;
}

#global-nav>ul li {
	display: -webkit-box;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 110px;
	text-align: center;
}

#global-nav>ul li.lang {
	width: 120px;
}

#global-nav>ul li a {
	padding: 0 4px;
	font-weight: bold;
}

#global-nav>ul li:not(.lang):hover {
	background: -moz-linear-gradient(top, transparent, #727484);
	background: -webkit-linear-gradient(top, transparent, #727484);
	background: linear-gradient(to bottom, transparent, #727484);
}

#global-nav>ul li:not(.lang):hover a,
#global-nav>ul li a:hover {
	color: #fff;
	font-weight: bold;
	opacity: 1;
}

#global-nav>ul li.active {
	background: -moz-linear-gradient(top, #545560, #727484);
	background: -webkit-linear-gradient(top, #545560, #727484);
	background: linear-gradient(to bottom, #545560, #727484);
}

.active a {
	color: #fff !important;
	pointer-events: none;
	text-decoration: none;
	cursor: text;
}

.langIcon::before {
	content: "";
	background-color: #bfbfbf;
	display: block;
	height: 2em;
	width: 2em;
	-webkit-mask: url("../images/globe2.svg");
	mask: url("../images/globe2.svg");
	-webkit-mask-size: 1.5em 1.5em;
	mask-size: 1.5em 1.5em;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	vertical-align: middle;
	position: absolute;
	top: -.4em;
	/* padding: 1px; */
}

.langIcon:hover::before {
	background-color: #fff;
}

.langIcon {
	padding-left: 2em !important;
	position: relative;
}

.dropdown_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(85px);
	width: 100%;
	margin: 0;
	height: 0;
	transition:
		height .2s,
		opacity .5s linear,
		visibility .1s linear;
}

.dropdown_list.is-open {
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: calc(85px);
	width: 100%;
	transition:
		height .2s,
		opacity .5s linear,
		visibility .1s linear;
}

.dropdown_wrap {
	background: #727484;
	width: 100%;
}

.dropdown_wrap ul {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.dropdown_wrap ul::before {
	content: "";
	position: absolute;
	top: -30px;
	right: 45px;
	border: 15px solid transparent;
	border-bottom: 15px solid #727484;
}

.dropdown_wrap ul li {
	padding: 20px 0px 20px 32px;
}

.dropdown_wrap ul li a {
	color: #bfbfbf !important;
	padding: 0 4px;
}

.dropdown_wrap ul li a:hover {
	color: #fff !important;
	opacity: 1;
}

.dropdown_wrap ul li a.active {
	color: #fff !important;
	pointer-events: none;
	text-decoration: none;
	cursor: text;
}

.pc_hide_lang {
	display: none;
}

/* Fixed */
#top-head.fixed {
	/*	margin-top: 0;*/
	/*	top: 0;*/
	/*	position: fixed;*/
	/*	padding: 25px 0;*/
	/*	height: 84px;*/
	/*	background: #08121E;*/
	/*	transition: top 0.35s ease-in;*/
	/*	-webkit-transition: top 0.35s ease-in;*/
	/*	-moz-transition: top 0.35s ease-in;*/
}

#top-head.fixed .logo {}

#top-head.fixed #global-nav>ul li a {
	/*	padding: 0 18px;*/
}

#top-head.fixed #global-nav>ul li.icon-link a {
	/*	padding: 0 12px;*/
}

#top-head.fixed #global-nav>ul li.icon-link a.twitter-icon {
	/*	padding: 0 12px 0 32px;*/
}

/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 32px;
	top: 19px;
	width: 26px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}

#nav-toggle div {
	position: relative;
}

#nav-toggle span {
	display: block;
	position: absolute;
	height: 1px;
	width: 100%;
	background: #fff;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
	top: 0;
}

#nav-toggle span:nth-child(2) {
	top: 10px;
	left: -10px;
}

#nav-toggle span:nth-child(3) {
	top: 20px;
}

#baguetteBox-overlay .full-image img {
	max-height: 80% !important;
}

/* ================================================================================ */
/*		media screen																	*/
/* ================================================================================ */
@media screen and (max-width: 1160px) {

	/*	----	ヘッダー	----	*/
	#global-nav>ul li a {}

	#top-head.fixed #global-nav>ul li a {
		padding: 0 10px;
	}
}

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

	/*	----	汎用	----	*/
	.parts_list.divided6.circle-li>li {
		font-size: 1em;
	}

	.parts_list.ma15>li.plan_wrap {
		width: calc(100% / 2 - 30px);
	}

	/*	----	レイアウト	----	*/
	.side-column {
		width: 320px;
	}
}

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

	/*	----	ヘッダー	----	*/
	#global-nav>ul li a {
		padding: 0 8px;
	}

	#global-nav>ul li.icon-link a {
		padding: 0 8px;
	}

	#global-nav>ul li.active span {
		padding: 0 12px;
	}

	#global-nav>ul li.icon-link a.twitter-icon {
		padding: 0 8px 0 24px;
	}

	#top-head.fixed #global-nav>ul li a {
		padding: 0 8px;
	}

	#top-head.fixed #global-nav>ul li.icon-link a {
		padding: 0 8px;
	}

	#top-head.fixed #global-nav>ul li.icon-link a.twitter-icon {
		padding: 0 8px 0 24px;
	}

	/*	----	汎用	----	*/
	.parts_list.divided6>li {
		width: calc(100% / 4 - 10px);
	}

	.parts_list.divided6.circle-li>li {
		padding-bottom: calc(100% / 4 - 10px);
		font-size: 1.1em;
	}

	.parts_list.price_list {
		max-width: 600px;
		margin: auto;
	}

	.parts_list.price_list>li {
		width: calc(100% / 2 - 16px);
		margin: 0;

	}

	.price_list .ttl-en {
		font-size: 1.9em;
	}

	/*	----	ギャラリー	----	*/
	.gallery_list.quarter>li {
		width: calc(100% / 3 - 20px);
	}

}

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

	/*	----	ヘッダー	----	*/
	#global-nav>ul li a {
		padding: 0 6px;
		font-weight: bold;
	}

	#top-head.fixed #global-nav>ul li a {
		padding: 0 6px;
	}

	/*	----	ヘッダー	----	*/
	.mainvisual {
		margin-top: 60px;
		height: calc(100% - 60px);
	}

	.mainvisual-video {
		height: calc(100vh - 60px);
	}

	.front_logo {
		padding: 16px 32px;
	}

	#top-header-wrap {
		margin-top: 60px;
	}

	#top-header-wrap2 {
		margin-top: 60px;
		height: 780px;
	}

	.top-header2 {
		width: calc(100vw - 85px);
		height: 650px;
	}

	.top-header2::after {
		width: calc(100vw - 130px);
		height: 700px;
	}

	#from-scrolldown2 {
		padding-top: calc(400px + 60px);
		background: linear-gradient(180deg, transparent 0%, transparent 460px, #08121E 460px, #08121E 460px);
	}

	#top-head,
	.inner {
		width: 100%;
		padding: 0;
		height: auto;
	}

	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
	}

	/* Fixed reset */
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}

	#mobile-head {
		background: #000;
		width: 100%;
		height: 60px;
		z-index: 999;
		position: relative;
	}

	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left: 32px;
	}

	#top-head .logo img {
		height: 40px;
		margin-top: 10px;
	}

	#global-nav {
		position: absolute;
		top: 60px;
		background-color: rgba(0, 0, 0, .7);
		width: 15em;
		right: -15em;
		text-align: center;
		padding: 9px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		text-align: left;
		height: calc(100vh - 60px);
	}

	#global-nav>ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		font-size: 14px;
	}

	#global-nav>ul {
		top: 0;
		transform: none;
		-webkit- transform: none;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		height: 100%;
		justify-content: flex-start;
	}

	#global-nav>ul li {
		float: none;
		position: static;
		border: none;
		margin: 0;
		width: 100%;
		display: block;
		font-size: 1.3em;
	}

	#global-nav>ul li.active {
		border: none;
		background: none;
	}

	#global-nav>ul li:not(.lang):hover {
		background: none;
	}

	#global-nav>ul li.lang {
		width: 100%;
	}

	.langIcon::before {
		top: .5em;
		right: 7.5em;
	}

	#top-head #global-nav>ul li.active span,
	#top-head #global-nav>ul li a,
	#top-head.fixed #global-nav>ul li.icon-link a.twitter-icon,
	#top-head.fixed #global-nav>ul li.icon-link a,
	#top-head.fixed #global-nav>ul li a {
		width: 100%;
		display: block;
		color: #fff;
		padding: 16px 0;
	}

	#global-nav>ul li.lang>a {
		padding-left: 2em !important;
		padding: 18px 0 18px 1.75em !important;
		display: inline-block !important;
	}

	#top-head #global-nav>ul li.active span {
		background: #000;
		text-decoration: none;
	}

	#top-head #global-nav>ul li.active a {
		/*	background: #000; */
		text-decoration: none;
		color: #727484;
	}

	#top-head #global-nav>ul>li>a:hover {
		opacity: 0.7;
	}

	#top-head .highlight-wrap::before {}

	#top-head #global-nav>ul>li>a.langIcon {
		pointer-events: none;
		color: #fff;
	}

	.langIcon::before {
		background-color: #fff;
	}

	.dropdown_list {
		display: none;
	}

	.pc_hide_lang {
		display: block;
		padding: 0 16px 0;
		font-size: .8em;
	}

	.pc_hide_lang>ul {
		background: #727484;
		position: relative;
		margin-top: 8px;
	}

	.pc_hide_lang>ul::before {
		content: "";
		position: absolute;
		top: -30px;
		left: 50%;
		transform: translateX(-50%);
		-webkit- transform: translateX(-50%);
		border: 15px solid transparent;
		border-bottom: 15px solid #727484;
	}

	#top-head #global-nav>ul li .pc_hide_lang a {
		color: #bfbfbf;
	}

	#top-head #global-nav>ul li .pc_hide_lang a.active {
		color: #fff;
		pointer-events: none;
		text-decoration: none;
		cursor: text;
	}

	#top-head #global-nav>ul li .pc_hide_lang a:hover {
		color: #fff;
	}

	#global-nav>ul li.icon-link {
		display: inline-block;
		position: relative;
		width: 100%;
		height: 40px;
		background: transparent;
		right: auto;
		margin: 5px 0 10px;
	}

	#nav-toggle-wrap {
		position: absolute;
		right: 0;
		top: 0;
		display: inline-block;
		width: 60px;
		height: 60px;
	}

	#nav-toggle {
		display: block;
	}

	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}

	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}

	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}

	/* #global-nav スライドアニメーション */
	.open #global-nav {
		/* #global-nav top + #mobile-head height */
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	#top-header-wrap {}

	/* breadcrumb */
	.breadcrumb-wrap {}

	.streetview_iframe::after {
		background-size: 160px auto;
	}

	.virtualtour_iframe::after {
		background-size: 160px auto;
	}
}

@media screen and (max-width: 910px) {
	.parts_list.case_list {
		max-width: 800px;
		margin: auto;
	}

	.parts_list.case_list>li {
		width: calc(100% / 2 - 30px);
	}
}

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

	/*	----	レイアウト	----	*/
	.column_wrapper>.main-column,
	.column_wrapper>.side-column {
		display: block;
		padding: 16px;
	}

	.column_wrapper>.main-column {
		padding-bottom: 0;
	}

	.column_wrapper>.side-column {
		display: table;
		padding-top: 0;
	}

	.column_wrapper>div:last-child,
	.column_wrapper2>div:last-child {
		padding-bottom: 0;
	}

	.side-column {
		width: 100%;
	}

	#side {
		display: table-cell;
		width: 50%;
		vertical-align: top;
		padding: 0 16px 0 16px;
	}

	#side:first-child {
		padding: 0 0 0 16px;
	}

	/*	----	汎用	----	*/
	.tab-br {
		display: inline-block !important;
	}

	.wrap02 {
		margin: 0 0 48px;
	}

	.parts_list>li {
		width: calc(100% / 2 - 30px);
	}

	.parts_list.quarter.circle-li {
		margin: -10px -10px 0px;
	}

	.parts_list.quarter.circle-li>li {
		margin: 10px 10px 0px;
		width: calc(100% / 4 - 20px);
		padding-bottom: calc(100% / 4 - 20px);
		font-size: 1.1em;
	}

	/*	----	price	----	*/
	.price_area .price_list>li {
		padding: 1.5em;
	}

	.price_area .price_list>li .price {
		width: 100%;
		text-align: right;
	}

	/*	----	service	----	*/
	.flow-wrap .txt {
		flex-basis: 65%;
		margin-left: -30%;
	}

	.flow-wrap:nth-child(2n+1) .txt {
		margin-right: -30%;
	}

	/*	----	CAST	----	*/
	#cast_photo_list li {
		width: 25%;
	}

	#cast_prof_list li a {
		width: 33.3333%;
	}

	/*	----	ギャラリー	----	*/
	.gallery_list>li {
		width: calc(100% / 2 - 20px);
	}

	.gallery_list.ma30>li {
		width: calc(100% - 30px);
	}

	.gallery_list.ma30>li:last-child {
		width: calc(100% - 30px);
	}


	/*	----	フッター	----	*/
	footer {}

	#foot_menu ul:not(.policy) {
		padding: 32px 0 0;
	}

	#foot_menu ul li {
		height: 44px;
		line-height: 44px;
	}

	#foot_menu ul li a {
		height: 44px;
	}

	#foot_menu ul.policy {
		padding: 0 0 0;
	}

	.foot-address .parts_list.ma15>li {
		width: calc(100% - 10px);
	}

	/*	----	Twitter埋め込み	----	*/
	iframe.twitter-timeline {
		height: 550px !important;
	}
}

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

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

	/*	----	店内写真ー	----	*/
	.photo_list li {
		width: 50%;
	}

	/*	----	汎用	----	*/
	.tab-none {
		display: none !important;
	}

	.parts_list>li {
		width: calc(100% / 2 - 30px);
	}

	.parts_list.one_third>li {
		width: calc(100% / 1 - 30px);
		padding: 0 50px;
	}

	.parts_list.half>li {}

	.parts_list.quarter>li {
		width: calc(100% / 3 - 30px);
	}

	.parts_list.price_disp {
		max-width: 385px;
		margin: 10px auto;
	}

	.parts_list.two-to-one>li {
		width: calc(100% - 30px);
	}

	.parts_list.two-to-one>li:first-child {
		width: calc(100% - 30px);
	}

	.parts_list.divided6.circle-li>li {
		font-size: 1em;
	}

	.parts_list.ma15>li.plan_wrap {
		width: calc(100% / 1 - 24px);
	}

	.parts_list.ma15>li {
		width: calc(100% / 2 - 30px);
	}

	.bg-05 {
		padding: 16px 16px 24px;
	}

	.parts_list.plan_list {
		margin: 0px -8px 0px;
	}

	.parts_list.plan_list>li {
		width: calc(100% / 2 - 16px);
		margin: 8px;
	}

	.parts_list.function_list>li:nth-child(2)>img:first-child {
		margin-top: 0;
	}

	.parts_list.function_list>li:nth-child(3)>img:first-child {
		margin-top: 0;
	}

	.plan_wrap:first-child .plan_image:nth-child(5) {
		display: none;
	}

	.plan_wrap:first-child .plan_image:nth-child(6) {
		display: none;
	}

	.parts_list.flow_list>li {
		width: calc(100% / 1 - 30px);
	}

	/*	----	price	----	*/
	.price_area .price_list>li {
		padding: 1.5em 1em;
	}

	/*	----	ギャラリー	----	*/
	.gallery_list.quarter>li {
		width: calc(100% / 2 - 20px);
	}

	.gallery_list.half>li {
		width: calc(100% - 30px);
	}

	/*	----	RECRUIT	----	*/
	.entry-wrap ul li a img {
		width: 90%;
	}
}

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

	/*	----	汎用	----	*/
	.parts_list.quarter.circle-li {
		margin: -10px -10px 0px;
	}

	.parts_list.quarter.circle-li>li {
		margin: 10px 10px 0px;
		width: calc(100% / 2 - 20px);
		padding-bottom: calc(100% / 2 - 20px);
	}

	/*	----	service	----	*/
	.flow-wrap {
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		margin: 32px 0 64px;
	}

	.flow-wrap figure {
		flex-basis: 100%;
	}

	.flow-wrap .txt {
		flex-basis: 100%;
		margin-left: 0;
		margin: 32px 0 -16px;
	}

	.flow-wrap:nth-child(2n+1) .txt {
		margin-right: 0;
	}

	/*	----	フッター	----	*/
	#foot_menu ul li {}

	#foot_menu ul li a {}
}

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

	/*	----	タイトル	----	*/
	.tit-01 {
		width: 100%;
		max-width: 400px;
	}

	.tit-01 span {
		display: block;
	}

	.tit-01 a[href^="tel:"] {
		font-size: 1.1em;
	}

	/*	----	レイアウト	----	*/
	#side {
		display: inline-block;
		width: 100%;
	}

	#side:first-child {
		padding: 0 16px 16px 16px;
	}

	/*	----	汎用	----	*/
	.parts_list.divided6>li {
		width: calc(100% / 3 - 10px);
	}

	.parts_list.divided6.circle-li>li {
		padding-bottom: calc(100% / 3 - 10px);
		font-size: 1.1em;
	}

	.parts_list.case_list>li {
		width: calc(100% - 10px);
		max-width: 400px;
	}

	.parts_list.option_list>li {
		width: calc(100% / 1 - 30px);
	}

	/*	----	price	----	*/
	.price_area .price_list>li {
		width: 100%;
		border-right: none !important;
		padding: 1.5em .5em;
	}

	.price_area .price_list>li:nth-child(1) {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:nth-child(3) {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:nth-child(5) {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:nth-child(7) {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:nth-child(1).none {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:nth-child(3).none {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:nth-child(5).none {
		border-bottom: 2px solid #92a6af;
	}

	.price_area .price_list>li:last-child {
		border-bottom: none;
	}

	/*	----	CAST	----	*/
	#cast_photo_list li {
		width: 33.3333%;
	}

	/*	----	ギャラリー	----	*/
	.gallery_list>li {
		width: calc(100% / 1 - 10px);
	}

	.gallery_list.cast_list>li {
		width: calc(100% / 2 - 10px);
	}

	/*	----	フォーム	----	*/
	#mf_wrapper p.taCenter {
		text-align: left !important;
	}

	#mf_wrapper p.t-foot {
		padding: 16px;
	}

	/*	----	RECRUIT	----	*/
	.entry-wrap span.fsP1 {
		font-size: 1em !important;
	}

	.entry-wrap ul li a {
		padding: 8px 4px;
	}

}

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

	/*	----	汎用	----	*/
	.parts_list.divided6.circle-li>li {
		font-size: 1em;
	}

	/*	----	フッター	----	*/
	#foot_menu ul li {}

	#foot_menu ul li:last-child {
		/*	width: 100%;*/
	}

	#foot_menu ul li a {
		padding: 0 8px;
	}

	.streetview_iframe::after {
		background-size: 120px auto;
	}

	.virtualtour_iframe::after {
		background-size: 120px auto;
	}
}

@media screen and (max-width: 480px) {
	a[href^="tel:"] {
		pointer-events: auto;
		cursor: pointer;
		text-decoration: underline;
	}

	.taCenter.spLeft {
		text-align: left !important;
	}

	#top-head.fixed .logo,
	#top-head .logo {
		left: 16px;
	}

	#nav-toggle {
		right: 16px;
	}

	.front_logo {
		padding: 16px;
	}

	/*	----	メインビジュアル	----	*/
	.mainvisual {
		height: calc((100vh - 60px) / 2);
	}

	.mainvisual-video {
		height: calc((100vh - 60px) / 2);
	}

	#from-scrolldown {
		padding-top: calc((100vh / 2) + (60px / 2));
		background: linear-gradient(180deg, transparent 0%, transparent calc((100vh / 2) + (60px / 2)), #000 calc((100vh / 2) + (60px / 2)), #000 100vh);
	}

	/*	----	下層ページヘッダー	----	*/
	#top-header-wrap2 {
		height: 540px;
	}

	.top-header2 {
		width: calc(100vw - 55px);
		height: 420px;
	}

	.top-header2::after {
		width: calc(100vw - 60px);
		height: 480px;
	}

	#from-scrolldown2 {
		padding-top: calc(300px + 60px);
		background: linear-gradient(180deg, transparent 0%, transparent 360px, #08121E 360px, #08121E 360px);
	}

	/*	----	タイトル	----	*/
	.tit-01 {
		max-width: 300px;
	}

	.entry-wrap .tit-01 {
		max-width: 100%;
	}

	.tit-02 {
		line-height: 1.3em;
	}

	.ttl-en {
		font-size: 2.4em;
	}

	#top-head #global-nav>ul li.active span,
	#top-head #global-nav>ul li a,
	#top-head.fixed #global-nav>ul li.icon-link a.twitter-icon,
	#top-head.fixed #global-nav>ul li.icon-link a,
	#top-head.fixed #global-nav>ul li a {
		padding: 12px 0;
	}

	/*	----	レイアウト	----	*/
	.column_wrapper>.main-column,
	.column_wrapper>.side-column {
		display: block;
	}

	.column_wrapper>.main-column {
		padding: 16px 8px 0 !important;
	}

	.column_wrapper2>.main-column2 {
		padding: 0 8px 0 !important;
	}

	.column_wrapper>.side-column,
	.column_wrapper2>.side-column2 {
		padding: 0 8px 0 !important;
	}

	.side-column {
		width: 100%;
	}

	.wrapper>.top-column {
		padding: 16px;
	}

	#main,
	#side {
		padding: 8px;
	}

	#side:first-child {
		padding: 8px;
	}

	/*	----	汎用	----	*/
	.pc-none {
		display: inline-block !important;
	}

	.sp-none {
		display: none !important;
	}

	.sp-br {
		display: inline-block !important;
	}

	.sp-br2 {
		display: block !important;
	}

	.wrap {}

	.linkbtn {
		min-width: auto;
		width: 90%;
	}

	/*	----	汎用	----	*/
	.parts_list>li {
		width: calc(100% - 10px);
	}

	.parts_list.half>li {
		width: calc(100% - 10px);
		padding: 5px 0px;
	}

	.parts_list.quarter>li {
		width: calc(100% - 10px);
		padding: 0 50px;
	}

	.parts_list.divided6>li {
		width: calc(100% / 2 - 10px);
	}

	.parts_list.quarter.circle-li>li,
	.parts_list.divided6.circle-li>li {
		padding-bottom: 6em;
		font-size: 1.1em;
		border-radius: 1em;
	}

	.parts_list.ma15>li {
		width: calc(100% - 10px);
	}

	.parts_list.price_list>li {
		width: calc(100% / 2);
	}

	.parts_list.case_list>li {
		width: calc(100% - 10px);
		max-width: 260px;
	}

	.bg-05 {
		padding: 16px 10px 24px;
	}

	.parts_list.plan_list {
		margin: 0px -4px 0px;
	}

	.parts_list.plan_list>li {
		width: calc(100% / 2 - 12px);
		margin: 6px;
		padding: 16px 4px;
	}

	.parts_list.plan_list>li .tit-06.fsP1 {
		font-size: 1em !important;
	}

	/*	----	TOPページ	----	*/
	img.function_icon {
		max-width: 64px;
	}

	.top-column p {
		text-align: left;
	}

	/*	----	service	----	*/
	.flow-wrap .txt {
		padding: 16px;
	}

	.linkbtn_wrap_outer2 span.linkbtn_title {
		padding: 8px 16px;
	}

	/*	----	店内写真ー	----	*/
	.photo_list li {
		width: 50%;
	}

	.photopage.photo_list li {
		width: 100%;
	}

	/*	----	VRツアー	----	*/
	.streetview_iframe {
		padding: calc(1550 / 1000 * 100%) 0 0;
	}

	.virtualtour_iframe {
		padding: calc(1550 / 1000 * 100%) 0 0;
	}

	/*	----	NEWS	----	*/
	.thumbNailWrap {
		width: 90px;
		height: 90px;
	}

	.news_title {
		margin: 0px 0 0;
	}

	.news_comment {
		height: 2.7em;
		-webkit-line-clamp: 2;
		line-height: 1.35em;
		margin: 2px 0 0;
	}

	.news_ymd {
		line-height: 1.5;
		vertical-align: top;
	}

	.news_catName {
		vertical-align: top;
	}

	.pager {
		padding: 16px 0;
		text-align: center !important;
		margin: 0 -6px;
	}

	.pager a {
		margin: 4px 6px;
	}

	/*	----	CAST	----	*/
	#cast_prof_list li {
		font-size: 14px;
		display: block;
		width: 100%;
	}

	/*	----	RECRUIT	----	*/
	#recruit_list {}

	#recruit_list li {
		font-size: 14px;
		width: 100%;
	}

	#recruit_list li:first-child {
		padding: 0 0 16px 16px;
	}

	.entry-wrap ul li a {
		padding: 8px 0;
	}

	.entry-wrap ul li a img {
		width: 100%;
		margin: 8px 0;
	}

	.entry-wrap ul li a span {}

	/*	----	breadcrumb	----	*/
	.breadcrumb {
		padding: 10px 16px 10px;
	}

	.breadcrumb ul li {
		padding-right: 16px;
	}

	.breadcrumb ul li:after {
		top: 1px;
		right: 0px;
	}

	/*	----	フッター	----	*/
	footer {
		padding: 48px 16px 0;
	}

	footer .address {
		font-size: 0.95em;
	}

	#foot_menu ul {}

	#foot_menu ul li {
		font-size: 14px;
	}

	#foot_menu ul li:last-child {}

	#copyright {
		margin: 48px -16px -8px;
	}

	#topBtn {
		width: 50px;
		height: 50px;
		right: 16px;
		bottom: 16px;
	}

}