@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #050507;
  font-size: 1rem;
  font-family: "Arial", "メイリオ", sans-serif;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

a {
  color: #050507;
  text-decoration: none;
}

.smart_phone_layout_text {
  display: none;
}

/* --見出し----------------------- */
h1 {
  font-size: 3rem;
  letter-spacing: 5px;
}

h2 {
  margin: 20px 0;
}

/* h2の左にオレンジ色のイカリマークを表示 */
h2::before {
  font-family: "Font Awesome 6 Free";
  content: "\f13d";
  margin-right: 10px;
  color: orange;
}

/* --.flex---------------------- */
.flex,
.flex_list {
  display: flex;
  flex-wrap: wrap;
}

/* --#header----------------------- */
header {
  width: 1500px;
  margin: 0 auto;
  padding: 30px 0;
  z-index: 100;
}

header .flex {
  justify-content: space-between;
  align-items: center;
}

header li {
  margin-left: 100px;
  font-size: 1.25rem;
}

#mainvisual {
  overflow: hidden;
}

#mainvisual img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 50% 80%;
  background-repeat: no-repeat;
}

/* --.container------------------- */
.container {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

.container .flex {
  justify-content: space-between;
}

/* --項目ごとの余白(.flex_right)------------- */
#fare,
#terminal,
#contact {
  margin-bottom: 40px;
}

/* --#time_table------------------- */
.time_table {
  width: 300px;
  border-collapse: collapse;
}

.time_table th,
.time_table td {
  border: 1px solid #050507;
  padding: 10px;
  text-align: center;
}

/* --#fare------------------ */
#fare li {
  line-height: 1.75em;
}

/* --#terminal----------------------- */
.diamond_port_information {
  margin-bottom: 20px;
}

/* --#contact---------------------- */
#contact h3 {
  margin-top: 10px;
}

/* --#footer----------------------- */
footer {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5em;
}

.smart_phone_layout_copyright {
  display: none;
}




/* --レスポンシブ----------------------------------- */
@media screen and (max-width: 1600px) {
  h1 {
    font-size: 2.5rem;
  }

  header {
    width: 1000px;
  }

  header li {
    margin-left: 50px;
  }
}

/* --レスポンシブ----------------------------------- */
@media screen and (max-width: 1060px) {
  .flex {
    flex-direction: column;
  }

  .fare_text {
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  header {
    width: 600px;
  }

  header .menu {
    margin-top: 20px;
  }

  header li {
    margin-left: 30px;
    font-size: 1rem;
  }

  .container {
    margin-left: 30px;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* --レスポンシブ--スマホ----------------------------- */
@media screen and (max-width: 650px) {
  html {
    font-size: 80%;
  }

  strong {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    margin: 20px 0 10px 0;
    font-size: 1rem;
  }

  header,
  .container {
    width: 320px;
  }

  .menu {
    display: none;
  }

  .container {
    margin-left: 20px;
    padding: 0;
  }

  .time_table {
    width: 200px;
  }
}

/* --レスポンシブ--スマホ--テキストの折り返し------------- */
@media screen and (max-width: 460px) {
  .smart_phone_layout_text {
    display: block;
  }

  .normal_layout_text {
    display: none;
  }

  .normal_layout_copyright {
    display: none;
  }

  .smart_phone_layout_copyright {
    display: block;
  }
}