@charset "utf-8";
@import url('/akafu/east/common/css/common.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

/* CSS Document */
html {
  scroll-behavior: smooth;
}
#wrapper {
  width: 100%;
  /*max-width:950px;*/
  margin: 0 auto 10px;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
	font-family: 'Noto Sans JP', sans-serif;
	overflow: hidden;
}
#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;
  }
}
.text_red {
  color: #FF0000;
}
.text_bold {
  font-weight: bold;
}
.text_normal {
  font-weight: normal;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.text_font_serif {
  font-family: 'Noto Serif JP', serif;
}
.attention {
  text-indent: -1em;
  margin-left: 1em;
}
.disnon {
  display: none;
}
.marker {
  background: linear-gradient(transparent 80%, #ffd22c 80%);
  font-weight: bold;
}
.photo {
	position: relative;
}
.photo > .credit {
	position: absolute;
	bottom:8px;
	right:20px;
	font-size: 12px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	color: #FFFFFF;
}
.deco span{
  display: inline-block;
	padding: 0 20px;
	background: url("../images/slash_left.svg") no-repeat center left,url("../images/slash_right.svg") no-repeat center right ;
	background-size:12px;
}
.deco_red span{
	padding: 0 20px;
	background: url("../images/slash_left_red.svg") no-repeat center left,url("../images/slash_right_red.svg") no-repeat center right ;
	background-size:15px;
  color: #FF0000;
}
@media (max-width:767px){
	.deco span{
		padding: 0 15px;
		background: url("../images/slash_left.svg") no-repeat center left,url("../images/slash_right.svg") no-repeat center right ;
		background-size:12px;
	}
	.deco_red span{
    display: inline-block;
		padding: 0 12px;
		background: url("../images/slash_left_red.svg") no-repeat center left,url("../images/slash_right_red.svg") no-repeat center right ;
		background-size:8px;
	}
}

/*--------.page_roof-------------*/
.page_roof {
  width: 100%;
	background-repeat: repeat-x;
  background-position: center top;
	background-size: auto 100%;
	height: 300px;
  margin-bottom: 30px;
}
.page_roof .inner {
  width: 100%;
	height: 100%;
  max-width: 950px;
  margin: 0 auto;
}
.page_roof h2 {
  width: 100%;
	height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_roof h2 img {
  width: 90%;
	height: auto;
}
@media screen and (max-width: 759.9px) {
	.page_roof {
		height: 25vh;
		margin-bottom: 30px;
	}
}
/*----------pageTopLead--------------*/
#pageTopLead {
  width: 100%;
  margin: 0 auto 60px;
}
#pageTopLead .inner{
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
}
#pageTopLead .inner a{
  width: 80%;
  display: block;
  margin: 0 auto;
  font-size: 140%;
  text-align: center;
  background: #F76D0F;
  padding: 15px 0;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: bold;
}
@media screen and (max-width: 759.9px) {
  #pageTopLead {
    margin: 0 auto 40px;
  }
  #pageTopLead .inner a{
    font-size: 110%;
    padding: 10px 0;
  }
}

/*-------------ナビ --------------*/
nav.pageNav {
  width: 100%;
  margin: 0 auto;
}
nav.pageNav ul {
  width: 100%;
  margin: 0 auto;
  max-width: 950px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
nav.pageNav ul li {
  width: 25%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
	margin: 0 1%;
	box-shadow: 3px -3px 0 #000;
}
nav.pageNav ul li.selected,
nav.pageNav ul li:hover{
  height: 80px;
}
nav.pageNav ul li:first-child {
  background-color: #fa5c66;
}
nav.pageNav ul li:nth-child(2) {
  background-color: #38b6ff;
}
nav.pageNav ul li:last-child {
  background-color: #28E848;
  /*background-color: #8A8A8A;
  pointer-events: none;*/
}
nav.pageNav ul li p {
  font-size: 160%;
  color: #FFFFFF;
	font-weight: bold;
  line-height: 1.2;
	display: flex;
	align-items: center;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
nav.pageNav ul li p::before {
	content: "";
	display: inline-block;	
  width: 18px;
  height: 1.2em;
  background: url("../images/arrow_triangle_brown.svg") no-repeat;
	background-position: center bottom 2px;
  background-size: contain;
  margin-right: 8px;
}
nav.pageNav ul li.selected p::before,
nav.pageNav ul li:hover p::before{
	content: "";
	display: inline-block;	
  width: 22px;
  height: 1.2em;
  background: url("../images/arrow_triangle.svg") no-repeat;
	background-position: center bottom 5px;
  background-size: contain;
  margin-right: 8px;
}
nav.pageNav ul li.selected p {
  font-size: 200%;
}
@media screen and (max-width: 759.9px) {
	nav.pageNav ul li {
		width: 28%;
		height: 50px;
		margin: 0 1%;
		box-shadow: 3px -3px 0 #000;
	}
  nav.pageNav ul li.selected {
    height: 65px;
  }
  nav.pageNav ul li p {
    font-size: 100%;
  }
	nav.pageNav ul li.selected p {
		font-size: 110%;
	}
	nav.pageNav ul li p::before {
		width: 10px;
		margin-right: 3px;
	}
	nav.pageNav ul li.selected p::before,
	nav.pageNav ul li:hover p::before{
		width: 14px;
		background-position: center bottom 2px;
		background-size: contain;
		margin-right: 3px;
	}
}
/*------------エリアナビ --------------*/
nav.areaNav {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}
nav.areaNav ul {
  width: 100%;
  margin: 0 auto;
  max-width: 950px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.areaNav ul li {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
	margin: 0;
  border-right:1px solid #FFFFFF;
  flex-grow: 1;
}
nav.areaNav ul li:last-child {
  border-right:none;
}
#wrap_hokkaido nav.areaNav {
  background: rgba(250,92,102,0.3);
}
#wrap_okinawa nav.areaNav {
  background: rgba(56,182,255,0.3)
}
#wrap_kyushu nav.areaNav {
  background: rgba(40,232,72,0.3)
}
nav.areaNav ul li p {
  font-size: 120%;
  color: #FFFFFF;
  line-height: 1.4;
}
nav.areaNav ul li p span{
  font-size: 90%;
}
#wrap_hokkaido nav.areaNav li:hover,
#wrap_hokkaido nav.areaNav li.selected{
  background: rgba(250,92,102,0.6);
}
#wrap_okinawa nav.areaNav li:hover,
#wrap_okinawa nav.areaNav li.selected{
  background: rgba(56,182,255,0.6)
}
#wrap_kyushu nav.areaNav li:hover,
#wrap_kyushu nav.areaNav li.selected{
  background: rgba(40,232,72,0.6)
}
@media screen and (max-width: 759.9px) {
	nav.areaNav {
		width: 95%;
		margin: 0 auto;
		padding: 10px 10px;
	}
	nav.areaNav ul {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	#wrap_hokkaido nav.areaNav ul li,
	#wrap_okinawa nav.areaNav ul li{
		width: 90%;
		margin: 0 auto;
		height: 40px;
		border-right:none;
		border-bottom: 1px solid #FFFFFF;
	}
	#wrap_hokkaido nav.areaNav ul li:first-child,
	#wrap_okinawa nav.areaNav ul li{
		border-top: 1px solid #FFFFFF;
	}
  nav.areaNav ul li p {
    font-size: 100%;
  }
}
/*-------------pageContent--------------*/
.tab_wrap {
  width: 100%;
	margin: -3px auto 0;
	z-index: 1;
	position: relative;
	padding: 30px 0;
}
.tab_wrap .inner {
  width: 100%;
  max-width: 950px;
	margin: 0 auto;
}
#wrap_hokkaido {
  background: rgba(250,92,102,0.1)
}
#wrap_okinawa {
  background: rgba(56,182,255,0.1)
}
#wrap_kyushu {
  background: rgba(40,232,72,0.1)
}
@media screen and (max-width: 759.9px) {
	.pageContent {
	  padding: 20px 0;
	}
}
/*-------------areaContent--------------*/
.area_wrap {
  width: 100%;
	margin: 0 auto;
	z-index: 1;
	padding: 30px 0;
}

/*-------------color--------------*/
.bg_color_h {
  background: rgba(250,92,102,1);
}
.bg_color_o {
  background: rgba(56,182,255,1);
}
.bg_color_k {
  background: rgba(40,232,72,1);
}
.color_h {color: rgba(250,92,102,1);}
.color_o {color: rgba(56,182,255,1);}
.color_k {color: rgba(40,232,72,1);}
/*-------------ページコンテンツ   --------------*/
.pageContent {
  width: 100%;
}
.pageContent .inner {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

/*-----banner----------------*/
#banner {
  padding:30px 0;
}
#banner .inner p{
  text-align: center;
  font-size: 150%;
  margin-bottom: 20px;
}
#banner .banner_unit{
  width: 70%;
	margin: 0 auto;
}
.banner_unit a{
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.banner_unit a li{
  font-size: 150%;
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 10px;
}
@media screen and (max-width: 759.9px) {
  #banner .inner p{
    font-size: 120%;
    margin-bottom: 20px;
  }
}
/*-----クーポンが使える施設------------------*/
.box_unit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.box_unit .box{
  width: 31.3%;
  margin: 0 1% 20px;
	border:3px solid #F76D0F;
	border-radius: 20px 80px 20px 20px;
	position: relative;
  background: #FFFFFF;
  padding-bottom: 15px;
}
.box_unit .box .photo{
	padding-top: 20px;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}
.box_unit .box .photo .icon{
	position: absolute;
	bottom:10px;
	left:10%;
	width: 60px;
	height: 60px;
	z-index: 1;
}
.box_unit .box .photo .icon.second{
	position: absolute;
	bottom:10px;
	left: auto;
	right:10%;
	width: 60px;
	height: 60px;
	z-index: 1;
}
.box_unit .box .photo .icon_unit{
	position: absolute;
	bottom:10px;
	left:10%;
	width: 80%;
	height: 60px;
	z-index: 1;
  display: flex;
  justify-content: space-around;
}
.box_unit .box .photo .icon_unit li{
	width: 60px;
	height: 60px;
}
.box_unit .box .photo .icon img,
.box_unit .box .photo .icon_unit img{
	width: 100%;
	height: auto;
}
.box_unit .box .photo img{
	width: 200px;
	height: 200px;
	border-radius: 100px;
	object-fit: cover;
}
.box_unit .box .name{
	position: absolute;
	top:20px;
	left:0;
	right:0;
	color: #FFFFFF;
	background: #F76D0F;
	width: 85%;
	margin: 0 auto;
	text-align: center;
	font-size: 100%;
	font-weight: bold;
	padding: 5px 0;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
	z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
	flex-wrap: wrap;
}
.box_unit .box .name span{
	font-size: 90%;
	margin-right: 10px;
	font-weight: normal;
}
.box_unit .box .name span.area{
	padding: 0 5px;
	white-space: nowrap;
	background: rgba(255,255,255,0.1);
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.6);
}
.box_unit .box .comment{
	width: 90%;
	margin: 0 auto 20px;
}
.box_unit .box .info{
  width: 95%;
  margin: 0 auto;
}
.box_unit .box dl{
  width: 100%;
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted #CCCCCC;
}
.box_unit .box dl dt{
  font-size: 12px;
  width: 3.5em;
}
.box_unit .box dl dd{
  font-size: 90%;
  border-left: 1px solid #CCCCCC;
  padding-left: 10px;
}
.box_unit .box p.attention{
	font-size: 12px;
}
@media screen and (max-width: 759.9px) {
	.box_unit .box{
    width: 80%;
    margin: 0 auto 20px;
	}	
	.box_unit .box .photo{
		padding-top: 20px;
		text-align: center;
		margin-bottom: 20px;
		position: relative;
	}
	.box_unit .box .photo .icon{
		position: absolute;
		bottom:5px;
		left:8%;
		width: 50px;
		height: 50px;
		z-index: 1;
	}
	.box_unit .box .photo .icon.second{
		position: absolute;
		bottom:5px;
		left:auto;
		right:8%;
		width: 50px;
		height: 50px;
		z-index: 1;
	}
  .box_unit .box .photo .icon_unit{
    position: absolute;
    bottom:5px;
    left:8%;
    width: 84%;
    height: 50px;
    z-index: 1;
  }
  .box_unit .box .photo .icon_unit li{
    width: 50px;
    height: 50px;
  }
	.box_unit .box .photo .icon img,
  .box_unit .box .photo .icon_unit img{
		width: 100%;
		height: auto;
	}
	.box_unit .box .photo img{
		width: 200px;
		height: 200px;
		border-radius: 100px;
		object-fit: cover;
	}
	.box_unit .box .name{
		position: absolute;
		top:20px;
		left:0;
		right:0;
		color: #FFFFFF;
		background: #F76D0F;
		width: 90%;
		margin: 0 auto;
		text-align: center;
		font-size: 80%;
		font-weight: bold;
		padding: 5px 0;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
		z-index: 1;
	}
	.box_unit .box .comment{
		width: 90%;
		margin: 0 auto 20px;
	}
	.box_unit .box .comment p{
		font-size: 100%;
	}
}
/*-----スライドswiper カスタマイズ-共通-------------------*/
.swiper-container {
  width: 100%;
}

.swiper-container .swiper-slide img {
  width: 100%;
}

.swiper-pagination {
  width: 100%;
}

.swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}
/*-----inboxswiper--------------------*/
.swiper-container.inbox {
  margin: 0 auto;
}

.swiper-pagination.inbox {
  bottom: 12px;
}

.swiper-pagination.inbox .swiper-pagination-bullet {
  opacity: 0.6;
}

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

.swiper-button-prev.inbox::after,
.swiper-button-next.inbox::after {
  font-size: 15px;
  color: #FFF;
  font-weight: bold;
}

.swiper-button-prev.inbox {
  left: 3px;
  top: 48%;
}

.swiper-button-next.inbox {
  right: 3px;
  top: 48%;
}

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

  .swiper-button-prev.inbox::after,
  .swiper-button-next.inbox::after {
    font-size: 15px;
  }

  .swiper-button-prev.inbox {
    left: 3px;
    top: 46%;
  }

  .swiper-button-next.inbox {
    right: 3px;
    top: 46%;
  }
}