/* 2025 renewal */
.float_bottom_menu{
	display: none;
}
@media screen and (max-width: 1060px) {
	.float_bottom_menu{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		background:#17a2a4;
		width: 100%;
		z-index: 99;
	}
	.float_bottom_menu ul{
		display: flex;
		flex-wrap: nowrap;
		padding: 10px 0;
	}
	.float_bottom_menu li{
    flex:1;
    text-align:center;
	}
	.float_bottom_menu li a{
		color: #fff;
	}
	.float_bottom_menu li a::before {
	    content: "";
	    display: block;
	    width: 36px;
	    height: 36px;
	    background-size: contain;
	    background-repeat: no-repeat;
	    margin-bottom: 4px;
	    margin-left: auto;
	    margin-right: auto;
	}
	.spmenu01 a::before { background-image: url('../img/common/shop.svg');background-position: center; }
	.spmenu02 a::before { background-image: url('../img/common/map.svg');background-position: center; }
	.spmenu03 a::before { background-image: url('../img/common/news.svg');background-position: center; }
	.spmenu04 a::before { background-image: url('../img/common/fune.svg'); background-position: center;}
	.spmenu05 a::before { background-image: url('../img/common/info.svg'); background-position: center;}

}

@media screen and (max-width: 600px) {
	.foot_sitemap{overflow-x: hidden;}
}

/* 画面全体フェード表示用 --------------------------- */
#navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(255 255 255 / 0.9);     /* メニュー背景色 */
    opacity: 0;           /* 最初は透明 */
    visibility: hidden;   /* 非表示扱い */
    transition: opacity 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
    max-width: none;
    margin-top: 0;
    place-content: center;
}

/* navOpen 時にふわっと表示 */
header.navOpen #navi {
    opacity: 1;
    visibility: visible;
}

/* 右上のハンバーガーは navOpen のとき非表示 */
header.navOpen .navBtn {
    display: none !important;
}

/* 右下のクローズボタン（バツアイコン） ------------------------ */
.menuCloseBtn {
    display: none;               
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease;
}

/* バツ線（CSS疑似要素で作る） */
.menuCloseBtn::before,
.menuCloseBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 3px;
    background: #4BB1B3;
    transform-origin: center;
}

.menuCloseBtn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menuCloseBtn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* メニューが開いたら表示 */
header.navOpen .menuCloseBtn {
    display: block;
    opacity: 1;
}

/* メニューリストの矢印非表示 */
ul#navi_ul li:before{display: none;}
/* メニューリストの線非表示 */
header nav ul li{border-bottom: none;}
header nav ul{border-top:none}

/* メニューの色調変更など */
ul#navi_ul li a{
	text-align: center;
}
ul#navi_ul li a.time_btn{
	background-color: #4BB1B3;
	width:240px;
	border-radius: 30px;
}
ul#navi_ul li a.time_btn:before{
	background:url(../cmn/ico_tokei2.png) no-repeat;
	background-size: 28px;
}
#searchform{
	border:1px solid #4BB1B3;
	width: 240px;
}

#google_language_translator{text-align: center!important;}

#header{
	box-shadow: none;
	position: fixed;
	z-index: 100;
	width: 100%;
}
@media screen and (max-width: 1060px) {
	#header::after {
	  content: "";
	  position: absolute;
	  left: 0;
	  bottom: -19px;         /* グラデーションを下にはみ出させる */
	  width: 100%;
	  height: 20px;

	  background: linear-gradient(
	    to bottom,
	    rgba(255, 255, 255, 1) 20%,
	    rgba(255, 255, 255, 0) 100%
	  );

	  pointer-events: none; /* クリック透過 */
	}
}

header .navBtn{
	border-radius: 30px;
	padding: 8px 10px 10px 10px;
	top:5px;
	right:10px;
	width:25px;
	height: 25px;
}

#logo img{width:90px;}
@media screen and (max-width: 1060px) {
	#logo img{width:50px;}
}
ul.navi_pc{
	display: flex;
	background-color: #fff;
	border-radius: 30px;
	padding: 10px 30px;
	gap: 20px;
}

#main{/* stickyが動かないので調整 */
	overflow:unset;
}

#topimage{
	background:#6CC8C7;
	/*height: 91.5vh;*/
	height: min(91vh, 63vw);
	position: relative;
	overflow:visible;
}
#topimage:after{
  content: "";
  position: absolute;
    left:0;
  right:0;
  top:0;
  /*bottom:-8vw;*/
  bottom:-7vw;

  background-image: url("../img/top/topimage_on_8.png");
  background-repeat: no-repeat;
  background-position: center 100%;
  /*background-size: 44% auto;*/
  background-size: 44% auto;

  pointer-events: none;
  z-index: 1;

  margin:0 auto;
}

#topimage .swiper-slide img{
	max-width: none;
}
#topimage .hero-swiper {
  width: 100%;
  height: 96vh;
  /*max-width: 1400px;*/
  margin:0 auto;
  overflow: hidden;
}


#topimage .hero-area {
  position: relative;
}

#topimage .hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 1100px) {
	#topimage .hero-overlay {
		top:35%;
	}
}

#topimage .hero-overlay img {
  max-width: 80%;
}

/* 画像をふわふわ上下に動かす */
.fluffy {
  width: 90% auto;
  animation: fluffy 3s ease-in-out infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.important_wrap{
	background:#fff;
	color:#000;
	position: absolute;
	width: 400px;
	right:0;
	bottom:10%;
	padding: 20px;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
	z-index: 2;
}
.important_wrap a{
	display: flex;
}
.important_wrap a .img_wrap{
	max-width: 130px;
	width: 100%;
	margin-right: 10px;
	margin-bottom: 0;
}
.important_wrap a .img_wrap .hover-parent{
	border-radius: 10px;
}
.important_wrap a .important_text_wrap{
	line-height: 1.7em;
}
.important_wrap a .imp_title{
	font-size: 14px;
}
.important_wrap a .imp_text{
	font-size:12px;
}
.important_wrap a .imp_time{
	font-size:10px;
	text-align: right;
}

.wave-border {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10vw;
  height: 8vw;       /* 波の高さ */
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.wave-track {
  display: flex;
  width: 200%;
  animation: waveLoop 15s linear infinite;
}

.wave-track svg {
  width: 50%;
  flex-shrink: 0;
  display: block;
}

@keyframes waveLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media screen and (max-width: 1080px) {
	.wave-border{
		bottom:-9vw;
	}
}
@media screen and (max-width: 600px) {
	.wave-border{
		bottom:-6vw;
	}
}
/**/

.sample03{
	padding:20vh 0 30px 0;
	background:#6CC8C7;
}
  .sample03 .swiper-wrapper {
  transition-timing-function: linear;
}

@media screen and (max-width: 1060px) {
/*	#topimage{
		height: 78vh;
	}*/
	#topimage .hero-swiper{
		/*height: 81.5vh;*/
		height: 100%;
	}
}
@media screen and (max-width: 600px) {
	.hero-swiper .swiper-slide {
    	/*height: 82vh;*/ 
    	height: 125vh;
	}

	.hero-swiper img {
		width: 100%;
		height: 100%;
		object-fit: cover; 
	}
	
	.important_wrap{
		/*width:80%;*/
		width: 75%;
		bottom:16%;
	}
	#topimage{
		/*height: 78vh;*/
		height: 125vh;
	}
	#topimage .hero-swiper{
		/*height: 78vh;*/
		height: 125vh;
	}
	#topimage .hero-overlay img {
		max-width: 120% !important;
	}
	#topimage:after{
		background-size: 80% auto;
	}
	#topimage .hero-overlay {
		top: 30%;
		left:45%;
	}
	.fluffy {
		width: 120%;
	}
	.sample03{
		padding:10vh 0 30px 0;
	}
}


.swiper-slide:before{
	background:none;
}

/* front-page eigyo  */
.front_eigyo .eigyo_time_head{
  overflow: visible;
  position: relative;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 50px 80px 20px 80px;

  background: #17A2A4 url(../img/top/eigyo_bg.png)
              no-repeat right bottom;
  background-size: 600px;
}
.front_eigyo .eigyo_time_head .more2{
	margin-right: auto;
	margin-left: 0;
	background:#fff;
}
.front_eigyo .eigyo_time_head .more2:hover{
	border-color:#fff;
}
.front_eigyo .eigyo_time_wrap{
	padding: 0;
	border:0px;
}
.front_eigyo .eigyo_time_wrap h3{
	all:unset;

	font-size: 50px;
	color: #fff;
	font-weight: bold;
	line-height: 1em;
}
.front_eigyo .eigyo_time_wrap h3 span{
	display: block;
	font-size:16px;
	line-height: 1em;
}
.front_eigyo .eigyo_time_wrap h3:before{
	display: none;
}
.front_eigyo .time_wrap{
	background:#fff;
	border-radius: 12px;
	padding: 20px;
	margin-top: 40px;
	max-width: 450px;
}
@media screen and (max-width: 1200px) {
	.front_eigyo .eigyo_time_head{
  background-size: 45%;
	}
	.front_eigyo .time_wrap{
		max-width: 55%;
	}
}

.front_eigyo .top_shoplist .layout {
  display: flex;
  /*gap: 40px;*/
  align-items: flex-start;
  padding: 15px;
}

.floor-viewport {
  overflow: hidden;
}

.floor-container {
  transition: transform 0.5s ease;
}
.front_eigyo .top_shoplist .floor-panel {
  /*min-height: 100%;*/
}

.front_eigyo .top_shoplist .map {
  width: 55%;
  flex-shrink: 0;
  position: sticky;
  top: 80px;	}
.front_eigyo .top_shoplist .map100{width: 100%}

.front_eigyo .top_shoplist  .map-1f svg g polygon,
.front_eigyo .top_shoplist  .map-1f svg g path,
.front_eigyo .top_shoplist  .map-2f svg g polygon,
.front_eigyo .top_shoplist  .map-2f svg g path {
  /*fill: #93beb4;*/
  transition: fill 0.2s ease;
}

.front_eigyo .top_shoplist .map-1f svg g.is-active polygon,
.front_eigyo .top_shoplist .map-2f svg g.is-active polygon {
  fill: #1f8f6a;
}
.map-1f svg g.is-hover polygon,
.map-1f svg g.is-hover path,
.map-2f svg g.is-hover polygon,
.map-2f svg g.is-hover path {
  fill: #F29600 !important;
  transition: 0.2s;
}
.front_eigyo .top_shoplist .map-1f .cls-1 {
  stroke: #d21577;
}
.front_eigyo .top_shoplist .map-1f .cls-1,
.front_eigyo .top_shoplist .map-1f .cls-2,
.front_eigyo .top_shoplist .map-1f .cls-3,
.front_eigyo .top_shoplist .map-1f .cls-4 {
  fill: none;
}
.front_eigyo .top_shoplist .map-1f .cls-1,
.front_eigyo .top_shoplist .map-1f .cls-3,
.front_eigyo .top_shoplist .map-1f .cls-5,
.front_eigyo .top_shoplist .map-1f .cls-4 {
  stroke-miterlimit: 10;
}
.front_eigyo .top_shoplist .map-1f .cls-1,
.front_eigyo .top_shoplist .map-1f .cls-6,
.front_eigyo .top_shoplist .map-1f .cls-5,
.front_eigyo .top_shoplist .map-1f .cls-7 {
  stroke-width: .5px;
}
.front_eigyo .top_shoplist .map-1f .cls-8 {
  fill: #d21577;
}
.front_eigyo .top_shoplist .map-1f .cls-9 {
  fill: #dee7e0;
}
.front_eigyo .top_shoplist .map-1f .cls-10,
.front_eigyo .top_shoplist .map-1f .cls-5 {
  fill: #fff;
}
.front_eigyo .top_shoplist .map-1f .cls-11,
.front_eigyo .top_shoplist .map-1f .cls-6 {
  fill: #bad7d7;
}
.front_eigyo .top_shoplist .map-1f .cls-12 {
  fill: #57abb4;
}
.front_eigyo .top_shoplist .map-1f .cls-13 {
  fill: #207f80;
}
.front_eigyo .top_shoplist .map-1f .cls-3 {
  stroke: #bbc9cf;
}
.front_eigyo .top_shoplist .map-1f .cls-6,
.front_eigyo .top_shoplist .map-1f .cls-7 {
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.front_eigyo .top_shoplist .map-1f .cls-14 {
  fill: #231815;
}
.front_eigyo .top_shoplist .map-1f .cls-15 {
  fill: #209a9b;
}
.front_eigyo .top_shoplist .map-1f .cls-16 {
  fill: #da3b2b;
}
.front_eigyo .top_shoplist .map-1f .cls-17 {
  fill: #f3f6e1;
}
.front_eigyo .top_shoplist .map-1f .cls-5,
.front_eigyo .top_shoplist .map-1f .cls-4 {
  stroke: #231815;
}
.front_eigyo .top_shoplist .map-1f .cls-7 {
  fill: #93beb4;
}
.front_eigyo .top_shoplist .map-1f .cls-18 {
  fill: #0c68ab;
}
.front_eigyo .top_shoplist .map-1f .cls-19 {
  fill: #096062;
}
.front_eigyo .top_shoplist .map-2f #bg .cls-3{
	stroke:none;
}
.map-modal__svg-wrap #bg .cls-3{
	stroke:none;
}

@media screen and (max-width: 1060px) {
	.front_eigyo .eigyo_time_head{
		padding: 30px 40px 20px 30px;
	}
	.front_eigyo .eigyo_time_wrap h3{
		font-size: 2rem;
	}
}
@media screen and (max-width: 768px) {
	.front_eigyo .eigyo_time_head .more2{
		margin-left: auto	;
		margin-right: auto;
	}
	.front_eigyo .eigyo_time_head{
		background: #17A2A4 url(../img/top/eigyo_bg.png) no-repeat center bottom;
 		background-size: 120% auto; /* 少し拡大 */
	}
	.front_eigyo .time_wrap{
		max-width: 100%;
	}
}

.area-A,.area-B,.area-C,.area-D,.area-N,.area-E,.area-F{
	display: inline-block;
	padding: 0 15px;
	color: #fff;
}
.area-A{background-color: #e60513}
.area-B{background-color: #63b32c}
.area-C{background-color: #f29200}
.area-D{background-color: #373737}
.area-E{background-color: #373737}
.area-F{background-color: #373737}
.area-N{background-color: #00acac}

/*mapモーダルウィンドウ*/
/* 拡大ボタン */
.map-expand-btn {
  display: block;
  /*margin: 0 5px 8px auto;*/
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;

  position: absolute;
  top:30px;
  right:15px;
}
.map-expand-btn:hover {
  background: #f0f0f0;
}

/* モーダル背景 */
.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.map-modal.is-open {
  display: block;
}
.map-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* モーダル本体 */
.map-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 85vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 閉じるボタン */
.map-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}

/* ズームボタン */
.map-modal__zoom-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  gap: 4px;
}
.map-modal__zoom-controls button {
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.map-modal__zoom-controls button:hover {
  background: #f0f0f0;
}
.map-modal__zoom-controls button.modal-zoom-reset{
	font-size:12px;
	width:80px;
}

/* SVGラッパー */
.map-modal__svg-wrap {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  padding: 15px;
}
.map-modal__svg-wrap:active {
  cursor: grabbing;
}
.map-modal__svg-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.front_news{
	background:#6CC8C7;
	padding: 30px;

	overflow-x: hidden;
}
.front_news h2:after{
	content: "";
	display: block;
	border-bottom:1px solid #fff;
	width: 100%;
	max-width: 110px;
}
.front_news .swiper{
	margin-left: 200px;
	margin-right: -200px;
}
.front_news .swiper ul li{
	background:#fff;
	padding: 20px;
	height: auto;
	border-radius: 10px;
}
.front_news .swiper-slide:before{display: none}

#mw_news .hover-parent, .img_wrap .hover-parent{border-radius: none}

.news_cat .cat{display: inline-block;padding: 3px 6px;color: #fff;font-size: 10px}
.news_cat .cat-shop_news{background:#F29600}
.news_cat .cat-event{background:#145491}
.news_cat .cat-news{background:#6ABB43}

@media screen and (max-width: 1060px) {
	.front_news h2{
		padding-left: 0;
	}
	.front_news h2:after{
		margin-left: -45px;
	}
	.front_news .swiper{
		margin-left: 0;
		margin-right: 0;
	}
}
.front_news .swiper-wrapper{
	margin-bottom: 40px;
}

.front_news .swiper-button-prev,
.front_news .swiper-button-next {
	background-color: #0f4c81;
	background-image: none;
  position: relative;
  top: auto!important;
  left: auto!important;
  right: auto!important;
  bottom: auto!important;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: inline-block;
  text-align: center;
}
.front_news .swiper-button-prev svg,
.front_news .swiper-button-next svg{
	display: none;
}

.front_news .swiper-button-prev::after,
.front_news .swiper-button-next::after {
  content: none;             /* デフォルト矢印を消す */
}

.front_news .swiper-button-prev::before {
  content: "←";
  font-size: 22px;
  color: #fff;
  line-height: 55px;
}

.front_news .swiper-button-next::before {
  content: "→";
  font-size: 22px;
  color: #fff;
  line-height: 55px;
}
.front_news .swiper-pagination{
	text-align: left;
	margin-left: 140px;
}
.front_news .more{
	border:1px solid #145491;
	background:#145491;
	color: #fff!important;

	width: 120px;
	line-height: 45px;
	font-weight: normal;
	margin-left: auto;
	margin-top: -50px;
	margin-right: 30px;
}
.front_news .more:hover{
	background:#fff;
	color: #145491!important;
}
.front_news .more:after{
	display: none;
}


.top_enjoy{
	background: url(../img/top/enjoy_bg.png) center center;
	background-size: cover;
	padding: 100px 0;
}
.enjoy_wrap{
	background-color: rgb(255 255 255 / 0.8);
	padding:70px 50px;
}
.enjoy_wrap h3{
	font-size:3em;
	font-weight: bold;
}
.enjoy_wrap h4{
	font-size: 1.5em;
	text-align: center;
}
.enjoy_wrap .enjoy_desc{
	text-align: justify;
	max-width: 800px;
	margin:0 auto 20px auto;
}
.enjoy_wrap .text{
	text-align:justify;
	max-width: 800px;
	margin:0 auto;
}
.enjoy_wrap .enjoy1,
.enjoy_wrap .enjoy2,
.enjoy_wrap .enjoy3{
	border-radius: 5px;
	padding: 25px 25px 50px 25px;
	overflow: visible;
	position: relative;

	display: flex;
	flex-direction: column;
}
.enjoy_wrap .enjoy-row{
	margin-top: 20px;
}
.enjoy_wrap .enjoy-row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}
.enjoy_wrap .enjoy1{
	border:1px solid #145491;
	background:#D0E1F2 url("../img/top/enjoy_item02.png") no-repeat 90% 25%;
	background-size: 30%;
}
.enjoy_wrap .enjoy1:before{
	content: "";
  position: absolute;

  left: -20px;   /* マイナスで外に出す */
  bottom: -15px;

  width: 80px;
  height: 80px;

  background: url("../img/top/enjoy_item01.png") no-repeat center/contain;

  z-index: 1; /* 必要なら調整 */
}

.enjoy_wrap .enjoy2{
	border:1px solid #F29600;
	background:#FFEED1 url("../img/top/enjoy_item04.png") no-repeat 90% 25%;
}
.enjoy_wrap .enjoy2:before{
	content: "";
  position: absolute;

  left: 5%;
  bottom: 5%;

  width: 80px;
  height: 80px;

  background: url("../img/top/enjoy_item03.png") no-repeat center/contain;

  z-index: 1; /* 必要なら調整 */
}
.enjoy_wrap .enjoy3{
	border:1px solid #6ABB43;
	background:#C9E0BE url("../img/top/enjoy_item05.png") no-repeat 15% 85%;
}
.enjoy_wrap .enjoy3:before{
	content: "";
  position: absolute;

  right: 5%;
  top: -5%;

  width: 100px;
  height: 150px;

  background: url("../img/top/enjoy_item06.png") no-repeat center/contain;

  z-index: 1; /* 必要なら調整 */
}

.enjoy_wrap h5{
	font-size: 1.5em;
	font-weight: bold;
}
.enjoy-row p{
	max-width: 200px;
}
.enjoy_wrap .enjoy1 a,
.enjoy_wrap .enjoy2 a,
.enjoy_wrap .enjoy3 a{
	padding: 5px 10px;
	color:#fff;
	width: 100%;
	max-width: 100px;
	border-radius: 10px;
	display: block;
	text-align: center;
	margin-left: auto;
	margin-top: auto;
}
.enjoy_wrap .enjoy1 a{
	background:#145491;	
}
.enjoy_wrap .enjoy2 a{
	background:#F29600;	
}
.enjoy_wrap .enjoy3 a{
	background:#6ABB43;	
}
.enjoy_wrap .enjoy1 a:hover,
.enjoy_wrap .enjoy2 a:hover,
.enjoy_wrap .enjoy3 a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
	.enjoy-row .col-md-4{
		margin-bottom: 25px;
	}
}


.top_access{
	border:1px solid #17A2A4;
	border-radius: 5px;
	padding: 15px;
	width:100%;
	max-width: 1200px;
	margin:50px auto;
}
.top_access h4{
	font-weight: bold;
}
.top_access a{
	display: block;
	border-radius: 50px;
	padding: 10px 10px 10px 80px;
	text-align: center;
	line-height: 2em;
	margin-bottom: 30px;

	position: relative;
  display: flex;
  align-items: center;
  gap: 12px;

  transition: .3s;
}
.top_access a.parking{
	border:1px solid #4267AC;
	box-shadow: 0 4px 0 #4267AC;
}
.top_access a.boat{
	border:1px solid #54A7DC;
	box-shadow: 0 4px 0 #54A7DC;
}
.top_access a.car{
	border:1px solid #5CAA62;
	box-shadow: 0 4px 0 #5CAA62;
}
.top_access a.bus{
	border:1px solid #E3AA11;
	box-shadow: 0 4px 0 #E3AA11;
}
.top_access a:hover {
	color:#fff;
  transform: translateY(4px);
  box-shadow: none;
}
.top_access a.parking:hover{
	background: #4267AC;
}
.top_access a.boat:hover{
	background: #54A7DC;
}
.top_access a.car:hover{
	background: #5CAA62;
}
.top_access a.bus:hover{
	background: #E3AA11;
}
.top_access .parking img,
.top_access .boat img,
.top_access .car img,
.top_access .bus img {
  display: none;
}

/* アイコン（PNGをマスクとして使用） */
.top_access .parking::before,
.top_access .boat::before,
.top_access .car::before,
.top_access .bus::before {
  content: "";
  position: absolute;
  left: 32px;
  width: 28px;
  height: 28px;

  background-color: currentColor;

  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;

  transition: .3s;
}
/* 駐車場 */
.top_access .parking {
  color: #486bb0;
  border: 2px solid #486bb0;
}
.top_access .parking::before {
  mask-image: url(../img/top/access_parking.png);
  -webkit-mask-image: url(../img/top/access_parking.png);
}

/* 船 */
.top_access .boat {
  color: #4aa3df;
  border: 2px solid #4aa3df;
}
.top_access .boat::before {
  mask-image: url(../img/top/access_boat.png);
  -webkit-mask-image: url(../img/top/access_boat.png);
}

/* 車 */
.top_access .car {
  color: #58a85a;
  border: 2px solid #58a85a;
}
.top_access .car::before {
  mask-image: url(../img/top/access_car.png);
  -webkit-mask-image: url(../img/top/access_car.png);
}

/* バス */
.top_access .bus {
  color: #e6a400;
  border: 2px solid #e6a400;
}
.top_access .bus::before {
  mask-image: url(../img/top/access_bus.png);
  -webkit-mask-image: url(../img/top/access_bus.png);
}

@media screen and (max-width: 1200px) {
	.top_access{
		margin:50px 25px;
		width:auto;
	}
}

/* footer */
#footer{color: #fff;}
#footer .banner_img{
	background:#fff;
}
#footer .foot_sitemap{
	background:#76C4AC;
	padding-top: 65px;
	padding-bottom: 0;
}
#footer a{
	color: #fff;
	padding-left:0px;
	font-size: .8em;
}

#footer a:before{
	display: none;
}

.footinfo{
	justify-content: flex-start;
	align-items: end;
	gap: 20px;
}

.footinfo .f_logo{
	max-width: 120px;
}
.footinfo .foot_r ul{
	/*background:#fff;*/
	padding: 0 5px;
	margin-bottom: 10px;
}
.footinfo .foot_r img{
	width:30px;
}
.footinfo .foot_r ul li{
	padding: 5px;
}
.footinfo .foot_r ul li a{
	padding: 0;
}
.footinfo .foot_r .linkimg {
  filter: brightness(0) invert(1);
}

.footmenu{
	font-size: 0.8em;
	padding-top: 40px;
}
.footmenu li{
	border-right: 1px solid #76C4AC;
}
.copy{
	padding-bottom: 0;
}

@media screen and (max-width: 1060px) {
	#footer{
		padding-bottom: 100px;
		background:#76C4AC;
	}	
}

@media screen and (max-width: 768px) {
	#pageTop{
		bottom:90px;
	}
	.front_news .swiper-button-prev,
	.front_news .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	.front_news .swiper-button-prev::before,
	.front_news .swiper-button-next::before {
		line-height: 45px;
	}

	.front_news .swiper-pagination{
		margin-left: 95px;
	}
	.front_news .more{
		width: 90px;
		margin-right: 0px;
		padding: 0;
	}

	.foot_sitemap li{
		width:100%;
		float:none;
		padding: 0;
		border-bottom: 0px;
		border-right: 0px;
	}
	.foot_sitemap li:nth-child(2n-1){
		border-right: 0px;
	}
	.footinfo{
		background-color: #76C4AC;
		align-items: baseline;
	}
	.footinfo .foot_l{
		margin-left: 15px;
		margin-right: auto;
	}
	.footinfo .foot_r ul li{
		display: inline-block;
		width: 40px;
	}
	.footinfo .foot_r .linkimg {
	  /*filter:none;*/
	}
	.footmenu {
		display: flex;
	}
	.foot_sitemap li{
		display: inline-block;
	}
	.foot_sitemap li a{
		justify-content: space-around;
	}
	.front_eigyo .top_shoplist .map{
		width: 100%;
		position: relative;
		top: 0;
	}
	.front_eigyo .top_shoplist .layout{
		display: block;
	}
	.top_access a{
		width: 100%;
		max-width: 300px;
		margin:0 auto 30px auto;
	}
	#footer a{
		color: #fff;
		padding-left:0px;
		font-size: .8em;
	}

	#footer a:before{
		display: none;
	}
}


/* kaso css */
.maincontent{
	width: 100%;
}

.kaso_bg{
	background:#F8FEF8;
}

#rtab2b{display: none}

.service_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service_list .service_item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

.service_list .service_item:last-child {
  border-bottom: none;
}

.service_list .service_item .service_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}
.service_list .service_item .service_icon.ccc{
  background: #ccc;
}

.service_list .service_item .service_content {
  flex: 1;
}

.service_list .service_item .service_title {
  font-size: 1em;
  margin: 0 0 8px 0;
  background:none;
  padding-left: 0;
}
.service_list .service_item .service_title:before{
	display: none;
}

.anchor_btn{
	max-width: 100%;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px
}
.anchor_btn:before{
	display: none;
}
.tab_area .col-6:first-child{
	padding-right: 0;
}
.tab_area .col-6:last-child{
	padding-left: 0;
}
.tabbox1{
	background:#fff;
	border:1px solid #17A2A4;
}

