@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;700&display=swap');


/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}


/*------------------------------------------
	foundation
-------------------------------------------*/
@font-face {
  font-family: 'zen-kaku-gothic-new';
  src: 
		url("../fonts/ZenKakuGothicNew-Black.ttf") format("ttf"),
		url("../fonts/ZenKakuGothicNew-Medium.ttf") format("ttf"),
		url(../fonts/ZenKakuGothicNew-Regular.ttf) format("ttf");
}
html {
	position: relative;
	padding: 0;
	margin: 0;
	font-size: 10px;
}
body {
	position: relative;
	width: 100%;
	height: 100%;
	color: #343434;
	font-family: "zen-kaku-gothic-new", sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 1.8rem;
	line-height: 1.4;
}
@media screen and (max-width: 896px) {
	body {
		line-height: 1.2;
	}
}
html,
body {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	overflow-x: hidden;
}
* {
	transition: all .4s ease-out;
}
ul {
	list-style: none;
}
a {
	display: block;
	width: 100%;
	height: 100%;
	transition: .8s;
	pointer-events: auto;
	cursor: pointer;
	text-decoration: none;
}
a:hover {
	opacity: 0.6;
	transition: .4s;
}
img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: all .4s ease-out;
}
.pcnone {
	display: none;
}
@media screen and (max-width: 896px) {
	.pcnone {
		display: inline-block;
	}
	.spnone {
		display: none;
	}
}
body {
/*background: #fff;*/
}

/*------------------------------------------
	layout
-------------------------------------------*/
header {
	position: fixed;
	padding: 15px 5%;
	width: 100%;
	height: auto;
	background: #930E32 url("../img/header_bg.svg")top left repeat-x;
	background-size: auto 100%;
	z-index: 50;
}
header h1 {
	color: #fff;
	font-size: clamp(2.0rem, 4vw, 2.7rem);
}
@media screen and (max-width: 896px) {
	header h1 {
		color: #fff;
		font-size: 2.0rem;
		line-height: 1.2;
	}
}


/*---ハンバーガー---*/
header #h_btn {
	position: absolute;
  display: block;
  width: 40px;
  height: 25px;
	top: 50%;
  right: 5%;
  pointer-events: auto;
  box-sizing: border-box;
	transform: translateY(-50%);
  z-index: 50;
}
#h_btn .h_bar,
#h_btn .h_bar span {
  display: block;
  transition: all .4s;
  box-sizing: border-box;
}
header #h_btn .h_bar {
  position: relative;
  width: 40px;
  height: 25px;
}
header #h_btn .h_bar span {
  position: absolute;
  width: 100%;
  height: 3px;
  right: 0;
  font-weight: bold;
  background-color: #fff;
}
header #h_btn .h_bar span:first-child {
  top: 0;
}
header #h_btn .h_bar span:nth-child(2) {
  top: 11px;
}
header #h_btn .h_bar span:last-child {
  bottom: 0;
}
header #h_btn.active .h_bar span {
  background: #fff;
}
header #h_btn.active .h_bar span:first-child {
  transform: translateY(11px) rotate(-315deg);
}
header #h_btn.active .h_bar span:nth-child(2) {
  opacity: 0;
}
header #h_btn.active .h_bar span:last-child {
  transform: translateY(-11px) rotate(315deg);
}
header #h_content {
  position: fixed;
  width: 100%;
  height: auto;
  right: 0;
  top: 62px;
  background-color: rgba(246,248,244,0.9);
  overflow-x: hidden;
  pointer-events: auto;
  transition: all 0.4s;
  transform: translateX(100%);
  opacity: 0;
  z-index: 20;
}
header #h_content.active {
  transform: translateX(0px);
  transition: all 0.8s;
  opacity: 1;
}
header #h_content .sp_inner {
  margin: 0 auto;
  width: 80%;
  height: auto;
  display: block;
}
header #h_content .sp_inner li {
  position: relative;
	border-bottom: 1px solid #930E32;
}
header #h_content .sp_inner li a {
	padding: 20px 0;
  color: #222;
	text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 26px;
  white-space: nowrap;
}
header #h_content .sp_inner li:last-child {
  margin-bottom: 0;
	border-bottom: none;
}
header #h_content .sp_inner a {
  display: inline-block;
  text-decoration: none;
  color: #707070;
}

@media screen and (max-width: 896px) {
	header #h_content {
		top: 78px;
	}
}

/*---ページトップ---*/
#page_top {
  position: fixed;
  left: 40px;
	bottom: 20px;
  z-index: 100;
}
#page_top a {
  display: block;
  width: 18px;
  height: auto;
}
@media screen and (max-width: 500px) {
	#page_top {
		position: fixed;
		left: 10px;
		bottom: 100px;
		z-index: 100;
	}
	#page_top a {
		display: block;
		width: 18px;
		height: auto;
	}
}

/*------------------------------------------
	共通CSS
-------------------------------------------*/
main {
	background: #fff;
	background-size: 22px 38px;
}
.bg_area {
	padding-bottom: 230px;
	width: 100%;
	background: url("../img/content_bg_bottom.jpg"), url("../img/content_bg_center.jpg");
	background-position: bottom left, top left;
	background-size: 1366px auto, 1616px auto;
	background-repeat: repeat-x, repeat;
}
.content_title {
	margin-bottom: 10px;
	text-align: center;
	font-size: 4.2rem;
	font-weight: bold;
	
}
@media screen and (max-width: 896px) {
	.bg_area {
		padding-bottom: 130px;
		width: 100%;
		background: url("../img/content_bg_bottom.jpg"), url("../img/content_bg_center.jpg");
		background-position: bottom left, top left;
		background-size: 1366px auto, 1616px auto;
		background-repeat: repeat-x, repeat;
	}
	.content_title {
		margin-bottom: 30px;
		font-size: 3.4rem;
		line-height: 1.2;
	}
}

.sub_title {
	position: relative;
	margin-bottom: 22px;
	padding-top: 15px;
	padding-left: 90px;
	font-size: 3.6rem;
	line-height: 1.4;
	font-weight: bold;
}
.sub_title > .text {
	display: block;
	font-size: 1.6rem;
	font-weight: medium;
}
.sub_title span {
	padding-top: 8px;
	display: block;
	font-size: 1.4rem;
	font-weight:  normal;
}
.content_wrapper .sub_title::before {
	position: absolute;
	padding-top: 32px;
	padding-left: 13px;
	display: inline-block;
	width: 80px;
	height: 77px;
	top: 0;
	left: 0;
	text-align: center;
	color: #930E32;
	font-size: 2.6rem;
}
.content_wrapper .sub_title.central::before {
	background: url("../img/sub_title_item_01.svg") top left no-repeat;
	background-size: 100% auto;
}
.content_wrapper .sub_title.wide::before {
	background: url("../img/sub_title_item_02.svg") top left no-repeat;
	background-size: 100% auto;
}
.content_wrapper .sub_title.item_01::before {
	content: '1';
}
.content_wrapper .sub_title.item_02::before {
	content: '2';
}
.content_wrapper .sub_title.item_03::before {
	content: '3,4';
}
.content_wrapper .sub_title.item_05::before {
	content: '5';
}
.content_wrapper .sub_title.item_06::before {
	content: '6';
}
.content_wrapper .sub_title.item_07::before {
	content: '7';
}
.content_wrapper .sub_title.item_08::before {
	content: '8';
}
.content_wrapper .sub_title.item_09::before {
	content: '9';
}
.content_wrapper .sub_title.item_10::before {
	content: '10';
}
.content_wrapper .sub_title.item_11::before {
	content: '11';
}
.content_wrapper .sub_title.item_12::before {
	content: '12';
}
.content_wrapper .sub_title.item_13::before {
	content: '13';
}
.content_wrapper .sub_title.item_14::before {
	content: '14';
}
.content_wrapper .sub_title.item_15::before {
	content: '15';
}
.content_wrapper .sub_title.item_16::before {
	content: '16';
}
.content_wrapper .sub_title.item_17::before {
	content: '17';
}
.content_wrapper .sub_title.item_18::before {
	content: '18';
}
.content_wrapper .sub_title.item_19::before {
	content: '19';
}
.content_wrapper .sub_title.item_20::before {
	content: '20';
}
.content_wrapper .sub_title.item_21::before {
	content: '21';
}
.content_wrapper .sub_title.item_22::before {
	content: '22';
}
.content_wrapper .sub_title.item_23::before {
	content: '23';
}
.content_wrapper .sub_title.item_24::before {
	content: '24';
}


@media screen and (max-width: 896px) {
	.content_wrapper .sub_title {
		padding-top: 0;
		padding-left: 70px;
		font-size: 2.8rem;
		line-height: 1.2;
	}
	#hotspots .sub_title,
	#accommodation .sub_title {
		padding-top: 0;
		padding-left: 60px;
		font-size: 2.8rem;
		line-height: 1.2;
	}
	.content_wrapper .sub_title::before {
		padding-top: 30px;
		padding-left: 10px;
		width: 61px;
		height: 59px;
		top: 6px;
		left: 0;
		font-size: 2.0rem;
		background-size: 100% auto;
	}

	.sub_title span {
		display: block;
		font-size: 1.4rem;
		line-height: 1.4;
	}
}

#page_top {
  position: fixed;
  left: 10px;
  z-index: 100;
}
#page_top a {
  display: block;
  width: auto;
  height: 94px;
}
#page_top a img {
	width: auto;
  height: 100%;
}


/*------------------------------------------
	Project
-------------------------------------------*/
.p-cont__width-1000 {
	margin: 0 auto;
	width: 90%;
	max-width: 1000px;
	height: auto;
}
.p-cont__width-920 {
	margin: 0 auto;
	width: 90%;
	max-width: 920px;
	height: auto;
}
.p-cont__width-960 {
	margin: 0 auto;
	width: 90%;
	max-width: 960px;
	height: auto;
}
.p-cont__width-706 {
	margin: 0 auto;
	width: 90%;
	max-width: 706px;
	height: auto;
}
.p-cont__width-724 {
	margin: 0 auto;
	width: 90%;
	max-width: 724px;
	height: auto;
}
.p-cont__width-800 {
	margin: 0 auto;
	width: 90%;
	max-width: 800px;
	height: auto;
}
.p-cont__width-820 {
	margin: 0 auto;
	width: 90%;
	max-width: 820px;
	height: auto;
}
@media screen and (max-width: 896px) {
	.p-cont__width-1000 {
		margin: 0 auto 40px;
		width: 90%;
		max-width: 1000px;
		height: auto;
	}
}

/*------------------------------------------
	Utility
-------------------------------------------*/
.u-content_topline {
	border-top: 1px solid #930E32;
}
.u-content_underline {
	border-bottom: 1px solid #930E32;
}
.u-vertical-center {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.u-mg-btm_60 {
	margin-bottom: 60px;
}
.u-mg-btm_80 {
	margin-bottom: 80px;
}
.u-mg-btm_140 {
	margin-bottom: 140px;
}
.u-font__coler-red {
	color: #930E32;
}
@media screen and (max-width: 896px) {
	.u-mg-btm_80 {
		margin-bottom: 30px;
	}
}
h2.u-font__coler-red::after {
	content: url("../img/content_title_item_01.svg");
	display: block;
}
.u-font__coler-yellow {
	color: #DE8C2F;
}
h2.u-font__coler-yellow::after {
	content: url("../img/content_title_item_02.svg");
	display: block;
}
.u-font__coler-pink {
	color: #C74669;
}
h2.u-font__coler-pink::after {
	content: url("../img/content_title_item_03.svg");
	display: block;
}
.u-font__coler-brown {
	color: #C08D4E;
}
h2.u-font__coler-brown::after {
	content: url("../img/content_title_item_04.svg");
	display: block;
}
.u-font__coler-green {
	color: #58724E;
}
h2.u-font__coler-green::after {
	content: url("../img/content_title_item_05.svg");
	display: block;
}
.u-flex-jc-s-ard {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}
.u-flex-jc-f-star {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}
.u-flex-jc-f-end {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
}
.u-flex-jc-center {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.u-flex-jc-s-btw {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
