/*  reset.css  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  SP ONLY  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  Print  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  imagephoto  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  header-flowting  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*　ヘッダーフローティング　*/
/*　ハンバーガーボタン　*/
/*  slick-TopSlider  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  border-title  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  footer  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  header  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*  pageTop  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/* 追いかけ用 */
/* 固定設置用 */
/*  fadein  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

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

body {
	line-height: 1;
}

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

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

a:link {
	color: inherit;
}

a:visited {
	color: inherit;
}

a:active {
	color: inherit;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

/*  SP ONLY  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/* PC */
@media screen and (min-width: 801px) {
	.sp-on {
		display: none;
	}
}

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

	.sp-on {
		display: block !important;
		margin: 65px 0 0 0;
	}
}

/*  Print  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media print {
	.no-print {
		display: none;
	}
}

/* A4サイズを数値で指定　margin指定 */
@page {
	size: 210mm 297mm;
	margin: 15mm 22mm
}

.copy-thispage {
	width: 30%;
	margin: 0 auto 30px auto;
	filter: drop-shadow(3px 2px 5px rgb(55, 55, 55, 0.4));
	transition: 0.2s;
}

/* マウスオーバー時 */
.copy-thispage:hover {
	filter: drop-shadow(0px 0px 0px rgb(55, 55, 55, 0.4));
	transform: translateY(-5px);
	cursor: pointer;
}

@media screen and (max-width: 800px) {
	.copy-thispage {
		width: 55%;
	}
}

/*  imagephoto  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.concept-content-box,
.onlyone-living-a-left,
.onlyone-living-b-right,
.onlyone-living-c-left {
	position: relative;
}

.living-a-left,
.living-b-right,
.living-c-left {
	position: relative;
}

.location-a-right,
.location-b-right,
.location-c-right,
.sep-img {
	position: relative;
}

.access-a-right,
.access-b-right,
.station-img {
	position: relative;
}

/* <div class="imagephoto-bottom-left">imagephoto</div> */
/* <div class="imagephoto-bottom-right"></div> */
.imagephoto-bottom-left {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 5px;
	font-size: 8px;
	color: #000000;
	background-color: rgba(255, 255, 255, 0.5);
}

.imagephoto-bottom-right {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 5px;
	font-size: 8px;
	color: #ffffff;
}

@media screen and (max-width: 800px) {
	.copy-thispage {
		width: 55%;
	}

	.imagephoto-bottom-left,
	.imagephoto-bottom-right {}
}

.text-img {
	max-width: 800px;
	padding: 30px 0 0 0;
	margin: 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 801px) {
	.text-img {
		max-width: 800px;
		padding: 40px 0 0 0;
		margin: 0;
		text-align: center;
	}
}

/*  header-flowting  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*　ヘッダーフローティング　*/
.sticky-container {
	background-color: rgba(255, 255, 255, 1.0);
	height: auto;
	width: 100%;
	position: fixed;
	z-index: 5;
	top: 0;
}

.sticky-manu {
	background-color: rgba(255, 255, 255, 1.0);
	/*可視化用*/
	margin: 0 auto;
	height: 65px;
	width: 100%;
	z-index: 6;
	box-shadow: 0 2px 0px rgba(25, 25, 25, 0.1);
}

.sticky-manu .contact-btn {
	position: absolute;
	top: 0;
	right: 69px;
	display: inline-block;
	width: 239px;
	height: 100%;
}

@media screen and (max-width: 800px) {
	.sticky-manu .contact-btn {
		display: none;
	}
}


/* .sticky-manu .contact-btn img {
	object-fit: cover;
	height: 100%;
} */

.sticky-manu .contact-btn {
	width: 239px;
	height: 65px;
	background: url(../images/contact-btn.svg) no-repeat center center / contain;
	transition: .3s;
}

.sticky-manu .contact-btn:hover {
	background: url(../images/contact-btn-hover.svg) no-repeat center center / contain;
}


.sticky-manu-img {
	float: left;
	margin: 9px 0 9px 15px;
	height: 47px;
}

@media screen and (max-width: 800px) {
	.sticky-manu-img {
		max-width: 530px;
	}
}

.sticky-manu-title {
	display: inline-block;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	float: left;
	font-size: 120%;
	font-weight: 600;
	margin: 25px 15px 5px 15px;
}

.sticky-manu-img-r {
	float: right;
	margin: 0px 30px 0px 0;
}

.sticky-manu-img-r2 {
	float: right;
	margin: 10px 30px 0px 0px;
}

/*min PC size*/
@media screen and (min-width: 801px) {
	.header-container {
		background-color: rgba(22, 30, 60, 1.0);
		height: auto;
		margin-top: 65px;
	}

	.header-content-box {
		background-color: rgba(255, 255, 255, 0.2);
		height: auto;
		margin: 0 auto;
		max-width: 1440px;
	}

	.sticky-manu {
		max-width: 1440px;
		min-width: 660px;
	}
}

/*max SP size*/
@media screen and (max-width: 800px) {
	.sticky-manu-img-r {
		float: right;
		margin: 0px 30px 0px 0;
	}

	.sticky-manu-img-r2 {
		float: right;
		margin: 10px 30px 0px 0px;
	}

	.sticky-manu {
		min-width: 0px;
	}
}

/*　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 3;
	right: 13px;
	/* top: 12px; */
	top: 18px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}

.hamburger::after {
	content: "メニュー";
	font-family: "Noto Serif JP", "游明朝 Medium", "ＭＳ Ｐ明朝", serif !important;
	font-size: 10px;
	top: -5px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 30px;
	/* height: 2px; */
	height: 3px;
	left: 6px;
	background: #555;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
	/* top: 10px; */
	top: 12px;
}

.hamburger span:nth-child(2) {
	top: 20px;
	/* top: 22px; */
}

.hamburger span:nth-child(3) {
	/* top: 30px; */
	top: 28px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	/* top: 16px; */
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	/* top: 16px; */
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*  slick-TopSlider ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
	color: #000;
}

/*左右の矢印の位置を変える*/
.slick-next {
	right: 20px;
	z-index: 99;
}

.slick-prev {
	left: 15px;
	z-index: 100;
}

/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
	color: #fff;
}

/*スライド画像の横幅可変*/
img {
	max-width: 100%;
	height: auto;
}

/*  border-title  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.border-container {
	height: auto;
	margin-top: 0px;
}

.border-inner-title {
	color: #ffffff;
	font-family: 'Noto Serif JP', '游明朝 Medium', 'ＭＳ Ｐ明朝', serif !important;
	font-weight: lighter;
	line-height: 120%;
	margin: 0 auto;
	/* padding: 15px 0 10px 0; */
	padding: 15px 0 15px 0;
	width: 100%;
	word-wrap: break-word;
	font-size: 180%;
	text-rendering: geometricPrecision;
}

@media screen and (max-width: 800px) {
	.border-inner-title {
		font-size: 170%;
	}
}

.border-inner-content-box {
	background-image: url(../images/border-inner-title-back.gif);
	background-repeat: repeat-x;
	/* height: 65px; */
	z-index: 1;
}

.border-inner-content-box-b {
	position: relative;
	margin: 0 auto;
	text-align: center;
	/* height: 65px; */
	z-index: 2;
}

/*  footer  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.copyright {
	color: #ffffff;
	padding: 35px;
	z-index: 1;
	font-size: 60%;
}

.footer-container {
	background-color: rgba(255, 255, 255, 0.0);
	height: auto;
	margin-top: 50px;
}

.footer-totop-box {
	margin: 0 auto;
	max-width: 1440px;
	text-align: center;
}

.footer-totop-box2 {
	position: relative;
	background-color: rgba(0, 0, 0, 1.0);
	margin: 0 auto;
	height: 50px;
	width: 100%;
}

.footer-totop-box2 img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

.footer-content-box {
	margin: 0 auto;
	max-width: 1440px;
	text-align: center;
}

.footer-seikyu-box {
	width: 90%;
	margin: 0 auto;
}

.footer-seikyu-box1 img {
	width: 47.5%;
	margin: 100px 5% 0 0;
	float: left;
}

.footer-seikyu-box2 img {
	width: 47.5%;
	margin: 100px 0 0 0;
	float: left;
}

.footer-content-box-bottom {
	background-color: #64879a;
	background-repeat: repeat-x;
	height: 80px;
	z-index: -1;
}

.footer-content-box-bottom-b {
	/*	position: relative;*/
	margin: 0 auto;
	/*	max-width: 1440px;*/
	text-align: center;
	z-index: -2;
}

.footer-content-box-logo {
	margin: 0 auto;
	/*	max-width: 1440px;*/
	text-align: center;
	padding: 0;
}

.footer-yokoku-box {
	display: table;
	text-align: center;
	height: auto;
	margin: 0 auto 5% auto;
	width: 90%;
}

.yokoku-a-box {
	display: table-cell;
	border: 1px solid black;
	height: 30px;
	width: 100px;
	text-align: center;
	vertical-align: middle;
	margin: 0 2% 0 2%;
}

.yokoku-a {
	font-family: "Sawarabi Mincho", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
	color: rgba(0, 0, 0, 1.0);
	font-size: 120%;
	vertical-align: middle;
	line-height: normal;
}

.yokoku-b {
	font-family: "Sawarabi Mincho", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
	color: rgba(0, 0, 0, 1.0);
	font-size: 100%;
	float: left;
	text-align: left;
	line-height: 130%;
	margin: 0 0 0 2%;
}

.footer-bottom {
	margin-top: 5%;
	width: 75%;
}

.footer-bottom2 {
	margin: 3% 3% 5% 3%;
	max-width: 320px;
}

.footer-bottom3 {
	margin: 5% 3% 3% 3%;
	max-width: 320px;
}

.footer-dial {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	height: 75%;
	width: auto;
	object-fit: contain;
}

.footer-imagawa {
	margin-top: 5%;
	width: 60%;
}

.footer-content-box-attention {
	width: 80%;
	font-family: "Sawarabi Mincho", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
	line-height: normal;
	text-align: left;
	margin: 10% auto;
}

@media screen and (max-width: 800px) {
	footer {
		display: block !important;
		margin-bottom: 90px;
	}

	.footer-content-box-attention {
		width: 90%;
		margin: 10% auto;
	}
}

@media screen and (min-width: 801px) {
	footer {
		display: block !important;
		/* margin-bottom: 100px; */
	}
}

/*  footer-flowting  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.nav-seikyu-container {
	/* background-color: rgba(0, 51, 155, 0.5); */
	bottom: 0;
	height: 100px;
	width: 100%;
	position: fixed;
	z-index: 5;
	display: none;
}

.nav-seikyu-box {
	margin: 0 auto;
	/* padding: 5px 0; */
	/* display: flex;
	justify-content: center; */
}

.nav-seikyu img {
	background: #FFFFFF;
	padding: 3px;
}

.nav-seikyu {
	background: linear-gradient(#002353, #000002);
	/*可視化用*/
	border-radius: 5px 5px 0 0;
	/*	border: 3px solid #CCCCCC;
	box-shadow: 0 2px 4px rgba(25,25,25,0.5);
	width: 26.5%;*/
	margin: 0 20px;
	width: 300px;
	height: 150px;
	text-align: center;
	z-index: 9999;
}

.nav-seikyu-r {
	background: linear-gradient(#742300, #350000);
	/*可視化用*/
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0 2px 4px rgba(25, 25, 25, 0.5);
	margin: 0;
	width: 37.5%;
	height: 70px;
	text-align: center;
	z-index: 9999;
	float: left;
}

.nav-seikyu-p {
	color: white;
	display: inline-block;
	font-size: 100%;
	font-family: 'Noto Serif JP', '游明朝 Medium', 'ＭＳ Ｐ明朝', serif !important;
	margin-top: 8px;
}

@media screen and (min-width: 801px) {}

@media screen and (max-width: 800px) {
	.nav-seikyu-img {
		width: 100%;
		height: 70px;
	}

	.nav-seikyu-container {
		/* height: 90px; */
		height: 96px;
		display: block;
	}

	.nav-seikyu {
		margin: 0 10px;
		width: 180px;
		height: 150px;
	}

	.nav-seikyu img {
		background: #FFFFFF;
		padding: 3px 0;
		width: 180px;
	}

	.nav-seikyu-box {
		text-align: center;
		background: #fed72e;
		display: block;
	}

	.nav-seikyu-box img {
		/* width: 457px;
		height: 92px; */
		width: 540px;
		height: 93px;
		object-fit: cover;
	}
}

/*  pageTop  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/* 追いかけ用 */
.pagetop {
	display: none;
	position: fixed;
	bottom: 108px;
	right: 15px;
	height: 66px;
	width: 66px;
}

.pagetop a {
	display: block;
	text-align: center;
	font-size: 2em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	-moz-border-radius: 2em;
	-webkit-border-radius: 2em;
	border-radius: 2em;
	line-height: 2em;
	width: 2em;
	background-color: #91C16D;
	-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 5px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 2px 5px 0px;
	box-shadow: rgba(0, 0, 0, 0.15) 2px 5px 0px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.pagetop a:hover {
	display: block;
	background-color: #CCCCCC;
	text-align: center;
	color: #fff;

	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

@media screen and (max-width: 800px) {
	.pagetop {
		bottom: 100px;
	}
}

/* 固定設置用 */
.totop-box {
	margin: 0 auto;
	max-width: 1440px;
	text-align: center;
}

.totop-box2 {
	position: relative;
	background-color: rgba(0, 0, 0, 1.0);
	margin: 0 auto;
	height: 50px;
	width: 100%;
}

.totop-box2 img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

/*  fadein  ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/* フェードイン CSS JQ-show */
/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all 1s ease-out;
}

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease-out;
}

/* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease-out;
}

.preparation {
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: calc(100vh - 80px);
}

.preparation .center {
	text-align: center;
	margin-bottom: 32px;
}

.preparation h1 {
	font-size: 50px;
	color: #4a4a4a;
	letter-spacing: 5px;

	@media screen and (max-width: 800px) {
		font-size: 48px;
	}
}

.preparation img {
	display: inline-block;
	max-width: 300px;
}

.lb-nav a.lb-prev {
	width: 40px !important;
	height: 40px;
	background: url(../images/prev.svg) no-repeat center center / contain !important;
	position: absolute;
	opacity: 1 !important;
	top: 50%;
	transform: translateY(-50%);
	left: 20px !important;
}

.lb-nav a.lb-next {
	width: 40px !important;
	height: 40px;
	background: url(../images/next.svg) no-repeat center center / contain !important;
	position: absolute;
	opacity: 1 !important;
	top: 50%;
	transform: translateY(-50%);
	right: 20px !important;
}

.lb-nav a:hover {
	opacity: .7 !important;
}
