:root{
  --bg: #ededed;
  --text: #333333;
  --textw: #f7f7f7;
  --muted: #333333;
  --line: #e6e1e3;
  --dark: #3b3836;
  --container: 920px;
  --12: 12px;
  --14: 14px;
  --16: 16px;
  --18: 18px;
  --20: 20px;
  

  --header-h: 70px;

  --link-hover: #bac8a7;

  /* ✅ 追加：ヘッダー配色（初期=MV上は透明想定） */
  --header-bg: transparent;
  --header-text: #f7f7f7;
  --header-border: rgba(255,255,255,.35);
}


* {
  /* 英語用フォントを先に、次に日本語用フォントを記述 */
font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

html, body{ height: 100%; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
  /* line-height: 1.75; */
}

/* main {
   background: url(../images/main_back.png);
   position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */

/* 全リンク共通 */
a{
  color: var(--text);
  text-decoration: none;
  transition: color .5s ease;;
}
a:hover{ color: var(--link-hover); }

ol {
    list-style-position: inside;
}

/* ol li {
    padding-left: 1em;
} */

.background img {
width: 400px;
margin: 0 auto;
filter: invert(98%) sepia(1%) saturate(86%) hue-rotate(115deg) brightness(115%) contrast(94%);
}


.btn:hover{
  color: var(--textw);
  background: var(--link-hover);
  border-color: var(--link-hover);
}

.scroll-space { overflow: hidden; }

.fadein{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadein.scrollin{
  opacity: 1;
  transform: translateY(0);
}

/* ===== ヘッダーナビだけ hover 色を強制 ===== */
.site-header .nav a:hover{
  color: var(--link-hover) !important;
}

/* ===== 送信ボタン hover ===== */
.form .btn-solid:hover{
  color: var(--textw);
  background: var(--link-hover);
  border-color: var(--link-hover);
}

img{ height: auto; display: block; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}


/* ページ内リンクでヘッダーに被らないようにする */
.section{
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ===== Header (sticky) ===== */
.site-header{
  text-align: center;
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 99999;
  background: var(--header-bg);
}

/* ✅ MVを過ぎたら */
.site-header.is-scrolled{
  --header-text: #333333;
  backdrop-filter: blur(6px);
}

.site-header.is-scrolled .instagram-icon,
.site-header.is-scrolled .note-icon {
  filter: invert(15%) sepia(8%) saturate(16%) hue-rotate(316deg) brightness(27%) contrast(85%);
}

.site-header.is-scrolled .instagram-icon:hover,
.site-header.is-scrolled .note-icon:hover {
  filter: invert(10%) sepia(6%) saturate(905%) hue-rotate(43deg) brightness(87%) contrast(91%);
}

.site-header.is-scrolled .logo-icon {
  filter: invert(15%) sepia(8%) saturate(16%) hue-rotate(316deg) brightness(27%) contrast(85%);
}

.site-header.is-scrolled .logo-icon:hover {
  filter: invert(80%) sepia(9%) saturate(905%) hue-rotate(43deg) brightness(87%) contrast(91%);
}


.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  margin:  0 30px;
}

.logo {
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0;
  z-index: 9999;
}

.logo-icon {
  width: 150px;
  filter: invert(98%) sepia(1%) saturate(86%) hue-rotate(115deg) brightness(115%) contrast(94%);
  /* margin-left: 60px; */
}

.logo-icon:hover {
  filter: invert(70%) sepia(6%) saturate(904%) hue-rotate(43deg) brightness(110%) contrast(93%);
  transition: filter .4s ease;
}


.sp-logo {
  display: none;
}

.logo-1{ 
  display: none;
  text-decoration: none;
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .02em;
  white-space: nowrap;
}

.logo-2{
  text-decoration: none;
  color: var(--header-text);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
  margin: 0;
  text-align: center;
}

.nav{
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ✅ PCナビリンク（nav直下のaだけ） */
.nav > a{
  text-decoration: none;
  color: var(--header-text);
  font-size: 16px;
  letter-spacing: .06em;
  font-weight: 400;
}

/* ===== SNS（PC）: 横並び固定 ===== */
.social{
  display: flex;
  flex-direction: row;     /* ✅ 強制 */
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;       /* ✅ 強制 */
}

.social-icon{
  width: 28px;             /* PCは少し見やすく */
  height: 28px;
  border-radius: 6px;
  display: inline-flex;    /* ✅ 横並びの崩れ防止 */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  color: var(--header-text);
  background: transparent;
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.note-icon {
  width: 32px;
  height: 32px;
}

.instagram-icon:hover,
.note-icon:hover {
  filter: invert(10%) sepia(6%) saturate(905%) hue-rotate(43deg) brightness(87%) contrast(91%);
  transition: filter .4s ease;
}


.nav-social{
  display: flex;
  justify-content: center; 
  gap: 15px;
}

.nav-toggle{
  display: none;
}

/* ✅ MV直後に置くトリガー */
#header-trigger{
  height: 1px;
  margin-top: -50px;
}

/* ===== Sections ===== */
.section{ padding: 80px 0; }

/* #value, #plofile, #faq {
  background: #f7f7f7;
} */


.section-title {
  font-size: 28px;
  margin: 0 0 14px;
  letter-spacing: .03em;
  text-align: center;
}

.st-1{ font-size: 42px; color: var(--text); }

.lead{
  font-size: var(--14);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 100px;
}

/* About横並び */
.cols-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cols-content-1{ margin: 0 0 100px; }

.cols{ grid-template-columns: 1fr 1fr; }

.cols-1{ margin-left: 5%; }
.cols-2{ margin-right: 5%; }

.sub-title{
  display: inline-block;
  margin: 0 0 50px;
  font-size: 24px;
  letter-spacing: .04em;
  /* background: linear-gradient(transparent 60%, #bac8a7 0%); */
}

.list{
  margin: 0;
  padding-left: 5px;
  font-size: var(--14);
  color: var(--muted);
  line-height: 2.5;
  vertical-align: middle;
}

.list span {
  margin-right: 15px;
  font-size: var(--18);
}

#about .sub-title{ margin-bottom: 30px; }

/* .about_img_1 {
  transform: rotate(90deg);
} */

/* News */
.news{ padding-top: 130px; }

.news-row{
  font-size: var(--12);
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.calendar{
  margin-top: 16px;
  display: grid;
  place-items: center;
}

/* ===== Hero Slideshow ===== */
.hero{
  background: url(../images/mv_3.webp);
  height: calc(100vh);
  /* overflow: hidden; */
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
   filter: brightness(80%);
}

/* .hero-slideshow{ position: absolute; inset: 0; } */

.hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 700px;
  object-fit: cover;
  opacity: 0;
  /* animation: heroFade 12s infinite; */
  filter: brightness(80%);
}

.hero-slide.s1{ animation-delay: 0s; }
.hero-slide.s2{ animation-delay: 4s; }
.hero-slide.s3{ animation-delay: 8s; } 

@keyframes heroFade{
  0%{ opacity: 0; }
  8%{ opacity: 1; }
  33%{ opacity: 1; }
  41%{ opacity: 0; }
  100%{ opacity: 0; }
}

/* About */
.about-lead{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-lead p{ margin: 0 0 10px; }

.col-img,
.about-img{
  height: 400px;
  flex: 0 0 360px;
  display: flex;
}

.col-img img,
.about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Works ===== */
.works-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.work {
  border: 1px solid var(--line);
  background: #f7f7f7;
  overflow: hidden;
  /* border-radius: 5px; */
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
  position: relative;
  display: inline-block;
}

.work:hover img {
  filter: brightness(70%); /* 画像のみにフィルターを適用 */
  transition: filter .5s ease;
}

.work_img_2,
.work_img_3,
.work_img_4,
.work_img_5 {
  transform: rotate(90deg);
}

/* クリックテキストのスタイル */
.work::after {
  content: "CLICK";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f7f7f7;
  font-size: 24px;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2; /* テキストを最前面に配置 */
}

.work:hover::after {
  opacity: 1;
}

/* 画像のスタイル */
.work img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  height: auto;
  position: relative;
  z-index: 1; /* 画像を`::after`の後ろに配置 */
}

.work::before {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
}

.work > img {
  margin-top: -100%;
}

/* モーダルを開く際に、画像や他の要素が予期せず拡大しないようにする */
 .work img, .modal-inner {
  transition: none; /* アニメーションを無効化 */
} 


/* モーダルの基本スタイル */
/* body.modal-open {
  padding-right: 17px; 
}  */


.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8); /* 半透明の背景 */
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity .3s ease, transform 0.3s ease; /* アニメーションをスムーズに */
  transform: scale(0.8); /* 初期状態で縮小 */
}


/* モーダルが表示されるとき */
.modal.is-open {
  display: flex;
  opacity: 1;
  transform: scale(1); /* 表示時に拡大 */
}

/* モーダルが閉じるときのアニメーション */
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8); /* 少し縮小して閉じる */
  }
}

.modal.closing {
  animation: fadeOut 0.3s ease-in-out forwards;
}

/* モーダル内のコンテンツ */
.modal-inner {
  position: relative;
  max-width: 90%;
  animation: popIn .5s ease; /* モーダルが表示されるとき */
  background: var(--header-text);
  padding: 40px 10px;
}

#modal-image {
  width: 400px;
  height: auto;
  display: block;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 28px;
  background: #fff;
  border: none;
  cursor: pointer;
}

/* モーダルが表示されるときのアニメーション */
@keyframes popIn {
  from { transform: scale(0.75); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



.works-more{
  margin-top: 12px;
  text-align: right;
}

.text-link{
  font-size: var(--14);
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

/* Timeline */
.muted{
  margin: 0 0 12px;
  font-size: var(--14);
  color: var(--muted);
}

.profile-content {
  display: flex;
      align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.profile-name {
  margin-bottom: 0;
}

.profile-name  span {
  margin-left: 5px;
  font-size: var(--14);
  font-weight: 300;
}

.timeline{ padding-top: 12px; }

.t-row{
  display: grid;
  grid-template-columns: 64px 1fr;
  /* gap: 14px; */
  padding: 6px 0;
  font-size: var(--12);
}

.t-row span{
  font-size: var(--14);
  line-height: 2.5;
}

.t-year{ color: var(--text); }
.t-desc{ color: var(--muted); }

/* Lesson */
#lesson .cols{
  margin: 0 0 70px;
}

#lesson .sub-title {
  margin-bottom: 20px;
  padding-left: 2px;
  padding-right: 5px;
}

#lesson .col {
  margin-bottom: 70px;
}

#lesson li{ 
  margin-left: 20px;
  line-height: 2.5;
}

#lesson .col-season li  {
  margin-bottom: 30px;
  list-style: none;
}

.sub-title span {
  font-size: 13px;
}



.text-block{
  margin: 0 0 50px;
  font-size: var(--12);
  color: var(--muted);
}

.lesson-caution {
  font-size: var(--14);
}

.cta{
  margin-top: 18px;
  display: grid;
  place-items: flex-start;
}

.btn{
  display: inline-block;
  font-size: var(--14);
  letter-spacing: .06em;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--text);
  color: var(--textw);
  background: #333;
  text-decoration: none;
  transition: background-color .2s ease;
}

.btn-solid{
  background: var(--text);
  color: var(--textw);
}

/* FAQ */
.faq{
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

details{
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  margin: 0 0 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.03);
  transition: transform .5s ease;
}

summary{
  cursor: pointer;
  font-size: var(--14);
  color: var(--text);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

summary::-webkit-details-marker{ display: none; }

summary::after{
  content: "▾";
  font-size: var(--12);
  line-height: 1;
  opacity: .8;
  transform: translateY(-1px);
  transition: transform .3s ease;
}

details[open] summary{ border-bottom: 1px solid var(--line); }
details[open] summary::after{ transform: rotate(180deg); }

.faq-body{
  margin: 0;
  font-size: var(--12);
  color: var(--muted);
  background: #f7f7f7;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    height .55s cubic-bezier(.25,.8,.25,1),
    opacity .35s ease,
    transform .35s ease;
  padding: 0;
}

.faq details.is-opening .faq-body{
  transition:
    height .55s cubic-bezier(.25,.8,.25,1),
    opacity .35s ease,
    transform .35s ease;
}

.faq .inner{
  font-size: var(--14);
  padding: 12px 14px;
}

/* Form */
.form{ margin-top: 12px; }

.field{
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.label{
  font-size: var(--12);
  color: var(--muted);
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  background: #f7f7f7;
  font-size: 13px;
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus, textarea:focus{
  border-color: rgba(149,181,133,.9);
  box-shadow: 0 0 0 4px rgba(149,181,133,.18);
}

textarea{
  resize: vertical;
  min-height: 140px;
}

.required{
  margin-left: 2px;
  color: #f7291d;
}

.check{
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 10px 0 14px;
  font-size: var(--12);
  color: var(--muted);
}

.check input{
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 4px;
}

.btn{ cursor: pointer; }

/* Footer */
.site-footer{
  background: var(--bg);
  padding: 34px 0 26px;
}

.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-nav{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--12);
  letter-spacing: .02em;
}

.sep{ color: var(--text); opacity: .75; }

.footer-brand{
  font-size: 32px;
  letter-spacing: .04em;
  font-weight: 500;
  line-height: 1.1;
}

.footer-copy{
  font-size: var(--12);
  letter-spacing: .02em;
}

/* ===== Responsive ===== */
@media (max-width: 860px){
  .nav{ display: none; }
  .social{ display: none; } /* ✅ SPはヘッダー上のSNSは消して、メニュー内SNSを使う */

  .container{
    margin: 0 12px 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  main {
    max-width: 860px;
  }

  .section{ padding-bottom: 0; }

  .hero-slide{
    height: 100vh;
    width: 100%;
  }
  .background img {
    width: 200px;
  }

  .logo-icon {
    display: none;
  }

  .sp-logo {
    display: block;
    margin: 0;
  }

  .sp-logo img {
    width: 100px;
    margin: 0;
  }

  .logo-2{ font-size: 45px; }

  .header-inner{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 12px;
    margin: 0;
  }

  /* nav-toggle */
  .nav-toggle{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    cursor: pointer;
    border: 0;
    color: var(--header-text);
    border-radius: 5px;
    margin-right: 20px;
  }

  .nav-toggle__bars{
    position: relative;
    width: 22px;
    height: 16px;
  }

  .nav-toggle__bars span{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--header-text);
    border-radius: 2px;
    transform-origin: center;
    transition: background-color .5s ease;
    transition: transform .5s ease, opacity .5s ease;
  }

  .nav-toggle__bars span:nth-child(1){ transform: translateY(-7px); }
  .nav-toggle__bars span:nth-child(2){ transform: translateY(0); }
  .nav-toggle__bars span:nth-child(3){ transform: translateY(7px); }

  .nav-toggle.is-open .nav-toggle__bars span:nth-child(1){ transform: rotate(45deg); }
  .nav-toggle.is-open .nav-toggle__bars span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-open .nav-toggle__bars span:nth-child(3){ transform: rotate(-45deg); }

  /* 左から出てくる縦メニュー */
  .nav{
    order: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: min(78vw, 320px);
    height: 100%;
    background: #f7f7f7;
    border-right: 1px solid var(--line);
    margin: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translateX(-105%);
    transition: transform .5s ease;
    z-index: 40;
  }

  .nav.is-open{ transform: translateX(0); }

  /* ✅ メニューリンクは「nav直下のaだけ」 */
  .nav > a{
    display: block;
    padding: 10px 8px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
  }

    /* MVを過ぎたら：黒 */
  .site-header.is-scrolled .nav-toggle__bars span {
    background: var(--text);
  }

  /* ✅ SPメニュー内SNS：横並び＆大きく */
  .nav-social{
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    padding: 10px 8px;
    margin-top: 6px;
  }

  .nav-social .social-icon{
    width: 44px;          /* ✅ 視認性＋タップ性 */
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;  /* ✅ 白地で視認性確保（背景が白でも差が出る） */
    border: 1px solid var(--line);
  }

  .nav-social .instagram-icon,
  .nav-social .note-icon{
    filter: invert(15%) sepia(8%) saturate(16%) hue-rotate(316deg) brightness(27%) contrast(85%);
  }

  .nav-social .instagram-icon {
    width: 24px;
    height: 24px;
  }

  .nav-social .note-icon {
    width: 36px;
    height: 36px;
  }

  /* overlay */
  .nav-overlay{
    position: fixed;
    inset: 0;
    top: var(--header-h);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 35;
  }
  .nav-overlay.is-open{
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-scrolled{ backdrop-filter: unset; }

  .st-1{ font-size: revert; }

  .news {
    padding-top: 100px;
  }

  .cols{ grid-template-columns: 1fr; }
  .works-grid{ grid-template-columns: repeat(2, 1fr); }

  .work {
    transition: none; /* スマホ版での画像やボックスの拡大を無効化 */
  }

  .modal-inner {
    transform: none !important; /* スマホ版でもtransformの影響を排除 */
  }

  #modal-image {
    width: 100%;
  }

  /* モーダルの基本スタイル */
  body.modal-open {
    padding-right: 0; /* スクロールバーの幅を固定（通常のスクロールバー幅） */
  }

  .footer-brand{ font-size: 28px; }
  .footer-nav{ flex-wrap: wrap; justify-content: center; }

  .cols-content{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .about-lead{
    font-size: var(--14);
    width: 100%;
    margin: 0;
  }

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

#value .cols{ width: 100%; }

  .cols-1{ margin-left: 0; }

    .cols-2{
    margin-left: 0;
    padding-left: 0;
    }
    #value ol.list{
    margin-left: 0;
    padding-left: 1.4em;   /* ←番号の分だけ確保（ここが消えてると見切れる） */
    list-style-position: outside;
  }

  #value .cols-content:not(.cols-content-1){
    align-items: flex-start;
  }

  /* 念のため幅も固定 */
  #value .cols-content:not(.cols-content-1) .cols,
  #value .cols-content:not(.cols-content-1) .col{
    width: 100%;
  }

  .col-img{ flex: 0; }

  .col-img-1{ margin-bottom: 30px; }

  .cols-content-1{ margin-bottom: 50px; }

  .col-img,
  .about-img{
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  .col-img img,
  .about-img img{
    height: 60%;
  }

  .cols-content-1{ display: flex; }

  .cols-content-1 :nth-child(1){ order: 3; }
  .cols-content-1 :nth-child(2){ order: 2; }

  .col-img-2{ display: none; }

  .col li {
    padding-bottom: 18px;
    line-height: 1.5;
  }

  .cols-2 li {
    margin-right: 3em;
  }

  .profile-content {
    flex-direction: column;
  }

  .t-desc br {
    display: none;
  }

    
  .profile-text{ order: 3; }
  .profile-content :nth-child(2){ order: 2; }

  #lesson .cols{ margin: 0; }

  #lesson .col{ margin-bottom: 50px; }

  #lesson .col-Access{ margin-bottom: 25px; }

  .map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 20px;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

  .cta{ margin-top: 0; }
}
