@charset "UTF-8";

/*--------------------------------------
base
--------------------------------------*/
* {
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	box-sizing: border-box;
}
html{
    overflow:auto;
    height:100%; 
}
body{
	width: 100%;
	margin: 0;
	padding: 0;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
p, ul, li, dl, dd, dt, th, td{
	font-size:12px;
}
textarea,input {
	padding:2px;
}
img {
	border: 0;
}
.w_area img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
}
ul {
	list-style-type: none;
	padding:0;
	margin:0;
}
li {
	list-style-position: outside;
	line-height:170%;
}
div {
	display:block;
}
object,
embed {
	vertical-align: top;
}
a {
	color: #333;
}
.balloon_menu_box a {
	color: #fff;
	text-decoration: none;
	margin: auto;
  padding: auto;
}
a:hover img.fade{
	opacity:0.5;
	filter: alpha(opacity=50);
}
a img.fade {
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
div#wrap {
	width:100%;
	margin: 0 auto;
	text-align:center;
	padding:0;
	zoom: 1;
}
body > div#wrap {
	height:auto;
	overflow-y: hidden;
}
.red {
	color: #cc0000;
}
.gray_txtbox {
	color: #fff;
	background-color: #696969;
	padding: 4px 8px;
	line-height:2.2em;
}



/*--------------------------------------
common
--------------------------------------*/
/* PC */
.spOnly {
	display: none;
}
.container,
.container * {
	box-sizing:border-box;
}
.container {
	margin: 96px auto 0;
	@media screen and (max-width: 750px){
		margin: 64px auto 0;
	}
}
.img img {
	max-width:100%;
}
*[class*="trim-"] {
	position:relative;
	overflow:hidden;
}
*[class*="trim-"]:before {
	content:'';
	display:block;
	padding-top:75%;
}
*[class*="trim-"] img {
	position:absolute;
	top:-100%;
	bottom:-100%;
	right:-100%;
	left:-100%;
	margin:auto;
	width:100%;
	height:auto;
}
.trim-square:before {
	padding-top:100%;
}
.trim-rect:before {
	padding-top:50%;
}
.trim-4by1:before {
	padding-top:25%;
}

/* ---------------------------- */
/* ヘッダーフッター*/
/* ---------------------------- */
.pcHeader{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1000;
	transition: .5s;
}
.pcHeader.hide{
	transform: translateY(-100%);
}
#header{
	width: 100%;
	margin: 0 auto;
	background-color: #FFF;
}
#header .inner{
    display:flex;
    display:-ms-flexbox;
    justify-content:space-between;
    -ms-flex-pack:justify;
    align-items:center;
    -ms-flex-align:center;
    width:100%;
	max-width: 1064px;
	height: 96px;
	margin: 0 auto;
}
#header .inner h1{
    flex:0 0 auto;
	margin-left: 32px;
    margin-right:68px;
    margin-bottom:0;
}
#header .inner h1 img{
    width: 196px;
    height: auto;
}

@media screen and (max-width: 750px){
/* SP */
.pcOnly {
	display: none;
}
.spOnly {
	display: block;
}
div#wrap {
	padding-top: 0;
}
/*ヘッダーの改良
.pcHeader{
	position: static;
}
.pcHeader.hide{
	transform: translateY(0%);
}
*/
#header{
	height:auto;
}
#header .inner{
	height: 63px;
	position: relative;
	border-bottom: 3px solid #b4b4b4;
}
#header .inner h1{
	float: none;
	margin-left:9px;
	margin-top:3px;
	padding-top:0;
}
#header .inner h1 img{
	width: 110px;
	height:33px;
	vertical-align:middle;
}
.hMenuIcBox{
	width: 100%;
	position: relative;
	padding: 10px;
	font-size: 14px;
	z-index: 1000;
}
}

@media(max-width:550px) {
.spFooterMenu > ul {
	width:100%;
}
}

/* ---------------------------- */
/* ナビゲーション
----------------------------------*/
.header_nav_lists {
	display: flex;
}
.header_nav_lists li {
	margin: 0 30px 0 0;
}
.header_nav_lists li:before {
	content: "";
	display: inline-block;  
	background-image: url('img/nav_air_pc.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 2em;
	height: 2em;
	margin-right:8px;
	margin-bottom: -5px;
}
.header_nav_lists li.menu02:before {
	background-image: url('img/nav_hotel_pc.png');
	width: 2.9em;
}
.header_nav_lists li.menu03:before {
	background-image: url('img/nav_airhotel_pc.png');
	width: 7.2em;
}
.nav_link {
	font-size: 18px;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	text-decoration: none;
}
a.nav_link {
	position: relative; 
}
a.nav_link::after {
	position: absolute; 
	left: 0; 
	content: ''; 
	width: 100%;
	height: 3px;
	background: #66ccff;
	bottom: -8px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s; 
}
a:hover::after {
	transform: scale(1, 1);
}

/* Responsive menu button */
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 20px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
.menu_line {
  background: #999;
  border-radius: 5px;
  width: 100%;
  height: 4px;
  margin: 3px 0;
}

/* Responsive style */
@media screen and (max-width: 820px) {
.header_nav_lists li:before {
	content: "";
	display: inline-block;  
	background-image: url('img/nav_air.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 2.2em;
	height: 2.2em;
	margin-right:10px;
	margin-bottom: -5px;
}
.header_nav_lists li.menu02:before {
	background-image: url('img/nav_hotel.png');
	width: 3.1em;
}
.header_nav_lists li.menu03:before {
	background-image: url('img/nav_airhotel.png');
	width: 8em;
}
.responsive_btn {
	display: flex;
}
.header_bg {
	position: relative;
}
.header_nav {
	background: #000;
	opacity: 0.85;
	width: 60%;
	height: 100vh;
	padding: 80px 0 0 0;
	position: fixed;
	top: 0;
	right: -100%;
	transition: .5s;
}
.header_nav_lists {
	display: block;
	text-align: center;
}
.header_nav_lists li {
	margin: 0 0 30px;
	text-align: center;
}
.nav_link {
	font-size: 18px;
	color: #fff;
}
}

@media screen and (max-width: 750px) {
.header_nav {
	width: 90%;
}
}

/* js function "menuToggle" starting only */
.menu_active {
  right: 0;
}


/* シェイクアニメ */
[data-aos=shake_amine] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos=shake_amine].aos-animate {
  animation: shake 3s linear both;
  opacity: 1;
}
@keyframes shake {
  0%, 100% {
    transform: rotateZ(0);
  }
  30% {
    transform: rotateZ(0);
  }
  35%{
    transform: rotateZ(-40deg);
  }
  40% {
    transform: rotateZ(35deg);
}
  45% {
    transform: rotateZ(-25deg);
  }
  50% {
    transform: rotateZ(18deg);
	}
  55% {
    transform: rotateZ(-10deg);
	}
  60%, 100% {
    transform: rotateZ(2deg);
  }
  65%, 100% {
    transform: rotateZ(-2deg);
  }
  70%, 100% {
    transform: rotateZ(0);
  }
}


/*　カモメアニメ01　*/
.kamome_top01,
.kamome_top02,
.kamome_top03 {
	width: 100%;
	max-width: 150px;
	margin: -160px auto 0 480px;
	z-index: 10;
}
.kamome_top02 {
	margin: -40px auto 0 560px;
	z-index: 11;
}
.kamome_top03 {
	margin: -20px auto 0 620px;
	z-index: 11;
}
.kamome_top04 {
	margin: -150px auto 0 880px;
	z-index: 11;
	@media (max-width: 900px) {
		margin: -200px auto 0 720px;
	}
}
.kamome_top05 {
	margin: -10px auto 0 720px;
	z-index: 11;
	@media (max-width: 900px) {
		margin: -10px auto 0 570px;
	}
}
.kamome_top06 {
	margin: -65px auto 0 770px;
	z-index: 11;
	@media (max-width: 900px) {
		margin: -65px auto 0 620px;
	}
}

.fuwafuwa01,
.fuwafuwa02,
.fuwafuwa03 {
	display: block;
	width: 28px;
	height: auto;
}
.fuwafuwa02 {
	width: 35px;
}
.fuwafuwa03 {
	width: 75px;
}

/* Animation */
.kamome_top01 {
	animation: floating-x 12s ease-in-out infinite alternate-reverse;
}
.fuwafuwa01 {
	animation: floating-y 3s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
	0% {
		transform: translateX(-5%);
	}
	100% {
		transform: translateX(5%);
	}
}
@keyframes floating-y {
	0% {
		transform: translateY(-10%);
	}
	100% {
		transform: translateY(10%);
	}
}

.kamome_top02 {
	animation: floating-x 10s ease-in-out infinite alternate-reverse;
}
.fuwafuwa02 {
	animation: floating-y 2.2s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
	0% {
		transform: translateX(-5%);
	}
	100% {
		transform: translateX(5%);
	}
}
@keyframes floating-y {
	0% {
		transform: translateY(-10%);
	}
	100% {
		transform: translateY(10%);
	}
}

/* Animation */
.kamome_top03 {
	animation: floating-x 7.2s ease-in-out infinite alternate-reverse;
}
.fuwafuwa03 {
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
	0% {
		transform: translateX(-10%);
	}
	100% {
		transform: translateX(10%);
	}
}
@keyframes floating-y {
	0% {
		transform: translateY(-15%);
	}
	100% {
		transform: translateY(15%);
	}
}

/*　波アニメ　*/
.wave-box {
	margin: 0 auto;
	margin-top: -120px;
	max-width: 1398px;
	overflow-x: auto; /* コンテンツがはみ出る場合 */
/* マスクの設定 */
	mask-image: linear-gradient(to right, 
    transparent 0%,    /* 左端は透明 */
    black 10%,      /* 少し内側は不透明（黒はマスクで不透明を意味する） */
    black 90%,      /* 右端近くまで不透明 */
    transparent 100%    /* 右端は透明 */
	);
/* ベンダープレフィックスが必要な場合があります (-webkit-mask-image) */
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
	@media (max-width: 1300px) {
		mask-image: linear-gradient(to right, 
		transparent 0%,    /* 左端は透明 */
		black 0%,      /* 少し内側は不透明（黒はマスクで不透明を意味する） */
		black 100%,      /* 右端近くまで不透明 */
		transparent 100%    /* 右端は透明 */
		);
		-webkit-mask-image: linear-gradient(to right, transparent 0%, black 0%, black 100%, transparent 100%);
	}
}

.waves {
  position:relative;
  width: 100%;
  height:16vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:125px;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
	.waves {
		height:40px;
		min-height:40px;
	}
	.content {
		height:30vh;
	}
}




/* ---------------------------- */
/* other
----------------------------------*/
.clearfix:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;   
  visibility: hidden;  
}
.clearfix { display: inline-table; }  
/* Hides from IE-mac \*/  
* html .clearfix { height: 1%; }  
.clearfix { display: block; }  
/* End hide from IE-mac */  



/* ---------------------------- */
/* メインコンテンツ */
/* ---------------------------- */
.active a{
    color: #000;
}
#main_bk {
	position: relative;
	text-align: center;
	height: 420px;
	width: 100%;
	background: linear-gradient(to right, #fff 0%, #fff 50%, #0078bf 50%, #0078bf 100%);
}
#main_bk_img {
	position: relative;
	text-align: center;
	height: 420px;
	width: 100%;
	background-image: url("img/main_bk.png");
	background-size: 1398px;
	background-repeat: no-repeat;
	background-position:  center;
	z-index:1;
	@media (max-width: 450px) {
		background-image: url("img/main_bk_sp.png");
		background-size: cover;
	}
	@media (max-width: 390px) {
	}
}
.w_shadow {
		text-shadow: #fff 3px 0, #fff -3px 0, #fff 0 -3px, #fff 0 3px, #fff 3px 3px, #fff -3px 3px, #fff 3px -3px, #fff -3px -3px, #fff 1px 3px, #fff -1px 3px, #fff 1px -3px, #fff -1px -3px, #fff 3px 1px, #fff -3px 1px, #fff 3px -1px, #fff -3px -1px, 
		rgba(0, 0, 0, .2) 5px 5px 6px, rgba(0, 0, 0, .2) 5px -5px 6px, rgba(0, 0, 0, .2) -5px 5px 6px, rgba(0, 0, 0, .2) -5px -5px 6px,
		rgba(0, 0, 0, .2) 4px 4px 5px, rgba(0, 0, 0, .2) 4px -4px 5px, rgba(0, 0, 0, .2) -4px 4px 5px, rgba(0, 0, 0, .2) -4px -4px 5px,
		rgba(0, 0, 0, .1) 3px 3px 4px, rgba(0, 0, 0, .1) 3px -3px 4px, rgba(0, 0, 0, .1) -3px 3px 4px, rgba(0, 0, 0, .1) -3px -3px 4px,
		rgba(0, 0, 0, .1) 2px 2px 3px, rgba(0, 0, 0, .1) 2px -2px 3px, rgba(0, 0, 0, .1) -2px 2px 3px, rgba(0, 0, 0, .1) -2px -2px 3px,
		rgba(0, 0, 0, .1) 1px 1px 2px, rgba(0, 0, 0, .1) 1px -1px 2px, rgba(0, 0, 0, .1) -1px 1px 2px, rgba(0, 0, 0, .1) -1px -1px 2px;
}
.top_box {
	margin: 0 auto;
	max-width: 1000px;
	padding: 50px 0 40px;
	text-align: left;
	box-sizing: border-box;
	@media screen and (max-width: 450px) {
		padding: 35px 0 30px;
	}
}
h1.title_big {
	display: inline-block;
	font-size: 70px;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	color: #0078bf;
	font-weight: bold;
	margin: 0 0 20px;
	z-index: 2;
	@media screen and (max-width: 900px) {
		font-size: 60px;
		margin: 0 0 20px 20px;
	}
	@media screen and (max-width: 450px) {
		font-size: 2.7rem;
		margin: 0 0 15px 15px;
	}
	@media screen and (max-width: 400px) {
		font-size: 2.4rem;
		margin: 0 0 15px 15px;
	}
}
.ic_beginner {
	display: inline-block;
	width: 180px;
	vertical-align: top;
	@media screen and (max-width: 900px) {
		width: 150px;
	}
	@media screen and (max-width: 450px) {
		width: 100px;
	}
	@media screen and (max-width: 375px) {
		width: 90px;
	}
}
.ic_beginner img {
	width: 100%;
}



.title_sub {
	font-size: 2em;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	color: #0078bf;
	font-weight: bold;
	margin: 0 0 10px;
	@media screen and (max-width: 900px) {
		font-size: 1.8em;
		margin: 0 0 10px 25px;
	}
	@media screen and (max-width: 450px) {
		font-size: 1.4em;
		margin: 0 10px 30px;
		line-height: 1.9rem;
		text-align: center;
	}
	@media screen and (max-width: 400px) {
			font-size: 1.25em;
			margin: 0 10px 20px;
	}
}
.title_smoll {
	font-size: 1.15em;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	line-height: 1.6em;
	font-weight: 800;
	@media screen and (max-width: 900px) {
		font-size: 1.2em;
		margin: 0 0 10px 25px;
	}
	@media screen and (max-width: 450px) {
		font-size: 1.1em;
		margin: 0 20px 10px;
		line-height: 1.6rem;
	}
	@media screen and (max-width: 400px) {
		font-size: 1.1em;
	}
}
.auth_box {
	display: flex;
	align-items: center;
	margin: 15px auto 0;
	width: 100%;
	padding: 10px  20px;
	background-color: rgba(256, 256, 256, 0.65);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
	line-height: 1.7em;
	font-size: 0.9em;
	@media screen and (max-width: 450px) {
		display: block;
		line-height: 1.4em;
	}
}
.auth_item {
	padding: 0 20px;
	@media screen and (max-width: 450px) {
		padding: 0;
		text-align: center;
	}
}
.auth_item img {
	width: 350px;
	@media screen and (max-width: 400px) {
		width: 300px;
	}
}
h2.balloon_big {
	position: relative;
	display: inline-block;
	margin: 20px 0 0 0;
	padding: 20px 10px;
	width: 100%;
	background: #0078bf;
	box-sizing: border-box;
	@media screen and (max-width: 450px) {
		padding: 15px 10px 18px;
	}
}
h2.balloon_big:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #0078bf;
}
h2.balloon_big .title {
	position: relative;
	color: #fff;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size: 2rem;
	font-weight: 800;
	padding: 10px 0;
	@media screen and (max-width: 450px) {
		font-size: 1.8rem;
		line-height: 1.1em;
		padding: 0 0 10px;
	}
}
h2.balloon_big .title .smoll {
	font-size: 1.2rem;
	@media screen and (max-width: 450px) {
		font-size: 1.05rem;
	}
}
h2.balloon_big .title img {
	position: absolute;
	width: 126px;
	top: -110px;
	left: 77%;
	z-index: 2;
	@media screen and (max-width: 900px) {
		left: 83%;
	}
	@media screen and (max-width: 450px) {
		top: -60px;
		width: 100px;
		left: 74%;
	}
}
h2.balloon_big .title .left {
	@media screen and (max-width: 900px) {
		padding-right: 40px;
	}
	@media screen and (max-width: 450px) {
		padding-right: 90px;
	}
}



.balloon_menu_bk {
	background-image: url("img/wave_bk.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 1398px;
	padding-bottom: 10px;
}
.balloon_menu_box {
	position: relative;
    display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 40px auto 30px;
	@media screen and (max-width: 900px) {
		margin: 40px 10px 30px;
	}
	@media screen and (max-width: 450px) {
		display: block;
		margin: 40px 25px 30px;
	}
	z-index: 10;
}
h3.balloon_menu01,
h3.balloon_menu02,
h3.balloon_menu03,
h3.balloon_menu04 {
    display: flex;
	justify-content: center;
	align-items: flex-end;
    position: relative;
	width: 230px;
	height: 275px;
	margin: 0 auto;
    padding: 10px 10px 12px;
    border: 4px solid #fff;
    border-radius: 10px;
	background-color: #ff9900;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	color: #fff;
	font-size: 1.2em;
	line-height: 1.5em;
	font-weight: 800;
	background-image: url("img/balloon_menu01.png");
	background-size: 230px;
	background-repeat: no-repeat;
	background-position: top center;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s;
	@media screen and (max-width: 900px) {
		align-items: flex-end;
		width: 96%;
		height: 250px;
		background-size: 200px;
		font-size: 1.1em;
		padding: 14px 10px 15px;
		margin: 0 5px;
	}
	@media screen and (max-width: 450px) {
		align-items: center;
		width: 100%;
		height: auto;
		padding: 14px 10px 10px;
		background-image: none;
		margin: 0 0 10px 0;
	}
}
h3.balloon_menu02 {
	background-image: url("img/balloon_menu02.png");
	@media screen and (max-width: 900px) {
	}
	@media screen and (max-width: 450px) {
		background-image: none;
	}
}	
h3.balloon_menu03 {
	background-image: url("img/balloon_menu03.png");
	@media screen and (max-width: 900px) {
	}
	@media screen and (max-width: 450px) {
	background-image: none;
	}
}
h3.balloon_menu04 {
	background-image: url("img/balloon_menu04.png");
	@media screen and (max-width: 900px) {
	}
	@media screen and (max-width: 450px) {
		background-image: none;
	}
}
h3.balloon_menu01::before,
h3.balloon_menu02::before,
h3.balloon_menu03::before,
h3.balloon_menu04::before,
h3.balloon_menu01::after,
h3.balloon_menu02::after,
h3.balloon_menu03::after,
h3.balloon_menu04::after {
    position: absolute;
    bottom: -14px;
    width: 30px;
    height: 14px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: '';
	@media screen and (max-width: 450px) {
		bottom: 0;
		clip-path: none;
	}
}
h3.balloon_menu01::before,
h3.balloon_menu02::before,
h3.balloon_menu03::before,
h3.balloon_menu04::before {
		background-color: #fff;
}
a.upbtn {
	transition: transform 0.3s;
}
a.upbtn:hover {
	transform: translateY(5%);
}

h3.balloon_menu01::after,
h3.balloon_menu02::after,
h3.balloon_menu03::after,
h3.balloon_menu04::after {
    bottom: -11px;
	background-color: #ff9900;
	@media screen and (max-width: 450px) {
		bottom: 0;
		background-color: none;
	}
}
h3.balloon_menu01 .left,
h3.balloon_menu02 .left,
h3.balloon_menu03 .left,
h3.balloon_menu04 .left	{
	width: 27%;
	@media screen and (max-width: 450px) {
		width: 23%;
	}
}
h3.balloon_menu01 .left img,
h3.balloon_menu02 .left img,
h3.balloon_menu03 .left img,
h3.balloon_menu04 .left img {
	width: 100%;
	padding: 0 6px 4px 6px;
	@media screen and (max-width: 900px) {
		width: 100%;
		padding: 0 6px 8px 0px;
	}
	@media screen and (max-width: 450px) {
		width: 75%;
		padding: 0 6px 0 6px;
	}
}
h3.balloon_menu01 .right,
h3.balloon_menu02 .right,
h3.balloon_menu03 .right,
h3.balloon_menu04 .right {
	width: 73%;
	@media screen and (max-width: 450px) {
		width: 77%;
	}
}
h3.balloon_menu01 .right .big_f,
h3.balloon_menu02 .right .big_f,
h3.balloon_menu03 .right .big_f,
h3.balloon_menu04 .right .big_f {
	font-size: 1.5em;
	@media screen and (max-width: 900px) {
		font-size: 1.35em;
	}
	@media screen and (max-width: 450px) {
		font-size: 1.4em;
	}
}
.point3_bk {
	background-image: url("img/seview_bk.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 1398px;
	padding: 10px 0 30px;
	@media screen and (max-width: 900px) {
		background-size: cover;
	}
}
.point3_box {
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	@media screen and (max-width: 450px) {
		padding: 0 0 10px;
	}
}
.point3_title {
	border-left:5px solid #0078bf; 
	padding:2px 0 0 26px;
	margin: 20px 0 40px;
	color: #fff;
	text-align: left;
	font-size: 1rem;
	line-height: 1.6em;
	text-shadow: 0 0 3px rgba(0,0,0,0.4), 0 0 6px rgba(0,0,0,0.5), 0 0 8px rgba(0,0,0,0.8);
	font-weight: bold;
	@media screen and (max-width: 900px) {
		font-size: 1rem;
		margin: 20px 10px 40px;
	}
	@media screen and (max-width: 780px) {
		font-size: 1rem;
		margin: 70px 10px 40px;
	}
	@media screen and (max-width: 450px) {
		padding:2px 0 0 14px;
	}
}
.point3_title h2 {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.4em;
	margin-bottom: 10px;
	@media screen and (max-width: 450px) {
		font-size: 1.7em;
	}
}
.tablet_space {
	@media screen and (max-width: 900px) {
		margin-bottom: 50px;
	}
}



.point_white_box {
	position: relative;
	text-align: left;
	line-height: 1.6em;
	max-width: 1000px;
	height: 190px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.10);
	@media screen and (max-width: 900px) {
		height: 230px;
		margin: 0 10px 20px;
	}
	@media screen and (max-width: 450px) {
		height: 320px;
		margin: 0 10px 20px;
	}
}
.point_white_box .point_img {
	position: absolute;		
	max-width: 1000px;
	top: 0;
	right: 0;
}
.point_white_box .point_img img {
	max-width: 388px;
	@media screen and (max-width: 900px) {
		max-width: 250px;
	}
}
.point3_box .title_box {
	display: flex;
	padding: 26px 26px 15px 26px;
	@media screen and (max-width: 450px) {
		display: block;
	}
}
.point3_box .title_box .left img {
	width: 62px;
	padding-right: 20px;
	@media screen and (max-width: 900px) {
		width: 90px;
		padding-right: 35px;
	}
}
.point3_box .title_box .right {
	width: 600px;
	@media screen and (max-width: 900px) {
		width: 470px;
	}
	@media screen and (max-width: 450px) {
		width: 100%;
		margin-top: 10px;
	}
}
h3.point3_list {
	position: relative;
	padding: 8px 30px;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: bold;
	color:#fff;
	font-size: 1.3rem;
	line-height: 1.4em;
	background: #02a9d9;
	transform: skewX(150deg);/*傾斜をつける*/
	@media screen and (max-width: 900px) {
		padding: 8px 70px 8px 30px;
	}
	@media screen and (max-width: 450px) {
		padding: 8px 30px 8px 30px;
		font-size: 1.25rem;
		z-index: 4;
	}
}
h3.point3_list span {
	display: block;
	transform: skewX(-150deg);/*テキストのみ傾斜を戻す*/
}
.point3_box .text_box {
	width: 600px;
	padding: 0 10px 26px 26px;
	box-sizing: border-box;
	@media screen and (max-width: 900px) {
		width: 600px;
		margin: 25px 10px 20px;
	}
	@media screen and (max-width: 450px) {
		width: 95%;
		margin: 0 10px 10px;
		padding: 0 10px 10px 10px;
		
	}
}

h2.sche_head {
    display: flex;
    justify-content: center;
	align-items: center;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size: 2rem;
	font-weight: 800;
	color: #333333;
	padding: 60px 0 0;
	@media screen and (max-width: 450px) {
		width: 90%;
		font-size: 1.8em;
		margin: 0 auto;
	}
}
h2.sche_head::before,
h2.sche_head::after {
    width: 3px;
    height: 40px;
    background-color: #0078bf;
    content: '';
}
h2.sche_head::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}
h2.sche_head::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
/* ------ タブボタン-----*/
.tab-switch {
	--tab-color:#339900;
	display: flex;
	flex-wrap: wrap;
	justify-content: center ;
	width: 100%;
	margin-inline: auto;
	padding: 30px 0 40px;
}
.tab-switch .btn_box {
	display: flex;
	justify-content: center ;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
	gap: 10px;
	font-size: 1.3rem;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: bold;
	line-height: 1.4em;
}
.tab-switch .btn_box img {
	width: 32px;
}
.tab-switch .btn_box .big_fnt {
	font-size: 1.35em;
	font-weight: 800;
	text-shadow: 0 0 3px rgba(0,0,0,0.2), 0 0 4px rgba(0,0,0,0.2);
}
span.marker {
    background-image: repeating-linear-gradient(-45deg,
	#ff9900 0, #ffcc00 3px,
	transparent 3px, transparent 6px);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 50%;
}
.tab-switch label {
	padding: 1.5em 1em;
	background:#cac9c9;
	cursor: pointer;
	order: -1; /* 上に表示 */
	text-align: center;
	flex: 1 1 auto; /* 均等幅 */
	position: relative;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	max-width: 480px;
	margin: 0 10px;
	color: #666;
}
.tab-switch input {/* ラジオ非表示 */
	display: none;
}
.tab-content {/* コンテンツ非表示 */
	display: none;
	width: 100%;
	padding: 1.5em 0;
}
.tab-switch label:has(:checked) {/* 選択されたタブ＋コンテンツ表示 */
	background: var(--tab-color);
	color: #fff;
}
.tab-switch label:has(:checked) + .tab-content {
	display: block;
}
.tab-switch label:has(:checked)::before {/* 吹き出し */
	content: '';
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 9px;
	background-color: var(--tab-color);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 1;
	}
/* 初期値（タブ①用） */
.tab-switch {
	--tab-color: #339900;
}
/* タブ①が選択された時 */
.tab-switch label:nth-of-type(1):has(:checked) {
	--tab-color: #339900;
}
/* タブ②が選択された時 */
.tab-switch label:nth-of-type(2):has(:checked) {
	--tab-color: #e95d98;
}
/* ------タブコンテンツ-----*/
.green_bk {
	width: 100%;
	padding: 30px 0 10px;
	background: #cdf0bc;
	box-sizing: border-box;
}
.pink_bk {
	width: 100%;
	padding: 30px 0 10px;
	background: #f9dde9;
	box-sizing: border-box;
}
.schedule_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1000px;
	overflow-x: auto;
	margin: 0 auto 20px;
	padding-bottom: 6px;
	@media screen and (max-width: 900px) {
		width: 100%;
	}
}
.schedule_item {
	width: 390px;
	height: 580px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #ddd;
	box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.10);
	padding: 20px;
	margin: 8px 10px;
	box-sizing: border-box;
	flex-shrink: 0;
	@media screen and (max-width: 750px) {
		width: 330px;
		height: 628px;
		padding: 12px;
	}
}
.schedule_ti {
	position: relative;
	margin: 0 0 1.5em 0;
	padding: 14px 10px;
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size: 1.2rem;
	font-weight: bold;
}
.schedule_ti.green {
	background: #339900;
}
.schedule_ti.pink {
	background: #e95d98;
}
.schedule_ti::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: transparent;
	border-top: 10px solid #339900;
}
.schedule_ti.pink::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: transparent;
	border-top: 10px solid #e95d98;
}
.schedule_ti .step_mark {
	padding: 6px 20px;
	margin: 0 14px 0 0;
	font-size: 0.9rem;
	color: #339900;
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
}
.schedule_ti .step_mark.pink {
	color: #e95d98;
}
ul.chek_mark {
	list-style: none;
	text-align: left;
}
ul.chek_mark li {
	padding: 0 0 10px 26px;
	font-size: 0.90rem;
	line-height: 1.6em; 
	background: url(img/check_ico.png) left 0px top 3px no-repeat;
	background-size: 18px auto;
}
.schedule_item .smoll {
	font-size: 0.8rem;
}
ul.chek_mark ul {
	list-style-type: disc; /* 黒点 */
}
ul.chek_mark ul li {
	padding: 0 0 6px 0;
	margin-left: 14px;
	background: none;
	background-size: 0;
}
.triangle {
	background: #339900;
	height: calc(tan(70deg) * 20px / 2);
	width: 20px;
	margin: 0 10px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	flex-shrink: 0;
}
.triangle.pink_c {
	background: #e95d98;
}
	
	
/* 航空券予約
----------------------------------*/
h2.balloon_big.orange_bk {
	background-color: #ff9900;
}
h2.balloon_big.orange_bk::before {
	border-top: 15px solid #ff9900;
	}
h2 .contbar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
h2 .contbar img {
	width: 84px;
	padding-right: 20px; 
	@media screen and (max-width: 450px) {
		width: 58px;
		padding-right: 10px; 
	}
}
h2.balloon_big .contbar .title {
	@media screen and (max-width: 450px) {
		font-size: 1.53rem;
		padding: 0 0 0;
	}
}
.beige_bk {
	width: 100%;
	padding: 40px 0;
	background-color: #f7e5ca;
	margin-bottom: 40px;
	@media screen and (max-width: 450px) {
		margin-bottom: 30px;
	}
}
.cont_read {
	max-width: 800px;
	margin:  0 auto 40px;
	text-align: left;
	line-height: 1.5rem;
	@media screen and (max-width: 900px) {
		padding: 0 50px;
	}
	@media screen and (max-width: 450px) {
		padding: 0 10px;
	}
}

.accordion-list {
    max-width: 1000px;
	background-color: #ffffff;
	margin: 0 auto;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	@media screen and (max-width: 900px) {
		margin: 0 10px;
	}
}
.accordion-list:not([open]) {
	margin-bottom: 10px;
}
.accordion-list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.2em 2em 1.2em 4.5em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #2589d0;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size: 1.3rem;
	text-align: left;
    color: #fff;
    font-weight: 800;
	cursor: pointer;
	background-image: url("img/accod_no01.png");
	background-size: 50px;
	background-repeat: no-repeat;
	background-position: 2.7% 100%;
		@media screen and (max-width: 450px) {
		font-size: 1.2rem;
		line-height: 1.4rem;
		padding: 1em 0.5em 1em 3em;
		background-size: 40px;
		background-repeat: no-repeat;
		background-position: 2.7% 100%;
	}
}
.accordion-list:nth-child(2) summary {
	background-image: url("img/accod_no01.png");
}
.accordion-list:nth-child(3) summary {
	background-image: url("img/accod_no02.png");
}
.accordion-list:nth-child(4) summary {
	background-image: url("img/accod_no03.png");
}
.accordion-list:nth-child(5) summary {
	background-image: url("img/accod_no04.png");
}
.accordion-list:nth-child(6) summary {
	background-image: url("img/accod_no05.png");
}
.accordion-list:nth-child(7) summary {
	background-image: url("img/accod_no06.png");
}

.accordion-list summary::-webkit-details-marker {
    display: none;
}
.accordion-list summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}
.accordion-list[open] summary::after {
    transform: rotate(225deg);
}
.accordion-list .detail_p {
	font-size: 0.9rem;
	font-weight: normal;
	margin: 0 0 0 auto;
	@media screen and (max-width: 450px) {
		font-size: 0.7rem;
		line-height: 1.2em;
	}
}
.accordion-list[open] .detail_p {
	display: none;
}
.accordion-list .open_detail {
	transform: translateY(-10px);
	opacity: 0;
	padding: 30px 40px 30px 94px;
	color: #333333;
	transition: transform .5s, opacity .5s;
	@media screen and (max-width: 450px) {
		padding: 30px 20px 30px 20px;
	}
}
.accordion-list[open] .open_detail {
    transform: none;
	opacity: 1;
	font-size: 0.95rem;
	line-height:1.5rem;
	text-align: left;
	margin-bottom: 10px;
}
.opne_title {
	margin-bottom: 30px;
}
table.tb1 {
	width: 100%;
	border: 1px solid #CCC;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
table.tb1 td {
	border-right: 1px solid #ededed;
	padding: 10px 6px;
	font-size:0.9rem;
	text-align: center;
	vertical-align: middle;
}
table.tb1 td:last-child {
	border-right: none;
}
table.tb1 tr {
	border-bottom: 1px solid #ededed;
}
table.tb1 tr:last-child {
	border-bottom: none;
}
.pass_flex {
	display: flex;
	justify-content: center ;
	align-items: center;
}
.pass_flex img {
	width: 100%;
}
.point_comment_box {
	border-radius: 10px;
	border: 2px solid #ffcc66;
	padding: 16px 20px;
	margin: 50px 0 0;
	box-sizing: border-box;
	@media screen and (max-width: 450px) {
		padding: 12px 12px;
		margin: 30px 0 0;
	}
}
.point_comment_box ul.chek_mark li {
	padding: 0 0 10px 26px;
	font-size: 0.90rem;
	line-height: 1.6em; 
	background: url(img/check_ico_org.png) left 0px top 3px no-repeat;
	background-size: 18px auto;
}
.point_comment_box ul.chek_mark ul {
	list-style-type: disc; /* 黒点 */
}
.point_comment_box ul.chek_mark ul li {
	padding: 0 0 6px 0;
	margin-left: 14px;
	background: none;
	background-size: 0;
}
.open_img_single {
	width: 400px;
	margin: 0 auto;
	box-sizing: border-box;
	@media screen and (max-width: 450px) {
		width: 100%;
	}
}
.open_img_single img {
	width: 100%;
	margin-bottom: 10px;
	padding: 5px;
    border: 1px solid #ccc;
}
.open_img_double {
	width: 850px;
	margin: 0 auto;
	box-sizing: border-box;
	@media screen and (max-width: 900px) {
		width: 100%;
	}
}
.open_img_double img {
	width: 100%;
	margin-bottom: 10px;
}
.triangle_bottom {
	background: #0078bf;
	height: calc(tan(70deg) * 20px / 2);
	width: 30px;
	margin: 10px auto;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.screen_flow {
	margin: 0 auto;
	text-align: center;
}
/* ボタン */
.air_reserve-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important ;
	color: #fff !important ;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 24px;
	margin: 40px auto 10px;
	border: 4px solid #fff;
	border-radius: 10px;
	background: #ff9900 url(img/contbar_ico01.png) no-repeat 20px center / 40px auto;
    padding: 15px 15px 15px 60px;
	width: 400px;
	height: 80px;
	box-sizing: border-box;
	transition: 0.3s;
	box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow:hidden;
	
	@media screen and (max-width: 450px) {
		font-size: 20px;
		width: 320px;
		background: #ff9900 url(img/contbar_ico01.png) no-repeat 10px center / 40px auto;
		padding: 15px 15px 15px 50px;
	}
}
.air_reserve-btn::before,
.hotel_reserve-btn::before,
.contact-btn::before {
	content: "";
	position: absolute;	
	background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.6));
	width: 50px;	/* 横幅 */
	height: 50px;	/* 縦幅 */
	top: -60px;	/* ボタン左上を基準に上へ60pxの位置 */
	left: -60px;	/* ボタン左上を基準に左へ60pxの位置 */
	animation-name:shine-run;	/* アニメーション名の指定 */
	animation-delay:0s;		/* アニメーションの開始時間指定 */
	animation-duration: 3s;	/* アニメーション動作時間の指定 */
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
}
/* ------------------------------------
アニメーションのタイミングとボックスの
拡大率、角度、透過率の指定
------------------------------------*/
@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);
        /* アニメ開始時は大きさ0、50度の傾き */
        opacity: 0;
        /* アニメ開始時は全透過 */
    }
    40% {
        transform: scale(1) rotate(50deg);
        /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
        opacity: 1;
        /* 透過しない（しっかり表示される）ように1を設定 */
    }
    100% {
        transform: scale(250) rotate(50deg);
        /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
        opacity: 0;
        /* 全透過になるようにして、徐々に消えるような変化を付ける */
    }
}


.air_reserve-btn:hover {
	transform: translateY(-5%);
	opacity: .7;
}



/* ホテル予約
----------------------------------*/
.grid-container01 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 10px;
}
.grid-container02 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 5px 10px;
	padding-top:14px;
}
.grid-container03 {
	display: grid;
	grid-template-columns: 61% 39%;
	grid-template-rows: auto;
	gap: 10px;
	padding-top:14px;
}
.grid-container01 img,
.grid-container02 img,
.grid-container03 img {
	width: 100%
}
.orange_border {
  border-bottom: solid #ff9900 1px;
  max-width: 1000px;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
.hotel_cate {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size:1.2rem;
	font-weight:800;
	margin-bottom: 10px;
	@media screen and (max-width: 450px) {
		font-size:1.1rem;
	}
}
/* ボタン */
.hotel_reserve-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important ;
	color: #fff !important ;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 24px;
	margin: 40px auto 10px;
	border: 4px solid #fff;
	border-radius: 10px;
	background: #ff9900 url(img/contbar_ico02.png) no-repeat 20px center / 40px auto;
    padding: 15px 15px 15px 60px;
	width: 400px;
	height: 80px;
	box-sizing: border-box;
	transition: 0.3s;
	box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow:hidden;
	
	@media screen and (max-width: 450px) {
		font-size: 20px;
		width: 320px;
		background: #ff9900 url(img/contbar_ico02.png) no-repeat 10px center / 40px auto;
		padding: 15px 15px 15px 50px;
	}
}
.hotel_reserve-btn:hover {
	transform: translateY(-5%);
	opacity: .7;
}



/*保険
----------------------------------*/
.hoken_ti {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size:1.1rem;
	font-weight:800;
	color:  #ff9900;
	margin-bottom: 10px;
	margin-top: 20px;
}
.hoken_detail {
	border-left: 3px solid #ff9900;
	padding: 2px 16px; 
	margin: 0 0 30px 10px;
}
.hoken_detail ul {
	list-style-type: disc; 
}
.hoken_detail ul li {
	padding: 0 0 4px 0;
	margin-left: 24px;
	background: none;
	font-size: 0.9rem;
	line-height: 150%;
}
.hoken_detail .smoll {
	margin-left: 24px;
	font-size: 0.8rem;
}
.point_comment_box .smoll {
	font-size: 0.8rem;
	line-height:1.2rem;
}
#hoken_area .point_comment_box {
	margin: 10px 0 0;
}
#hoken_area .flex_box {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	@media screen and (max-width: 450px) {
		display: block;
	}
}
#hoken_area .flex_box .left {
	width: 40%;
	text-align: center;
	padding: 0 20px;
	@media screen and (max-width: 450px) {
		width: 100%;
		padding: 0 15px;
	}
}
#hoken_area .flex_box .right {
	width: 60%;
	@media screen and (max-width: 450px) {
		width: 100%;
	}
}
#hoken_area .midashi {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	color: #fff;
	border: 2px solid #ff9900;
	border-radius: 30px;
	background: #ff9900;
	margin: 12px 6px;
}
#hoken_area .bigfont {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 3rem;
	color: #ff9900;
}
#hoken_area .bigfont2 {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 2.7rem;
	color: #ff9900;
}
#hoken_area .midfont {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 2rem;
	color: #ff9900;
	line-height: 1.8em;
	@media screen and (max-width: 450px) {
		font-size: 1.9rem;
	}
}
#hoken_area .midfont2 {
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 1.8rem;
	color: #ff9900;
	line-height: 1.8em;
	@media screen and (max-width: 450px) {
		font-size: 1.7rem;
	}
}
/* ボタン */
.contact-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important ;
	color: #fff !important ;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-weight: 800;
	font-size: 24px;
	margin: 40px auto 10px;
	border: 4px solid #fff;
	border-radius: 10px;
	background: #ff9900 url(img/contbar_ico03.png) no-repeat 20px center / 40px auto;
    padding: 15px 15px 15px 60px;
	width: 400px;
	height: 80px;
	box-sizing: border-box;
	transition: 0.3s;
	box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow:hidden;
	
	@media screen and (max-width: 450px) {
		font-size: 20px;
		width: 320px;
		background: #ff9900 url(img/contbar_ico03.png) no-repeat 10px center / 40px auto;
		padding: 15px 15px 15px 50px;
	}
}
.contact-btn:hover {
	transform: translateY(-5%);
	opacity: .7;
}



/* フィリピン入国
----------------------------------*/
#nyukoku_area .orange_border {
	margin: 0 auto 20px;
}
#nyukoku_area .screen_flow .flow_t {
	max-width:600px;
	margin: 0 auto 15px;
	text-align: left;
	font-weight: bold;
}
#nyukoku_area .screen_flow .screen_coment {
	max-width:600px;
	margin: 0 auto;
	text-align: left;
}
#nyukoku_area .tochaku_flex {
	display: flex;
	align-items: flex-start;
	text-align: left;
	margin-bottom: 30px;
	@media screen and (max-width: 450px) {
		display: block;
	}
}
#nyukoku_area .tochaku_flex .hoken_ti {
	margin-top: 0;
}
#nyukoku_area .tochaku_flex .left {
	width: 200px;
	padding-right: 20px;
	@media screen and (max-width: 450px) {
		margin:  0 auto;
		padding: 0;
		text-align: center;
	}
}
#nyukoku_area .tochaku_flex .right {
	width: 100%;
}
#nyukoku_area .tochaku_flex .left img {
	width: 100%;
}
#nyukoku_area .tochaku_flex .triangle_bottom {
	margin: 10px auto 10px 80px;
	@media screen and (max-width: 450px) {
		margin: 10px auto;
	}
}


	
/* 問い合わせ
----------------------------------*/
.w_area {
	margin: 0 auto;
	max-width: 1000px;
	background-color: #fff;
	border-radius: 10px;
	margin-top: 30px;
	padding: 30px 30px 10px;
}
.w_area .sub_ti {
	background: #d1e5fa;
	border: solid 3px #d1e5fa;
	padding: 0.6em 1em;
	margin: 0 0 30px;
	text-align: center;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 20px;
	color: #004ea1;
	font-weight: bold;
	line-height: 1.4em;
}
.w_area .tokuten {
	text-align: center;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 20px;
	color: #ff6600;
	font-weight: bold;
	line-height: 1.6em;
}
.w_area .tokuten .big_t {
	font-size: 30px;
}
.w_area .atention {
	padding: 0.6em 0;
	margin: 0 0 20px;
	text-align: center;
	font-size: 14px;
	line-height: 1.4em;
}
.w_area .main_tx {
	text-align: left;
	line-height: 1.6em;
	padding: 0 0 40px;
}
.w_area .store_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.w_area .c_list {
	width: 48.5%;
	position: relative;
	justify-content: center;
	align-items: center;
	background: #004ea1;
	border: 1px solid #004ea1;
	border-radius: 10px 10px 0 0;
	box-sizing: border-box;
	padding: 10px 1px 1px 1px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
}
.w_area .store_area img {
	width: 100%;
	margin-top: 10px;
}
.w_area .pack_cal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.w_area .cal_left {
	width: 18%;
	position: relative;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	text-decoration: none;
}
.w_area .cal_right {
	width: 80%;
	position: relative;
	box-sizing: border-box;
	text-decoration: none;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	padding-top: 10px;
}
.w_area .cal_right2 {
	width: 80%;
	position: relative;
	box-sizing: border-box;
	text-decoration: none;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	padding: 30px 30px 0 0;
}
.w_area .tel_ti {
	width:90%;
	justify-content: center;
	align-items: center;
	background: #004ea1;
	border: 1px solid #004ea1;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 16px 34px;
}
.w_area .step_ti {
	width:90%;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 0 34px;
}
.w_area .cal_right .smoll {
	font-size: 14px;
	font-weight: normal;
}
.gray_line {
	background-color: #cccccc;
	height: 1px;
	margin: 12px 0;
}
.w_area .cal_right2 .main_tx {
	text-align: left;
	line-height: 1.6em;
	padding: 0 0 30px;
	font-size: 15px;
	font-weight: normal;
}
.toiawase_area {
	background-color: #eee;
	text-align: center;
	padding: 30px 10px 60px;
}
h3.sche_head {
    display: flex;
    justify-content: center;
	align-items: center;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ";
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 800;
	color: #333333;
	padding: 30px 0 0;
	@media screen and (max-width: 450px) {
		width: 90%;
		font-size: 1.3em;
		margin: 0 auto;
		padding: 20px 0 0;
	}
}
h3.sche_head::before,
h3.sche_head::after {
    width: 3px;
    height: 40px;
    background-color: #333333;
    content: '';
}
h3.sche_head::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}
h3.sche_head::after {
    transform: rotate(35deg);
    margin-left: 30px;
}



.toiawase_cal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.toiawase_cal .cal_left {
	width: 20%;
	position: relative;
	box-sizing: border-box;
	text-decoration: none;
	text-align: left;
	padding: 0;
}
.toiawase_cal .cal_left img {
	width:100%;
}
.toiawase_cal .cal_right {
	width: 77%;
	position: relative;
	box-sizing: border-box;
	text-decoration: none;
	text-align: left;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.5;
	padding: 0;
}
.toiawase_cal .b_tx {
	width:100%;
}
.toiawase_cal .tel_box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 20px 0;
}
.tel_box .tel_left {
	 display: inline-block;
	position: relative;
	background-color: #eee;
	font-weight: bold;
	padding: 16px;
	margin: 10px 0 0;
}
.tel_box .tel_right {
	position: relative;
	font-weight: bold;
	font-size: 18px;
	padding: 0 0 0 16px;
	margin: 10px 0 0;
}
.tel_box .right_tx {
	font-size: 15px;
}

@media(max-width:991px) {
.main-visual > .container > div {
	width: 100%;
}
.main-visual .txt {
	padding-bottom: 15px;
}
.his_ti {
	font-size: 20px;
	font-weight: bold;
	padding: 0 0 10px;
}
.plan_catch td {
  font-size: 15px;
}
.brand_line {
	font-size: 24px;
}
}

@media(max-width:750px) {
.main-visual {
	height:auto;
	background:url(img/main_bg.jpg) no-repeat center;
	background-size:cover;
}
.main-visual-wrap {
	padding-top: 0;
}
.main-visual > .container {
	align-items: center;
	-ms-flex-align: center;
	flex-direction: column;
	-ms-flex-direction: column;
	padding-top: 0;
}
.w_area {
	padding: 30px 18px 10px;
}
.w_area .sub_ti {
	padding: 0.5em 0.5em;
	font-size: 18px;
}
.w_area .tokuten {
	font-size: 18px;
}
.w_area .atention {
	padding: 0.6em 0;
	margin: 0 0 20px;
	text-align: center;
	font-size: 13px;
	line-height: 1.4em;
}
.w_area .store_area {
	display: block;
}
.w_area .c_list {
	width: 100%;
	padding: 8px 1px 1px 1px;
	font-size: 18px;
	margin-bottom: 12px;
}
.w_area .pack_cal {
	display: block;
}
.w_area .cal_left {
	width: 100%;
}
.w_area .cal_right {
	width: 100%;
	font-size: 18px;
}
.w_area .cal_right2 {
	width: 100%;
	position: relative;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	padding: 20px 16px 0;
	text-align: center;
}
.w_area .tel_ti {
	width:46%;
}
.w_area .step_ti {
	width:44%;
}
.toiawase_cal .tel_box {
	display: block;
	flex-wrap: wrap;
	margin: 0 0 20px 0;
}
.tel_box .tel_left {
	width: 100%;
	padding: 10px;
	font-size: 15px;
	margin: 10px 0 0;
}
.tel_box .tel_right {
	width: 100%;
	font-weight: bold;
	font-size: 18px;
	padding: 0;
	margin: 10px 0 0;
}
.right_tx {
	font-size: 15px;
}
.brand_line {
	font-size: 20px;
}
.brand_line:after {
	left: 25%;
	width: 50%;
}
}
