@charset "UTF-8";
:root {
  --text-color: #333333;
  --background-color: #FFFEFC;
  --main-color:#2D200A;
  --large-font:clamp(24px, calc(24px + (2 * ((100vw - 480px) / 288))), 28px);
  --medium-font:clamp(18px, calc(18px + (2 * ((100vw - 480px) / 288))), 22px);
  --small-font:clamp(13px, calc(12px + (1 * ((100vw - 480px) / 288))), 15px);
}

body {
  background-color: #2D200A;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text-color);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-size: clamp(14px, 14px + 1 * (100vw - 480px) / 288, 16px);
}

h1 {
  color: #FFFEFC;
  font-family: "Shippori Mincho", serif;
}

img,
picture {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

span {
  display: inline-block;
}

ul {
  list-style: none;
}

h3 {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 288, 32px);
  color: #FFFEFC;
  text-shadow: 0px 4px 8px #FFFEFC;
  text-align: center;
  letter-spacing: 1.2rem;
  font-family: "Sarina", cursive;
}

h4 {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  font-family: "Hina Mincho", serif;
  padding-bottom: 10px;
  border-bottom: 2px dashed #2D200A;
  letter-spacing: 0.2rem;
}

#wrapper {
  min-height: 100vh;
  padding-top: 2%;
  padding-bottom: 33px;
  padding-left: 26px;
  padding-right: clamp(40px, 40px + 20 * (100vw - 480px) / 288, 120px);
  box-sizing: border-box;
  position: relative;
}

#background {
  background-color: var(--background-color);
  border-radius: 5px;
  padding: 30px 10px;
  height: 95%;
}

.roaster-text,
.contact-text {
  padding-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  padding-right: 16px;
}
.roaster-text h4,
.contact-text h4 {
  display: inline-block;
  font-weight: normal;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
.roaster-text p,
.contact-text p {
  line-height: 1.5;
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 14px);
}
.roaster-text span,
.contact-text span {
  padding: 0 5px;
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 288, 18px);
}

.footer-lower {
  color: #FFFEFC;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 5px;
}
.footer-lower small {
  text-align: center;
  display: inline-block;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: clamp(15px, 15px + 10 * (100vw - 480px) / 288, 40px);
  right: 0;
  z-index: 10;
  padding-inline: clamp(8px, 8px + 10 * (100vw - 480px) / 288, 24px);
  pointer-events: none;
}
header a {
  color: #FFFEFC;
}

.logo-text {
  font-size: clamp(24px, 24px + 6 * (100vw - 480px) / 288, 40px);
  font-weight: normal;
  writing-mode: vertical-rl;
  letter-spacing: 0.5rem;
  line-height: 1;
  color: #FFFEFC;
}
.logo-text span {
  font-size: clamp(8px, 8px + 2 * (100vw - 480px) / 288, 12px);
  letter-spacing: 0.2rem;
  padding-top: 8px;
}

.logo-text2 {
  font-weight: normal;
  writing-mode: vertical-rl;
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 288, 28px);
  letter-spacing: 0.5rem;
  line-height: 1;
  color: #FFFEFC;
  max-width: 60%;
}
.logo-text2 span {
  font-size: 9px;
  font-size: clamp(5px, 5px + 2 * (100vw - 480px) / 288, 9px);
  letter-spacing: 0.2rem;
  padding-top: 8px;
}

nav ul {
  writing-mode: vertical-rl;
  font-family: "Hina Mincho", serif;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
  line-height: 1.8;
}

@media screen and (max-width: 600px) {
  .nav-menu1 {
    position: fixed;
    top: 0;
    left: -70%;
    width: 40%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.9);
    flex-direction: column;
    padding: 80px 14px;
    gap: 1.5rem;
    transition: left 0.8s ease;
    z-index: 900;
  }
}

.nav-menu1.active {
  left: 0;
}

.nav-menu2 {
  position: fixed;
  top: 0;
  left: -70%;
  width: 30%;
  height: 105vh;
  background: rgba(45, 32, 10, 0.9);
  flex-direction: column;
  padding-top: clamp(80px, 80px + 10 * (100vw - 480px) / 288, 120px);
  padding-left: 3%;
  gap: 1.5rem;
  transition: left 0.8s ease;
  z-index: 900;
}
@media screen and (max-width: 600px) {
  .nav-menu2 {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .nav-menu2 {
    width: 50%;
  }
}

.nav-menu2.active {
  left: 0;
}

.mask-header {
  display: none;
}
@media screen and (max-width: 600px) {
  .mask-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
  }
}

header * {
  pointer-events: auto;
}

.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  display: none;
}
@media screen and (max-width: 600px) {
  .openbtn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: block;
    text-align: center;
    z-index: 1000;
  }
}

.openbtn-lower {
  cursor: pointer;
  background-color: #FFFEFC;
  padding-inline: 10px;
  width: 45px;
  height: 50px;
  border-radius: 5px;
  display: block;
  text-align: center;
  z-index: 1000;
  position: relative;
  left: clamp(20px, 20px + 10 * (100vw - 480px) / 288, 8px);
}

/*ボタン内側*/
.openbtn span,
.openbtn-lower span {
  position: absolute;
  width: clamp(20px, 20px + 6 * (100vw - 480px) / 288, 32px);
  height: 2px;
  background: #2D200A;
  border-radius: 5px;
  transition: 0.4s;
}

.openbtn span {
  background: var(--background-color);
}

.openbtn span:nth-of-type(1) {
  top: 4px;
}

.openbtn span:nth-of-type(2) {
  top: 10px;
}

.openbtn span:nth-of-type(3) {
  top: 16px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--background-color);
  font-size: clamp(8px, 8px + 2 * (100vw - 480px) / 288, 12px);
  text-transform: uppercase;
}

.openbtn-lower span:nth-of-type(1) {
  top: 10px;
}

.openbtn-lower span:nth-of-type(2) {
  top: 16px;
}

.openbtn-lower span:nth-of-type(3) {
  top: 22px;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
/* 1本目：右上から左下へ */
.openbtn.active span:nth-of-type(1),
.openbtn-lower.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}

/* 2本目：消す */
.openbtn.active span:nth-of-type(2),
.openbtn-lower.active span:nth-of-type(2) {
  opacity: 0;
}

/* 3本目：左上から右下へ */
.openbtn.active span:nth-of-type(3),
.openbtn-lower.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}

/* Close 表示 */
.openbtn.active span:nth-of-type(3)::after {
  content: "Close";
  top: 8px;
  left: 50%;
  transform: translateY(0) rotate(-45deg);
}

.openbtn-lower.active span:nth-of-type(3)::after {
  color: var(--background-color);
}

.openbtn-lower {
  cursor: pointer;
  background-color: #FFFEFC;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: block;
  z-index: 1000;
  /* 基準点の設定 */
  position: relative;
}

/* ボタン内側の三本線（共通設定） */
.openbtn-lower span {
  position: absolute;
  /* 40pxの枠に対してバランスの良い線幅（22px）にし、完全に左右中央に配置 */
  /* 計算式：(40px - 22px) / 2 = 9px */
  width: 22px;
  height: 2px;
  background: #2D200A;
  border-radius: 5px;
  transition: 0.4s;
  left: 9px;
}

/* 文字がなくなったので、40pxの箱に対して均等（6px間隔）に配置 */
.openbtn-lower span:nth-of-type(1) {
  top: 13px; /* 1本目 */
}

.openbtn-lower span:nth-of-type(2) {
  top: 19px; /* 2本目（中央） */
}

.openbtn-lower span:nth-of-type(3) {
  top: 25px; /* 3本目 */
}

/* ========================================================
   activeクラスが付与されたとき（×印への変形アニメーション）
   ======================================================== */
/* 1本目：中央に移動してから右肩下がりに回転 */
.openbtn-lower.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}

/* 2本目：真ん中の線は中央でフェードアウトして消える */
.openbtn-lower.active span:nth-of-type(2) {
  opacity: 0;
}

/* 3本目：中央に移動してから右肩上がりに回転 */
.openbtn-lower.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}

footer {
  z-index: 500;
}

.footer {
  color: var(--background-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: 160px;
  padding-bottom: 16px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/footer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
}

.footer-section {
  max-width: clamp(350px, 350px + 200 * (100vw - 480px) / 288, 800px);
  margin: 0 auto;
  padding-top: 80px;
  font-family: "Hina Mincho", serif;
}
.footer-section h5 {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px dashed var(--background-color);
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: normal;
  padding-bottom: 10px;
}

.footer-wrapper {
  padding-bottom: 30px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .footer-wrapper {
    flex-direction: column;
  }
}
.footer-wrapper .map {
  width: 50%;
  border-radius: 10px;
  filter: grayscale(100%);
}
.footer-wrapper .footer-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  line-height: 1.5;
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 14px);
}
.footer-wrapper .footer-text p {
  padding-bottom: 12px;
}
.footer-wrapper .footer-text span {
  font-size: clamp(12px, 14px + 1 * (100vw - 480px) / 288, 16px);
  font-weight: bold;
}
.footer-wrapper .footer-text .privacy {
  padding-top: 20px;
}
.footer-wrapper .map-text {
  color: var(--background-color);
}
.footer-wrapper .insta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--background-color);
  text-decoration: none;
}
.footer-wrapper .insta-link svg {
  width: 18px;
  height: 18px;
}

.copyright {
  text-align: center;
}

small,
.privacy {
  padding-top: 10px;
  display: block;
  font-size: 10px;
}

iframe {
  width: 100%;
  height: 30vh;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

#top img {
  height: 100vh;
}

.about {
  max-width: clamp(350px, 350px + 400 * (100vw - 480px) / 288, 1000px);
  padding: 100px 0;
}
.about-wrapper {
  display: flex;
  gap: clamp(10px, 10px + 5 * (100vw - 480px) / 288, 30px);
  font-family: "Hina Mincho", serif;
  padding: 50px 0;
  border-top: 2px dashed var(--background-color);
  border-bottom: 2px dashed var(--background-color);
}
@media screen and (max-width: 768px) {
  .about-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
}
.about-text {
  padding-top: 8%;
  width: 40%;
}
.about-text h2 {
  color: var(--background-color);
  padding-bottom: 32px;
}
.about-text p {
  letter-spacing: 1.2px;
  line-height: 1.5;
  padding-left: clamp(5px, 5px + 2 * (100vw - 480px) / 288, 16px);
  font-size: clamp(10px, 10px + 2 * (100vw - 480px) / 288, 14px);
  color: var(--background-color);
  padding-bottom: 20px;
}
.about-text p:last-child {
  text-align: right;
}
.about-text span {
  transform: scale(1.2);
  display: inline-block;
  padding-inline: 5px;
}
.about-img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .about-img {
    width: auto;
  }
}
.about-img img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.concept-img {
  width: 100%;
  height: 70vh;
  margin-top: 20px;
  margin-bottom: 100px;
  background-image: url("http://bishu-akatsuki-coffee.com/wp-content/uploads/2026/07/concept2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
}
.concept-img2 {
  width: 100%;
  height: 70vh;
  margin-top: 100px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
  background-image: url("http://bishu-akatsuki-coffee.com/wp-content/uploads/2026/07/offer.jpg");
}
.concept-box {
  font-family: "Hina Mincho", serif;
  background-color: #DDDEDE;
  max-width: clamp(280px, 280px + 180 * (100vw - 480px) / 288, 800px);
  padding-inline: clamp(20px, 20px + 8 * (100vw - 480px) / 288, 30px);
  padding-top: 48px;
  padding-bottom: 48px;
  margin: 0 auto;
}
.concept-box .cup {
  border-top: 2px dashed #2D200A;
  border-bottom: 2px dashed #2D200A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  letter-spacing: 3px;
}
.concept-box .cup img {
  width: 100%;
  height: 60vh;
}
.concept-box .cup p {
  font-family: "Hina Mincho", serif;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  font-weight: bold;
  line-height: 2;
  display: inline-block;
}
.concept-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .concept-br {
    display: block;
  }
}
.concept-text {
  font-size: clamp(10px, 10px + 2 * (100vw - 480px) / 288, 14px);
  line-height: 2.2;
  padding-top: 32px;
  text-align: center;
}
.concept-text span {
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}

.offerings {
  padding-top: 100px;
}
.offerings-img {
  width: 100%;
  height: 50vh;
  background-image: url("../img/offer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
}
.offerings-wrapper {
  margin: 0 auto;
  padding-bottom: 150px;
  max-width: clamp(280px, 280px + 200 * (100vw - 480px) / 288, 840px);
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.offerings-wrapper li {
  max-width: 700px;
  display: inline-block;
  border-radius: 30px;
  box-shadow: 10px 10px rgba(255, 254, 252, 0.64);
  display: flex;
  color: var(--text-color);
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper li {
    flex-direction: column;
  }
}
.offerings-wrapper .second {
  box-shadow: -10px 10px rgba(255, 254, 252, 0.64);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second {
    margin-left: 0;
    box-shadow: 10px 10px rgba(255, 254, 252, 0.64);
  }
}
.offerings-wrapper .second {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second {
    flex-direction: column;
  }
}
.offerings-wrapper .text {
  background-color: var(--background-color);
  display: inline-block;
  border-radius: 30px 0 0 30px;
  padding: 30px;
  width: 70%;
}
.offerings-wrapper .text h4 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .text {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
}
.offerings-wrapper .text p {
  line-height: 1.8;
  padding: 20px 0;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}
@media screen and (max-width: 480px) {
  .offerings-wrapper .text p {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .offerings-wrapper .text p br {
    display: none;
  }
}
.offerings-wrapper .text a {
  font-size: clamp(10px, 10px + 2 * (100vw - 480px) / 288, 14px);
  color: #2D200A;
  border: 0.8px solid #2D200A;
  border-radius: 10px;
  padding: 8px 30px;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  display: inline;
  text-align: center;
}
.offerings-wrapper .second .text {
  border-radius: 0 30px 30px 0;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second .text {
    border-radius: 30px 30px 0 0;
  }
}
.offerings-wrapper .icon {
  width: 40%;
  aspect-ratio: 4/3; /* 横縦比を 3:2 などに固定するとプロっぽく綺麗に見えます */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .icon {
    width: 100%;
    height: 200px;
  }
}
.offerings-wrapper img {
  height: 100%;
  border-radius: 0 30px 30px 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper img {
    width: 100%;
    border-radius: 0 0 30px 30px;
  }
}
.offerings-wrapper .second img {
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second img {
    border-radius: 0 0 30px 30px;
  }
}
.offerings .text-icon {
  padding: 25px 0px 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
}
.offerings .text-icon li {
  background-color: #F6EBDD;
  border-radius: 50%;
  border: 0.8px solid #2D200A;
  font-size: clamp(10px, 10px + 1 * (100vw - 480px) / 288, 12px);
  box-shadow: none;
  line-height: 1.8;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
}
.offerings .text-icon .text-icon2 {
  background-color: #EDE9E5;
}
.offerings .fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.more {
  text-align: center;
}

.name-info span {
  font-size: var(--small-font);
  letter-spacing: 1;
  text-align: left;
  display: block;
}

/* 全体コンテナ */
.menu-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* ========================================================
   左側：スライドショーエリア (可変・画面追従)
   ======================================================== */
/* 左側固定エリアのベース設定 */
.left-area {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 45vw; /* 画面幅の45% */
  height: 105vh; /* 画面高さの100% */
  overflow: hidden;
  background: #000; /* 背景 */
}
@media screen and (max-width: 600px) {
  .left-area {
    display: none;
  }
}

/* スライド画像の設定（共通） */
.slide-img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* === ★1枚目の画像専用の設定 ======================== */
.slide-img:nth-of-type(1) {
  opacity: 1; /* ★最初から表示 */
  /* 全体時間を63s→45sに変更 */
  -webkit-animation: slideAnimeFirst 45s linear infinite;
          animation: slideAnimeFirst 45s linear infinite;
}

/* === ★2枚目以降の共通設定 ========================= */
.slide-img:not(:nth-of-type(1)) {
  opacity: 0; /* 最初は非表示 */
  /* 全体時間を63s→45sに変更 */
  -webkit-animation: slideAnime 45s linear infinite;
          animation: slideAnime 45s linear infinite;
}

/* === スライドのアニメーションを段差で開始する（5枚用） ========= */
.slide-img:nth-of-type(2) {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.slide-img:nth-of-type(3) {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.slide-img:nth-of-type(4) {
  -webkit-animation-delay: 27s;
          animation-delay: 27s;
}

.slide-img:nth-of-type(5) {
  -webkit-animation-delay: 36s;
          animation-delay: 36s;
}

/* 6枚目・7枚目の設定は削除 */


/* === アニメーションキーフレーム（5枚用パーセンテージ再計算） ========================= */

/* [A] ★1枚目専用 */
@-webkit-keyframes slideAnimeFirst {
  0%   { opacity: 1; }
  16.7% { opacity: 1; } /* フェードアウト開始 */
  36.7% { opacity: 0; } /* 完全に消える */
  80%   { opacity: 0; } /* 5枚目が消える直前まで待機 */
  94.4% { opacity: 1; } /* 5枚目と重なりながらフェードイン */
  100% { opacity: 1; }
}
@keyframes slideAnimeFirst {
  0%   { opacity: 1; }
  16.7% { opacity: 1; }
  36.7% { opacity: 0; }
  80%   { opacity: 0; }
  94.4% { opacity: 1; }
  100% { opacity: 1; }
}

/* [B] 2枚目以降用 */
@-webkit-keyframes slideAnime {
  0%   { opacity: 0; }
  2.8% { opacity: 0; }
  16.7% { opacity: 1; } /* 完全に表示 */
  22.2% { opacity: 1; } /* 表示維持 */
  36.7% { opacity: 0; } /* ゆっくり消える */
  100% { opacity: 0; }
}
@keyframes slideAnime {
  0%   { opacity: 0; }
  2.8% { opacity: 0; }
  16.7% { opacity: 1; }
  22.2% { opacity: 1; }
  36.7% { opacity: 0; }
  100% { opacity: 0; }
}
/* ========================================================
   右側：スクロールコンテンツエリア
   ======================================================== */
.right-area {
  margin-left: 45vw; /* ★左側の幅と同じ 45vw 分の余白をあける */
  width: 55vw; /* ★残りの画面幅（100vw - 45vw = 55vw）にする */
  padding-top: 60px;
  padding-bottom: 120px;
  padding-left: 2%; /* 必要に応じてpxや%で微調整 */
  padding-right: 15%;
}
@media screen and (max-width: 600px) {
  .right-area {
    width: 90vw;
    margin-left: 10vw;
  }
}

/* 各コンテンツのブロック */
.content-box {
  max-width: 540px; /* ★widthではなくmax-widthにすることで、画面が狭くなってもはみ出さない */
  width: 100%; /* 通常は100%で広がり、540px以上にはならない */
  margin-bottom: 100px;
}

/* 右側の写真枠 */
.right_img {
  width: 100%; /* 親要素（content-box）に追従 */
  height: auto; /* 高さを固定せず、アスペクト比を保つ（または360pxなどの固定でも可） */
  aspect-ratio: 4/3; /* 横縦比を 3:2 などに固定するとプロっぽく綺麗に見えます */
  overflow: hidden;
  margin-bottom: 40px;
}

.right_img img {
  width: 100%;
  height: 100%;
  /* ★ここが最重要ポイント */
  -o-object-fit: cover;
     object-fit: cover; /* 枠いっぱいに隙間なく画像を広げる */
  -o-object-position: center;
     object-position: center;
}

/* 右側のテキスト枠 */
.text-box {
  max-width: 540px;
  color: #FFFEFC;
}
.text-box h4 {
  color: #FFFEFC;
  font-weight: normal;
  font-size: var(--medium-font);
  font-family: "Shippori Mincho", serif;
}
.text-box h5 {
  font-size: var(--medium-font);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: medium;
  padding-bottom: 8px;
  border-bottom: 1px dashed #FFFEFC;
  margin-bottom: 16px;
}

.text-box p {
  font-size: var(--small-font);
  padding-top: 15px;
  letter-spacing: 1px;
}

.roaster {
  margin-right: 40px;
  margin-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  display: flex;
  gap: 30px;
  align-items: stretch;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .roaster {
    flex-direction: column;
    margin-right: 20px;
  }
}

.roaster-text {
  padding-bottom: 20px;
}

.btn {
  width: 24%;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn ul {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .btn ul {
    flex-direction: row;
    gap: 20px;
  }
}

.btn-icon {
  flex: 1;
  background-color: #FFE997;
  border-radius: 25px;
  padding: 30px 10px;
  border: 3px solid #D8BA4F;
  box-shadow: 0px 12px #D8BA4F;
  text-align: center;
  align-items: center;
}
.btn-icon:active {
  position: relative;
  top: 12px;
  box-shadow: none;
}
.btn-icon a {
  color: var(--text-color);
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.btn-icon p {
  margin: 0 auto;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  line-height: 1.8;
  font-family: "Hina Mincho", serif;
  font-weight: bold;
  letter-spacing: 2px;
}

.rules-table {
  border: 1px solid #2D200A;
  border-radius: 10px;
  border-radius: 8px;
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
}
.rules-table .br {
  font-size: clamp(10px, 10px + 1 * (100vw - 480px) / 288, 14px);
  margin-left: clamp(5px, 5px + 2 * (100vw - 480px) / 288, 8px);
  line-height: 1.1;
}
.rules-table thead th {
  background-color: #D3CEC7;
  font-weight: 600;
  text-align: center;
  padding: 10px 10px;
  border: none;
  letter-spacing: 1.5px;
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 288, 18px);
}
.rules-table th,
.rules-table td {
  padding: 12px 16px;
  vertical-align: top;
  background-color: #FFFEFC;
}
.rules-table th {
  width: 20%;
  background-color: #FFFEFC;
  border-right: 1px solid #dcd6cf;
  font-weight: bold;
  text-align: left;
  font-family: "Hina Mincho", serif;
  text-align: center;
  vertical-align: middle;
}
.rules-table tr + tr th,
.rules-table tr + tr td {
  border-top: 1px solid #dcd6cf;
}
.rules-table td {
  line-height: 1.6;
  margin-left: 20px;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}
.rules-table td span {
  color: #C80303;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .rules-table {
    width: 100%;
  }
  .rules-table th,
.rules-table td {
    display: block;
    width: 100%;
    border-right: none;
  }
  .rules-table th {
    padding-bottom: 10px;
    font-size: 0.9rem;
  }
  .rules-table td {
    padding-top: 0;
    padding-bottom: 12px;
    margin-left: 0;
  }
  .rules-table tr + tr td {
    border-top: 1px solid #dcd6cf;
    padding-top: 12px;
  }
  .rules-table th:first-child {
    border-bottom: 1px solid #dcd6cf;
  }
}
/* ========================================================
   新設ページ用：画面幅に100%フィットする2分割バナー
   ======================================================== */
/* 全体を囲む外枠：表示したい場所の幅（100%）に自動で合わせます */
.new-banner-container {
  width: 100%;
  display: flex;
  gap: 32px; /* バナーとバナーの間のすき間（お好みで調整） */
  box-sizing: border-box;
  padding-bottom: 50px;
  padding-top: 20px;
}
@media screen and (max-width: 600px) {
  .new-banner-container {
    flex-direction: column;
  }
}

/* 各バナー（リンクボタン全体） */
.new-banner-item {
  position: relative;
  /* ★幅はpxで指定せず、全体の「半分（50%）」からすき間を引いたサイズに自動計算 */
  width: calc(50% - 7.5px);
  /* ★高さもpxで指定せず、横幅に対して「3：2」や「4：3」の黄金比率で自動決定させます */
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #ffffff;
}

/* 画像のレイヤー */
.new-banner-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

/* 画像のトリミング（中央基準） */
.new-banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* どんなサイズになっても真ん中で自動トリミング */
  display: block;
  transition: transform 600ms ease-out;
}

/* 文字を読みやすくするためのうっすらとした黒いフィルター */
.new-banner-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 黒の透明度30% */
  z-index: 2;
}

/* テキスト（左上に固定配置） */
.new-banner-text {
  position: absolute;
  top: 12%; /* 上から12%の位置（画面サイズに合わせて自動で上下します） */
  left: 8%; /* 左から8%の位置 */
  z-index: 3;
}

.new-banner-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.new-banner-title {
  font-size: var(--large-font);
  font-weight: normal;
  line-height: 1.2;
  font-family: "Hina Mincho", serif;
}

/* 矢印（右下に固定配置） */
.new-banner-arrow {
  position: absolute;
  bottom: 8%; /* 下から8%の位置 */
  right: 8%; /* 右から8%の位置 */
  width: 44px; /* 丸ボタンの大きさ自体はクリックしやすさのためにpx固定がプロの主流です */
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  color: #ffffff;
  font-size: 16px;
  transition: background-color 400ms, border-color 400ms, color 400ms;
}

/* ========================================================
   ホバー（マウスをのせたとき）のアニメーション
   ======================================================== */
.new-banner-item:hover .new-banner-img img {
  transform: scale(1.05); /* 写真がじわっと5%拡大 */
}

.new-banner-item:hover .new-banner-arrow {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #2D200A; /* 矢印の色を文字色（こげ茶）に反転 */
}

.contact-text,
.Form {
  max-width: 720px;
  margin: 0 auto;
}

.contact-text {
  padding-bottom: 30px;
}

.Form {
  padding-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  padding-right: 16px;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #2D200A;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #EDE9E5;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 14px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 160px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #EDE9E5;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 14px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #2D200A;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 14px;
  }
}
.contact-footer {
  text-align: center;
  color: #FFFEFC;
  padding-bottom: 5px;
}

.booking-wrapper {
  padding-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  padding-right: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.booking {
  margin-bottom: 10px;
}

.first-class,
.member {
  display: flex;
  padding: 30px 0 40px 0;
}
@media screen and (max-width: 768px) {
  .first-class,
.member {
    flex-direction: column;
    gap: 30px;
  }
}

.member P {
  line-height: 2;
  margin-left: 30px;
  display: inline-block;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}
@media screen and (max-width: 768px) {
  .member P {
    margin: 0 auto;
  }
}

.first-rules {
  display: flex;
  width: 70%;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 16px);
}
@media screen and (max-width: 768px) {
  .first-rules {
    width: 100%;
  }
}
.first-rules span {
  font-size: clamp(11px, 11px + 1 * (100vw - 480px) / 288, 13px);
}
.first-rules dd {
  font-family: "Hina Mincho", serif;
  writing-mode: vertical-rl;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #2D200A;
  color: var(--background-color);
  text-align: center;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 4px;
}
.first-rules dt {
  width: 70%;
  line-height: 1.8;
}

.first-img,
.member-img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .first-img,
.member-img {
    width: 100%;
  }
}
.first-img img,
.member-img img {
  border-radius: 20px;
  height: 50vh;
}
@media screen and (max-width: 768px) {
  .first-img img,
.member-img img {
    height: 40vh;
  }
}

.scrolldown4 {
  position: relative;
  width: 20px;
  height: 60px;
  margin: 40px auto;
}

/* ▼ 矢印全体を動かす箱 */
.arrow-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
  writing-mode: vertical-rl;
}

/* ▼ 斜め棒（arrow-wrap に付ける） */
.arrow-wrap:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 2px;
  height: 20px;
  background: #2D200A;
  opacity: 0.8;
  transform: skewX(-31deg);
}

/* ▼ 縦棒（arrow-wrap に付ける） */
.arrow-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 2px;
  height: 80px;
  background: #2D200A;
  opacity: 0.8;
}

/* ▼ 矢印全体を上下に動かす */
@-webkit-keyframes arrowmove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes arrowmove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.calender1 {
  background-color: #F6EBDD;
  margin-bottom: 50px;
  padding: 80px 50px;
  border-radius: 10px;
  margin-top: 30px;
}
.calender1 p {
  padding-bottom: 20px;
  font-family: "Hina Mincho", serif;
  text-align: center;
}

.calender2 {
  padding: 40px;
  height: auto;
  border: 1px dashed #2D200A;
  border-radius: 20px;
  z-index: 10;
  background-color: var(--background-color);
}

#booking-package_serviceDetails .title,
#booking-package_servicePage .title {
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 288, 18px) !important;
  font-weight: bold !important;
  padding: 30px !important;
}

#booking-package {
  background-color: var(--background-color);
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px) !important;
}

.descriptionOfService {
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 14px) !important;
  padding: 10px;
}

.serviceCost {
  padding-top: 10px;
}

#booking-package_serviceDetails,
#booking-package_servicePage {
  width: 100% !important;
}

#booking-package button {
  background-color: #2D200A;
  color: var(--background-color);
  border-radius: 16px;
  margin: 30px auto;
  display: inline-block;
  padding: 20px;
}

.profile-section {
  max-width: 1000px;
  margin: 0 auto;
  background-color: transparent;
  color: var(--background-color);
  /* 横並びの2分割レイアウト */
  display: table;
  width: 100%;
  padding-bottom: 40px;
}

/* 左側：写真エリア */
.profile-image-col {
  display: table-cell;
  width: 45%;
  vertical-align: middle;
  padding-right: 5%;
}

.profile-image-col img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 軽い影で上品に引き立てる */
}

/* 右側：文字情報エリア */
.profile-text-col {
  display: table-cell;
  width: 55%;
  vertical-align: middle;
  padding-left: 5%;
}

/* 大文字（Photographer） */
.profile-title {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: var(--background-color);
  margin-bottom: 4px;
  line-height: 1.2;
  font-weight: normal;
}

/* 名前（文字小さめに） */
.profile-name {
  font-size: 14px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

/* 箇条書き（できること） */
.profile-skills {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.profile-skills li {
  font-size: 14px;
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}

/* 箇条書きの「・」のスタイリング */
.profile-skills li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 一言メッセージの段 */
.profile-message {
  font-size: 15px;
  border-top: 1px solid var(--background-color); /* 区切りの細い線 */
  padding-top: 20px;
  line-height: 1.8;
  text-align: justify;
}

/* レスポンシブ対応（画面幅が狭いスマホ等の時は縦並びにする） */
@media screen and (max-width: 768px) {
  .profile-section {
    display: block;
  }
  .profile-image-col, .profile-text-col {
    display: block;
    width: 100%;
    padding: 0;
  }
  .profile-image-col {
    margin-bottom: 30px;
  }
  .profile-title {
    font-size: 26px;
  }
}
.profile-title {
  /* 読み込ませたCormorant GaramondをCSSで指定する */
  font-family: "Cormorant Garamond", serif;
}

.manager-message-wrap {
  display: table; /* 写真と文を横並びにする */
  width: 100%;
  margin-top: 30px; /* 森田さんの文章との間の余白 */
  border-top: 3px dotted rgba(255, 255, 255, 0.15); /* 上にうっすらと区切り線を入れる */
  padding-top: 25px;
}

/* 店長写真の枠（左側） */
.manager-avatar {
  display: table-cell;
  width: 110px; /* 写真のサイズ */
  vertical-align: top; /* 写真の位置を上に合わせる */
  padding-right: 15px; /* 写真と吹き出しの間の余白 */
}

/* 写真をきれいな正円（丸型）にする */
.manager-avatar img {
  width: 110px;
  height: 110px;
  border-radius: 50%; /* 正円にする */
  -o-object-fit: cover;
     object-fit: cover; /* 縦横比を崩さない */
  display: block;
}

/* 吹き出しエリア（右側） */
.manager-bubble {
  display: table-cell;
  vertical-align: middle; /* 文章を上下中央に配置 */
  position: relative;
}

/* 吹き出しの三角ヒゲ */
.manager-bubble::before {
  content: "";
  position: absolute;
  left: -6px; /* 左側に少し飛び出させる */
  top: 20px; /* 三角の上下位置 */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 6px 5px 0;
  border-color: transparent rgba(255, 255, 255, 0.07) transparent transparent; /* 三角の色（背景に馴染む薄い白） */
}

/* 吹き出しの内側の文章 */
.manager-bubble .manager-text {
  font-size: 14px; /* 少し小ぶりにしてバランスを取る */
  color: #e0e0e0; /* 森田さんの文と少し色を変える場合はここで調整 */
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.08); /* ほんのり背景色をつけて吹き出しにする */
  padding: 12px 18px;
  border-radius: 8px; /* 角丸 */
  margin: 0;
}

/* スマホ表示（画面幅が狭いとき）の微調整 */
@media screen and (max-width: 480px) {
  .manager-avatar {
    width: 55px;
    padding-right: 10px;
  }
  .manager-avatar img {
    width: 55px;
    height: 55px;
  }
  .manager-bubble .manager-text {
    font-size: 13px;
    padding: 10px 14px;
  }
}
/* 全体コンテナ */
.wishlist-container {
  max-width: 1000px;
  /* 横長にするため少し広めに設定 */
  margin: 0 auto;
  padding: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #fcfcfc;
}

.wishlist-header {
  padding-left: 5px;
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin-bottom: 10px;
  color: #332211;
  font-family: "Hina Mincho", serif;
}

/* 親要素：2つのカードを横に並べる */
.support {
  display: flex;
  border: 1px solid #332211;
}

/* カード本体：ここを 横3：縦2 の長方形に固定 */
.profile-card {
  flex: 1;
  display: flex;
  aspect-ratio: 3/2;
  border-right: 1px solid #332211;
  overflow: hidden;
}

.profile-card:last-child {
  border-right: none;
}

/* 左側：画像エリア */
.profile-image {
  width: 40%;
  /* 比率は維持 */
  height: 100%;
  border-right: 1px solid #332211;
}

.profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 枠に合わせて自動トリミング */
}

/* 右側：テキストエリア */
.profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #fcfcfc;
}

/* 肩書きタグ（右上） */
.vol-tag {
  align-self: flex-end;
  background-color: #332211;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* 中央：SNS・連絡先リンク */
.details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 25px;
  /* 名前との間隔 */
}

.details a {
  text-decoration: none;
  color: #332211;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 下部：名前エリア */
.name-info {
  text-align: right;
  letter-spacing: 0.3rem;
  font-weight: bold;
  border-top: 1px solid #332211;
  padding-top: 15px;
  margin: 0;
  font-family: serif;
  font-size: 1.1rem;
  font-family: "Hina Mincho", serif;
}

/* ヘッダー全体をリンクにするための調整 */
.wishlist-header {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}

.wishlist-title {
  font-family: "Hina Mincho", serif;
  font-size: 1.2rem;
  color: #332211;
  margin: 0;
}

/* 丸に矢印のアイコン再現 */
.arrow-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #332211;
  border-radius: 50%;
  color: #332211;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  line-height: 1;
  padding-bottom: 2px;
  padding-left: 5px;
}

/* ホバーした時の演出 */
.wishlist-container a:hover .arrow-icon {
  background-color: #332211;
  color: #fff;
}

/* スマホ対応（画面が狭いときは縦に並べる） */
@media (max-width: 900px) {
  .support {
    flex-direction: column;
  }
  .profile-card {
    border-right: none;
    border-bottom: 1px solid #332211;
    aspect-ratio: auto;
    /* スマホでは中身に合わせるか、お好みの比率に */
    height: 250px;
    /* 固定高にする場合 */
  }
}
.profile-card2 {
  margin-bottom: 30px;
  margin: 0 auto;
  border-bottom: 1px solid #332211;
  max-width: clamp(280px, 280px + 180 * (100vw - 480px) / 288, 800px);
}

.white-box {
  padding: 8% 5%;
  background-color: var(--background-color);
  border-radius: 10px;
  color: var(--main-color);
}
.white-box h5 {
  border-bottom: 1px dashed var(--main-color);
}

.retail-img {
  border-radius: 10px;
}

.ogaki {
  background-color: #FFFEFC;
}

.ogaki-logo a {
  color: var(--main-color);
  font-weight: medium;
}

.text-ogaki {
  color: var(--main-color);
}
.text-ogaki .span {
  font-weight: bold;
}

.text-ogaki h4 {
  color: var(--main-color);
  margin-bottom: 8px;
  border-bottom: none;
}

.text-ogaki h5 {
  border-bottom: 1px dashed var(--main-color);
}

.ogaki-insta {
  color: var(--main-color);
  padding-top: 16px;
  padding-bottom: 30px;
  font-weight: normal;
}

#privacy {
  padding: 20px;
  padding-left: 50px;
}
#privacy h4 {
  padding-top: 40px;
  margin-bottom: 5px;
}
#privacy p {
  padding: 5px 0;
}
#privacy a {
  color: var(--main-color);
}

.privacy {
  color: var(--background-color);
}
/*# sourceMappingURL=main.css.map */