@charset "UTF-8";
/* CSS Document */

/***トップページ　メインスライダー***/

.splide__slide--item{
	transform: scale(.8);
	transition: .7s;
	position: relative;
}

.splide__slide.is-active .splide__slide--item{
	transform: scale(1);
	z-index: 1;
}

.splide__slide--clip{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: calc(700 / 1122 * 100%);
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.splide__slide .splide__slide--item::after{
	content:"";
	position:absolute;
	left:-3px;
	bottom:-10%;
	width:calc(100% + 6px);
	aspect-ratio: 1122 / 200;
	background: url("../img/front-page/top_slider_wave.svg") no-repeat center bottom / 100% auto;
	pointer-events:none;
}

.splide__slide img.top_slider_main:hover {
	transform: scale(1.1);
	transition: transform 3s ease;
}

.splide__slide--item a {
	color: #000;
}

.splide__slide img.top_slider_main {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	transition: transform .6s ease;
}

/*.top-slide__text {
	position: absolute;
	left: 5%;
	bottom: 10%;
}*/

.top-slide__text p {
	background-color: #fff;
	font-size: 15px;
	/*font-size: 24px;
	padding: 0px 5px;*/
	line-height: 1.5em;
	text-align: center;
}

.top-slide__text {
	position: absolute;
	font-size: 15px;
	bottom: -16px;
    z-index: 10;
    transform: translateX(-50%);
    left: 50%;
	width: 100%;
}



#main-slider .splide__arrow--prev {
	left: 15%;
}
	
#main-slider .splide__arrow--next {
	right: 15%;
}

#main-slider .seagull {
	width: 160px;
	height: auto;
	position: absolute;
	right: 12%;
	top: 8%;
	z-index: 10;
	animation-name: floating;
	animation-duration: 3000ms;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

@keyframes floating {
	0% {
	transform: translateY(0);
	}
	50% {
	transform: translateY(-20px);
	}
	100% {
	transform: translateY(0);
	}
}

/***スライダーのスポット場所
.top-slide__text p.top-slide-data {
	position: relative;
	display: inline-block;
	font-size: 16px;
	padding-left: 25px;
}

.top-slide__text p.top-slide-data::before {
	content: "";
	position: absolute;
	left: 0.3em;
	top: 0.3em;
	width: 1em;
	height: 1em;
	background: url("../img/front-page/map-pin-blue.svg") no-repeat center;
	background-size: contain;
}
***/

@media screen and (max-width: 992px) {
	/*.top-slide__text p {
		font-size: 19px;
		display: inline;
		line-height: 2em;
	}*/
	
	#main-slider .splide__arrow--prev {
		left: 9%;
	}
	
	#main-slider .splide__arrow--next {
		right: 9%;
	}
}


@media screen and (max-width: 768px) {
	.splide__slide--clip {
		padding-bottom: calc(557 / 356 * 100%);
	}
	
	.splide__slide .splide__slide--item::after {
		bottom: -2px;
		width: calc(100% + 160px);
		max-width: calc(100% + 160px);
		left: -13px;
	}
	
	#main-slider .splide__arrow--prev {
		left: 3%;
	}
	
	#main-slider .splide__arrow--next {
		right: 3%;
	}
	
	.top-slide__text p {
		font-size: 14px;
		text-align: center;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		line-height: 1.5em;
	}

	.top-slide__text {
		bottom: -16px;
		width: 100%;
	}
}

/***スクロールダウン***/

.scroll-down {
	position: absolute;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	right: 13.5%;
    bottom: 10%;
}

.scroll-down-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	margin: 0;
	margin-bottom: 0.5em;
}

.scroll-cue{
	--s: 6px; /*サイズ*/
	--gap: 0px;
	--dur: 3s; /*1ループの長さ*/
	--c: currentColor;
	color: #25D4F2;

	position: relative;
	width: calc(var(--s) * 2 + var(--gap));
	height: calc(var(--s) * 5 + var(--gap) * 4);
}

.scroll-cue .sq{
	position: absolute;
	width: var(--s);
	height: var(--s);
	background: var(--c);
	opacity: 0;
	transform: scale(.6);
}

.scroll-cue .sq:nth-child(1){ left: 0; top: calc((var(--s) + var(--gap)) * 0); animation: sq1 var(--dur) linear infinite; }
.scroll-cue .sq:nth-child(2){ left: calc(var(--s) + var(--gap)); top: calc((var(--s) + var(--gap)) * 1); animation: sq2 var(--dur) linear infinite; }
.scroll-cue .sq:nth-child(3){ left: 0; top: calc((var(--s) + var(--gap)) * 2); animation: sq3 var(--dur) linear infinite; }
.scroll-cue .sq:nth-child(4){ left: calc(var(--s) + var(--gap)); top: calc((var(--s) + var(--gap)) * 3); animation: sq4 var(--dur) linear infinite; }
.scroll-cue .sq:nth-child(5){ left: 0; top: calc((var(--s) + var(--gap)) * 4); animation: sq5 var(--dur) linear infinite; }

@keyframes sq1{
	0%{opacity:0;transform:scale(.6)}
	8%{opacity:1;transform:scale(1)}
	80%{opacity:1;transform:scale(1)}
	81%{opacity:0;transform:scale(.6)}
	100%{opacity:0;transform:scale(.6)}
}
@keyframes sq2{
	0%,16%{opacity:0;transform:scale(.6)}
	24%{opacity:1;transform:scale(1)}
	80%{opacity:1;transform:scale(1)}
	81%{opacity:0;transform:scale(.6)}
	100%{opacity:0;transform:scale(.6)}
}
@keyframes sq3{
	0%,32%{opacity:0;transform:scale(.6)}
	40%{opacity:1;transform:scale(1)}
	80%{opacity:1;transform:scale(1)}
	81%{opacity:0;transform:scale(.6)}
	100%{opacity:0;transform:scale(.6)}
}
@keyframes sq4{
	0%,48%{opacity:0;transform:scale(.6)}
	56%{opacity:1;transform:scale(1)}
	80%{opacity:1;transform:scale(1)}
	81%{opacity:0;transform:scale(.6)}
	100%{opacity:0;transform:scale(.6)}
}
@keyframes sq5{
	0%,64%{opacity:0;transform:scale(.6)}
	72%{opacity:1;transform:scale(1)}
	80%{opacity:1;transform:scale(1)}
	81%{opacity:0;transform:scale(.6)}
	100%{opacity:0;transform:scale(.6)}
}

@media (prefers-reduced-motion: reduce){
	.scroll-cue .sq{ animation: none; opacity: 1; transform: none; }
}

@media screen and (max-width: 992px) {
	.scroll-down {
		right: 6%;
	}
}


@media screen and (max-width: 768px) {
	.scroll-down-text {
		font-size: 13px;
	}

	.scroll-cue{
		--s: 5px; /*サイズ*/
	}
	
	.scroll-down {
		right: 0;
		bottom: auto;
		top: 20%;
	}
}

/***********

いみずはユニークだ！

************/

#site-read {
	overflow-x: hidden;
}

.site-read-wrap {
	position: relative;
}

.site-read-ttl {
	max-width: 600px;
	position: relative;
	text-align: center;
	margin: 120px auto 150px;
	padding: 16px;
}

.site-read-ttl h2 img {
	max-width: 450px;
	margin: 0 auto;
	position: static;
}

.site-read-ttl img {
	position: absolute;
	height: auto;
}

.logo-u {
	width: 31px;
	top: 50px;
	right: -20px;
	transform: rotate(25deg);
}

.logo-n {
	width: 43px;
	top: 60px;
	left: -20px;
}

.logo-i {
	width: 10px;
	top: 20px;
	right: 60px;
	transform: rotate(-70deg);
}

.logo-q {
	width: 43px;
	top: 150px;
	right: -10px;
	transform: rotate(-40deg);
}

.logo-u-b {
	width: 36px;
	top: 130px;
	left: -110px;
}

.logo-e {
	width: 35px;
	top: 150px;
	left: -20px;
	transform: rotate(50deg);
}

.site-read-ttl p {
	text-align: center;
	font-weight: 500;
	line-height: 2.5em;
	margin-top: 30px;
}

/*ユニークな食文化！*/
.site-read-item1 {
	position: absolute;
	top: 30%;
	left: -180px;
	animation: zoomIn1 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.site-read-item2 {
	position: absolute;
	top: 72%;
	left: -60px;
	animation: zoomIn1 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.site-read-item3 {
	position: absolute;
	top: 45%;
	right: -130px;
	animation: zoomIn1 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


.site-read-item1 p {
	color: #a6e2e8;
	font-weight: 500;
	font-size: 20px;
}

.read-item1-img {
	width: 235px;
	height: auto;
	position: relative;
}

.read-item2-img {
	width: 230px;
	height: auto;
	position: relative;
}

.read-item3-img {
	width: 250px;
	height: auto;
	position: relative;
}

.read-kani,
.read-activity,
.read-sanpo {
	position: absolute;
	height: auto;
}

.read-kani {
	width: 140px;
	bottom: -10px;
    left: -70px;
}

.read-activity {
	width: 160px;
	bottom: -10px;
    right: -10px;
}

.read-sanpo {
	width: 120px;
	bottom: -150px;
    left: 30px;
}

@media screen and (max-width: 992px) {
	
	#read-slider {
		margin-top: 60px;
	}
	
	#read-slider .splide__track {
		height: 330px;
	}
	
	#read-slider-list {
		gap: 20px;
	}
	
	.site-read-item1,
	.site-read-item2,
	.site-read-item3 {
		width: 100%;
		height: auto;
		max-width: 280px;
		position: relative;
		animation: none;
		top: auto;
		left: auto;
		right: auto;
	}
	
	#read-slider .splide__slide img {
	width: 100%;
	height: auto !important;
	object-fit: contain;
	}
	
	.read-item1-img,
	.read-item2-img, 
	.read-item3-img {
		width: auto;
		height: 100%;
		max-width: 280px;
		display: block;
	}
	
	.read-kani {
		 width: 120px;
		bottom: -10px;
		left: auto;
		right: 35%;
	}

	.read-activity {
		width: 150px;
		bottom: 0px;
		right: 30%;
	}

	.read-sanpo {
		width: 90px;
		bottom: -80px;
		left: 70px;
	}
}

@media screen and (max-width: 768px) {
	
		
	#site-read {
		margin-top: 50px;
	}
	
	.site-read-wrap {
	overflow-x: hidden;
	}
	
	.site-read-ttl {
		margin: 120px auto 0px;
	}
	
	.site-read-ttl h2 img {
		max-width: 350px;
	}
	
	.site-read-img-box {
	display: flex;
		width: 380px;
		height: auto;
		overflow-x: scroll;
	}
	.box div {
		width: 90%;
		margin: 5px;
		flex-shrink: 0;
	}
	
	.logo-u {
		top: -18px;
		right: auto;
		left: 66px;
		transform: rotate(91deg);
	}

	.logo-n {
		top: -80px;
		left: 30px;
	}

	.logo-i {
		top: -30px;
		right: 35%;
		transform: rotate(-60deg);
	}

	.logo-q {
		width: 25px;
		top: 56%;
		right: -10px;
	}

	.logo-u-b {
		width: 26px;
		top: 75%;
		left: 0px;
		transform: rotate(-140deg);
	}

	.logo-e {
		width: 25px;
		top: -70px;
		left: 140px;
		transform: rotate(90deg);
	}
}

/*************

射水市はココ！

*************/

#imizu-here .frame-wave_wrap {
	background-color: #D9F0F2;
	padding-top: 0px;
	padding-bottom: 70px;
}

#imizu-here .frame-wave_wrap::before {
	background-image: url("../img/common/wave-aquatint.svg");
	transform: rotate(180deg);
	opacity: 1;
}

.imizu-here-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-row-gap: 0px;
	grid-column-gap: 80px;
}

.imizu-here-wrap h2 {
	font-size: 24px;
	color: #3C66C4;
}

.imizu-here1 {
	grid-area: 1 / 1 / 2 / 2;
	padding-top: 50px;
}
.imizu-here2 { 
	grid-area: 1 / 2 / 3 / 3; 
	position: relative;
}
.imizu-here3 {
	grid-area: 2 / 1 / 3 / 2; 
}

.imizu-here1 p,
.imizu-here3 {
	margin-top: 50px;
}

.imizu-here2 .imizu-here-map {
	width: auto;
	height: 90%;
	padding: 60px;
	background-color: #fff;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}

.imizu-here2 .imizu-here-map-img {
	max-width: initial;
	height: auto;
	width: calc(100% + 30px);
}

.imizu-here-muzumuzu {
	width: 110px;
	position: absolute;
	bottom: 20%;
	right: -10%;
}

.imizu-here-muzumuzu-comment {
	font-size: 12px;
	color: #3C66C4;
	line-height: 1.5em;
	position: absolute;
	top: -16%;
	right: -50%;
}

@media screen and (max-width: 992px) {
	#imizu-here .page-container {
		max-width: 400px;
	}
	
	.imizu-here-wrap {
		display: block;
	}
}

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

	.imizu-here-wrap h2 {
		text-align: center;
	}
	
	.imizu-here1 {
		padding-top: 0px;
	}
	
	.imizu-here1 p{
	margin-top: 0px;
	}
	
	.imizu-here-muzumuzu {
		width: 90px;
		bottom: -10%;
		right: 12%;
	}
	
	.imizu-here-muzumuzu-comment {
		right: -46%;
	}
}

/**********

おすすめ情報

***********/

#top-news {
	overflow-x: hidden;
}

#top-news .frame-wave_wrap::before {
	top: auto;
    bottom: -70px;
    transform: rotate(180deg);
	background-image: url(../img/common/wave-blue_top.svg);
}

#top-news .frame-wave_wrap {
	margin: 0px calc(50% - 50vw) 150px;
    background-color: #3C66C4;
	padding: 70px 0px 20px;
}
#top-news .page-container {
	position: relative;
}

#top-news h2 {
	color: #fff;
	font-size: 28px;
	position: relative;
}

#top-news h2 span.yellow {
	font-size: 20px;
	color: #FFF100;
	margin-left: 15px;
}

#top-news h2::before {
	content: "";
	position: absolute;
	left: -5em;
	top: -0.5em;
	width: 100px;
	height: 200px;
	background: url("../img/front-page/top-news-hand.webp") no-repeat center;
	background-size: contain;
	animation-name: decoSwing;
	animation-duration: 2400ms;
	animation-timing-function: steps(2, end);
	animation-iteration-count: infinite;
}

@keyframes decoSwing {
	0% {
	transform: rotate(20deg);
	}

	100% {
	transform: rotate(40deg);
	}
}

.overflow-right__sliderwrap {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 40px;
	padding-left: calc(50vw - 50%);
	direction: ltr;
}

#top-news .splide__slide {
	aspect-ratio: 2 / 2.2;
	background-color: #fff;
	border-radius: 11px;
	padding: 25px;
	text-align: left;
	height: 360px;
}

#top-news .splide__slide:hover {
	opacity: .8;
}

#top-news .splide__slide a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.top-news-thumb {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-bottom: calc(170 / 243 * 100%);
	margin-bottom: 8px;
	border: 1px solid #ccc;
}

img.top-news-img  {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

.top-news-thumb p {
	position: absolute;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	left: 5px;
	bottom: 5px;
	padding: 0 4px;
	margin: 0;
	border-radius: 2px;
	line-height: 1.5;
}

.label-events {
	background-color: #FFF100;
}

.label-topics {
	background-color: #FA8A16;
}

.top-news-data{
	display: flex;
	flex-direction: column;
	flex: 1;
}

.top-news-data h3 {
	font-size: 16px;
	color: #000;
	margin: 5px 0;
}

.top-news-data p {
	font-size: 15px;
	color: #484848;
	margin: 0;
	line-height: 1.5em;
}

p.top-news-data-ymd {
    font-size: 15px;
    margin: 0;
	margin-top: auto; 
}

#top-news .splide__arrows {
	position: absolute;
	right: 20%;
	bottom: -73px;
}

#top-news .splide__arrow--next {
	width: 40px;
	right: auto;
	left: 1em;
}

#top-news .splide__arrow--prev {
	width: 40px;
	left: auto;
	right: 0em;
}

/*ページネーション*/
#top-news .splide__pagination {
	display: flex;
	position: absolute;
	right: 30%;
	left: auto;
	bottom: -80px;
}

.top-news-page {
	background-color: #fff;
	height: 8px;
	transition: .5s all;
	width: 8px;
}

.top-news-page.is-active {
	background-color: yellow;
	opacity: 1;
	transform: scale(1)
}
/**/

.top-news-btn {
	margin-top: 60px;
}

.top-news-btn a {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	padding: 4px 8px;
	margin-right: 15px;
	color: #000;
	text-decoration: none;
	background-color: #FFF100;
	border-radius: 4px;
}

.top-news-btn a img {
	margin-left: 5px;
}

a.top-news-btn-news {
	background-color: #FA8A16;
}

@media screen and (max-width: 768px) {
	
	#top-news .page-container {
		text-align: center;
	}
	
	#top-news h2 {
		text-align: center;
	}
	
	#top-news h2::before {
		left: 1em;
        top: -0.8em;
        width: 40px;
        height: 100px;
        transform: rotate(45deg);
	}
	
	#top-news .splide__pagination {
		position: inherit;
		right: auto;
		bottom: -20px;
	}
	
	#top-news .splide__arrows {
		bottom: -15px;
	}
	
	.overflow-right__sliderwrap {
		padding-left: calc(40vw - 30%);
		direction: ltr;
	}
}

/***********

エリア別楽しみ方

************/

.how-to-wrap {
	display: grid;
	grid-template-columns: 4fr 5fr;
	gap: 20px;
	padding: 0 16px;
}

#how-to-enjoy h2 {
	position: relative;
	margin-top: 100px;
}

#how-to-enjoy h2::before {
	text-align: center;
	content: "";
	position: absolute;
	width: 1.8em;
	height: 1.8em;
	top: -40px;
	left: 0px;
	background: url("../img/common/icon-welcome.svg") no-repeat center / contain;
}

.how-to-enjoy-ttl{
	margin: 50px 0;
}

.how-to-enjoy-ttl h2,
.how-to-enjoy-ttl p {
	text-align: left;
	margin: 0;
}

.how-to-map {
	text-align: center;
	padding: 0 70px;
	overflow: visible;
	position: relative;
}

.how-to-map__sticky {
	position: sticky;
	top: 70px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.how-to-map__sticky {
	aspect-ratio: 5 / 7;
}

/*.how-to-map__sticky::before {
	content: "";
	display: block;
	padding-top: 20px;
}*/

.js-scroll-image {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 500px;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.js-scroll-image.is-active {
	opacity: 1;
	z-index: 1;
}

.how-to-area {
	margin-top: 200px;
}

.how-to-area-contents {
	width: 100%;
	margin: 0 auto;
	border-radius: 32px;
	padding: 40px 50px;
	padding-bottom: 70px;
	position: relative;
	background-position: 0 0, 4.5px 9px;
	background-size: 9px 18px;
}

.how-to-area-contents.how-to-seaside {
	background-image: radial-gradient(circle, #2cd7f5 2px, transparent 2px), radial-gradient(circle, #2cd7f5 2px, transparent 2px);
	margin-bottom: 50px;
}

.how-to-area-contents.how-to-countryside {
	background-image: radial-gradient(circle, #6ac340 2px, transparent 2px), radial-gradient(circle, #6ac340 2px, transparent 2px);
}

.how-to-area-contents::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: -5px;
	width: 101%;
	height: 70px;
	background: url("../img/front-page/top_slider_wave.svg") no-repeat center;
	background-size: contain;
}

.how-to-area-ttl {
	margin-left: 55px;
	margin-bottom: 15px;
	position:relative;
}

.how-to-area-ttl::before {
	content: "";
	position: absolute;
	left: -55px;
	top: 0;
	width: 50px;
	height: 60px;
	background: url("../img/front-page/map-pin-white.svg") no-repeat center;
	background-size: contain;
}

.how-to-area-ttl h3 {
	font-size: 28px;
	margin: 0;
}

.how-to-area-ttl p.fugaz {
	color: #fff;
	margin: 0;
}

.how-to-seaside .how-to-area-ttl img {
	position: absolute;
	max-width: 190px;
	height: auto;
	top: -100px;
	right: 20px;
	z-index: 5;
}

.how-to-countryside .how-to-area-ttl img {
	position: absolute;
	max-width: 230px;
	height: auto;
	top: -80px;
	right: 0px;
	z-index: 5;
}

.area-mainslider figure {
	margin: 0;
}

.area-mainslider figcaption {
	color: #fff;
	text-align: center;
	font-size: 16px;
	margin-top: 1em;
}

.area-mainslider img {
	border-radius: 15px;
}

.how-to-area-about {
	padding: 10px;
}

.how-to-area-list {
	padding-left: 0;
	padding-right: 20px;
	display: flex;
	list-style: none;
	margin-top: 35px;
	justify-content: space-between;
}

.how-to-area-list a {
	color: #000;
}

.how-to-area .btn-basic {
	background-color: #fff;
	color: #000;
}

.how-to-seaside .btn-basic::after {
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	right: 1em;
	background: url("../img/common/btn-aqua.svg") no-repeat center / contain;
}

.how-to-countryside .btn-basic::after {
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	right: 1em;
	background: url("../img/common/btn-lightgreen.svg") no-repeat center / contain;
}

/*スライダーページネーション*/
.how-to-area .splide__pagination {
	bottom: 3em;
}

.how-to-area .splide__pagination__page {
	background-color: transparent;
	border: solid 1px #fff;
	width: 8px;
	height: 8px;
	transition: .5s all;
}

.how-to-area .splide__pagination__page.is-active {
	background-color: #fff;
	opacity: 1;
	transform: scale(1);
}
/**/

@media screen and (min-width: 768px) and ( max-width: 1060px) {
	.how-to-area-contents.how-to-seaside {
		margin-bottom: 120px;
	}
	
	.how-to-seaside .how-to-area-ttl img {
		top: -140px;
	}
	
	.how-to-countryside .how-to-area-ttl img {
		top: -140px;
	}
}


@media screen and (max-width: 992px) {
	.how-to-wrap {
		grid-template-columns: 1fr 1fr;
	}
	
	.how-to-map {
		padding: 20px;
	}
	
	.how-to-area-contents {
		max-width: 550px;
		padding: 40px 20px;
	}
}

@media screen and (max-width: 768px) {	
	.how-to-wrap {
		grid-template-columns: 1fr;
	}
	
	#how-to-enjoy h2 {
		margin-top: 0px;
		margin-bottom: 0px;
		display: inline;
	}
	
	.how-to-enjoy-ttl,
	.how-to-enjoy-ttl p {
		text-align: center;
		margin: 0;
	}
	
	.how-to-area {
		margin-top: 0px;
	}
	
	.how-to-area-ttl h3 {
		font-size: 24px;
	}
	
	.how-to-area-ttl::before {
		left: -40px;
		width: 32px;
		height: 40px;
	}
	
	.how-to-map {
		padding: 20px;	
	}
	
	.how-to-map img {
		padding-top: 10px;
	}
	
	.how-to-seaside.how-to-area-contents {
		margin-bottom: 150px;
	}
	
	.how-to-seaside .how-to-area-ttl img {
		top: -158px;
		right: 0px;
	}
	
	.how-to-countryside .how-to-area-ttl img {
		top: -160px;
	}
	
	.how-to-seaside .btn-basic::after,
	.how-to-countryside .btn-basic::after{
		width: 1.3em;
		height: 1.3em;
	}
	
	.how-to-area-list {
		text-align: center;
		padding-right: 0px;
		display: inherit;
	}
	
	.how-to-area-list li {
		margin: 15px auto;
	}
	
	#how-to-enjoy h2::before {
	left: 41%;
	}
}


/**********

射水のユニーク大集合！

**********/

#top-unique {
	overflow-x: hidden;
}

#top-unique .frame-wave_wrap {
	background-color: #284679;
	padding-top: 5px;
	padding-bottom: 0px;
	margin-bottom: 100px;
}

#top-unique .frame-wave_wrap::before {
	background-image: url("../img/common/wave-darkblue.svg");
	top: auto;
    bottom: -85px;
    opacity: 1;
}

#top-unique .section-ttl {
	margin-top: 60px;
}

#top-unique .section-ttl h2 {
	color: #fff;
}

#top-unique .ttl-ruby {
	color: #FFF100;
}

.top-unique-list,
#top-unique .splide.is-initialized:not(.is-active) .splide__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 0;
	gap: 25px;
	list-style: none;
	margin: 120px 0 50px;
	min-height: 400px;
}

@media screen and (max-width: 768px) {
	#top-unique .splide.is-initialized:not(.is-active) .splide__list {
		display: flex;
	}
}

.top-unique-list li {
	text-align: center;
	max-width: 250px;
}

.unique-img-crcle {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
	box-shadow: 10px 10px 0px 0px #192D50;
	margin-top: 60px;
}

.top-unique-list h3 {
	font-size: 17px;
	color: #fff;
}

.top-unique-list a {
	text-decoration: none;
}

.unique-list-illust {
	
}

img.top-unique-thumb  {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

.unique1 .unique-img-crcle {
	border: 7px solid #20CDEB;
}
.unique2 .unique-img-crcle {
	border: 7px solid #FA9100;
}
.unique3 .unique-img-crcle {
	border: 7px solid #F50100;
}
.unique4 .unique-img-crcle {
	border: 7px solid #64BE4F;
}
.unique5 .unique-img-crcle {
	border: 7px solid #FFF100;
}

.unique-mzmz .unique-img-crcle {
	background-color: #5fb2e3;
	box-shadow: none;
	/*box-shadow: inset 10px 0px 10px 0px #4869a3;*/
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.unique-mzmz .unique-img-crcle img {
	width: 80%;
}

.unique-img-icon {
	position: relative;
}

.unique-img-icon::before,
.unique-img-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	transform: translateX(-50%);
	z-index: 1;
}

.unique-img-icon::before {
	width: 50px;
	height: 56px;
	top: -20px;
	transition: 0.3s;
}

.unique-img-icon:hover::before {
	top: -30px;
	transition: 0.3s;
}

.unique1 .unique-img-icon::before {
	background-image: url("../img/imizu-unique/top/heart-bubble-aqua.svg");
}
.unique2 .unique-img-icon::before {
	background-image: url("../img/imizu-unique/top/heart-bubble-orange.svg");
}
.unique3 .unique-img-icon::before {
	background-image: url("../img/imizu-unique/top/heart-bubble-red.svg");
}
.unique4 .unique-img-icon::before {
	background-image: url("../img/imizu-unique/top/heart-bubble-lightgreen.svg");
}
.unique5 .unique-img-icon::before {
	background-image: url("../img/imizu-unique/top/heart-bubble-yellow.svg");
}

.unique-img-icon::after {
	width: 1.8em;
	height: 1.8em;
	bottom: -13px;
}

.unique1 .unique-img-icon::after {
	background-image: url("../img/common/btn-aqua.svg");
}
.unique2 .unique-img-icon::after {
	background-image: url("../img/common/btn-orange.svg");
}
.unique3 .unique-img-icon::after {
	background-image: url("../img/common/btn-red.svg");
}
.unique4 .unique-img-icon::after {
	background-image: url("../img/common/btn-lightgreen.svg");
}
.unique5 .unique-img-icon::after {
	background-image: url("../img/common/btn-yellow.svg");
}

#top-unique .btn-basic {
	color: #284679;
	background-color: #fff;
}

#top-unique .btn-basic::after {
	width: 1.5em;
	height: 1.5em;
	color: #284679;
	background-color: #fff;
	background: url("../img/common/btn-db.svg") no-repeat center / contain;
}

#top-unique .page-container-large {
	position: relative;
}

#top-unique .memo-cat,
#top-unique .logo-u,
#top-unique .logo-n,
#top-unique .logo-i,
#top-unique .logo-q,
#top-unique .logo-u-b,
#top-unique .logo-e {
	position: absolute;
	height: auto;
}

#top-unique .memo-cat {
	width: 270px;
	top: -100px;
    left: 0px;
}

#top-unique .logo-u {
	width: 156px;
	top: -80px;
    left: -240px;
	transform: rotate(137deg);
}

#top-unique .logo-n {
	width: 195px;
	top: -72px;
	right: -150px;
	left: auto;
	transform: rotate(-13deg);
}

#top-unique .logo-i {
	width: 35px;
	top: 20%;
	right: -160px;
	transform: rotate(-80deg);
}

#top-unique .logo-q {
	width: 131px;
	top: 30%;
	left: -170px;
	transform: rotate(-263deg);
}

#top-unique .logo-u-b {
	width: 117px;
	top: 55%;
	right: -280px;
	left: auto;
	transform: rotate(225deg)
}

#top-unique .logo-e {
	width: 101px;
	top: 65%;
	left: -220px;
	transform: rotate(82deg);
}

@media screen and (max-width: 768px) {
	#top-unique {
		position: relative;
		overflow: hidden;
	}
	
	#top-unique .frame-wave_wrap {
		margin: 60px calc(50% - 50vw) 0px;
		margin-bottom: 100px;
	}
	
	/*.top-unique-list,
	#top-unique .splide.is-initialized:not(.is-active) .splide__list {
		min-height: 550px;
	}
	
	.top-unique-list,
	#top-unique .splide.is-initialized:not(.is-active) .splide__list {
		display: -ms-flexbox;
		display: flex;
		margin: 80px 0 30px;
	}*/
	
	.top-unique-list {
		display: -ms-flexbox;
		display: flex;
		margin: 80px 0 80px;
		/*min-height: 360px;*/
		min-height: 600px;
		gap: 0;
	}
	
	.top-unique-list li {
		width: 100%;
		margin: 0 auto;
		height: 300px;
	}
	
	.top-unique-list h3 {
		font-size: 18px;
		color: #fff;
		text-align: center;
		margin: 0;
		padding: 0 10px;
		margin-top: -20px;
	}
	
	.unique-img-crcle {
		margin-top: 30px;
	}
	
	.unique-img-icon::before {
		width: 50px;
		height: 56px;
	}
	
	#top-unique .splide__slide {
		margin-right: -40px;
	}
	
	/* 偶数番目だけ下にずらす*/
	#top-unique	.splide__slide:nth-child(even) {
		transform: translateY(230px);
	}
	
	#top-unique .memo-cat {
		top: -180px;
		left: 30px;
	}
	
	#top-unique .memo-cat {
		position: inherit;
		margin: 0 auto;
		top: auto;
	}
	
	#top-unique .logo-u {
		width: 121px;
		top: 45px;
		left: -70px;
		transform: rotate(225deg);
	}

	#top-unique .logo-n {
		width: 140px;
		top: -111px;
		right: 20px;
		left: auto;
		transform: rotate(-13deg);
	}

	#top-unique .logo-i {
		top: 62%;
		right: 50%;
		transform: rotate(-50deg);
	}

	#top-unique .logo-q {
		width: 90px;
		top: 10px;
		left: auto;
		right: -50px;
		transform: rotate(162deg);
	}

	#top-unique .logo-u-b {
		width: 117px;
		top: 15%;
		right: 20px;
		left: auto;
		transform: rotate(225deg);
	}

	#top-unique .logo-e {
		top: 48%;
		left: 0px;
	}
	
	#top-unique .btn-basic.small {
		max-width: 100%;
		margin-top: 50px;
	}
}

/***********

きときとなおすすめモデルコース

**********/

#top-model {
	padding: 0 16px;
}

#top-model .section-ttl {
	position: relative;
}

@media screen and (min-width: 768px) and ( max-width: 1060px) {
	#top-model .section-ttl h2::before {
		left: 40px;
	}
}

#top-model .section-ttl h2::before {
	text-align: center;
	content: "";
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	left: -25px;
	transform: translateX(-50%);
	background: url("../img/common/icon-course.svg") no-repeat center / contain;
}

#top-model .ttl-ruby {
	color: #00B281;
}

#top-model .section-ttl .kitokito {
	position: absolute;
	width: 270px;
	z-index: 5;
	top: -40px;
	right: 15px;
}

#top-model h2 .dots {
  background-image: radial-gradient(circle at center, #000 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .2em;
}

.top-model-list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin: 50px 0;
	list-style: none;
	padding: 0;
}

.top-model-list li {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}

.top-model-list li:after {
	content: "1";
	font-family: "Fugaz One", sans-serif;
	font-size: 20px;
	text-align: center;
	color: #fff;
	line-height: 2em;
	position: absolute;
	width: 100px;
	height: 50px;
	left: 50%;
	top: -20px;
	z-index: 2;
	transform: translateX(-50%);
	background: url("../img/common/icon-course.svg") no-repeat center / contain;
}

.top-model-list li.course1:after {
	content: "1";
}
.top-model-list li.course2:after {
	content: "2";
}
.top-model-list li.course3:after {
	content: "3";
}

.top-model-list a {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	border-radius: 14px;
}
.top-model-list a img {
	height: auto;
	transition: transform .6s ease;
	display:block;
}

.top-model-list a:hover img {
	transform: scale(1.1);
}

.top-model-list a::before {
	background: rgba(0, 0, 0, .4);
	bottom: 0;
	content: '';
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

.top-model-list-ttl {
	align-items: center;
	bottom: 0;
	color: #fff;
	display: flex;
	justify-content: center;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 80%;
	z-index: 2;
}

.top-model-list-ttl h3 {
	font-size: 25px;
	text-align: center;
	position: relative;
}

@media screen and (min-width: 769px) {
	.top-model-list-ttl h3 {
		font-size: 21px;
	}
}

.top-model-list-ttl h3::after {
	font-size: 25px;
	text-align: center;
	content: "";
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	left: 50%;
	bottom: -35px;
	transform: translateX(-50%);
	background: url("../img/common/btn-green.svg") no-repeat center / contain;
}

#top-model .btn-basic.small {
	width: 100%;
}

@media screen and (max-width: 768px) {
	
	#top-model .section-ttl h2::before {
	left: 50%;
	top: -2em;
	}
	
	.top-model-list {
	grid-template-columns: repeat(1,1fr);
	gap: 40px;
	}
	
	#top-model .section-ttl .kitokito {
	position: static;
	}
}

/**********

観光スポット紹介

**********/

#top-spot{
	 padding: 0 16px 120px;
}

#top-spot .section-ttl {
	position: relative;
}

#top-spot .section-ttl h2::before {
	text-align: center;
	content: "";
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	left: -25px;
	transform: translateX(-50%);
	background: url("../img/common/icon-spot.svg") no-repeat center / contain;
}

#top-spot .ttl-ruby {
	color: #FD59C3;
}

#top-spot .benri-spot {
	position: absolute;
	width: 250px;
	left: -60px;
	top: -50px;
}

#top-spot .benri-spot:hover {
	transform: rotate(-5deg);
	transition : all 0s ease 0s;
}

.top-spot-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	list-style: none;
	padding: 0 20px;
}

.top-spot-list li {
	text-align: center;
	width: 100%;
}

.spot-list-circle {
	width: auto;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	border: 4px solid #FD59C3;
}

.spot-list-circle img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-spot-list li:hover .spot-list-circle img {
	transform: scale(1.1);
	transition : all 0.5s ease 0s;
}

.top-spot-list .spot-list-btn {
	display:inline-flex;
	width: 100%;
	height: 50px;
	border-radius: 30px;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
	margin-top: -30px;
	background-color: #FD59C3;
	padding: 3px 15px;
	position: relative;
	font-size: 18px;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}

.top-spot-list .spot-list-btn::after {
	content: "";
	position: absolute;
	width: 1.3em;
	height: 1.3em;
	right: 0.5em;
	background: url("../img/common/btn-white-pink.svg") no-repeat center / contain;
}

@media screen and (max-width: 992px) {
	 .top-spot-list {
		grid-template-columns: repeat(2, 1fr);
        gap: 50px 50px;
        max-width: 600px;
        margin: 0 auto;
    }
}


@media screen and (max-width: 768px) {
	
	#top-spot{
	 padding: 0 16px 40px;
	}
	
	.top-spot-list {
		gap: 50px 10px;
	}
	
	.sp-benri-spot-wrap {
		text-align: center;
	}
	
	#top-spot .benri-spot {
		position: static;
		width: 250px;
		margin-top: 30px;
	}
	
	#top-spot .section-ttl h2::before {
		text-align: center;
		content: "";
		position: absolute;
		width: 1.5em;
		height: 1.5em;
		left: 50%;
		top: -1.7em;
		transform: translateX(-50%);
		background: url("../img/common/icon-spot.svg") no-repeat center / contain;
	}
	
	.top-spot-list .spot-list-btn {
		width: 100%;
		height: 65px;
		border-radius: 10px;
		z-index: -1;
		padding: 0;
	}
	
	.top-spot-list .spot-list-btn::after {
		right: auto;
		bottom: -1em;
		width: 1.6em;
		height: 1.6em;
		background: url("../img/common/btn-db.svg") no-repeat center / contain;
	}
}


/***********

IMIZU「と」

***********/

#imizu-to,
#imizu-to p {
	text-align: center;
	position: relative;
}

#imizu-to::after {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background-repeat: repeat-x;
	background-size: auto 80px;
	background-position: bottom center;
	position: absolute;
	top: -21px;
	left: 0;
	background-image: url("../img/common/wave-darkblue.svg");
}

#imizu-to h2 {
	font-size: 30px;
	color: #284679;
	margin: 30px auto;
}

#imizu-to img {
	max-height: 180px;
}

#imizu-to .frame-wave_wrap {
	position: relative;
	background-color: #D9F0F2;
	margin: 0;
	padding-top: 90px;
	padding-bottom: 0px;
	overflow-x: hidden;
	overflow-y: hidden;
}

#imizu-to::before {
	content: "";
	position: absolute;
	bottom: -90px;
	left: 0;
	width: 100%;
	height: 90px;
	background-image: url("../img/common/wave-aquatint.svg");
	background-repeat: repeat-x;
	background-position: bottom center;
	background-size: auto 90px;
	z-index: 1;
	pointer-events: none;
	opacity: 1;
}

#imizu-to .btn-catch {
	margin-top: 50px;
}

#imizu-to .btn-basic a {
	color: #FFFCCC;
}

.imizu-to-ttl {
	position: relative;
}

img.kokuhou,
img.gourmet,
img.view, 
img.matsuri {
	position: absolute;
}

img.kokuhou {
	top: 30px;
	left: -40%;
}

img.gourmet {
	top: 100px;
	left: -10%;
}

img.view {
	top: 100px;
	right: -10%;
}

img.matsuri {
	top: 30px;
	right: -40%;
}

@media screen and (max-width: 768px) {
	#imizu-to img {
		max-height: 136px;
	}
	
	#imizu-to h2 {
		font-size: 22px;
	}
	
	#imizu-to p {
		text-align: left;
	}
	
	#imizu-to .btn-catch p {
		text-align: center;
	}
}

/***********

Imizu 観光便利帳

***********/

#imizu-note {
	padding: 100px 0 50px;
}

#imizu-note .section-ttl {
	position: relative;
}

#imizu-note .section-ttl h2 {
	font-size: 32px;
	margin: 0 0 0 4em;
	color: #fff;
	letter-spacing: 2px;
}

#imizu-note .section-ttl p {
	position: absolute;
	font-size: 22px;
	color: #2491D9;
	transform: rotate(-3deg);
	text-align: left;
	right: 16%;
	top: 31px;
}

.ttl-bookmarker {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 150px;
	background: url("../img/front-page/bookmarker.svg") no-repeat center;
	background-size: contain;
	z-index: 1;
	top: -50px;
	left: -25%;
	transform: rotate(10deg);
}

@media screen and (max-width: 1300px) {
	#imizu-note .section-ttl p {
		right: 10%;
	}
}

@media screen and (max-width: 1150px) {
	#imizu-note .section-ttl p {
		right: 3%;
	}
	.ttl-bookmarker {
		left: -30%;
	}
}

.imizu-note-contents {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	background-image: url("../img/front-page/top-note.webp");
	background-position: center;
	background-size: cover;
	padding: 0 16px;
}

.imizu-note-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 100px;
	font-size: 16px;
	padding: 180px 0 50px;
}

.imizu-note-item1 {
	grid-area: 1 / 1 / 2 / 2; 
	position: relative
}
.imizu-note-item2 { grid-area: 2 / 1 / 3 / 2; }
.imizu-note-item3 { grid-area: 3 / 1 / 4 / 2; }
.imizu-note-item4 { grid-area: 1 / 2 / 2 / 3; }
.imizu-note-item5 { grid-area: 2 / 2 / 3 / 3; }
.imizu-note-item6 { grid-area: 3 / 2 / 4 / 3; }

.imizu-note-list li {
	justify-content: center;
	align-items: center;
	display: flex;
	gap: 20px;
	min-width: 0;
}

.imizu-note-list li > div {
	min-width: 0;
}

.imizu-note-list li .note-img {
	width: 100%;
	height: auto;
	max-width: 140px;
	flex: 0 1 140px;
}


.imizu-note-list a {
	text-decoration: none;
}

.imizu-note-item2,
.imizu-note-item4,
.imizu-note-item6 {
	flex-direction: row-reverse;
}

.imizu-note-item2 {
	padding-right: 80px;
	padding-top: 50px;
}

.imizu-note-list h3 {
	display: inline;
	color: #000;
	font-size: 22px;
	line-height: 1.8em;
	background:linear-gradient(transparent 60%, #EDFF67 60%);
}

.site-link::after {
	transition: transform 0.3s;
}

.imizu-note-list .site-link:hover::after {
	transform: translateX(5px);
}

.imizu-note-list li .note-img {
	max-width: 160px;
}

.imizu-note-list li.imizu-note-item1 .note-img {
	max-width: 260px;
	margin-top: -15px;
	margin-left: -90px;
}

.access-illust {
    position: absolute;
    width: 70px;
    right: 10px;
	bottom: -10px;
}

.imizu-note-list li.imizu-note-item2 .note-img {
	max-width: 128px;
}

.imizu-note-list li.imizu-note-item4 .note-img {
	max-width: 190px;
}

.imizu-note-list div {
	text-align: left;
}

.imizu-note-list p {
	max-width: 250px;
}

.imizu-note-list .imizu-note-item4 p,
.imizu-note-list .imizu-note-item5 p {
	max-width: 283px;
}

.imizu-note-list .imizu-note-item6 p {
	max-width: 223px;
}

@media screen and (max-width: 992px) {
	
	#imizu-note {
		background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
		background-size: 13px 13px;
		background-repeat: repeat;
		background-position: center center;
	}
	
	#imizu-note .section-ttl p {
		top: 0px;
	}

	.imizu-note-contents {
		background-image: none;
	}
	
	.ttl-bookmarker {
		background-size: 130%;
		left: -20px;
		max-width: 300px;
	}
	
	#imizu-note .section-ttl {
		margin: 60px auto 40px;
	}
	
	#imizu-note .section-ttl h2 {
		font-size: 22px;
		margin: 0 0 0 2em;
		letter-spacing: 1px;
	}
	
	.imizu-note-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(3, 1fr);
		grid-template-rows: 1fr 360px 300px;
		grid-column-gap: 20px;
		grid-row-gap: 0px;
		padding: 100px 0 50px;
	}
	
	.imizu-note-list h3 {
		font-size: 20px;
	}
	
	.imizu-note-list li {
		display: block;
	}
	
	.imizu-note-list li.imizu-note-item1 { 
		grid-column: 1 / -1;
		display: flex;
		max-width: 700px;
        margin: 30px auto;
	}
	.imizu-note-item2 { 
		grid-area: 2 / 1 / 3 / 2; 
	}
	.imizu-note-item3 { 
		grid-area: 2 / 2 / 3 / 3; 
	}
	.imizu-note-item4 { 
		grid-area: 2 / 3 / 3 / 4; 
	}
	.imizu-note-item5 { 
		grid-area: 3 / 1 / 4 / 2; 
	}
	.imizu-note-item6 { 
		grid-area: 3 / 2 / 4 / 3; 
	}
	
	.imizu-note-list li.imizu-note-item4 .note-img,
	.imizu-note-list li .note-img,
	.imizu-note-list .comingsoon-wrap {
		max-width: 160px;
	}
	
	.imizu-note-list p {
		max-width: 100%;
	}
	
	.imizu-note-item1 {
		text-align: center;
		margin-bottom: 30px;
	}
	
	.imizu-note-list li.imizu-note-item1 .note-img {
		margin-top: -15px;
		margin-left: auto;
		margin: 0 auto;
	}
	
	.imizu-note-item2 {
		padding-right: 0px;
		padding-top: 0px;
	}
}

@media screen and (max-width: 768px) {
	
	.imizu-note-list {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr 280px 280px 200px;
	}
	
	.imizu-note-item1 { 
		grid-column: 1 / -1; 
	}
	.imizu-note-item2 { 
		grid-area: 2 / 1 / 3 / 2; 
	}
	.imizu-note-item3 { 
		grid-area: 2 / 2 / 3 / 3; 
	}
	.imizu-note-item4 { 
		grid-area: 3 / 1 / 4 / 2; 
	}
	.imizu-note-item5 { 
		grid-area: 3 / 2 / 4 / 3; 
	}
	.imizu-note-item6 { 
		grid-area: 4 / 1 / 5 / 2; 
	}
	
	.imizu-note-list li.imizu-note-item1 { 
		display: block;
	}
	
	.imizu-note-list {
		max-width: 380px;
		margin: 0 auto;
	}
}

/***********

射水市観光協会と主な活動について

***********/

#kanko-about .frame-wave_wrap {
	padding: 0px 0px 20px;
}

.kanko-about-item {
	display: grid;
	grid-template-columns: 2fr 1fr 2fr;
	margin: 60px auto;
}

.kanko-about-item img {
	width: 60%;
	margin: -30px auto 0;
}

@media screen and (max-width: 768px) {
	
	#kanko-about .frame-wave_wrap {
		margin: 10px calc(50% - 50vw) 0px;
	}
	
	#kanko-about .section-ttl {
		margin-top: 0px;
	}
	
	.kanko-about-item {
		display: grid;
		grid-template-columns: 1fr;
		margin: 60px auto;
	}
	
	.kanko-about-item img {
		width: 91px;
		margin: -30px auto 0;
	}
	
	#kanko-about .btn-basic.small {
		max-width: 300px;
	}
	
	.kanko-about-item1 {
		order: 2;
	}
	.kanko-about-item2 {
		order: 1;
	}
	.kanko-about-item3 {
		order: 3;
	}
}

/**********

スポンサーリンク

**********/

#top-sponsor {
	padding: 100px 0;
}

#top-sponsor p {
	font-size: 20px;
	text-align: center;
	font-weight: 500;
	color: #3C66C4;
}

#top-sponsor ul {
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 0;
	margin-bottom: 80px;
}

#top-sponsor ul img {
	width: auto;
	height: 58px;
}

@media screen and (max-width: 768px) {
	
	#top-sponsor {
		padding: 10px 0;
	}
	
	#top-sponsor ul {
		margin-bottom: 30px;
	}
	
	#top-sponsor ul img {
		width: auto;
		height: 46px;
	}
}


/**カミングスーン**/

.comingsoon-wrap {
	position: relative;
	width: fit-contents;
}

.imizu-note-list .comingsoon {
	color: #999;
}

.imizu-note-list .comingsoon h3 {
	color: #999;
}

.imizu-note-list .comingsoon img {
	opacity: 0.7;
	filter: brightness(0.5);
}

.comingsoon-wrap::before {
    content: "coming\Asoon";
    position: absolute;
    z-index: 1;
	width: 100%;
    top: 37%;
    font-family: "Fugaz One", sans-serif;
    color: #fff;
	font-size: 25px;
    line-height: 1em;
	display: flex;
    justify-content: center;
    align-items: center;
	white-space: pre-wrap;
}

/**en版**/

.en-site p {
	line-height: 1.5;
}

.en-site .imizu-here-muzumuzu-comment {
	top: -30%;
}

.en-site .how-to-area-about,
.en-site .imizu-note-list li p,
.en-site .imizu-here1 p {
	text-align: left;
}

.en-site .top-spot-list a {
	font-size: 16px;
}

.how-to-countryside .how-to-area-ttl img {
	right: -20px;
}
