@charset "UTF-8";


/*======================================

||| pg-header

======================================*/
.pageHeader {
  width: 100%;
  height: 36vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.pageHeader__bgarea {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pageHeader__bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background-color: var(--color_main);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pageHeader h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0px 0px 24px #333;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .pageHeader {
    height: 64vh;
  }

}


/*======================================

||| tab-menu

======================================*/

.tab-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tab_btn {
  height: 100px;
  border: var(--color_base) solid 2px;
  background-color: var(--color_base-op1);
  border-radius: 4px;
  position: relative;
}

.tab_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}

.tab-menu p {
  position: relative;
  line-height: 1.4;
  color: var(--color_main-l);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition_hover);
}

.tab-menu p::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: calc(50% - 16px / 2);
  bottom: -24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23003b75" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.tab-menu p::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}

.tab_btn:hover p {
  transform: translateY(-8px);
}

.tab_btn:hover {
  background-color: var(--color_base);
}

/*======================================
|| テーブル
======================================*/

.timeTable,
.table-ticket {
  width: 100%;
  border-collapse: collapse;
}

.timeTable th,
.timeTable td,
.table-ticket th,
.table-ticket td {
  padding: 16px 0;
}


/*======================================

||| pg-floor

======================================*/

.pg-floor .pageHeader__bg {
  background-image: url(../img/follow9.jpg);
}

.pg-floor .tab-menu.l-section {
  width: var(--width-s);
  margin-left: auto;
  margin-right: auto;
}

.pg-floor .tab-menu ul {
  flex-wrap: wrap;
}

.pg-floor .tab_btn:first-child {
  width: 100%;
  margin-bottom: 8px;
}

.pg-floor .tab_btn {
  width: 49%;
}

@media screen and (min-width: 600px) {
  .pg-floor .tab_btn:first-child {
    width: 33%;
    margin-bottom: 0;
  }

  .pg-floor .tab_btn {
    width: 33%;
  }
}

.pg-floor .tab_btn:nth-child(1) p:before {
  background-image: url(../img/il-fl-floormap.svg);
  width: 36px;
  height: 36px;
  left: calc(50% - 36px / 2);
  top: -36px;
}

.pg-floor .tab_btn:nth-child(2) p:before {
  background-image: url(../img/il-fl-baby.svg);
  width: 30px;
  height: 30px;
  left: calc(50% - 30px / 2);
  top: -32px;
}

.pg-floor .tab_btn:nth-child(3) p:before {
  background-image: url(../img/il-fl-facility.svg);
  width: 26px;
  height: 26px;
  left: calc(50% - 26px / 2);
  top: -30px;
}

/* フロアマップ */

.floormap__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.floormap h3 {
  margin-bottom: var(--gap-content);
  text-align: center;
  font-size: var(--font-size_xxl);
  color: var(--color_main-l);
  font-family: var(--font_gothic-en);
}

.floormap h3 span {
  display: inline-block;
  font-size: 4.6rem;
  margin-right: .5rem;
}

.floor1__wrap,
.floor2__wrap {
  background-position: center bottom 40px;
  padding-bottom: 100px;
  background-image: url(../img/line-wave1.svg);
  background-repeat: no-repeat;
  background-size: 160px;
}

.floor1,
.floor2 {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.floor2 {
  width: min(98%, 400px);
}

.exivition {
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: var(--font-size_s);
  font-weight: 900;
  line-height: 1.2;
  transition: var(--transition_hover);
  animation-name: exiv-anime;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes exiv-anime {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(6deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.mapImg {
  width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}

.exivition:hover .mapImg {
  border-color: var(--color_accent);
}

.exiv1-1 {
  width: 26%;
  height: 30%;
  left: calc(50% - 26% / 2);
  top: 6%;
}

.exiv1-2 {
  width: 18%;
  height: 24%;
  left: 2%;
  top: 16%;
}

.exiv1-3 {
  width: 16%;
  height: 22%;
  left: 2%;
  bottom: 22%;
}

.exiv1-4 {
  width: 30%;
  height: 26%;
  left: 30%;
  bottom: 4%;
}

.exiv1-5 {
  width: 34%;
  height: 20%;
  left: 42%;
  top: 40%;
}

.exiv2-1 {
  width: 26%;
  height: 26%;
  left: 8%;
  top: 10%;
}

.exiv2-2 {
  width: 34%;
  height: 26%;
  right: 0;
  top: 19%;

}

.exiv2-3 {
  width: 60%;
  height: 18%;
  left: 25%;
  bottom: -4%;
}

.floor__icon {
  width: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.floor__icon dt {
  width: 24px;
  height: auto;
  margin-top: 16px;
  margin-right: 16px;
}

dt.floor__icon-ticket {
  width: 36px;
  margin-right: 4px;
}

.floor__icon dd {
  width: 120px;
  margin-top: 16px;
  font-size: var(--font-size_s);
}

@media screen and (min-width: 600px) {

  .floormap {
    padding: 60px 0;
    background-image: url(../img/bg-sea1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  .floormap__inner {
    width: var(--width-s);
    border-radius: 8px;
  }

  .floor1__wrap,
  .floor2__wrap {
    background-position: center bottom 80px;
    padding-bottom: 200px;
  }

  .map1 {
    width: 600px;
  }

  .mapImg {
    width: 80px;
    height: 80px;
    min-height: 80px;
    margin-bottom: 4px;
    border: 4px solid #fff;
  }

  .exiv1-2 {
    left: -4%;
  }

  .exiv1-3 {
    left: -4%;
  }

  .exiv2-1 {
    width: 38%;
    left: -4%;
  }

  .floor__icon {
    width: 510px;
  }
}

@media screen and (min-width: 1025px) {

  .mapImg {
    width: 100px;
    height: 100px;
    min-height: 100px;
  }

  .map1 {
    width: 680px;
  }

  .map2 {
    width: 540px;
  }
}

/* modaal */

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-container {
  border-radius: 8px;
}

.modaal-content li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: var(--gap);
}

.modaal-img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.modaal-txt figure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.modaal-txt img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.modaal-content li {
  align-items: center;
  gap: var(--gap);
  padding-bottom: var(--gap);
}

.modaal-content li:not(:last-child) {
  border-bottom: 1px dotted var(--color_black-op1);
}

.modaal-content-container {
  padding: 16px;
}

.modaal-inner-wrapper {
  padding: 16px 16px;
}

@media screen and (min-width: 600px) {
  .modaal-content-container {
    padding: 32px;
  }

  .modaal-inner-wrapper {
    padding: 32px 60px;
  }

}

@media screen and (min-width: 1025px) {
  .modaal-content li {
    flex-direction: row;
  }

  .modaal-content li:nth-child(2n) {
    flex-direction: row-reverse;
  }

  .modaal-txt img {
    width: 100px;
    height: 100px;
  }

}

/* 設備情報 */

.facilities1 {
  background-color: var(--color_base);
}

.facilities1 .l-section,
.facilities2 .l-section {
  width: var(--width-m);
  margin-left: auto;
  margin-right: auto;
}

.facilities1__imgs,
.facilities2__imgs {
  margin-top: var(--gap-content);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--gap);
}

.facilities1__imgs li,
.facilities2__imgs li {
  width: var(--width-s);
}

.facilities1__imgs img,
.facilities2__imgs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

@media screen and (min-width: 600px) {

  .facilities1__imgs li,
  .facilities2__imgs li {
    width: 40%;
  }

}


/*======================================

||| pg-program

======================================*/

.pg-program .pageHeader__bg {
  background-image: url(../img/photo-penguin3.jpg);
}

.pg-program .l-section {
  width: var(--width-s);
  margin-left: auto;
  margin-right: auto;
}

.pg-program .tab-menu ul {
  flex-wrap: wrap;
}

.pg-program .tab_btn {
  width: calc(50% - 2px);
  margin-bottom: 4px;
}

.pg-program .tab_btn:nth-child(1) p:before {
  background-image: url(../img/il-program1.png);
  width: 48px;
  height: 70px;
  left: calc(50% - 48px / 2);
  bottom: 20px;
}

.pg-program .tab_btn:nth-child(2) p:before {
  background-image: url(../img/il-program2.png);
  width: 48px;
  height: 70px;
  left: calc(50% - 48px / 2);
  bottom: 46px;
}

.pg-program .tab_btn:nth-child(3) p:before {
  background-image: url(../img/il-program3.png);
  width: 48px;
  height: 46px;
  left: calc(50% - 46px / 2);
  bottom: 24px;
}

.pg-program .tab_btn:nth-child(4) p:before {
  background-image: url(../img/il-program4.png);
  width: 40px;
  height: 46px;
  left: calc(50% - 46px / 2);
  bottom: 24px;
}

@media screen and (min-width: 600px) {
  .pg-program .pageHeader {
    background-position: top center;
  }

  .pg-program .l-section {
    width: var(--width-m);
  }

}

@media screen and (min-width: 1025px) {
  .pg-program .pageHeader {
    background-position: top 20% center;
  }

  .pg-program .tab_btn {
    width: calc(25% - 2px);
    margin-bottom: 4px;
  }
}

/* タイムテーブル */

.timeSchedule__inner {
  position: relative;
  width: min(98%, 600px);
  margin-left: auto;
  margin-right: auto;
  z-index: var(--z-index1);
  padding-bottom: var(--gap-section);
}

.timeTable th {
  background-color: var(--color_base);
}

.timeTable td {
  background-color: #fff;
}

.timeTable th,
.timeTable td {
  border: 1px solid var(--color_main_d-op);
  text-align: center;
}

.timeTable th:first-child p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  padding-left: 36px;
  background-position: left 8px center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url(../img/icon-clock.svg);
}

.timeTable a {
  padding-right: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><polygon fill="%230474a0" points="193.447,173.562 275.877,256 193.447,338.438 234.081,379.08 357.161,256 234.081,132.928"></polygon><path fill="%230474a0" d="M255.992,0C114.606,0.015,0.015,114.606,0,256c0.015,141.394,114.606,255.984,255.992,256C397.394,511.984,511.985,397.394,512,256C511.985,114.606,397.394,0.015,255.992,0z M408.585,408.585c-39.118,39.079-92.938,63.189-152.593,63.205c-59.647-0.016-113.467-24.126-152.577-63.205C64.328,369.474,40.218,315.647,40.21,256c0.008-59.655,24.118-113.475,63.205-152.585c39.11-39.087,92.93-63.197,152.577-63.205c59.655,0.008,113.476,24.118,152.593,63.205c39.087,39.11,63.197,92.93,63.205,152.585C471.782,315.647,447.672,369.474,408.585,408.585z" /></svg>');
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 20px;
  transition: var(--transition_hover);
}

.timeTable a:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><polygon fill="%230474a0" points="193.447,173.562 275.877,256 193.447,338.438 234.081,379.08 357.161,256 234.081,132.928"></polygon><path fill="%230474a0" d="M255.992,0C114.606,0.015,0.015,114.606,0,256c0.015,141.394,114.606,255.984,255.992,256C397.394,511.984,511.985,397.394,512,256C511.985,114.606,397.394,0.015,255.992,0z M408.585,408.585c-39.118,39.079-92.938,63.189-152.593,63.205c-59.647-0.016-113.467-24.126-152.577-63.205C64.328,369.474,40.218,315.647,40.21,256c0.008-59.655,24.118-113.475,63.205-152.585c39.11-39.087,92.93-63.197,152.577-63.205c59.655,0.008,113.476,24.118,152.593,63.205c39.087,39.11,63.197,92.93,63.205,152.585C471.782,315.647,447.672,369.474,408.585,408.585z" /></svg>');
  background-position: right center;
}

@media screen and (min-width: 600px) {
  .timeTable td:first-of-type {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* event info */

.eventInfo {
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px dashed var(--color_black-op1);
}

.eventInfo span {
  display: inline-block;
  padding: 0 16px 0 32px;
  margin: 8px 16px 8px 0;
  background-position: left 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
  background-color: var(--color_base);
  font-size: var(--font-size_s);
  font-weight: 800;
}

.eventInfo__time {
  font-weight: 800;
}

.eventInfo__time span {
  background-image: url(../img/icon-clock-b.svg);
}

.eventInfo__hour span {
  background-image: url(../img/icon-hourglass-b.svg);
}

.eventInfo__place span {
  background-image: url(../img/icon-mapping-b.svg);
}

@media screen and (min-width: 600px) {

  .eventInfo__hour,
  .eventInfo__place {
    float: left;
  }

  .eventInfo__hour {
    width: 45%
  }
}

@media screen and (min-width: 1025px) {

  .eventInfo__time,
  .eventInfo__hour,
  .eventInfo__place {
    float: left;
  }

  .eventInfo__time {
    width: 38%;
  }

  .eventInfo__hour,
  .eventInfo__place {
    width: 30%;
  }
}

/* grid */

.penguin__imgs li,
.guidetour__imgs li,
.fishing__imgs li,
.feeding__imgs li {
  border-radius: 4px;
  overflow: hidden;
}

/* each section */

.penguin,
.fishing {
  background-color: var(--color_base);
}


@media screen and (min-width: 600px) {

  .penguin .l-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

}

.penguin__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px 240px 1fr;
  grid-gap: 4px;
}

.penguin__grid1 img {
  object-position: 50% 0px;
}

.penguin__grid1 {
  grid-row: 1/2;
  grid-column: 1/3;
}

.penguin__grid2 {
  grid-row: 2/3;
  grid-column: 1/2;
}

.penguin__grid3 {
  grid-row: 2/3;
  grid-column: 2/3;
}

.penguin__grid4 {
  grid-row: 3/4;
  grid-column: 1/4;
  padding-top: var(--gap);
}

@media screen and (min-width: 1025px) {

  .penguin__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 300px 1fr;
  }


  .penguin__grid1 {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .penguin__grid2 {
    grid-row: 1/2;
    grid-column: 1/2;
  }

  .penguin__grid3 {
    grid-row: 2/3;
    grid-column: 1/2;
  }

  .penguin__grid4 {
    grid-row: 3/4;
    grid-column: 1/4;
  }

  .penguin__grid3 img {
    object-position: 0 50%;
  }

}

.feeding__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px 1fr;
  grid-gap: 4px;
}

.feeding__grid1 {
  grid-row: 1/2;
  grid-column: 1/3;
}

.feeding__grid2 {
  grid-row: 2/3;
  grid-column: 1/2;
}

.feeding__grid3 {
  grid-row: 2/3;
  grid-column: 2/3;
}

.feeding__grid4 {
  padding-top: var(--gap);
  grid-row: 3/4;
  grid-column: 1/3;
}

.feeding__imgs .eventInfo__time,
.feeding__imgs .eventInfo__hour,
.feeding__imgs .eventInfo__place {
  width: 100%;
}


@media screen and (min-width: 1025px) {
  .feeding__imgs {
    grid-template-columns: 40% 58%;
    grid-template-rows: 360px 240px 240px;
  }

  .feeding__grid1 {
    grid-row: 1/2;
    grid-column: 1/3;
  }

  .feeding__grid2 {
    grid-row: 2/3;
    grid-column: 1/2;
  }

  .feeding__grid3 {
    grid-row: 3/4;
    grid-column: 1/2;
  }

  .feeding__grid4 {
    grid-row: 2/4;
    grid-column: 2/3;
    padding: var(--gap);
  }
}



@media screen and (min-width: 1025px) {

  .penguin__imgs .eventInfo__time,
  .penguin__imgs .eventInfo__hour {
    width: 28%;
  }

  .penguin__imgs .eventInfo__place {
    width: 40%;
  }
}

.fishing__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 1fr;
  grid-gap: 4px;
}

.fishing__grid1 {
  grid-row: 1/2;
  grid-column: 1/2;
}

.fishing__grid2 {
  grid-row: 1/2;
  grid-column: 2/3;
}

.fishing__grid4 {
  grid-row: 2/3;
  grid-column: 1/3;
}

.guidetour__grid1 {
  width: 100%;
  height: 360px;
}

.fishing__grid4,
.guidetour__grid4 {
  padding-top: var(--gap);
}


/*======================================

||| access

======================================*/

.pg-access .pageHeader__bg {
  background-image: url(../img/photo-fish.jpg);
}

.pg-access .l-section {
  width: var(--width-l);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 600px) {
  .pg-access .l-section {
    width: var(--width-s);
  }
}

.pg-access .tab_btn {
  width: 49%;
}

.pg-access .tab_btn:nth-child(1) p:before {
  background-image: url(../img/il-car.png);
  width: calc(73px / 1.6);
  height: calc(39px / 1.6);
  left: calc(50% - (73px / 1.6) / 2);
  bottom: 26px;
}

.pg-access .tab_btn:nth-child(2) p:before {
  background-image: url(../img/il-bus.png);
  width: calc(115px / 1.8);
  height: calc(44px / 1.8);
  left: calc(50% - (115px / 1.8) / 2);
  bottom: 26px;
}

.pg-access .content_area {
  width: var(--width-l);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color_base-op1);
  padding: 16px;
}

.map_area {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.gmap {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.map_area iframe {
  width: 100%;
  height: 100%;
}

.map_area address {
  width: 100%;
  padding: 16px 0 20px;
  background-color: #fff;
  font-weight: 600;
}

.map_area .address_info {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.map_area h4 {
  width: 100%;
  margin-bottom: 6px;
}

.address_info .info_tel {
  font-size: var(--font-size_xxl);
  font-family: var(--font_gothic-en);
}

.map_area .info_hour span {
  background-color: var(--color_base);
  font-weight: normal;
}

@media screen and (min-width: 600px) {

  .pg-access .content_area {
    width: var(--width-m);
    padding: 32px;
    margin-bottom: var(--gap-section);
  }

  .gmap {
    aspect-ratio: 1.5 / 1;
  }

  .map_area address {
    padding: 32px 0 40px;
  }

  .info_address {
    margin-right: 32px;
  }

  .address_info .info_tel {
    font-size: var(--font-size_m);
  }

  .map_area .address_info {
    width: 80%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }
}

@media screen and (min-width: 1025px) {
  .gmap {
    aspect-ratio: 2 / 1;
  }

  .info_address {
    margin-right: 0;
  }

  .map_area .address_info {
    width: 80%;
    justify-content: space-between;
  }
}

/* by car , by bus */

.pg-access .sec-content {
  position: relative;
  padding-top: 80px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.pg-access .sec-content::before {
  width: 100%;
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center top;
  left: 0;
  top: 0;
}

.bycar .sec-content::before {
  height: calc(39px / 1.4);
  background-size: calc(73px / 1.4);
  background-image: url(../img/il-car.png);
}

.bybus .sec-content::before {
  background-image: url(../img/il-bus.png);
  height: calc(44px / 1.6);
  background-size: calc(115px / 1.6);
}

.bycar ul,
.bybus ul {
  margin-bottom: var(--gap);
}

.bycar li,
.bybus li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}

.bycar li::before,
.bybus li::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 4px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23003b75" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" /></svg>');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}

.bybus .l-section {
  padding-top: 0;
}


/*======================================

||| pg-ticket

======================================*/

.pg-ticket .pageHeader__bg {
  background-image: url(../img/photo-kapibara1.jpg);
}

.pg-ticket .inner {
  width: var(--width-l);
  margin-left: auto;
  margin-right: auto;
}

.annuallTicket .inner {
  margin-top: var(--gap-content);
}

@media screen and (min-width: 600px) {
  .pg-ticket .inner {
    width: var(--width-s);
    margin-left: auto;
    margin-right: auto;
  }
}

.l-section {
  width: var(--width-l);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 600px) {
  .l-section {
    width: var(--width-s);
  }
}

.pg-ticket .tab_btn {
  width: 49%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ticket1_txt::before {
  background-image: url(../img/il-penguin2.png);
  width: calc(302px / 5.2);
  height: calc(339px / 5.2);
  left: calc(50% - (302px / 5.2) / 2);
  top: -80px;
}

.ticket2_txt::before {
  background-image: url(../img/il-fishes.png);
  width: calc(315px / 3);
  height: calc(208px / 3);
  left: calc(50% - (315px / 3) / 2);
  top: -80px;
}


.pg-ticket .tab_btn.select {
  background-color: var(--color_base);
}

.tab_panel {
  display: none;
}

.tab_panel.active {
  display: block;
}

.content_area.hide {
  display: none;
}

/*---------------------
チケット
-----------------------*/


.pg-ticket .content_area {
  padding-bottom: var(--gap-section);
}

.ticket__caution {
  margin-bottom: var(--gap);
  /* font-size: var(--font-size_s); */
}

.pg-ticket table span {
  font-size: var(--font-size_s);
}



.webticket {
  position: relative;
  cursor: pointer;
}

.webticket::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: 32px;
  top: calc(50% - 8px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23fff" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.webticket-figure {
  width: 100%;
  height: 120px;
  background-image: url(../img/il-web.png), url(../img/il-ticketbuy.png);
  background-repeat: no-repeat;
  background-position: left 5% bottom 4px, right 5% bottom;
  background-size: 82px, 300px;
}



@media screen and (min-width: 600px) {
  .webticket-figure {
    background-position: left 20% bottom 4px, right 30% bottom;
  }
}


/*---------------------
料金テーブル
-----------------------*/
.table-ticket {
  margin-bottom: var(--gap);
}

.table-ticket th {
  background-color: var(--color_base);
}

.table-ticket th {
  width: 33%;
}

.table-ticket th,
.table-ticket td {
  border: 1px solid var(--color_main_d-op);
  text-align: center;
}

/*---------------------
フォーム
-----------------------*/

.groupForm {
  padding: var(--gap-content) 24px;
  border-radius: 4px;
  background-color: var(--color_base-op1);
}

.groupForm h3,
.groupForm>p {
  text-align: center;
  margin-bottom: var(--gap);
}

.groupForm h4 {
  margin-top: var(--gap-content);
  border-bottom-color: var(--color_main-l)
}

.groupForm dl {
  padding: 1rem 0;
}

.groupForm dt {
  font-weight: 600;
  color: var(--color_main-l);
}


.groupForm dt {
  margin-bottom: .5rem;
}


.groupForm .form1 input {
  width: 80px;
}

.groupForm input,
.groupForm select {
  margin-right: 4px;
  margin-bottom: 8px;
  padding: 1rem;
}

.groupForm dt,
.groupForm dd,
.groupForm input,
.groupForm select,
.groupForm textarea {
  font-size: var(--font-size_s);
}


.groupForm input,
.groupForm select,
.groupForm textarea {
  border: none;
  background-color: #fff;
  outline: 1px solid var(--color_main-l);
  border-radius: 4px;
}

.groupForm input:focus,
.groupForm select:focus,
.groupForm textarea:focus {
  outline: 4px solid var(--color_main-l);
}

.groupForm input[type="checkbox"]:focus {
  outline: none;
}

.groupForm input[type="checkbox"] {
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: top;
}

.form_breakdown dd {
  margin-left: var(--gap);
}

.form_breakdown span {
  display: inline-block;
  min-width: 140px;
}

.groupForm .form2 input {
  width: 100%;
}

.groupForm textarea {
  width: 100%;
  height: 128px;
  padding: 1rem;
}

.privacy {
  margin: var(--gap) 0;
  text-align: center;
}

.privacy span {
  text-decoration: underline;
  color: var(--color_main-l);
  cursor: pointer;
  margin-left: 1rem;
}

.groupForm .c-btn01 {
  font-size: var(--font-size_m);
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}

.required::after {
  content: "＊";
  display: inline-block;
  font-size: var(--font-size_xs);
  margin-left: 4px;
  color: #ff5c5c;

}

@media print,
screen and (min-width: 1020px) {
  form {
    width: min(94%, 640px);
    margin-right: auto;
    margin-left: auto;

  }

  .groupForm dl {
    display: table;
    width: 100%;
    padding: 2rem 0;
  }

  .groupForm dt,
  .groupForm dd {
    display: table-cell;
  }

  .groupForm dt {
    width: 200px;
  }

  .groupForm .contact dt {
    vertical-align: top;
    ;
  }
}