@charset "UTF-8";
/* ==============================
   Variables
============================== */
/* ==============================
   Base Settings
============================== */
html, body {
  overflow-x: hidden;
  overflow-y: visible; }

html {
  font-size: 18px; }

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #1d1d20;
  line-height: 1.3;
  /*行間調整*/
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "palt";
  /* プロポーショナル仮名 */
  text-align: center; }

a {
  text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

p {
  margin-bottom: 1em; }
  p:last-child {
    margin-bottom: 0; }

.image {
  margin-bottom: 2rem;
  text-align: center; }
  .image:last-child {
    margin-bottom: 0; }

.inner {
  width: 90%;
  max-width: 1000px;
  padding: 4rem 0;
  margin: 0 auto; }

h2 {
  font-size: 2.2rem; }

h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem; }
  @media (max-width: 767px) {
    h3 {
      font-size: 2.2rem; } }

h4 {
  font-size: 1.5rem; }

.size-up {
  font-size: 1.5em;
  font-weight: inherit; }

.bold {
  font-weight: 800; }

.sp-only {
  display: none; }

.pc {
  display: block; }
  @media (max-width: 767px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media (max-width: 767px) {
    .sp {
      display: block; } }

@media (max-width: 767px) {
  html {
    font-size: 14px; }

  .sp-only {
    display: inline; } }
/* ==============================
   Common
============================== */
header {
  background: #1d1d20; }
  header .inner {
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between; }
    header .inner .logo-image {
      display: flex;
      gap: 1rem;
      justify-content: space-evenly; }
      header .inner .logo-image img:first-child {
        width: 55%;
        max-width: 280px; }
      header .inner .logo-image img:last-child {
        width: 40%;
        max-width: 220px; }

footer p {
  margin-bottom: 2rem; }
  footer p.copyright {
    margin-bottom: 0; }
footer .logo-image {
  margin-bottom: 3rem; }
  footer .logo-image img {
    margin: auto;
    margin-bottom: 1rem;
    width: 50%; }
    footer .logo-image img:last-child {
      margin-bottom: 0; }

/*-------------------------------------------
   アニメーション配置
-------------------------------------------*/
/* 共通の初期スタイル */
.fade-in-up, .fade-in-left, .fade-in-scale, .fade-in-right, .fade-in-down, .fade-in-opacity {
  opacity: 0;
  /* 初期状態を透明に */ }

/* パターン1：下から上へのフェードイン */
.fade-in-up.show {
  animation: fadeInUp 1s ease-out forwards; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
/* パターン2：左から右へのフェードイン */
.fade-in-left.show {
  animation: fadeInLeft 1s ease-out forwards; }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
/* パターン3：スケールアップしながらフェードイン */
.fade-in-scale.show {
  animation: fadeInScale 1s ease-out forwards; }

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8); }
  100% {
    opacity: 1;
    transform: scale(1); } }
/* パターン4：右から左へのフェードイン */
.fade-in-right.show {
  animation: fadeInRight 1s ease-out forwards; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
    /* 右に移動した状態から */ }
  100% {
    opacity: 1;
    transform: translateX(0);
    /* 元の位置へ */ } }
/* パターン5：上から下へのフェードイン */
.fade-in-down.show {
  animation: fadeInDown 1s ease-out forwards; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    /* 上に移動した状態から */ }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置へ */ } }
/* パターン6：透明度のみのフェードイン */
.fade-in-opacity.show {
  animation: fadeInOpacity 1s ease-out forwards; }

@keyframes fadeInOpacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* ==============================
   Main Page
============================== */
#home #fv-section {
  background: url("../images/home/header-bg.png") no-repeat right 15% bottom/auto 70%; }
  @media (max-width: 1024px) {
    #home #fv-section {
      background: url("../images/home/header-bg.png") no-repeat right bottom/auto 70%; } }
  @media (max-width: 767px) {
    #home #fv-section {
      background: url("../images/home/header-bg.png") no-repeat right 15% bottom 35%/auto 40%; } }
  #home #fv-section .inner {
    padding-bottom: 0; }
    #home #fv-section .inner h2 {
      font-size: 3.8rem;
      font-weight: 800;
      text-align: left;
      margin-bottom: 3rem; }
      @media (max-width: 767px) {
        #home #fv-section .inner h2 {
          font-size: 2.5rem;
          margin-bottom: 3rem; } }
  #home #fv-section .inner-b {
    padding-right: 28%;
    padding-bottom: 4rem; }
    @media (max-width: 767px) {
      #home #fv-section .inner-b {
        padding-right: 0; } }
    #home #fv-section .inner-b h2 {
      font-size: 3.8rem;
      font-weight: 800;
      text-align: left;
      margin-bottom: 3rem; }
      @media (max-width: 767px) {
        #home #fv-section .inner-b h2 {
          font-size: 2.5rem;
          margin-bottom: 3rem; } }
    #home #fv-section .inner-b .logo-image {
      margin-bottom: 3rem; }
      @media (max-width: 767px) {
        #home #fv-section .inner-b .logo-image {
          margin-bottom: 20rem; } }
      #home #fv-section .inner-b .logo-image img {
        margin: auto;
        margin-bottom: 1rem;
        width: 70%; }
        #home #fv-section .inner-b .logo-image img:last-child {
          margin-bottom: 0; }
        @media (max-width: 767px) {
          #home #fv-section .inner-b .logo-image img {
            width: 80%; } }
    #home #fv-section .inner-b .text-box {
      width: 100%;
      background: #f2f2f2;
      border: 1px solid #86868b;
      border-radius: 1rem;
      padding: 1rem;
      margin-bottom: 3rem; }
      @media (max-width: 767px) {
        #home #fv-section .inner-b .text-box {
          padding: 0.5rem;
          margin-bottom: 2rem; } }
      #home #fv-section .inner-b .text-box p {
        text-align: center;
        font-weight: 600; }
  #home #fv-section .cta {
    text-align: center; }
    #home #fv-section .cta a {
      display: inline-block;
      padding: 1rem 4rem;
      background: linear-gradient(180deg, #06c755 0%, #00b84c 100%);
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      border-radius: 999px;
      /* 立体感 */
      box-shadow: 0 6px 0 #009a3e, 0 10px 20px rgba(0, 0, 0, 0.25);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
      @media (max-width: 767px) {
        #home #fv-section .cta a {
          padding: 1rem 2rem; } }
    #home #fv-section .cta a:hover {
      background: linear-gradient(180deg, #07da60 0%, #00c853 100%);
      transform: translateY(3px);
      box-shadow: 0 3px 0 #009a3e, 0 6px 12px rgba(0, 0, 0, 0.25); }
    #home #fv-section .cta a:active {
      transform: translateY(6px);
      box-shadow: 0 0 0 #009a3e, 0 2px 6px rgba(0, 0, 0, 0.2); }
#home #empathy-section {
  background: #e5f6f0; }
  #home #empathy-section ul {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem; }
    #home #empathy-section ul li {
      margin-bottom: 1rem; }
      #home #empathy-section ul li:last-child {
        margin-bottom: 0; }
      #home #empathy-section ul li img {
        border: 1px solid #86868b;
        border-radius: 1rem; }
  #home #empathy-section p {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 600; }
    @media (max-width: 767px) {
      #home #empathy-section p {
        font-size: 1.3rem; } }
#home #value-section img {
  width: 100%;
  max-width: 900px;
  margin: auto; }
#home #howto-section {
  background: #e5eeff; }
  #home #howto-section ul {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; }
    #home #howto-section ul li {
      background: #fff;
      border: 1px solid #86868b;
      border-radius: 1rem;
      padding: 2rem;
      margin-bottom: 1rem;
      display: flex;
      justify-content: center;
      flex-direction: column; }
      #home #howto-section ul li:last-child {
        margin-bottom: 0; }
      @media (max-width: 767px) {
        #home #howto-section ul li {
          padding: 1rem; } }
      #home #howto-section ul li img {
        margin-bottom: 1rem; }
      #home #howto-section ul li p {
        margin-bottom: 0;
        font-size: 1.4rem; }
        @media (max-width: 767px) {
          #home #howto-section ul li p {
            font-size: 1rem; } }
#home #shops-section {
  background: #fffae5; }
  #home #shops-section h3 {
    font-size: 2rem; }
    @media (max-width: 767px) {
      #home #shops-section h3 {
        font-size: 1.8rem; } }
  #home #shops-section img {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 900px; }
  #home #shops-section p {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 600; }
    @media (max-width: 767px) {
      #home #shops-section p {
        font-size: 1.4rem; } }
#home #benefits-section {
  background: #ffe5ea; }
  #home #benefits-section ul {
    display: flex;
    gap: 0.5rem; }
    @media (max-width: 767px) {
      #home #benefits-section ul {
        flex-wrap: wrap; } }
    #home #benefits-section ul li {
      width: 25%; }
      @media (max-width: 767px) {
        #home #benefits-section ul li {
          width: calc(50% - 0.25rem); } }
      #home #benefits-section ul li img {
        border: 1px solid #86868b;
        border-radius: 1rem; }
#home #faq-section summary {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: pointer; }
#home #faq-section p {
  font-size: 1.2rem; }
#home #faq-section details {
  max-width: 800px;
  background: #fff;
  border: 1px solid #86868b;
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin: 0 auto 1rem;
  margin-bottom: 1rem; }
  #home #faq-section details:last-child {
    margin-bottom: 0; }
#home #closing-section {
  background: url("../images/closing-bg.png") no-repeat center/cover;
  padding: 4rem 0;
  /* 女性キャラ */ }
  @media (max-width: 1024px) {
    #home #closing-section {
      padding: 4rem 0 18rem; } }
  #home #closing-section .inner {
    max-width: 1100px;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 4rem 3rem 5rem 300px;
    overflow: visible;
    /* ← これ重要 */ }
    @media (max-width: 1024px) {
      #home #closing-section .inner {
        padding: 2rem 1rem; } }
  #home #closing-section .inner::before {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -4rem;
    width: 420px;
    /* キャラの実サイズに合わせる */
    height: 556px;
    background: url("../images/home/closing-woman.png") no-repeat center/contain;
    z-index: 1; }
    @media (max-width: 1024px) {
      #home #closing-section .inner::before {
        width: 315px;
        height: 413px;
        bottom: -18rem; } }
    @media (max-width: 767px) {
      #home #closing-section .inner::before {
        width: 210px;
        height: 278px;
        bottom: -18rem; } }
  #home #closing-section img {
    margin-bottom: 3rem; }
  #home #closing-section p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600; }
    @media (max-width: 767px) {
      #home #closing-section p {
        font-size: 1.6rem; } }
  #home #closing-section .cta {
    text-align: center; }
    #home #closing-section .cta a {
      display: inline-block;
      padding: 1rem 4rem;
      background: linear-gradient(180deg, #06c755 0%, #00b84c 100%);
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      border-radius: 999px;
      /* 立体感 */
      box-shadow: 0 6px 0 #009a3e, 0 10px 20px rgba(0, 0, 0, 0.25);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
      @media (max-width: 767px) {
        #home #closing-section .cta a {
          padding: 1rem 2rem; } }
    #home #closing-section .cta a:hover {
      background: linear-gradient(180deg, #07da60 0%, #00c853 100%);
      transform: translateY(3px);
      box-shadow: 0 3px 0 #009a3e, 0 6px 12px rgba(0, 0, 0, 0.25); }
    #home #closing-section .cta a:active {
      transform: translateY(6px);
      box-shadow: 0 0 0 #009a3e, 0 2px 6px rgba(0, 0, 0, 0.2); }
#home footer .btn {
  display: inline-block;
  padding: 0.5rem 3rem;
  background: #1d1d20;
  color: #fff;
  border-radius: 999px;
  font-size: 1.2rem;
  margin-bottom: 2rem; }

/* #home */
#store-entry header .inner h5 {
  background: #ff005a;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  margin: auto 0 auto auto; }
  @media (max-width: 767px) {
    #store-entry header .inner h5 {
      margin: auto; } }
#store-entry #fv-section {
  background: url("../images/store-entry/header-partner-bg.png") no-repeat right 20% bottom/auto 70%; }
  @media (max-width: 1024px) {
    #store-entry #fv-section {
      background: url("../images/store-entry/header-partner-bg.png") no-repeat center bottom 40%/40% auto; } }
  @media (max-width: 767px) {
    #store-entry #fv-section {
      background: url("../images/store-entry/header-partner-bg.png") no-repeat center bottom 50%/70% auto; } }
  #store-entry #fv-section .inner {
    padding-right: 20%; }
    @media (max-width: 1024px) {
      #store-entry #fv-section .inner {
        padding-right: 0; } }
    #store-entry #fv-section .inner h2 {
      font-size: 3.6rem;
      font-weight: 800;
      margin-bottom: 3rem; }
      @media (max-width: 767px) {
        #store-entry #fv-section .inner h2 {
          font-size: 2.5rem;
          margin-bottom: 2rem; } }
    #store-entry #fv-section .inner img {
      margin: 0 auto 2rem;
      width: 100%;
      max-width: 500px; }
      @media (max-width: 1024px) {
        #store-entry #fv-section .inner img {
          margin: 0 auto 22rem; } }
    #store-entry #fv-section .inner .text-box {
      width: 100%;
      background: #f2f2f2;
      border: 1px solid #86868b;
      border-radius: 1rem;
      padding: 1rem;
      margin: 0 auto 3rem;
      max-width: 670px; }
      @media (max-width: 767px) {
        #store-entry #fv-section .inner .text-box {
          padding: 0.5rem;
          margin: 0 auto 2rem; } }
      #store-entry #fv-section .inner .text-box p {
        text-align: center;
        font-weight: 600; }
    #store-entry #fv-section .inner .cta {
      text-align: center; }
      #store-entry #fv-section .inner .cta a {
        display: inline-block;
        padding: 1rem 6rem;
        background: linear-gradient(180deg, #ff9f1c 0%, #ff7a00 100%);
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 999px;
        /* 立体感 */
        box-shadow: 0 6px 0 #e06600, 0 10px 20px rgba(0, 0, 0, 0.25);
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
        @media (max-width: 767px) {
          #store-entry #fv-section .inner .cta a {
            padding: 1rem 2rem; } }
      #store-entry #fv-section .inner .cta a:hover {
        background: linear-gradient(180deg, #ffb347 0%, #ff8c1a 100%);
        transform: translateY(3px);
        box-shadow: 0 3px 0 #e06600, 0 6px 12px rgba(0, 0, 0, 0.25); }
      #store-entry #fv-section .inner .cta a:active {
        transform: translateY(6px);
        box-shadow: 0 0 0 #e06600, 0 2px 6px rgba(0, 0, 0, 0.2); }
#store-entry #empathy-section {
  background: #e5eeff; }
  #store-entry #empathy-section ul {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem; }
    #store-entry #empathy-section ul li {
      margin-bottom: 1rem; }
      #store-entry #empathy-section ul li:last-child {
        margin-bottom: 0; }
      #store-entry #empathy-section ul li img {
        border: 1px solid #86868b;
        border-radius: 1rem; }
  #store-entry #empathy-section p {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 600; }
    @media (max-width: 767px) {
      #store-entry #empathy-section p {
        font-size: 1.3rem; } }
#store-entry #benefits-section {
  background: #ffe5ea; }
  #store-entry #benefits-section ul {
    display: flex;
    gap: 0.5rem; }
    @media (max-width: 767px) {
      #store-entry #benefits-section ul {
        flex-wrap: wrap; } }
    #store-entry #benefits-section ul li {
      width: 25%; }
      @media (max-width: 767px) {
        #store-entry #benefits-section ul li {
          width: calc(50% - 0.25rem); } }
      #store-entry #benefits-section ul li img {
        border: 1px solid #86868b;
        border-radius: 1rem; }
#store-entry #concern-section {
  background: #fffae5; }
  #store-entry #concern-section .text-wrap {
    background: #fff;
    border: 1px solid #86868b;
    border-radius: 1rem;
    padding: 2rem 4rem; }
    @media (max-width: 767px) {
      #store-entry #concern-section .text-wrap {
        padding: 2rem 1rem; } }
  #store-entry #concern-section img {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 900px; }
#store-entry #flow-section {
  background: #e5f6f0; }
  #store-entry #flow-section ul {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; }
    #store-entry #flow-section ul li {
      position: relative;
      background: #fff;
      border: 1px solid #86868b;
      border-radius: 1rem;
      padding: 2rem 5rem;
      margin-bottom: 1rem;
      display: flex;
      justify-content: center;
      flex-direction: column; }
      #store-entry #flow-section ul li:last-child {
        margin-bottom: 0; }
      @media (max-width: 767px) {
        #store-entry #flow-section ul li {
          padding: 1rem; } }
    #store-entry #flow-section ul li + li {
      margin-top: 3rem; }
    #store-entry #flow-section ul li + li::before {
      content: "";
      position: absolute;
      top: -2rem;
      left: 50%;
      transform: translateX(-50%);
      /* ▼ 横長の下向き三角 */
      width: 0;
      height: 0;
      border-left: 30px solid transparent;
      border-right: 30px solid transparent;
      border-top: 20px solid #00a66d; }
#store-entry #closing-section {
  background: url("../images/closing-bg.png") no-repeat center/cover;
  padding: 4rem 0;
  /* 女性キャラ */ }
  @media (max-width: 1024px) {
    #store-entry #closing-section {
      padding: 4rem 0 18rem; } }
  @media (max-width: 767px) {
    #store-entry #closing-section {
      padding: 4rem 0 18rem; } }
  #store-entry #closing-section .inner {
    max-width: 1100px;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 4rem 250px 5rem 3rem;
    overflow: visible;
    /* ← これ重要 */ }
    @media (max-width: 1024px) {
      #store-entry #closing-section .inner {
        padding: 4rem 1rem; } }
  #store-entry #closing-section .inner::before {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -4rem;
    width: 442px;
    /* キャラの実サイズに合わせる */
    height: 421px;
    background: url("../images/store-entry/closing-woman2.png") no-repeat center/contain;
    z-index: 1; }
    @media (max-width: 1024px) {
      #store-entry #closing-section .inner::before {
        width: 332px;
        height: 316px;
        bottom: -18rem; } }
    @media (max-width: 767px) {
      #store-entry #closing-section .inner::before {
        width: 255px;
        height: 243px;
        right: 12%; } }
  #store-entry #closing-section img {
    margin-bottom: 3rem; }
  #store-entry #closing-section p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600; }
    @media (max-width: 767px) {
      #store-entry #closing-section p {
        font-size: 1.6rem; } }
  #store-entry #closing-section .cta {
    text-align: center;
    margin-bottom: 2rem; }
    #store-entry #closing-section .cta:last-child {
      margin-bottom: 0; }
    #store-entry #closing-section .cta a {
      display: inline-block;
      padding: 1rem 6rem;
      background: linear-gradient(180deg, #ff9f1c 0%, #ff7a00 100%);
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      border-radius: 999px;
      /* 立体感 */
      box-shadow: 0 6px 0 #e06600, 0 10px 20px rgba(0, 0, 0, 0.25);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
      @media (max-width: 767px) {
        #store-entry #closing-section .cta a {
          padding: 1rem 2rem; } }
    #store-entry #closing-section .cta a:hover {
      background: linear-gradient(180deg, #ffb347 0%, #ff8c1a 100%);
      transform: translateY(3px);
      box-shadow: 0 3px 0 #e06600, 0 6px 12px rgba(0, 0, 0, 0.25); }
    #store-entry #closing-section .cta a:active {
      transform: translateY(6px);
      box-shadow: 0 0 0 #e06600, 0 2px 6px rgba(0, 0, 0, 0.2); }
#store-entry footer .btn {
  display: inline-block;
  padding: 0.5rem 3rem;
  background: #ff0030;
  color: #fff;
  border-radius: 999px;
  font-size: 1.2rem;
  margin-bottom: 2rem; }

/* #store-entry */
#legal-section {
  background: #f2f2f2; }
  #legal-section .inner {
    width: 95%;
    max-width: 900px;
    margin: auto; }
    #legal-section .inner .legal-content {
      background: #fff;
      padding: 3rem;
      margin-bottom: 2rem;
      border-radius: 1rem; }
    #legal-section .inner h2 {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 2rem; }
    #legal-section .inner p {
      text-align: left;
      line-height: 1.8em; }
      #legal-section .inner p strong {
        font-weight: 600; }
    #legal-section .inner .legal-close {
      border: 1px solid #86868b;
      background: #1d1d20;
      color: #fff;
      border-radius: 999px;
      padding: 0.5rem 1rem; }

#stores #archive-stores {
  background: #f2f2f2; }
  #stores #archive-stores h2 {
    font-weight: 600;
    margin-bottom: 5rem; }
  #stores #archive-stores h3 {
    font-size: 2rem;
    font-weight: 600; }
    #stores #archive-stores h3 span {
      font-size: 3em;
      font-weight: 800;
      color: #00a66d; }
  #stores #archive-stores h4 {
    font-weight: 600;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #86868b; }
#stores .shop-area-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem; }
  #stores .shop-area-tabs .area-tab {
    background: #ff004a;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    opacity: 0.3; }
  #stores .shop-area-tabs .is-active {
    opacity: 1;
    font-weight: 600;
    color: #ffce00; }
#stores .shop-genre-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem; }
  #stores .shop-genre-tabs .genre-tab {
    background: #004aff;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    opacity: 0.3; }
  #stores .shop-genre-tabs .is-active {
    opacity: 1;
    font-weight: 600;
    color: #ffce00; }
#stores .shop-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; }
  @media (max-width: 767px) {
    #stores .shop-items {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem; } }
  #stores .shop-items .shop-item {
    border: 1px solid #86868b;
    background: #fff;
    text-align: left;
    padding: 1rem;
    border-radius: 1rem; }
    @media (max-width: 767px) {
      #stores .shop-items .shop-item {
        padding: 0.5rem; } }
    #stores .shop-items .shop-item .btn-black {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center; }
    #stores .shop-items .shop-item h5 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.2em; }
    #stores .shop-items .shop-item p {
      font-size: 0.8rem;
      margin-bottom: 0; }
    #stores .shop-items .shop-item .shop-tel {
      margin-bottom: 0.5rem; }
    #stores .shop-items .shop-item .shop-url {
      background: #00a66d;
      color: #fff;
      padding: 0.3rem 1rem;
      border-radius: 999px;
      margin-bottom: 0; }
    #stores .shop-items .shop-item .shop-map {
      background: #ffce00;
      padding: 0.3em 1em;
      border-radius: 999px;
      margin-bottom: 0; }

/* #stores  */
#form-section {
  background: #f2f2f2;
  /* ==========================
     CF7 加盟店登録フォーム
  ========================== */ }
  #form-section .wpcf7-form {
    /* テキスト系入力 */
    /* ==========================
       利用規約・プラポリ同意
    ========================== */
    /* acceptance用 labelだけ例外処理 */
    /* ==========================
       送信ボタン
    ========================== */ }
    #form-section .wpcf7-form p {
      margin-bottom: 24px; }
    #form-section .wpcf7-form label {
      display: block;
      font-weight: 600;
      text-align: left;
      margin-bottom: 6px; }
    #form-section .wpcf7-form input[type="text"],
    #form-section .wpcf7-form input[type="email"],
    #form-section .wpcf7-form input[type="tel"],
    #form-section .wpcf7-form input[type="url"] {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
      transition: border-color 0.2s ease;
      background: #fff; }
      #form-section .wpcf7-form input[type="text"]:focus,
      #form-section .wpcf7-form input[type="email"]:focus,
      #form-section .wpcf7-form input[type="tel"]:focus,
      #form-section .wpcf7-form input[type="url"]:focus {
        outline: none;
        border-color: #000; }
    #form-section .wpcf7-form .wpcf7-acceptance {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px; }
      #form-section .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-top: 5px; }
      #form-section .wpcf7-form .wpcf7-acceptance a {
        color: #000;
        text-decoration: underline; }
        #form-section .wpcf7-form .wpcf7-acceptance a:hover {
          opacity: 0.7; }
    #form-section .wpcf7-form p:has(.wpcf7-acceptance) label {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      text-align: right;
      margin-bottom: 0; }
    #form-section .wpcf7-form input[type="submit"] {
      width: 100%;
      max-width: 360px;
      margin: 40px auto 0;
      display: block;
      padding: 14px;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      background: #000;
      border: none;
      border-radius: 30px;
      cursor: pointer; }
      #form-section .wpcf7-form input[type="submit"]:hover {
        opacity: 0.85; }

.thanks {
  padding: 80px 20px;
  background: #f9fafb; }

.thanks__inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px; }

.thanks__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px; }

.thanks__lead,
.thanks__text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px; }

.thanks__section {
  margin-top: 50px; }

.thanks__section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-left: 4px solid #4caf50;
  padding-left: 12px; }

.thanks__flow {
  list-style: none;
  padding: 0; }

.thanks__flow li {
  margin-bottom: 20px; }

.thanks__flow span {
  font-weight: bold;
  display: block;
  margin-bottom: 5px; }

.thanks__box {
  background: #f3f7f5;
  padding: 30px;
  border-radius: 8px; }

.thanks__box ul {
  list-style: none;
  padding: 0; }

.thanks__box li {
  margin-bottom: 8px; }

.thanks__important {
  background: #fff7f0;
  padding: 30px;
  border-radius: 8px; }

.thanks__faq dt {
  font-weight: bold;
  margin-top: 15px; }

.thanks__faq dd {
  margin-left: 0;
  margin-top: 5px; }

.thanks__closing {
  text-align: center;
  margin-top: 60px; }

.thanks__closing-copy {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px; }

.thanks__cta {
  margin-top: 50px;
  text-align: center; }

.thanks__cta .btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold; }

.btn--primary {
  background: #4caf50;
  color: #fff; }

.btn--sub {
  border: 2px solid #4caf50;
  color: #4caf50; }
