/*--------------------------------------------------*/
/* 基本 */
/*--------------------------------------------------*/

/*--------------------------------------------------
フォント補足
----------------------------------------------------

【基本のフォント】Noto Fonts
Noto Serif Japanese
Noto Sans Japanese
	font-family: 'Noto Serif JP', serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300（light）;
	font-weight: 500（midium）;
	font-weight: 700（bold）;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300（light）;
	font-weight: 500（midium）;
	font-weight: 700（bold）;

--------------------------------------------------*/

body {
	position: relative;
	color: #231815;
	background-color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.05em;
	line-height: 2;
	overflow-x: hidden;
	cursor: url("/img/common/pointer.png"), auto;
	transition: 0.3s all;
}
@media(max-width:767px){
	body {
		font-size: 14px;
		line-height: 1.8;
		overflow-x: hidden;
	}
}

main {
	overflow-x: hidden;
}

.sans {
	font-family: 'Noto Sans JP', sans-serif;
}
.light {
	font-weight: 300;
}
.midium {
	font-weight: 500;
}
.bold {
	font-weight: 700
}
.text-white {
	color: #fff;
}
.text-yellow {
	color: #FFF000;
}
.bg-green {
	background: #3A794F;
}

.small {
	font-size: 0.824em;
}
a {
	color: #231815;
	transition: 0.3s all;
	text-decoration: none;
}
a:hover {
	color: #231815;
	opacity: 0.7;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	cursor: url("/img/common/pointer-hover.png"), auto;
}
button:not(:disabled), 
[type="button"]:not(:disabled), 
[type="reset"]:not(:disabled), 
[type="submit"]:not(:disabled) {
	cursor: url("/img/common/pointer-hover.png"), auto;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: #231815;
	line-height: 1.5;
}
@media(max-width:767px){
}

/* header */
header {
	position: absolute;
	top: 30px; 
	left: 17px;
	right: 0;
	z-index: 10;
}
header .navbar-brand {
	flex-grow: 0;
	padding: 0;
	margin-right: 0;
}
header .navbar-collapse {
	flex-grow: 1;
	margin: 0 auto;
}
header .navbar-collapse .navbar-nav {
	margin: 0 auto;
	margin-bottom: 20px;
}
header .navbar-collapse .navbar-nav .nav-item {
	margin-right: 35px;
}
header .navbar-collapse .navbar-nav a.nav-link {
	position: relative;
	display: inline-block;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.3em;
	padding-top: 0;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .1);
}
header .navbar-collapse .navbar-nav a.nav-link:hover,
header .navbar-collapse .navbar-nav a.nav-link:hover,
header .navbar-collapse .navbar-nav a.nav-link:hover {
	opacity: 0.8;
}
header .navbar-collapse .navbar-nav a.nav-link::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, .1);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
header .navbar-collapse .navbar-nav a.nav-link:hover::after {
  transform: scale(1, 1);
}
@media(max-width:991px){
	header {
		width: calc(100% - 20px);
		top: 25px;
		left: 10px;
	}
	header .navbar-collapse .navbar-nav .nav-item {
		margin-right: 15px;
	}
	header .navbar-collapse .navbar-nav a.nav-link {
		font-size: 14px;
	}
}
@media(max-width:767px){

}

/* hamburger-wrap */
.hamburger-wrap {
	position: fixed;
	display: inline-block;
	width: 25px;
	height: 21px;
	top: 20px; 
	right: 45px;
	z-index: 100;
	opacity: 1;
	transition: 0.3s all;
}
.hamburger-wrap.hide {
	opacity: 0;
	display: none;
}
.hamburger-wrap button {
	position: relative;
	display: inline-block;
	background: none;
	width: 25px;
	height: 21px;
	padding: 0;
	border: none;
	transition: 0.3s all;
}
.hamburger-wrap button:hover,
.hamburger-wrap button:focus,
.hamburger-wrap button:active {
	opacity: 0.7;
}
.hamburger-wrap button:focus-visible,
.hamburger-wrap button:focus {
	outline: none;
}
.hamburger-wrap button span {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 25px;
	height: 1px;
	background: #fff;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, .1);
	transition: 0.3s all;
	z-index: 50;
}
.hamburger-wrap.active button span {
	width: 26px;
}
.hamburger-wrap button span:nth-of-type(1) {
	top: 0;
}
.hamburger-wrap button span:nth-of-type(2) {
	top: 50%;
}
.hamburger-wrap button span:nth-of-type(3) {
	bottom: 0;
}
.hamburger-wrap.active button span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
	top: 3px;
}
.hamburger-wrap.active button span:nth-of-type(2) {
  opacity: 0;
}
.hamburger-wrap.active button span:nth-of-type(3) {
	 -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
	bottom: 3px;
}
@media(max-width:991px){
	.hamburger-wrap {
		top: 20px;
		right: 30px;
	}
}
@media(max-width:767px){
	.hamburger-wrap.hide {
		opacity: 1;
		display:inline-block;
	}
}

/* openMenu-wrap */
.openMenu-wrap {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  padding: 0;
  transition: 0.3s all;
  background: rgba(181, 181, 181, 0.5);
	z-index: 40;
}
.openMenu-wrap.active {
  visibility: visible;
  right: 0;
  overflow-y: scroll;
  transition: 0.3s all;
}
.openMenu-wrap .inner {
	margin-top: 50px;
	margin-bottom: 50px;
}
.openMenu-wrap .inner .logo-wrap {
	text-align: center;
}
.openMenu-wrap .inner ul {
	list-style: none;
	padding-left: 0;
	margin: 38px auto 0;
}
.openMenu-wrap .inner ul li {
	text-align: center;
}
.openMenu-wrap .inner ul li img {
	width: 160px;
}
.openMenu-wrap .inner ul li a p {
	color: #fff;
	font-size: 9px;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .1);
	margin-top: 7px;
	margin-bottom: 12px;
}
.openMenu-wrap .inner ul li a:hover {
	text-decoration: none;
}
@media(max-width:767px){
}
@media(max-width:575px){
	.openMenu-wrap {
		width: 100%;
		right: -100%;
	}
	.openMenu-wrap .inner .logo-wrap img {
		width: 30%;
	}
	.openMenu-wrap .inner ul li img {
		width: 80%;
	}
	.openMenu-wrap .inner ul li a p {
		font-size: 14px;
		margin-bottom: 25px;
	}
}

/* footer */
footer {
	background: #3A794F;
}
footer .row {
	padding-top: 60px;
	padding-bottom: 5px;
}
footer figure {
	margin-bottom: 60px;
}
footer figure figcaption {
	font-size: 13px;
    font-weight: lighter;
	letter-spacing: 0.1em;
	margin-top: 30px;
}
footer p {
	margin-bottom: 0;
}
footer .site-info{
	font-size: 12px;
    font-weight: lighter;
	letter-spacing: 0.1em;
    padding-bottom: 25px;
}

@media(max-width:767px){
	footer figure {
		margin-bottom: 45px;
	}
	footer figure figcaption {
		font-size: 17px;
		margin-top: 20px;
	}
}

/* main 共通 */
main .jumbotron {
	position: relative;
	height: 100vh;
	margin-bottom: 0;
	background-color: #fff;
	background-position: center center;
}
main p {
	line-height: 2.2;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
/*.slider{
  opacity: 0;
  transition: opacity .3s linear;
}
.slider.slick-initialized{
  opacity: 1;
}*/

/* TOPページ */
main .jumbotron .slick-slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
main .jumbotron .slick-slider .slick-list {
	height: 100%;
}
main .jumbotron .slick-slider .slick-list .slick-track {
	position: absolute;
	top: 0;
	bottom: 0;
}
main .jumbotron > .container-fluid {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	height: 100%;
	z-index: 1;
}
main.top-page .jumbotron > .container-fluid h1 {
	margin-top: 103px;
}
main.top-page .jumbotron > .container-fluid h1 img {
	max-width: 90%;
}
main.top-page .jumbotron figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
main.top-page .sec01 .container {
	max-width: 1026px;
}
main.top-page .sec01 .d-flex {
	align-items: center;
	justify-content: space-between;
	margin-top: 86px;
	margin-bottom: 91px;
}
main.top-page .sec01 .d-flex .img-wrap {
	width: 328px;
}
main.top-page .sec01 .d-flex .img-wrap img {
	max-width: 100%;
}
main.top-page .sec01 .d-flex p {
	display: inline-block;
	width: calc(100% - 398px);
	margin-bottom: 0;
}
main.top-page .sec02,
main.top-page .sec04,
main.top-page .sec06 {
	position: relative;
	height: 840px;
}
main.top-page .sec02 > .container-fluid,
main.top-page .sec04 > .container-fluid,
main.top-page .sec06 > .container-fluid {
	position: absolute;
	top: 0;
	left: -15px;
	right: -15px;
	height: 100%;
	z-index: 1;
}
main.top-page .sec02 .title-wrap,
main.top-page .sec04 .title-wrap,
main.top-page .sec06 .title-wrap {
	position: absolute;
	left: 80px;
	bottom: 80px;
	z-index: 2;
}
main.top-page .sec02 .sec02-slick,
main.top-page .sec04 .sec04-slick,
main.top-page .sec06 .sec06-slick {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
main.top-page .sec02 .sec02-slick .slick-list,
main.top-page .sec04 .sec04-slick .slick-list,
main.top-page .sec06 .sec06-slick .slick-list {
	width: 100%;
	height: 100%;
}
main.top-page .sec02 .sec02-slick .slick-list .slick-track,
main.top-page .sec04 .sec04-slick .slick-list .slick-track,
main.top-page .sec06 .sec06-slick .slick-list .slick-track {
	position: absolute;
	top: 0;
	bottom: 0;
}
main.top-page .sec02 .sec02-slick figure,
main.top-page .sec04 .sec04-slick figure,
main.top-page .sec06 .sec06-slick figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
main.top-page .sec03 .container,
main.top-page .sec05 .container,
main.top-page .sec07 .container {
	max-width: 852px;
}
main.top-page .sec03 .row,
main.top-page .sec05 .row,
main.top-page .sec07 .row {
	padding-top: 126px;
	padding-bottom: 100px;
}
main.top-page .sec05 .col-12 {
	text-align: right;
}
main.top-page .sec03 h2,
main.top-page .sec05 h2,
main.top-page .sec07 h2 {
	font-size: 21px;
	margin-bottom: 20px;
}
main.top-page .sec03 .link-wrap,
main.top-page .sec05 .link-wrap,
main.top-page .sec07 .link-wrap {
	margin-top: 10px;
}
main.top-page .sec08 {
	position: relative;
	height: 714px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
main.top-page .sec08 .title-wrap {
	position: absolute;
	top: 90px;
	left: 80px;
	z-index: 2;
}
main.top-page .sec09 .container-xl {
	max-width: 960px;
}
main.top-page .sec09 .row {
	padding-top: 170px;
	padding-bottom: 145px;
}
main.top-page .sec09 .row img {
	max-width: 100%;
}
.access-info-wrap {
	border-top: 1px solid #040000;
	border-bottom: 1px solid #040000;
	padding: 44px 0 32px;
}
.access-info-wrap dl {
	padding-left: 49px;
}
.access-info-wrap dl + dl {
	margin-top: 35px;
}
.access-info-wrap dl dt {
	position: relative;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 13px;
}
.access-info-wrap dl dt::before {
	position: absolute;
	content: '';
	top: 2px;
	left: -36px;
	display: inline-block;
	width: 29px;
	height: 29px;
	background-size: cover;
}
.access-info-wrap dl.access-arakura dt::before,
.access-info-wrap dl.access-shakushi dt::before {
	background-image: url("../img/top/icon-mt-01.svg");
}
.access-info-wrap dl.access-fuji dt::before,
.access-info-wrap dl.access-local dt::before {
	background-image: url("../img/top/icon-mt-02.svg");
}
.access-info-wrap dl dd {
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 0;
}
.access-info-wrap dl dt a {
	text-decoration: none;
}
.access-info-wrap dl dd a {
	text-decoration: underline;
}
.to-color {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition-delay: 0.3s;
	transition-duration: 0.9s;
}
.to-color.to-color-on {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}
.fadeup {
	opacity: 0;
	transform: translateY(40px);
	transition: 1s;
}
.fadeup.fadeup-on {
	opacity: 1;
	transform: translateY(0);
}
@media(max-width:991px){
	main.top-page .sec01 .container {
		max-width: 820px;
	}
	main.top-page .sec01 .d-flex .img-wrap {
		width: 300px;
	}
	main.top-page .sec01 .d-flex p {
		width: calc(100% - 350px);
	}
	main.top-page .sec02, 
	main.top-page .sec04, 
	main.top-page .sec06,
	main.top-page .sec08 {
		height: 600px;
	}
	main.top-page .sec02 .title-wrap,
	main.top-page .sec04 .title-wrap,
	main.top-page .sec06 .title-wrap {
		left: 30px;
		bottom: 30px;
	}
	main.top-page .sec09 .row {
		padding-top: 100px;
	}
}
@media(max-width:767px){
	main.top-page .sec01 .d-flex {
		flex-direction: column;
	}
	main.top-page .sec01 .d-flex .img-wrap {
		margin-bottom: 40px;
	}
	main.top-page .sec01 .d-flex p {
		width: 100%;
		max-width: 500px;
	}
	main.top-page .sec02, 
	main.top-page .sec04, 
	main.top-page .sec06,
	main.top-page .sec08 {
		height: 400px;
	}
	main.top-page .sec02 .title-wrap img {
		width: 181px;
	}
	main.top-page .sec04 .title-wrap img {
		width: 157px;
	}
	main.top-page .sec06 .title-wrap img {
		width: 93px;
	}
	main.top-page .sec03 h2, 
	main.top-page .sec05 h2, 
	main.top-page .sec07 h2 {
    font-size: 18px;
	}
	main.top-page .sec05 .col-12 {
		text-align: left;
	}
	main.top-page .sec08 .title-wrap {
		top: 30px;
		left: 50px;
	}
	main.top-page .sec08 .title-wrap img {
		width: 107px;
	}
	main.top-page .sec09 .row {
		padding-top: 80px;
		padding-bottom: 100px;
	}
	.access-info-wrap {
		width: 100%;
		max-width: 400px;
		padding: 35px 0 28px;
		margin: 40px auto 0;
	}
}
@media(max-width:575px){
	main.top-page .sec01 .d-flex .img-wrap {
		width: 280px;
		max-width: 80%;
	}
	main.top-page .sec02, 
	main.top-page .sec04, 
	main.top-page .sec06 {
		height: 300px;
	}
	main.top-page .sec03 .row, 
	main.top-page .sec05 .row, 
	main.top-page .sec07 .row,
	main.top-page .sec08 {
    padding-top: 100px;
    padding-bottom: 90px;
	}
}

/* lower-page */
main.lower-page .jumbotron {
	background-size: cover
}
main.lower-page .jumbotron h1 {
	position: absolute;
	left: 75px;
	bottom: 60px;
	margin-bottom: 0;
	z-index: 2;
}
main.lower-page .sec01 .lead-row {
	padding-top: 120px;
	padding-bottom: 70px;
}
main.lower-page .sec01 .lead-row h2 {
	font-size: 26px;
	margin-bottom: 40px;
}
main.lower-page .sec01 .rate-row {
	max-width: 848px;
	padding-bottom: 75px;
	margin: 0 auto;
}
main.lower-page .sec01 .rate-row figure {
	margin-bottom: 0;
}
main.lower-page .sec01 .rate-row figure figcaption {
	font-size: 14px;
	margin-top: 22px;
	margin-bottom: 0;
}
main.lower-page .sec01 .rate-row figure figcaption .star-rate {
	color: #1B499C;
}
main.lower-page .sec02 .mt-slick {
	width: 100%;
	max-width: 1020px;
	margin: 0 auto 216px;
}
main.lower-page .sec02 .mt-slick figure {
	margin-bottom: 0;
}
main.lower-page .sec02 .mt-slick figure img {
	max-width: 100%;
	height: auto;
}
main.lower-page .sec02 .mt-slick .slick-dots {
	bottom: -50px
}
main.lower-page .sec02 .mt-slick .slick-dots .slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0 4px;
}
main.lower-page .sec02 .mt-slick .slick-dots  li button:before {
	width: 8px;
	height: 8px;
	content: '';
	opacity: 1;
	background: #fff;
	border: 1px solid #000000;
	border-radius: 50%;
}
main.lower-page .sec02 .mt-slick .slick-dots  li.slick-active button:before {
	opacity: 1;
	background: #000000;
	border: 1px solid #000000;
}
main.lower-page .sec03 .row {
	padding-bottom: 107px;
}
main.lower-page .sec03 figure img {
	max-width: 100%;
}
main.lower-page .sec03 .link-wrap {
	font-size: 15px;
	line-height: 1;
	vertical-align: text-bottom;
	margin-top: 10px;
}
main.lower-page .sec04 .row {
	padding-bottom: 135px;
}
main.lower-page .sec04 .row .col-md-6:first-child {
	padding-right: 9px;
}
main.lower-page .sec04 .row .col-md-6:last-child {
	padding-left: 9px;
}
main.lower-page .sec04 figure {
	position: relative;
	margin-bottom: 0;
}
main.lower-page .sec04 figure img {
	transition: 0.3s all;
}
main.lower-page .sec04 figure a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
main.lower-page .sec04 figure figcaption {
	font-size: 21px;
	letter-spacing: 0.08em;
	margin-top: 3px;
	margin-bottom: 0;
}
main.lower-page .sec04 figure figcaption .link-wrap img {
	display: inline-block;
	margin-bottom: 10px;
}
main.lower-page .sec04 figure:hover figcaption {
	text-decoration: underline;
	opacity: 0.7;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
main.lower-page .sec04 figure:hover > img {
	opacity: 0.7;
}
@media(max-width:767px){
	main.lower-page .jumbotron h1 {
		left: 30px;
		bottom: 30px;
	}
	main.lower-page .jumbotron h1.arakura img {
		width: 181px;
	}
	main.lower-page .jumbotron h1.shakushi img {
		width: 157px;
	}
	main.lower-page .jumbotron h1.fuji img {
		width: 93px;
	}
	main.lower-page .sec01 .lead-row {
		padding-top: 100px;
	}
	main.lower-page .sec01 .lead-row h2 {
		font-size: 22px;
	}
	main.lower-page .sec01 .rate-row {
		padding-bottom: 20px;
	}
	main.lower-page .sec01 .rate-row figure {
		margin-bottom: 50px;
	}
	main.lower-page .sec01 .rate-row figure figcaption {
		margin-top: 20px;
	}
	main.lower-page .sec02 .mt-slick {
		margin-bottom: 100px;
	}
	main.lower-page .sec02 .mt-slick .slick-dots {
		bottom: -40px;
	}
	main.lower-page .sec03 .row {
		padding-bottom: 80px;
	}
	main.lower-page .sec03 .link-wrap {
		font-size: 13px;
	}
	main.lower-page .sec04 .row {
		padding-bottom: 90px;
	}
	main.lower-page .sec04 .row .col-md-6:first-child {
		padding-right: 15px;
	}
	main.lower-page .sec04 .row .col-md-6:last-child {
		padding-left: 15px;
	}
	main.lower-page .sec04 figure {
		margin-bottom: 40px;
	}
	main.lower-page .sec04 figure figcaption {
		font-size: 17px;
		margin-top: 5px;
	}
}
@media(max-width:575px){
	main.lower-page .sec01 .rate-row figure img {
		width: 160px;
	}
	main.lower-page .sec04 figure figcaption {
		font-size: 15px;
	}
}