@charset "utf-8";
/* CSS Document */
@media screen and (max-width: 1040px) {}

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

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

/*SP*/
@media screen and (max-width: 768px) {}

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

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

/*-----------------------------------
01.reset
02.共通
02-1.ani
02-2.header
02-3.main
02-4.footer
------------------------------------*/
/*-----------------------------------
-------------   01.reset   --------------
------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baselifne;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	-webkit-text-size-adjust: none;
	line-height: 1;
}

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

ol,
ul {
	list-style: none;
}

input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

button {
	background-color: #fff;
	cursor: pointer;
}

@media(min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/*-----------------------------------
-------------   02.共通  --------------
------------------------------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	width: 100%;
	font-size: 1.5rem;
}

img {
	max-width: 100%;
}

img.full {
	max-width: auto;
	width: 100%;
}

a {
	color: #252525;
	text-decoration: none;
	transition: all ease 0.3s;
}

p {
	line-height: 160%;
}

.wrapper {
	max-width: 1000px;
	width: 96%;
	margin: 0 auto;
}

.wrapper a:hover {
	opacity: .6;
}

@media screen and (max-width: 1000px) {
	.wrapper {
		width: 94%;
		max-width: 94%;
		margin: 0 auto;
	}
}

.wrapper.-full {
	max-width: initial;
	width: 100%;
}

.content_inner {
	max-width: 1000px;
	width: 96%;
	margin: 0 auto;
}

@media screen and (max-width: 1000px) {
	.content_inner {
		width: 94%;
		max-width: 94%;
	}
}

.fl {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

@media screen and (max-width: 768px) {
	.fl.sp-bl {
		display: block;
	}
}

.fl-wr {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.fl-bt {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.pc-none {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc-none {
		display: block;
	}
}

.tb-none {
	display: block;
}

@media screen and (max-width: 768px) {
	.tb-none {
		display: none;
	}
}

.sp-none {
	display: block;
}

@media screen and (max-width: 768px) {
	.sp-none {
		display: none;
	}
}

/*-----------------------------------
-------------   02-1.ani  --------------
------------------------------------*/
.ani {
	transition: all 0.6s ease;
}

.ani-unvisi {
	opacity: 0;
}

.ani.visible {
	opacity: 1;
	transform: none;
}

.ani--lr {
	transform: translate(-100px, 0);
}

.ani--rl {
	transform: translate(100px, 0);
}

.ani--up {
	transform: translate(0, 100px);
}

@media screen and (max-width: 768px) {
	.ani--up {
		transform: translate(0, 40px);
	}
}

.ani--down {
	transform: translate(0, -100px);
}

/*-----------------------------------
-------------   02-2.header  --------------
------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background: #FFF;
	z-index: 10001;
}

@media screen and (max-width: 768px) {
	header {
		padding-top: 10px;
	}
}

.header-left {
	margin-top: 25px;
	margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
	.header-left {
		margin-top: 5px;
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 480px) {
	.header-left {
		margin: 10px 1% 15px 0;
	}
}

@media screen and (max-width: 768px) {
	.header-left.fl-bt {
		-ms-align-items: center;
		align-items: center;
	}
}

.header-logo a {
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: left center;
	width: 186px;
	height: 26px;
	display: block;
}

.header-logo02 {
	width: 150px;
}

@media screen and (max-width: 768px) {
	.header-logo02 {
		width: 100px;
		margin-right: 50px;
	}
}

.header-menu .nav {
	width: 100%;
	font-family: YakuHanMP, "Noto Serif JP", serif;
}

.header-menu .nav ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 55px;
}

.header-menu .nav ul li {
	width: 20%;
	position: relative;
	text-align: center;
}

.header-menu .nav ul li::before {
	content: '';
	width: 1px;
	height: 20px;
	position: absolute;
	background-color: #000;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.header-menu .nav ul li:last-child::after {
	content: '';
	width: 1px;
	height: 20px;
	position: absolute;
	background-color: #000;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.header-menu .nav ul li a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #000;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	position: relative;
	font-weight: 300;
}

.header-menu .nav ul li:hover>a {
	opacity: 1;
	color: #EBEBEB;
}

.header-menu .nav ul li a:hover span::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

/* change-color */
header.change-color {
	background-color: #fff;
	transition: all 1s 0s ease;
}

header.change-color .header-logo a {
	background-image: url(images/logo03.png);
}

header.change-color .header-menu .nav ul li a {
	color: #000;
}

header.change-color .header-menu .nav ul li a:hover {
	color: #ccc;
}

header.change-color .header-menu .nav ul li::before {
	background-color: #000;
}

header.change-color .header-menu .nav ul li:last-child::after {
	background-color: #000;
}

/*-----------------------------------
-------------   02-3.main  --------------
------------------------------------*/
.fv {
	margin-top: 80px;
}

@media screen and (max-width: 768px) {
	.fv {
		margin-top: 60px;
	}
}


.intro h3 {
	margin-bottom: 30px;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 4.0rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
	.intro h3 {
		font-size: calc((40/768)*100vw);
	}
}

.intro p {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	.intro p {
		font-size: calc((28/768)*100vw);
		/*text-align: left;*/
	}
}

.sec_ttl {
	margin: 70px 0 40px;
	color: #7D6B48;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: .1em;
	margin-top: 70px;
	margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.sec_ttl {
		margin: 70px 0 25px;
		font-size: calc((40/768)*100vw);
		letter-spacing: 0;
	}
}

.sec_text {
	margin-bottom: 1.5em;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.85;
}

@media screen and (max-width: 768px) {
	.sec_text {
		font-size: calc((26/768)*100vw);
	}
}

/*-----------------------------------
-------------   02-4.footer  --------------
------------------------------------*/
footer {
	padding: 55px 0 80px 0;
	background: #5b86c0;
	color: #fff;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 0 0px 75px 0px;
		text-align: center;
	}
}

footer img {
	width: 100%;
	max-width: 387px;
}

@media screen and (max-width: 768px) {
	footer .fl {
		display: block;
	}
}

footer .add {
	width: 40%;
	color: #fff;
}

@media screen and (max-width: 768px) {
	footer .add {
		width: 100%;
		font-size: 12px;
	}
}

footer .add address {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 22px;
	margin: 15px auto 10px;
}

footer .add p {
	line-height: 140%;
	margin-top: 10px;
	letter-spacing: 0.03em;
	text-align: left;
}

footer .con {
	width: 60%;
	text-align: right;
}

@media screen and (max-width: 1000px) {
	footer .con {
		width: 60%;
		margin-left: 2%;
	}
}

@media screen and (max-width: 768px) {
	footer .con {
		width: 100%;
		margin-left: 0%;
		margin-top: 30px;
	}
}

@media screen and (max-width: 1000px) {
	footer .con img {
		width: 90%;
	}
}

@media screen and (max-width: 768px) {
	footer .con img {
		width: auto;
		max-width: 100%;
	}
}

footer a {
	color: #fff;
}

@media screen and (max-width: 768px) {
	footer .tel {
		display: none;
	}
}

footer .tel ul {
	width: 100%;
}

footer .tel ul li {
	margin: 0 0 5px auto;
	display: block;
}

footer .tel ul img {
	width: 100%;
	max-width: 374px;
}

footer .f-nav ul {
	justify-content: flex-end;
	margin-top: 2.6em;
	margin-bottom: .5em;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	footer .f-nav ul {
		display: none;
	}
}

footer .f-nav li {
	display: inline-block;
	font-size: 11.6px;
	margin-top: 5px;
}

footer .f-nav li::after {
	content: "｜";
}

footer .f-nav li::after {
	content: "｜";
}

footer .f-nav li:first-child::before {
	content: "｜";
}

@media screen and (max-width: 768px) {
	footer .f-nav p {
		display: block;
		text-align: center;
		font-size: 12px;
	}

	footer .f-sp-nav {
		margin-bottom: 2em;
	}

	footer .f-sp-nav li {
		border-bottom: 1px solid #fff;
	}

	footer .f-sp-nav li a {
		padding: 1em;
		display: block;
	}
}

footer .copyright {
	width: 100%;
	margin: 10px auto 0;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	padding: 30px 0 0;
}

.cs-btn-exp {
	position: fixed;
	z-index: 99;
	bottom: 0;
	width: 100%;
	background: rgba(56, 81, 71, 0.9);
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

.cs-floating-menu {
	display: flex;
	justify-content: center;
	align-items: center;
}

.cs-floating-menu li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40%;
	max-width: 340px;
	margin: 10px;
}

@media screen and (max-width: 767px) {
	.cs-floating-menu li {
		margin: 5px;
		width: 45%;
		max-width: 100%;
	}
}

.position .toggle_contents .town-con {
	margin-left: 0;
}

.cs-floating-left,
.cs-floating-right {
	height: 60px;
}

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

	.cs-floating-left,
	.cs-floating-right {
		height: 50px;
	}
}

.cs-floating-left {
	background: #cb1114;
}

.cs-floating-right {
	background: #58ac9c;
}

.cs-floating-left .cs-floating-menu-detail a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.cs-floating-menu-detail a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 2.0rem;
	font-weight: bold;
	padding: 5px;
}

@media screen and (max-width: 768px) {
	.cs-floating-menu-detail a {
		font-size: 1.5rem;
	}
}

.cs-floating-btn {
	color: white;
}


/* -------------- トップページ  ----------------*/

.index_intro {
	padding-top: 150px;
	height: 1500px;
	background: url(images/bg_skyview.jpg) no-repeat center top;
}

@media screen and (max-width: 768px) {
	.index_intro {
		padding-top: 5vw;
		height: 130vw;
		background: url(images/bg_skyview_sp.jpg) no-repeat center top;
		background-size: 100% auto;
	}
}

.index_intro h2 {
	margin-bottom: 100px;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 4.4rem;
	font-weight: 400;
	line-height: 1.36;
	text-align: center;
	letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
	.index_intro h2 {
		font-size: calc((29/768)*100vw);
	}
}

.link-bnr{
	margin: 380px auto 0;
	width: 1140px;
position: relative;
}
@media screen and (max-width: 768px) {
	.link-bnr{
		margin: 110vw auto 0;
		width: 100%;
	}
}

.link-bnr .part2{
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 768px) {
	.link-bnr .part2{
		top: auto;
		bottom: 0;
		left: 2vw;
		width: 45vw;
	}
}
.link-bnr .part1{
	position: absolute;
	right: 0;
	top: 230px;
}
@media screen and (max-width: 768px) {
	.link-bnr .part1{
		top: auto;
		bottom: 0;
		right: 2vw;
		width: 45vw;
	}
}