@charset "UTF-8";
/* CSS Document */

@font-face{
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-style:normal;
}

html{
  font-size: 62.5%; /* 62.5％ X 16px=10px */
  overflow: auto;
}

body{
  color: #4d5156;
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif, serif;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  overflow: hidden;
}

a{
  color: #4d5156;
}

img{
  max-width: 100%;
  height: auto;
}

.inner{
  max-width: 1040px;
  margin: 0 auto;
}

.text-center{
  text-align: center;
}  

.sp_img{
  display: none;
}
 
.navToggle{
  display: none;
}

.pc_br{
  display: none;
}



/*------------------ふわっと表示------------------*/
.fadein{
  opacity : 0;
  transform: translateY(200px);
  transition: all 1s;
}
/*------------------ぶるぶる------------------*/
.shake{
  animation: hurueru .8s  infinite;
}
@keyframes hurueru {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(0px, 2px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
.shake02{
  animation: hurueru02 .8s  infinite;
}
@keyframes hurueru02 {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(2px, 0px) rotateZ(0deg)}
  75% {transform: translate(0px, 2px) rotateZ(1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
/*------------------縦のふわふわ指定------------------*/
.fuwafuwa01{
  animation: fuwafuwa01 2s infinite ease-in-out;
}
@keyframes fuwafuwa01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
.fuwafuwa03{
  animation: fuwafuwa01 1.8s infinite ease-in-out;
}
@keyframes fuwafuwa03 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fuwafuwa04{
  animation: fuwafuwa01 2.2s infinite ease-in-out;
}
@keyframes fuwafuwa04 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/*------------------横のふわふわ指定------------------*/
.fuwafuwa02{
  animation: fuwafuwa02 2.5s infinite ease-in-out;
}
@keyframes fuwafuwa02 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}



/*------------------ヘッダー------------------*/
.logo{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: center; /*--センター揃え--*/
  margin: 28px 40px 25px;
}



/*------------------ヘッダー固定------------------*/
.header_area{
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(255, 255, 255, 0.9);
}



/*------------------ナビゲーション------------------*/
.nav ul{
  display: flex;
}

.nav li{
  width: 25%; /*--1つの幅--*/
  text-align: center;
}

.nav li a{
  display: block;
  padding: 18px 0;
  background: #e60069;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.6s;     
}
.nav li a:hover{
  color: #e60069;  
  background: #faebd7;
}

.nav ul li{
  list-style: none;
  border-right: 1px solid #fff;
}
.nav ul li:last-child{
  border-right: none;
}

.mgl10{
  position: static;
  margin-left: 10px;
  border: none;
}



/*------------------パンくずリスト部分------------------*/
.bread_area{
  background: #f9f2f4;
  padding: 15px 0 15px 40px; 
}

.breadcrumb {
  list-style: none;
}

.breadcrumb li {
  display: inline; /*横に並ぶように*/
  list-style: none;
  font-size: 1.6rem;
}

.breadcrumb li:after { /* >を表示*/
  content: '>';
  padding: 0 10px;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #e60069; /*色*/
}

.breadcrumb li a:hover {
  border-bottom: dashed 1px #e60069;
}



/*------------------共通テキスト------------------*/
.spot_info>li:nth-child(1)>h2{
  padding-bottom: 20px;  
}
.spot_info>li:nth-child(2)>p{
  margin: -6px 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}

dl{
  display: flex;
}

.info>li>dl>dt,.info>li>dl>dd{
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}

.info>li{
  padding-bottom: 5px;
}
.information>dl:last-child{
  padding-bottom: 0;
}

.info_link>a{
  box-shadow: inset 0 0 0 0 #c71585;
  color: #c71585;
	padding: 0 0.25rem;
	margin: 0 -0.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;  
}
.info_link>a:hover{
  color: #fff;
  box-shadow: inset 300px 0 0 0 #c71585;  
}

.info_ann{
  display: block;  
  font-size: 1rem;
}

.size{  /*--アイコン--*/
  font-size: 1.5rem;
  margin-left: 5px;
}
/*------------------マップ部分------------------*/
.vertical_map{
  padding-bottom: 18px;   
}



/*------------------メイン画像------------------*/
.main_area{
  position: relative;
  margin: 185px 0 65px; 
}

.main_img>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.main_title{
  position: absolute;
  top: 0;
  left: 0;
}
.main_title>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.main_text_area{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.main_text_area>li:last-child{
  width: 580px;
}

.title_text{
  margin: -8px 0;
  font-size: 2rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.low_text{
  padding-top: 20px;  
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/
}
/*------------------ドライブコース------------------*/
.course_area{
  margin: 46px 0 60px;
}

.spot_title{
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10px;
  color: #00afec; 
}

.course{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/*------------------最後の行を左寄せ------------------*/
.course:after{
  content: "";
  width: 32%;
}
.course:before{
  content: "";
  width: 32%;
  order: 1;
}

.course>li{
  width: 32%;
}
.course>li>a{
  display: block;
  padding: 14px 0;  
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;  
  color: #00afec;
  background-color: #c7e6f9;
  border-radius: 22px;
  margin-bottom: 16px;
  transition: 0.4s;
}
.course>li>a:hover{ 
  color: #fff;   
  background-color: #00afec;
}
/*------------------ページ内リンク------------------*/
#kaiyukan{ /*--海遊館--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#lego{ /*--レゴランド--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#free{ /*--自由軒--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#cart{ /*--ISK--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#lion{ /*--ジーライオン--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#cart{ /*--ISK--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#atc{ /*--ウミエール--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#bbq{ /*--LOGOS--*/
  margin-top: -200px;
  padding-top: 200px;   
}
#cosmo{ /*--さきしまコスモタワー--*/
  margin-top: -200px;
  padding-top: 200px;   
}



/*------------------ドライブカー------------------*/
.drive_area{
  background-color: #f5f5f5;
  padding: 44px 0;
}

.drive_text_info{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.drive_text{
  width: 500px;
}

.drive_text>li:nth-child(1){
  padding-bottom: 7px;  
  font-size: 2rem;
  font-weight: 600;
}
.drive_text>li:nth-child(2){
  padding-bottom: 18px;  
  font-size: 3rem;
  font-weight: 700;
}
.drive_text>li:nth-child(3){
  padding-bottom: 10px;  
  font-size: 2rem;
  font-weight: 800;
}
.drive_text>li:nth-child(4){
  padding-bottom: 18px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.drive_img{
  display: flex;
  justify-content: space-between;  
}
/*------------------詳細はコチラから------------------*/
.drive_info{
  position: relative; /*--親--*/
}

.balloon_area{
  position: absolute; /*--子--*/
  top: -20px;
  right: -10px;
}
.balloon_btm>a{ /*--吹き出し本体--*/
  position: relative; /*--親--*/  
  width: 180px;
  display: block;
  padding: 10px 15px;
  background: #e60069;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.balloon_btm>a:before{ /*--吹き出し--*/ 
  content: "";
  position: absolute; /*--子--*/
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #e60069;
  border-radius: 50%;
}
.balloon_btm>a:after{ /*--吹き出し--*/
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #e60069;
  border-radius: 50%;
}
/*------------------試乗車・展示車情報はこちら------------------*/
.test_car{
  padding-bottom: 50px;
}
.test_car>a{
  margin-top: 20px;
  display: inline-block;
  padding: 9px 0;
  width: 500px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #fff;   
  background-color: #e6003d;
  border: solid 1px #e6003d;
  border-radius: 18px;
  transition: 0.4s;   
}
.test_car>a:hover{ 
  color: #e6003d;
  background-color: #fff;
  border: solid 1px #e6003d;
}



/*------------------背景色------------------*/
.top_back{
  padding: 0 30px;
  background: linear-gradient(0deg, rgb(126,206,244) 0%, rgb(0,109,184) 50%, rgb(237,125,174) 100%);
}

.bot_back{
  padding: 0 30px 30px;
  background-image: linear-gradient(0deg, rgb(221,230,129) 0%, rgb(143,177,35) 49%, rgb(120,140,198) 100%);
}

.white{
  background: #fff;
}

.bot_white{
  border-radius: 0 0 30px 30px;
}



/*------------------海遊館------------------*/
.kaiyukan_main{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.kaiyukan_area{
  margin: -50px 0;
  padding-bottom: 140px;
}

.kaiyukan_item{
  padding-top: 40px;
  position: relative; /*--親--*/ 
  display: flex;
  justify-content: space-between;
}
.kaiyukan_item>li:nth-child(1){
  padding-bottom: 320px;
  position: relative; /*--親--*/ 
  width: 670px;  
}
.kaiyukan_item>li:nth-child(2){
  width: 318px;  
}

.front{
  position: absolute; /*--子--*/
  top: -270px;
  left: -20px;
}

.kaiyukan_ill01{
  position: absolute; /*--子--*/
  top: -60px;
  right: 0;
}

.kaiyukan_ill02{
  position: absolute; /*--子--*/
  top: -100px;
  right: -44px;
}

.kaiyukan_sub_img{
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
}

.sub_img{
  width: 364px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sub_img>li{
  width: 180px;
}
.sub_img>li:nth-child(-n+2){
 padding-bottom: 6px;
}

.shark{
  position: relative; /*--親--*/ 
}

.kaiyukan_ill03{
  position: absolute; /*--子--*/
  top: 0;
  left: 0;
}

.kaiyukan_ill04{
  position: absolute; /*--子--*/
  bottom: 20px;
  right: 0;
}

.kaiyukan_copy01{
  position: absolute; /*--子--*/
  top: 40px;
  right: 0;
}

.kaiyukan_img06{
  position: absolute; /*--子--*/
  bottom: -210px;
  left: 0;
}

.kaiyukan_img07{
  position: absolute; /*--子--*/
  bottom: -250px;
  right: -40px;
  z-index: 5;
}

.seal{
  position: absolute; /*--子--*/
  bottom: -290px;
  left: 0;
}

.kaiyukan_ill05{
  position: absolute; /*--子--*/
  bottom: -350px;
  right: 100px;
}

.kaiyukan_model{
  padding-top: 10px;
  position: relative; /*--親--*/  
}

.kaiyukan_img08{
  position: absolute; /*--子--*/
  bottom: -192px;
  right: -10px;
}

.kaiyukan_copy02{
  position: absolute; /*--子--*/
  bottom: -170px;
  left: 0;
}

.check_area{
  position: relative; /*--親--*/  
  padding: 20px;
  background: linear-gradient(-90deg, rgb(0,69,156) 0%, rgb(0,178,237) 100%); 
  box-sizing: border-box;
}

.check{
  position: absolute; /*--子--*/
  top: -20px;
  left: -20px;
}

.others_item{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.others_item>li:nth-child(1){
  padding-right: 20px;
  margin: -4px 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}
.others_item>li:nth-child(3){
  padding: 0 10px;
}
.others_item>li:nth-child(n+2){ /*--2番目以降--*/
  flex-shrink: 0; /*--つぶれ回避--*/
}



/*------------------レゴランド------------------*/
.lego_area{
  padding-bottom: 140px;
}

.lego_item{
  display: flex;
  justify-content: space-between;
}
.lego_item>li:nth-child(1){
  width: 486px;  
}

.diorama{
  padding: 26px 0 10px;
}
.diorama>li:nth-child(2)>p{
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}

.lego_sub_img{
  display: flex;
  justify-content: space-between;
}
.lego_sub_img>li:nth-child(1){
  position: relative; /*--親--*/ 
}

.lego_copy{
  position: absolute; /*--子--*/
  top: -26px;
  left: -26px;
}

.lego_facility{
  margin-top: -80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;  
}
.lego_facility>li:nth-child(1){
  position: relative; /*--親--*/  
}
.lego_facility>li:nth-child(2){
  position: relative; /*--親--*/  
}

.lego_ill{
  position: absolute; /*--子--*/
  bottom: 30px;
  right: -80px;
}

.vr{
  position: absolute; /*--子--*/
  top: -120px;
  left: -60px;   
}

.ride{
  position: relative; /*--親--*/   
}

.lego_copy01{
  position: absolute; /*--子--*/
  bottom: -40px;
  left: -20px;
}

.lego_sub_img{
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
}
.lego_sub_img>li:nth-child(1){
  position: relative; /*--親--*/ 
}

.lego_copy{
  position: absolute; /*--子--*/
  top: -32px;
  left: -26px;
}



/*------------------自由軒------------------*/
.free{
  padding-bottom: 100px;
  background: linear-gradient(0deg, rgb(251,219,94) 0%, rgb(255,255,255) 100%);
}

.curry{
  display: flex;
  justify-content: space-between;  
}
.curry>li:nth-child(1){
  flex-shrink: 0; /*--つぶれ回避--*/
  position: relative; /*--親--*/  
}
.curry>li:nth-child(2){
  width: 354px; 
}

.octopus{
  position: absolute; /*--子--*/
  bottom: 30px;
  right: 14px;
}

.yokocho>li:nth-child(1){
  padding: 30px 0 26px;
  margin: -6px 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}

.free_facility{
  display: flex;
  justify-content: space-between;
}
.free_facility>li:nth-child(1){
  padding-top: 30px;
  width: 470px;
  position: relative; /*--親--*/ 
}

.free_map{
  padding-top: 24px;
}

.tower{
  position: absolute; /*--子--*/
  bottom: 0;
  right: 0;
}

.retro{
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.cityscape>li:nth-child(1){
  position: relative; /*--親--*/   
}

.cityscape_copy{
  position: absolute; /*--子--*/
  top: -36px;
  left: -24px;
}



/*------------------ISK------------------*/
.cart_main{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.cart_area{
  margin: -50px 0;
  padding-bottom: 140px;
}

.cart_map{
  padding-top: 24px;
}

.cart_text>li:nth-child(2)>p{
  width: 584px;
}

.cart_facility{
  padding-top: 20px;
  position: relative; /*--親--*/ 
}

.enjoy_area{
  position: absolute; /*--子--*/
  top: 200px;
  right: -30px;
  z-index: 1;  
}

.enjoy_img{
  position: relative; /*--親--*/ 
}

.enjoy_copy{
  position: absolute; /*--子--*/
  top: -38px;
  right: -30px; 
}

.cart_img01{
  position: absolute; /*--子--*/
  top: -180px;
  right: -30px; 
}

.cart_img02{
  position: absolute; /*--子--*/
  top: -72px;
  left: 420px; 
}

.cart_img03{
  position: absolute; /*--子--*/
  bottom: 250px;
  left: 350px; 
  z-index: 5;   
}

.cart_img06{
  position: absolute; /*--子--*/
  bottom: 0;
  left: 300px; 
  z-index: 5;
}

.cart_ill{
  position: absolute; /*--子--*/
  bottom: -30px;
  right: -120px; 
}



/*------------------ジーライオン------------------*/
.lion_area{
  position: relative; /*--親--*/  
  padding-bottom: 140px;
  z-index: 10;
}

.lion_facility{
  display: flex;
  justify-content: space-between; 
}
.lion_facility>li:nth-child(1){
  position: relative; /*--親--*/  
  margin-left: -200px;  
}
.lion_facility>li:nth-child(2){ 
  width: 416px;
}

.lion_img02{
  position: absolute; /*--子--*/
  bottom: 0;
  left: 260px;
}

.lion_ill{
  position: absolute; /*--子--*/
  bottom: 350px;
  right: -80px;
  z-index: -1;
}

.gt{
  padding: 26px 0 10px;
}

.lion_sub_img{
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
}
.lion_sub_img>li:nth-child(3){
  position: relative; /*--親--*/ 
}

.lion_copy{
  position: absolute; /*--子--*/
  top: -60px;
  right: -20px;
  z-index: 10;  
}

.running>li:nth-child(2){
  padding-top: 5px;
  font-size: 1rem;
  font-weight: 300;  
}



/*------------------ウミエール------------------*/
.atc_area{
  padding-bottom: 140px;
}

.atc_main_img{
  padding-bottom: 30px;
}

.atc_text>li:nth-child(2)>p{
  width: 370px;
}

.atc_facility{
  display: flex;
  justify-content: space-between;
}
.atc_facility>li:nth-child(1){
  position: relative; /*--親--*/
}


.atc_img02{
  position: absolute; /*--子--*/
  top: -50px;
  right: -270px;
}

.atc_img01{
  position: absolute; /*--子--*/
  bottom: 0;
  right: -280px;
}



/*------------------LOGOS------------------*/
.bbq_facility{
  padding-bottom: 140px;
  display: flex;
  justify-content: space-between;
}
.bbq_facility>li:nth-child(1){
  position: relative; /*--親--*/
}
.bbq_facility>li:nth-child(2){
  width: 400px;
  position: relative; /*--親--*/
  z-index: 10;
}

.bbq_map{
  padding-top: 24px;
}

.bbq_ill02{
  position: absolute; /*--子--*/
  bottom: 360px;
  right: 20px;
}

.bbq_img03{
  position: absolute; /*--子--*/
  bottom: 0;
  right: 10px;
}

.bbq_ill01{
  position: absolute; /*--子--*/
  top: -20px;
  right: -20px;
}

.bbq_ill{
  position: absolute; /*--子--*/
  bottom: -90px;
  right: -60px;
  z-index: -1;
}

.bbq_main_img>li:nth-child(2){
  padding: 10px 0;
}



/*------------------さきしまコスモタワー------------------*/
.cosmo_area{
  padding-bottom: 60px;
}

.cosmo_main_img{
  position: relative; /*--親--*/  
  padding-bottom: 30px;
}

.cosmo_copy{
  position: absolute; /*--子--*/
  top: -50px;
  left: -20px;
}

.cosmo_sub_img{
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;  
}

.cosmo_facility{
  display: flex;
  justify-content: space-between;
}
.cosmo_facility>li:nth-child(1){
  width: 672px;  
}



/*------------------バックナンバー部分------------------*/
.b_number_area{
  margin-top: 85px;
}

.b_title{
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 12px;
}

.back{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/*------------------最後の行を左寄せ------------------*/
.back:after{
  content: "";
  width: 32%;
}
.back:before{
  content: "";
  width: 32%;
  order: 1;
}

.back>li{
  width: 32%;
}

.back>li>a{
  margin-bottom: 25px;
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  color: #e60069; 
  border: solid 2px #e60069;
  border-radius: 14px;
  padding: 10px 0 12px;
  transition: 0.6s;
}
.back>li>a:hover{
  color: #fff;
  background: #e60069;
  border: solid 2px #e60069;
}



/*------------------ページトップボタン------------------*/
.PageTopBtn{
  font-size: 1.4rem;
  position: fixed;
  bottom: 20px;
  right: 20px; 
}

.PageTopBtn>a{
  display: block;
  color: #ff7f00;
  background: #fff;
  border: solid 2px #ff7f00;
  width: 90px;
  height: 50px;
  line-height: 3.5;
  text-align: center;
  border-radius: 10px;
  transition: 0.6s;
}

.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039;
  border: solid 2px #e60039;
}



/*------------------フッター------------------*/
.footer-area{
  margin-top: 105px;
  background-color: #f9f2f4;
  padding: 30px 0;
}

.footer_logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 40px 60px;
}

.copyright{
  font-size: 1rem; 
}





/*------------------タブレット版------------------*/
@media screen and (min-width: 641px) and (max-width: 960px){
  body{
    min-width: 1200px;
  } 
}





/*------------------SP版------------------*/
@media screen and (max-width: 640px){
  body{
    min-width: auto;
  }  
  
  .inner{
    padding: 0 20px;
  }
  
  .pc_img{
    display: none;
  }

  .sp_img{
    display: block;
  }
 
  .pc_br{
    display: block;
  }
  
  .sp_br{
    display: none;
  }

  .wrap{
    overflow: hidden;
   }
  
  
  
  /*------------------黒い半透過のレイヤー------------------*/
  .overlay{
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open{
    position: fixed;
    width: 100%;
    height: 120%;
    opacity: 1;
  }



  /*------------------メニュー幅分スライド------------------*/
  main.open{
    transform: translateX(-250px);
  }
  

	
  /*------------------ヘッダー部分------------------*/
  .navi_area_sp{
    display: flex;
    justify-content: space-between; /*--両端に配置、均等に間隔--*/
    align-items: center; /*--上下センター--*/
    padding: 20px 20px 15px;
  }

  .logo_sp{
    width: 70vw;
  }



  /*------------------ハンバーガーメニュー------------------*/
  .navToggle{
    margin-top: 15px;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
  }

  .navToggle>span{
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #000033;
    transition: all .5s;
  }

  .navToggle.active>span{
    background-color: #fff;
  }

  .navToggle>span:nth-of-type(1){
    top: 0;
  }

  .navToggle.active>span:nth-of-type(1){
    transform: translateY(12px) rotate(-45deg);
  }

  .navToggle>span:nth-of-type(2){
    top: 12px;
  }

  .navToggle.active>span:nth-of-type(2){
    opacity: 0;
  }

  .navToggle>span:nth-of-type(3){
    bottom: 0;
  }

  .navToggle.active>span:nth-of-type(3){
    transform: translateY(-12px) rotate(45deg);
  }



  /*------------------右から左へ------------------*/
  nav.open {
    transform: translateZ(0);
  }
  /*------------------ナビメニュー------------------*/ 
  .nav ul{
    display: block; /*---解除---*/
  }  
  
  nav{
    width: 250px; /*---メニュー幅---*/
    height: 100%;
    padding-top: 50px;
    background-color: rgb(0, 0, 51, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(250px);
    transition: all .5s;
  }

  .nav li{
    width: auto; /*--1つの幅--*/
  }
 
  .nav li a{
    padding: 40px 0;
    background: none;
    font-size: 1.9rem;
    line-height: 1.5;
  }

  .nav ul li{
    border-right: none;
  }

  .mgl10{
    margin-left: 0;
  }
  
 
  
  /*------------------パンくずリスト部分------------------*/
  .bread_area{
    padding: 15px 20px 5px 20px;
    -webkit-overflow-scrolling: touch; /* スマホでスクロールを滑らかにする */
    overflow-x: auto; /* [必須] テキストが多い時はX軸にスクロールバーが出現するように */
  }

  /*------------------【スクロールバー】------------------*/
  .bread_area::-webkit-scrollbar {
    height: 5px;
  }
  .bread_area::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  .bread_area::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
  }
  .bread_area ol{
    display: table; /* [必須]  */
  } 
  
  .breadcrumb li{
    font-size: 1.5rem;
    padding-bottom: 11px;
    display: table-cell; /* [必須]  */
    white-space: nowrap; /* [必須] テキストを改行させないように */
  }

  .breadcrumb li:after{ /* >を表示*/
    padding: 0 5px;
  }

  
  
   /*------------------ふわっと表示------------------*/
  .fadein{
    opacity : 0;
    transform: translateY(80px);
    transition: all 1s;
  }
  
  
  
  /*------------------共通テキスト------------------*/
  .spot_info>li:nth-child(1)>h2{
    padding-bottom: 10px;  
  }
  .spot_info>li:nth-child(2)>p{
    margin: -4.5px 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .info{
    padding-top: 12px;
  } 
  
  .info>li>dl>dt,.info>li>dl>dd{
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .info>li{
    padding-bottom: 6px;
  }
  .information>dl:last-child{
    padding-bottom: 0;
  }

  .info_link>a{
    font-size: 1.4rem;  
  }

  .info_ann{
    display: inline-block; 
    margin-left: 4px;
  }  
  
  .size{  /*--アイコン--*/
    font-size: 1.3rem;
    margin-left: 8px;
  }  

  
  
  /*------------------マップ部分------------------*/ 
  .vertical_map{
    padding-bottom: 0;   
  }  
  /*------------------sp用グーグルマップ------------------*/  
  .access_map{
    position: relative;
    width: 100%;
    padding-bottom: 62.5%; /* = height ÷ width × 100 */
  }  
  .access_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
  }   
  
  

  /*------------------メイン画像------------------*/
  .main_area{
    margin: 136px 0 25px;  
  }

  .main_text_area{
    display: block;
  }
  
  .main_text_area>li:first-child{
    padding: 0 25px 20px;
  }  
  
  .main_text_area>li:last-child{
    width: auto;
  }

  .title_text{
    margin: -4.8px 0;
    font-size: 1.6rem;
    line-height: 1.6; 
  }

  .low_text{
    font-size: 1.2rem;
    padding-top: 12px;
    padding-left: 1.2rem; /*--2行目以降を1文字下--*/
    text-indent: -1.2rem; /*--2行目以降を1文字下--*/ 
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/   
  }  

  
  
  /*------------------ドライブコース------------------*/
  .course_area{
    margin: 30px 0 50px;
  }

  .spot_title{
    font-size: 1.8rem;
    text-align: center;
  }

  .course>li{
    width: 48%;
  }
  .course>li:nth-child(-n+6){
    margin-bottom: 30px;
  }  
  .course>li>a{
    padding: 6px 0;  
    font-size: 1.4rem; 
    color: #fff;   
    background-color: #00afec;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: none; 
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center; 
  }
  /*------------------ページ内リンク------------------*/
  #kaiyukan{ /*--海遊館--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #lego{ /*--レゴランド--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #free{ /*--自由軒--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #cart{ /*--ISK--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #lion{ /*--ジーライオン--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #cart{ /*--ISK--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #atc{ /*--ウミエール--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #bbq{ /*--LOGOS--*/
    margin-top: -0;
    padding-top: 0;   
  }
  #cosmo{ /*--さきしまコスモタワー--*/
    margin-top: -0;
    padding-top: 0;   
  }

  

  /*------------------ドライブカー------------------*/
  .drive_area{
    padding: 20px 0;
  }

  .drive_text_info{
    display: block;
  }
  .drive_text_info>li:nth-child(1){
    padding-bottom: 12px;
  }
  
  .drive_text{
    width: auto;
  }
  .drive_text>li:nth-child(2){
    padding-bottom: 8px;  
  }
  .drive_text>li:nth-child(3){
    padding-bottom: 6px;  
    font-size: 1.6rem;
  }
  .drive_text>li:nth-child(4){
    padding-bottom: 18px;
    font-size: 1.4rem;
  }
  /*------------------詳細はコチラから------------------*/
  .balloon_area{
    top: -40px;
    right: 15px;
  }
  .balloon_btm>a{ /*--吹き出し本体--*/
    width: 140px;
    padding: 8px 10px;
    font-size: 1.5rem;
  }
  .balloon_btm>a:before{ /*--吹き出し--*/ 
    display: none;
  }
  .balloon_btm>a:after{ /*--吹き出し--*/
    display: none;
  }  
  /*------------------試乗車・展示車情報はこちら------------------*/
  .test_car{
    padding: 0 20px 10px;
  }
  .test_car>a{
    margin-top: 0;
    display: block;
    width: auto;
    transition: none;   
  }

  
  
  /*------------------背景色------------------*/
  .top_back{
    padding: 0 8px;
  }

  .bot_back{
    padding: 0 8px 10px;
  }

  .bot_white{
    border-radius: 0 0 10px 10px;
  }



  /*------------------海遊館------------------*/
  .kaiyukan_area{
    margin: 0 0;
    padding-bottom: 60px;
  }

  .kaiyukan_item{
    padding-top: 16px;
    display: block;
  }
  .kaiyukan_item>li:nth-child(1){
    padding-bottom: 26px;
    width: auto;  
  }
  .kaiyukan_item>li:nth-child(2){
    width: auto;  
  }

  .front{
    top: -140px;
    left: -10px;
    width: 68vw;
    z-index: 10;
  }

  .kaiyukan_ill01{
    top: -80px;
    right: -100px;
    width: 52vw;
  }

  .kaiyukan_sub_img{
    padding: 18px 0 26px;
    display: block;
  }

  .sub_img{
    width: auto;
    display: block;
  }
  .sub_img>li{
    width: auto;
  }
  .sub_img>li:nth-child(-n+2){
   padding-bottom: 0;
  }

  .kaiyukan_ill03{
    width: 50vw;
  }

  .kaiyukan_ill04{
    bottom: -10px;
    right: 40px;
    width: 30vw;
  }

  .kaiyukan_copy01{
    right: -10px;
    width: 16vw;
  }

  .kaiyukan_model{
    padding-top: 10px;
    padding-bottom: 18px;
    position: block; 
  }
  .kaiyukan_model>img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .check_area{
    padding: 16px;
  }

  .check{
    top: -54px;
    left: -10px;
    width: 40vw;
  }

  .others_item{
    display: block;
  }
  .others_item>li:nth-child(1){
    padding-right: 0;
    padding-bottom: 14px;
    margin: -3.5px 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .others_item>li:nth-child(3){
    padding: 0 0;
  }
  .others_item>li:nth-child(3)>img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }



  /*------------------レゴランド------------------*/
  .lego_area{
    padding-bottom: 60px;
  }

  .lego_item{
    display: block;
  }
  .lego_item>li:nth-child(1){
    width: auto;  
  }

  .diorama{
    padding: 18px 0 26px;
  }
  .diorama>li:nth-child(1){
    padding-bottom: 10px;
  }  
  .diorama>li:nth-child(2)>p{
    margin: -3.5px 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .lego_sub_img{
    display: block;
  }

  .lego_facility{
    margin-top: 24px;
    display: block;  
  }

  .lego_ill{
    bottom: 120px;
    right: -10px;
    width: 24vw;
  }

  .lego_sub_img{
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
  }

  .lego_copy{
    top: -20px;
    left: -10px;
    width: 36vw;
  }



  /*------------------自由軒------------------*/
  .free{
    padding-bottom: 24px;
  }

  .curry{
    display: block;
  }
  .curry>li:nth-child(1){
    padding-top: 10px;
  }
  .curry>li:nth-child(2){
    width: auto; 
  }

  .octopus{
    bottom: 10px;
    right: 10px;
    width: 14vw;
  }

  .yokocho>li:nth-child(1){
    padding: 10px 0 18px;
    margin: -4.5px 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .yokocho>li:nth-child(2)>img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .free_facility{
    display: block;
  }
  .free_facility>li:nth-child(1){
    padding-top: 26px;
    width: auto;
  }

  .retro{
    padding: 0 0;
    display: block;
  }
  


  /*------------------ISK------------------*/
  .cart_area{
    margin: 0 0;
    padding-bottom: 60px;
  }

  .cart_map{
    padding-top: 24px;
    position: relative; /*--親--*/ 
    z-index: 100;
  }

  .cart_text>li:nth-child(2)>p{
    width: auto;
  }

  .cart_facility{
    padding-top: 16px;
  }

  .cart_img02{
    top: -46px;
    left: auto; /*--初期化--*/
    right: -20px;
    width: 36vw;
  }

  .cart_img03{
    bottom: 100px;
    left: auto; /*--初期化--*/
    right: -24px;
    width: 40vw;
    z-index: 200;
  }

  .cart_ill{
    width: 80vw;
  }



  /*------------------ジーライオン------------------*/
  .lion_area{
    padding-bottom: 60px;
  }

  .lion_facility{
    display: block;
  }
  .lion_facility>li:nth-child(1){
    margin-left: 0;  
    padding-bottom: 16px;
  }
  .lion_facility>li:nth-child(2){ 
    width: auto;
  }

  .lion_img02{
    bottom: -38px;
    left: auto; /*--初期化--*/
    right: -20px;
    width: 30vw;
  }

  .lion_ill{
    bottom: 38px;
    right: -80px;
  }

  .gt{
    padding: 18px 0 26px;
  }

  .lion_sub_img{
    padding-top: 10px;
  }

  .lion_copy{
    top: -50px;
    right: -10px;
    width: 34vw;  
  }

  .running{
    display: none;  
  }
  .running>li:nth-child(2){
    padding-top: 0; 
  }



  /*------------------ウミエール------------------*/
  .atc_area{
    padding-bottom: 60px;
  }

  .atc_main_img{
    padding-bottom: 16px;
  }

  .atc_text>li:nth-child(2)>p{
    width: auto;
  }

  .atc_facility{
    display: block;
  }
  .atc_facility>li:nth-child(1){
    position: static; /*--親--*/
  }

  .atc_img02{
    position: static; /*--子--*/
  }

  .atc_img01{
    position: static; /*--子--*/
    padding: 18px 0 24px;
  }

  

  /*------------------LOGOS------------------*/
  .bbq_facility{
    padding-bottom: 60px;
    display: block;
  }
  
  .bbq_facility>li:nth-child(2){
    width: auto;
  }

  .bbq_ill02{
    bottom: auto; /*--初期化--*/
    top: -40px;
    right: -10px;
    width: 18vw; 
  }

  .bbq_ill01{
    top: -30px;
    right: 20px;
    width: 18vw;
  }  
  
  .bbq_ill{
    bottom: 0;
    right: -20px;
    width: 40vw;
  }

  .bbq_main_img>li:nth-child(2){
    padding: 16px 0 0;
  }



  /*------------------さきしまコスモタワー------------------*/
  .cosmo_area{
    padding-bottom: 18px;
  }

  .cosmo_main_img{
    padding-bottom: 0;
  }

  .cosmo_copy{
    top: -30px;
    left: -10px;
    width: 40vw;
  }

  .cosmo_sub_img{
    padding-bottom: 16px;  
  }

  .cosmo_facility{
    display: block;
  }
  .cosmo_facility>li:nth-child(1){
    width: auto;  
  }

  
  
  /*------------------バックナンバー部分------------------*/
  .b_number_area{
    margin-top: 40px;
  }

  .b_title{
    text-align: center;
  }

  .back{
    display: block; /*--解除--*/
  }

  .back>li{
    width: 100%;
    padding-bottom: 20px;
  }
  .back>li:last-child{
    padding-bottom: 0;
  }
  
  .back>li>a{
    margin-bottom: 0px;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #fff;
    background: #e60069;
    border: solid 2px #e60069;    
    transition: none;       
  }  

  

  /*------------------ページトップ------------------*/
  .PageTopBtn{
    font-size: 1.4rem;
    position: fixed; /*配置場所を固定*/
    bottom: 15px; /*下からの位置*/
    right: 15px; /*右からの位置*/
  }
  
    
  
  /*------------------フッター------------------*/ 
  .footer-area{
    margin-top: 25px;
    padding: 20px 0 20px 0;
  }

  .footer_logo{
    display: block;
    margin: 10px 20px 10px;
  }
  
  .w_logo_bot{
    margin: 0 auto;
  }
  
  .copyright{
    font-size: 1.2rem; 
    line-height: normal;
    padding: 10px 0 0;
  }

  
  
 }



