@charset "utf-8";
@import url('https://www.nta.co.jp/akafu/east/common/css/common.css');
/*Noto Sans（ゴシック）　と　Noto Serif(明朝)　*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&family=Noto+Serif+JP:wght@400;700&display=swap');
/*fontawesome*/
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');

/* CSS Document */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

#wrapper {
	width: 100%;
	margin: 0 auto 10px;
	padding: 0 0 50px;
	font-size: 14px;
	line-height: 1.6;
	font-family: 'Noto Serif JP', serif;
	overflow: hidden;
	/*カラー登録*/
	--page-color1: #8A0C83;
	--page-color2: #f9f0f9;
	--page-color3: #EA2264;
	--page-color4:#FADCE6;
	--nav-color: #2A1458;
}

#wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#wrapper a {
	word-break: break-all;
}

#wrapper img {
	vertical-align: bottom;
}

#wrapper h2,
#wrapper h3,
#wrapper h4 {
	font-weight: bold;
}

@media screen and (min-width: 760px) {
	.pc_none {
		display: none;
	}
}

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

.marker {
	background: linear-gradient(transparent 70%, rgba(255, 210, 44, 0.6) 70%);
	font-weight: bold;
	padding-bottom: 0.1em;
}

.slash {
	width: fit-content;
	margin: 0 auto 20px;
	padding: 0 20px;
	background: url("../images/slash_left.svg") no-repeat center left, url("../images/slash_right.svg") no-repeat center right;
	background-size: 10px;
	font-size: 110%;
}

@media screen and (max-width: 759.9px) {
	.slash {
		padding: 0 12px;
		background-size: 8px;
		font-size: 100%;
	}
}

p.credit {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 10px 2px;
	font-size: 12px;
	background: rgba(0, 0, 0, 0.4);
	color: #FFFFFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
	width: fit-content;
	margin: 5px 5px 5px auto;
	border-radius: 15px;
}

/*--------予約ボタン-------------*/

.area_niigata a.godetail {
	background: var(--page-color1);
	border-radius: 6px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #FFF;
	transition: 0.2s ease-in-out, box-shadow 0.1s;
	text-decoration: none;
	text-align: center;
	font-size: 120%;
	line-height: 1.4;
	border: solid 2px var(--page-color1);
	font-family: 'Noto Sans JP', sans-serif;
	width: 80%;
	height: 50px;
	margin: 0 auto;
	box-shadow: 0 2px 0 var(--page-color1), 0 6px 15px rgba(0, 0, 0, 0.15);
	animation: pushmove 1.8s cubic-bezier(.4, 0, .6, 1.2) infinite;
}
.area_nagaoka a.godetail {
	background: var(--page-color3);
	border-radius: 6px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #FFF;
	transition: 0.2s ease-in-out, box-shadow 0.1s;
	text-decoration: none;
	text-align: center;
	font-size: 120%;
	line-height: 1.4;
	border: solid 2px var(--page-color3);
	font-family: 'Noto Sans JP', sans-serif;
	width: 80%;
	height: 50px;
	margin: 0 auto;
	box-shadow: 0 2px 0 var(--page-color3), 0 6px 15px rgba(0, 0, 0, 0.15);
	animation: pushmove3 1.8s cubic-bezier(.4, 0, .6, 1.2) infinite;
}


@keyframes pushmove {
	0% {
		transform: translateY(0) scale(1);
		box-shadow: 0 2px 0 var(--page-color1), 0 6px 15px rgba(0, 0, 0, 0.15);
		filter: none;
	}

	10% {
		transform: translateY(3px) scale(0.98);
		box-shadow: 0 0px 0 var(--page-color1), 0 2px 6px rgba(0, 0, 0, 0.10);
		filter: brightness(1.2);
	}

	20% {
		transform: translateY(0) scale(1);
		box-shadow: 0 2px 0 var(--page-color1), 0 6px 15px rgba(0, 0, 0, 0.15);
		filter: none;
	}

	100% {
		transform: translateY(0) scale(1);
		box-shadow: 0 2px 0 var(--page-color1), 0 6px 15px rgba(0, 0, 0, 0.15);
		filter: none;
	}
}

@keyframes pushmove3 {
	0% {
		transform: translateY(0) scale(1);
		box-shadow: 0 2px 0 var(--page-color3), 0 6px 15px rgba(0, 0, 0, 0.15);
		filter: none;
	}

	10% {
		transform: translateY(3px) scale(0.98);
		box-shadow: 0 0px 0 var(--page-color3), 0 2px 6px rgba(0, 0, 0, 0.10);
		filter: brightness(1.2);
	}

	20% {
		transform: translateY(0) scale(1);
		box-shadow: 0 2px 0 var(--page-color3), 0 6px 15px rgba(0, 0, 0, 0.15);
		filter: none;
	}

	100% {
		transform: translateY(0) scale(1);
		box-shadow: 0 2px 0 var(--page-color3), 0 6px 15px rgba(0, 0, 0, 0.15);
		filter: none;
	}
}
a.godetail:hover {
	opacity: 0.8;
	background: #FFF;
	color: #646464;
	border: solid 2px #646464;
}

@media screen and (max-width: 759.9px) {
	a.godetail {
		font-size: 14px;
	}
}
/*--------.page_roof-------------*/
.page_roof {
	width: 100%;
	margin-bottom: 30px;
	background:url("../images/bg_top.jpg")repeat;
	background-size: auto 100%;
}

.page_roof .inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;	
}

.page_roof h2 {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index: 10;
}

.page_roof h2 img {
	width: 100%;
	height: auto;
}
.page_roof p {
	position: absolute;
	bottom:-40px;
	left: 0;
	right: 0;
	width: 75%;
	height: 30px;
	margin: 0 auto;
	text-align: right;
	font-size: 90%;
}
@media screen and (max-width: 759.9px) {
	.page_roof p {
		width: 90%;
		font-size: 12px;
		bottom:-35px;
	}
}

/*-------------トップリード--------------*/
.toplead .inner {
	width: 90%;
	max-width: 950px;
	margin: 0 auto;
	padding: 30px 0;
	text-align: center;
}
.toplead h2 {
	font-size: 180%;
	margin-bottom: 20px;
	color:var(--nav-color);
	font-weight: bold;
}
.toplead p {
	font-size: 120%;
	line-height: 1.8;
	margin-bottom: 20px;
}
.toplead p.attention {
	text-align: left;
	width: fit-content;
	margin: 0 auto;
	font-size: 100%;
	text-indent: -1em;
	padding-left: 1em;
}
@media screen and (max-width: 759.9px) {
	.toplead .inner {
		padding: 20px 0;
	}
	.toplead h2 {
		font-size: 160%;
		margin-bottom: 20px;
	}
	.toplead p {
		font-size: 110%;
	}
	.toplead p.attention {
		font-size: 90%;
	}
}

/*-------------ページコンテンツ   --------------*/
.pageContent {
	width: 100%;
	margin-bottom: 40px;
}

.pageContent .inner {
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width: 759.9px) {
	.pageContent .inne {}
}

/*-------------協力団体--------------*/
#support {
	margin-bottom: 40px;
}

#support .box {
	width: 90%;
	max-width: 800px;
	border: 6px solid #fccb4c;
	padding: 20px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 35% 1fr;
	/*grid-template-rows:auto auto;*/
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

#support .box .photo {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
}

#support .box .photo img {
	width: 100%;
}

#support .box .name {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	margin-bottom: 10px;
}

#support .box .name p {
	font-size: 120%;
}

#support .box .comment {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	font-size: 110%;
}

a.jump_hp {
	width: fit-content;
	display: block;
	margin-bottom: 10px;
	background: #fccb4c;
	border-radius: 10px;
	text-align: center;
	padding: 5px 30px;
	color: inherit;
}

a.jump_hp i {
	margin-left: 10px;
}

@media screen and (max-width: 759.9px) {
	#support .box {
		border: 5px solid #fccb4c;
		padding: 15px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 45% 1fr;
		grid-column-gap: 15px;
		grid-row-gap: 15px;
	}

	#support .box .photo {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
	}

	#support .box .name {
		grid-row: 1 / 2;
		grid-column: 2 / 3;
	}

	#support .box .comment {
		grid-row: 2 / 3;
		grid-column: 1 / 3;
		font-size: 100%;
	}

	#support .box .name p {
		font-size: 110%;
		margin-bottom: 10px;
	}

	.jump_hp {
		padding: 5px;
		font-size: 14px;
	}
}
/*-----スタンプラリー説明-------------------*/
#stamp-rally{
	background:rgba(195,205,212,0.4);
	padding: 30px 0;
}
#stamp-rally h2{
	text-align: center;
	font-size: 160%;
	margin-bottom: 20px;
}
#stamp-rally .comment{
	background: #FFFFFF;
	width: fit-content;
	padding: 20px 40px 10px;
	margin: 0 auto 40px;
}
#stamp-rally .comment p{
	font-size: 120%;
	margin-bottom: 10px;
	text-align: center;
}
#stamp-rally .comment p.date{
	border-bottom: 1px solid var(--page-color2);
	padding-bottom: .2em;
}
@media screen and (max-width: 759.9px) {
	#stamp-rally h2{
		text-align: center;
		font-size: 140%;
		margin-bottom: 20px;
	}
	#stamp-rally .comment{
		background: #FFFFFF;
		padding: 20px 20px 10px;
		margin: 0 auto 20px;
	}
	#stamp-rally .comment p{
		font-size: 110%;
		margin-bottom: 10px;
		text-align: center;
	}
}
#stamp-rally .qrcode {
	margin-bottom: 50px;
}
#stamp-rally .qrcode > p{
	font-size: 120%;
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
}
#stamp-rally .qrcode ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1%px;
}
#stamp-rally .qrcode ul li{
	width: 23%;
	text-align: center;
}
#stamp-rally .qrcode ul li p{
	margin-bottom: 5px;
}
#stamp-rally .qrcode ul li img{
	width: 80%;
	height: auto;
	border: 1px solid #CCC;
	margin-bottom: 5px;
}
#stamp-rally .qrcode ul li a{
	display: block;
}
#stamp-rally .qrcode ul li a i{
	margin-left: 0.5em;
}

@media screen and (max-width: 759.9px) {
	#stamp-rally h2{
		font-size: 120%;
	}
	#stamp-rally .qrcode ul li{
		width: 45%;
		margin-bottom: 20px;
	}
}
#stamp-rally .step_wrap{
		margin-bottom: 20px;
}
#stamp-rally .step_wrap ul{
		display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
		overflow-x:scroll;
	padding-bottom: 20px;
}

#stamp-rally .step_wrap li{
	width: 25%;
	margin-right: 20px;
	flex-shrink: 0; /*縮小させない*/
}
#stamp-rally .step_wrap li img{
	width: 100%;
}
#stamp-rally .step_wrap .step {
	background: var(--nav-color);
	color: #FFFFFF;font-size: 100%;
	padding: 0 20px;
	border-radius: 10px;
	width: 60%;
	margin: 0 auto 10px;
	text-align: center;
}
#stamp-rally .step_wrap li p {
	margin-bottom: 10px;
}
@media screen and (max-width: 759.9px) {
	#stamp-rally .step_wrap li{
		width: 40%;
		margin-right: 20px;
		flex-shrink: 0; /*縮小させない*/
	}
}
/*-------------ナビ-   --------------*/
.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
#wrapper nav {
  background:var(--nav-color);
  width: 100%;
  z-index: 99;
  margin-bottom: 40px;
  padding: 0;
}

#wrapper nav ul a,
#wrapper nav ul a:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

#wrapper nav ul {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
}

#wrapper nav ul a {
  flex-grow: 1;
  height: 60px;
  background: url("../images/menu_line.svg") no-repeat center right;
  background-size: 1px;
  /*width: 100%;*/
}

#wrapper nav ul a:first-child {
  background: url("../images/menu_line.svg") no-repeat center left,
    url("../images/menu_line.svg") no-repeat center right;
  background-size: 1px;
}

#wrapper nav ul a li {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#wrapper nav ul a li p {
  text-align: center;
  line-height: 1.4;
}

#wrapper nav ul a li img {
  max-height: 110%;
}

@media screen and (min-width: 760px) {
  #wrapper nav ul a li:after {
    font-family: "Font Awesome 5 Free";
    content: "\F107";
    font-weight: 900;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
}

@media screen and (max-width: 759.9px) {
  #wrapper nav ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  #wrapper nav ul a {
    height: 50px;
		background: none;
  }
	#wrapper nav ul a:first-child {
		background: url("../images/menu_line.svg") no-repeat center right;
		background-size: 1px;
	}

}

/*-----おすすめ--------------------*/
.recommend .title1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 160%;
	gap: 10px;
	margin-bottom: 20px;
}

.recommend .title1 span {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--page-color1);
	width: 100px;
	height: 100px;
	border-radius: 50px;
	color: #FFFFFF;
	line-height: 1;
}
#area_nagaoka .title1 span {
	background: var(--page-color3);
}
@media screen and (max-width: 759.9px) {
	.recommend .title1 {
		font-size: 140%;
	}

	.recommend .title1 span {
		width: 80px;
		height: 80px;
		border-radius: 40px;
	}
}

.recommend .title2 {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.recommend .title2 h3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 160%;
	background: var(--page-color2);
	padding: 20px 30px;
	white-space: nowrap;
}
#area_nagaoka .title2 h3 {
	background: var(--page-color4);
}
.recommend .title2 h3 span {
	font-weight: normal;
	font-size: 75%;
}

.recommend .title2 .lead {
	/* display: none; */
}

.recommend .title2 .lead p {
	font-size: 110%;
}

@media screen and (max-width: 759.9px) {
	.recommend .title2 {
		flex-direction: column;
		gap: 10px;
	}

	.recommend .title2 h3 {
		font-size: 140%;
		padding: 10px 30px;
	}
}

/*-----モデルコース--------------------*/
.modelcourse {
	width: 90%;
	margin: 0 auto;
}

.modelcourse .start {
	width: 100%;
	height: 60px;
	border: 4px solid var(--page-color2);
	border-radius: 30px;
	padding-left: 40px;
	display: flex;
	align-items: center;
}
#area_nagaoka .modelcourse .start {
	border: 4px solid var(--page-color4);
}
.modelcourse .start h3 {
	font-size: 180%;
}

.modelcourse .transportation {
	margin-left: 10%;
	border-left: 4px dotted #f3abab;
	padding: 40px;
}

.modelcourse .transportation p {
	font-size: 120%;
}

.modelcourse .shrine {
	width: 100%;
	background-color:  var(--page-color2);
	border-radius: 30px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 20px 20px 40px;
}
#area_nagaoka .modelcourse .shrine {
	background-color:  var(--page-color4);
}
.modelcourse .shrine .no {
	position: absolute;
	top: -20px;
	left: -10px;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 260%;
	background: var(--page-color1);
	border-radius: 30px;
	color: #FFFFFF;
	line-height: 1;
}
#area_nagaoka .modelcourse .shrine .no {
	background-color:  var(--page-color3);
}


.modelcourse .shrine .name_comment {
	width: 60%;
}

.modelcourse .shrine .name_comment h3 {
	font-size: 180%;
	margin-bottom: 20px;
}

.modelcourse .shrine .name_comment h3 span {
	font-weight: normal;
	font-size: 75%;
}

.modelcourse .shrine .name_comment .comment p {
	font-size: 110%;
}

.modelcourse .shrine .photo {
	width: 40%;
}

.modelcourse .shrine .photo img {
	width: 100%;
}

@media screen and (max-width: 759.9px) {
	.modelcourse .start {
		width: 100%;
		height: 50px;
		border-radius: 25px;
		padding-left: 30px;
	}

	.modelcourse .start h3 {
		font-size: 140%;
	}

	.modelcourse .transportation {
		margin-left: 20%;
		padding: 30px;
	}

	.modelcourse .transportation p {
		font-size: 110%;
	}

	.modelcourse .shrine {
		width: 100%;
		border-radius: 30px;
		position: relative;
		display: block;
		align-items: center;
		gap: 0;
		padding: 20px;
	}

	.modelcourse .shrine .no {
		position: absolute;
		top: -10px;
		left: -10px;
		width: 50px;
		height: 50px;
		font-size: 160%;
		border-radius: 25px;
	}

	.modelcourse .shrine .name_comment {
		width: 100%;
		margin-bottom: 15px;
	}

	.modelcourse .shrine .name_comment h3 {
		font-size: 160%;
		padding-left: 20px;
		margin-bottom: 15px;
		line-height: 1.4;
	}

	.modelcourse .shrine .name_comment .comment p {
		font-size: 100%;
	}

	.modelcourse .shrine .photo {
		width: 100%;
	}
}

/*-----施設--------------------*/
.area_niigata {
	margin-bottom: 60px;
}
.shisetsu {
	border: 1px solid #CCC;
	display: flex;
	margin-bottom: 20px;
}

.shisetsu .name_photo {
	width: 50%;
	padding: 20px;
}

.shisetsu .name_photo h3 {
	font-size: 200%;
	margin-bottom: 10px;
}

.shisetsu .name_photo img {
	width: 100%;
}

.shisetsu .tokuten_yoyaku {
	width: 50%;
	padding: 20px;
}

.shisetsu .tokuten {
	margin-bottom: 20px;
}

.shisetsu .tokuten h4 {
	width: fit-content;
	font-size: 120%;
	padding: 2px 20px;
	border-radius: 20px;
	margin: 0 auto 20px;
	color: #FFFFFF;
	font-family: sans-serif;
}
.shisetsu .tokuten dl {
	padding: 10px;
	display: flex;
	align-items: center;
}

.shisetsu .tokuten dl dt {
	width: 60%;
	position: relative;
}

.shisetsu .tokuten dl dd {
	width: 40%;
}

.shisetsu .tokuten dl dt img {
	width: 100%;
}

.shisetsu .tokuten dl dd p {
	text-align: center;
}
.area_niigata .shisetsu .tokuten h4{
	background: var(--page-color1);
}
.area_nagaoka .shisetsu .tokuten h4{
	background: var(--page-color3);
}
.area_niigata .shisetsu .tokuten dl{
	background: var(--page-color2);
}
.area_nagaoka .shisetsu .tokuten dl{
	background: var(--page-color4);
}

@media screen and (max-width: 759.9px) {
	.shisetsu {
		display: block;
		margin-bottom: 20px;
	}

	.shisetsu .name_photo {
		width: 100%;
		padding: 20px;
	}

	.shisetsu .name_photo h3 {
		font-size: 140%;
		margin-bottom: 10px;
	}

	.shisetsu .tokuten_yoyaku {
		width: 100%;
		padding: 20px;
	}

	.shisetsu .tokuten {
		margin-bottom: 20px;
	}

	.shisetsu .tokuten h4 {
		width: fit-content;
		font-size: 100%;
		padding: 0px 20px;
		border-radius: 20px;
		margin: 0 auto 20px;
	}

	.shisetsu .tokuten dl {
		display: flex;
		align-items: center;
	}

	.shisetsu .tokuten dl dt {
		width: 60%;
		position: relative;
	}

	.shisetsu .tokuten dl dd {
		width: 40%;
	}

	.shisetsu .tokuten dl dd p {
		text-align: center;
	}
}

/*-----inboxswiper--------------------*/
.swiper-container.inbox .swiper-slide img {
	width: 100%;
}

/* ドットインジケーターの色*/
.swiper-pagination.inbox .swiper-pagination-bullet {
	opacity: 0.6;
}

/* ドットインジケーターの位置*/
.swiper-container.inbox .swiper-pagination {
	bottom: 5px;
}

.swiper-pagination.inbox .swiper-pagination-bullet-active {
	background: #FFFFFF;
}

/* prev&next 矢印の色とサイズ*/
.swiper-button-prev.inbox::after,
.swiper-button-next.inbox::after {
	font-size: 20px;
	color: #FFF;
	font-weight: bold;
}

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

	.swiper-button-prev.inbox::after,
	.swiper-button-next.inbox::after {
		font-size: 15px;
	}
}
/*-----トップwiper カスタマイズ------------------*/
.swiper-container.top {
	width: 52%;
	margin: 0 0 0 auto;
}

.swiper-container.top .swiper-slide {
	width: 100%;
	position: relative;
	z-index: 1;
}
.swiper-container.top .swiper-slide img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 759.9px) {
}
