@charset "utf-8";
@import url('https://www.nta.co.jp/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 Serif JP', serif;
  background: url("../images/bg_left.png")repeat-y top left,url("../images/bg_right.png")repeat-y top right;
  background-size: 8%,8%;
  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: #B20202;
  border-bottom: 1px solid #B20202;
}
.text_bold {
  font-weight: bold;
}
.text_normal {
  font-weight: normal;
}
.text_center {
  text-align: center;
}
.text_font_sans {
  font-family: 'Noto Sans JP', sans-serif;
}
.attention {
  font-size: 90%;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 5px;
}
/*.disnon {
  display: none;
}*/
.marker {
  background: linear-gradient(transparent 70%, rgba(255,210,44,0.6) 70%);
  font-weight: bold;
  padding-bottom: 0.1em;
}
a.godetail {
  width:80%;
  max-width:400px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: 0 auto 30px;
	text-decoration: none;
	background: #00A99D;
	z-index: 10;
	color: #FFFFFF;
	font-size: 120%;
	font-weight: bold;
	line-height: 1.5;
  border-radius: 30px;
}
a.godetail:hover {
	color: #00A99D !important;
	text-decoration: none !important;
	background: #FFFFFF;
	border: 2px solid #00A99D;
}
a.godetail.gray {
	background: #AAAAAA;
	pointer-events: none;
}
@media screen and (max-width: 759.9px) {
	a.godetail {
		height: 50px;
		font-size: 100%;
	}
}
a.gotop {
  margin: 20px auto;
  text-align: center;
  text-decoration: none;
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
}
/*--------.page_roof-------------*/
.page_roof {
  height: 450px;
  background: #CCC;
  margin: 0 -50px 50px;
  position: relative;
  border-radius: 0 0 50% 50%;
  overflow: hidden;
  width: calc(100% + 100px);
}
.page_roof .inner {
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.page_roof h2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 300%;
}
.page_roof h2 img{
	width: 80%;
	height: auto;
}

@media screen and (max-width: 759.9px) {
  .page_roof {
    height: 25vh;/*トップ画像の高さ　100vhがスマホ画面の縦の長さ*/
    margin-bottom: 20px;
	}
  .page_roof h2 {
    font-size: 140%;
  }
  .page_roof h2 img{
	width: 70%;
	height: auto;
}
}
/*-------------トップリード   --------------*/
#pageTopLead {
  margin-bottom: 50px;
}
#pageTopLead .inner {
	width: 80%;
	max-width: 900px;
	margin: 0 auto;
}
#pageTopLead .inner p{
	font-size: 140%;
	line-height: 1.8;
}
#pageTopLead .inner p span{
	font-size: 120%;
}
@media (max-width:767px){
  #pageTopLead {
    margin-bottom: 30px;
  }
  #pageTopLead .inner p{
    font-size: 110%;
  }
}
/*-------------tabナビ --------------*/
nav.tabNav {
  width: 95%;
  margin: 0 auto;
}
nav.tabNav ul {
  width: 100%;
  margin: 0 auto;
  max-width: 950px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
nav.tabNav ul li {
  width: 49%;
  height: 70px;
  cursor: pointer;
  position: relative;
  padding: 4px;
}
nav.tabNav ul li:first-child {
  background: #33b5d3;
}
nav.tabNav ul li:last-child {
  background: #2cd1b1;
}
nav.tabNav ul li p {
  background: #33b5d3;
  background: #FFFFFF;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 200%;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
nav.tabNav ul li:first-child.selected p {
  background: #33b5d3;
  color: #FFFFFF;
}
nav.tabNav ul li:last-child.selected p {
  background: #2cd1b1;
  color: #FFFFFF;
}
nav.tabNav ul li p::before {
  content: "";
  position: absolute;
  top:-20px;
  left:-20px;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}
nav.tabNav ul li:first-child p::before {
  background: #33b5d3; }
nav.tabNav ul li:nth-child(2) p::before {
  background: #2cd1b1;
}
nav.tabNav ul li:hover p::before,
nav.tabNav ul li.selected p::before{
  background: #FFFFFF;
}
nav.tabNav ul li p::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  border: 4px solid #FFFFFF;
}
nav.tabNav ul li:first-child.selected p::after {
  border: 4px solid #33b5d3;
}
nav.tabNav ul li:last-child.selected p::after {
  border: 4px solid #2cd1b1;
}
nav.tabNav ul li:first-child:hover p {
  background: #33b5d3;
  color: #FFFFFF;
  transition: all 0.2s ease-out;
}
nav.tabNav ul li:first-child:hover p::after {
  border: 4px solid #33b5d3;
  transition: all 0.2s ease-out;
}
nav.tabNav ul li:last-child:hover p {
  background: #2cd1b1;
  color: #FFFFFF;
  transition: all 0.2s ease-out;
}
nav.tabNav ul li:last-child:hover p::after {
  border: 4px solid #2cd1b1;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 759.9px) {
  nav.tabNav ul li {
    height: 50px;
  }
  nav.tabNav ul li p {
    font-size: 120%;
  }
}
/*-------------タブラップ--------------*/
.tab_wrap {
  visibility: visible;
	height: auto;
}
.tab_wrap.disnon {
  visibility: hidden;
	height: 0;
}

#tab01_panel {}
#tab02_panel {}
/*-------------ページコンテンツ   --------------*/
.tab_wrap .inner {
  width: 90%;
  max-width: 950px;
  padding: 40px 0;
  margin: 0 auto 40px;
}
.tab_wrap .tourlead {
  text-align: center;
  margin-bottom: 20px;
}
.tab_wrap .tourlead h2 {
  font-size: 300%;
  font-weight: bold;
  background: linear-gradient(120deg, #00AADF 0%, #004AA0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 20px;
}
.tab_wrap .tourlead p {
  font-size: 200%;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 759.9px) {
  .tab_wrap .tourlead h2 {
    font-size: 160%;
    margin-bottom: 10px;
  }
  .tab_wrap .tourlead p {
    font-size: 120%;
  }
}
.tab_wrap .comment {
  width: 80%;
  margin:0 auto 30px;
}
.tab_wrap .comment p {
  font-size: 140%;
}
@media screen and (max-width: 759.9px) {
  .tab_wrap .comment p {
    font-size: 120%;
  }
}
/*-------------日程表--------------*/
.itinerary_wrap {
  margin-bottom:50px;
}
.itinerary_wrap .title {
  width: 90%;
  text-align: center;
  margin:0 auto 30px;
}
#nishiizu1 .title {
  background: url("../images/no01.png")no-repeat left center;
  background-size:auto 90%;
}
#nishiizu2 .title {
  background: url("../images/no02.png")no-repeat left center;
  background-size:auto 90%;
}
.itinerary_wrap .title h2{
  width: 40%;
  max-width: 250px;
  margin:0 auto;
}
.itinerary_wrap .title h2 img{
  width: 100%;
}
.itinerary_wrap .title h3{
  width: 95%;
  max-width: 400px;
  margin:0 auto;
  font-size:200%;
  font-weight: bold;
  background: url("../images/title_line.png") repeat-x center bottom;
  background-size: auto 15px;  
}
@media screen and (max-width: 759.9px) {
  .itinerary_wrap .title h3{
    font-size:140%;
    background-size: auto 10px;
  }
}


.itinerary .waku{
  border-top: 4px solid #174399;
  border-left: 4px solid #174399;
  border-right: 4px solid #44b7b6;
  border-bottom: 4px solid #44b7b6;
  margin-bottom: 20px;
}
.itinerary .day_unit .ind1{
  text-indent: -1em;
  margin-left: 1em;
}
.itinerary .day_unit .ind1 span{
  color:#174399;
}
.itinerary .day_unit dl.point dt{
  background: none;
}
.itinerary .day_unit dl.point h4{
  background: #174399;
  color: #FFFFFF;
  border-radius: 15px;
  font-weight: normal;
  width: 70%;
  margin: 0 auto;
  display: block;
}
.itinerary .day_unit dl.point dd,
.itinerary .day_unit dl.icon dd{
  display: flex;
  justify-content: center;
  padding:5px 10px 10px;
}

/*-------------autoslide-------------*/
.autoslide_area {
  width: 100%;
  margin-bottom: 30px;
}
.autoslide_area .swiper-slide p{
  font-size: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.autoslide_area .swiper-slide img{
  border-radius: 20px;
}

/*-----予約-------------------*/
.yoyaku {
  width: 95%;
  padding: 30px 10px;
  border-radius: 20px;
  background: rgba(0,169,157,0.1);
  text-align: center;
  margin: 0 auto 20px;
}
.yoyaku h2 {
  width:80%;
  max-width:400px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	margin: 0 auto 10px;
	text-decoration: none;
	background: #00A99D;
	z-index: 10;
	color: #FFFFFF;
	font-size: 100%;
	font-weight: bold;
	line-height: 1.5;
  border-radius: 30px;
}
.yoyaku h3 {
  text-align: center;
	font-size: 180%;
}
.yoyaku a.telno {
  text-align: center;
	font-size: 200%;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.yoyaku dl {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 1px dotted #00A99D;
  padding: 8px 0;
  display: flex;
  text-align: left;
}
.yoyaku dl:first-of-type {
  border-top: 1px dotted #00A99D;
  margin-top: 20px;
}
.yoyaku dl dt {
  width: 25%;
  text-align: right;
  padding-right: 0.5em;
}
.yoyaku dl dd {
  width: 75%;;
  text-align: left
}
@media screen and (max-width: 759.9px) {
  .yoyaku h3 {
    font-size: 160%;
  }
  .yoyaku a.telno {
    font-size: 180%;
  }
}
/*-----トップwiper----------------*/
.swiper-container.top{
	width: 100%;
	margin:0 auto;
	height: 100%;
}
.swiper-container.top .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-container.top .swiper-slide-active img,
.swiper-container.top .swiper-slide-duplicate-active img,
.swiper-container.top .swiper-slide-prev img{ 
}
@media screen and (max-width: 759.9px){
	.swiper-container.top{
	}
}
/*-----autoslideSwiper-------自動で流れる------------*/
.swiper-container.autoslide .swiper-wrapper{
  transition-timing-function:linear !important;
}
.swiper-container.autoslide .swiper-slide img{
  width: 100%;
}
.swiper-container.autoslide .swiper-slide p{
	text-align:center;
}
@media screen and (max-width: 759.9px) {
	.swiper-container.autoslide .swiper-slide p{
		font-size: 10px;
	}
}

