@charset "UTF-8";

/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/
html {
}
body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption {
	margin: 0;
	padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before ,q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
hr, legend {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img {
	width: 100%;
	height: auto!important;
	display: block;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}
ul li {
	list-style-type: none;
}

/*---------------------------------------------
	body
  ---------------------------------------------*/
body {
	text-align: left;
	-webkit-text-size-adjust: none;
}

/*---------------------------------------------
	Anchor
  ---------------------------------------------*/
a {
	outline: none;
}

a:link {
	text-decoration: none;
	color: #56a5af;
}
a:visited {
	text-decoration: none;
	color: #56a5af;
}
a:hover {
	text-decoration: none;
	color: #292F33;
	transition: .3s;
}
a:active {
	text-decoration: none;
	color: #292F33;
}

/*---------------------------------------------
	clearfix
  ---------------------------------------------*/
.clearfix:after {
  content: ".";  /* 新しいコンテンツ */
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; /* 非表示に */
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}

/* ------ General Settings ------ */
html {
	*overflow-x: hidden;
}
.fLeft {
	float: left;
}
.fRight {
	float: right;
}
a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
	line-height: 1px;
	transition: .3s;
}
.forPc {
	display: block;
}
.forMobile {
	display: none;
}
@media screen and (max-width: 639px) {
	.forPc {
		display: none;
	}
	.forMobile {
		display: block;
	}
}
/* ------ スマホで発信 ------ */
a[href^="tel:"] {
	pointer-events: none;
}
/* ------ webfont ------ */
/* 日本語フォント */
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 160%;
	color: #222;
	text-align: left;
	-webkit-text-size-adjust: none;
}
/* ------ ライン ------ */
/* leftLine */
.leftLine {
	line-height: 100%;
	display: flex;
	align-items: center;
}
.leftLine:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
	margin-left: 2%;
}

/* ------ inview アニメーション ------ */
/* fadeIn */
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
/* fadeIn_up */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1.5s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* fadeIn_left */
.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 3s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* fadeIn_right */
.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 3s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* pageLogo
================================================== */
#pageLogo {
	padding: 10px 5%;
	width: 90%;
	height: 40px;
	position: fixed;
	z-index: 100;
	background-color: #fff;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 639px) {
	#pageLogo {
		padding: 5px 3%;
		width: 94%;
	}
}
@media screen and (max-width: 460px) {
	#pageLogo {
		padding: 12px 3%;
        height: 26px;
	}
}

.pageLogoL{
	float: left;
}
.headLogo {
	float: left;
	width: 60px;
	padding-right: 5px;
}
.headTxt {
	float: left;
}
.headTit {
	width: 214px;
	padding-bottom: 7px;
}
.headCopy {
	width: 220px;
}
@media screen and (max-width: 460px) {
	.headLogo {
		width: 40px;
		padding-right: 3px;
	}
	.headTit {
		width: 140px;
		padding-bottom: 5px;
	}
	.headCopy {
		width: 140px;
	}
}

.pageLogoR{
	float: right;
	width: 30%;
	margin-top: 5px;
}
.pageLogoR img{
	float: right;
	width: auto!important;
	height: 100%!important;
	max-height: 30px;
}
@media screen and (max-width: 639px) {
	.pageLogoR{
		width: 100px;
		margin-top: 9px;
	}
	.pageLogoR img{
		width: 100px!important;
		height: auto!important;
		max-height: inherit;
	}
}
@media screen and (max-width: 460px) {
	.pageLogoR{
		width: 70px;
		margin-top: 7px;
	}
	.pageLogoR img{
		width: 70px!important;
	}
}

/* wrapper
================================================== */
#wrapper {
	padding-top: 60px;
}
@media screen and (max-width: 639px) {
	#wrapper {
		padding-top: 50px;
	}
}
/* mainArea
================================================== */
#mainArea {
	position: relative;
}
/* mainBg
================================================== */
#mainBg {
	position: relative;
	z-index: 0;
}
/* mainTit
================================================== */
#mainTit {
    position: absolute;
    z-index: 2;
    bottom: 25%;
    left: 25%;
    width: 50%;
}
/* mainCopy
================================================== */
#mainCopy {
    position: absolute;
    z-index: 2;
    bottom: 3%;
    left: 10%;
    width: 80%;
}
/* mark01
================================================== */
#mark01 {
    position: absolute;
    z-index: 1;
    top: 2%;
    left: 5%;
    width: 22%;
}
@media screen and (max-width: 767px) {
	#mainTit {
		position: absolute;
		z-index: 2;
		bottom: 13%;
		left: 5%;
		width: 87%;
	}
	#mainCopy {
		left: 3%;
		width: 94%;
	}
	#mark01 {
		position: absolute;
		z-index: 1;
		top: 10%;
		left: 2%;
		width: 36%;
	}
}

/* linkBox
================================================== */
.linkBox {
    position: relative;
    z-index: 10;
}
.linkBox a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 11;
}

/* zoomBox
================================================== */
.zoomBox {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.zoomBox:hover {
	transform: scale(1.05);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}

/* Breadcrumb
================================================== */
.breadcrumb {
	background: #fff;
	border-bottom: 1px solid #ece8e1;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .55rem;
	font-size: 82%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px 5%;
}

.breadcrumb li {
	display: inline-flex;
	align-items: center;
}

.breadcrumb li + li::before {
	content: "";
	width: .38rem;
	height: .38rem;
	margin-right: .55rem;
	border-top: 1px solid #9b8d78;
	border-right: 1px solid #9b8d78;
	transform: rotate(45deg);
}

.breadcrumb a {
	transition: color .2s ease;
}

@media (hover: hover) {
	.breadcrumb a:hover {
		color: var(--gold);
	}
}

.breadcrumb [aria-current="page"] {
	color: var(--navy);
	font-weight: 600;
}
@media screen and (max-width: 767px) {
	.breadcrumb {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.breadcrumb ol {
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
	}

	.breadcrumb li {
		white-space: nowrap;
		flex-shrink: 0;
	}
}

/* crArea
================================================== */
#crArea {
	background-color: #efefef;
}
#crArea p{
	text-align: center;
	font-size: 60%;
	line-height: 50px;
}
@media screen and (max-width: 800px) {
	#crArea p{
		font-size: 1.8vw;
	}
}
/* backtotop
================================================== */
.backtotop {
	position: fixed;
	bottom: 0;
	z-index: 90;
	display: none;
	right: 0;
	width: 5%;
}
@media screen and (max-width: 800px) {
	.backtotop {
		width: 50px;
	}
}
.backtotop a {
    display: block;
}



