@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  font-size: 16px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #333;
}

li {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h1 {
  font-size: 24px;
  border-bottom: 2px solid #007ea7;
}

.container {
  max-width: 1000px;
  padding-inline: 20px;
  margin-inline: auto;
}

.red {
  color: #e00505;
  font-weight: 600;
}

.blue {
  color: #005ac9;
  font-weight: 600;
}

/* =================== header =================== */

.header-top-content {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  gap: 20px;
}

.header-bottom-content {
  background-color: #007ea7;
  color: #fff;
  padding-top: 5px;
}

.header-bottom-list {
  height: 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.header-bottom-contact {
  text-align: center;
}

.header-bottom-contact p:last-child {
  font-size: 10px;
}

.header-bottom-tel {
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
}

.nav-menu {
  display: flex;
  gap: 20px; /* 必要に応じて調整 */
}

/* モバイルメニュー用マスク */
.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

/* モバイルメニュー本体 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  padding: 40px 20px;
  z-index: 999;
  overflow-y: auto;
}

/* モバイルメニュー内のリンクスタイル */
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-list {
  margin-bottom: 40px;
}

.mobile-menu ul li a {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.hamburger {
  /* 既存: display / position / right / top … はそのまま */
  z-index: 1001; /* ← .mobile-menu(999) より大きく */
  position: fixed; /* メニューScroll時に置いて行かれないよう固定 */
}

/* ☰ 三本線の色（閉じているとき） */
.hamburger span {
  background: #007ea7; /* 白背景に埋もれない濃い色 */
}

/* ✕ バッテン時の色（開いているとき） */
.hamburger.active span {
  background: #007ea7; /* ここも同じ色で統一 */
}

/* バッテン状態のスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #007ea7; /* バッテン時の色調整 */
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #007ea7;
}

/* =================== main ================== */
.mainvisual {
  height: calc(100vh - 160px);
  object-fit: cover;
  margin-bottom: 100px;
}

.section {
  text-align: center;
  margin-bottom: 120px;
}

.sec-title {
  display: inline-block;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-inline: 20px;
  padding-bottom: 10px;
  margin-bottom: 60px;
}

.sec-title-jp {
  font-size: 24px;
}

.sec-title-en {
  font-size: 18px;
}

.sec-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.sec-flex-left {
  max-width: 650px;
  margin-right: 40px;
}

.sec-flex-left h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.sec-flex-right {
  width: 30%;
}

.sec-button {
  text-align: right;
  font-size: 14px;
  margin-top: 20px;
}

.sec-button a {
  width: 130px;
  line-height: 1;
  background-color: #007ea7;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding-block: 12px;
}

.top-elegance h3 {
  color: #005ac9;
}

.top-elegance-intro {
  text-align: left;
  margin-bottom: 60px;
}

.top-elegance-intro p:first-child {
  margin-bottom: 20px;
}

.top-elegance .sec-flex-left {
  width: 45%;
}

.top-elegance .sec-flex-right {
  width: 35%;
}

.sec-reverse {
  flex-direction: row-reverse;
  margin-bottom: 40px;
}

.sec-reverse .sec-flex-left {
  width: 35%;
  margin-right: 0;
}

.sec-reverse .sec-flex-right {
  width: 35%;
  margin-right: 40px;
}

.owner-text {
  text-align: left;
  line-height: 1.6;
}

.comment {
  margin-bottom: 10px;
}

.owner-img {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.owner-img img:first-child {
  width: 35%;
  object-fit: contain;
}

.owner-img img:last-child {
  width: 50%;
  object-fit: contain;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.news-list-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.news-list-item time {
  display: inline-block;
  margin-bottom: 5px;
}

.news-list-item span {
  display: inline-block;
  background: #ff9683;
  border-radius: 4px;
  font-size: 8px;
  padding: 2px 5px;
  margin-left: 10px;
}

.news-list-item h3 {
  font-size: 12px;
}

.news-list-item {
  width: 100%;
  font-size: 10px;
  margin-bottom: 40px;
}

.large-button {
  text-align: center;
}

.large-button a {
  width: 300px;
  padding-block: 15px;
  font-size: 12px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta h2 {
  font-size: 32px;
}

.cta-left p:first-of-type {
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-button {
  margin-left: 20px;
}

/* =================== footer =================== */

.footer {
  border-top: 1px solid #333;
  padding-top: 60px;
  margin-top: 60px;
}

.footer-top-flex,
.footer-bottom-flex {
  display: flex;
  align-items: center;

  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.sns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sns p,
.footer-bottom-flex a {
  border-bottom: 1px solid #333;
}

.sns p {
  font-weight: 700;
}

.footer-bottom-flex {
  font-size: 10px;
  padding-bottom: 0;
}

.sns img {
  width: 25px;
  height: 25px;
}

/* ================================ company.html =============================== */
.banner {
  height: 250px;
  background-image: url(../images/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

.banner-title {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 1px solid #333;
  padding-inline: 40px;
  padding-bottom: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-en {
  font-size: 16px;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 70%);
}

.company-left {
  width: 56%;
}

.company-left p:first-child {
  margin-bottom: 10px;
}

.company-right {
  width: 40%;
}

.company-info {
  max-width: 800px;
  margin-inline: auto;
}

.company-info dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.company-info dt {
  width: 25%;
  margin-bottom: 40px;
}

.company-info dd {
  width: 75%;
}

.iframe {
  width: 100%;
  margin-bottom: 60px;
}

.contact {
  text-align: left;
}

.contact h3 {
  margin-bottom: 20px;
}

.contact-desc {
  margin-bottom: 10px;
}

.mail {
  display: flex;
  align-items: center;
  color: #2084ff;
}

.mail img {
  width: 22px;
  height: 15.4px;
  margin-right: 5px;
}

.mail p {
  border-bottom: 1px solid #2084ff;
}

/* 削除ボタン */
.delete-btn {
  background-color: #ff4d4d;
  color: white;
  height: auto;
  border: none;
  padding-inline: 6px;
  border-radius: 6px;
  cursor: pointer;
  align-self: center;
  margin-left: 10px;
  margin-bottom: 30px;
  transition: background-color 0.3s;
}

.delete-btn:hover {
  background-color: #cc0000;
}

/* =============================== tour.html ================================ */

.tour-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  row-gap: 40px;
}

.tour-item {
  height: 220px;
}

.tour-item img {
  width: 300px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 10px;
}

.tour-detail-item {
  background: #eef8ff;
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

.tour-detail-list h3 {
  font-size: 24px;
  color: #005ac9;
  margin-bottom: 40px;
}

.tour-detail-item-content {
  display: flex;
  text-align: left;
  gap: 40px;
}

.tour-detail-left {
  width: 300px;
}

.tour-detail-left img {
  width: 300px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
}

.tour-detail-copy {
  font-size: 20px;
  color: #005ac9;
  font-weight: 600;
  margin-bottom: 20px;
}

.tour-detail-right a {
  color: #2084ff;
  border-bottom: 1px solid #2084ff;
}

.tour-detail-desc p {
  margin-bottom: 20px;
}

.tour-text-item {
  margin-bottom: 20px;
}

.tour-item {
  margin-bottom: 20px;
}

.tour-text-title {
  display: flex;
  align-items: center;
  color: #005ac9;
}

.tour-text-title img {
  width: 18px;
  height: 16px;
  margin-right: 5px;
}

.text-margin {
  margin-block: 10px;
}

.tour-contact .tour-detail-item-content {
  justify-content: center;
  align-items: center;
}

.tour-contact .tel {
  border-bottom: 1px solid #333;
}

.other_text {
  font-size: 20px;
  width: 400px;
}

/* =============================== price.html ================================ */

.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 2px solid #aad4f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 32px;
  margin-bottom: 40px;
}

.price-list-left h3 {
  margin-bottom: 20px;
}

.price-list-right {
  font-weight: bold;
}

.price-text {
  font-size: 18px;
  text-align: right;
}

.price-text span {
  font-size: 28px;
  margin-inline: 10px 5px;
}

.rental h3 {
  margin-bottom: 20px;
}

.rental .sec-flex {
  justify-content: center;
  gap: 60px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.rental-left {
  width: 40%;
}

.rental-right {
  width: 50%;
}

.rental-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rental-list dt {
  width: 50%;
  margin-bottom: 5px;
}

.rental-list dd {
  width: 50%;
}

/* =============================== news.html ================================ */

.news {
  margin-bottom: 100px;
}

/* =============================== form.html ================================ */

form {
  margin-bottom: 80px;
}

label {
  display: block;
  font-weight: bold;
}

.required {
  color: red;
  margin-left: 5px;
}

input[type="text"],
input[type="email"],
select,
textarea,
.wpforms-container-full .wpforms-form textarea.wpforms-field-medium,
.wpforms-container-full input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 4px;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row > div {
  flex: 1;
  position: relative; /* select内に画像を配置するために必要 */
}

textarea {
  height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.notice {
  color: red;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.privacy-area {
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-link {
  color: #007bff;
  border-bottom: 1px solid #007bff;
}

.privacy-check-text {
  font-weight: normal;
}

#agree {
  width: 20px;
  height: 20px;
}

.submit {
  text-align: center;
}

.submit button {
  width: 250px;
  background: #007ea7;
  padding-block: 12px;
  border-radius: 20px;
  color: #fff;
  letter-spacing: 0.5rem;
  margin-top: 60px;
}

select.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/vector.png") no-repeat right 30px center;
  background-size: 15px 10px;
  padding-right: 2.5rem;
  background-color: white;
}

/* 入力エリアの共通スタイル */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 0.5px solid #333;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
}

/* 2列横並び（ツアー選択と日付） */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row > div {
  flex: 1;
}

/* チェックボックスの行 */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

/* プライバシー文 */
.privacy-area {
  font-weight: bold;
  margin-top: 2rem;
}

/* 送信ボタン */
.wpcf7-submit {
  background-color: #007ea7;
  color: white;
  padding: 0.8rem 3rem;
  font-weight: bold;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.wpcf7-submit:hover {
  background-color: #00678c;
}

/* 注意書き */
.notice {
  color: red;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.custom-date {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 3px 5px;
}

/* 無効状態の送信ボタン */
.wpcf7-submit.disabled-submit {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/* エラーメッセージ表示用（初期は非表示） */
.email-error {
  color: red;
  font-size: 0.9rem;
  margin-top: -20px;
  margin-bottom: 20px;
  display: none;
}
.email-error.show {
  display: block;
}

.privacy-error {
  color: red;
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 20px;
  display: none;
}

.privacy-error.show {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

.submit {
  margin-top: 40px;
}

.submit input {
  width: 260px;
  border-radius: 10px;
}
/* ============================= single-news.html ============================== */

.single-news {
  max-width: 500px;
  padding-top: 100px;
  margin-inline: auto;
}

.single-news-image {
  display: block;
  max-width: 500px;
  height: auto;
  margin-bottom: 40px;
  margin-inline: auto;
}

.single-news-text {
  text-align: left;
}

.time {
  display: inline-block;
  margin-bottom: 10px;
}

.single-news-button {
  border: 1px solid #007ea7;
  width: 200px;
  border-radius: 20px;
  padding-block: 16px;
  margin-inline: auto;
  margin-top: 40px;
}

.single-news-button a {
  color: #007ea7;
  font-weight: bold;
}

/* ============================= kakurokumaru.html ============================== */

.wrapper {
  text-align: left;
}

.first-text {
  margin-bottom: 10px;
}

.kakurokumaru-image {
  text-align: center;
}

.wrapper img {
  max-width: 900px;
  margin-bottom: 20px;
}

.caption {
  margin-block: 30px 10px;
}

.bold {
  font-weight: 700;
  margin-block: 5px;
}

.insurance {
  margin-block: 20px;
}

.cruising-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cruising-list dt {
  width: 50%;
  border-bottom: 1px solid #a7a0a0;
  padding-block: 16px 10px;
}

.cruising-list dd {
  width: 50%;
  border-bottom: 1px solid #a7a0a0;
  padding-block: 16px 10px;
}

/* ============================= privacy.html ============================== */

.privacy {
  text-align: left;
}

.privacy h2 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  position: relative;
  padding-left: 10px;
  margin-bottom: 40px;
}

.privacy h2:before {
  content: "";
  position: absolute;
  height: 50%;
  width: 1px;
  background: #000;
  top: 15%;
  left: 0;
}

.privacy .text {
  margin-bottom: 32px;
}

.privacy .list {
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  .tour-list {
    row-gap: 0;
  }

  .tour-item img {
    width: 250px;
    height: 170px;
  }
}

@media (max-width: 850px) {
  .tour-item {
    height: auto;
  }

  .tour-item img {
    width: 200px;
    height: 120px;
  }
}

@media (max-width: 900px) {
  .header-top-content {
    height: 80px;
  }

  .logo {
    /* border-bottom: 2px solid #fff; */
  }

  .logo a {
    /* color: #fff; */
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50;
  }

  .hamburger span {
    background: #007ea7;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    padding: 20px;
    z-index: 999;
  }

  .nav-menu.active {
    display: block;
  }

  .header-bottom-content {
    display: none;
  }

  .mainvisual {
    height: calc(100vh - 80px);
    object-fit: cover;
    margin-bottom: 100px;
  }

  .footer-top-flex {
    display: block;
    margin-bottom: 30px;
  }

  .footer-left {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .tour-detail-left,
  .tour-detail-left img {
    width: 200px;
  }

  .tour-item {
    height: auto;
  }
}

@media (max-width: 700px) {
  .section {
    margin-bottom: 80px;
  }

  .cta {
    flex-direction: column;
    align-items: start;
  }

  .cta-button {
    width: 100%;
    margin-inline: auto;
  }

  .cta-button a {
    max-width: 510px;
  }

  .sec-title {
    margin-bottom: 20px;
  }

  .sec-flex {
    flex-direction: column-reverse;
  }

  .sec-flex h3 {
    margin-bottom: 5px;
  }

  .sec-button {
    text-align: center;
  }

  .sec-button a {
    width: 60%;
  }

  .top-elegance .sec-flex {
    margin-bottom: 40px;
  }

  .sec-flex-left {
    margin-right: 0;
    margin-top: 10px;
  }

  .sec-flex-right {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .top-elegance-intro {
    margin-bottom: 20px;
  }

  .top-elegance .sec-flex-right {
    width: 100%;
    margin-right: 0;
  }

  .sec-reverse .sec-flex-left,
  .top-elegance .sec-flex-left {
    width: 100%;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-list-item {
    margin-bottom: 0;
  }

  .news-list-item:last-child {
    margin-bottom: 20px;
  }

  .news-list-item img {
    max-width: 350px;
    display: block;
    margin-inline: auto;
  }

  .footer-bottom-flex {
    flex-direction: column-reverse;
    align-items: start;
    gap: 10px;
  }

  .footer-bottom-left a {
  }

  .banner-title {
    font-size: 24px;
  }

  .company-left,
  .company-right {
    width: 100%;
  }

  .company-right {
    margin-bottom: 20px;
  }

  .tour-list {
    grid-template-columns: 1fr 1fr;
  }

  .tour-detail-item-content {
    flex-direction: column;
  }

  .tour-item img {
    width: 240px;
    height: 140px;
  }

  .tour-detail-left,
  .tour-detail-left img {
    width: 100%;
  }

  .tour-detail-list h3 {
    font-size: 20px;
  }

  .price-list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .price-list-left {
    margin-bottom: 20px;
  }

  .rental .sec-flex {
    gap: 10px;
  }

  .rental-left {
    width: 100%;
  }
  .rental-right {
    width: 80%;
  }

  .rental-right h3 {
    margin-bottom: 20px;
  }

  .rental-list dd {
    border-bottom: 1px solid #e2e2e2;
    text-align: right;
    margin-bottom: 12px;
  }

  .rental-list dt {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 12px;
  }

  .form-row {
    flex-direction: column;
  }

  .custom-select {
    margin-bottom: 0;
  }

  .tour-item {
    height: auto;
  }

  .delete-btn {
    margin-bottom: 0;
  }
}

@media (max-width: 550px) {
  .tour-item img {
    width: 220px;
    height: 120px;
  }
}

@media (max-width: 500px) {
  .owner-img {
    flex-direction: column;
  }

  .owner-img img:first-child,
  .owner-img img:last-child {
    width: 100%;
    margin-bottom: 20px;
  }

  .banner-title {
    padding-inline: 0;
  }

  .rental-right {
    width: 100%;
  }

  select.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("../images/vector.png") no-repeat right 10px center;
    background-size: 15px 10px;
    padding-right: 1rem;
    background-color: white;
  }

  .company-info dt,
  .company-info dd {
    width: 100%;
    margin-bottom: 0;
  }

  .company-info dd {
    margin-bottom: 20px;
  }

  .cruising-list dt,
  .cruising-list dd {
    width: 100%;
  }

  .cruising-list dt {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cruising-list dd {
    padding-top: ;
  }

  .tour-list {
    grid-template-columns: 1fr;
  }

  .tour-item img {
    width: 300px;
    height: 200px;
  }
}
