@charset "UTF-8";

/* CSS Document */
/* font 
---------------------------------*/
/*
font_select{
font-family: proxima-nova, 'Noto Sans JP',sans-serif;
font-family: "Kozuka Gothic Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
}
*/
/* Clearfix
---------------------------------*/
.clearfix {
  min-height: 1px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clear {
  clear: both;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
  zoom: 1;
}

/* IE7 */

.appear {
  transform-origin: center top;
  animation: show 1s both;
}

span.appear {
  display: block;
}

.d1 {
  animation-delay: 1.0s;
}

.d2 {
  animation-delay: 1.8s;
}

.d3 {
  animation-delay: 2.6s;
}

.d4 {
  animation-delay: 3.9s;
}

.d6 {
  animation-delay: 6s;
}

.d8 {
  animation-delay: 8s;
}

.d10 {
  animation-delay: 10s;
}

.d12 {
  animation-delay: 12s;
}

@keyframes show {
  0% {
    transform: translate(0, 60px);
    opacity: 0;
    text-shadow: 0 0 0 #000;
  }

  50% {
    text-shadow: 0 0 0.5em #000;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
    text-shadow: none;
  }
}

/* インアウトエフェクト */
.fadein {
  animation: fadeIn 4s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.animation {}

.fadeInUp {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    -ms-transform: translateX(-500px);
    transform: translateX(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(500px);
    -ms-transform: translateX(500px);
    transform: translateX(500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/*----------モーダル-----------*/
.modal_box .modal_content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    opacity: 0;
    /* animation: fadeout 0.8s; */
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.modal_box.show .modal_content:before {
 width: 100%;
 height: 100%;
 content: "";
 position: fixed;
 background-color: #000;
 opacity: 0.5;
 z-index: 999;
}
.modal_box.show .modal_content {
 display: block;
 animation: fadein 0.8s;
 opacity: 1;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal_box .modal_content .modal_disp {
    position: relative;
    z-index: 1000;
    /* background-color: #fff; */
    margin: 0 auto;
    width: 640px;
    margin-top: 50px;
    padding-bottom: 25px;
    border-radius: 7px;
    overflow: hidden;
}
.modal_box.show .modal_content .modal_disp{
  /* animation: SlideIn 0.6s; */
  background: none;
}
@keyframes SlideIn {
  0% {
    opacity: 1;
    transform: translateY(-70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal_box .modal_content .modal_disp .close {margin: 0;position: absolute;right: 15px;color: #fff;font-size: 55px;top: 5px;line-height: 1.5;width: 60px;text-align: center;cursor: pointer;transition: 0.5s;}
.modal_box .modal_content .modal_disp .close:hover {
	opacity:0.7;
}
.modal_box .modal_content .modal_disp table {
	margin:0 auto;
	width:90%;
	border-spacing: 0px;
	border: 1px solid #999;
	margin-bottom: 15px;
}
.modal_box .modal_content .modal_disp table tbody {
}
.modal_box .modal_content .modal_disp table tr {
}
.modal_box .modal_content .modal_disp table td {border-right: 1px solid #999;border-bottom: 1px solid #999;padding: 5px 15px;font-size: 13px;line-height: 1.5;}
.modal_box .modal_content .modal_disp table td:last-child {
	border-right:none;
}
.modal_box .modal_content .modal_disp table tr.end td {
	border-bottom:none;
}
.modal_box .modal_content .modal_disp .check {margin: 0 auto;width: 85%;font-size: 14px;line-height: 1.5;color: #2eb8bd;font-weight: bold;position: relative;padding-left: 22px;margin-bottom: 3px;}
.modal_box .modal_content .modal_disp .check:before {
	content:"";
	position:absolute;
	width: 22px;
	height: 22px;
	left: 0;
	top: -1px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	background-image: url(../img/item/icon_datalimit.png);
}a
.modal_box .modal_content .modal_disp .btn_common{margin: 0 auto;width: 90%;max-width: 400px;margin-top: 20px;}

.modal_box .modal_content .modal_disp .overflow{
	
}
.modal_box .modal_content .modal_disp .overflow .ss_box{
	margin-bottom: 25px;
}
.modal_box .modal_content .modal_disp .overflow .ss_box .s_name{
	
}
.modal_box .modal_content .modal_disp .overflow .ss_box .s_name{
	margin: 0 auto;
	width: 90%;
	font-size: 14px;
	line-height: 1.5;
	font-weight: bold;
	color: #444444;
	margin-bottom: 2px;
}

.modal_box .modal_content .modal_box .modal_content .modal_disp .modal_price_box {
}
.modal_box .modal_content .modal_disp .modal_price_box .price_name {margin: 0 auto;width: 90%;font-size: 17px;line-height: 1.5;font-weight: bold;margin-bottom: 7px;}
.modal_box .modal_content .modal_disp .modal_price_box .flex_wrap {display: flex;flex-wrap: wrap;margin: 0 auto;width: 90%;}
.modal_box .modal_content .modal_disp .modal_price_box .flex_wrap .s_wrap {width: 48%;}
.modal_box .modal_content .modal_disp .modal_price_box .flex_wrap .s_wrap td {padding: 7px;font-size: 14px;line-height: 1.5;color: #515151;}

/*----------/モーダル-----------*/


html {
  margin: 0;
  background-color: #f9f9f9;
}
body {
	margin: 0;
	font-family: 'Noto Sans JP',sans-serif;
	min-width: 1080px;
	background-color: #fff;
}
body.noscroll {
	overflow:hidden !important;
	touch-action: none;
}
img{
width: 100%;
height: auto;
}


.header {width: 100%;position: absolute;z-index: 3;/* height: 90px; */top: 0;margin-top: 45px;}
.header .pc_menu {height: 90px;overflow: hidden;top: -60px;background-color: #172f469e;}
.header .pc_menu.fixed {
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 1;
  margin: 0 auto;
  background-color: #009fb9c9;
  width: 100%;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  }
.header .pc_menu .inner {position: relative;}
.header .pc_menu .inner .logo {width: 300px;position: absolute;margin: 0;left: 40px;top: 27px;}
.header .pc_menu.fixed .inner .logo {
  width: 200px;
  top: 19px;
	transition:0.5s;
}
.header .pc_menu.fixed .inner .logo:hover {
	opacity:0.7;
}

.header .sp_menu .openbtn1.fixed {height: 50px;top: 5px;position: fixed;}
.openbtn1.fixed span:nth-of-type(1) {
    top: 10px;
}
.openbtn1.fixed span:nth-of-type(2) {
    top: 23px;
}
.openbtn1.fixed span:nth-of-type(3) {
    top: 36px;
}

.header .sp_menu {
 /* display: none; */
 touch-action: inherit;
}
.header .sp_menu .sp_logo {
display: none;
}
.header .sp_menu .openbtn1 {
}

.header .sp_menu #g-nav {
}
.header .sp_menu #g-nav #g-nav-list {
}
.header .sp_menu #g-nav #g-nav-list .logo {width: 250px;padding-left: 5%;padding-top: 40px;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap {margin: 0 auto;width: 90%;max-width: 1080px;display: flex;flex-wrap: wrap;margin-top: 5%;padding-bottom: 120px;justify-content: center;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .copy {width: calc(100% - 603px);max-width: 320px;margin: 0;margin-top: 50px;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right {width: 500px;padding-left: 100px;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .gate {margin: 0;width: 130px;margin-bottom: 40px;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu {line-height: 1.5;letter-spacing: 2px;margin: 0;margin-top: 50px;position: relative;padding-left: 60px;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu:before {
	content:"";
	position:absolute;
	left:0;
	width: 33px;
	height: 2px;
	top: 24px;
	background-color:#fff;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu a{text-decoration: none;color: #fff;font-weight: 500;transition: 0.5s;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu a:hover{
	opacity:0.7;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu .sub {margin: 0;font-size: 13px;line-height: 1.5;font-weight: 400;}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu .name {margin: 0;font-size: 24px;line-height: 1.5;}

.header .sp_menu #g-nav #g-nav-list .bottoms {margin: 0 auto;width: 90%;max-width: 1080px;display: flex;justify-content: center;border-top: 1px solid #fff;padding-top: 40px;}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu {margin: 0;}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu a {color: #fff;font-size: 16px;line-height: 1.5;letter-spacing: 2px;text-decoration: none;padding: 5px 40px;border-right: 1px solid #fff;transition: 0.5s;position: relative;}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu a:before {
	content:"";
	position:absolute;
	width: 0%;
	height:2px;
	background-color:#fff;
	bottom: -8px;
	margin: auto;
	left: 0;
	right: 0;
	transition:0.4s;
}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu:last-child a {
	border-right:none;
}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu a:hover:before {
	width:80%;
}

.header .language_box {position: absolute;right: 143px;top: 27px;border: 1px solid #fff;border-radius: 5px;overflow: hidden;}
.header .language_box .main_ac_btn {
}
.header .language_box .main_ac_btn .select_language {color: #fff;padding: 5px 20px;padding-bottom: 8px;font-size: 13px;line-height: 1.5;border-radius: 5px;margin: 0;cursor: pointer;}
.header .language_box .sub_ac_box {margin: 0;padding: 0;text-align: center;border-top: 1px dotted #fff;padding-top: 13px;background-color: #00a0b8bd;padding-bottom: 10px;}
.header .language_box .sub_ac_box .lang_list {}
.header .language_box .sub_ac_box .lang_list .change {margin: 0;margin-bottom: 7px;}
.header .language_box .sub_ac_box .lang_list .change a{
	color:#fff;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.5;
	display: block;
	position: relative;
	transition:0.5s;
}
.header .language_box .sub_ac_box .lang_list .change a:hover{
	opacity:0.7;
}
.header .language_box .sub_ac_box .lang_list .change a:before{
	content:"";
	position:absolute;
	width:12px;
	height:12px;
	/* background-color:#ccc; */
	right: 5px;
	top: 4px;
	background-image: url(../img/common/navi_lang.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 4px;
}

h1,h2,h3{
	font-weight:normal;
}

.home {
}
.home .btn_contact {
    width: 139px;
    margin: 0;
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 15px;
}
.home .btn_contact a {
	transition:0.5s;
}
.home .btn_contact a:hover {
	opacity:0.8;
}
.home .fv_sec {background-position: center;background-repeat: no-repeat;background-size: cover;/* background-image: url(../img/main_image001.jpg); *//* padding-top: 120px; *//* padding-bottom: 115px; */position: relative;margin-top: 0px;}
.home .fv_sec #opening{/* padding-top: 120px; *//* padding-bottom: 115px; */height: 100vh;min-height: 487px;}
.home .fv_sec #opening_sp{display:none;}
.home .zs-enabled .zs-slideshow .zs-bullets {
    display:none;
}
.home .fv_sec .wrap {margin: 0 auto;width: 90%;text-align: left;position: absolute;left: 0;right: 0;bottom: 10%;z-index: 1;}
.home .fv_sec .wrap .main_title {margin: 0;display: inline-block;width: 42%;/* padding-top: 30%; */}
.home .fv_sec .wrap .sub_copy{margin: 0;width: 60%;}

.home .fv_sec .wrap .news {max-width: 784px;width: 65%;margin-top: 50px;}
.home .fv_sec .wrap .news .flex_wrap {display: flex;flex-wrap: wrap;color: #fff;text-decoration: none;font-size: 13px;line-height: 1.5;letter-spacing: 1.8px;border: 1px solid #fff;border-radius: 30px;padding: 10px 25px;padding-right: 52px;position: relative;transition: 0.5s;}
.home .fv_sec .wrap .news .flex_wrap:hover {
	opacity:0.7
}
.home .fv_sec .wrap .news .flex_wrap:before {
	content:"";
	position:absolute;
	right: 13px;
	width:30px;
	height:30px;
	/* background-color:#ccc; */
	margin: auto;
	top: 0;
	bottom: 0;
	background-image: url(../img/common/navi_link_wh.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 17px;
}
.home .fv_sec .wrap .news .flex_wrap .date {margin: 0;width: 92px;border-right: 1px solid #fff;margin-right: 13px;}
.home .fv_sec .wrap .news .flex_wrap .comment {margin: 0;}
.home .journey_sec {padding-top: 90px;padding-bottom: 120px;background-image: url(../img/home/journy_back.jpg);background-position: center top;background-size: cover;}
.home .journey_sec .lead_box {
}
.home .journey_sec .lead_box .logo {margin: 0 auto;width: 65px;}
.home .journey_sec .lead_box .lead {margin: 0 auto;text-align: center;color: #fff;letter-spacing: 2px;line-height: 2;margin-top: 40px;}
.home .journey_sec .journey_wrap {margin: 0 auto;width: 75%;max-width: 1180px;position: relative;color: #fff;text-align: center;padding: 5%;padding-top: 90px;padding-bottom: 90px;margin-top: 90px;}
.home .journey_sec .journey_wrap:before {
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	background-color:#000;
	z-index: 0;
	left: 0;
	opacity: 0.7;
	border-radius: 20px;
}
.home .journey_sec .journey_wrap .wrap_name {position: relative;margin: 0;font-size: 24px;letter-spacing: 2px;font-weight: 500;line-height: 1.5;margin-bottom: 20px;}
.home .journey_sec .journey_wrap .journey {position: relative;margin: 0 auto;width: 80%;max-width: 500px;}
.home .journey_sec .journey_wrap .btn_area {position: relative;margin: 0 auto;max-width: 1080px;margin-top: 90px;}
.home .journey_sec .journey_wrap .btn_area .s_btn {text-align: left;}
.home .journey_sec .journey_wrap .btn_area .s_btn:hover {
}
.home .journey_sec .journey_wrap .btn_area .s_btn a {text-decoration: none;display: block;border: 1px solid #fff;padding: 40px;position: relative;padding-top: 80px;padding-bottom: 56px;padding-left: 70px;transition: 0.7s;background-size: 0;border-bottom: none;}
.home .journey_sec .journey_wrap .btn_area .s_btn:last-child a {
	border-bottom:1px solid #fff;
}
.home .journey_sec .journey_wrap .btn_area .s_btn a:before {
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	opacity:0;
}
.home .journey_sec .journey_wrap .btn_area .s_btn.journey01 a:hover:before {
	background-image: url(../img/home/journey_01_hover.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity:1;
	transition: 0.7s;
}
.home .journey_sec .journey_wrap .btn_area .s_btn.journey02 a:hover:before {
	background-image: url(../img/home/journey_02_hover.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity:1;
	transition: 0.9s;
}
.home .journey_sec .journey_wrap .btn_area .s_btn.journey03 a:hover:before {
	background-image: url(../img/home/journey_03_hover.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity:1;
	transition: 0.9s;
}
.home .journey_sec .journey_wrap .btn_area .s_btn  .name {font-size: 22px;text-decoration: none;color: #fff;margin: 0;position: relative;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .j_name {margin: 0;font-size: 38px;color: #fff;line-height: 1.5;font-weight: 600;display: inline-flex;position: relative;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .j_name span {width: 200px;padding-right: 11px;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .btn_view {position: absolute;right: 40px;color: #fff;width: 62px;height: 64px;margin: auto;top: 0;bottom: 0;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .btn_view .view {margin: 0;font-size: 13px;line-height: 1.5;letter-spacing: 2px;text-align: center;position: relative;padding-top: 68px;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .btn_view .view:before {
	content:"";
	position:absolute;
	width:62px;
	height:62px;
	/* background-color:#ccc; */
	top: 0px;
	margin: auto;
	left: 0;
	right: 0;
	background-image: url(../img/common/navi_btn.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60px;
}
.home .journey_sec .journey_wrap .btn_area .s_btn  .sub_name {font-size: 13px;line-height: 1.5;color: #fff;margin: 0;position: relative;}
.home .movie_sec {padding-top: 80px;padding-bottom: 80px;background-image: url(../img/home/movie_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}
.home .movie_sec .wrap {margin: 0 auto;width: 90%;max-width: 980px;position: relative;}
.home .movie_sec .wrap .s_name {margin: 0;color: #b2b2b2;letter-spacing: 2px;font-size: 15px;line-height: 1.5;transform: rotate(90deg);width: 205px;position: absolute;left: -131px;top: 91px;}
.home .movie_sec .wrap .movie {position: relative;}
.home .movie_sec .wrap .movie .thumb {margin: 0;}
.home .movie_sec .wrap .movie .play_movie {margin: auto;width: 155px;height: 155px;position: absolute;top: 0;bottom: 0;left: 0;right: 0;transition: 0.7s;cursor: pointer;}
.home .movie_sec .wrap .movie .play_movie:hover {
	opacity:0.7;
}
.home .ebook_sec {
  background-image: url(../img/home/movie_back.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 90px;
  padding-top: 90px;
}
.home .ebook_sec .wrap{
	margin:0 auto;
	width:90%;
}
.home .ebook_sec .wrap_title_box{margin-bottom: 25px;}
.home .ebook_sec .wrap .tool_box{
	position:relative;
	margin: 0 auto;
	/* max-width: 1100px; */
	width: 100%;
	z-index: 999;
	display: none;
}
.home .ebook_sec .wrap_title_box .wrap_name{margin: 0;color: #c2c2c2;font-size: 35px;line-height: 1.5;letter-spacing: 3px;}
.home .ebook_sec .wrap_title_box .sub_name{
	margin:0;
	color: #c2c2c2;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 1px;
	padding-left: 3px;
}
.home .ebook_sec #canvas{position: relative;padding-bottom: 70px;}
.home .ebook_sec .magazine-viewport .shadow {
    -webkit-transition: -webkit-box-shadow 0.5s;
    -moz-transition: -moz-box-shadow 0.5s;
    -o-transition: -webkit-box-shadow 0.5s;
    -ms-transition: -ms-box-shadow 0.5s;
    -webkit-box-shadow: 0 0 20px #000;
    -moz-box-shadow: 0 0 20px #000;
    -o-box-shadow: 0 0 20px #000;
    -ms-box-shadow: 0 0 20px #000;
    box-shadow: 0 0 20px #000;
}
.home .ebook_sec .magazine-viewport {
    /* padding-bottom: 90px; */
    position: relative;
    /* height: 840px !important; */
    width: auto !important;
    max-height: 800px;
}
.home .ebook_sec .magazine-viewport .bottom {
    bottom: 10px;
}
.home .ebook_sec .navi_area{
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 15px;
}
.home .ebook_sec .next-button.btn_next {
    /* background-color: #ccc; */
    width: 50px !important;
    height: 28px !important;
    margin: 10px;
    /* background-image: url(../magazine/pics/navi_next.png); */
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 49px;
    cursor: pointer;
    transition: 0.5s;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    border: 1px solid #fff;
    padding: 7px 20px;
    position: relative;
    padding-right: 40px;
}
.home .ebook_sec .next-button.btn_next:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    /* background-color: #ccc; */
    right: 9px;
    margin: auto;
    top: 0;
    bottom: 0;
    background-image: url(../magazine/pics/navi_right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}
.home .ebook_sec .previous-button.btn_previous {
    /* background-color: #607D8B; */
    width: 50px !important;
    height: 28px !important;
    margin: 10px;
    /* background-image: url(../magazine/pics/navi_return.png); */
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 49px;
    cursor: pointer;
    transition: 0.5s;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    border: 1px solid #fff;
    padding: 7px 20px;
    padding-left: 40px;
    position: relative;
}
.home .ebook_sec .previous-button.btn_previous:before {
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	/* background-color:#ccc; */
	left: 9px;
	margin: auto;
	top: 0;
	bottom: 0;
	background-image: url(../magazine/pics/navi_left.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px;
}
.home .ebook_sec .next-button.btn_next:hover {
	opacity:0.7;
}
.home .ebook_sec .previous-button.btn_previous:hover {
	opacity:0.7;
}
.home .ebook_sec .zoom-icon {
    position: absolute;
    z-index: 2;
    width: 45px;
    height: 45px;
    top: 37px;
    /* background-color: #fff4f4; */
    right: 212px;
    background-image: url(../magazine/pics/icon_zoom.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 42px;
}
.home .ebook_sec .zoom-icon.zoom-icon-out {top: 10px;right: 7px;}
.home .news_sec {
}
.home .news_sec .wrap {display: flex;flex-wrap: wrap;}
.home .news_sec .wrap .left {background-image: url(../img/home/news_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;width: 30%;text-align: center;padding-top: 120px;padding-bottom: 120px;}
.home .news_sec .wrap .left .wrap_name {margin: 0;color: #c2c2c2;font-size: 40px;line-height: 1.5;letter-spacing: 3px;}
.home .news_sec .wrap .left .view_all {margin: 0;margin-top: 30px;}
.home .news_sec .wrap .left .view_all a{color: #c2c2c2;text-decoration: none;border: 1px solid;padding: 14px 60px;font-size: 14px;line-height: 1.5;letter-spacing: 2px;border-radius: 30px;position: relative;transition: 0.5s;}
.home .news_sec .wrap .left .view_all a:before{
	content:"";
	position:absolute;
	width:40px;
	height:40px;
	/* background-color:#ccc; */
	right: 8px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../img/common/navi_link_gr.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 15px;
}
.home .news_sec .wrap .left .view_all a:hover{
	color:#00A0B8;
}
.home .news_sec .wrap .right {width: 70%;background-color: #1e1e1e;padding-top: 120px;padding-bottom: 120px;}
.home .news_sec .wrap .right .news_box {margin: 0 auto;width: 85%;}
.home .news_sec .wrap .right .news_box .s_news {
}
.home .news_sec .wrap .right .news_box .s_news a {
	color: #c2c2c2;
	text-decoration: none;
	padding-bottom: 30px;
	display: block;
	padding-top: 30px;
	position: relative;
	padding-right: 80px;
	transition: 0.5s;
	border-bottom: 1px solid;
}
.home .news_sec .wrap .right .news_box .s_news a:hover {
	color:#00A0B8;
	border-bottom:1px solid #fff;
}
.home .news_sec .wrap .right .news_box .s_news a:before {
	content:"";
	position:absolute;
	width:60px;
	height:60px;
	/* background-color:#ccc; */
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../img/common/navi_link_gr.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 25px;
}
.home .news_sec .wrap .right .news_box .s_news  .flex_wrap {display: flex;flex-wrap: wrap;}
.home .news_sec .wrap .right .news_box .s_news  .flex_wrap .date {margin: 0;font-size: 13px;line-height: 1.5;letter-spacing: 1.5px;width: 110px;border-right: 1px solid;padding-top: 2px;}
.home .news_sec .wrap .right .news_box .s_news  .flex_wrap .comment {margin: 0;font-size: 14px;line-height: 1.7;width: calc(100% - 150px);padding-left: 35px;}

/*----------パンクズ-----------*/
.fv_sec .pankuzu_wrap{
	position:absolute;
	right: 0px;
	top: 100px;
	z-index: 2;
}
.fv_sec .pankuzu_wrap .relative{
	position:relative;
	display: inline-flex;
	flex-wrap: wrap;
}
.fv_sec .pankuzu_wrap .relative .pkz{
	color:#fff;
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	padding-right: 26px;
	position: relative;
	margin-right: 10px;
}
.fv_sec .pankuzu_wrap .relative .pkz a{
	color: #6ad9e9;
	transition: 0.5s;
}
.fv_sec .pankuzu_wrap .relative .pkz:before{
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	/* background-color:#ccc; */
	right: 0px;
	background-image: url(../img/common/navi_pankuzu.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 5px;
}
.fv_sec .pankuzu_wrap .relative .pkz:last-child:before{
	display:none;
}
.fv_sec .pankuzu_wrap .relative .pkz a:hover{
	opacity:0.7;
}
.sp_pankuzu_wrap{background-color: #fff;position: relative;border-top: 1px solid #999;padding: 10px;padding-left: 25px;padding-bottom: 2px;}
.sp_pankuzu_wrap .relative{
	position:relative;
	display: inline-flex;
	flex-wrap: wrap;
}
.sp_pankuzu_wrap .relative .pkz{
	color: #666666;
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	padding-right: 26px;
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
}
.sp_pankuzu_wrap .relative .pkz a{
	color: #00A0B8;
	transition: 0.5s;
}
.sp_pankuzu_wrap .relative .pkz:before{
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	/* background-color:#ccc; */
	right: 0px;
	background-image: url(../img/common/navi_pankuzu_bk.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 5px;
}
.sp_pankuzu_wrap .relative .pkz:last-child:before{
	display:none;
}
.sp_pankuzu_wrap .relative .pkz a:hover{
	opacity:0.7;
}
/*----------ページタイトル-----------*/
.fv_sec .page_name {margin: 0 auto;width: 90%;padding-top: 200px;position: relative;z-index: 1;}
.fv_sec .page_name .name {margin: 0;font-size: 24px;line-height: 1.5;letter-spacing: 1.5px;color: #fff;}
.fv_sec .page_name .sub_name {margin: 0;}
.fv_sec .page_name .j_name {margin: 0;font-size: 53px;line-height: 1.5;font-weight: 600;color: #fff;letter-spacing: 1px;display: inline-flex;}
.fv_sec .page_name .j_name span {display: block;width: 229px;padding-right: 13px;top: 9px;position: relative;}
/*----------discovery-----------*/
.discovery_page {
}
.discovery_page .fv_sec {position: relative;/* background-color: #999; *//* display: flex; */}
.discovery_page .fv_sec .page_name {margin: 0 auto;width: 90%;padding-top: 200px;position: relative;}
.discovery_page .fv_sec .page_name .name {margin: 0;font-size: 24px;line-height: 1.5;letter-spacing: 1.5px;color: #fff;}
.discovery_page .fv_sec .page_name .sub_name {margin: 0;}
.discovery_page .fv_sec .page_name .j_name {margin: 0;font-size: 53px;line-height: 1.5;font-weight: 600;color: #fff;letter-spacing: 1px;display: inline-flex;}
.discovery_page .fv_sec .page_name .j_name span {display: block;width: 229px;padding-right: 13px;top: 9px;position: relative;}
.discovery_page .fv_sec .wrap {margin: 0 auto;width: 90%;max-width: 1280px;position: relative;padding-top: 190px;}
.discovery_page .fv_sec .wrap .scroll_down {margin: 0;width: 22px;position: absolute;left: 0;}
.discovery_page .fv_sec .wrap .scroll_down span{
	position:relative;
	padding-bottom:250px;
}
.discovery_page .fv_sec .wrap .scroll_down span:before{
	content:"";
	position:absolute;
	width:1px;
	height: 230px;
	background-color:#fff;
	bottom:0;
	margin: auto;
	left: 0;
	right: 0;
}
.discovery_page .fv_sec .wrap .hello {margin: 0;width: 70%;max-width: 480px;margin-left: 80px;}


.discovery_page .change_back_sec{
 display: flex;
}
.discovery_page .one {
  display: block;
  width: 100%;
  min-height: 100vh;
  align-items: flex-start;
}
.discovery_page .bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 1.5s ease 0s;
  z-index: 0;
}
.discovery_page .show .bg {
  opacity: 1;
}
.discovery_page .bg._00 {
  background-image: url("../img/discovery/fv_image.jpg");
  /* top: 45px; */
  position: fixed;
}
.discovery_page .bg._01 {
  background-image: url("../img/discovery/back01.jpg");
}
.discovery_page .bg._02 {
  background-image: url("../img/discovery/back02.jpg");
}
.discovery_page .bg._03 {
  background-image: url("../img/discovery/back03.jpg");
}
.discovery_page .bg._04 {
  background-image: url("../img/discovery/back04.jpg");
}
.discovery_page .bg._05 {
  background-image: url("https://125naroom.com/demo/img/itukanokotonokoto05.jpg");
}

.discovery_page .change_back_sec .one .wrap {margin: 0 auto;width: 90%;max-width: 1080px;position: relative;}
.discovery_page .change_back_sec.sec02 .one .wrap .comment {
	text-align:center;
	margin-bottom:30px;
}
.discovery_page .change_back_sec .one .wrap .comment {margin: 0;font-size: 17px;line-height: 2.4;color: #fff;letter-spacing: 1px;}
.discovery_page .change_back_sec .one .wrap .business_creation {margin: 0 auto;width: 90%;max-width: 900px;}
.discovery_page .change_back_sec .one .wrap .comment.list {padding-left: 25px;position: relative;}
.discovery_page .change_back_sec .one .wrap .comment.list:before {
	content:"・";
	position:absolute;
	left:0;
}
.discovery_page .change_back_sec .one .wrap .l_comment {margin: 0;text-align: center;color: #fff;font-size: 25px;letter-spacing: 4px;margin-bottom: 40px;}
.discovery_page .change_back_sec .one .wrap .s_btn {margin: 0 auto;max-width: 700px;}
.discovery_page .change_back_sec .one .wrap .s_btn a{
	text-decoration: none;
	display: block;
	border: 1px solid #fff;
	padding: 30px;
	position: relative;
	padding-top: 39px;
	padding-bottom: 19px;
	padding-left: 58px;
	transition: 0.7s;
	background-size: 0;
}
.discovery_page .change_back_sec .one .wrap .s_btn a:hover{
	background-color:#282b32ad;
}
.discovery_page .change_back_sec .one .wrap .s_btn  .name {font-size: 22px;text-decoration: none;color: #fff;margin: 0;position: relative;}
.discovery_page .change_back_sec .one .wrap .s_btn  .sub_name {font-size: 13px;line-height: 1.5;color: #fff;margin: 0;position: relative;}
.discovery_page .change_back_sec .one .wrap .s_btn  .j_name {margin: 0;font-size: 38px;color: #fff;line-height: 1.5;font-weight: 600;display: inline-flex;position: relative;}
.discovery_page .change_back_sec .one .wrap .s_btn  .j_name span{
	width: 200px;
    padding-right: 11px;
}
.discovery_page .change_back_sec .one .wrap .s_btn  .btn_view {position: absolute;right: 40px;color: #fff;width: 62px;height: 64px;margin: auto;top: 0;bottom: 0;}
.discovery_page .change_back_sec .one .wrap .s_btn  .btn_view .view {
	margin: 0;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-top: 68px;
}
.discovery_page .change_back_sec .one .wrap .s_btn  .btn_view .view:before {
	content: "";
    position: absolute;
    width: 62px;
    height: 62px;
    /* background-color: #ccc; */
    top: 0px;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url(../img/common/navi_btn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60px;
}

.discovery_page .tour_sec {background-color: #fff;position: relative;padding-top: 120px;padding-bottom: 0;overflow: hidden;}
.discovery_page .tour_sec .sec_title {margin: 0 auto;width: 90%;max-width: 1280px;position: relative;padding-bottom: 30px;}
.discovery_page .tour_sec .sec_title:before {
	content:"";
	position:absolute;
	width:60px;
	height:5px;
	background-color:#ccc;
	bottom:0;
	left: 5px;
	background: #4fd2a5;
	background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
	background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.discovery_page .tour_sec .sec_title .name {margin: 0;font-size: 50px;line-height: 1.5;font-weight: 500;letter-spacing: 1.6px;}
.discovery_page .tour_sec .sec_title .sub_name {margin: 0;font-size: 15px;line-height: 1.5;}
.discovery_page .tour_sec .program_lead {margin: 0 auto;width: 80%;max-width: 680px;margin-top: 40px;margin-bottom: 90px;}
.discovery_page .tour_sec .lead_wrap {background: #4fd2a5;background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);padding-top: 60px;padding-bottom: 90px;}

.discovery_page .tour_sec .lead_wrap .loop_wrap {
  display: flex;
  width: 100vw;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-width:1600px;
}


.discovery_page .tour_sec .lead_wrap .loop_wrap img {
  width: 100%;
  height: auto;
  min-width: 1600px;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.discovery_page .tour_sec .lead_wrap .loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}

.discovery_page .tour_sec .lead_wrap .loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}
.discovery_page .tour_sec .lead_wrap .inner {margin: 0 auto;width: 90%;max-width: 1080px;margin-top: -34px;position: relative;z-index: 1;}
.discovery_page .tour_sec .lead_wrap .inner .l_name {margin: 0;color: #fff;font-size: 50px;line-height: 1.5;font-weight: 600;letter-spacing: 1.8px;}
.discovery_page .tour_sec .lead_wrap .inner .sample_plan {margin: 0;width: 465px;margin-top: 10px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap {display: block;margin-top: 65px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .comment {margin: 0;font-size: 15px;line-height: 2.5;color: #fff;width: auto;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .btn_link {margin: 0;width: 80%;max-width: 400px;margin-top: 40px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .btn_link a {
	color: #fff;
	display: block;
	padding: 25px 60px;
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
	letter-spacing: 1.5px;
	border: 1px solid #fff;
	position: relative;
	transition: 0.5s;
	text-align: center;
}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .btn_link  a:hover{
	background-color: #282b32ad;
}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .btn_link  a:before{
	content: "";
	position: absolute;
	width: 40px;
	height: 50px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 20px;
	/* background-color: #ccc; */
	background-image: url(../img/discovery/icon_entry.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 33px;
}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .fee {margin: 0;color: #fff;font-size: 15px;line-height: 1.5;width: calc(100% - 505px);text-align: center;margin-bottom: 14px;max-width: 420px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .fee span {border: 1px solid #fff;padding: 15px 60px;border-radius: 45px;}
.discovery_page .tour_sec .program_wrap {padding-top: 90px;padding-bottom: 90px;}
.discovery_page .tour_sec .wrap_title_box {margin: 0 auto;width: 90%;max-width: 1180px;position: relative;padding-left: 60px;}
.discovery_page .tour_sec .wrap_title_box:before {
	content:"";
	position:absolute;
	width: 39px;
	height:1px;
	background-color:#000;
	left: 0;
	top: 45px;
}
.discovery_page .tour_sec .wrap_title_box .sub {margin: 0;font-size: 15px;line-height: 1.5;margin-bottom: 1px;}
.discovery_page .tour_sec .wrap_title_box .name {margin: 0;font-size: 30px;line-height: 1.5;font-weight: 600;}
.discovery_page .tour_sec .program_wrap .content{
	margin-top: 50px;
}
.discovery_page .tour_sec .program_wrap .tour_info {background: #4fd2a5;background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);margin: 0 auto;width: 90%;max-width: 1180px;margin-bottom: 12px;border-radius: 15px;}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn {margin: 0;font-size: 15px;line-height: 1.5;color: #fff;align-items: center;padding: 12px 55px;cursor: pointer;padding-right: 80px;position: relative;}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn:before {
	background-image: url(../img/common/navi_ac_close.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 55px;
	content:"";
	position:absolute;
	width:60px;
	height:60px;
	/* background-color:#ccc; */
	right: 30px;
	top: 22px;
}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn.ac_open:before {
	background-image: url(../img/common/navi_more.png);
}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn .flex{display: inline-flex;align-items: center;margin: 0;}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn .flex span{
	margin:0;
	width: 112px;
	display: block;
	padding-left: 15px;
	position: relative;
	top: 9px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box {padding: 0;margin: 0;padding-bottom: 60px;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box {margin: 0 auto;width: 90%;background-color: #fff;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner {
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .tour_name {margin: 0;font-size: 30px;line-height: 1.5;font-weight: 600;color: #393939;border-bottom: 1px solid #393939;padding-bottom: 12px;margin-bottom: 45px;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .tour_name span{
	font-size:15px;
	color:#ccc;
	padding-left: 20px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour {position: relative;padding-left: 50px;border-left: 1px solid #000;padding-bottom: 25px;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour:last-child {
	padding-bottom:0;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .plan_name {margin: 0;font-size: 17px;line-height: 1.5;font-weight: 600;position: relative;margin-bottom: 15px;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .plan_name:before {
	content:"";
	position:absolute;
	top: 2px;
	left: -62px;
	width: 24px;
	height: 24px;
	border-radius: 22px;
	background: #4fd2a5;
	background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
	background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .comment {margin: 0;color: #666666;font-size: 15px;line-height: 1.7;margin-bottom: 10px;margin-left: 4px;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box {margin-bottom: 20px;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot {margin: 0;padding-left: 40px;font-size: 15px;line-height: 1.5;margin-bottom: 5px;color: #55b4c7;font-weight: 600;position: relative;}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot.bk {
	color:#666666;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot:before {
	content:"";
	position:absolute;
	width:35px;
	height:35px;
	/* background-color:#ccc; */
	left:0;
	top: -6px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot.bus:before {
	background-image:url(../img/discovery/icon_bus.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 25px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot.camera:before {
	background-image:url(../img/discovery/icon_camera.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot.map:before {
	background-image:url(../img/discovery/icon_spot.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 22px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot.lunch:before {
	background-image:url(../img/discovery/icon_lunch.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 17px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .s_comment {margin: 0;font-size: 14px;line-height: 1.6;color: #55b4c7;}
.discovery_page .tour_sec .course_wrap {padding-bottom: 90px;}
.discovery_page .tour_sec .course_wrap .wrap_title_box {
}
.discovery_page .tour_sec .course_wrap .wrap_title_box .sub {
}
.discovery_page .tour_sec .course_wrap .wrap_title_box .name {
}
.discovery_page .tour_sec .course_wrap .tab_box {margin: 0 auto;width: 90%;max-width: 1180px;display: flex;flex-wrap: wrap;margin-top: 40px;justify-content: flex-end;border-bottom: 5px solid #00A0B8;}
.discovery_page .tour_sec .course_wrap .tab_box .plan {text-align: center;width: 30%;max-width: 320px;margin: 0 0.5%;line-height: 0;}
.discovery_page .tour_sec .course_wrap .tab_box .plan img{
	width: 70px;
}
.discovery_page .tour_sec .course_wrap .tab_box .plan a {
	background-color: #757574;
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	letter-spacing: 2px;
	font-weight: 500;
	padding: 20px;
	padding-top: 15px;
	padding-bottom: 2px;
	cursor: pointer;
	display: block;
	transition: 0.5s;
}
.discovery_page .tour_sec .course_wrap .tab_box .plan a.active {
	background-color: #00A0B8;
}
.discovery_page .tour_sec .course_wrap .tab_box .plan .day01.active {
}
.discovery_page .tour_sec .course_wrap .tab_box .plan .day02 {
}
.discovery_page .tour_sec .course_wrap .tab_box .plan .day03 {
}
.discovery_page .tour_sec .course_wrap .content {margin: 0 auto;width: 90%;max-width: 1180px;padding-top: 50px;}
.discovery_page .tour_sec .course_wrap .content .course_map {margin: 0 auto;max-width: 840px;}
.discovery_page .tour_sec .course_wrap .content.no_disp {
	display:none;
}
.discovery_page .tour_sec .course_wrap .content.no_disp .course_map {
}
.discovery_page .tour_sec .entry_wrap {background: #4fd2a5;background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);padding-top: 90px;padding-bottom: 90px;}
.discovery_page .tour_sec .entry_wrap .wrap_title_box {color: #fff;}
.discovery_page .tour_sec .entry_wrap .wrap_title_box:before {
	background-color:#fff;
}
.discovery_page .tour_sec .entry_wrap .wrap_title_box .sub {
}
.discovery_page .tour_sec .entry_wrap .wrap_title_box .name {
}
.discovery_page .tour_sec .entry_wrap .inner {margin: 0 auto;width: 90%;max-width: 1080px;margin-top: 90px;color: #e5e5e5;}
.discovery_page .tour_sec .entry_wrap .inner .info_box {
	counter-reset: number 0;           /* number のカウンタを 0 にセット */

}
.discovery_page .tour_sec .entry_wrap .inner .info_box .name {margin: 0;font-size: 20px;line-height: 1.5;font-weight: 600;letter-spacing: 1px;margin-bottom: 30px;}
.discovery_page .tour_sec .entry_wrap .inner .info_box .num {margin: 0;font-size: 15px;line-height: 1.7;position: relative;padding-left: 22px;margin-bottom: 12px;}
.discovery_page .tour_sec .entry_wrap .inner .info_box .num:before {
  counter-increment: number 1;      /* number カウンタの増加数をセット */
  content: counter(number) " .";      /* 表示形式を指定 */
  position: absolute;
  left: 0;
}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap {margin-top: 80px;display: flex;flex-wrap: wrap;justify-content: space-between;position: relative;margin-bottom: 80px;}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap:before {
	content:"";
	position:absolute;
	width:1px;
	height:100%;
	background-color:#fff;
	left:0;
	right:0;
	margin:auto;
}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box {width: 40%;}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box .name {
}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box .list {margin: 0;font-size: 15px;line-height: 1.7;position: relative;padding-left: 22px;margin-bottom: 12px;}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box .list:before {
	content:"・";
	position:absolute;
	left:0;
}
.discovery_page .tour_sec .entry_wrap .inner .confirm {margin: 0;text-align: center;font-size: 15px;line-height: 1.5;}
.discovery_page .tour_sec .entry_wrap .inner .confirm a {
	color: #f3f9ff;
}
.discovery_page .tour_sec .entry_wrap .inner .btn_area {margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-evenly;margin-top: 40px;}
.discovery_page .tour_sec .entry_wrap .inner .btn_area .btn_link {margin: 0;width: 45%;max-width: 400px;text-align: center;}
.discovery_page .tour_sec .entry_wrap .inner .btn_area .btn_link a {
	color:#fff;
	display: block;
	padding: 25px 60px;
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
	letter-spacing: 1.5px;
	border: 1px solid #fff;
	position: relative;
	transition: 0.5s;
}
.discovery_page .tour_sec .entry_wrap .inner .btn_area .btn_link a:hover {background-color: #282b32ad;}
.discovery_page .tour_sec .entry_wrap .inner .btn_area .btn_link a:before {
	content: "";
	position: absolute;
	width: 40px;
	height: 50px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 20px;
	/* background-color: #ccc; */
	background-image: url(../img/discovery/icon_entry.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 33px;
}
.discovery_page .tour_sec .entry_wrap .inner .btn_area .btn_link.contact a:before {
	background-image: url(../img/discovery/icon_mail.png);
}


.discovery_page .new_biz_sec {position: relative;background-image: url(../img/discovery/exmap/newpro_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;padding-bottom: 120px;padding-top: 120px;overflow: hidden;}
.discovery_page .new_biz_sec .loop_wrap{display: flex;width: 100vw;height: auto;overflow: hidden;position: relative;z-index: 1;min-width: 1600px;margin-bottom: -105px;}
.discovery_page .new_biz_sec .loop_wrap img{width: 100%;height: auto;min-width: 1600px;}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.discovery_page .new_biz_sec .loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}

.discovery_page .new_biz_sec .loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}
.discovery_page .new_biz_sec .wrap {margin: 0 auto;width: 90%;max-width: 1080px;color: #fff;}
.discovery_page .new_biz_sec .wrap .lead {margin: 0;font-size: 59px;line-height: 1.5;font-weight: 700;letter-spacing: 8px;margin-bottom: 25px;}
.discovery_page .new_biz_sec .wrap .lead .color {color: #f9ff36;}
.discovery_page .new_biz_sec .wrap .sub_lead {margin: 0;font-size: 24px;font-weight: 600;letter-spacing: 2px;margin-bottom: 80px;}
.discovery_page .new_biz_sec .wrap .sub_lead .bg_color {background-color: #000;}
.discovery_page .new_biz_sec .wrap .comment {margin: 0;color: #d9d9d9;font-size: 16px;line-height: 1.8;}
.discovery_page .ex_map_sec {background-image: url(../img/discovery/exmap/ex_map_back.jpg);position: relative;padding-top: 120px;padding-bottom: 120px;background-position: center;background-repeat: no-repeat;background-size: cover;}
.discovery_page .ex_map_sec .wrap {margin: 0 auto;width: 90%;max-width: 1180px;position: relative;}
.discovery_page .ex_map_sec .wrap .map_name{
	width: 290px;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
}
.discovery_page .ex_map_sec .wrap .map {margin: 0 auto;max-width: 750px;}
.discovery_page .ex_map_sec .wrap .center {position: absolute;width: 65px;height: 65px;margin: auto;left: 0;right: 0;bottom: 0;top: 0;}
.discovery_page .ex_map_sec .wrap .center .modal_box{
	position:absolute;
}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot01 {left: 48px;top: 147px;/* position: relative; */width: 95px;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot02 {left: -36px;top: 184px;/* position: relative; */width: 75px;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot03 {left: -135px;top: 211px;/* position: relative; */width: 86px;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot04 {left: -298px;top: 310px;/* position: relative; */width: 86px;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot05 {left: 111px;top: -13px;/* position: relative; */width: 82px;}
.discovery_page .ex_map_sec .wrap .modal_box .btn_more {margin: 0;}
.discovery_page .ex_map_sec .wrap .modal_box .btn_more a{
	transition:0.5s;
	cursor: pointer;
}
.discovery_page .ex_map_sec .wrap .modal_box .btn_more a:hover {
	opacity:0.7;
}
.discovery_page .ex_map_sec .wrap .center .modal_box .btn_more.animation .btn_modal {
}
.discovery_page .ex_map_sec .wrap .center .modal_box .modal_content.fade.modal_append {
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp {padding-top: 90px;padding-bottom: 90px;background-color: #fff;width: 80%;max-width: 980px;margin-bottom: 50px;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .close {color: #21a0b7;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box {
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap {
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap {display: flex;flex-wrap: wrap;justify-content: space-between;margin: 0 auto;width: 90%;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box {width: 31%;margin-bottom: 40px;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .site {
	text-decoration:none;
	transition:0.5s;
	cursor:pointer;
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .site:hover {
	opacity:0.7;
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .image {margin: 0;margin-bottom: 10px;line-height: 0;border-radius: 10px;overflow: hidden;border: 1px solid #ececec;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .date {margin: 0;font-size: 15px;line-height: 1.5;color: #393939;font-weight: 500;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .name {margin: 0;font-size: 18px;line-height: 1.5;font-weight: 600;letter-spacing: 1.5px;color: #393939;margin-bottom: 6px;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .place {margin: 0;background-color: #21a0b7;display: inline-block;color: #f5f5f5;padding: 3px 15px;border-radius: 35px;font-size: 13px;line-height: 1.5;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .comment {margin: 0;font-size: 13px;line-height: 1.5;color: #393939;margin-top: 10px;word-break: break-all;}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .comment a {
	transition:0.5s;
	color: #21a0b7;
	text-decoration: underline;
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box .comment a:hover {
	opacity:0.7;
}

.discovery_page .ex_map_sec .wrap .modal_box .btn_more.btn_link {margin: 0 auto;width: 90%;max-width: 450px;text-align: center;margin-top: 60px;}
.discovery_page .ex_map_sec .wrap .modal_box .btn_more.btn_link a {
	display:block;
	border:1px solid #fff;
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	padding: 20px 40px;
	position: relative;
}
.discovery_page .ex_map_sec .wrap .modal_box .btn_more.btn_link a:hover {
}
.discovery_page .ex_map_sec .wrap .modal_box .btn_more.btn_link a:before {
	content:"";
	position:absolute;
	width:35px;
	height:35px;
	/* background-color:#ccc; */
	right:20px;
	margin: auto;
	top: 0;
	bottom: 0;
	background-image:url(../img/discovery/exmap/icon_search.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size: 29px;
}
.discovery_page .v_exhi_lead_sec {position: relative;background-color: #141517;padding-top: 120px;}
.discovery_page .v_exhi_lead_sec:before {
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background-image:url(../img/discovery/v_ex_back.png);
	top:0;
	background-position:bottom;
	background-repeat:no-repeat;
	background-size:cover;
	opacity: 0.2;
}
.discovery_page .v_exhi_lead_sec .lead_box {margin: 0 auto;width: 90%;max-width: 1080px;}
.discovery_page .v_exhi_lead_sec .lead_box .l_name {
	margin:0;
	font-size: 50px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 1.6px;
	color: #fff;
	width: 90%;
	max-width: 700px;
	margin-left: -1%;
	margin-bottom: 10px;
}
.discovery_page .v_exhi_lead_sec .lead_box .m_name {
	margin:0;
	color: #00A0B8;
	font-size: 39px;
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 70px;
	letter-spacing: 1.5px;
}
.discovery_page .v_exhi_lead_sec .lead_box .comment {
	margin:0;
	color: #d9d9d9;
	font-size: 17px;
	line-height: 1.8;
}
.discovery_page .v_exhi_lead_sec .lead_box .attention_box {text-align: right;height: 40px;margin-top: -42px;}
.discovery_page .v_exhi_lead_sec .lead_box .attention {
	margin:0;
	font-size: 17px;
	line-height: 1.5;
	color: #00A0B8;
	display: inline-block;
	padding-left: 42px;
	position: relative;
	font-weight: 500;
}
.discovery_page .v_exhi_lead_sec .lead_box .attention:before {
	content:"";
	position:absolute;
	width: 34px;
	height: 38px;
	/* background-color:#ccc; */
	left: 0;
	top: -4px;
	background-image: url(../img/discovery/v_ex_search.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 33px;
}

.discovery_page .v_exhibition_sec {position: relative;background-color: #141517;}
.discovery_page .v_exhibition_sec .wrap{
	background-color: #131315;
}
.discovery_page .v_exhibition_sec .wrap .image{
	margin:0;
	line-height: 0;
}
.discovery_page .v_exhibition_sec .wrap .center {position: absolute;width: 100%;height: 100%;margin: auto;left: 0;right: 0;bottom: 0;top: 0;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box{
	position:absolute;
}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item01 {left: 40.5%;top: 39%;/* position: relative; */width: 7%;height: 18%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item02 {left: 31.2%;top: 39%;/* position: relative; */width: 7%;height: 18%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item03 {left: 49.8%;top: 39%;/* position: relative; */width: 7%;height: 18%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item04 {left: 21.8%;top: 32%;/* position: relative; */width: 7%;height: 25%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item05 {left: 70.9%;top: 32%;/* position: relative; */width: 7%;height: 25%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item06 {left: 21.8%;top: 58%;/* position: relative; */width: 5%;height: 12%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item07 {left: 27.4%;top: 56%;/* position: relative; */width: 5%;height: 12%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item08 {left: 36.5%;top: 76%;/* position: relative; */width: 11%;height: 12%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item09 {left: 80.8%;top: 64%;/* position: relative; */width: 5%;height: 13%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item10 {left: 74.0%;top: 60%;/* position: relative; */width: 5.3%;height: 13%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item11 {left: 25.7%;top: 82%;/* position: relative; */width: 8.2%;height: 7%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item12 {left: 17.9%;top: 71%;/* position: relative; */width: 5%;height: 9%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item13 {left: 22.9%;top: 72%;/* position: relative; */width: 11%;height: 10%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item14 {left: 32.8%;top: 67%;/* position: relative; */width: 9%;height: 7%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item15 {left: 62.3%;top: 54%;/* position: relative; */width: 9%;height: 11%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item16 {left: 81.5%;top: 37%;/* position: relative; */width: 4.5%;height: 20%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item17 {left: 66.2%;top: 66%;/* position: relative; */width: 5%;height: 9%;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box.item18 {left: 32%;top: 20%;/* position: relative; */width: 14%;height: 7%;}
.discovery_page .v_exhibition_sec .wrap .center .movie_box {position: absolute;width: 4%;left: 49%;top: 63%;}
.discovery_page .v_exhibition_sec .wrap .center .movie_box .js-modal-btn {margin: 0;transition: 0.5s;cursor: pointer;}
.discovery_page .v_exhibition_sec .wrap .center .movie_box .js-modal-btn:hover {
	opacity:0.7;
}
.discovery_page .v_exhibition_sec .wrap .modal_box .btn_more {margin: 0;width: 100%;height: 100%;}
.discovery_page .v_exhibition_sec .wrap .modal_box .btn_more a{
	transition:0.5s;
	cursor: pointer;
	/* opacity: 0; */
}
.discovery_page .v_exhibition_sec .wrap .modal_box .btn_more a:hover {
}
.discovery_page .v_exhibition_sec .wrap .center .modal_box .btn_more .btn_modal {display: block;width: 100%;height: 100%;border: 2px solid #ffef00;opacity: 0;}
.discovery_page .v_exhibition_sec .wrap .center .modal_box .btn_more .btn_modal:hover {
	opacity:1;
}
.discovery_page .v_exhibition_sec .wrap .center .modal_box .modal_content {
}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp {padding-top: 90px;padding-bottom: 90px;background-color: #fff;width: 80%;max-width: 980px;margin-bottom: 50px;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .close {color: #21a0b7;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .detail_box {
}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .detail_box .zoom_image.panel {margin: 0 auto;width: 90%;max-width: 690px;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .detail_box .zoom_image.l_panel {margin: 0 auto;width: 90%;max-width: 450px;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .detail_box .zoom_image.leaf {margin: 0 auto;width: 90%;max-width: 740px;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box {
	background-image:url(../img/discovery/omikuji/back_omikuji.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	padding-top: 35px;
	padding-bottom: 50px;
}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box .gacha {margin: 0 auto;width: 80%;max-width: 303px;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box .random {
	margin:0 auto;
	width:90%;
	max-width: 216px;
}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box .btn_omikuji {
	margin:0 auto;
	width:80%;
	max-width:350px;
}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box .btn_omikuji a{color: #fff;font-size: 17px;line-height: 1.5;text-align: center;display: block;border: 2px solid #fff;font-weight: 500;padding: 20px 40px;position: relative;transition: 0.5s;cursor: pointer;}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box .btn_omikuji a:hover{
	background-color:#21a0b7;
}
.discovery_page .v_exhibition_sec .wrap .modal_box .modal_content .modal_disp .omikuji_box .btn_omikuji a:before{
	content:"";
	position:absolute;
	width:35px;
	height:35px;
	/* background-color:#ccc; */
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
	background-image: url(../img/discovery/omikuji/navi_omikuji.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
}

.discovery_page .group_sec {position: relative;background-color: #313445;padding-top: 90px;padding-bottom: 90px;}
.discovery_page .group_sec .sec_title {margin: 0 auto;width: 90%;max-width: 1280px;position: relative;padding-bottom: 30px;color: #fff;}
.discovery_page .group_sec .sec_title:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 5px;
    background-color: #ccc;
    bottom: 0;
    left: 5px;
    background: #4fd2a5;
    background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
    background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.discovery_page .group_sec .sec_title .name {margin: 0;font-size: 50px;line-height: 1.5;font-weight: 500;letter-spacing: 1.6px;}
.discovery_page .group_sec .sec_title .sub_name {margin: 0;font-size: 15px;line-height: 1.5;letter-spacing: 2px;padding-left: 6px;}
.discovery_page .group_sec .wrap {background-image: url(../img/discovery/group_image.png);background-position: center;background-repeat: no-repeat;background-size: 1360px;}
.discovery_page .group_sec .wrap .spot_box {
	margin: 0 auto;
	width: 1080px;
	height: 1112px;
	position: relative;
}
.discovery_page .group_sec .wrap .spot_box .center {position: absolute;width: 65px;height: 65px;margin: auto;left: 0;right: 0;bottom: 0;top: 0;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box {position: absolute;left: 226px;top: -171px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot01 {left: 226px;top: -171px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot02 {left: 38px;top: -249px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot03 {left: -127px;top: -156px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot04 {left: 437px;top: -214px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot05 {left: 326px;top: 65px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot06 {left: -254px;top: -13px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot07 {left: -149px;top: 321px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot08 {left: 226px;top: -71px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .btn_more {width: 65px;height: 65px;margin: 0;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .btn_more .btn_modal{
	transition:0.5s;
	cursor:pointer;
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .btn_more .btn_modal:hover{
	opacity:0.7
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append {
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append .modal_disp {padding-top: 90px;padding-bottom: 90px;background-color: #fff;width: 80%;max-width: 980px;margin-bottom: 50px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append .modal_disp .close {color: #21a0b7;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append .modal_disp .detail_box {margin: 0 auto;width: 90%;max-width: 740px;}

.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap {color: #393939;display: flex;flex-wrap: wrap;}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left {width: 350px;margin-right: 50px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left .service {margin: 0;font-size: 15px;line-height: 1.5;letter-spacing: 1.5px;margin-bottom: 25px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left .name_box {position: relative;padding-bottom: 35px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left .name_box:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 5px;
    background-color: #ccc;
    bottom: 0;
    left: 5px;
    background: #4fd2a5;
    background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
    background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left .name_box .name {margin: 0;font-size: 24px;line-height: 1.5;font-weight: 500;letter-spacing: 1.5px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left .name_box .sub {margin: 0;font-size: 15px;line-height: 1.5;position: relative;left: -8px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .image {width: calc(100% - 402px);margin: 0;line-height: 0;border-radius: 10px;overflow: hidden;}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap {margin-top: 24px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .group {margin: 0;font-size: 15px;line-height: 1.5;letter-spacing: 1.5px;margin-bottom: 25px;position: relative;}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .group:before {
	content:"";
	position:absolute;
	width:100%;
	height:1px;
	background-color:#999;
	top: 13px;
}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .group span{
	background-color:#fff;
	position: relative;
	padding-right: 16px;
}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .flex_wrap {
}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .flex_wrap .s_company {margin: 0;margin-bottom: 17px;}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .flex_wrap .s_company a{
	transition:0.5s;
	color: #00A0B8;
	padding-right:20px;
	position:relative;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 1px;
}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .flex_wrap .s_company a:hover{
	opacity:0.7;
}
.discovery_page .group_sec .wrap .spot_box .detail_box .company_wrap .flex_wrap .s_company a:before{
	content:"";
	position:absolute;
	right:0;
	top:0;
	width:17px;
	height:17px;
	/* background-color:#ccc; */
	background-image:url(../img/common/navi_blank_bk.png);
	background-position: center;
	background-size: 14px;
	background-repeat: no-repeat;
}
.discovery_page .group_sec .others_wrap {margin: 0 auto;width: 90%;max-width: 900px;padding: 5%;background-color: #252c3d;border-radius: 20px;margin-top: 47px;border: 2px solid #e5e5e5;}
.others_wrap .s_others:first-child {
	margin-bottom: 26px;
}
.others_wrap .s_others .name {
}
.others_wrap .s_others .flex_wrap {
}
.others_wrap .s_others .flex_wrap .catalog_lead {width: calc(85% - 190px); margin-right: 5%;margin-left: 3%;}
.others_wrap .s_others .flex_wrap .catalog_lead .comment {margin: 0;color: #e5e5e5;font-size: 15px;line-height: 1.5;}
.others_wrap .s_others .flex_wrap .catalog_lead .btn_link {margin: 0;margin-top: 25px;}
.others_wrap .s_others .flex_wrap .catalog_lead .btn_link a {color: #fff;text-decoration: none; background-color: #00A0B8; text-align: center;display: block;padding: 20px 78px;max-width: 220px;border: 1px solid #00A0B8;font-size: 17px;line-height: 1.5;position: relative;transition: 0.5s;}
.others_wrap .s_others .flex_wrap .catalog_lead .btn_link a:before {
	content:"";
	position:absolute;
	width: 50px;
	height: 50px;
	/* background-color: #ccc; */
	right: 13px;
	margin: auto;
	top: 0;
	bottom: 0;
	background-image: url(../img/discovery/navi_catalog.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 29px;
}
.others_wrap .s_others .flex_wrap .catalog_lead .btn_link a:hover {opacity:0.7;}
.others_wrap .s_others .flex_wrap .catalog_image {width: 190px;border-radius: 7px;overflow: hidden;line-height: 0;box-shadow: 2px 2px 5px 0px #1c1a1a;margin: 0;margin-top: -65px;}

.discovery_page .group_sec .others_wrap .name {margin: 0;color: #e5e5e5;font-size: 17px;line-height: 1.5;margin-bottom: 40px;position: relative;padding-bottom: 30px;}
.discovery_page .group_sec .others_wrap .name:before {
	    content: "";
    position: absolute;
    width: 50px;
    height: 5px;
    background-color: #ccc;
    bottom: 0;
    left: 5px;
    background: #4fd2a5;
    background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
    background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.discovery_page .group_sec .others_wrap .flex_wrap {display: flex;flex-wrap: wrap;margin: 0 auto;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box {width: 44%;margin: 3%;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .ctg {margin: 0;color: #e5e5e5;margin-bottom: 21px;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .s_company {margin: 0;font-size: 15px;line-height: 1.5;margin-bottom: 5px;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .s_company a{transition: 0.5s;color: #00A0B8;padding-right: 20px;position: relative;font-size: 15px;line-height: 1.5;letter-spacing: 1px;display: inline-block;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .s_company a:before{
	 content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 17px;
    height: 17px;
    /* background-color: #ccc; */
    background-image: url(../img/common/navi_blank_bk.png);
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
	filter: invert(100%);
}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .s_company a:hover{
	opacity:0.7;
}

.discovery_page .gallery_sec {position: relative;background-color: #313445;}
.discovery_page .gallery_sec .sec_title {margin: 0 auto;width: 90%;max-width: 1280px;position: relative;padding-bottom: 30px;color: #fff;}
.discovery_page .gallery_sec .sec_title:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 5px;
    background-color: #ccc;
    bottom: 0;
    left: 5px;
    background: #4fd2a5;
    background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
    background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.discovery_page .gallery_sec .sec_title .name {margin: 0;font-size: 50px;line-height: 1.5;font-weight: 500;letter-spacing: 1.6px;}
.discovery_page .gallery_sec .sec_title .sub_name {margin: 0;font-size: 15px;line-height: 1.5;letter-spacing: 2px;padding-left: 6px;}
.discovery_page .gallery_sec .wrap {padding-top: 60px;}
.discovery_page .gallery_sec .wrap .slide_wrap {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider {padding-bottom: 140px;position: relative;margin-bottom: 0;}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide .thumb {margin: 5px;}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide .thumb .example-image-link {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide .thumb .example-image-link img{
	border-radius: 7px;
	line-height: 0;
}
.discovery_page .gallery_sec .slick-prev,
.discovery_page .gallery_sec .slick-next {
  position: absolute;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  /* background-color: #ccc; */
  top: inherit;
  bottom: 39px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  background-position:center;
  background-repeat:no-repeat;
  background-size:55px;
  transition:0.5s;
  z-index: 1;
  }
.discovery_page .gallery_sec .slick-prev:before,
.discovery_page .gallery_sec .slick-next:before {
	display:none;
}
.discovery_page .gallery_sec .slick-prev:hover,
.discovery_page .gallery_sec .slick-next:hover {
	opacity:0.7;
}
.discovery_page .gallery_sec .slick-prev{
	left:100px;
	background-image:url(../img/common/navi_return.png);
}
.discovery_page .gallery_sec .slick-next{
	left:170px;
	background-image:url(../img/common/navi_next.png);
}
.discovery_page .gallery_sec .slick-dots {
  position: absolute;
  bottom: 84px;
  list-style: none;
  display: block;
  text-align: right;
  padding: 0;
  margin: auto;
  left: inherit;
  right: 30px;
  width: calc(100% - 300px);
  padding-left: 308px;
  /* background-color: #fff; */
  }
.discovery_page .gallery_sec .slick-dots li.slick-active button:before {
    color: #42b59e;
    opacity: 0.75;
}
.discovery_page .gallery_sec .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 47px;
    line-height: 0;
    text-align: center;
    color: #42b59e;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.discovery_page .lb-data .lb-number {
    display: none !important;
}
/*----------海外の方へ-----------*/
.asean_page {
}
.asean_page .fv_sec {position: relative;background-image: url(../img/asean/fv_image.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}

.asean_page .fv_sec .page_name {margin: 0 auto;width: 90%;padding-top: 200px;position: relative;}
.asean_page .fv_sec .page_name .j_name {margin: 0;font-size: 53px;line-height: 1.5;font-weight: 600;color: #fff;letter-spacing: 1px;display: inline-flex;}
.asean_page .fv_sec .page_name .j_name span{
	display: block;
	width: 229px;
	padding-right: 13px;
	top: 9px;
	position: relative;
}
.asean_page .fv_sec .page_name .name {margin: 0;font-size: 24px;line-height: 1.5;letter-spacing: 1.5px;color: #fff;}
.asean_page .fv_sec .wrap {
    padding-top: 120px;
    padding-bottom: 200px;
}
.asean_page .fv_sec .wrap .main_copy {margin: 0 auto;width: 40%;max-width: 650px;}
.asean_page .lead_sec {
    background-color: #282b32;
    padding-top: 90px;
    padding-bottom: 90px;
}
.asean_page .lead_sec .wrap {margin: 0 auto;width: 90%;/* max-width: 1280px; */display: flex;flex-wrap: wrap;align-items: center;}
.asean_page .lead_sec .wrap .image{
	margin:0;
	line-height: 0;
	overflow: hidden;
	border-radius: 20px;
	width: 55%;
	margin-right: 80px;
}
.asean_page .lead_sec .wrap .lead {margin: 0;color: #fff;font-size: 18px;line-height: 2;letter-spacing: 1px;width: calc(45% - 80px);max-width: 350px;}
.asean_page .consulting_sec {background-color: #282b32;padding-top: 90px;padding-bottom: 90px;}
.asean_page .consulting_sec .sec_title {margin: 0 auto;width: 90%;max-width: 1280px;position: relative;padding-bottom: 30px;color: #fff;}
.asean_page .consulting_sec .sec_title:before {
	content: "";
    position: absolute;
    width: 60px;
    height: 5px;
    background-color: #ccc;
    bottom: 0;
    left: 5px;
    background: #4fd2a5;
    background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
    background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}

.asean_page .consulting_sec .sec_title .name {margin: 0;font-size: 50px;line-height: 1.5;font-weight: 500;letter-spacing: 1.6px;}
.asean_page .consulting_sec .sec_title .sub_name {margin: 0;font-size: 15px;line-height: 1.5;letter-spacing: 2px;padding-left: 6px;}
.asean_page .consulting_sec .wrap {margin-top: 70px;}
.asean_page .consulting_sec .wrap .creation_box {margin: 0 auto;width: calc(90% - 200px);border-left: 1px solid #ccc;border-right: 1px solid #ccc;padding: 30px 100px;max-width: 560px;}
.asean_page .consulting_sec .wrap .creation_box .copy {margin: 0 auto;margin-bottom: 40px;}
.asean_page .consulting_sec .wrap .creation_box .comment {margin: 0;text-align: center;color: #fff;font-size: 15px;line-height: 2;letter-spacing: 2px;}
.asean_page .consulting_sec .wrap .goals_wrap {padding-top: 90px;}
.asean_page .consulting_sec .wrap .goals_wrap .wrap_name {margin: 0 auto;width: 85%;max-width: 1200px;color: #fff;font-size: 40px;line-height: 1.5;font-weight: 600;letter-spacing: 3px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap {display: flex;background-image: url(../img/asean/goals_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;padding-top: 90px;padding-bottom: 90px;flex-wrap: wrap;justify-content: center;margin-top: 40px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal {width: calc(23.3% - 2px);text-align: center;border-right: 1px solid #fff;padding: 5%;max-width: 300px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal:last-child {
	border-right:none;
}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal .s_name {color: #2eebff;font-size: 18px;letter-spacing: 2px;line-height: 1.5;font-weight: 600;margin: 0;margin-bottom: 50px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal .comment {margin: 0;font-size: 15px;line-height: 1.8;color: #fff;}
.asean_page .adv_sec {
    position: relative;
}
.asean_page .adv_sec .side_copy {
    position: absolute;
    left: -22px;
    width:10%;
    top: 78px;
    opacity:0.7;
}
.asean_page .adv_sec .map_wrap {padding-top: 140px;padding-bottom: 90px;background-image: url(../img/asean/adv_map.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}
.asean_page .adv_sec .map_wrap .wrap_name {margin: 0 auto;width: 80%;max-width: 1200px;position: relative;}
.asean_page .adv_sec .map_wrap .wrap_name .name {margin: 0;font-size: 40px;letter-spacing: 1px;line-height: 1.5;font-weight: 600;margin-bottom: 25px;}
.asean_page .adv_sec .map_wrap .wrap_name .comment {margin: 0;font-size: 17px;line-height: 1.8;letter-spacing: 1.3px;}
.asean_page .adv_sec .map_wrap .spot_box {margin: 0 auto;width: 1080px;height: 642px;position: relative;/* border: 1px solid; */}
.asean_page .adv_sec .map_wrap .spot_box .center{position: absolute;width: 80px;height: 80px;margin: auto;left: 0;right: 0;bottom: 0;top: 0;}
.asean_page .adv_sec .map_wrap .spot_box .center .name{margin: 0;text-align: center;width: 110px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name a{
	font-size:12px;
	color:#393939;
	text-decoration:none;
	line-height: 1.5;
	padding-top: 70px;
	position: relative;
	display: block;
}
.asean_page .adv_sec .map_wrap .spot_box .center .name a.disabled{
	pointer-events:none;
	color: #7e7e7e;
}
.asean_page .adv_sec .map_wrap .spot_box .center .name a.disabled:before{
	filter: grayscale(1);
}
.asean_page .adv_sec .map_wrap .spot_box .center .name a:before{
	content:"";
	position:absolute;
	width:70px;
	height:70px;
	/* background-color:#ccc; */
	top:0;
	margin:auto;
	left:0;
	right:0;
	background-image: url(../img/asean/adv_more.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60px;
}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot01{position: absolute;left: -400px;top: -139px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot02{position: absolute;left: -300px;top: 102px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot03{position: absolute;left: -167px;top: -210px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot04{position: absolute;top: -12px;left: -65px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot05{position: absolute;left: -144px;top: 250px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot06{position: absolute;right: -86px;top: -255px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot07{right: -202px;position: absolute;top: -96px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot08{position: absolute;right: -100px;top: 130px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot09{right: -400px;position: absolute;top: -145px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot10{position: absolute;right: -339px;top: 112px;}

.asean_page .adv_sec .adv_wrap {padding-top: 120px;padding-bottom: 120px;background-image: url(../img/asean/adv_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}
.asean_page .adv_sec .adv_wrap .wrap_name {margin: 0;color: #fff;margin: 0 auto;width: 80%;max-width: 1200px;font-size: 40px;line-height: 1.5;letter-spacing: 1.5px;font-weight: 600;margin-bottom: 35px;position: relative;}
.asean_page .adv_sec .adv_wrap .comment_box {
	margin:0 auto;
	width: 80%;
	max-width: 1200px;
}
.asean_page .adv_sec .adv_wrap .comment {margin: 0;color: #fff;max-width: 530px;font-size: 16px;line-height: 2;color: #ccc;}
.asean_page .adv_sec .asset_wrap {padding-top: 90px;padding-bottom: 130px;background-image: url(../img/asean/asset_back.jpg);background-position: center 0;background-repeat: no-repeat;background-size: cover;}
.asean_page .adv_sec .asset_wrap .flex_wrap {display: flex;flex-wrap: wrap;justify-content: center;margin-top: 290px;margin-bottom: 60px;}
.asean_page .adv_sec .asset_wrap .flex_wrap .s_wrap {width: 44%;margin: 1%;max-width: 405px;}
.asean_page .adv_sec .asset_wrap .flex_wrap .s_wrap .name {margin: 0;text-align: center;border: 1px solid #21a0b7;color: #dbffe5;font-size: 15px;line-height: 1.5;letter-spacing: 1.5px;padding: 8px 20px;margin-bottom: 15px;position: relative;z-index: 1;}
.asean_page .adv_sec .asset_wrap .flex_wrap .s_wrap .name:before {
	content:"";
	position:absolute;
	width:100%;
	height: 100%;
	background-color:#000;
	left:0;
	top:0;
	opacity: 0.5;
	z-index: -1;
}
.asean_page .adv_sec .asset_wrap .btn_link {margin: 0 auto;width: 80%;max-width: 800px;}
.asean_page .adv_sec .asset_wrap .btn_link a{
	color:#fff;
	text-decoration:none;
	display: block;
	text-align: center;
	padding: 30px 80px;
	background: #4fd2a5;
	background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
	background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
	background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
	position: relative;
	transition: 0.5s;
}
.asean_page .adv_sec .asset_wrap .btn_link a:hover{
	background: #00A0B8;
}
.asean_page .adv_sec .asset_wrap .btn_link a:before{
	content:"";
	position:absolute;
	width:60px;
	height:60px;
	/* background-color:#ccc; */
	right: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../img/common/navi_btn.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50px;
}
.asean_page .adv_sec .asset_wrap .btn_link  .sub {margin: 0;color: #fff;font-size: 12px;line-height: 1.5;letter-spacing: 1px;position: relative;left: -46px;}
.asean_page .adv_sec .asset_wrap .btn_link  .name {margin: 0;font-size: 25px;line-height: 1.5;letter-spacing: 1.5px;font-weight: 500;}

/*----------Fielad Adventure-----------*/
.field_adv_page {
}
.field_adv_page .fv_sec {position: relative;background-image: url(../img/asean/field_adv/fv_image.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;position: relative;min-height: 530px;}
.field_adv_page .fv_sec .pankuzu_wrap {
}
.field_adv_page .fv_sec .pankuzu_wrap .relative {
}
.field_adv_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.field_adv_page .fv_sec .flex_wrap {margin: 0 auto;width: 90%;padding-top: 200px;display: flex;flex-wrap: wrap;justify-content: space-between;padding-bottom: 120px;}
.field_adv_page .fv_sec .flex_wrap .page_name {width: 50%;margin: 0;position: relative;padding-top: 0;}
.field_adv_page .fv_sec .flex_wrap .page_name .s_name {margin: 0;font-size: 24px;line-height: 1.5;letter-spacing: 1.5px;color: #fff;}
.field_adv_page .fv_sec .flex_wrap .page_name .l_name {margin: 0;font-size: 42px;line-height: 1.5;letter-spacing: 1.5px;color: #fff;font-weight: 600;letter-spacing: 2px;}
.field_adv_page .fv_sec .flex_wrap .lead {color: #e5e5e5;font-size: 16px;line-height: 2;margin: 0;width: 40%;margin-top: 20px;}
.field_adv_page .fv_sec .scroll_down {margin: auto;width: 30px;position: absolute;right: 0;left: 0;bottom: -60px;}
.field_adv_page .adv_sec {
	
}
.field_adv_page .adv_sec .map_wrap {
    padding-top: 140px;
    padding-bottom: 90px;
    background-image: url(../img/asean/adv_map.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.field_adv_page .adv_sec .map_wrap .spot_box {
    margin: 0 auto;
    width: 1080px;
    height: 642px;
    position: relative;
}
.field_adv_page .adv_sec .map_wrap .spot_box .center {
	position: absolute;
    width: 80px;
    height: 80px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name {
    margin: 0;
    text-align: center;
    width: 110px;
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name a {
    font-size: 12px;
    color: #393939;
    text-decoration: none;
    line-height: 1.5;
    padding-top: 70px;
    position: relative;
    display: block;
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name a:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    /* background-color: #ccc; */
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url(../img/asean/adv_more.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60px;
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name a.disabled {
	pointer-events:none;
	color:#7e7e7e;
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name a.disabled:before {
	filter: grayscale(1);
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot01{position: absolute;left: -400px;top: -139px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot02{position: absolute;left: -300px;top: 102px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot03{position: absolute;left: -167px;top: -210px;}
.field_adv_page .adv_sec .map_wrap .spot_boxx .center .name.spot04{position: absolute;top: -12px;left: -65px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot05{position: absolute;left: -144px;top: 250px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot06{position: absolute;right: -86px;top: -255px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot07{right: -202px;position: absolute;top: -96px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot08{position: absolute;right: -100px;top: 130px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot09{right: -400px;position: absolute;top: -145px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot10{position: absolute;right: -339px;top: 112px;}

/*----------Field詳細-----------*/
.field_content_page {
}
.field_content_page .fv_sec {background-image: url(../img/asean/field_adv/green_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;position: relative;min-height: 550px;}
.field_content_page .fv_sec:before {
	content:"";
	position:absolute;
	width:45%;
	height: calc(100% - 160px);
	background-color:#ccc;
	right: 0;
	top: 137px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.field_content_page .fv_sec .pankuzu_wrap {
}
.field_content_page .fv_sec .pankuzu_wrap .relative {
}
.field_content_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.field_content_page .fv_sec .page_image_wrap {
}
.field_content_page .fv_sec .page_image_wrap .page_name {padding-top: 250px;}
.field_content_page .fv_sec .page_image_wrap .page_name .s_name {margin: 0;font-size: 17px;line-height: 1.5;color: #fff;}
.field_content_page .fv_sec .page_image_wrap .page_name .l_name {margin: 0;font-size: 42px;line-height: 1.5;letter-spacing: 1.5px;color: #fff;font-weight: 600;letter-spacing: 2px;position: relative;width: 50%;}
.field_content_page .fv_sec .page_image_wrap .page_name .l_name:before {
	content:"";
	position:absolute;
	width:80px;
	height:80px;
	/* background-color:#ccc; */
	background-image:url(../img/asean/field_adv/adv_deco.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 75px;
	left: -28px;
	top: -51px;
	z-index: -1;
}
.field_content_page .lead_sec {padding-top: 90px;padding-bottom: 90px;}
.field_content_page .lead_sec .wrap {margin: 0 auto;width: 90%;max-width: 840px;}
.field_content_page .lead_sec .wrap .comment {margin: 0;font-size: 16px;line-height: 2;color: #393939;}
.field_content_page .image_sec {height: 600px;background-image: url(../img/asean/rest_area/back_image001.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;}
.field_content_page .content_sec {padding-top: 90px;padding-bottom: 90px;}
.field_content_page .content_sec .wrap {margin: 0 auto;width: 90%;display: flex;flex-wrap: wrap;justify-content: space-between;}
.field_content_page .content_sec .wrap .side {width: 36%;}
.field_content_page .content_sec .wrap .side .sticky{
	position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.field_content_page .content_sec .wrap .side .image {margin: 0;}
.field_content_page .content_sec .wrap .main {width: 56%;margin-top: 35px;}
.field_content_page .content_sec .wrap .main .s_wrap {margin-bottom: 90px;}
.field_content_page .content_sec .wrap .main .s_wrap .name {margin: 0;font-size: 26px;line-height: 1.5;font-weight: 600;color: #00A0B8;margin-bottom: 30px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box {margin-top: 30px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment.list {position: relative;padding-left: 20px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment.list:before {
	content:"・";
	position:absolute;
	left:0;
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment {margin: 0;font-size: 15px;line-height: 2;color: #393939;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .l_comment {margin: 0;margin-bottom: 15px;font-size: 20px;line-height: 1.5;font-weight: 600;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box {margin-bottom: 25px;margin-top: 25px;position: relative;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .image {margin: 0 auto;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .zoom {margin: 0;position: absolute;bottom: 16px;right: 25px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .zoom a{
	display:block;
	text-align: center;
	text-decoration: none;
	color: #00A0B8;
	border: 2px solid;
	border-radius: 7px;
	padding: 6px 45px;
	font-size: 13px;
	position: relative;
	transition: 0.5s;
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .zoom a:before{
	content:"";
	position:absolute;
	width:30px;
	height: 31px;
	/* background-color:#ccc; */
	margin: auto;
	left: 7px;
	top: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px;
	background-image: url(../img/common/navi_zoom.png);
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .zoom a:hover{
	opacity:0.7;
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment .l_bold {font-size: 20px;line-height: 1.5;font-weight: 600;}

/*----------国内の方へ-----------*/
.all_japan_page {
}
.all_japan_page .fv_sec {position: relative;background-image: url(../img/all_japan/fv_image.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;padding-bottom: 120px;overflow: hidden;}
.all_japan_page .fv_sec .page_name {
}
.all_japan_page .fv_sec .page_name .j_name {
}
.all_japan_page .fv_sec .page_name .name {
}
.all_japan_page .fv_sec .slide_wrap {margin: 0 auto;width: 100%;text-align: center;margin-top: 90px;pointer-events: none;}
.all_japan_page .fv_sec .slide_wrap .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0 !important;
}
.all_japan_page .fv_sec .slide_wrap .slider {
}
.all_japan_page .fv_sec .slide_wrap .slider .s_slide {max-width: 900px;margin: 0 auto;}
.all_japan_page .fv_sec .slide_wrap .slider .s_slide .image {margin: 0;}
.all_japan_page .fv_sec .wrap {margin: 0 auto;width: 90%;max-width: 1080px;color: #fff;margin-top: 110px;}
.all_japan_page .fv_sec .wrap .lead {margin: 0;font-size: 15px;line-height: 2.5;letter-spacing: 1.5px;margin-bottom: 50px;}
.all_japan_page .all_japan_sec {padding-top: 120px;background: #4fd2a5;background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);position: relative;}
.all_japan_page .all_japan_sec .lead_wrap {margin: 0 auto;width: 80%;max-width: 1080px;position: relative;}
.all_japan_page .all_japan_sec .lead_wrap:before {
	content:"";
	position:absolute;
	width:500px;
	height:500px;
	/* background-color:#ccc; */
	z-index:0;
	left: -63px;
	top: -125px;
	background-image: url(../img/all_japan/back_logo.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 430px;
}
.all_japan_page .all_japan_sec .lead_wrap .l_lead {margin: 0;color: #fff;font-size: 40px;line-height: 1.6;font-weight: 600;letter-spacing: 1.5px;margin-bottom: 30px;position: relative;}
.all_japan_page .all_japan_sec .lead_wrap .comment {letter-spacing: 1.5px;margin: 0;font-size: 15px;line-height: 1.7;color: #fff;padding-left: 5px;position: relative;}
.all_japan_page .all_japan_sec .lead_wrap .all_japan {position: relative;margin: 0 auto;margin-top: -80px;}
.all_japan_page .all_japan_sec .image_wrap {background-image: url(../img/all_japan/illust_back.png);background-position: center bottom;background-repeat: no-repeat;background-size: cover !important;padding-top: 372px;margin-top: -323px;background: linear-gradient(to top, transparent 0%, transparent 70%, #fff0 100%), url(../img/all_japan/illust_back.png);}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap {margin: 0 auto;width: 80%;max-width: 1080px;display: flex;flex-wrap: wrap;position: relative;padding-bottom: 12%;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left {
    width: 520px;
}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left .copy {margin: 0;font-size: 35px;line-height: 2;font-weight: 600;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left .copy .color_back {background-color: #21a0b7;padding: 4px 0px;color: #fff;letter-spacing: 1.5px;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left .comment {margin: 0;font-size: 15px;line-height: 2;color: #393939;margin-top: 20px;margin-left: 8px;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .image {max-width: 716px;width: 59%;margin: 0;line-height: 0;position: absolute;bottom: 0;right: 0;}
.all_japan_page .support_sec {background-color: #232428;padding-top: 120px;position: relative;z-index: 1;overflow: hidden;}
.all_japan_page .support_sec .sec_title {margin: 0 auto;width: 90%;max-width: 1280px;position: relative;padding-bottom: 30px;color: #fff;}
.all_japan_page .support_sec .sec_title:before {
	content: "";
    position: absolute;
    width: 60px;
    height: 5px;
    background-color: #ccc;
    bottom: 0;
    left: 5px;
    background: #4fd2a5;
    background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));
    background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);
    background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);
}
.all_japan_page .support_sec .sec_title .name {margin: 0;font-size: 50px;line-height: 1.5;font-weight: 500;letter-spacing: 1.6px;}
.all_japan_page .support_sec .sec_title .sub_name {margin: 0;font-size: 15px;line-height: 1.5;letter-spacing: 2px;padding-left: 6px;}
.all_japan_page .support_sec .section_lead {margin: 0 auto;width: 90%;max-width: 1266px;color: #e5e5e5;font-size: 15px;line-height: 1.8;letter-spacing: 1.5px;margin-top: 40px;position: relative;}
.all_japan_page .support_sec .wrap {position: relative;}
.all_japan_page .support_sec .wrap:before {
	content:"";
	position:absolute;
	width:100%;
	height: 100%;
	background-image: url(../img/all_japan/cocreation_back.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.5;
	bottom: 0;
}
.all_japan_page .support_sec .wrap .inner {margin: 0 auto;width: 90%;max-width: 1080px;position: relative;}
.all_japan_page .support_sec .wrap .inner .flex_wrap {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;margin-bottom: 70px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .left {width: 450px;margin-right: 50px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .left .name {color: #fff;font-size: 35px;line-height: 1.6;font-weight: 600;letter-spacing: 2px;margin: 0;margin-bottom: 24px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .left .comment {margin: 0;font-size: 15px;line-height: 2;color: #e5e5e5;letter-spacing: 1px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .new_image {margin: 0;width: calc(100% - 501px);max-width: 510px;}
.all_japan_page .support_sec .wrap .inner .message_box {margin: 0 auto;width: 100%;max-width: 1080px;}
.all_japan_page .support_sec .wrap .inner .message_box .name {color: #fff;font-size: 35px;line-height: 1.6;font-weight: 600;letter-spacing: 2px;margin: 0;margin-bottom: 24px;}
.all_japan_page .support_sec .wrap .inner .message_box .comment {margin: 0;font-size: 15px;line-height: 2.5;color: #e5e5e5;letter-spacing: 1px;margin-bottom: 40px;}
.all_japan_page .support_sec .wrap .inner .l_message {margin: 0;text-align: center;font-size: 40px;letter-spacing: 2px;font-weight: 600;color: #fff;line-height: 1.5;margin-bottom: 50px;margin-top: 125px;}
.all_japan_page .support_sec .wrap .inner .logo {margin: 0 auto;width: 30%;max-width: 280px;}
.all_japan_page .support_sec .loop_wrap {padding-top: 90px;display: flex;width: 100vw;height: auto;overflow: hidden;position: relative;z-index: 1;min-width: 1600px;padding-bottom: 60px;}
_.all_japan_page .support_sec .loop_wrap:before {
	content:"";
	position:absolute;
	width:510px;
	height:310px;
	/* background-color:#ccc; */
	margin:auto;
	left:0;
	right:0;
	background-image:url(../img/all_japan/loop_deco.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size:500px;
}
.all_japan_page .support_sec .loop_wrap img {
  width: 100%;
  height: auto;
  min-width: 1600px;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.all_japan_page .support_sec .loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}

.all_japan_page .support_sec .loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}

.all_japan_page .support_sec .entry_wrap {padding-top: 90px;padding-bottom: 90px;background: #4fd2a5;background: -moz-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -webkit-gradient(linear, left center, right center, from(#21708e), to(#4fd2a5));background: -webkit-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -o-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: -ms-linear-gradient(left, #21708e 0%, #4fd2a5 100%);background: linear-gradient(to right, #21708e 0%, #4fd2a5 100%);}
.all_japan_page .support_sec .entry_wrap .btn_entry {margin: 0 auto;width: 80%;max-width: 500px;text-align: center;}
.all_japan_page .support_sec .entry_wrap .btn_entry a{color: #fff;display: block;padding: 25px 60px;font-size: 18px;line-height: 1.5;text-decoration: none;letter-spacing: 1.5px;border: 1px solid #fff;position: relative;transition: 0.5s;}
.all_japan_page .support_sec .entry_wrap .btn_entry a:hover{
	background-color:#21a0b7;
}
.all_japan_page .support_sec .entry_wrap .btn_entry a:before{
	content:"";
	position:absolute;
	width:40px;
	height:50px;
	margin:auto;
	top:0;
	bottom:0;
	right:20px;
	/* background-color:#ccc; */
	background-image:url(../img/all_japan/navi_entry.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 33px;
}
/*----------NEWS-----------*/
.news_page {
}
.news_page .fv_sec {position: relative;background-image: url(../img/news/fv_image.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;padding-bottom: 120px;overflow: hidden;}
.news_page .fv_sec .pankuzu_wrap {
}
.news_page .fv_sec .pankuzu_wrap .relative {
}
.news_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.news_page .fv_sec .page_name {padding-top: 175px;}
.news_page .fv_sec .page_name .j_name {
}
.news_page .fv_sec .page_name .name {
}
.news_page .news_list_sec {padding-top: 90px;padding-bottom: 90px;background-color: #1e1e1e;}
.news_page .news_list_sec .wrap {margin: 0 auto;width: 90%;max-width: 980px;}
.news_page .news_list_sec .wrap .s_news {
}
.news_page .news_list_sec .wrap .s_news a {
color: #c2c2c2;
    text-decoration: none;
    padding-bottom: 30px;
    display: block;
    padding-top: 30px;
    position: relative;
    padding-right: 80px;
    transition: 0.5s;
    border-bottom: 1px solid;
}
.news_page .news_list_sec .wrap .s_news a:before {
content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    /* background-color: #ccc; */
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../img/common/navi_link_gr.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
}
.news_page .news_list_sec .wrap .s_news a:hover {
	color:#00A0B8;
	border-bottom:1px solid #fff;
}
.news_page .news_list_sec .wrap .s_news  .flex_wrap {display: flex;flex-wrap: wrap;}
.news_page .news_list_sec .wrap .s_news  .flex_wrap .date {margin: 0;font-size: 13px;line-height: 1.5;letter-spacing: 1.5px;width: 110px;border-right: 1px solid;padding-top: 2px;}
.news_page .news_list_sec .wrap .s_news  .flex_wrap .comment {margin: 0;font-size: 14px;line-height: 1.7;width: calc(100% - 150px);padding-left: 35px;}

.news_post_page {
}
.news_post_page .fv_sec {position: relative;background-image: url(../img/news/fv_image.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;padding-bottom: 80px;overflow: hidden;}
.news_post_page .fv_sec .pankuzu_wrap {
}
.news_post_page .fv_sec .pankuzu_wrap .relative {
}
.news_post_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.news_post_page .fv_sec .page_name {padding-top: 130px;}
.news_post_page .fv_sec .page_name .j_name {font-size: 40px;}
.news_post_page .fv_sec .page_name .name {font-size: 15px;margin-left: 6px;}
.news_post_page .news_post_sec {padding-top: 60px;padding-bottom: 60px;background-color: #1e1e1e;}
.news_post_page .news_post_sec .wrap {background-color: #fff;padding: 5%;margin: 0 auto;width: 85%;border-radius: 10px;max-width: 900px;}
.news_post_page .news_post_sec .wrap .cap {color: #393939;border-bottom: 1px solid #393939;padding-bottom: 14px;}
.news_post_page .news_post_sec .wrap .cap .date {margin: 0;font-size: 13px;line-height: 1.5;}
.news_post_page .news_post_sec .wrap .cap .name {margin: 0;font-size: 20px;line-height: 1.5;font-weight: 500;}
.news_post_page .news_post_sec .wrap .main {color: #393939;padding-top: 25px;padding-bottom: 90px;}
.news_post_page .news_post_sec .wrap .main .comment {margin: 0;font-size: 15px;line-height: 2;}
.news_post_page .news_post_sec .wrap .main .image {margin: 0;margin-top: 30px;margin-bottom: 30px;}
.news_post_page .news_post_sec .wrap .btn_area {text-align: right;}
.news_post_page .news_post_sec .wrap .btn_area .btn_link {text-align: center;margin: 0;width: 75%;max-width: 339px;display: inline-block;}
.news_post_page .news_post_sec .wrap .btn_area .btn_link a{
	color: #00A0B8;
	text-decoration: none;
	border: 1px solid #00A0B8;
	padding: 15px 40px;
	display: block;
	border-radius: 50px;
	font-size: 15px;
	line-height: 1.5;
	position:relative;
	transition: 0.5s;
}
.news_post_page .news_post_sec .wrap .btn_area .btn_link a:hover{
	opacity:0.7;
}
.news_post_page .news_post_sec .wrap .btn_area .btn_link a:before{
	content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    /* background-color: #ccc; */
    right: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../img/common/navi_link_bl.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}
.news_post_page .sp_pankuzu_wrap.sp {
}
.news_post_page .sp_pankuzu_wrap.sp .relative {
}
.news_post_page .sp_pankuzu_wrap.sp .relative .pkz {
}
.news_post_page .news_post_sec .event_info_wrap {margin: 0 auto;margin-top: 40px;max-width: 840px;}
.news_post_page .news_post_sec .event_info_wrap table {border-spacing: 0px;border: 1px solid #c5c5c5;}
.news_post_page .news_post_sec .event_info_wrap tbody {
}
.news_post_page .news_post_sec .event_info_wrap tr {}
.news_post_page .news_post_sec .event_info_wrap tr:last-child td {border-bottom: none;}
.news_post_page .news_post_sec .event_info_wrap tr:last-child td a {
	color: #00A0B8;
	word-break: break-all;
}
.news_post_page .news_post_sec .event_info_wrap td {font-size: 14px;line-height: 1.5;color: #393939;padding: 13px 24px;border-bottom: 1px solid #c5c5c5;}
.news_post_page .news_post_sec .event_info_wrap td:nth-child(1) {width: 80px;background-color: #f7f7f7;text-align: center;}
@media only screen and (max-width: 1080px) {
.home .fv_sec #opening {
    height: 800px;
}

}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
body {
		min-width: inherit;
}
  .pc_tab {display: none;
  }
.header .pc_menu {/* display:none; */overflow: inherit;height: 70px;}
.header .sp_menu {display:
    block;position: relative;
  }
.openbtn1 {
    top: -63px;
    right: 0px;
    width: 85px;
    height: 55px;
    border-left: 1px solid #ffffff;
}
.openbtn1 span:nth-of-type(1) {
    top: 15px;
}
.openbtn1 span:nth-of-type(2) {
    top: 28px;
}
.openbtn1 span:nth-of-type(3) {
    top: 41px;
}
.header .sp_menu .openbtn1.fixed {
    height: 50px;
    top: 6px;
}
.header .sp_menu .sp_logo {position:
  absolute;width: 115px;top: 10px;left: 20px;display: block;margin: 0;margin-top: 10px;
}
.header .sp_menu #g-nav #g-nav-list .logo {
    width: 155px;
    padding-left: 5%;
    padding-top: 12px;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap {
    margin: 0 auto;
    width: 90%;
    display: block;
    margin-top: 80px;
    padding-bottom: 0px;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .copy {
    width: 50%;
    max-width: 230px;
    margin: 0 auto;
    margin-bottom: 39px;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right {
    width: auto;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu {
    margin: 0;
    margin-top: 0px;
    padding-left: 0;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu .name {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    display: block;
    padding-top: 20px;
}
.header .sp_menu #g-nav #g-nav-list .flex_wrap .right .menu:before {
    display:none;
}
.header .sp_menu #g-nav #g-nav-list .bottoms {
    margin: 0 auto;
    width: 90%;
    display: flex;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu {
    margin: 0;
    width: 50%;
    margin-bottom: 10px;
}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu a {
    padding: 0;
    display: block;
    border: none;
    padding-left: 20px;
    font-size: 14px;
    position: relative;
}
.header .sp_menu #g-nav #g-nav-list .bottoms .sub_menu a:before {
	bottom: inherit;
	content:"・";
	position:absolute;
	left:0;
	height: inherit;
	right: inherit;
}
.header .pc_menu .inner .logo {
    width: 193px;
    position: absolute;
    margin: 0;
    left: 20px;
    top: 24px;
}
.header .pc_menu.fixed .inner .logo {
    width: 180px;
    top: 21px;
}
.header .pc_menu .inner .link_box {/* display:none; */float: none;margin: 0;padding-top: 70px;flex-wrap: wrap;}
.header .pc_menu.fixed .inner .link_box {
   display:none;
}
.header .pc_menu .inner .link_box .cta {
    margin: 0;
    width: 50%;
}
.header .pc_menu .inner .link_box .cta a {
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    padding: 15px 0;
    border-radius: 0px;
    text-align: center;
}
.header .pc_menu .inner .link_box .cta .line {
    background-color: #efece7;
    color: #816239;
}
.header .pc_menu .inner .link_box .cta a:before {
    width: 30px;
    height: 30px;
    left: 13px;
}

.header .language_box {position: relative;right: inherit;top: inherit;margin: 0 auto;width: 87%;margin-top: 25px;margin-bottom: 90px;}
.header .language_box .main_ac_btn {
}
.header .language_box .main_ac_btn .select_language {text-align: center;}
.header .language_box .sub_ac_box {position: relative !important;top: inherit !important;left: inherit !important;right: inherit !important;background: none;}
.header .language_box .sub_ac_box .lang_list {
}
.header .language_box .sub_ac_box .lang_list .change {
}
.header .language_box .sub_ac_box .lang_list .change a {
    padding: 6px 5px;
}
.header .language_box .sub_ac_box .lang_list .change a:before {
    width: 12px;
    height: 12px;
    background-size: 6px;
    top: 12px;
}

.home {
}
.home .btn_contact {
    width: 70px;
}
.home .fv_sec {/* padding-top: 315px; *//* padding-bottom: 110px; *//* margin-top: -90px; *//* background-position: 30%; */}
.home .fv_sec #opening{
	/* padding-top: 315px; */
	/* padding-bottom: 110px; */
	height: 85vh;
	display:none;
}
.home .fv_sec #opening_sp{
	/* padding-top: 315px; */
	/* padding-bottom: 110px; */
	display: inherit;
	height: 80vh;
}
.home .fv_sec .wrap {width: 85%;bottom: 6%;}
.home .fv_sec .wrap .main_title {margin: 0;width: 100%;}
.home .fv_sec .wrap .sub_copy {
    width: 100%;
}
.home .fv_sec .wrap .news {width: auto;}
.home .fv_sec .wrap .news .flex_wrap {border-radius: 7px;background-color: #0000007a;padding-right: 40px;font-size: 12px;}
.home .fv_sec .wrap .news .flex_wrap .date {margin-bottom: 5px;border: none;}
.home .fv_sec .wrap .news .flex_wrap .comment {
}
.home .journey_sec {padding-top: 60px;padding-bottom: 60px;}
.home .journey_sec .lead_box {
}
.home .journey_sec .lead_box .logo {
}
.home .journey_sec .lead_box .lead {margin: 0 auto;width: 78%;font-size: 15px;line-height: 2;margin-top: 20px;text-align: left;}
.home .journey_sec .journey_wrap {margin-top: 60px;width: 81%;padding-top: 55px;padding-bottom: 55px;}
.home .journey_sec .journey_wrap:before {
    border-radius: 10px;
}
.home .journey_sec .journey_wrap .wrap_name {font-size: 16px;margin-bottom: 10px;}
.home .journey_sec .journey_wrap .journey {
    width: 70%;
}
.home .journey_sec .journey_wrap .btn_area {margin-top: 45px;}
.home .journey_sec .journey_wrap .btn_area .s_btn {
}
.home .journey_sec .journey_wrap .btn_area .s_btn a {
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.home .journey_sec .journey_wrap .btn_area .s_btn  .name {font-size: 14px;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .j_name {font-size: 20px;word-break: break-all;display: block;margin-top: 8px;padding-right: 50px;}
.home .journey_sec .journey_wrap .btn_area .s_btn .j_name span {
    width: 124px;
    padding-right: 0;
    display: block;
    position: relative;
    top: 9px;
}
.home .journey_sec .journey_wrap .btn_area .s_btn  .btn_view {right: 4px;width: 55px;height: 55px;top: inherit;bottom: 38px;}
.home .journey_sec .journey_wrap .btn_area .s_btn  .btn_view .view {padding-top: 49px;}
.home .journey_sec .journey_wrap .btn_area .s_btn .btn_view .view:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    /* background-color: #ccc; */
    top: 0px;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url(../img/common/navi_btn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 39px;
}
.home .journey_sec .journey_wrap .btn_area .s_btn  .sub_name {font-size: 12px;}
.home .movie_sec {padding-top: 30px;padding-bottom: 30px;}
.home .movie_sec .wrap {
}
.home .movie_sec .wrap .s_name {
}
.home .movie_sec .wrap .movie {
}
.home .movie_sec .wrap .movie .thumb {
}
.home .movie_sec .wrap .movie .play_movie {width: 90px;height: 90px;}

.home .ebook_sec {
    /* padding: 5%; */
    padding-bottom: 50px;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}
.home .ebook_sec .magazine-viewport {
    padding-bottom: 0;
    zoom: 90%;
    /* height: 84vh !important; */
}
.magazine-viewport .next-button {
    right: -3px;
    z-index: 38;
}
.magazine-viewport .previous-button {
    left: 1px;
    z-index: 38;
}
.ebook_sec .bottom {
   display:none;
}
.home .ebook_sec #canvas {
    padding-bottom: 0px;
}
.home .ebook_sec .zoom-icon {
    top: 10px;
    right: 7px;
    background-size: 42px;
}
.home .ebook_sec .magazine-viewport .magazine {
}
.home .ebook_sec .magazine-viewport .bottom {
    bottom: -20px;
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 999;
}
.home .ebook_sec .turnjs-slider {
    width: auto;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin: 20px auto;
}
.home .ebook_sec .turnjs-slider .ui-slider-horizontal {
    height: 31px;
    width: calc(100% - 40px);
    margin-left: 0;
}
.home .ebook_sec .turnjs-slider .ui-slider-handle {
    position: absolute;
    z-index: 0;
    width: 40px;
    top: -7px;
    height: 20px;
    cursor: default;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-left: 0;
}
.home .news_sec {
}
.home .news_sec .wrap {display: block;}
.home .news_sec .wrap .left {width: auto;padding-top: 60px;padding-bottom: 60px;}
.home .news_sec .wrap .left .wrap_name {font-size: 25px;}
.home .news_sec .wrap .left .view_all {margin: 0 auto;width: 70%;}
.home .news_sec .wrap .left .view_all a {
    padding: 14px 60px;
    font-size: 14px;
    border-radius: 30px;
    display: block;
    margin-top: 40px;
}
.home .news_sec .wrap .right {width: auto;padding-top: 10px;padding-bottom: 25px;}
.home .news_sec .wrap .right .news_box {width: 85%;}
.home .news_sec .wrap .right .news_box .s_news {
}
.home .news_sec .wrap .right .news_box .s_news a {
    padding-bottom: 30px;
    display: block;
    padding-top: 30px;
    padding-right: 34px;
}
.home .news_sec .wrap .right .news_box .s_news:last-child a {
	border-bottom:none;
}
.home .news_sec .wrap .right .news_box .s_news a:before {
    width: 30px;
    height: 60px;
    background-size: 18px;
}
.home .news_sec .wrap .right .news_box .s_news  .flex_wrap {display: block;}
.home .news_sec .wrap .right .news_box .s_news  .flex_wrap .date {font-size: 12px;margin-bottom: 7px;width: auto;border: none;}
.home .news_sec .wrap .right .news_box .s_news  .flex_wrap .comment {padding: 0;width: auto;}
/*----------パンクズ SP-----------*/
.fv_sec .pankuzu_wrap {
display:none;
}
/*----------discovery SP-----------*/
.discovery_page .fv_sec .page_name {
    margin: 0 auto;
    width: 90%;
    padding-top: 100px;
}
.discovery_page .fv_sec .page_name .j_name {
    margin: 0;
    font-size: 24px;
    color: #fff;
    display: block;
}
.discovery_page .fv_sec .page_name .j_name span {
    display: block;
    width: 160px;
    padding-right: 0;
    top: 18px;
    position: relative;
}
.discovery_page .fv_sec .page_name .name {
    font-size: 16px;
}
.discovery_page .fv_sec .wrap {
    padding-top: 115px;
}
.discovery_page .change_back_sec .one .wrap .comment {
    margin: 0;
    font-size: 15px;
    line-height: 3;
    letter-spacing: 1px;
}
.discovery_page .change_back_sec .one .wrap .l_comment {
    font-size: 19px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.discovery_page .change_back_sec .one .wrap .s_btn a {
    display: block;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .name {
    font-size: 14px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .sub_name {
font-size:12px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .j_name {
        font-size: 20px;
        word-break: break-all;
        display: block;
        margin-top: 8px;
        padding-right: 50px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .j_name span {
width: 124px;
        padding-right: 0;
        display: block;
        position: relative;
        top: 9px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .btn_view {
        right: 4px;
        width: 55px;
        height: 55px;
        top: inherit;
        bottom: 38px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .btn_view .view {
padding-top: 49px;
}
.discovery_page .change_back_sec .one .wrap .s_btn .btn_view .view:before {
        width: 50px;
        height: 50px;
        top: 0px;
        margin: auto;
        left: 0;
        right: 0;
        background-image: url(../img/common/navi_btn.png);
        background-size: 39px;
}
.discovery_page .sec_title {
}
.discovery_page .sec_title .name {font-size: 25px !important;}
.discovery_page .sec_title .sub_name {font-size: 13px !important;}
	
.discovery_page .tour_sec {padding-top: 60px;padding-bottom: 0;}
.discovery_page .tour_sec .sec_title {
}
.discovery_page .tour_sec .sec_title .name {font-size: 25px;}
.discovery_page .tour_sec .sec_title .sub_name {font-size: 13px;}
.discovery_page .tour_sec .program_lead {margin-bottom: 55px;}
.discovery_page .tour_sec .lead_wrap {padding-bottom: 60px;}
.discovery_page .tour_sec .lead_wrap .loop_wrap {
}
.discovery_page .tour_sec .lead_wrap .loop_wrap img {
    min-width: 800px;
}
.discovery_page .tour_sec .lead_wrap .inner {margin-top: 13px;}
.discovery_page .tour_sec .lead_wrap .inner .l_name {font-size: 27px;}
.discovery_page .tour_sec .lead_wrap .inner .sample_plan {margin: 0 auto;width: 100%;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap {display: block;margin-top: 15px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .comment {margin: 0 auto;width: 96%;font-size: 14px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .btn_link {
    margin: 0 auto;
    width: 80%;
    margin-top: 40px;
}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .fee {width: 90%;margin: 0 auto;font-size: 14px;}
.discovery_page .tour_sec .lead_wrap .inner .flex_wrap .fee span {
    padding: 10px 30px;
    border-radius: 45px;
    display: block;
    margin-top: 20px;
}
.discovery_page .tour_sec .program_wrap {padding-top: 60px;padding-bottom: 60px;}
.discovery_page .tour_sec .wrap_title_box {padding-left: 30px;}
.discovery_page .tour_sec .wrap_title_box:before {
    width: 20px;
    left: 0px;
    top: 39px;
}
.discovery_page .tour_sec .program_wrap .content {
    margin-top: 40px;
}
.discovery_page .tour_sec .wrap_title_box .sub {
}
.discovery_page .tour_sec .wrap_title_box .name {font-size: 24px;}
.discovery_page .tour_sec .program_wrap .tour_info {
}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn {padding: 15px;font-size: 12px;padding-right: 64px;}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn:before {
    background-size: 40px;
    width: 50px;
    height: 50px;
    right: 14px;
    top: 20px;
}
.discovery_page .tour_sec .program_wrap .tour_info .main_ac_btn .flex span {
    width: 90px;
    padding-left: 15px;
    top: 7px;
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .tour_name {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .plan_name {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .comment {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .spot {
}
.discovery_page .tour_sec .program_wrap .tour_info .sub_ac_box .detail_box .inner .s_tour .spot_box .s_comment {
}
.discovery_page .tour_sec .course_wrap {padding-bottom: 60px;}
.discovery_page .tour_sec .course_wrap .wrap_title_box {
}
.discovery_page .tour_sec .course_wrap .wrap_title_box .sub {
}
.discovery_page .tour_sec .course_wrap .wrap_title_box .name {
}
.discovery_page .tour_sec .course_wrap .tab_box {display: flex;justify-content: center;}
.discovery_page .tour_sec .course_wrap .tab_box .plan {
}
.discovery_page .tour_sec .course_wrap .tab_box .plan .day01.active {
}
.discovery_page .tour_sec .course_wrap .tab_box .plan img {
    width: 85%;
}
.discovery_page .tour_sec .course_wrap .tab_box .plan .day02 {
}
.discovery_page .tour_sec .course_wrap .tab_box .plan .day03 {
}
.discovery_page .tour_sec .course_wrap .content {
}
.discovery_page .tour_sec .course_wrap .content .course_map {
}
.discovery_page .tour_sec .course_wrap .content.no_disp {
}
.discovery_page .tour_sec .course_wrap .content.no_disp .course_map {
}
.discovery_page .tour_sec .entry_wrap {padding-top: 60px;padding-bottom: 60px;}
.discovery_page .tour_sec .entry_wrap .wrap_title_box {
}
.discovery_page .tour_sec .entry_wrap .wrap_title_box .sub {
}
.discovery_page .tour_sec .entry_wrap .wrap_title_box .name {
}
.discovery_page .tour_sec .entry_wrap .inner {margin-top: 60px;}
.discovery_page .tour_sec .entry_wrap .inner .info_box {
}
.discovery_page .tour_sec .entry_wrap .inner .info_box .name {font-size: 17px;}
.discovery_page .tour_sec .entry_wrap .inner .info_box .num {font-size: 14px;}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap {display: block;}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap:before {
    display:none;
}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box {width: auto;margin-bottom: 45px;}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box .name {
}
.discovery_page .tour_sec .entry_wrap .inner .flex_wrap .info_box .list {
}
.discovery_page .tour_sec .entry_wrap .inner .confirm {text-align: left;line-height: 1.7;margin: 0 auto;width: 90%;}
.discovery_page .tour_sec .entry_wrap .inner .btn_area {display: block;}
.discovery_page .tour_sec .entry_wrap .inner .btn_area .btn_link {width: 89%;margin: 0 auto;margin-bottom: 15px;}

.discovery_page .new_biz_sec {padding-top: 60px;padding-bottom: 80px;}
.discovery_page .new_biz_sec .loop_wrap {
    min-width: 1000px;
    margin-bottom: -51px;
}
.discovery_page .new_biz_sec .loop_wrap img {
    min-width: 1000px;
}
.discovery_page .new_biz_sec .wrap {
}
.discovery_page .new_biz_sec .wrap .lead {font-size: 29px;letter-spacing: 0px;}
.discovery_page .new_biz_sec .wrap .lead .color {
}
.discovery_page .new_biz_sec .wrap .sub_lead {font-size: 18px;margin-bottom: 50px;}
.discovery_page .new_biz_sec .wrap .sub_lead .bg_color {
}
.discovery_page .new_biz_sec .wrap .comment {font-size: 15px;}
.discovery_page .ex_map_sec {padding-top: 60px;padding-bottom: 70px;}
.discovery_page .ex_map_sec .wrap {
}
.discovery_page .ex_map_sec .wrap .map_name {
    width: 190px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.discovery_page .ex_map_sec .wrap .map {
}
.discovery_page .ex_map_sec .wrap .center {width: 100%;height: 100%;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot01 {left: 52%;top: 61%;/* position: relative; */width: 16%;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot02 {left: 39%;top: 70%;/* position: relative; */width: 13%;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot03 {left: 22%;top: 73%;/* position: relative; */width: 15%;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot04 {left: 5%;top: 82%;/* position: relative; */width: 15%;}
.discovery_page .ex_map_sec .wrap .center .modal_box.spot05 {left: 61%;top: 39%;/* position: relative; */width: 13%;}
.discovery_page .ex_map_sec .wrap .center .modal_box .btn_more.animation {
}
.discovery_page .ex_map_sec .wrap .center .modal_box .btn_more.animation .btn_modal {
}
.discovery_page .ex_map_sec .wrap .center .modal_box .modal_content.fade.modal_append {
}
.discovery_page .ex_map_sec .wrap .center .modal_box .modal_content.fade.modal_append .modal_disp {
}
.discovery_page .ex_map_sec .wrap .center .modal_box .modal_content.fade.modal_append .modal_disp .close {
}
.discovery_page .ex_map_sec .wrap .center .modal_box .modal_content.fade.modal_append .modal_disp .detail_box {
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap {
    display: block;
    margin: 0 auto;
    width: 90%;
}
.discovery_page .ex_map_sec .wrap .modal_box .modal_content .modal_disp .detail_box .exhibition_wrap .flex_wrap .s_box {
    width: auto;
    margin-bottom: 40px;
}
.discovery_page .v_exhi_lead_sec {padding-top: 50px;}
.discovery_page .v_exhi_lead_sec .lead_box .l_name {
   margin:0 auto;
   width: 93%;
}
.discovery_page .v_exhi_lead_sec .lead_box .m_name {
    margin: 0;
    font-size: 21px;
    margin-bottom: 58px;
    text-align: center;
}
.discovery_page .v_exhi_lead_sec .lead_box .comment {
    margin: 0;
    font-size: 15px;
}
.discovery_page .v_exhi_lead_sec .lead_box .attention_box {
    text-align: left;
    height: 45px;
    margin-top: 29px;
}
.discovery_page .v_exhi_lead_sec .lead_box .attention {font-size: 15px;padding-left: 39px;display: block;}

	
.discovery_page .group_sec {
}
.discovery_page .group_sec .sec_title {
}
.discovery_page .group_sec .sec_title .name {
}
.discovery_page .group_sec .sec_title .sub_name {
}
.discovery_page .group_sec .wrap {background-size: 450px;}
.discovery_page .group_sec .wrap .spot_box {width: auto;height: 415px;}
.discovery_page .group_sec .wrap .spot_box .center {width: 51px;height: 51px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot01 {left: 29px;top: -16px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot02 {left: 13px;top: -104px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot03 {left: -61px;top: -56px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot04 {left: 127px;top: -58px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot05 {left: 97px;top: 35px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot06 {left: -111px;top: 78px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot07 {left: -8px;top: 119px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box.spot08 {left: 0px;top: -0px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box {
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .btn_more {width: 50px;height: 50px;}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append {
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append .modal_disp {
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append .modal_disp .close {
}
.discovery_page .group_sec .wrap .spot_box .center .modal_box .modal_content.fade.modal_append .modal_disp .detail_box {
}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap {
    display: block;
}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .left {
    width: auto;
    margin-right: 0px;
}
.discovery_page .group_sec .wrap .spot_box .detail_box .service_wrap .image {
    width: 95%;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
}
.discovery_page .group_sec .others_wrap {width: 80%;padding-top: 40px;margin-top: 6px;}
.discovery_page .group_sec .others_wrap .name {text-align: center;font-size: 15px;}
.discovery_page .group_sec .others_wrap .name:before {
    left: 0;
	right:0;
	margin:auto;
}
.others_wrap .s_others {
}
.others_wrap .s_others:first-child {
    margin-bottom: 75px;
}
.others_wrap .s_others .name {
}
.others_wrap .s_others .flex_wrap {
}
.others_wrap .s_others .flex_wrap .catalog_lead {width: auto;}
.others_wrap .s_others .flex_wrap .catalog_lead .comment {
}
.others_wrap .s_others .flex_wrap .catalog_lead .btn_link {
}
.others_wrap .s_others .flex_wrap .catalog_lead .btn_link a {
    padding: 20px 50px;
    max-width: none;
    font-size: 16px;
}
.others_wrap .s_others .flex_wrap .catalog_image {margin: 0 auto;width: 50%;max-width: 175px;margin-bottom: 24px;}

.discovery_page .group_sec .others_wrap .flex_wrap {display: block;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box {width: auto;margin-bottom: 40px;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .ctg {margin-bottom: 10px;}
.discovery_page .group_sec .others_wrap .flex_wrap .s_box .s_company {
}

.discovery_page .gallery_sec {
}
.discovery_page .gallery_sec .sec_title {
}
.discovery_page .gallery_sec .sec_title .name {
}
.discovery_page .gallery_sec .sec_title .sub_name {
}
.discovery_page .gallery_sec .wrap {
}
.discovery_page .gallery_sec .wrap .slide_wrap {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide .thumb {
}
.discovery_page .gallery_sec .wrap .slide_wrap .slider .s_slide .thumb .example-image-link {
}
.discovery_page .gallery_sec .slick-dots {
    bottom: 108px;
    padding: 0;
    margin: auto;
    width: 90%;
    left: 0;
    right: 0;
    text-align: center;
}
.discovery_page .gallery_sec .slick-prev, .discovery_page .gallery_sec .slick-next {
    height: 60px;
    width: 60px;
    top: inherit;
    bottom: 5px;
}
.discovery_page .gallery_sec .slick-prev {
    left: -80px;
    right: 0;
    margin: auto;
}
.discovery_page .gallery_sec .slick-next {
    left: 0px;
    right: -80px;
    margin: auto;
}
/*----------海外の方へSP-----------*/
.asean_page {
}
.asean_page .fv_sec {
}
.asean_page {
}
.asean_page .fv_sec {

}

.asean_page .fv_sec .page_name {margin: 0 auto;width: 90%;padding-top: 100px;}
.asean_page .fv_sec .page_name .j_name {margin: 0;font-size: 24px;color: #fff;display: block;}
.asean_page .fv_sec .page_name .j_name span{
        display: block;
        width: 160px;
        padding-right: 0;
        top: 18px;
        position: relative;
}
.asean_page .fv_sec .page_name .name {font-size: 16px;}
.asean_page .fv_sec .wrap {padding-top: 75px;padding-bottom: 150px;}
.asean_page .fv_sec .wrap .main_copy {width: 60%;}
.asean_page .lead_sec {padding-top: 25px;padding-bottom: 0;}
.asean_page .lead_sec .wrap {display: block;}
.asean_page .lead_sec .wrap .image {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 25px;
}
.asean_page .lead_sec .wrap .lead {width: auto;font-size: 15px;}
.asean_page .consulting_sec {padding-top: 90px;padding-bottom: 0;}
.asean_page .consulting_sec .sec_title {
}
.asean_page .consulting_sec .sec_title .name {font-size: 25px;margin-bottom: 5px;}
.asean_page .consulting_sec .sec_title .sub_name {font-size: 13px;}
.asean_page .consulting_sec .wrap {margin-top: 50px;}
.asean_page .consulting_sec .wrap .creation_box {width: calc(90% - 125px);padding: 60px;/* border: none; */padding-top: 20px;padding-bottom: 20px;}
.asean_page .consulting_sec .wrap .creation_box .copy {
}
.asean_page .consulting_sec .wrap .creation_box .comment {
}
.asean_page .consulting_sec .wrap .goals_wrap {padding-top: 40px;}
.asean_page .consulting_sec .wrap .goals_wrap .wrap_name {font-size: 25px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap {margin-top: 15px;padding-top: 40px;padding-bottom: 60px;display: block;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal {width: auto;max-width: none;border-bottom: 1px solid #ccc;margin: 0 auto;width: 75%;border-right: none;padding-top: 35px;padding-bottom: 40px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal:last-child {
    border: none;
}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal .s_name {font-size: 20px;margin-bottom: 25px;}
.asean_page .consulting_sec .wrap .goals_wrap .flex_wrap .s_goal .comment {
}
.asean_page .adv_sec {
}
.asean_page .adv_sec .map_wrap {padding-top: 60px;}
.asean_page .adv_sec .map_wrap .wrap_name {
}
.asean_page .adv_sec .map_wrap .wrap_name .name {font-size: 25px;margin-bottom: 20px;}
.asean_page .adv_sec .map_wrap .wrap_name .comment {font-size: 15px;letter-spacing: 1px;}
.asean_page .adv_sec .map_wrap .spot_box {
    margin: 0 auto;
    width: auto;
    height: 642px;
}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot01{position: absolute;left: -115px;top: -234px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot02{position: absolute;left: -46px;top: 138px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot03{position: absolute;left: -73px;top: -109px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot04{position: absolute;top: 12px;left: -128px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot05{position: absolute;left: -115px;top: 250px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot06{position: absolute;right: -99px;top: -255px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot07{right: -96px;position: absolute;top: 12px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot08{position: absolute;right: -36px;top: 299px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot09{right: -72px;position: absolute;top: -124px;}
.asean_page .adv_sec .map_wrap .spot_box .center .name.spot10{position: absolute;right: -102px;top: 194px;}
.asean_page .adv_sec .adv_wrap {padding-top: 60px;padding-bottom: 60px;}
.asean_page .adv_sec .adv_wrap .wrap_name {font-size: 25px;margin-bottom: 20px;}
.asean_page .adv_sec .adv_wrap .comment {font-size: 15px;}
.asean_page .adv_sec .asset_wrap {padding-top: 60px;padding-bottom: 60px;}
.asean_page .adv_sec .asset_wrap .flex_wrap {display: block;margin-top: 30px;}
.asean_page .adv_sec .asset_wrap .flex_wrap .s_wrap {width: 80%;margin: 0 auto;}
.asean_page .adv_sec .asset_wrap .flex_wrap .s_wrap .name {
}
.asean_page .adv_sec .asset_wrap .btn_link {
}
.asean_page .adv_sec .asset_wrap .btn_link a {
    padding: 20px;
    padding-right: 40px;
    text-align: left;
}
.asean_page .adv_sec .asset_wrap .btn_link a:before {
    width: 45px;
    height: 45px;
    right: 7px;
    background-size: 35px;
}
.asean_page .adv_sec .asset_wrap .btn_link  .sub {left: 0;}
.asean_page .adv_sec .asset_wrap .btn_link  .name {font-size: 20px;}

/*----------Fielad Adventure SP-----------*/
.field_adv_page {
}
.field_adv_page .fv_sec {
    min-height: 400px;
}
.field_adv_page .fv_sec .pankuzu_wrap {
}
.field_adv_page .fv_sec .pankuzu_wrap .relative {
}
.field_adv_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.field_adv_page .fv_sec .flex_wrap {margin: 0 auto;width: 85%;padding-top: 120px;display: block;padding-bottom: 190px;}
.field_adv_page .fv_sec .flex_wrap .page_name {width: auto;margin: 0;}
.field_adv_page .fv_sec .flex_wrap .page_name .s_name {font-size: 16px;}
.field_adv_page .fv_sec .flex_wrap .page_name .l_name {margin: 0;font-size: 24px;}
.field_adv_page .fv_sec .flex_wrap .lead {width: auto;font-size: 14px;margin-top: 40px;}
.field_adv_page .fv_sec .scroll_down {width: 26px;}
.field_adv_page .adv_sec {
}
.field_adv_page .adv_sec .map_wrap {padding-top: 60px;}
.field_adv_page .adv_sec .map_wrap .spot_box {margin: 0 auto;width: auto;height: 642px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center {
}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot01{position: absolute;left: -115px;top: -234px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot02{position: absolute;left: -46px;top: 138px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot03{position: absolute;left: -73px;top: -109px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot04{position: absolute;top: 12px;left: -128px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot05{position: absolute;left: -115px;top: 250px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot06{position: absolute;right: -99px;top: -255px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot07{right: -96px;position: absolute;top: 12px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot08{position: absolute;right: -36px;top: 299px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot09{right: -72px;position: absolute;top: -124px;}
.field_adv_page .adv_sec .map_wrap .spot_box .center .name.spot10{position: absolute;right: -102px;top: 194px;}

/*----------Field詳細 SP-----------*/
.field_content_page {
}
.field_content_page .fv_sec {min-height: 0;}
.field_content_page .fv_sec:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 200px;
    background-color: #ccc;
    right: 0;
    top: inherit;
    bottom: -24px;
    left: 0;
    margin: auto;
}
.field_content_page .fv_sec .pankuzu_wrap {
}
.field_content_page .fv_sec .pankuzu_wrap .relative {
}
.field_content_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.field_content_page .fv_sec .page_image_wrap {padding-bottom: 215px;}
.field_content_page .fv_sec .page_image_wrap .page_name {padding-top: 120px;}
.field_content_page .fv_sec .page_image_wrap .page_name .s_name {font-size: 15px;}
.field_content_page .fv_sec .page_image_wrap .page_name .l_name {margin: 0;font-size: 24px;width: auto;}
.field_content_page .lead_sec {padding-top: 70px;padding-bottom: 60px;}
.field_content_page .lead_sec .wrap {
}
.field_content_page .lead_sec .wrap .comment {font-size: 15px;}
.field_content_page .image_sec {height: 300px;background-attachment: inherit;}
.field_content_page .content_sec {padding-top: 28px;}
.field_content_page .content_sec .wrap {display: block;}
.field_content_page .content_sec .wrap .side {margin: 0 auto;width: 95%;margin-bottom: 40px;}
.field_content_page .content_sec .wrap .side .image {
}
.field_content_page .content_sec .wrap .main {margin: 0 auto;width: 95%;}
.field_content_page .content_sec .wrap .main .s_wrap {margin-bottom: 60px;}
.field_content_page .content_sec .wrap .main .s_wrap .name {font-size: 20px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box {
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment.list {
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment {
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .l_comment {margin: 0;margin-bottom: 10px;font-weight: 600;font-size: 17px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box {padding-bottom: 52px;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .image {
}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .image_box .zoom {right: 0;}
.field_content_page .content_sec .wrap .main .s_wrap .comment_box .comment .l_bold {font-size: 17px;font-weight: 600;}

/*----------国内の方へSP-----------*/
.all_japan_page {
}
.all_japan_page .fv_sec {
    padding-bottom: 60px;
}
.all_japan_page .fv_sec .page_name {margin: 0 auto;width: 90%;padding-top: 100px;}
.all_japan_page .fv_sec .page_name .j_name {margin: 0;font-size: 24px;color: #fff;display: block;}
.fv_sec .page_name .j_name span {
        display: block;
        width: 160px;
        padding-right: 0;
        top: 18px;
        position: relative;
}
.all_japan_page .fv_sec .page_name .name {font-size: 16px;}
.all_japan_page .fv_sec .slide_wrap {
    margin-top: 50px;
}
.all_japan_page .fv_sec .slide_wrap .slider {
}
.all_japan_page .fv_sec .slide_wrap .slider .s_slide {
}
.all_japan_page .fv_sec .slide_wrap .slider .s_slide .image {
}
.all_japan_page .fv_sec .wrap {margin-top: 60px;}
.all_japan_page .fv_sec .wrap .lead {font-size: 14px;line-height: 2;margin-bottom: 35px;}
.all_japan_page .all_japan_sec {padding-top: 60px;}
.all_japan_page .all_japan_sec .lead_wrap {
}
.all_japan_page .all_japan_sec .lead_wrap:before {
    margin: auto;
    left: 0;
    right: 0;
    width: 90%;
    height: 500px;
    z-index: 0;
    top: -154px;
    background-position: center;
    background-size: 99%;
}
.all_japan_page .all_japan_sec .lead_wrap .l_lead {font-size: 24px;}
.all_japan_page .all_japan_sec .lead_wrap .comment {
}
.all_japan_page .all_japan_sec .lead_wrap .comment br{
	display:none;
}
.all_japan_page .all_japan_sec .lead_wrap .all_japan {margin-top: 0;}
.all_japan_page .all_japan_sec .image_wrap {
    padding: 0;
    margin: 0;
}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap {display: block;width: 90%;padding-bottom: 53%;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left {margin: 0 auto;width: 100%;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left .copy {font-size: 20px;}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left .copy .color_back {
}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .left .comment {
}
.all_japan_page .all_japan_sec .image_wrap .flex_wrap .image {
}
.all_japan_page .support_sec {padding-top: 60px;}
.all_japan_page .support_sec .sec_title {
}
.all_japan_page .support_sec .sec_title .name {font-size: 25px;margin-bottom: 5px;}
.all_japan_page .support_sec .sec_title .sub_name {font-size: 13px;}
.all_japan_page .support_sec .section_lead {margin: 0 auto;font-size: 13px;line-height: 1.5;width: 86%;margin-top: 25px;}
.all_japan_page .support_sec .wrap {
}
.all_japan_page .support_sec .wrap .inner {margin-top: 60px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap {display: block;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .left {margin: 0 auto;width: 90%;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .left .name {font-size: 22px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .left .comment {font-size: 14px;}
.all_japan_page .support_sec .wrap .inner .flex_wrap .new_image {margin: 0 auto;width: 90%;}
.all_japan_page .support_sec .wrap .inner .message_box {
}
.all_japan_page .support_sec .wrap .inner .message_box .name {font-size: 22px;}
.all_japan_page .support_sec .wrap .inner .message_box .comment {font-size: 14px;line-height: 2;}
.all_japan_page .support_sec .wrap .inner .l_message {font-size: 25px;margin-top: 60px;}
.all_japan_page .support_sec .wrap .inner .logo {width: 40%;}
.all_japan_page .support_sec .loop_wrap {
    padding-top: 50px;
}
.all_japan_page .support_sec .entry_wrap {padding-top: 50px;padding-bottom: 50px;}
.all_japan_page .support_sec .loop_wrap img {
    min-width: 600px;
}
.all_japan_page .support_sec .entry_wrap .btn_entry {
}
.all_japan_page .support_sec .entry_wrap .btn_entry a {
    padding: 25px 40px;
    font-size: 15px;
    letter-spacing: 1.2px;
}
.all_japan_page .support_sec .entry_wrap .btn_entry a:before {
    width: 40px;
    height: 50px;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 5px;
    background-size: 25px;
}
/*----------NEWS SP-----------*/
.news_page {
}
.news_page .fv_sec {
}
.news_page .fv_sec .pankuzu_wrap {
}
.news_page .fv_sec .pankuzu_wrap .relative {
}
.news_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.news_page .fv_sec .page_name {
}
.news_page .fv_sec .page_name .j_name {
}
.news_page .fv_sec .page_name .name {
}
.news_page .news_list_sec {padding-top: 40px;padding-bottom: 40px;}
.news_page .news_list_sec .wrap {
}
.news_page .news_list_sec .wrap .s_news {
}
.news_page .news_list_sec .wrap .s_news  .flex_wrap {
	display: block;
}
.news_page .news_list_sec .wrap .s_news a {
        padding-bottom: 30px;
        display: block;
        padding-top: 30px;
        padding-right: 34px;
}

.news_page .news_list_sec .wrap .s_news:last-child a {
    border-bottom: none;
}
.news_page .news_list_sec .wrap .s_news a:before {
        width: 30px;
        height: 60px;
        background-size: 18px;
}
.news_page .news_list_sec .wrap .s_news  .flex_wrap .date {font-size: 12px;margin-bottom: 7px;width: auto;border: none;}
.news_page .news_list_sec .wrap .s_news  .flex_wrap .comment {padding: 0;width: auto;}

.news_post_page {
}
.news_post_page .fv_sec {padding: 0;}
.news_post_page .fv_sec .pankuzu_wrap {
}
.news_post_page .fv_sec .pankuzu_wrap .relative {
}
.news_post_page .fv_sec .pankuzu_wrap .relative .pkz {
}
.news_post_page .fv_sec .page_name {padding-top: 108px;padding-bottom: 50px;}
.news_post_page .fv_sec .page_name .j_name {font-size: 25px;width: auto;}
.news_post_page .fv_sec .page_name .name {margin-left: 2px;}
.news_post_page .news_post_sec {padding-top: 0;padding-bottom: 0;}
.news_post_page .news_post_sec .wrap {width: 90%;border-radius: 0;padding-bottom: 35px;padding-top: 35px;}
.news_post_page .news_post_sec .wrap .cap {
}
.news_post_page .news_post_sec .wrap .cap .date {
}
.news_post_page .news_post_sec .wrap .cap .name {
}
.news_post_page .news_post_sec .wrap .main {padding-bottom: 60px;}
.news_post_page .news_post_sec .wrap .main .comment {
}
.news_post_page .news_post_sec .wrap .btn_area {text-align: center;}
.news_post_page .news_post_sec .wrap .btn_area .btn_link {
}
.news_post_page .sp_pankuzu_wrap.sp {
}
.news_post_page .sp_pankuzu_wrap.sp .relative {
}
.news_post_page .sp_pankuzu_wrap.sp .relative .pkz {
}
.news_post_page .news_post_sec .event_info_wrap td {
    font-size: 12px;
    padding: 8px 12px;
}
.news_post_page .news_post_sec .event_info_wrap td:nth-child(1) {
    width: 70px;
}

}