@charset "UTF-8";


/*-----section1（トップ画像部分・h1「アクセス・営業時間・料金」が置いてある場所）-----*/
.sec1-info{
  /*画像だけ他ページのsection1と異なる*/
  background:linear-gradient(180deg, rgba(19, 25, 122, 0.8) 51%, rgba(3, 11, 16, 0.7) 100%), url(../image/kurage-backimage.jpg);
}

@media(max-width:1024px){
}
@media(max-width:560px){

  }
/*-------------------------------------------*/


/*-----section2～section4（「アクセス」・「営業時間」・「料金」全て共通）-----*/
#sec2-info,
#sec3-info,
#sec4-info{
  height: 100%;
  width: 100%;
  padding: 1em;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}


@media print, screen and (max-width:1024px){
  /*タブレット版*/
}
@media(max-width:560px){
  /*スマホ版*/
  #sec2-info,
  #sec3-info,
  #sec4-info{
  gap: 1em;
}
}
/*-------------------------------------------*/


/*-----section2（Access・「アクセス」）-----*/
.innerBoxAccess{
  /*ドットボックス*/
  border: 2px dotted #d7d9e0;
  border-radius: 10px;
  width: 90%;
  margin: auto;
  padding: 2em;
  background-color: rgba(0, 3, 23, 0.4);
}

.innerBoxAccess iframe{
  /*Google Map単体*/
  border-radius: 10px;
  width: 100%;
  padding: 20px;
}

#sec2-info .sub-txt{
  /*補足文章*/
  border-top: 1px dotted #d7d9e0;
  padding-top: 2em;
}


@media print, screen and (max-width:1024px){
  /*タブレット版*/
}

@media(max-width:560px){
  /*スマホ版*/
  .innerBoxAccess{
    padding: 1em;
  }
  .innerBoxAccess iframe{
    padding: 0px;
  }
}
/*-------------------------------------------*/


/*-----section3（Opening Hours・「営業時間」）-----*/
.innerBoxHours{
  /*営業時間一覧表*/ 
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  background-color: transparent;
  border: none;
  font-size: 1.2em;
}


@media print, screen and (max-width:1024px){
  /*タブレット版*/
}
@media(max-width:560px){
  /*スマホ版*/
}
/*-------------------------------------------*/


/*-----section4（Entry Fee・「料金」）-----*/
.innerBoxFee{
  /*料金一覧表*/
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  height: 500px;
  background-color: transparent;
  border: none;
  font-size: 1.2em;
}


@media print, screen and (max-width:1024px){
  /*タブレット版*/
}

@media(max-width:560px){
  /*スマホ版*/
}
/*-------------------------------------------*/


/*-----section3＋section4（「営業時間」・「料金」のテーブル表に共通）-----*/
table{
  background-color: rgba(0, 3, 23, 0.5);
  table-layout: fixed;
  width: 100%;
  height: 100%;
  line-height: 3em;
}
table tr,
table th,
table td{
  border: 0.8px solid #d7d9e0;
}

table th{
  font-size: 1.2em;

}
table td{
  text-align: center;
}


@media print, screen and (max-width:1024px){
  /*タブレット版*/
}

@media(max-width:560px){
  /*スマホ版*/
  table{
    line-height: 1em;
  }
  table th{
    font-size: 1em;
  }
  table td{
    font-size: 0.7em;
    padding: 0.9em;
  }
}
/*-------------------------------------------*/




