@charset "UTF-8";
/* -------------------------全ページ共通CSS------------------------- */
body {
  background-color: #fff;
  color: #2976d6;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Meiryo", "メイリオ",
    sans-serif;
  font-size: 4vw;
}

.center {
  text-align: center;
}

.orange {
  color: #f1943e;
}

.black {
  color: #707070;
}

.mt10 {
  margin-top: 10px;
}

h1 {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
}
.logo {
  width: 60px;
}

.btn {
  background-color: #2976d6;
  color: #fff;
  cursor: pointer;
  line-height: 3.4;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .btn {
    font-size: 30px;
  }
}

.accordion {
  position: relative;
  background-color: #2976d6;
  color: #fff;
  cursor: pointer;
}

.accordion::before {
  /*縦線*/
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  transform: rotate(90deg);
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.accordion::after {
  /*横線*/
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

.accordion.open::before {
  transform: rotate(180deg);
}

.accordion.open::after {
  opacity: 0;
}

.content {
  display: none;
}
.content p {
  margin-bottom: 1em;
}

.lang {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  max-width: 600px;
  margin: 0 auto 32px;
}
.lang li {
  flex-grow: 1;
  text-align: center;
}
.lang li a {
  background-color: #fff;
  border: 2px solid #2976d6;
  color: #2976d6;
  display: inline-block;
  font-size: 4vw;
  font-weight: 600;
  padding: 0.8em 1.6em;
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .lang li a {
    font-size: 2.5vw;
  }
}
.lang li a:hover {
  background-color: #fff;
  color: #fff;
}

section {
  margin-bottom: 32px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
section div {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  section div {
    font-size: 16px;
  }
}
section div.hide {
  display: none;
}
section div.show {
  display: block;
}

a {
  color: #fff;
  text-decoration: none;
}
a img.exlink {
  width: 15px;
  display: inline-block;
  padding-left: 3px;
  position: relative;
  top: 2px;
}

.exchange .header {
  background-image: url(images/icon/icon_yen.png), url(images/icon/icon_yen.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 30px, 30px;
  background-position: 13% center, 87% center;
  width: 100%;
}

.exlink a {
  background-color: #2976d6;
  color: #f0f889;
  display: block;
  font-size: 4vw;
  text-align: center;
  width: 100%;
  padding: 1em 0;
}
@media (min-width: 1024px) {
  .exlink a {
    font-size: 30px;
  }
}

.qrcode .header {
  background-color: #2976d6;
  color: #fff;
  font-size: 4vw;
  line-height: 3;
  padding: 0.5em 0;
}
@media (min-width: 768px) {
  .qrcode .header {
    font-size: 3vw;
    padding: 0.5em 1em;
  }
}
@media (min-width: 1024px) {
  .qrcode .header {
    font-size: 30px;
  }
}
.qrcode .header::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(images/icon/icon_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 7px;
  margin-right: 10px;
}
.qrcode .header::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(images/icon/icon_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 7px;
  margin-left: 10px;
}

footer {
  position: relative;
  top: -1em;
}
@media (min-width: 768px) {
  footer {
    top: -0.5em;
  }
}

small {
  font-size: 3vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  small {
    font-size: 16px;
  }
}

.audioguide {
  border-bottom: 1px solid #f1943e;
  margin-top: 32px;
}
.audioguide li {
  background: #f8f8f8;
  background: linear-gradient(to bottom, #f8f8f8 0%, #e3e3e3 50%, #f8f8f8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f8f8f8", endColorstr="#f8f8f8",GradientType=0 );
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 10px;
  border-top: 1px solid #f1943e;
}
.audioguide li div {
  margin: 0;
}
.audioguide li div:first-child {
  flex: 0 0 30%;
}
.audioguide li div:last-child {
  flex: 0 0 65%;
  position: relative;
}
.audioguide li div:last-child .num {
  display: inline-block;
  line-height: 1.5;
  text-align: right;
  width: 2em;
  padding-right: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .audioguide li div:last-child .num {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  .audioguide li div:last-child .num {
    font-size: 20px;
  }
}
.audioguide li div:last-child .title {
  display: block;
  padding-left: 2em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .audioguide li div:last-child .title {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  .audioguide li div:last-child .title {
    font-size: 20px;
  }
}
.audioguide li div:last-child .start {
  display: inline-block;
  font-size: 14px;
  text-align: right;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .audioguide li div:last-child .start {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  .audioguide li div:last-child .start {
    font-size: 20px;
  }
}
.audioguide li div:last-child .start i {
  padding-left: 0.3em;
}

/* -------------------------Shimizu-Marin-Terminal 1------------------------- */
.ferry {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ferry .exlink {
  margin-bottom: 50px;
}
.ferry .exlink a {
  background-image: url(images/icon/icon_ship.png),
    url(images/icon/icon_ship.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 30px, 30px;
  background-position: 13% center, 87% center;
  width: 100%;
  display: block;
}

.modal_box {
  position: fixed;
  display: none;
  z-index: 7777;
  width: 90%;
  max-width: 600px;
  margin: 0;
  padding: 30px 2vw;
  border: 2px solid #aaa;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}
.modal_box .contents {
  width: 95%;
}
.modal_box .contents h4 {
  color: #f1943e;
  font-size: 4vw;
  line-height: 1.4;
  text-align: center;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .modal_box .contents h4 {
    font-size: 24px;
  }
}
.modal_box .contents h4 + p {
  color: #707070;
  font-size: 4vw;
  text-align: left;
}
@media (min-width: 768px) {
  .modal_box .contents h4 + p {
    font-size: 18px;
  }
}

.modal_bg {
  z-index: 6666;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.link_area {
  width: 95%;
  height: 50px;
  margin: 0 auto;
  position: relative;
}
.link_area .modal_link_next {
  position: absolute;
  right: 0;
  top: 0;
}
.link_area .modal_link_prev {
  position: absolute;
  left: 0;
  top: 0;
}
.link_area a {
  display: inline-block;
  line-height: 2.5;
  color: #f1943e;
  font-size: 30px;
}
.link_area a i {
  padding-left: 5px;
  padding-right: 5px;
}
.link_area .modal_close {
  color: #707070;
  display: block;
  font-size: 30px;
  line-height: 75px;
  position: absolute;
  top: 0;
  left: 50%;
  text-align: center;
  width: 36px;
  transform: translateX(-18px);
}
.link_area .modal_close .modal_close i {
  line-height: 75px;
  vertical-align: bottom;
}

/* -------------------------Mt.Fuji Shimizu Port Cruise 2------------------------- */
.bnr {
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------Shimizu Marina Circus 3------------------------- */
/* -------------------------Entrance of the S-PULSE DREAM PLAZA 4------------------------- */
.bnr-s {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
}

/* -------------------------CHIBI MARUKO CHAN LAND 5------------------------- */
/* -------------------------Shimizu Sushi Alley 6------------------------- */
/* -------------------------Shimizu Sushi Museum 7------------------------- */
.bnr-sushim {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.bnr-sushim img {
  border: 1px solid #707070;
  display: block;
  width: 90%;
  margin: 0 auto 50px;
  padding: 10px;
}
@media (min-width: 768px) {
  .bnr-sushim img {
    width: 100%;
  }
} /*# sourceMappingURL=style.css.map */
