*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  background: #333;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 幅を制御する箱 */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/*ここからheader*/
header,
main,
section,
footer{
  margin: 0;
  padding: 0;
}

.header-contact .header-contact-tel-img {
  height: 48px; /* 電話番号の高さ */
  width: auto;
}

.header-bg {
  background: url("images/header.png") center / cover no-repeat;
  min-height: 500px;
  position: relative; /* これを基準に絶対配置 */
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 3.5s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.bg-layer.active {
  opacity: 1;
}

.header-inner {
  position: relative;
  z-index: 2; /* 背景より前面 */
}

.header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.header-contact {
  position: static;
  right: 20px;   /* .header-bg の右端から20px */
  bottom: 20px;  /* .header-bg の下端から20px */
  z-index: 2;
  font-family: 'Anton', sans-serif;
  color: #F26547;
  text-shadow:
  -2px -2px 0 #fff,
  2px -2px 0 #fff,
  -2px  2px 0 #fff,
  2px  2px 0 #fff;
  font-size: 28px;
  order: 2;
  margin: 20px;
  text-align: right;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}


.header-logo {
  width: 350px;
  display: block;
  margin: 0 auto;
}

.header nav {
  background-color: #E98B77;
  max-width: 700px;
  margin: 0 auto;
  order: 1;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

header .nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
  padding-left: 0px;
}

header .nav ul {
  display: flex;
  gap: 40px;
}

header .nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.en {
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
}

header .nav .en,
header .nav .jp {
  color: #FBE8E4;
}


.header-contact .tel {
  color: #F26547;
  text-decoration: none;
}

/*ここまでheader*/
/*ここからheader ハンバーガー*/
/* ハンバーガー本体 */
.hamburger {
  width: 50px;
  height: 50px;
  background: #e60023; /* 赤 */
  border: none;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 3;
  cursor: pointer;
  display: none;
}

/* 線 */
.hamburger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: 0.3s;
}

/* 上・中・下 */
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 24px;
}
.hamburger span:nth-child(3) {
  top: 33px;
}

/* --- クリック後（×） --- */
.hamburger.active span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}
/*ここまでheader　ハンバーガー*/
.about-title {
  display: flex;
  align-items: center;
  justify-content: center;  /* ← これ追加 */
  gap: 8px;                 /* ← ロゴと文字を近づける */
  margin: 50px;
}

.about-title img {
  width: 400px;       /* ← ロゴ大きく */
  height: auto;
}

.about-title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FBE8E4;
}

.about-title .en {
  font-size: 60px;
}

.about-mv {
  background: url("images/background/mv.png") center / cover no-repeat;
  min-height: 500px;
  padding-top: 30px;
  padding-bottom: 100px;
}
h1{
  margin: 0;
}


.about-layout {
  display: flex;
  max-width: 1000px; /* お好みの幅に調整 */
  margin: 0 auto;
  /* margin: 40px auto 0;  上40px、左右中央寄せ、下0 */
}

.left-box {
  flex: 1;
  background-color: #609F9C;
  color: #C6E9E9;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
}
.center-box {
  flex: 2;
}

.center-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.right-box img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

/*三枚画像横並びのとこ*/
.contact-layout {
  display: flex;
  gap: 0px;
  min-height: 600px; /* 全体を横長に見せる高さ */
}

.side-photo {
  flex: 1;
}

.side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-center {
  flex: 1.2; /* 正方形に近づける */
  position: relative;
  background-image: url("images/index/center.png");
  background-size: cover;
  background-position: center;
}
.contact-text {
  /*background-color: rgba(0, 0, 0, 0.55);*/
  color: #fff;
  padding: 20px;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  font-size: 18px;
}

.map-btn {
  margin: 50px auto 0;
  display: block;
  padding: 10px 16px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}
.contact-item img {
  display: block;
  height: auto;
}
.contact-tel img {
  max-width: 180px;
}

.contact-mail img {
  max-width: 420px;
  margin-top: 10px;
}

/*ボタン外部リンク横並び*/

.stock-section .container {
  background-image: url("images/background/bg.png");
  padding: 60px 0;
  position: relative;
}

.stock-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.stock-btn {
  width: 260px;
  height: 120px;
  background: #ffffff;
  color: #E43221;
  text-decoration: none;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 12px; /* 角丸 */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* 影 */
  transition: all 0.3s ease; /* アニメーション */
}

/* ホバーで浮く */
.stock-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* 上のテキスト */
.stock-btn .place {
  font-size: 25px;
  font-weight: bold;
}

/* メイン */
.stock-btn .label {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* スライド */
.slider-wrap {
  position: relative;
  padding: 0 40px;
}
.stock-slider img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  border: 8px solid #fff;  /* ← 白枠 */
  box-sizing: border-box;  /* ← はみ出さないように */
}

.slick-slide {
  margin: 0 10px;
  padding: 0;
}


.stock-slider {
  position: relative;
  padding: 0 40px;
}


.slick-dots {
  position: absolute;
  bottom: -30px; /* ← 中に入れる */
  left: 0;
  width: 100%;
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

.stock-slider .slick-prev:before,
.stock-slider .slick-next:before {
  font-size: 50px;
}

.stock-slider .slick-next {
  right: 0;
}
.stock-slider .slick-prev {
  left: -25px;
}

/*地図*/

.map-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}
.map-wrapper {
  transition: transform 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
}

/*ここからfooter*/
.footer-bg {
  background: #000;
  min-height: 500px;
}
.footer-nav-wrapper {
  padding-top: 70px;
}
.footer nav {
  max-width: 700px;
  margin: 0 auto;
}

footer .nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
  margin-top: 0;
}

footer .nav .en{
  color: #FFF;
  font-size: 20px;
}

footer .nav .jp {
  color: #FFF;
  font-size: 20px;
}

footer .nav ul {
  display: flex;
  gap: 40px;
}

footer .nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.footer-row {
  display: flex;                  /* 横並び */
  justify-content: space-between; /* 左右に離す */
  align-items: center;            /* 高さを中央揃え */
  max-width: 900px;               /* 幅を制限 */
  margin: 0 auto;
  gap: 40px;
}

.footer-logo img {
  width: 400px;  /* 好きな幅に調整 */
  height: auto;  /* 縦横比を維持 */
  display: block; /* 下の隙間を消す */
}

.contact-info{
  color: #FFF;
  font-size: 20px;
  margin-top: 20px;
}
.contact-info p {
  margin: 0;
}

.sp-footer{
  display: none;
}
/*ここまでfooter*/

/*ここからshopページ*/
/*ここからshop-info-section*/
.shop-mv {
  background: url("images/shop/shop-mv.png") center / cover no-repeat;
  min-height: 100vh;
  padding-top: 30px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
}
.shop-info-section {
  padding: 0;
}

.shop-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  justify-content: space-between;
}

.shop-title {
  display: flex;
  align-items: center;
  justify-content: center;  /* ← これ追加 */
  gap: 100px;                 /* ← ロゴと文字を近づける */
  margin: 50px 0;
}


.shop-title img {
  width: 400px;       /* ← ロゴ大きく */
  height: auto;
}

.shop-title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FBE8E4;
}

.access span {
  display: block;
  margin-top: 12px;
}

.shop-title .en {
  font-size: 70px;
}

/* テキストと画像の幅 */
.shop-text {
  background: rgba(255, 255, 255, 0.6); /* 白60% */
  padding: 50px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.shop-map {
  width: 100%;
}

.shop-image-large img {
  width: 100%;
  height: auto;
  display: block;
  border: 8px solid #fff;
}
.shop-image-small img {
  width: 100%;
  height: auto;
  display: block;
  border: 8px solid #fff;
}

.shop-image-large,
.shop-image-small {
  width: 50%;
  display: flex;
  justify-content: flex-end; /* ← 右寄せ */
}

.shop-map iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
.shop-info {
  margin: 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 50px 16px;
  
}
.shop-info a {
  color: #000;           /* 黒にする */
  text-decoration: none; /* 下線消す */
}

.shop-info dt {
  font-weight: bold;
}

.shop-info dd {
  margin: 0;
}
.shop-info-section,
.shop-info-section dt,
.shop-info-section dd,
.shop-info-section p {
  color: #000;
  font-size: 20px;
}

/*ここまでshopページ*/


/*ここからserviceページ*/
.service-main-mobile-text{
  display: none;
}
.service-sub-mobile-text{
  display: none;
}

.service-mv {
  position: relative;
  background: url("images/shop/shop-mv.png") center / cover no-repeat;
  min-height: 100vh;
  padding-top: 30px;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-title {
  display: flex;
  align-items: center;
  justify-content: center;  /* ← これ追加 */
  gap: 40px;                 /* ← ロゴと文字を近づける */
  margin: 50px 0;
}

.service-title img {
  width: 400px;       /* ← ロゴ大きく */
  height: auto;
}

.service-title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FBE8E4;
}
.service-title-text .en {
  text-align: right;
}

.service-title .en {
  font-size: 70px;
}

/* 半透明ボックス */
.service-mv-text {
  /* position: absolute; ←消す */
  background: rgba(47, 125, 107, 0.8);
  padding: 24px 32px;
  margin-top: 40px; /* ←これで上との間隔 */
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.8);
  border-radius: 8px;
}

.service-main-text {
  font-size: 40px; /* ← 大きく */
  font-weight: bold;
  margin-bottom: 12px;
}

.service-sub-text {
  font-size: 32px;
}

.iframe-area {
  display: flex;
  gap: 50px;
  width: 100%;
  max-width: 1200px; /* ←上限だけ決める */
  margin: 0 auto;    /* ←中央寄せ */
}
.stock-block {
  flex: 1;
}
.stock-block iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.iframe-area iframe {
  height: 600px;
  border: none;
  background: #fff;
}

/*ここまでserviceページ*/

/*ここからcontactページ*/
.contact-mv {
  position: relative;
  background: url("images/shop/shop-mv.png") center / cover no-repeat;
  min-height: 500px;
  padding-top: 30px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;  /* ← これ追加 */
  gap: 100px;                 /* ← ロゴと文字を近づける */
  margin: 50px 0;
}

.contact-title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FBE8E4;
}

.contact-title .en {
  font-size: 70px;
}

.contact-title img {
  width: 400px;       /* ← ロゴ大きく */
  height: auto;
}

/*ここからcontactフォーム中身*/

#contactForm {
  background: rgba(255, 255, 255, 0.95); /* 背景を半透明に */
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 700px;
  width: 100%;
  margin-top: 10px; /* タイトルと少し重なるように */
}

/* フォームテーブル調整 */
#contactForm table {
  width: 100%;
  border-collapse: collapse;
}

#contactForm th {
  text-align: left;
  padding: 10px 5px;
  vertical-align: top;
  color: #333;
}

#contactForm td {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 5px;
}

#contactForm tr {
  border-bottom: 1px solid #eee;   /* うっすら区切り線（任意） */
}

#contactForm th,
#contactForm td {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* 入力欄 */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
}

.radio-item input[type="radio"]{
  margin:0;
}

/* テキストエリア */
#contactForm textarea {
  resize: vertical;
  width: 100%;
  min-height: 200px;
}

/* チェックボックス */
#contactForm input[type="checkbox"] {
  margin-right: 5px;
}

/* ボタン */
.form-buttons {
  text-align: center;
  margin-top: 20px;
}

.form-buttons button {
  background-color: #FBE8E4;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.form-buttons button:hover {
  background-color: #f5d3ce;
}

/* 確認画面 / 送信完了画面 */
#confirmScreen, #thanksScreen {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* メアド不一致*/
.error-message {
  color: #e60023;
  padding: 10px;
  margin-top: 0px;
}

p.error {
  color: #e60023;
  padding: 10px;
  margin-top: 0px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
/*ここまでcontactページ*/

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
  /* 横スクロール禁止 */
  html, body {
    overflow-x: hidden;
  }

  /* header内のロゴを下に移動 */
  .header-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 200px;
    z-index: 3;
  }

  /* headerの高さ調整（必要なら） */
  .header-bg {
    min-height: 200px; /* 画像はそのままで高さだけ調整 */
  }
  /* mainとの境目をくっつけたい場合 */
  main {
    margin-top: 0;  /* headerの下とmainをピタッと */
  }  

  /* 非表示 */
  .header-contact {
    display: none;
  }

  .about-title {
    margin: 30px 10px;
    gap: 10px;
  }

  .about-title img {
    width: 130px; /* ← 小さく */
  }

  .about-title .en {
    font-size: 22px; /* ← 小さく */
  }

  .about-title .jp {
    font-size: 16px;
  }

/* mainレイアウト調整 */
.about-layout .logo {
    display: none;
  }
.about-layout {
    margin: 10px 10px;
    display: flex;
    flex-wrap: wrap;
  }
.left-box {
    flex: 0 0 100%;
    order: 1;
  }

  .center-box {
    flex: 0 0 66.666%;
    order: 2;
  }

  .right-box {
    flex: 0 0 33.333%;
    order: 3;
    display: flex;
    flex-direction: column;
  }

  .right-box img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }
  .about-mv {
  padding-bottom: 10px;
}
/*ここまでがabout*/

/*ここからがshop*/
.shop-title {
    margin: 30px 10px;
    gap: 10px;
  }

  .shop-title img {
    width: 150px; /* ← 小さく */
  }

  .shop-title .en {
    font-size: 28px; /* ← 小さく */
  }

  .shop-title .jp {
    font-size: 22px;
  }

  .shop-mv {
    min-height: 500px;
    padding: 30px;
  }

    .shop-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .shop-text,
  .shop-image-large,
  .shop-image-small,
  .shop-map {
    width: 100%;
  }

  .shop-text {
    padding: 20px;
  }

  .shop-map iframe {
    height: 300px;
  }
 
  .shop-text {
  order: 1;
}

.shop-image-large,
.shop-image-small{
  display: none;
}

.shop-image-large,
.shop-image-small,
.shop-map {
  order: 2;
}

.shop-row:nth-child(even) .shop-text {
  order: 1;
}

.shop-row:nth-child(even) .shop-image-large,
.shop-row:nth-child(even) .shop-image-small,
.shop-row:nth-child(even) .shop-map {
  order: 2;
}

 .shop-info {
    display: block;
  }

  .shop-info dt,
  .shop-info dd {
    width: 100%;
  }

  .shop-info dt {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .shop-info dd {
    margin-top: 10px;
    margin-bottom: 10px;
  }

/*ここまでがshop*/


/*ここからがservice*/
.service-title {
    margin: 30px 0px;
    gap: 0px;
  }

  .service-title img {
    width: 110px; /* ← 小さく */
  }

  .service-title .en {
    font-size: 25px; /* ← 小さく */
  }

  .service-title .jp {
    font-size: 14px;
  }

  .service-mv {
    /*min-height: 500px;後日挙動に問題無ければ消しちゃう3/4*/
    min-height: 100vh;
    padding: 30px;
  }

  .service-main-text{
  display: none;
}


.service-main-mobile-text{
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin: 10px;
}

  .service-mv-text {
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}
.service-sub-text{
  display: none;
}
.service-sub-mobile-text{
  display: block;
  font-size: 20px;
  margin: 10px;
}
.iframe-area {
    display: block;
    padding: 20px;
  }
  .iframe-area iframe {
    width: 100%;
    height: 500px; /* 好きな高さに調整 */
    
  }
  .iframe-area iframe:not(:last-child) {
  margin-bottom: 40px;
}
.stock-block + .stock-block {
  margin-top: 60px;
}
.stock-block .stock-buttons{
  margin-top: 0;
  margin-bottom: 30px;
}

/*ここまでがservice*/

.contact-bg-mobile {
    background-image: url("images/background/bg.png");
    padding: 10px;
  }

 .contact-layout {
    display: flex;
    flex-wrap: wrap; /* 折り返す */
  }

  .map-btn {
  margin: 10px auto 0;
}

  /* 上にドーン */
  .contact-center {
    flex: 0 0 100%;
    order: 1;
  }

  /* 下2つ横並び */
  .side-photo {
    flex: 0 0 50%;
  }

  /* 左画像 */
  .side-photo:first-of-type {
    order: 2;
  }

  /* 右画像 */
  .side-photo:last-of-type {
    order: 3;
  }

  .contact-tel img {
  max-width: 170px;
}

  .footer-contact .contact-tel img {
    max-width: 170px;
    margin-bottom: 10px;
    margin-top: -40px;
  }

.contact-mail img {
  max-width: 400px;
  margin-top: 10px;
}

/*indexページのstock-btnのサイズ調整*/
.stock-buttons {
  margin: 10px;
}

.stock-btn {
  max-width: 180px;
  height: 80px;
}
.stock-btn .place {
  font-size: 18px;
}

.stock-btn .label {
  font-size: 18px;
}

.stock-section .container {
  padding: 20px 0;
}

/* スライド */
.slider-wrap{
  padding: 0 30px;
}

.stock-slider {
  padding-left: 10px;
  padding-right: 10px;
}

.stock-slider img {
  border: 2px solid #fff;  /* ← 白枠 */
}
.stock-slider .slick-prev:before, .stock-slider .slick-next:before {
    font-size: 30px;
}

.stock-slider .slick-next {
  right: -15px;
}

  /* ここからハンバーガー,スライド*/
.hamburger {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 100;
  }
  
  .header nav {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 20px;
    
    position: fixed;
    inset: 0;

    display: flex;

    background-color: #E98B77;
    z-index: 99;
    flex-direction: column;
    justify-content: flex-start; /* ← 上寄せに変更 */
    align-items: stretch;       /* ← 横いっぱいに */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),opacity 0.3s ease;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header nav.active {
  transform: translateX(0);
}
.header nav.open {
  transform: translateX(0);
  opacity: 1;
}


   header .nav {
    display: grid;
    gap: 10px;
  }
  
  nav.open {
  display: flex;
}
nav ul {
    gap: 30px;
    margin-bottom: auto;
  }

  nav li a {
    font-size: 24px;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    width: 100%;
    max-width: 400px; /* ← はみ出し防止 */
    margin: 0 auto;
    margin-bottom: auto;
}

.nav li {
  list-style: none;
}

.nav li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 100px;
  background: #fff;
  color: #3f110d;
  text-decoration: none;
  padding: 10px;
}

header .nav .en, header .nav .jp {
    color: #DE6045;
}

.nav .en {
  font-size: 18px;
  font-weight: bold;
}

.nav .jp {
  font-size: 12px;
}

  footer {
    display: none;
  }

  .sp-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
  }
  .footer-logo img {
    width: 180px; /* 好きなサイズ */
    max-width: 100%;
    height: auto;
  }
  .contact-info {
    color: #FFF;
    font-size: 15px;
    margin-top: 10px;
}
  
/* ここまでハンバーガー */

/* contactページのレスポンシブ調整 */
.contact-mv {
  padding: 10px;
}
  .contact-title {
    margin-top: 60px;
    margin-bottom: 20px;
    gap: 10px;
  }

  .contact-title img {
    width: 130px; /* ← 小さく */
  }

  .contact-title .en {
    font-size: 34px; /* ← 小さく */
  }

  .contact-title .jp {
    font-size: 30px;
  }

  #contactForm {
    padding: 30px 20px;
  }
  table,
  table tr,
  table th,
  table td {
    display: block;
    width: 100%;
  }
  
  #contactForm td {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
  }
  
#contactForm td > label { 
  display: flex; 
  align-items: center; 
}

  #contactForm th {
    padding-top: 10px;
    padding-bottom: 0;
    white-space: nowrap;
  }

  table input {
    width: 100%;
  }

  #contactForm input[type="radio"] {
  max-width: 20px;
  margin: 0;
  display:inline-block;
}

#contactForm input[type="checkbox"] {
    margin-right: 8px;
    max-width: 30px;
  }

  #contactForm td label{
  display:inline-block;
  margin-right:20px;
  max-width: 300px;
}

#contactForm td label input{
  margin-right: 6px;
}

.radio-item{
  display:flex;
  align-items:center;
  gap:6px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px; /* ラジオボタン同士の間隔 */
  width: 200px
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

}