/*
Theme Name: Ajiyoshi Theme
Author: Tsuru Kawagoe
Description: 味よしオリジナルテーマ
Version: 1.0
*/

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #E9B686;
  color: #282828;
  font-family:
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
}

p{
  font-weight: 600;

}

.pcbr-only{
  display:block;
}

.sp-only{
  display:none;
}

@media (max-width:768px){
  .sp-only{
    display:block;
  }

  .pcbr-only{
    display:none;
  }
}


/* FV */
.fv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.fv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* PC */
.fv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:768px){

  .fv {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .fv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* 共通カラー */
:root {
  --bg: #FEFFF4;
  --dot: #A2B423;
}

/* ロゴ */
.logo {
  position: fixed;
  top: 16px;
  left: 16px;
  /* background: var(--bg); */
  padding: 12px 16px;
  z-index: 10;
      border-radius: 10px;
      /* box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.12); */
}

.logo img {
  height: 120px;
  width: auto;
}

/* ===============================
   ハンバーガー
=============================== */

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #FEFFF4;
  border: none;
  border-radius: 12px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow:
    0 10px 20px rgba(0,0,0,0.08),
    0 30px 60px rgba(0,0,0,0.12);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #333;
  margin: 0 auto;
  transition: 0.3s;
}

/* ×アニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===============================
   オーバーレイ
=============================== */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   ナビ本体
=============================== */

.global-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #FEFFF4;
  padding: 120px 40px;
  transition: 0.4s;
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.global-nav.active {
  right: 0;
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-nav li {
  margin-bottom: 32px;
}

.global-nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.nav-instagram img {
  width: 36px;
  height: 36px;
}

/* Instagram */
.instagram {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--bg);
  padding: 10px;
  z-index: 10;
      border-radius: 10px;
      box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.12);
}

.instagram img {
  width: 50px;
  height: 50px;
}

/* SP */
@media (max-width: 768px) {
  .logo{
    padding: 0;
  }

  .logo img {
    height: 65px;
    width: auto;
}
}


/* コンセプト--------------------------------------------------------------------------- */
.concept {
  background: #E9B686;
}

.concept-inner {
  max-width: 1100px;
    padding: 120px 24px;
  margin: 0 auto;
}

/* 上段：タイトル＋画像 */
.concept-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
}

.concept-title {
  font-size: 32px;
  line-height: 1.6;
  font-weight: 600;
  white-space: nowrap;
}

/* 画像 */
.concept-image img {
  width: 520px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* 本文エリア */
.concept-text {
  margin: 80px auto 100px;
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  color: #222;
      font-weight: 600;
}

/* リード文 */
.concept-text .lead {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

/* 通常段落 */
.concept-text p {
  margin-bottom: 28px;
  font-size: 18px;

}
/* 山型ディバイダー */
.concept-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.concept-divider img {
  display: block;
  width: 100vw;        /* 画面幅いっぱいに引き延ばす */
  max-width: none;     /* 元画像の1440px制限を無効化 */
  height: 95px;       /* PC時の高さ */
  object-fit: cover;   /* 横を優先して埋める */
}


/* SP */
@media (max-width: 768px) {

  .concept-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .concept-title {
    font-size: 24px;
            align-self: center;
  }

  .concept-inner{
    padding: 25px 20px;
  }

  .concept-text {
            font-size:3.7vw;
  }
    .concept-divider img {
    content: url("image/sp-deco-spike.svg");
    height: 60px;
  }
  .concept-text .lead {
            font-size:14.4px;
    margin-bottom: 24px;
  }

  .concept-text p {
            font-size:14.4px;
    margin-bottom: 22px;
}
}

/* Season--------------------------------------------------- */

.season {
  background: #FEFFF4;
  padding: 120px 24px;
}

.season-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* 左テキスト */
.season-text {
  flex: 1;
}

.season-date {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 12px;
}

.season-label {
  font-size: 14px;
  color: #E93E3E;
  margin-bottom: 20px;
}

.season-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.season-description {
  font-size: 15px;
  line-height: 2;
}

/* 右画像 */
.season-image {
  flex: 1;
}

.season-image img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .season {
    padding: 80px 20px;
  }

  .season-inner {
    flex-direction: column;
    gap: 40px;
  }
  
  .season-image {
    order: -1;
  }

  .season-title {
    font-size: 24px;
  }

  .season-description {
    font-size: 14px;
  }
}


/* =========================
   News
   ========================= */

.news {
  padding: 120px 24px;
}

/* 背景を持つ本体 */
.news-inner {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 80px 64px 64px;
}

/* 背景共通 */
.news__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 初期状態：PC */
.bg-sp {
  display: none;
}

/* 左上ロゴ（画像） */
.news-logo {
  position: absolute;
  top: 0;
  left: 0;
}

.news-logo img {
  display: block;
  height: 40px; /* 必要に応じて調整 */
  width: auto;
}

/* News見出し */
.news-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* ニュース一覧 */
.news-list {
  list-style: none;
}

.news-item {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(173 173 173 / 60%);
}

.news-item:last-child {
  border-bottom: 1px solid rgba(173 173 173 / 60%);
}

.news-date {
  min-width: 90px;
  font-size: 14px;
  font-weight: 600;
}

.news-text {
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .news {
    padding: 80px 20px;
  }

  .news-inner {
    padding: 64px 24px 40px;
  }

  .news-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .news-date {
    font-size: 13px;
  }

  .news-text {
    font-size: 14px;
  }

  .news-logo img {
    height: 32px;
  }
}


/* =======================================
   kodawari----------------------------------------------------------------------
======================================= */

.kodawari-section {
  padding: 120px 0px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}
/* ===============================
   味よしのこだわり タイトル
================================= */

.section-ajiyoshi-kodawari-heading {
  width: 100%;
  text-align: center;
  
}

.section-ajiyoshi-kodawari-heading__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* 緑マル */
.section-ajiyoshi-kodawari-heading__dot {
  width: 14px;
  height: 14px;
  background-color: var(--dot);
  border-radius: 50%;
}

/* タイトル文字 */
.section-ajiyoshi-kodawari-heading__text {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05em;
}

/* 「味よし」だけ大きく */
.section-ajiyoshi-kodawari-heading__brand {
  font-size: 44px;
  font-weight: 700;
}

/* ===============================
   SP調整
================================= */

@media screen and (max-width: 768px) {

  .section-ajiyoshi-kodawari-heading {
    margin-bottom: 40px;
  }

  .section-ajiyoshi-kodawari-heading__text {
    font-size: 22px;
  }

  .section-ajiyoshi-kodawari-heading__brand {
    font-size: 30px;
  }

  .section-ajiyoshi-kodawari-heading__dot {
    width: 10px;
    height: 10px;
  }
}



/* =======================================
   各ブロック
======================================= */

.kodawari-block {
  position: relative;
}


/* =======================================
   装飾（山型）
======================================= */

.kodawari-divider img {
  width: 100%;
  display: block;
}


/* =======================================
   白背景
======================================= */

.kodawari-box {
  background: #FEFFF4;
  padding: 120px 80px 80px 80px;
  margin-top: -8px; /* 山型と密着 */
  position: relative;
}


/* =======================================
   中身レイアウト（PC）
======================================= */

.kodawari-inner {
  display: flex;
 justify-content: center;
     justify-self: center;
  gap: 80px;
}

.kodawari-inner-reverse {
  flex-direction: row-reverse;
}


/* =======================================
   動画（正方形＋radius）
======================================= */

.kodawari-media {
  flex: 1.3;
  max-width: 700px;
  aspect-ratio: 1.15 / 1;
  margin-top: -200px;
  position: relative;
  z-index: 2;
}

.kodawari-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 110px;
  display: block;
}


/* =======================================
   テキスト
======================================= */

.kodawari-text {
  flex: .9;
      padding: 50px;
}

.kodawari-catch {
  color: #c40000;
  font-weight: 700;
  transform: rotate(-6deg);
  display: inline-block;
  margin-bottom: 16px;
}

.kodawari-text h3 {
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.4em;
}

.kodawari-text p {
  line-height: 2;
  font-size: 15px;
}

/* PC（デフォルト） */
.kodawari-divider img {
  width: 100%;
  display: block;
}

/* SP時に画像差し替え */
@media (max-width: 768px) {

  .kodawari-divider img {
    content: url("image/sp-deco-spike.svg");
  }

}

/* =======================================
   SP対応
======================================= */

@media (max-width: 768px) {

  .kodawari-media video {
    border-radius: 35px 35px 0 0;
}

.kodawari-text h3 {
  font-size: 23px;
}
.kodawari-text {
            padding: 0px 5px 40px 5px;
}

  .kodawari-section {
    padding: 80px 20px;
    gap: 20px;
  }

  .kodawari-box {
    padding: 0px 10px 0px 10px;
  }

  .kodawari-inner,
  .kodawari-inner-reverse {
    flex-direction: column;
    gap: 32px;
  }

  .kodawari-media {
    margin-top: 0; /* SPでははみ出しなし */
    max-width: 100%;
  }

  .kodawari-catch {
    transform: rotate(-4deg);
  }
  

}

/* =======================================
   味よしの味------------------------------------------------------------
======================================= */

.ajiyoshi-flavor-section {
  background: #FEFFF4;
      padding: 140px 20px 0px;
  position: relative;
}

.ajiyoshi-flavor-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* =======================================
   タイトル
======================================= */

.ajiyoshi-flavor-heading {
  text-align: center;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.ajiyoshi-flavor-dot {
  width: 14px;
  height: 14px;
  background: var(--dot);
  border-radius: 50%;
}

.ajiyoshi-flavor-heading h2 {
  font-size: 32px;
  margin: 0;
}

.big-ajiyoshi {
  font-size: 46px;
  font-weight: 700;
}

.big-aji {
  font-size: 46px;
  font-weight: 700;
}

/* =======================================
   レイアウト
======================================= */

.ajiyoshi-flavor-layout {
  position: relative;
  min-height: 540px;
  margin-bottom: 300px;
}

/* 画像 */

.ajiyoshi-flavor-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;   /* 少し縮める */
  z-index: 1;
}

.ajiyoshi-flavor-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* テキストボックス */

.ajiyoshi-flavor-textbox {
  position: absolute;
  left: 0;
        bottom: -140px;
  width: 71%;
    background: #FEFFF4;
      padding: 55px 50px;
  z-index: 2;   /* 画像より上 */
  border-radius: 121px;
    border: 13px solid #E9B686;
}

/* =======================================
   おそうざい装飾
======================================= */

.osouzai-floating {
  position: absolute;
  left: 80px;       /* テキストボックスに合わせる */
  bottom: 370px;    /* ボックス上部に乗る位置に調整 */
  z-index: 3;       /* ボックスより上 */
}

/* 既存の文字サイズはそのまま */
.osouzai-title {
  font-size: 35px;
  font-weight: 700;
 margin-bottom: 20px;
}

.osouzai-o-wrap {
  position: relative;
  display: inline-block;
}

.osouzai-circle {
  position: absolute;
  width: 46px;
  height: 46px;
  background: #FFD67C;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.osouzai-o {
  position: relative;
  font-size: 48px;
  z-index: 1;
}

/* =======================================
   テキスト
======================================= */

.flavor-subtitle {
  font-size: 26px;
  margin-bottom: 30px;
}


.ajiyoshi-flavor-textbox p {
  line-height: 1.9;
  font-size: 15px;
      font-weight: 600;
}

/* =======================================
   反転レイアウト
======================================= */

.ajiyoshi-flavor-layout.is-reverse .ajiyoshi-flavor-image {
  right: auto;
  left: 0;
}

.ajiyoshi-flavor-layout.is-reverse .ajiyoshi-flavor-textbox {
  left: auto;
  right: 0;
}

.ajiyoshi-flavor-layout.is-reverse .osouzai-floating {
  left: auto;
  right: 400px; /* textboxと揃える */
}



/* =======================================
   店舗情報---------------------------------------------------------------
======================================= */

.ajiyoshi-shop-section {
  padding: 160px 20px;
  background: #FEFFF4;
}

.ajiyoshi-shop-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =======================================
   タイトル
======================================= */

.ajiyoshi-shop-heading {
  text-align: center;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.ajiyoshi-shop-dot {
  width: 14px;
  height: 14px;
  background: var(--dot);
  border-radius: 50%;
}

.ajiyoshi-shop-heading h2 {
  font-size: 32px;
  margin: 0;
}

.big-ajiyoshi {
  font-size: 46px;
  font-weight: 700;
}

/* =======================================
   レイアウト
======================================= */

.ajiyoshi-shop-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:80px;
  row-gap:24px;   /* ←縦の余白だけ小さく */
  align-items:start;
}

.shop-profile{
  grid-column:1;
}

.shop-description{
  grid-column:1;
}

.ajiyoshi-shop-image-wrap{
  grid-column:2;
  grid-row:1 / span 2;
}

/* =======================================
   テキスト
======================================= */

.ajiyoshi-shop-text {
  flex: 1;
}

.shop-lead {
  font-size: 24px;
  margin-bottom: 30px;
}

.shop-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.shop-name-en {
  font-size: 14px;
  letter-spacing: 2px;
  color: #777;
}

.shop-description p {
  line-height: 1.9;
  margin-bottom: 24px;
}

/* =======================================
   画像エリア
======================================= */

.ajiyoshi-shop-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* オレンジ背景（画像） */
.ajiyoshi-shop-bg {
  position: relative;
  width: 500px;
  height: 500px;

  background-image: url("image/Rectangle 9.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}

/* 人物画像（上レイヤー） */
.ajiyoshi-shop-bg img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
border-radius: 220px;
  height: 110%;
  width: auto;

  z-index: 2;
}

@media (max-width:768px){

  .ajiyoshi-flavor-heading h2 {
  font-size: 22px;
  margin: 0;
}

.ajiyoshi-shop-heading h2 {
  font-size: 22px;
  margin: 0;
}

  .ajiyoshi-shop-bg img {
    height: 100%;
  }

.ajiyoshi-shop-layout{
  display:flex;
  flex-direction:column;
  gap: 30px;
}

.shop-profile{
  /* text-align:center; */
}

.shop-description p{
  font-size: 15px;
}

/* 写真サイズ調整 */
.ajiyoshi-shop-bg{
          width: 90vw;
        height: 90vw;
}

}

/* =======================================
   アクセスセクション
======================================= */

.ajiyoshi-access-section {
  padding: 160px 20px;
  background: #FEFFF4;
}

.ajiyoshi-access-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* レイアウト */

.ajiyoshi-access-layout {
  display: flex;
  align-items: stretch;
  gap: 80px;
}

/* =======================================
   左：情報
======================================= */

.ajiyoshi-access-info {
  flex: 1;
      padding: 80px 0 60px 80px;

  background-image: url("image/Rectangle 9.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  position: relative;
}

/* リスト */

.ajiyoshi-access-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ajiyoshi-access-list li {
  display: flex;
  margin-bottom: 24px;
}

.access-label {
  width: 120px;
  font-weight: 700;
}

.access-value {
  flex: 1;
  line-height: 1.8;
  font-weight: 600;
}

/* =======================================
   右：マップ
======================================= */

.ajiyoshi-access-map {
  flex: 1;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative; 
}

.ajiyoshi-access-map iframe {
  position: absolute;   /* 追加 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =======================================
   SP対応
======================================= */
@media (max-width: 768px) {

  .ajiyoshi-access-section {
    padding: 80px 20px;
  }

  .ajiyoshi-access-layout {
    flex-direction: column;
    gap: 40px;
  }

  /* =====================
     店舗情報
  ===================== */

  .ajiyoshi-access-info {
    padding: 50px 30px;
    background-size: cover; /* contain → cover に変更 */
    border-radius: 15px;
  }

  .ajiyoshi-access-list li {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .access-label {
    width: auto;
    margin-bottom: 4px;
    font-size: 14px;
    opacity: 0.7;
  }

  .access-value {
    font-size: 16px;
    font-weight: 600;
  }

  /* =====================
     マップ
  ===================== */

  .ajiyoshi-access-map {
    min-height: 300px;
    border-radius: 16px;
  }

}

@media (max-width: 768px) {

  .ajiyoshi-flavor-heading{
        margin-bottom: 45px;
  }

  .ajiyoshi-flavor-layout {
    display: flex;
    flex-direction: column;
        margin-bottom: 200px;
  }

  .ajiyoshi-flavor-image,
  .ajiyoshi-flavor-textbox {
    position: relative;
    width: 100%;
  }

  .ajiyoshi-flavor-textbox {
    padding: 30px 13px;
                    margin-top: -120px;
            border-radius: 20px;
            border: 5px solid #E9B686;
  }

  .ajiyoshi-flavor-textbox p{
    font-size: 15px;
  }

  .big-ajiyoshi,
  .big-aji {
    font-size: 30px;
  }
  .osouzai-floating {
    position: relative;
    left: 0!important;
    bottom: 0;
  }

  .osouzai-title {
    font-size: 28px;
  }

  .flavor-subtitle{
    font-size: 20px;
            line-height: 1.5em;
            margin-bottom: 13px;
  }

  .osouzai-o {
    font-size: 37px;
  }

  .osouzai-circle {
    width: 32px;
    height: 32px;
  }
}

/* =========================
   全体配置
========================= */

.banner-wrap {
  display: flex;
  justify-content: center;
  gap: 90px;
  
  flex-wrap: wrap;
}

/* =========================
   バナー本体
========================= */

.custom-banner {
  position: relative;
  width: 420px;
  height: 180px;
  background: #E9B686;
  border: 6px solid #ffffff;
  border-radius: 30px 0 30px 30px; /* 右上だけ0 */
  overflow: hidden;
  text-decoration: none;
  padding: 40px;
  box-sizing: border-box;
  transition: 0.3s;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.12);
}

/* 右半分の円 */
.custom-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: #FCFFEB;
  border-radius: 50%;
  right: -80px;
  top: -50px;
}

/* =========================
   テキスト
========================= */

.banner-text {
  position: relative;
  z-index: 2;
  text-align: left;
}

.banner-text p {
  margin: 0;
  font-weight: 700;
  color: #333;
}

.banner-text p:first-child {
  font-size: 26px;
  margin-bottom: 30px;
}

.banner-text p:last-child {
  font-size: 23px;
  letter-spacing: 0.08em;
}

/* =========================
   右下矢印
========================= */

.banner-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: #FFD67C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.banner-arrow img {
  width: 80%;
}

/* =========================
   ホバー
========================= */

.custom-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   SP対応
========================= */

@media (max-width: 768px) {

  .banner-wrap {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }

  .custom-banner {
    width: 100%;
    height: 150px;
    padding: 24px;
    border-width: 4px;
    border-radius: 24px 0 24px 24px;
  }

  /* 円を少し小さく */
  .custom-banner::after {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -40px;
  }

  /* テキストサイズ調整 */
  .banner-text p:first-child {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .banner-text p:last-child {
    font-size: 18px;
  }

  /* 矢印サイズ調整 */
  .banner-arrow {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }

}

/* =========================
   Instagram セクション
========================= */

.instagram-section {
  background: #E9B686;
  padding: 100px 20px;
  text-align: center;
  margin-top: -5px; /* 山型にピタッと */
}

/* タイトル */

.instagram-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
}

/* フィード中央 */

.instagram-feed {
  max-width: 1000px;
  margin: 0 auto;
}

/* SP対応 */

@media (max-width: 768px) {

  .instagram-section {
    padding: 70px 20px;
  }

  .instagram-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

}

/* =======================================
   Footer
======================================= */
.ajiyoshi-footer{
  background:#E9B686;
  padding:90px 20px;
}

.footer-inner{
  max-width:1100px;
  margin:0 auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}

/* ロゴ */

.footer-logo img{
  width:75px;
  height:auto;
  margin-bottom:14px;
}

.footer-copy{
  font-size:13px;
  color:rgba(0,0,0,0.65);
}

/* 写真 */

.footer-photo{
  flex:1;
  max-width:500px;
}

.footer-photo img{
  width:100%;
  height:auto;
  display:block;

  border:10px solid #fff;
  border-radius:8px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width:768px){

.footer-inner{
  flex-direction:column-reverse;
  text-align:center;
  gap:35px;
}

.footer-photo{
  max-width:90%;
}

.footer-logo img{
  margin:0 auto 10px;
}

.footer-copy{
  font-size:12px;
}

}