@charset "utf-8";

/*------------------------------------------------------------------------------
  font
------------------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@0;1&family=Tilt+Neon&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");

/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/

html,
input,
textarea,
select,
button {
  font-family:
    "Zen Maru Gothic", sans-serif; /* まず丸ゴシックを探し、なければ標準ゴシック */
  font-weight: 500;
}

html,
body {
  overflow-x: hidden; /* ★横方向のはみ出しを完全にカットしてスクロールを禁止にする */
  width: 100%;
}

html {
  color: #494949;
  background: #fff;
  font-size: 16px;
  line-height: 2.15;
  word-break: break-all;
}

body {
  background: rgb(255 242 241 / 60%); /*サイト背景色の設定*/
  margin: 0; /*実はブラウザの初期設定でbodyに数ピクセルの余白（マージン）があるため、必ず記述*/
}

body.is_open {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%; /*画像の横幅の最大値を、親要素（外側の箱）の100%に制限する*/
}

p,
span {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #333;
  text-decoration: none;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
  background: none;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans";
  font-size: 45px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #9d7e30;
  letter-spacing: 0.04em;
}

.inner_block {
}

#wrapper {
  position: relative;
}

@media screen and (min-width: 751px) {
  a,
  a:before,
  a:after,
  a img:hover,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  a:hover,
  a img:hover,
  button:hover {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------------------------
  css
------------------------------------------------------------------------------*/

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

.inner_block {
  width: 100%; /* 画面幅いっぱいに広がるようにする */
  max-width: 1200px; /* ただし1200px以上には大きくならない */
  margin: 0 auto;
  position: relative;
  padding: 0 20px; /* スマホ画面になった時の左右の最低限の余白（120pxではなく数10pxが一般的） */
}

@media screen and (max-width: 768px) {
  /* 横スクロールの強制防止 */
  #wrapper {
    overflow: hidden;
  }
}

/*---------------------------
  c-button
----------------------------*/
.c_button {
  background-color: #9d7e30;
  color: #fff;
  border-radius: 90px;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  display: inline-flex; /*ボタンを「中身のサイズに合わせた箱」にしつつ、中の「文字」と「矢印（::after）」を横並びにする*/
  gap: 10px; /*文字と矢印の間の余白*/
  font-size: 17px;
  letter-spacing: 0.04em;
}

.c_button::after {
  content: "";
  background: url(../img/Arrow\ 1.svg) center center / contain no-repeat;
  width: 15px;
  height: 11px;
}

@media screen and (max-width: 768px) {
}

/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
header .inner_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  box-sizing: border-box; /* 120pxのせいでヘッダーが右にはみ出さないためのお守り */
}

header .inner_block picture img {
  /* ★ 横幅を画面連動にします（最大 83px、画面幅の約 7% に連動、最小 60px） */
  width: clamp(50px, 7vw, 83px);
  
  /* ★ 縦横比（アスペクト比）が崩れないように自動計算させます */
  height: auto; 
}

.nav_list {
  display: flex;
  margin-right: -10px;
}

.nav_list li {
  padding: 0 3.5vw 0 0;
}

.nav_list a {
  color: #9d7e30;
  font-family: "Josefin Sans";
  font-size: 1.25vw;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav_list .nav_c_button.pc {
  padding: 0;
  display: inline-flex; /*ボタンを「中身のサイズに合わせた箱」にする*/
  align-items: center;
}

.nav_list .nav_c_button.pc a {
  color: #fff;
  background-color: #9d7e30;
  border-radius: 90px;
  display: inline-flex; /*ボタンを「中身のサイズに合わせた箱」にする*/
  justify-content: center;
  align-items: center;
  padding: 0px 27px;
  font-size: 1.25vw;
  letter-spacing: 0.04em;
  padding-top: 3px;
}

@media screen and (max-width: 768px) {
  .header .inner_block {
    display: block;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff7f7;
    z-index: 10;
    padding: 20px 8px;
    text-align: center;
  }

  .header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .inner_block picture img {
  /* ★ 横幅を画面連動にします（最大 83px、画面幅の約 7% に連動、最小 60px） */
  width: 100%;
}

  .header.is_open .nav {
    opacity: 1;
    visibility: visible;
  }

  .header .nav {
    opacity: 0;
    visibility: hidden;
    background-color: #fff7f7;
    width: 100%;
    position: fixed;
    top: 88px;
    left: 0;
    height: calc(100vh - 88px);
    padding: 25px 10px 50px 10px;
    overflow: scroll;
    transition:
      opacity 0.4s,
      visibility 0.4s;
  }

  .header .batu {
    display: none;
  }

  .header.is_open .batu {
    display: block;
  }

  .header .open {
    display: block;
  }

  .header.is_open .open {
    display: none;
  }

  .nav_list {
    display: block;
    margin-right: 0px;
    margin-top: 20px;
  }

  .nav_list li {
    padding: 15px 0 5px;
    text-align: center;
    border-bottom: #9d7e30 1px solid;
  }

  .nav_list a {
    font-size: 27px;
    letter-spacing: 0.04em;
  }

  .nav_list .nav_access {
    border-bottom: none;
    padding-bottom: 15px;
  }

  .nav_c_button.sp {
    color: #fff;
    padding: 12px 40px;
    background-color: #9d7e30;
    border-radius: 90px;
    font-size: 17px;
    letter-spacing: 0.04em;
    display: inline-flex; /*ボタンを「中身のサイズに合わせた箱」にする*/
    flex-direction: column; /* 中の文字を上下に並べる */
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    width: max-content; /* ★「中身の文字が絶対に改行せずに収まる最小幅」に強制固定します */
  min-width: 0;       /* 250pxの制限を解除 */
  margin: 0 auto;     /* これで中央寄せになります */
  }

  .text-ja {
    font-size: 15px;
    color: #fff;
    display: block;
  }

  .text-en {
    font-size: 27px;
    color: #fff;
    display: block;
  }
}

/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/

.footer_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
}

.f_nav_list {
  display: flex;
  gap: 55px;
}

.f_nav_list a {
  color: #9d7e30;
  font-family: "Josefin Sans";
  font-size: 1.25vw;
  letter-spacing: 0.06em;
}

.f_nav_list .f_nav_c_button {
  color: #fff;
  padding: 0px 27px;
  background-color: #9d7e30;
  border-radius: 90px;
  font-size: 1.25vw;
  letter-spacing: 0.04em;
  display: inline-flex; /*ボタンを「中身のサイズに合わせた箱」にする*/
  justify-content: center;
  align-items: center;
  padding-top: 3px;
}

footer img {
  /* ★ 横幅を画面連動にします（最大 83px、画面幅の約 7% に連動、最小 60px） */
  width: clamp(60px, 7vw, 1192px);
  
  /* ★ 縦横比（アスペクト比）が崩れないように自動計算させます */
  height: auto; 
}

.copyright {
  text-align: center;
}

@media screen and (max-width: 768px) {
footer {
  margin-bottom: 50px;
}

  .f_nav_list {
    display: none;
  }

  .footer_wrap {
    justify-content: center;
    margin-bottom: 10px;
  }

  .copyright p {
  font-size: 14px;
}
}

/*------------------------------------------------------------------------------
  home
------------------------------------------------------------------------------*/

/*---------------------------
  mv
----------------------------*/
.mv_block {
  margin-top: 25px;
  position: relative;
  left: 0;
  transform: none;
  width: 100%;
  padding-right: 120px;
  box-sizing: border-box;
}

.mv_block picture,
.mv_block img {
  display: block;
  width: 100%;
  height: auto; /* 比率を保ったまま可変させる */
}

.hero_text {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 90%;
}

.hero_text p {
  color: #fff;
  font-family: Zen Maru Gothic;
  letter-spacing: 0.12em;
}

.hero_text .sub_title {
  font-size: 1.6vw;
}

.hero_text .main_title {
  font-family: "Tilt Neon";
  font-size: 5vw;
  margin-top: -35px;
}

.hero_text .mv_text {
  font-size: 1.3vw;
  margin-top: -25px;
}

@media screen and (max-width: 768px) {
  .mv_block {
    margin-top: 88px;
    padding-right: 0px;
  }
  .mv_block picture {
    object-fit: contain;
  }

  .hero_text {
    top: 57%;
    left: 3%;
  }

  .hero_text .sub_title {
    font-size: 16px;
  }

  .hero_text .main_title {
    font-family: "Tilt Neon";
    font-size: 35px;
    margin-top: -15px;
  }

  .hero_text .mv_text {
    font-size: 12px;
    margin-top: -15px;
  }
}

/*---------------------------
  about
----------------------------*/
.about_wrap {
  margin-top: 160px;
  position: relative;
  min-height: 613px;
}

.about_text_block {
  text-align: center;
}

.about_title {
  color: #9d7e30;
  font-size: 3.3vw;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-right: 70px;
}

.about_contents_inner {
  display: inline-block;
  text-align: left;
  margin-top: 80px;
}

.about_contents_inner a {
  margin-top: 86px;
}

.about_contents_inner p {
  color: #494949;
  font-size: 1.2vw;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

.about_img_block {
  display: flex;
  justify-content: space-between;
}

.about_img_left {
  position: absolute;
  top: 250px;
  left: 0;
  width: 30vw;
}

.about_img_right {
  position: absolute;
  top: 0;
  right: 0;
  width: 32vw;
}

/* 画像そのものは親要素（div）に合わせる */
.about_img_left img,
.about_img_right img {
  width: 100%; /* 親要素の幅いっぱいに広げる */
  height: auto; /* 比率を保って高さを自動調整 */
}

@media screen and (max-width: 768px) {
  .about_wrap {
    min-height: auto;
    margin-top: 50px;
  }

  .about_img_block {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .about_img_left,
  .about_img_right {
    position: static; /* 絶対配置を解除 */
    width: 100%; /* 横幅いっぱいに */
  }

  .about_title {
    font-size: 24px;
    text-align: center;
    margin-right: 0px;
  }

  .about_contents_inner {
    margin-top: 30px;
    text-align: center;
  }

  .about_contents_inner a {
    margin-top: 40px;
  }

  .about_contents_inner p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 2;
  }
}

/*---------------------------
  service
----------------------------*/
.service_block {
  text-align: center;
  padding-top: 160px;
}

.service_block h2 {
  margin-bottom: 46px;
}

.service_img_wrap {
  background-color: rgb(157 126 48 / 5%);
  border-radius: 20px;
  padding: 41px 76.9px;
  display: flex;
  gap: 69px;
  margin-bottom: 38px;
}

/* PC・SP共通：picture内の画像を親要素（aタグ）の幅に合わせて伸縮させる */
.service_img_wrap a picture img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  /* サービスを縦並びに */
  .service_img_wrap {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 15px;
  }

  /* 3. スマホ版：aタグの横幅をいっぱい、または適切なサイズに広げる */
  .service_img_wrap a {
    width: 100%;
    max-width: 350px;
  }

  .service_block h2 {
    margin-bottom: 0px;
  }

  .service_block.inner_block {
    padding-top: 0px;
  }
}
/*---------------------------
  news
----------------------------*/

.news_block {
  padding-top: 160px;
  text-align: right;
}

.news_block picture img{
    width: 100%;
    height: auto;
    padding-left: 287px;
  }

.news_container {
  text-align: left;
  display: grid;
  grid-template-columns: 360px 1fr;
  margin-top: 30px;
}

.news_title {
  margin-top: 13px;
}

.news_list {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.news_list_item {
  display: flex;
  border-bottom: #dcdcdc 1px solid;
  padding: 13px 0;
}

.news_list_info {
  flex-shrink: 0; /* 幅を縮ませない */
  width: 250px; /* ここで日付＋ラベル全体の幅を固定する */
}

.news_list_info time {
  width: 96px;
  display: inline-block;
  padding-left: 7px;
}

.news_list_label {
  background-color: #9d7e30;
  border-radius: 80px;
  color: #fff;
  padding: 3px 15px;
  font-size: 11px;
  align-items: center;
  justify-content: center;
}

.news_list_title {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .news_container.inner_block {
    margin: 0;
  }

  .news_block picture img{
    padding-left: 0px;
  }

  /* ニュースのグリッドを縦並びに */
  .news_container {
    grid-template-columns: 1fr;
  }
  .news_list_item {
    flex-direction: column;
  }

  .news_block {
    padding-top: 50px;
  }

  /* 親要素をGridにして、縦に3つのパーツが並ぶようにする */
  .news_container {
    display: grid;
    grid-template-columns: 1fr; /* 縦1列に並べる */
  }

  /* 2. 「NEWSタイトル」の箱自体をGridにして、中身を画面に直接並べる（ここがポイント！） */
  .news_title {
    display: contents; /* 箱の存在を無くし、中身のh1とc_buttonを上の階層へ飛び出させる */
  }

  /* ① 一番上に表示したい「NEWS」の文字（親の.news_titleをGrid化） */
  .news_title h1 {
    order: 1; /* 1番目 */
    margin-top: 0;
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
  }

  /* ② 2番目に表示したい「記事リスト」 */
  .news_wrap {
    order: 2; /* 2番目 */
    margin-bottom: 30px; 
  }

  /* ③ 一番下に表示したい「お知らせ一覧」ボタン */
  .news_title .c_button {
    order: 3; /* 3番目（これでリストの下に移動します） */
    width: max-content; /* ボタンの中身（文字と矢印）の幅に強制的に縮める */
    justify-self: center; /* 縮んだボタンを画面の真ん中に配置する */
  }

  /* 記事リストの中身（縦並び） */
  .news_list_item {
    flex-direction: column;
    padding: 10px 0;
  }

  .news_list_info time {
    font-size: 14px;
  }

  .news_list_title {
    font-size: 15px;
  }

  .news_list_label {
    padding: 2px 13px;
  }
}

/*---------------------------
   Instagram
----------------------------*/
.Instagram {
  margin: 160px 0;
  text-align: center;
}

.gallery_bg {
  width: 100%;
  background-color: rgb(157 126 48 / 5%);
  border-radius: 20px;
  margin-bottom: 46px;
}

.gallery_warp {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.gallery_warp a {
  width: 255px;
}

@media screen and (max-width: 768px) {
  .Instagram {
    margin: 20px 0 40px;
    text-align: center;
  }

  .gallery_warp {
    padding: 20px 30px;
    gap: 10px;
    margin-top: 10px;
  }

  /* 画像を囲むリンクの箱を160px四方にする */
  .gallery_warp a {
    width: 160px;
    height: 160px;
  }

  /* 画像自体が正方形の箱にぴったり収まるようにする */
  .gallery_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像の比率を崩さずにトリミングして敷き詰める */
  }
}

/*---------------------------
  contact
----------------------------*/
.contact {
  position: relative;
  text-align: left;
  margin-bottom: 160px;
  width: 100%;
  overflow: hidden;
  display: block;
  padding-right: 120px;
}

/* pictureタグと中のimgを画面幅に完全連動させる */
.contact picture,
.contact img {
  display: block;
  height: auto; /* 横幅の変化に合わせて、縦横比（アスペクト比）を崩さず自動可変 */
  width: 100%;
}

/* ▼ 追加：1348px以上の超巨大画面になった時の保険 */
.contact img {
  max-width: 100%;  
  object-fit: cover; /* 画面に隙間を作らず敷き詰める */
  margin: 0 auto;    /* 常に中央基準に固定 */
}

.contact_text_wrap {
  position: absolute;
  top: 45%; /* 上から45%の位置へ */
  left: 50%; /* 左から45%の位置へ */
  transform: translate(
    -50%,
    -50%
  ); /* 自身の幅と高さの半分だけ戻す（これで完全中央に） */
  width: 90%; /* 横幅いっぱいの基準を作る */
  max-width: 850px; /* 文字やボタンが広がりすぎないように制限（数値はお好みで） */
  text-align: center;
  color: #fff;
  /* ▼ 追加：左右の引っ張り合いを完全にリセットするお守り */
  right: 0;
  margin: 0 auto;
}

.contact_title {
  /* 画面幅が狭くなると、30pxから最小20pxまで自動でスムーズに縮みます */
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  /* 画面幅に合わせて自動で伸縮させます（35px固定を廃止） */
  padding-bottom: clamp(15px, 2.5vw, 35px);
  text-align: center;
}

.contact_text {
  /* 画面に合わせて最小0.9remまで自動で痩せるようにします */
  font-size: clamp(1.0rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.06em;
  /* 固定余白を、画面連動（最小20px〜最大68px）に変更します */
  margin-bottom: clamp(20px, 4.5vw, 68px);
  display: inline-block;
  text-align: left;
}

.contact_button {
  display: flex;
  gap: clamp(10px, 2vw, 45px);
  justify-content: center;
}

.contact_button a {
  display: flex; /* 中のアイコンと文字を横並びにする */
  align-items: center; /* 中身を上下中央にする */
  border: #fff 1px solid;
  border-radius: 90px;
   padding:
    clamp(8px, 1.5vw, 20px)
    clamp(14px, 2.5vw, 35px);
  color: #fff;
}

.contact_button a img {
  display: block;
  width: clamp(24px, 4vw, 60px);
  height: auto;
  object-fit: contain;
}

.contact_button span {
  padding-left: 20px;
}

.contact_button .web span {
  font-size: clamp(12px, 2vw, 24px);
  letter-spacing: 0.1em;
}

.contact_button .tel span {
  font-size: clamp(12px, 2.2vw, 27px);
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .contact {
    margin-bottom: 0px;
    min-height: 300px;
    padding-right: 0px;
  }
  
  .contact_text_wrap {
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .contact img {
    width: 100%;
  }

  .contact_button {
    gap: 14px;
    align-items: center;
  }

  .contact_title {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 400;
    padding-top: 0;
   padding-bottom: clamp(10px, 2vw, 20px);
   text-align: center;
  }

  .contact_text {
    font-size: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.09em;
    margin-bottom: clamp(15px, 4vw, 34px);
    text-align: left;
    padding: 0 20px;
  }

  .contact_button a {
    padding: clamp(6px, 1.5vw, 12px) clamp(10px, 2.5vw, 24px);
    color: #fff;
  }

  .contact_button a img {
    width: clamp(20px, 3.5vw, 30px);
    height: auto;
  }

  .contact_button span {
    padding-left: clamp(4px, 1vw, 8px);
  }

  .contact_button .web span {
    font-size: clamp(11px, 2vw, 15px);
    letter-spacing: 0.1em;
  }

  .contact_button .tel span {
    font-size: clamp(11px, 2vw, 15px);
    letter-spacing: 0.14em;
  }
}

/*---------------------------
  access
----------------------------*/
.access {
  display: flex;
  gap: 90px;
  background-color: #fff;
  border-radius: 40px;
  padding: 50px; /* 左右の余白を「50px」で均等にして、縮むスペースを作る*/
  margin-bottom: 100px;
  box-sizing: border-box; /* 隙間計算のバグを防ぐ */
}

.access_text {
  display: flex;
  flex-direction: column; /* 中身を縦並びにする */
  align-items: center; /* 横軸の中央寄せ */
  flex: 1; /* 画面幅に合わせて文字エリアを柔軟に伸縮させる */
  min-width: 0; /* 追加：Flexboxのはみ出しバグを防ぐお守り */
}

/* リスト全体の幅を100%にして、親の縮みに連動させる */
.access_warp {
  width: 100%;
  max-width: 450px; /* 文字が広がりすぎて間延びするのを防ぐ最大幅（数値はお好みで） */
}

.access img {
  margin-top: 50px;
  margin-bottom: 50px;
}

.access dl {
  display: flex;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  border-bottom: #d0d0d0 1px dashed;
  padding: 10px 0;
  margin: 0;
  align-items: center;
  width: 100%; /* 1本ずつの線も横幅いっぱいに広げる */
}

.access dt {
  width: 110px; /* 縮みやすいように110px程度に調整 */
  flex-shrink: 0; /* 「営業時間」などの文字が画面縮小で潰れないように固定 */
  margin-left: 0; /* 不要な左マージンをリセット */
  color: #9d7e30;
}

.access dd {
  margin: 0;
  line-height: 1.6;
  color: #494949;
  flex: 1; /* 余った横幅をすべてdd（住所など）に割り当てる */
}

.access iframe {
  display: block;
  width: 100%; /* 固定幅ではなく、親の幅（100%）に連動させる */
  max-width: 509px; /* PC時の最大サイズを制限 */
  height: 468px; /* PC時の高さを固定 */
  border-radius: 40px;
}

.iframe_wrapper {
  position: relative;
  flex: 1; /* 地図側も画面幅に合わせて柔軟に伸縮させる */
  line-height: 0; /* 隙間対策 */
}

.iframe_wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(157 126 48 / 10%);
  pointer-events: none; /* 重ねたレイヤーがクリックを邪魔しないようにする */
  border-radius: 40px;
}

@media screen and (max-width: 768px) {
  /* アクセスを縦並びに、地図をレスポンシブに */
  .access {
    flex-direction: column; /* 縦並びにする */
    padding: 30px 20px; /* 内側の余白をスマホ用に狭める */
    gap: 40px; /* 文字と地図の間のすきま */
    align-items: center; /* 親の箱ごと中身をすべて中央に集める */
    margin-bottom: 50px;
  }

  .access_warp {
    width: 100%;
    max-width: 100%; /* スマホ時は横幅いっぱいに広げる */
    margin: 0 auto;
  }

  .access img {
    margin: 10px 0;
  }

  .access iframe {
    /* ★390pxの時に横幅が「約330px」になるように最小値を制限します */
    width: clamp(330px, 100%, 509px);
    /* ★390pxの時に「高さ300px」をキープさせます */
    height: clamp(300px, 60vw, 468px);
    object-fit: cover;
  }

  .iframe_wrapper {
    width: 100%; /* ★親のラッパーも100%にして、中のiframeを中央寄せできるようにします */
    display: flex;
    justify-content: center;
  }

  .iframe_wrapper::after {
  left: 50%;
  transform: translateX(-50%);
  width: clamp(330px, 100%, 509px);
    height: clamp(300px, 60vw, 468px);
  background-color: rgb(157 126 48 / 10%);
}

  .access dl {
    font-size: 14px;
    padding: 15px 0px;
    margin: 0;
  }

  .access dt {
    width: 75px;
    margin-left: 0px;
  }
}
