@charset "UTF-8";
/*----------------------------------------------
 * reset styles
 *---------------------------------------------- */
main {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	display: block;
}
/*----------------------------------------------
 * formatting styles
 *---------------------------------------------- */
html {
	font-size: 62.5%;
	box-sizing: border-box;
}
* {
	box-sizing: inherit;
}
*:before, *:after {
	box-sizing: inherit;
}
body {
	font-size: 1.4em;
	line-height: 1.0;
	color: #333;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
    font-feature-settings: 'palt';
    -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
	body {
		-webkit-text-size-adjust: 100%;
		min-width: 320px;
	}
}
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.4s ease-in-out 0s;
}
a img {
	transition: all 0.4s ease-in-out 0s;
}
@media all and (min-width: 768px) {
	a:hover {
		text-decoration: none;
	}
	a:hover img {
		opacity: 0.8;
	}
}
@media screen and (max-width: 767px) {
	a:active {
		text-decoration: underline;
	}
	a:active img {
		opacity: 0.8;
	}
}
img {
	border-style: none;
	vertical-align: bottom;
	max-width: 100%;
}
/*----------------------------------------------
 * clearfix
 *---------------------------------------------- */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/*----------------------------------------------
 * scrollani styles
 *---------------------------------------------- */
.scrollani {
	opacity: 0;
	transition: all .8s ease;
}
.scrollani.show {
	opacity: 1;
	transform: none;
}
.scrollani--lr {
	transform: translate(-100px, 0);
}
.scrollani--rl {
	transform: translate(100px, 0);
}
.scrollani--up {
	transform: translate(0, 100px);
}
.scrollani--down {
	transform: translate(0, -100px);
}
.scrollani--scaleUp {
	transform: scale(0.5);
}
.scrollani--scaleDown {
	transform: scale(1.5);
}
.scrollani--rotateL {
	transform: rotate(180deg);
}
.scrollani--rotateR {
	transform: rotate(-180deg);
}
@media print {
	.scrollani {
		opacity: 1;
		transform: none;
	}
}
/* ----------------------------------------------
 *header
 *---------------------------------------------- */
 .header {
	position: fixed;
	top: 0;
	right: auto;
	bottom: auto;
	left: auto;
	width: 100%;
	z-index: 200;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
  }
  
  .header .inner {
	width: 100%;
	max-width: 1144px;
	margin: 0 auto;
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
  }
  
  .header__logo img {
	width: 165px;
  }  
  
  .header .inner #menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
  }
  
  .header .inner #menu div {
	position: relative;
  }
  
  .header .inner #menu div .badge {
	position: absolute;
	top: 7px;
	right: 3px;
	bottom: auto;
	left: auto;
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #ff2557;
	color: #fff;
	text-align: center;
	font-size: 85%;
	font-weight: bold;
  }
  
  .header .inner #menu div p {
	cursor: pointer;
	display: block;
	width: 50px;
	height: 50px;
  }
  
  .header .inner #menu div p.selected {
	background-color: #ddd;
  }
  
  .header .inner #menu div p:hover {
	background-color: #ddd;
  }
  
  .header .inner #menu div p a {
	display: block;
	width: 50px;
	height: 50px;
	text-align: center;
	color: #000;
  }
  
  .header .inner #menu div p a.m-search {
	background: url("/../../assets/img/icn_search.png") no-repeat center center;
	background-size: 17px auto;
  }
  
  .header .inner #menu div p a.m-wish {
	background: url("/../../assets/img/icn_wish.png") no-repeat center center;
	background-size: 20px auto;
  }
  
  .header .inner #menu div p a.m-reservation {
	background: url("/../../assets/img/icn_reservation.png") no-repeat center center;
	background-size: 21px auto;
  }
  
  .header .inner #menu div p a.m-mail {
	background: url("/../../assets/img/icn_email.png") no-repeat center center;
	background-size: 21px auto;
	position: relative;
  }
  
  .header .inner #menu div p a.m-user {
	background: url("/../../assets/img/icn_user.png") no-repeat center center;
	background-size: auto 18px;
  }
  
  .header .inner #menu div p a.m-menu {
	background: url("/../../assets/img/icn_menu.png") no-repeat center center;
	background-size: 18px auto;
  }
  
  .header .inner #menu div p a span {
	display: none;
  }
  
  .header .inner #menu div .child {
	display: none;
	position: absolute;
	top: 60px;
	margin: 0 auto;
	padding: 30px;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	-moz-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
	-ms-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  }
  
  .header .inner #menu div .child::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -5px;
	border: 5px solid transparent;
	border-bottom-color: #fff;
  }
  
  .header .inner #menu div .child.mc-reservation {
	width: 300px;
	left: -125px;
	font-size: 12px;
  }
  
  .header .inner #menu div .child.mc-reservation img {
	width: 44px;
	display: block;
	margin: 0 auto 15px;
  }
  
  .header .inner #menu div .child.mc-reservation a {
	border-radius: 50px;
	margin-top: 20px;
  }
  
  .header .inner #menu div .child.mc-reservation.empty {
	color: #b0b0b0;
  }
  
  .header .inner #menu div .child.mc-reservation.empty img {
	opacity: 0.3;
  }
  
  .header .inner #menu div .child.mc-reservation.empty a {
	display: none;
  }
  
  .header .inner #menu div .child.mc-mail {
	width: 300px;
	left: -150px;
	font-size: 12px;
  }
  
  .header .inner #menu div .child.mc-mail img {
	width: 44px;
	display: block;
	margin: 0 auto 15px;
  }
  
  .header .inner #menu div .child.mc-mail a {
	border-radius: 50px;
	margin-top: 20px;
  }
  
  .header .inner #menu div .child.mc-mail::before {
	margin-left: 20px;
  }
  
  .header .inner #menu div .child.mc-menu {
	width: 470px;
	right: 0;
	font-size: 14px;
  }
  
  .header .inner #menu div .child.mc-menu div {
	display: flex;
	align-items: flex-start;
  }
  
  .header .inner #menu div .child.mc-menu div ul {
	width: 45%;
  }
  
  .header .inner #menu div .child.mc-menu div ul:first-child {
	border-right: 1px solid #ddd;
  }
  
  .header .inner #menu div .child.mc-menu div ul:last-child {
	width: 55%;
	padding-left: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
  }
  
  .header .inner #menu div .child.mc-menu div ul:last-child li {
	width: 50%;
  }
  
  .header .inner #menu div .child.mc-menu div ul li {
	text-align: left;
	margin-bottom: 10px;
  }
  
  .header .inner #menu div .child.mc-menu div ul li:first-child {
	font-size: 19px;
	font-weight: bold;
	width: 100%;
	margin-bottom: 15px;
  }
  
  .header .inner #menu div .child.mc-menu div ul li a {
	color: #000;
  }
  
  .header .inner #menu div .child.mc-menu div ul li a:hover {
	color: #4191e8;
	text-decoration: underline;
  }
  
  .header .inner #menu div .child.mc-menu::before {
	margin-left: 205px;
  }
  @media screen and (max-width: 767px) {
	.header {
		z-index: 100;
	  }
	  .header__logo {
		margin: 0 auto;
	  }	
	  .header .inner #menu {
		position: fixed;
		bottom: 0;
		left: 0;
		border-top: 1px solid #ddd;
		background-color: #fff;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	  }
	  .header .inner #menu div {
		width: 20%;
	  }
	  .header .inner #menu div .badge {
		position: absolute;
		top: 3px;
		right: 18px;
		bottom: auto;
		left: auto;
		width: 14px;
		height: 14px;
		line-height: 14px;
		font-size: 10px;
	  }
	  .header .inner #menu div p {
		width: auto;
		height: auto;
		min-width: 50px;
		min-height: 55px;
	  }
	  .header .inner #menu div p.selected {
		background-color: #fff;
	  }
	  .header .inner #menu div p a {
		width: auto;
		height: auto;
		min-width: 50px;
		min-height: 55px;
	  }
	  .header .inner #menu div p a:hover {
		color: #FF0211;
	  }
	  .header .inner #menu div p a.m-search {
		background: url("/assets/img/icn_search.png") no-repeat center 10px;
		background-size: 17px auto;
	  }
	  .header .inner #menu div p a.m-search:hover {
		background: url("/assets/img/icn_search_hover.png") no-repeat center 10px;
		background-size: 17px auto;
	  }
	  .header .inner #menu div p a.m-wish {
		background: url("/assets/img/icn_wish.png") no-repeat center 10px;
		background-size: 20px auto;
	  }
	  .header .inner #menu div p a.m-wish:hover {
		background: url("/assets/img/icn_wish_hover.png") no-repeat center 10px;
		background-size: 20px auto;
	  }
	  .header .inner #menu div p a.m-reservation {
		background: url("/assets/img/icn_reservation.png") no-repeat center 10px;
		background-size: 21px auto;
	  }
	  .header .inner #menu div p a.m-reservation:hover {
		background: url("/assets/img/icn_reservation_hover.png") no-repeat center 10px;
		background-size: 21px auto;
	  }
	  .header .inner #menu div p a.m-mail {
		background: url("/assets/img/icn_email.png") no-repeat center 10px;
		background-size: 21px auto;
		position: relative;
	  }
	  .header .inner #menu div p a.m-mail:hover {
		background: url("/assets/img/icn_email_hover.png") no-repeat center 10px;
		background-size: 21px auto;
	  }
	  .header .inner #menu div p a.m-user {
		background: url("/assets/img/icn_user.png") no-repeat center 10px;
		background-size: auto 18px;
	  }
	  .header .inner #menu div p a.m-user:hover {
		background: url("/assets/img/icn_user_hover.png") no-repeat center 10px;
		background-size: auto 18px;
	  }
	  .header .inner #menu div p a span {
		display: inline-block;
		font-size: 9px;
		margin-top: 32px;
	  }
	  .header .inner #menu div .child {
		display: none !important;
	  }	
}

/* ----------------------------------------------
 *main
 *---------------------------------------------- */
#mainVisual > .inner {
    background: url(../img/mainvisual-sp.jpg) 25% center no-repeat;
    background-size: cover;
    position: relative;
    height: 50vh;
}
#mainVisual > .inner picture{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 80%;
    max-width: 700px;	
}
@media all and (min-width: 768px) {
	#mainVisual > .inner {
		background: url(../img/mainvisual-pc.jpg) no-repeat center 30%;
		background-size: cover;
		position: relative;
		height: 75vh;
	}
}
#ouen {
	background-color: #ed7d8c4d;
}
#ouen .content-title {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 3px;
    color: #ed7d8c;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 2.6rem;
}
#ouen .content-title-sub{
    margin: 5px auto 20px;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    color: #aaa;
}
#ouen > .inner {
	width: 100%;
	max-width: 1144px;
	margin: 0 auto;
	padding: 70px 0;
}
#ouen > .inner .content{
    background-color: #fff;
    margin: 0 13px;
    padding: 25px 15px;
    border-radius: 20px;	
}
#ouen p{
    line-height: 2.0;
	font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}
@media all and (min-width: 768px) {
	#ouen .content-title {
		font-size: 4rem;
	}
	#ouen .content-title-sub{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px) {
	#ouen > .inner {
		width: auto;
		padding: 28px 0;
	}
}
#tour {
	padding: 35px 0 40px;
	position: relative;
	z-index: 2;
}
#tour ul {
    max-width: 1040px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    margin: 0 auto;
    justify-items: center;
}
#tour li {
	flex: 0 0 auto;
	margin: 0 8px;
}
#tour li a:hover{
	text-decoration: none;
}
#tour li .thumbnail{
	overflow: hidden; 
    max-width: 200px;
    max-height: 200px;
	border-radius: 50%; 
	margin: 10px; 
	position: relative;
	z-index: 1;
}
#tour li .thumbnail img{
	width: 100%; 
	height: auto;
	display: block; 
}
#tour li .txt{
	font-weight: bold;
    line-height: 1.3;
	font-size: 1.6rem;
}
 .inner .content-lead{
    margin: 0 auto 40px;
    text-align: center;
}
 .inner .content-lead .content-lead-txt{
    line-height: 1.2;
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 4px;
    color: #3d3d3d;
}
 .inner .content-lead span{
    display: inline-block;
    padding: 3px 18px;
    line-height: 26px;
    color: #FFF;
    text-align: center;
    font-size: 1.55rem;
    font-weight: 700;
    font-family: fot-udkakugoc80-pro, sans-serif;
    letter-spacing: 3px;
    background-color: #FFF;
    border-radius: 20px;
    position: relative;
    background-color: #ed7d8c;
    margin-bottom: 10px;
}
@media all and (min-width: 768px) {
	#tour a:hover img {
		transform: scale(1.15);
	}
	#tour ul{
		grid-template-columns: repeat(4, 1fr);
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px) {
	#tour > .inner {
		margin: 0 15px;
	}
	#tour ul {
		justify-content: space-between;
	}
}
#area1 {
    background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 5px, #d4f2ed 5px, #d4f2ed 10px);
}
.area-wrap{
	padding-top: 40px;
}
.area-wrap > .inner {
	width: 100%;
	max-width: 1144px;
    margin: 0 auto;
	padding: 0px 15px 30px;
}
.area-wrap h2 {
    line-height: 1.2;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: fot-udkakugoc80-pro, sans-serif;
    letter-spacing: 4px;
	text-align: center;
}
.area-wrap .leadText {
	text-align: center;
	font-size: 2.0rem;
	line-height: 1.75;
}
.tourList {
	list-style: none;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.tourbox {
	display: flex;
    flex: 0 0 32%;
    position: relative;
    margin-bottom: 35px;
}
@media all and (min-width: 768px) {
	.country-wrap .tourbox{
		flex: 0 0 23%;
	}
}
.tourbox img{
	width: 100%;
}
.tourbox a{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}
.tourbox a:hover{
	box-shadow: 0 1px 15px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}
.tourbox a:hover img{
	transform: scale(1.15);
}
.tourbox a:hover .tourBtn{
	background-color: #eb6678;
}
.tourbox > div {
	flex: 0 0 auto;
}
.tourbox .icon {
	position: absolute;
	z-index: 1;
	left: 8px;
	top: 8px;
	width: 88px;
}
.tourbox .tag {
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #CEAD39;
    padding: 8px 12px 8px 33px;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.27;
}
.tourbox .tag::before {
    content: '';
    background: url(../img/icon-map.png) no-repeat center center;
    background-size: auto 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    pointer-events: none;
}
.tourPhoto {
	overflow: hidden;
}
.tourTitle {
    border-bottom: 1px solid #aaa;
    margin: 0 15px 0;
    padding: 18px 5px;
    display: flex;
    justify-content: center;
    align-items: left;
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 1.6;
}
.tourPrice {
	margin: 0 15px 20px;
	text-align: right;
	color: #da1c24;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.2;
}
.tourPrice > .inner {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
}
.tourPrice > .inner p {
	margin: 0 0.25em;
}
.tourPrice s {
	position: relative;
	color: #808080;
	font-weight: normal;
	text-decoration: none;
}
.tourPrice s::before {
	content: "";
	position: absolute;
	left: -2.5%;
	top: 50%;
	transform: translateY(-50%);
	width: 105%;
	height: 1px;
	background-color: #808080;
}
.tourPrice .price {
	font-size: 2.6rem;
}
.tourText {
	margin: 20px 15px 20px;
	line-height: 1.6;
	font-size: 1.5rem;
}
.tourBtn {
	margin-top: auto;
	font-weight: bold;
	display: block;
	background-color: #ed7d8c;
	padding: 13px 0;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
    bottom: 0;
    width: 100%;
	transition: all 0.4s ease-in-out 0s;
}
.tourBtn > span {
	display: none;
}
.tourbox.end .tourPhoto a {
	pointer-events: none;
}
.tourbox.end .tourBtn a {
	display: none;
}
.tourbox.end .tourBtn > span {
	display: block;
	background-color: #333;
	padding: 18px 0;
	text-align: center;
	font-size: 1.7rem;
	color: #fff;
}
.country-wrap .content-lead span{
	background-color: #1ec5e6;
}
.area-title-wrap{
	text-align: center;
    padding: 15px;
}
.area-title-wrap .area-title{
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 4px;
}
.area-title-wrap .area-titel-en{
    color: #ed7d8c;
    font-weight: bold;
    font-size: 12px;
}
.areaBtn{
    width: 80%;
    display: inline-block;
    margin: auto auto 20px;
    padding: 10px;
    background-color: #ed7d8c;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid #ed7d8c;
}
.tourbox a:hover .areaBtn{
	background-color: #eb6678;
}
.about-wrap{
    background: url(../img/footer-visual.jpg) no-repeat center 22%;
    background-size: cover;
    height: 60vh;
}
.about-wrap .inner{
	width: 100% !important;
    margin: inherit !important;
	max-width: initial;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background-color: rgba(0,0,0,0.2);
    justify-content: center;
	padding: 0;
}
.about-wrap .inner .content-lead {
    margin: 0 auto 20px;
}
.about-wrap .inner .content-lead .content-lead-txt{
	color: #fff;
	letter-spacing: 1px;
}
.about-wrap .inner .content-lead span{
	background-color: #3fb89f;
	font-size: 1.4rem;
	margin-bottom: 15px;
}
.about-wrap .inner .contet-lead-logo{
	width: 200px;
    margin: 0px auto 20px;
}
.about-wrap .inner p{
    text-align: center;
    color: #fff;
    line-height: 1.6;
    font-weight: bold;
	font-size: 1.5rem;
}
.about-wrap .inner .contett-lead-btn{
    max-width: 350px;
    width: 80%;
    display: inline-block;
    margin: 20px auto 20px;
    padding: 15px 20px;
    background-color: #fff;
    text-align: center;
    color: #e58520;
    font-weight: bold;
    font-size: 16px;
    border-radius: 30px;
}
.about-wrap .inner .contett-lead-btn:hover{
	background-color: #e58520;
    color: #fff;
}

@media all and (min-width: 768px) {
	.tourPhoto a:hover img {
		transform: scale(1.1, 1.1);
	}
	.tourBtn a:hover {
		text-decoration: none;
		opacity: 0.8;
	}
}
@media screen and (max-width: 767px) {
	.area-wrap > .inner {
		width: auto;
	}
	.area-wrap .leadText {
		font-weight: bold;
		font-size: 1.6rem;
	}
	.tourList {
		display: block;
		margin-top: 35px;
	}
	.tourbox .icon {
		width: 58px;
	}
	.tourPhoto a:active img {
		transform: scale(1.1, 1.1);
	}
	.tourPrice {
		font-size: 1.4rem;
	}
	.tourPrice .price {
		font-size: 2rem;
	}
	.tourBtn a:active {
		text-decoration: none;
		opacity: 0.8;
	}
}
#area3 {
    background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 5px, #d4f2ed 5px, #d4f2ed 10px);
}
#area5 {
    background-color: #f8f8f8;
}
#area6 {
    padding: 0;
    position: relative;
}
#pagetop a {
	position: fixed;
	right: 8px;
	bottom: 65px;
	z-index: 100;
}
#pagetop img {
	width: 40px;
	height: 40px;
}
@media all and (min-width: 768px) {
	#pagetop a {
		bottom: 8px;
	}
}
/* ----------------------------------------------
 *footoer
 *---------------------------------------------- */
 .footer {
	background-color: #f5f5f5;
	padding: 10px 0;
	border-top: 1px solid #ddd;
	position: relative;
	z-index: 1;
	line-height: 1.5;
	text-align: center;
	padding-top: 15px;
    padding-bottom: 70px;
}
@media all and (min-width: 768px) {
	.footer {
		padding-bottom: 15px;
	}
}
