@charset "UTF-8";
/*! ========================================
※※※※※※※※※※※※※※※※※※※※※※※※※※※
  このCSSファイルはSassから生成されていますので、
  編集しないようご注意ください。 by omukai
※※※※※※※※※※※※※※※※※※※※※※※※※※※
========================================= */
/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
}

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

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

img {
	vertical-align: middle;
}

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

select, option, input:not([type=checkbox]):not([type=radio]), textarea, button {
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

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

[type=submit], [type=button], [type=reset], [type=file], button {
	cursor: pointer;
}

:focus {
	outline: none;
}

/*--------------------------------
common
--------------------------------*/
body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
	color: #333;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

a {
	color: #66f;
	text-decoration: none;
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}
a:hover {
	color: #c00;
}

button,
[type=submit],
[type=reset] {
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}

strong {
	color: #002662;
	font-weight: inherit;
}

.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}

.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.has-max {
	height: auto;
	max-width: 100%;
}

.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.align-item-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-end {
	justify-content: flex-end;
}

.img-wrapper {
	position: relative;
}
.img-wrapper .caption {
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}

.inline-block {
	display: inline-block;
}

.grid-wrapper {
	display: grid;
}

/*--------------------------------
layout
--------------------------------*/
.scroll-disabled {
	height: 100%;
	overflow: hidden;
}

.progress {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #3c7ea0;
}
.salon-wrap .progress {
	background: #333;
	background-size: 400% auto;
}
.salon-wrap.matsuyamachi .progress {
	background-position: 33.7% 29%;
}
.salon-wrap.tanimachi4 .progress {
	background-position: 38% 23.6%;
}
.salon-wrap.hommachi .progress {
	background-position: 49.6% 28.6%;
}
.salon-wrap.komiyacho .progress {
	background-position: 52.3% 41%;
}
.salon-wrap.the-b-kita .progress {
	background-position: 47% 17.5%;
}
.salon-wrap.the-b-momo .progress {
	background-position: 57% 29%;
}
.salon-wrap.the-b-kusa .progress {
	background-position: 68% 25%;
}

.wrapper {
	overflow: hidden;
}

.container {
	overflow: hidden;
}
.container.has-header {
	padding-top: 180px;
}
@media (max-width: 767px) {
	.container.has-header {
		padding-top: 60px;
	}
}

.app-container {
	width: 100%;
	height: 100dvh;
	position: relative;
	overflow: hidden;
}

.scroll-wrapper {
	width: 100%;
	height: 100%;
	overflow: scroll;
}

.inner {
	margin: 0 auto;
	width: calc(100% - 32px);
	max-width: 1200px;
}

.inner-narrow {
	max-width: 700px;
}

.inner-wide {
	max-width: 1500px;
}

.inner-fit {
	width: 100%;
	max-width: none;
}

.inner-full {
	max-width: none;
}

.general-section {
	position: relative;
}
.general-section .inner {
	padding: 80px 0;
}
@media (max-width: 991px) {
	.general-section .inner {
		padding: 32px 0;
	}
}
.general-section .inner + .inner {
	padding-top: 0;
}
.general-section .inner.mb-0 {
	padding-bottom: 0;
}
.general-section .inner-min {
	padding: 32px 0;
}
@media (max-width: 991px) {
	.general-section .inner-min {
		padding: 16px 0;
	}
}

.general-parts {
	margin-bottom: 32px;
}

.btn-space {
	margin: 16px 0 0;
	text-align: center;
}
.btn-space.btn-space-flex {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.has-gap {
	gap: 32px;
}
@media (max-width: 991px) {
	.has-gap {
		gap: 16px;
	}
}

.col-2 {
	width: 50%;
}
.has-gap > .col-2 {
	width: calc(50% - 16px);
}

.col-3 {
	width: 33.3333333333%;
}
.has-gap > .col-3 {
	width: calc(33.3333333333% - 22px);
}

.col-4 {
	width: 25%;
}
.has-gap > .col-4 {
	width: calc(25% - 24px);
}

.col-5 {
	width: 20%;
}
.has-gap > .col-5 {
	width: calc(20% - 26px);
}

@media (max-width: 991px) {
	.col-2,
	.has-gap > .col-2 {
		width: 100%;
	}
	.col-3,
	.has-gap > .col-3 {
		width: 100%;
	}
	.sp-col-2 {
		width: 50%;
	}
	.has-gap > .sp-col-2 {
		width: calc(50% - 8px);
	}
}
/*--------------------------------
component
--------------------------------*/
.primary-heading {
	margin-bottom: 0.8em;
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.primary-heading {
		font-size: 2rem;
	}
}
.primary-heading img {
	vertical-align: baseline;
}

.secondary-heading {
	margin-bottom: 0.8em;
	font-size: 2.5rem;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.secondary-heading {
		font-size: 1.375rem;
	}
}

.tertiary-heading {
	margin-bottom: 0.8em;
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.tertiary-heading {
		font-size: 1.125rem;
	}
}

.page-title {
	padding: 0 0 32px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}
@media (max-width: 991px) {
	.page-title {
		font-size: 1rem;
	}
}

.primary-lead {
	display: block;
	font-size: 1.625rem;
	font-weight: 400;
}
@media (max-width: 991px) {
	.primary-lead {
		font-size: 0.75rem;
	}
}

.lead {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.lead {
		font-size: 1rem;
	}
}

.note {
	margin-bottom: 1em;
	font-size: 1rem;
	line-height: 1.8;
}
.btn + .note {
	margin-top: 1em;
}
@media (max-width: 991px) {
	.note {
		font-size: 0.875rem;
	}
}

ul.note li {
	list-style: disc inside;
}

.small-note {
	font-size: 0.875rem;
}
@media (max-width: 991px) {
	.small-note {
		font-size: 0.75rem;
	}
}

.caption {
	margin: 0.4em 0;
	font-size: 0.75rem;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.caption {
		font-size: 0.625rem;
	}
}

[type=text],
[type=search],
[type=password],
[type=tel],
[type=email],
[type=num],
[type=date],
select,
textarea {
	margin-right: 4px;
	padding: 12px 8px;
	max-width: 100%;
	background: #f3f3f3;
	font-size: 1.125rem;
	font-weight: inherit;
	color: inherit;
	line-height: 1.3;
	border-radius: 8px;
	vertical-align: middle;
}
[type=text]:last-child,
[type=search]:last-child,
[type=password]:last-child,
[type=tel]:last-child,
[type=email]:last-child,
[type=num]:last-child,
[type=date]:last-child,
select:last-child,
textarea:last-child {
	margin-right: 0;
}
[type=text]:focus,
[type=search]:focus,
[type=password]:focus,
[type=tel]:focus,
[type=email]:focus,
[type=num]:focus,
[type=date]:focus,
select:focus,
textarea:focus {
	background-color: #ebebeb;
}

select {
	padding: 6px 32px 6px 12px;
	background: url(images/select_arrow.png) no-repeat right 8px center #fff;
	background-size: 14px auto;
	text-indent: 0.01px;
	text-overflow: "";
	border: 1px solid #ccc;
	border-radius: 8px;
}

textarea {
	min-height: 100px;
}

.text-150 {
	width: 150px;
}

.text-180 {
	width: 180px;
}

.text-200 {
	width: 200px;
}

.text-fit {
	width: 100%;
}

.btn {
	padding: 8px 16px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}

.submit-btn {
	padding: 12px 24px;
	min-width: 140px;
	background: #21acea;
	position: relative;
	color: #fff;
	font-size: 1.25rem;
	border-radius: 40px;
	box-shadow: 0 0 12px rgba(158, 221, 255, 0.5) inset, 1px 3px 6px rgba(0, 147, 181, 0.27);
}
.submit-btn:hover {
	background: #50bdee;
	box-shadow: 0 0 12px rgba(196, 234, 255, 0.5) inset, 0 0 12px rgba(1, 141, 255, 0.4);
}
.submit-btn:disabled {
	opacity: 0.3;
}
.submit-btn:hover:not(:disabled) {
	color: #fff;
}
.submit-btn svg {
	margin: -20px 0 0 -20px;
	width: 40px;
	height: 40px;
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	animation: loader4 1.5s linear infinite;
	transform-origin: center center;
}
.submit-btn.is-submit svg {
	display: block;
}
.submit-btn.is-submit span {
	opacity: 0;
}

@keyframes loader4 {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}
.cancel-btn {
	padding: 12px 24px;
	background: #9a9a9a;
	position: relative;
	color: #fff;
	font-size: 1.125rem;
	border-radius: 40px;
	box-shadow: 0 0 12px rgba(244, 244, 244, 0.5) inset;
}
.cancel-btn:hover {
	background: #aeaeae;
	color: #fff;
}

.general-btn {
	margin: auto;
	padding: 0 16px;
	min-width: 300px;
	max-width: 360px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	position: relative;
	z-index: 1;
	background: #002662;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	border-radius: 8px;
	box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.16);
}
.general-btn:hover {
	opacity: 0.8;
	color: #fff;
}
.general-btn + .general-btn {
	margin-top: 16px;
}

.chat-btn {
	background: #f0d32e;
	color: #2c2c2c;
}
.chat-btn:hover {
	color: #2c2c2c;
}

.tel-btn {
	gap: 8px;
	background-color: #8cc25f;
	color: #fff;
}

.reserve-btn {
	background-color: #fc8aa1;
	color: #fff;
}

.general-box {
	padding: 32px 16px;
	background: #fff;
}

.video-wrapper {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe,
.video-wrapper video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.loading {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
}

.bg-light {
	background: #f3f3f3;
}

.bg-dark {
	background: #384250;
	color: #fff;
}

.bg-gray {
	background: #f2f2f2;
}

.navigation-bar .logo {
	margin: 16px;
	padding: 0 16px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
	background: #fff;
	font-size: 0.75rem;
	color: #002662;
	border-radius: 40px;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2);
	transform: translate(0, -100px);
	transition: transform 0.3s ease-out;
}
.navigation-bar .logo a {
	display: block;
}
.navigation-bar .logo a img {
	vertical-align: baseline;
}
.app-start .navigation-bar .logo {
	transform: translate(0, 0);
}
.navigation-bar .hamburger {
	width: 50px;
	height: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 10;
	cursor: pointer;
	transform: translate(0, -100px);
	transition: transform 0.3s ease-out;
}
.navigation-bar .hamburger i {
	width: 30px;
	height: 2px;
	display: block;
	border-radius: 2px;
	content: "";
	background: #fff;
	transition: all 0.6s cubic-bezier(0.61, 0.04, 0.46, 0.99);
}
.is-open .navigation-bar .hamburger i {
	background: #333;
}
.is-open .navigation-bar .hamburger i:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}
.is-open .navigation-bar .hamburger i:nth-child(2) {
	opacity: 0;
}
.is-open .navigation-bar .hamburger i:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}
@media (max-width: 767px) {
	.navigation-bar .hamburger {
		top: 8px;
		right: 8px;
	}
}
.app-start .navigation-bar .hamburger {
	transform: translate(0, 0);
}

.global-nav {
	width: 100%;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	grid-template-columns: 1fr;
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(15px) saturate(2);
	backdrop-filter: blur(15px) saturate(2);
	overflow-y: auto;
	transform: translate3d(100%, 0, 0);
	transition: transform 0.6s cubic-bezier(0.61, 0.04, 0.46, 0.99);
}
@media (min-width: 992px) {
	.global-nav {
		grid-template-columns: 1fr 520px;
	}
}
.is-open .global-nav {
	transform: translate3d(0, 0, 0);
}

.local-nav-group .nav-list {
	border-bottom: 1px solid #ccc;
}
.local-nav-group .nav-link {
	padding: 0 32px;
	height: 50px;
	display: flex;
	align-items: center;
	background: url(../images/icon-nav.svg) no-repeat right 16px center;
	color: #333;
	font-size: 1rem;
	line-height: 1.3;
}
.local-nav-group .nav-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
	background-position: right 12px center;
	color: #333;
}
@media (min-width: 992px) {
	.local-nav-group {
		overflow-y: auto;
		padding: 100px 0;
	}
}

@media (min-width: 992px) {
	.local-nav-container {
		padding: 0 64px;
		justify-content: center;
		gap: 64px;
	}
}

.nav-title {
	padding: 40px 16px 16px;
	border-bottom: 1px solid #ccc;
	font-size: 0.875rem;
}
.nav-title span {
	display: flex;
	align-items: center;
	gap: 8px;
}
@media (max-width: 991px) {
	.nav-title {
		padding-top: 64px;
		border-bottom: none;
		background: #ddd;
	}
}

.nav-list-title {
	padding: 16px 32px;
	background-color: #ddd;
	font-weight: 600;
}

.salon-menus,
.building-menus {
	max-width: 320px;
	min-width: 260px;
	flex: 1;
}
@media (max-width: 991px) {
	.salon-menus,
	.building-menus {
		max-width: none;
		min-width: auto;
		flex: auto;
		width: 100%;
	}
}

.top .salon-menus {
	display: none;
}

.btn-nav-group {
	padding: 32px 16px;
}
@media (min-width: 992px) {
	.btn-nav-group {
		padding-top: 100px;
		background: #ebebeb;
	}
}

.footer-nav {
	padding: 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	z-index: 8;
	opacity: 0;
}
@media (max-width: 767px) {
	.footer-nav {
		bottom: 72px;
	}
}
.app-start .footer-nav {
	opacity: 1;
}

.circle-btn {
	padding: 0;
	width: 50px;
	display: grid;
	place-items: center;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.16);
	visibility: hidden;
	opacity: 0;
}
.is-zoom .circle-btn, .salon-wrap .circle-btn {
	visibility: visible;
	opacity: 1;
}

.btn-label {
	margin-top: 4px;
	font-size: 0.625rem;
	color: #fff;
	text-align: center;
	opacity: 0;
}
.is-zoom .btn-label, .salon-wrap .btn-label, .help-btn .btn-label {
	visibility: visible;
	opacity: 1;
}

.footer-container {
	padding: 86px 12px 40px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.00709) 10.47%, hsla(0, 0%, 0%, 0.02755) 19.56%, hsla(0, 0%, 0%, 0.06016) 27.58%, hsla(0, 0%, 0%, 0.1037) 34.81%, hsla(0, 0%, 0%, 0.15697) 41.57%, hsla(0, 0%, 0%, 0.21875) 48.13%, hsla(0, 0%, 0%, 0.28782) 54.79%, hsla(0, 0%, 0%, 0.36296) 61.85%, hsla(0, 0%, 0%, 0.44297) 69.61%, hsla(0, 0%, 0%, 0.52662) 78.36%, hsla(0, 0%, 0%, 0.6127) 88.39%, hsla(0, 0%, 0%, 0.7));
	pointer-events: none;
}

.footer {
	padding: 40px 0;
}

.copyright {
	font-size: 0.6875rem;
	font-style: normal;
	color: #fff;
	text-align: center;
}
.footer .copyright {
	color: #333;
}

/*--------------------------------
opening
--------------------------------*/
.opening .video-wrapper {
	padding-top: 0;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	pointer-events: none;
}
.opening .video-wrapper video {
	object-fit: cover;
}

.glass {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(255, 255, 255, 0.65);
	-webkit-backdrop-filter: blur(7px) saturate(2);
	backdrop-filter: blur(7px) saturate(2);
}

.logo-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.logo-container .logo {
	width: 80%;
	max-width: 400px;
}

.login-form-box {
	margin: auto;
	padding: 32px;
	width: calc(100vw - 32px);
	max-width: 740px;
	max-height: 78vh;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 5;
	background: #fff;
	border-radius: 8px;
	box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	opacity: 0;
	transform: translate(0, -10%);
	transition: opacity 0.3s ease-out 2s, transform 0.3s ease-out 2s;
}
.is-entry .login-form-box {
	opacity: 1;
	transform: translate(0, -50%);
}
.login-form-box .underline {
	cursor: pointer;
}
.login-form-box .underline:hover {
	color: #c00;
}
.login-form-box a {
	text-decoration: underline;
}
.login-form-box a.btn {
	text-decoration: none;
}

.login-form-content {
	margin: 24px 0 32px;
	gap: 16px;
}
@media (min-width: 768px) {
	.login-form-content {
		justify-content: space-between;
	}
}
@media (max-width: 767px) {
	.login-form-content .flex-item {
		width: 100%;
	}
}

.or-label {
	display: grid;
	place-items: center;
	font-weight: 700;
}
@media (max-width: 767px) {
	.or-label {
		width: 100%;
	}
}

.form-heading {
	margin-bottom: 0.8em;
	font-size: 0.875rem;
	line-height: 1.4;
}

.form-item {
	margin: 16px 0;
}

.form-label {
	margin-bottom: 8px;
	display: block;
	font-size: 0.75rem;
}

.q-link {
	margin: 0 2px;
	width: 14px;
	height: 14px;
	display: inline-block;
	position: relative;
	top: -1px;
	line-height: 12px;
	font-size: 11px;
	border: 1px solid;
	border-radius: 50%;
	text-align: center;
	vertical-align: baseline;
}

/*--------------------------------
top
--------------------------------*/
.top {
	height: 100dvh;
	display: grid;
	place-items: center;
}

.salon-wrap {
	height: 100dvh;
	display: grid;
	place-items: center;
}

.island {
	width: 160%;
	position: relative;
	transition: transform 0.6s ease-out;
}
.area-0 .island {
	transform-origin: 30% 20%;
}
.area-1 .island {
	transform-origin: 34% 0%;
}
.area-2 .island {
	transform-origin: 37% 11%;
}
.area-3 .island {
	transform-origin: 62% 18%;
}
.is-zoom .island {
	transform: scale(1.5);
}
.is-more-zoom .island {
	transform: scale(4);
	transition: transform 1s ease-out 0.3, transform-origin 0.5s linear;
}
.the-b-matsu .island {
	transform-origin: 33.7% 29%;
}
.the-bt-tani .island {
	transform-origin: 38% 23.6%;
}
.the-bt-hon .island {
	transform-origin: 49.6% 28.6%;
}
.the-b-komi .island {
	transform-origin: 52.3% 41%;
}
.the-b-sumi .island {
	transform-origin: 55% 39%;
}
.the-b-kita .island {
	transform-origin: 47% 17.5%;
}
.the-b-momo .island {
	transform-origin: 57% 29%;
}
.the-b-kusa .island {
	transform-origin: 68% 25%;
}
@media (max-width: 767px) {
	.island {
		width: 600%;
	}
}

.swipe-hint {
	margin: -50px auto 0;
	width: 20vw;
	max-width: 122px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 5;
	opacity: 0.8;
	pointer-events: none;
}
.swipe-hint.is-animate {
	animation: swipeHint 2.5s linear 1s both;
}
.app-start .swipe-hint {
	display: none;
}

@keyframes swipeHint {
	0% {
		transform: translate(0, 0);
	}
	10% {
		transform: translate(-80px, 0);
	}
	30% {
		transform: translate(80px, 0);
	}
	40%, 50% {
		transform: translate(0, 0);
	}
	60% {
		transform: translate(0, -80px);
	}
	80% {
		transform: translate(0, 80px);
	}
	90% {
		transform: translate(0, 0);
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.pin-markers {
	transition: all 0.3s ease-out;
	pointer-events: none;
}
.is-area .pin-markers {
	opacity: 0;
	visibility: hidden;
}

.pin-marker {
	position: absolute;
	z-index: 1;
	filter: drop-shadow(1px 1px 8px rgba(0, 0, 0, 0.3));
}
.pin-marker .marker-label {
	padding: 0.6em 2em;
	display: inline-block;
	background: radial-gradient(rgba(40, 97, 188, 0) 60%, rgba(40, 97, 188, 0.6) 100%), #002662;
	color: #fff;
	font-size: clamp(1rem, 1.1vw, 1.125rem);
	font-weight: 600;
	white-space: nowrap;
	border: 1px solid #026A98;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}
.app-start .pin-marker .marker-label {
	opacity: 1;
}
.pin-marker .marker-label.coming-soon {
	background: #9a9a9a;
	border: 1px solid #929292;
}
.pin-marker.osaka {
	width: 30%;
	height: 26%;
	left: 30%;
	top: 20%;
}
.pin-marker.hanshin {
	width: 20%;
	height: 13%;
	left: 34%;
	top: 0;
}
.pin-marker.hokusetsu {
	width: 26%;
	height: 15%;
	left: 37%;
	top: 11%;
}
.pin-marker.keiji {
	width: 17%;
	height: 20%;
	left: 62%;
	top: 18%;
}

.marker-link {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.marker-link svg {
	width: 30px;
	height: auto;
	transition: all 0.3s ease-out;
}

.building-marker {
	position: absolute;
	transform: translate(0, -30px);
	transition: all 0.3s ease-out 0.3s;
	z-index: 2;
}
.is-active .building-marker {
	transform: translate(0, 0);
}
.is-active .building-marker:nth-child(1) {
	transition-duration: 400ms;
}
.is-active .building-marker:nth-child(2) {
	transition-duration: 800ms;
}
.is-active .building-marker:nth-child(3) {
	transition-duration: 1200ms;
}
.is-active .building-marker:nth-child(4) {
	transition-duration: 1600ms;
}
.building-marker .marker-label {
	padding: 0.8em 2em;
	display: inline-block;
	position: relative;
	background: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(30px) saturate(1.4);
	backdrop-filter: blur(30px) saturate(1.4);
	color: #333;
	font-size: clamp(0.5rem, 0.7vw, 1rem);
	white-space: nowrap;
	border-radius: 30px;
	transition: background 0.3s ease-out;
	animation: swing 1s ease infinite alternate-reverse;
}
.building-marker .marker-label::after {
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	bottom: -11px;
	content: "";
	border-style: solid;
	border-width: 11px 7px 0 7px;
	border-color: rgba(255, 255, 255, 0.85) transparent transparent transparent;
	-webkit-backdrop-filter: blur(30px) saturate(1.4);
	backdrop-filter: blur(30px) saturate(1.4);
	transform: translateX(-50%);
}
.building-marker .marker-label.soon-contact {
	padding-left: 40px;
	background: url(../images/icon-chat.svg) no-repeat 12px center rgba(255, 216, 0, 0.85);
	background-size: 18px;
	font-size: 14px;
	transition: 0.6s ease-out;
	opacity: 0;
}
.building-marker .marker-label.soon-contact::after {
	border-color: rgba(255, 216, 0, 0.85) transparent transparent transparent;
}
.is-zoom .building-marker .marker-label.soon-contact {
	padding-left: 32px;
	background-size: 14px;
	font-size: 10px;
}
.app-start .building-marker .marker-label.soon-contact {
	opacity: 1;
}
.building-marker.now-contact {
	width: 5%;
	height: 7%;
	left: 23.2%;
	top: 31%;
}
.building-marker.now-contact .marker-link {
	justify-content: flex-start;
}
.building-marker.bt-tani {
	width: 3%;
	height: 10%;
	left: 36.5%;
	top: 19%;
}
.building-marker.bt-tani .marker-link {
	justify-content: flex-start;
}
.building-marker.bt-hon {
	width: 7%;
	height: 13%;
	left: 46.5%;
	top: 21%;
}
.building-marker.bt-hon .marker-link {
	justify-content: flex-start;
}
.building-marker.b-komi {
	width: 7%;
	height: 8%;
	left: 49%;
	top: 37%;
}
.building-marker.b-komi .marker-link {
	justify-content: flex-start;
}
.building-marker.b-sumi {
	width: 7%;
	height: 7%;
	left: 53.5%;
	top: 32%;
}
.building-marker.b-sumi .marker-link {
	justify-content: flex-start;
}
.building-marker.b-matsu {
	width: 6%;
	height: 7%;
	left: 31%;
	top: 26%;
}
.building-marker.b-matsu .marker-link {
	justify-content: flex-start;
}
.building-marker.b-kita {
	width: 6%;
	height: 6%;
	left: 45%;
	top: 14.2%;
}
.building-marker.b-kita .marker-link {
	justify-content: flex-start;
}
.building-marker.b-momo {
	width: 5%;
	height: 6%;
	left: 56%;
	top: 26%;
}
.building-marker.b-momo .marker-link {
	justify-content: flex-start;
}
.building-marker.bc-kusa {
	width: 6%;
	height: 6%;
	left: 66%;
	top: 21.5%;
}
.building-marker.bc-kusa .marker-link {
	justify-content: flex-start;
}
.building-marker .marker-link .marker-label {
	position: relative;
}
.building-marker .marker-link .marker-label::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	border: 1px solid #fff;
	opacity: 0;
	content: "";
	border-radius: 40px;
}
.building-marker .marker-link:hover .marker-label::before {
	animation: markerBubble 0.7s ease-in-out infinite;
}

.building-markers {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}
.building-markers.is-active {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease-out;
}

.overlay {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.overlay.dark-overlay {
	display: none;
	background: rgba(0, 0, 0, 0.8);
	z-index: 8;
}

.hover-layer-container {
	pointer-events: none;
}

.hover-layer {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}
.hover-layer.is-rollover {
	opacity: 0.3;
}
@media (max-width: 767px) {
	.hover-layer .fit-img {
		height: 100%;
		object-fit: cover;
	}
}

.maps-layer-container {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.3s;
}
.app-start .maps-layer-container {
	opacity: 1;
}
.maps-layer-container path,
.maps-layer-container polygon {
	fill: rgba(33, 172, 234, 0.05);
	stroke: #21acea;
	stroke-width: 3px;
	stroke-linejoin: round;
	mix-blend-mode: hard-light;
	opacity: 0.8;
	animation: strokeAni 2s ease-in-out infinite alternate-reverse;
}
.is-zoom .maps-layer-container {
	display: none;
}
.maps-layer-container .area-link:hover path,
.maps-layer-container .area-link:hover polygon {
	animation-play-state: paused;
	fill: rgba(33, 172, 234, 0.2);
	stroke-width: 15px !important;
	opacity: 1;
}

@keyframes swing {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(0, 8px, 0);
	}
}
@keyframes strokeAni {
	0% {
		stroke-width: 0;
	}
	100% {
		stroke-width: 15px;
	}
}
/*--------------------------------
salon
--------------------------------*/
.salon-wrap .app-container {
	background-color: #25242b;
}

.salon {
	width: 160%;
	animation: salon 1s ease-out both 0.3s;
}
@media (max-width: 767px) {
	.salon {
		right: auto;
		width: 400%;
	}
}

@keyframes salon {
	0% {
		transform: scale(0.8);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.space-marker {
	position: absolute;
	animation: fadeInDown 0.3s ease-out both;
}
.space-marker .marker-label {
	padding: 0.6em 2em;
	display: inline-block;
	background: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(30px) saturate(1.4);
	backdrop-filter: blur(30px) saturate(1.4);
	color: #333;
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	white-space: nowrap;
	border-radius: 30px;
	transition: background 0.3s ease-out;
}
.space-marker .limited .marker-label {
	padding-left: calc(2em + 16px);
	background-image: url(../images/icon-lock.svg);
	background-repeat: no-repeat;
	background-position: 8px center;
}
.is-login .space-marker .limited .marker-label {
	background-image: url(../images/icon-unlock.svg);
}
.space-marker.space-info {
	left: 45%;
	top: 42%;
}
.space-marker.space-concept {
	left: 48%;
	top: 35%;
}
.space-marker.space-gallery {
	left: 63%;
	top: 38%;
}
.space-marker.space-modelroom {
	left: 58%;
	top: 33%;
}
.space-marker.space-nego {
	left: 38%;
	top: 59%;
}
.space-marker.space-build {
	left: 65%;
	top: 39%;
}
.space-marker.space-fund {
	left: 41%;
	top: 65%;
}
.space-marker.space-access {
	left: 69%;
	top: 43%;
}
.space-marker.space-theater {
	left: 52%;
	top: 57%;
}
.space-marker.space-plan {
	left: 61%;
	top: 48%;
}
.space-marker.space-other {
	left: 29%;
	top: 45%;
}
@media (max-width: 991px) {
	.space-marker.space-info {
		left: 44%;
	}
	.space-marker.space-concept {
		left: 48%;
		top: 35%;
	}
	.space-marker.space-gallery {
		left: 63%;
		top: 38%;
	}
	.space-marker.space-modelroom {
		left: 53%;
		top: 35%;
	}
	.space-marker.space-nego {
		left: 47%;
		top: 61%;
	}
	.space-marker.space-build {
		left: 65%;
		top: 39%;
	}
	.space-marker.space-fund {
		left: 53%;
		top: 64%;
	}
	.space-marker.space-access {
		left: 71%;
		top: 40%;
	}
	.space-marker.space-theater {
		left: 59%;
		top: 53%;
	}
	.space-marker.space-plan {
		left: 65%;
		top: 45%;
	}
	.space-marker.space-other {
		left: 24%;
		top: 54%;
	}
}
.space-marker:nth-child(1) {
	animation-duration: 700ms;
}
.space-marker:nth-child(2) {
	animation-duration: 800ms;
}
.space-marker:nth-child(3) {
	animation-duration: 900ms;
}
.space-marker:nth-child(4) {
	animation-duration: 1000ms;
}
.space-marker:nth-child(5) {
	animation-duration: 1100ms;
}
.space-marker:nth-child(6) {
	animation-duration: 1200ms;
}
.space-marker:nth-child(7) {
	animation-duration: 1300ms;
}
.space-marker:nth-child(8) {
	animation-duration: 1400ms;
}
.space-marker:nth-child(9) {
	animation-duration: 1500ms;
}
.space-marker:nth-child(10) {
	animation-duration: 1600ms;
}
.space-marker:nth-child(11) {
	animation-duration: 1700ms;
}
.space-marker .marker-link {
	position: relative;
}
.space-marker .marker-link::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	border: 1px solid #fff;
	opacity: 0;
	content: "";
	border-radius: 40px;
}
.space-marker .marker-link:hover::before {
	animation: markerBubble 0.7s ease-in-out infinite;
}

@keyframes markerBubble {
	0% {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0;
	}
	60% {
		opacity: 0.7;
	}
	100% {
		top: -8px;
		left: -8px;
		right: -8px;
		bottom: -8px;
		opacity: 0;
	}
}
.toast {
	margin: auto;
	padding: 16px;
	width: 40%;
	min-width: 300px;
	display: inline-block;
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	background: #fff;
	text-align: center;
	border-radius: 30px;
	animation: toast 5s ease-out 0.4s both;
}
.toast.is-success {
	background-color: rgb(215, 255, 225);
	color: rgb(0, 101, 17);
}

@keyframes toast {
	0%, 100% {
		transform: translate3d(0, -50px, 0);
		opacity: 0;
	}
	20%, 80% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}
.modal {
	margin: auto;
	padding: 32px;
	width: calc(100vw - 32px);
	max-width: 360px;
	max-height: 78vh;
	display: none;
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 9;
	background: #fff;
	border-radius: 8px;
	box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	transform: translateY(-50%);
}

.sub-menus-wrap {
	display: grid;
	gap: 16px;
}

.submenu-link {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.125rem;
	color: #21acea;
	border: 1px solid #21acea;
	border-radius: 40px;
}
.submenu-link:hover {
	background-color: #21acea;
	color: #fff;
}
.submenu-link.coming-soon {
	color: #9a9a9a;
	border-color: #9a9a9a;
}
.submenu-link.limited {
	background-image: url(../images/icon-lock.svg);
	background-repeat: no-repeat;
	background-position: 8px center;
	color: #9a9a9a;
	border-color: #9a9a9a;
}
.submenu-link.limited:hover {
	background-color: #21acea;
	border-color: #21acea;
	color: #fff;
}
.is-login .submenu-link.limited {
	background-image: url(../images/icon-unlock.svg);
	color: #21acea;
	border-color: #21acea;
	pointer-events: all;
}
.is-login .submenu-link.limited:hover {
	color: #fff;
}

/*--------------------------------
login
--------------------------------*/
.form-box {
	margin: 40px auto 0;
	padding: 40px;
	max-width: 600px;
	background: #fff;
}

.password-inline {
	position: relative;
}
.password-inline .submit-btn {
	padding: 0;
	width: 50px;
	display: grid;
	place-items: center;
	position: absolute;
	right: 1px;
	top: 1px;
	bottom: 1px;
	background: transparent;
}
.password-inline .submit-btn:hover {
	background-color: transparent;
}

.error {
	margin-top: 8px;
	color: #e00000;
	text-align: left;
	font-size: 1rem;
}

.back-btn {
	padding: 0;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	position: absolute;
	top: 0;
	left: 0;
}

.release-wrap .general-section {
	height: calc(100vh - 91px);
	display: grid;
	align-content: center;
}

/*--------------------------------
help
--------------------------------*/
.hero {
	height: 180px;
	display: grid;
	place-items: center;
	position: relative;
	background: url(../images/help/hero.jpg) no-repeat center center;
	background-size: cover;
}
@media (min-width: 768px) {
	.hero {
		height: 300px;
	}
}
.hero .primary-heading {
	margin-bottom: 0;
}
.hero .back-btn {
	position: absolute;
	left: 16px;
	top: 16px;
	border-radius: 50%;
}
.hero .back-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
	.hero .back-btn {
		top: 0;
		left: 0;
	}
}

.page-nav-container {
	gap: 16px;
	justify-content: center;
}
.page-nav-container .page-nav-wrap {
	flex: 1;
	max-width: 320px;
}
.page-nav-container .page-nav {
	padding: 32px 32px 44px;
	height: 100%;
	display: block;
	background: url(../images/help/icon-arrow-down.svg) no-repeat center bottom 16px #d9e9f0;
	color: #333;
	box-shadow: 1px 1px 0 #bfdae6;
}
@media (max-width: 991px) {
	.page-nav-container .page-nav {
		padding: 16px 16px 40px;
	}
}
.page-nav-container .page-nav:hover {
	background-color: #3f87a6;
	color: #fff;
}
.page-nav-container .page-nav-title {
	margin-bottom: 0.8em;
	font-size: clamp(1.125rem, 1.5vw, 1.5rem);
	line-height: 1.3;
}

.section-title {
	margin: 40px 0 0;
}

.step-list-wrap {
	position: relative;
}
.step-list-wrap::after {
	width: 100%;
	height: 10px;
	display: block;
	position: absolute;
	top: calc(50% + 32px);
	z-index: 0;
	content: "";
	background: #b3b3b3;
	transform: translate(0, -50%);
}
@media (max-width: 991px) {
	.step-list-wrap::after {
		width: 5px;
		height: 100%;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}
}
@media (max-width: 991px) {
	.step-list-wrap .col-4,
	.step-list-wrap .col-5 {
		width: 100%;
		display: grid;
		grid-template-columns: 50px 110px 1fr;
		align-items: center;
	}
}

.card-list {
	padding: 16px;
	background: #f2f2f2;
	z-index: 1;
}
.bg-light .card-list, .bg-gray .card-list {
	background: #fff;
}
@media (min-width: 992px) {
	.card-list {
		margin-top: 54px;
	}
}

.card-title {
	font-size: 4.375rem;
	text-align: center;
}
.card-title .prefix {
	display: block;
	font-size: 40%;
}
@media (max-width: 991px) {
	.card-title {
		font-size: 2.5rem;
	}
}
@media (min-width: 992px) {
	.card-title {
		margin-top: -54px;
	}
}

.card-list-wrap .col-3 .tertiary-heading {
	min-height: 76px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 767px) {
	.card-list-wrap .col-3 .tertiary-heading {
		height: auto;
	}
}

@media (max-width: 991px) {
	.card-list-wrap .card-list {
		margin-top: 54px;
	}
	.card-list-wrap .card-title {
		margin-top: -54px;
	}
	.card-list-wrap .col-3 {
		margin-top: 0;
		position: relative;
	}
	.card-list-wrap .col-3 .card-title {
		margin-top: 0;
		width: 40%;
		position: absolute;
		top: 16px;
		left: 0;
	}
	.card-list-wrap .col-3 .tertiary-heading {
		padding-left: 47%;
		height: 20vw;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		text-align: left;
	}
	.card-list-wrap .col-4 {
		width: calc(50% - 8px);
	}
}
@media (min-width: 992px) {
	.card-list-wrap .col-3 {
		margin-top: 0;
	}
	.card-list-wrap .col-3 .card-title {
		margin-top: 0;
	}
}

.flow-section {
	position: relative;
}
.flow-section .illust-item {
	width: 33%;
}
@media screen and (max-width: 1107px) {
	.flow-section .illust-item {
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.flow-section .illust-item {
		position: absolute;
		top: 32px;
		right: 4px;
	}
}
.flow-section .content-item .primary-heading {
	height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.case-num {
	font-size: 3.75rem;
}
@media (max-width: 767px) {
	.case-num {
		font-size: 1.875rem;
	}
}

.case-heading {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 16px;
}
.case-heading::after {
	height: 30px;
	flex: 1;
	display: block;
	content: "";
	border-top: 3px solid #002662;
	border-right: 3px solid #002662;
	transform: translateY(15px);
}
@media (max-width: 767px) {
	.case-heading {
		gap: 8px;
	}
}

.faq-section .illust-item {
	width: 65%;
}

.chat-list {
	margin-bottom: 16px;
	padding: 32px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.6;
}
.chat-list .flex-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}
@media (max-width: 767px) {
	.chat-list {
		padding: 16px 24px;
		font-size: 0.875rem;
	}
	.chat-list:last-child {
		margin-bottom: 40px;
	}
}

.is-send {
	padding-right: 72px;
	position: relative;
	background: #f2f2f2;
	cursor: pointer;
}
.is-send::after {
	width: 72px;
	height: 90px;
	position: absolute;
	right: 0;
	top: 50%;
	content: "";
	background: url(../images/help/toggle.png) no-repeat 0 0;
	background-size: auto 100%;
	transform: translateY(-50%);
}
.is-send.is-open::after {
	background-position: right 0;
}
@media (max-width: 767px) {
	.is-send {
		padding-right: 40px;
	}
	.is-send::after {
		width: 36px;
		height: 45px;
	}
}

.is-resv {
	margin-bottom: 48px;
	display: none;
	background: #CCD4E0;
}
@media (max-width: 767px) {
	.is-resv {
		margin-bottom: 24px;
	}
}
.is-resv .flex-wrapper {
	align-items: flex-start;
}

.chat-label {
	margin-right: 4px;
	font-size: 2.1875rem;
	color: #002662;
}
@media (max-width: 767px) {
	.chat-label {
		font-size: 1.5rem;
	}
}

.screen-title {
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
}

.screen-img {
	width: 40%;
	max-width: 477px;
}
.screen-img img {
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border-radius: 4px;
}
@media (max-width: 767px) {
	.screen-img img {
		border-radius: 24px;
	}
}

.screen-content {
	flex: 1;
}

.method-list {
	margin-bottom: 16px;
	padding: 24px;
	flex-wrap: nowrap;
	gap: 8px;
	background: #fff;
	line-height: 1.4;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.16);
}
.method-list.bg-dark {
	background-color: #6a718d;
}
.method-list .note {
	margin: 0;
}

.alert-box {
	padding: 8px 16px;
	font-size: clamp(1.125rem, 1.8vw, 1.5rem);
	border: 2px solid #e00000;
}

/*--------------------------------
state
--------------------------------*/
.is-none {
	display: none;
}

.is-hidden {
	visibility: hidden;
}

.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}

.unscrollable {
	height: 100%;
	overflow: hidden;
}

.coming-soon {
	opacity: 0.8;
	pointer-events: none;
}

.none {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.is-fv {
	opacity: 0;
	animation-fill-mode: both;
}

.is-light {
	color: #fff;
}

.is-dark {
	color: #333;
}

.gray-text {
	color: #555;
}

.is-key {
	color: #002662;
}

.is-key.has-line {
	display: inline;
	background: linear-gradient(transparent 0%, transparent 70%, #f0d32e 70%, #f0d32e 100%);
}

.strong-text {
	margin: 8px 0;
	padding: 0 8px;
	background: #002662;
	color: #fff;
}

.light-text {
	color: #9a9a9a;
}

.is-shadow {
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-alert {
	color: #e00000;
}

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

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

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

.small-text {
	font-size: 70%;
}

.large-text {
	font-size: 150%;
}

.en-font {
	font-family: "Poppins", sans-serif;
}

.en-font2 {
	font-family: futura-pt, serif;
}

.has-border-top {
	border-top: 1px solid #ccc;
}

.is-bold {
	font-weight: 700;
}

.underline {
	text-decoration: underline;
}

@media (min-width: 992px) {
	.pc-none {
		display: none;
	}
}
@media (max-width: 991px) {
	.sp-none {
		display: none;
	}
}
@media (max-width: 767px) {
	.mobile-none {
		display: none;
	}
}
@media (min-width: 768px) {
	.tab-none {
		display: none;
	}
}
/* Hides from IE-mac \*/
.clearfix {
	display: block;
}

/* End hide from IE-mac */

/*# sourceMappingURL=style.css.map */