@charset "utf-8";

html {
  scroll-behavior: smooth;
}

body,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

body {
  background-color: #1e293b;
  color: #fff;
}

img {
  width: 100%;
}

br.no-sp {
  display: inline;
}

br.for-sp {
  display: none;
}

br.for-sml-sp {
  display: none;
}

@media screen and (max-width: 559px) {
  br.no-sp {
    display: none;
  }

  br.for-sp {
    display: inline;
  }
}

@media screen and (max-width: 400px) {
  br.for-sml-sp {
    display: inline;
  }
}


/* ヒーロー動画 */
.km-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.km-hero-subtitle-overlay {
  position: absolute;
  font-size: 1.3rem;
  top: 25px;
  left: 130px;
  font-family: serif;
  color: #000;
}

.km-hero-title-overlay {
  color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 30px;
  left: 120px;
  font-family: serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

}

.km-hero-title-overlay .name {
  font-size: 6.5rem;
}

.km-hero-title-overlay .suffix {
  font-size: 3.0rem;
}


.km-hero-phone-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  right: 150px;
  top: 20px;
  color: #000;
  z-index: 999;
}

.km-hero-phone-overlay .phone {
  font-family: serif;
}

.km-hero-phone-overlay .phone .prefix {
  font-size: 1.4rem;
}

.km-hero-phone-overlay .phone .num {
  text-decoration: none;
  font-size: 1.8rem;
  color: #000;
}

.km-hero-catch-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 60px;
  right: 120px;
  display: flex;
  justify-content: flex-end;
}

.km-hero-catch-overlay .catch {
  color: #000;
  width: 30%;
  font-family: serif;
  font-size: 1.1rem;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 1150px) {
  .km-hero-catch-overlay {
    top: 150px;
    right: 0;
    left: 0;
  }

  .km-hero-catch-overlay .catch {
    width: 100%;
    margin-top: 20px;
    margin-right: 30px;
    margin-left: 30px;
  }
}

@media screen and (max-width: 1050px) {
  .km-hero-phone-overlay {
    right: 70px;
    top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .km-hero-subtitle-overlay {
    left: 70px;
  }

  .km-hero-title-overlay {
    left: 70px;
    top: 40px;
  }

  .km-hero-title-overlay .name {
    font-size: 5.0rem;
  }

  .km-hero-title-overlay .suffix {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 720px) {
  .km-hero-subtitle-overlay {
    top: 60px;
  }

  .km-hero-title-overlay {
    top: 75px;
  }

  .km-hero-catch-overlay {
    top: 170px;
  }
}

@media screen and (max-width: 559px) {
  .km-hero-title-overlay {
    left: 30px;
  }

  .km-hero-title-overlay .name {
    font-size: 5.0rem;
  }

  .km-hero-title-overlay .suffix {
    font-size: 1.3rem;
  }

  .km-hero-subtitle-overlay {
    left: 30px;
  }

  .km-hero-phone-overlay .suffix {
    font-size: 1.2rem;
  }

  .km-hero-phone-overlay .num {
    font-size: 1.5rem;
  }

  .km-hero-phone-overlay {
    right: 60px;
  }
}

@media screen and (max-width: 380px) {
  .km-hero-title-overlay .name {
    font-size: 4.0rem;
  }

  .km-hero-catch-overlay {
    top: 160px;
    font-size: 0.9rem;
  }
}

.km-hero-movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スティッキーメニュー */
.km-menu {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  z-index: 1000;
}

.km-menu-item {
  list-style: none;
}

.km-menu-item a {
  text-decoration: none;
  color: #ccc;
}

.km-menu-item a.phone-lnk {
  color: #e6960f;
}

@media screen and (max-width: 559px) {
  .km-menu {
    display: none;
  }
}

/* オフキャンバスメニュー */
.km-offcanvas-btn-wrap {
  display: none;
  top: 15px;
  right: 5px;
  position: fixed;
  justify-content: flex-end;
  z-index: 1001;
}

.km-offcanvas-btn {
  margin-right: 15px;
  font-size: 1.5rem;
  display: inline-block;
  border: 1px solid #000;
  color: #000;
}

.km-offcanvas {
  position: fixed;
  inset: 0 auto 0 0;
  width: 80%;
  max-width: 280px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 1;
  overflow-y: auto;
}

.km-offcanvas.is-open {
  transform: translateX(0);
  z-index: 1000;
}

.km-overlay {
  /* 全体を覆うオーバーレイ */
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 2;
}

.km-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.km-ofc-menu {
  padding: 0;
  margin: 30px 0 0;
}

.km-ofc-menu-item {
  padding: 10px;
  margin: 0;
  list-style-type: none;
  border-bottom: 1px dotted #888;
}

.km-ofc-menu-item a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  width: 100%;
}

.km-ofc-phone-insta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.km-ofc-phone-insta .phone {
  display: inline-block;
  font-size: 2.0rem;
  text-decoration: none;
  color: #e6960f;
}

.km-ofc-phone-insta .logo {
  width: 40px;
}

@media screen and (max-width: 559px) {
  .km-offcanvas-btn-wrap {
    display: block;
    z-index: 1001;

  }
}

/* 横中央のブロック */
.km-center-cntnr {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 70px;
}

@media screen and (max-width: 559px) {

  .km-center-cntnr,
  .km-center-cntnr.yoyaku {
    width: 100%;
    margin: 0 auto 30px;
  }

  .km-center-cntnr.yoyaku,
  .km-center-cntnr.tuckle {
    width: 100%;
  }

}

/* ブロック見出し */
.km-block-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.km-block-title {
  display: inline-block;
  color: #e6960f;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  padding: 0 1rem;
  border-bottom: 1px solid #e6960f;
}

.km-block-title.annai {
  margin-top: 30px;
}

/* ご案内 */
.km-center-cntnr.annai {
  margin-bottom: 30px;
}

.km-annai-cntnr {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.km-annai-box {
  width: 45%;
  border-radius: 30px;
  padding: 10px;
  margin: 30px 0;
  color: #fff;
  background-color: #2a3644;
}

.km-annai-box-hdr-wrap {
  display: flex;
  justify-content: center;
}

.km-annai-box-hdr {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 0.5px solid #fff;
}

@media screen and (max-width: 559px) {
  .km-annai-cntnr {
    display: block;
    margin: 0 auto;
  }

  .km-annai-box {
    width: 95%;
  }
}

/* 横並び3枚画像 */
.km-3-photo-row {
  display: flex;
  margin-bottom: 70px;
}

.km-3-photo-row-img {
  flex: 1;
}

@media screen and (max-width: 559px) {
  .km-3-photo-row {
    display: block;
    margin-bottom: 30px;
  }
}

.km-rsrv-calendar-cntnr {
  margin-bottom: 30px;
}

.km-rsrv-calendar-ym {
  color: #000;
  background-color: #fff;
  font-style: italic;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-top: 10px;
}

.km-rsrv-calendar-ym .y,
.km-rsrv-calendar-ym .m {
  font-size: 1.8rem;
  display: inline-block;
  margin-right: 3px;
}

.km-rsrv-calendar-ym .m {
  margin-left: 3px;
}

.km-rsrv-calendar-table {
  border-radius: 10px;
  background-color: #fff;
}

.km-rsrv-calendar-table dl {
  line-height: 1.0;
  font-size: 0.9rem;
  /*  padding: 3px 0; */
  /* border-bottom: 1px dotted #fff; */
  letter-spacing: 0.1rem;
  display: flex;
  align-items: stretch;
}

.km-rsrv-calendar-table .day-wday,
.km-rsrv-calendar-table .cntnt {
  background-color: #fff;
  color: #000;
}

.km-rsrv-calendar-table .day-wday {
  border-bottom: 1px dotted #000;
  display: flex;
}

.km-rsrv-calendar-table .day-wday:first-of-type {
  border-top: 1px dotted #000;
}

.km-rsrv-calendar-table .day-wday.sat {
  background-color: #ccffff;
}

.km-rsrv-calendar-table .day-wday.sun {
  background-color: #ffccff;
}

.km-rsrv-calendar-table .day,
.km-rsrv-calendar-table .wday {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  padding: 3px;
}

.km-rsrv-calendar-table .day {
  border-left: 1px solid #000;
  border-right: 1px dotted #000;
}

.km-rsrv-calendar-table .cntnt {
  width: 100%;
  padding: 3px;
  border-left: 1px dotted #000;
  border-right: 1px solid #000;
  border-bottom: 1px dotted #000;

}

.km-rsrv-calendar-table .cntnt:first-of-type {
  border-top: 1px dotted #000;
}

.km-center-cntnr.rsrv-note {
  margin-top: 50px;
  margin-bottom: 70px;
}

.km-rsrv-note-tbl {
  color: #fff;
  font-size: 0.9rem;
}

.km-rsrv-note-tbl-row {
  display: flex;
  color: #000;
  width: 100%;
  margin: 0;
  padding: 0;
}

.km-rsrv-note-tbl-row-lbl {
  margin: 0;
  padding: 5px;
  width: 20%;
  background-color: #2a3644;
  border-bottom: 1px dotted #888;
  color: #fff;
}

.km-rsrv-note-tbl-row-lbl.last {
  border-bottom: 1px solid #2a3644;
}

.km-rsrv-note-tbl-row-val {
  margin: 0;
  padding: 5px;
  width: 80%;
  background-color: #eee;
  border-bottom: 1px dotted #3d2121;
}

@media screen and (max-width: 559px) {
  .km-rsrv-note-tbl-row {
    display: block;
  }

  .km-rsrv-note-tbl-row-lbl,
  .km-rsrv-note-tbl-row-val {
    width: unset;

  }

  .km-rsrv-note-tbl-row-val {
    padding: 10px;
  }

  .km-center-cntnr.rsrv-note {
    margin: 30px auto;
  }
}

/* 料金 */
.km-sp-ryokin-cntnr {
  display: none;
}

.km-ryokin-box {
  border-radius: 30px;
  padding: 30px;
  background-color: #2a3644;
  margin-bottom: 50px;
}

.km-ryokin-box-hdr {
  color: #0baad0;
  font-size: 1.2rem;
  font-weight: bold;
}

.km-ryokin-row {
  display: flex;
  border-bottom: 1px dashed #888;
  padding: 10px 0;
}

.km-ryokin-row .menu {
  width: 30%;
  font-size: 1.1rem;
  font-weight: bold;
}

.km-ryokin-row .ninzu {
  width: 20%;
}

.km-ryokin-row .ninzu.ezuri {
  width: 35%;
}

.km-ryokin-row .jikan {
  width: 15%;
}

.km-ryokin-row .ryokin {
  width: 35%;
}

.km-ryokin-row .ryokin .yen {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e6960f;
}

.km-ryokin-row.hdr .menu,
.km-ryokin-row.hdr .ninzu,
.km-ryokin-row.hdr .jikan,
.km-ryokin-row.hdr .ryokin {
  color: #ccc;
}

.km-ryokin-row.hdr .menu {
  font-size: normal;
  font-weight: normal;
}

.km-ryokin-note {
  padding: 10px 0;
}

.km-sp-ryokin-box {
  padding: 15px;
  background-color: #2a3644;
  border-radius: 30px;
  margin-bottom: 30px;
}

.km-sp-ryokin-box-hdr {
  margin-left: 10px;
  color: #0baad0;
  font-weight: bold;
  font-size: 1.2rem;
}

.km-sp-ryokin-item-block {
  padding: 15px 10px;
  border-bottom: dashed 1px #888;
}

.km-sp-ryokin-item-block .menu {
  font-size: 1.2rem;
}

.km-sp-ryokin-item-block .lbl {
  color: #ccc;
  font-size: 0.9rem;
}

.km-sp-ryokin-item-block .ryokin .yen {
  color: #e6960f;
  font-size: 1.2rem;
  font-weight: bold;
}

.km-sp-ryokin-note {
  padding: 10px;
}

@media screen and (max-width: 559px) {
  .km-center-cntnr.ryokin {
    display: none;
  }

  .km-sp-ryokin-cntnr {
    display: block;
  }
}

/* タックル */
#tuckle-jiging-cntnt,
#tuckle-tairaba-cntnt,
#tuckle-ika-cntnt,
#tuckle-ezuri-cntnt {
  display: none;
  /*  padding: 30px !important; */
}

.km-tuckle-catch {
  text-align: center;
  padding: 10px 0;
  color: #fff;
}

.km-tuckle-sec-lbl {
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 1.1rem;
  text-align: center;
  background-color: #fff;
  color: #000;
}

.km-tuckle-sec-cntnt {
  padding: 30px;
  background-color: #2a3644;
}

.km-tuckle-sec-cntnt p.mb5 {
  margin-bottom: 5px;
}

.km-tuckle-sec-cntnt-hdr {
  font-size: 1.1rem;
}

.fish-mark {
  color: #e6960f;
  display: inline-block;
  margin-right: 3px;
}

.km-tuckle-sec-cntnt-hor-cntnr {
  display: flex;
  align-items: center;
}

.km-tuckle-sec-cntnt-hor-cntnr .w30-mr20 {
  width: 30%;
  margin-right: 20px;
}

.km-tuckle-sec-cntnt-hor-cntnr .w70 {
  width: 70%;
}

.km-tuckle-sec-cntnt-hor-cntnr .w75 {
  width: 75%;
}

.km-tuckle-sec-cntnt-hor-cntnr .w25-ml20 {
  width: 25%;
  margin-left: 20px;
}

.km-tuckle-rental-lnk,
.km-sp-tuckle-rental-lnk {
  color: #0baad0;
  text-decoration: none;
}

.km-sp-tuckle-catch {
  display: none;
}

@media screen and (max-width: 559px) {
  .km-tuckle-catch {
    text-align: left;
    padding: 5px;
  }

  .km-tuckle-sec-cntnt {
    padding: 30px 10px;
  }

  .km-tuckle-sec-cntnt-hor-cntnr .w30-mr20,
  .km-tuckle-sec-cntnt-hor-cntnr .w25-ml20 {
    display: none;
  }

  .km-tuckle-sec-cntnt-hor-cntnr .w70,
  .km-tuckle-sec-cntnt-hor-cntnr .w75 {
    width: 100%;
  }

  .km-tuckle-catch {
    display: none;
  }

  .km-sp-tuckle-catch {
    display: block;
    text-align: center;
    padding: 0 5px 20px;
  }
}

/* 船長挨拶 */
.km-captain-greeting {
  color: #fff;
  margin-bottom: 30px;
  font-family: serif;
  text-align: center;
  line-height: 2.0;
}

.km-captain-greeting .greeting-catch {
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  margin: 10px 0;
}

.km-captain-greeting-img-cap {
  color: #fff;
  text-align: right;
}

@media screen and (max-width: 559px) {
  .km-captain-greeting {
    text-align: left;
    padding: 10px 10px 20px;
    ;
    margin-bottom: 0;
  }
}

/* 船舶紹介 */
.km-ship-intro-tbl {
  color: #fff;
}

.km-ship-intro-tbl-row {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.km-ship-intro-tbl-row-lbl {
  margin: 0;
  padding: 5px;
  width: 20%;
  background-color: #2a3644;
  color: #fff;
  border-bottom: 1px dotted #888;
}

.km-ship-intro-tbl-row-lbl.last {
  border-bottom: 1px solid #2a3644;
}

.km-ship-intro-tbl-row-val {
  margin: 0;
  padding: 5px;
  width: 80%;
  color: #000;
  background-color: #eee;
  border-bottom: 1px dotted #888;
}

.km-ship-intro-tbl-row-val .name {
  font-weight: bold;
}

@media screen and (max-width: 559px) {
  .km-ship-intro-tbl-row {
    display: block;
    width: 100%;
  }

  .km-ship-intro-tbl-row-lbl,
  .km-ship-intro-tbl-row-val {
    width: unset;
  }
}

/* 注意事項 */
.km-notes-block {
  line-height: 1.8;
  border-radius: 30px;
  padding: 20px;
  color: #fff;
  background-color: #2a3644;
}

/* 出港地 */
.km-ushibukako {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* フッター */
footer.km-center-cntnr {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  align-items: center;
}

.km-footer-info {
  order: 1;
  font-family: serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.km-footer-cntct {
  order: 2;
  border-radius: 30px;
  background-color: #2a3644;
  padding: 20px;
  font-family: sans-serif;
}

.km-footer-cntct .lbl {
  font-size: 1.5rem;
}

.km-footer-cntct .prefix {
  font-size: 2.0rem;
}

.km-footer-cntct .phone {
  font-size: 3.0rem;
  text-decoration: none;
  color: #e6960f;

}

@media screen and (max-width: 559px) {
  footer.km-center-cntnr {
    display: block;
  }

  .km-footer-cntct {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 420px) {
  footer.km-center-cntnr {
    margin: 30px auto;
  }

  .km-footer-cntct .phone {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 400px) {
  .km-footer-cntct .phone {
    font-size: 2.4rem;
  }
}

/* インスタグラム・アメーバブログ*/
#sb_instagram .sb_instagram_header,
.sb_instagram_header,
#sb_instagram #sbi_load .sbi_load_btn {
  display: none;
}

.ameba-lnk {
  background-color: #2f873c;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  padding: 7px 52px;
  border-radius: 4px;
  margin-top: 5px;
  display: inline-block;
}

@media screen and (max-width: 380px) {
  .ameba-lnk {
    margin-right: -3px;
  }
}