@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
.contents_inner {
	width: 1160px;
	margin: 0 auto;
}
.indent {
	text-indent: -1em;
	padding-left: 1em;
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
	html
	#main {
		font-size: 1.2rem;
	}
	.contents_inner {
		width: 100%;
		padding: 0 10px;
	}
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.anim_fadein_short {
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/



/*explanationArea
=======================*/
/*.grayBg {
	position: relative;
	margin-bottom: 185px;
	background: rgb(250,255,255);
	background: -webkit-linear-gradient(rgba(250,255,255,1) 0%, rgba(224,255,255,1) 100%);
	background: -o-linear-gradient(rgba(250,255,255,1) 0%, rgba(224,255,255,1) 100%);
	background: linear-gradient(rgba(250,255,255,1) 0%, rgba(224,255,255,1) 100%);
}
.grayBg::after {
	content: '';
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-top: 150px solid #e0ffff;
  border-left: 49vw solid transparent;
  border-right: 49vw solid transparent;
}*/
.explanationArea {
	margin-top: 20px;
}
.explanationArea h1 {
	margin: 0;
	color: #0074d8;
	line-height: 1.4;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
}
.explanationArea h1 span {
	margin-right: 10px;
	padding: 3px 7px 5px;
	color: #fff;
	font-size: 1.6rem;
	background: #0074d8;
	border-radius: 4px;
}
.explanationArea .beforeBox {
	display: flex;
	justify-content: space-between;
	margin-top: 36px;
	padding: 30px 45px;
	background: #fff;
	border: 2px solid #0074d8;
	border-radius: 10px;
}
.explanationArea .beforeBox figure {
	display: flex;
  align-items: center;
	padding-right: 50px;
}
.explanationArea .beforeBox .txtBlock {
	max-width: 740px;
	width: 100%;
	padding: 35px 0;
	background: url("../img/country/img_bubble.jpg") no-repeat;
	background-position: center;
}
.explanationArea .afterBlock {
	margin-top: 30px;
	padding: 30px 45px;
	background: #f2f9ff;
	border: 2px solid #0074d8;
	border-radius: 10px;
}
.explanationArea .afterBlock .innerBox_01,
.explanationArea .afterBlock .innerBox_02 {
	display: flex;
	justify-content: space-between;
}
.explanationArea .afterBlock .innerBox_02 {
	margin-top: 37px;
}
.explanationArea .afterBlock .innerBox_02 figure {
	position: relative;
	max-width: 500px;
}
.explanationArea .afterBlock .innerBox_02 figure figcaption {
	/*position: absolute;
  right: 12px;
  bottom: 9px;*/
	padding-right: 5px;
  padding-left: 12px;
  font-size: 1.4rem;
  /*color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;*/
  text-align: right;
}
.explanationArea .afterBlock .txtBlock {
	width: 880px;
	padding: 30px 20px;
	background: url("../img/country/img_bubble_mirror.jpg") no-repeat;
	background-color: #fff;
	background-position: center;
	border: 1px solid #0074d8;
	border-radius: 10px;
}

@media screen and (max-width:767.98px) {
	/*.grayBg {
		margin-bottom: 75px;
		padding-bottom: 20px;
	}
	.grayBg::after {
		border-top: 30px solid #e0ffff;
	}*/
	.explanationArea h1 {
		font-size: 1.6rem;
	}
	.explanationArea h1 span {
		display: inline-block;
		margin-right: 0;
		margin-bottom: 5px;
		padding: 3px 7px;
		font-size: 1.4rem;
	}
	.explanationArea .beforeBox {
		margin-top: 26px;
		padding: 30px 20px;
	}
	.explanationArea .beforeBox figure {
    width: 45%;
		padding-right: 23px;
	}
	.explanationArea .beforeBox .txtBlock {
		max-width: 100%;
    min-height: 75px;
    width: 60%;
    padding: 0;
		background-size: 40%;
	}
	.explanationArea .beforeBox .txtBlock p {
		line-height: 1.4;
	}
	.explanationArea .beforeBox .txtBlock p + p {
		margin-top: 5px;
	}
	.explanationArea .afterBlock {
		margin-top: 20px;
		padding: 20px;
	}
	.explanationArea .afterBlock .txtBlock {
		width: 63.5%;
		padding: 10px;
		background-size: 40%;
	}
	.explanationArea .afterBlock .txtBlock p {
		line-height: 1.4;
	}
	.explanationArea .afterBlock .txtBlock p + p {
		margin-top: 5px;
	}
	.explanationArea .afterBlock .innerBox_01 figure {
		width: 30%;
		display: flex;
		align-items: center;
	}
	.explanationArea .afterBlock .innerBox_02 {
		margin-top: 20px;
	}
	.explanationArea .afterBlock .innerBox_02 figure {
		max-width: 100%;
		width: 47.5%;
	}
	.explanationArea .afterBlock .innerBox_02 figure figcaption {
		right: 8px;
    bottom: 5px;
    font-size: 1rem;
		letter-spacing: -.5px;
	}
}
/*=====================*/



/*tourArea
=======================*/
.tourArea {
	margin-top: 50px;
}
.tourArea a {
	color: #333333;
}
.tourArea h2 {
	margin: 0;
	color: #0074d8;
	line-height: 1.4;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
}
.tourArea .courseItem {
	margin-top: 20px;
	border-bottom: 2px solid #cccccc;
}
.tourArea .courseItem .crs_inner {
	padding: 0 20px;
}
.tourArea .courseItem .crs_topBox {
	display: flex;
}
.tourArea .courseItem .crs_numBox {
	display: flex;
	align-items: center;
}
.tourArea .courseItem .crs_num {
	padding: 2px 16px;
	border: 1px solid #cccccc;
}
.tourArea .courseItem .crs_addInfo {
	margin-left: 20px;
	padding: 2px 16px;
	border: 1px solid #0074d8;
}
.tourArea .courseItem .crs_area {
	padding: 2px 16px;
	background: #cccccc;
	border: 1px solid #cccccc;
}
.tourArea .courseItem .crs_infoBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tourArea .courseItem .crs_tit {
	font-size: 2.3rem;
	transition: all .2s;
}
.tourArea .courseItem .crs_priceBlock {
	width: 350px;
	text-align: right;
}
.tourArea .courseItem .crs_txt {
	font-size: 1.4rem;
}
.tourArea .courseItem .crs_price {
	color: #cc0d21;
	font-size: 2.5rem;
	font-weight: bold;
}

.sec_txt {
	margin-top: 30px;
	padding: 30px 50px;
	background: #fafafa;
	border-radius: 10px;
}
.sec_txt h3 {
	position: relative;
	margin: 0;
	font-size: 1.8rem
}
.sec_txt h3::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background: #0074d8;
	border-radius: 30px;
}
.sec_txt p {
	margin-top: 8px;
}
.sec_txt button {
	display: block;
	margin: 15px auto 0;
	background: #0074d8;
	border: 2px solid #0074d8;
	border-radius: 30px;
	transition: all .25s;
}
.sec_txt button a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 6px 50px 6px 28px;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	transition: all .25s;
}
.sec_txt button a::after {
	position: absolute;
  content: '';
  top: 48%;
  right: 30px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-48%) rotate(-45deg);
	transition: all .25s;
}

@media screen and (min-width:768px) {
	.tourArea a:hover .crs_tit {
		color: #cc0d21;
		text-decoration: underline;
		transition: all .2s;
	}
	.sec_txt button:hover {
		background: #fff;
		transition: all .25s;
	}
	.sec_txt button:hover a {
		color: #0074d8;
		transition: all .25s;
	}
	.sec_txt button:hover a::after {
		border-right: 2px solid #0074d8;
		border-bottom: 2px solid #0074d8;
		transition: all .25s;
	}
}

@media screen and (max-width:767.98px) {
	.tourArea {
		margin-top: 35px;
	}
	.tourArea h2 {
		font-size: 1.6rem;
	}
	.tourArea .courseItem {
		margin-top: 26px;
	}
	.tourArea .courseItem .crs_inner {
		padding: 0 0 12px 0;
	}
	.tourArea .courseItem .crs_num,
	.tourArea .courseItem .crs_area {
		padding: 0px 10px;
	}
	.tourArea .courseItem .crs_addInfo {
    margin-left: 10px;
    padding: 0 10px;
	}
	.tourArea .courseItem .crs_infoBox {
		display: block;
	}
	.tourArea .courseItem .crs_tit {
		margin: 10px 0px;
		font-size: 1.3rem;
	}
	.tourArea .courseItem .crs_priceBlock {
		width: 100%;
	}
	.tourArea .courseItem .crs_txt {
		font-size: 1.1rem;
		line-height: 1.4;
	}
	.tourArea .courseItem .crs_price {
		font-size: 1.5rem;
		line-height: 1.4;
	}
	.sec_txt {
		padding: 15px;
	}
	.sec_txt h3 {
		padding-left: 18px;
		font-size: 1.2rem;
	}
	.sec_txt h3::after {
		top: 55%;
    left: 0px;
    transform: translateY(-55%);
		width: 10px;
		height: 10px;
	}
	.sec_txt button a {
		padding: 4px 30px 4px 20px;
		font-size: 1.3rem;
	}
	.sec_txt button a::after {
		right: 17px;
    width: 8px;
    height: 8px;
	}
}
/*=====================*/



/*others
=======================*/
.returnLink {
	padding-top: 35px;
	text-align: left;
}
.returnLink a {
	position: relative;
	padding-left: 14px;
	color: #999999;
	font-weight: 400;
  transition: all .2s;
}
.returnLink a::before {
	position: absolute;
  content: '';
  top: 55%;
  left: 2px;
  width: 8px;
  height: 8px;
  border-left: 1px solid #999999;
  border-bottom: 1px solid #999999;
  transform: translateY(-55%) rotate(45deg);
  transition: all .2s;
}
.returnLink a::after {
	position: absolute;
  content: '';
	bottom: 0;
  left: 2px;
  width: 60px;
  height: 1px;
	background: #999999;
  transition: all .2s;
}
.voicesArea {
	display: none;
}

@media screen and (min-width:768px) {
	.returnLink a:hover {
		color: #cc0d21;
		transition: all .2s;
	}
	.returnLink a:hover::before {
		position: absolute;
		border-left: 1px solid #cc0d21;
		border-bottom: 1px solid #cc0d21;
		transition: all .2s;
	}
	.returnLink a:hover::after {
		background: #cc0d21;
		transition: all .2s;
	}
}

@media screen and (max-width:767.98px) {
	.returnLink {
		padding-top: 10px;
	}
	.returnLink a::after {
		width: 50px;
	}
	.Footer {
		margin-top: 0;
  }
}
/*=====================*/



/*pageTopBtn
=======================*/
.pageTopBtn {
	display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
	left: 93%;
	position: sticky;
	bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
	background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
	cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
	opacity: 1;
}
.pageTopBtn.-show a {
	cursor: pointer;
}
.pageTopBtn.-transition500 {
	transition: .2s ease;
}

@media screen and (min-width:768px) {
	.pageTopBtn a:hover {
		background: #c2c2c2;
	}
}

@media screen and (max-width:767.98px) {
	.pageTopBtn a {
		width: 45px;
    height: 45px;
	}
	.pageTopBtn a:before {
		width: 16px;
    height: 16px;
	}
}
/*=====================*/