@charset "utf-8";

/*
Theme Name: Harapecolabo
Author: Xsite
Description: original theme
Version： 1.0.0
*/

/*cssのリセット*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;/*フォントの指定*/
  line-height: 1.4;/*行間の指定*/
  margin: 0;
  padding: 0;
  color: #333;/*サイトのデフォルトとなる文字の色を指定*/
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

/* 軽いフェードインアニメーション */
.js-animate .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-animate .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-animate .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* レイアウト共通 */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.site-header__inner {
  position: relative;
}

.site-header__image {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__menu {
  position: fixed;
  top: 20px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #f28c28;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1000;
}

.site-header__menu .material-symbols-outlined {
  font-size: 26px;
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr min(320px, 80vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-drawer__backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.site-drawer__panel {
  background: #fff;
  padding: 72px 24px 32px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.15);
  display: grid;
  gap: 24px;
  align-content: start;
}

.site-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f28c28;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.site-drawer__list a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.is-menu-open .site-drawer {
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .site-drawer__panel {
  transform: translateX(0);
}

.is-menu-open {
  overflow: hidden;
}

/* フッター */
.site-footer {
  /* background: #f2f2f2; */
  color: #333;
}

.site-footer__top {
  margin-top: -400px;
}

.site-footer__nav-bg {
  background: url("./assets/images/footer-green-bg.png") no-repeat center top;
  background-size: cover;
  padding: 17% 0 5%;
  width: 100%;
  position: relative;
  z-index: 0;
}

.site-footer--sub .site-footer__nav-bg {
  background-image: url("./assets/images/footer-orange-bg.png");
}

.site-footer__wave-bg {
  /* background: url("./assets/images/footer-cloud.png") no-repeat center top; */
  background: url("./assets/images/footer-cloud.png") center top;
  background-size: cover;
  /* padding: 100px 0 50px; */
  padding: 1% 0 0.1%;
  margin-top: -75px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.site-footer__nav-inner {
  padding-bottom: 40px;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.site-footer__title,
.site-footer__list a {
  display: inline-block;
  /* padding: 4px 12px; */
  /* border-radius: 999px; */
  /* background: #f3c6cc; */
  color: #ffffff;
  /* font-size: 12px; */
  /* font-weight: 500; */
  text-decoration: none;
}

.site-footer__title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}

.site-footer__list {
  font-size: 12px;
  list-style: none;
  display: grid;
  gap: 6px;
}

.site-footer__wave-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 40px 0 30px;
}

.site-footer__logo img {
  display: block;
  width: 210px;
}

.site-footer__info {
  font-size: 13px;
  line-height: 1.7;
  color: #6b4b4f;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.site-footer__sns {
  display: flex;
  gap: 10px;
}

.site-footer__sns-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.site-footer__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__policy {
  font-size: 12px;
  color: #6b4b4f;
}

.site-footer__policy a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #f3c6cc;
}

.site-footer__policy-sep {
  margin: 0 8px;
  color: #6b4b4f;
}

.site-footer__bottom {
  /* background: #f2f2f2; */
  text-align: center;
  padding: 16px 20px 24px;
}

.site-footer__copyright {
  font-size: 11px;
  color: #6b4b4f;
}

@media (max-width: 900px) {
  .site-footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__wave-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin: 0;
  }

  .site-footer__links {
    justify-items: center;
  }

  .site-footer__logo img {
    width: 90px;
  }

  .site-footer__wave-bg {
    padding: 0;
  }

  .site-footer__nav-bg {
    padding: 17% 0 10%;
  }
}

@media (max-width: 600px) {
  .site-header__menu {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .site-footer__top {
    padding: 180px 0 0;
  }
}

/* トップページ */
.home {
  background: #fff;
}

.home-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.home-intro {
  background: url("./assets/images/kv-over.png") no-repeat center top;
  background-size: cover;
  padding: 100px 0 230px;
  margin-top: -260px;
  position: relative;
  z-index: 1;
}

.home-intro__inner {
  text-align: center;
  margin-top: 270px;
}

.home-intro__label {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.home-intro__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.home-support {
  background: #2f86d6;
  color: #fff;
  text-align: center;
  /* padding: 70px 0 100px; */
  height: 300px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.home-service-wave {
  height: 170px;
  margin-top: -200px;
  /* margin-bottom: -70px; */
  background: url("./assets/images/gray-top.png") no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 3;
}

.home-service {
  position: relative;
  background: #efefef;
  padding: 100px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.home-service-alt {
  background: #fff;
  padding: 40px 0 80px;
}

.home-service-under {
  height: 150px;
  /* margin-top: -80px; */
  background: url("./assets/images/gray-under.png") no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.home-service__inner {
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.home-service__block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
}

.home-service__block.is-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.home-service__content {
  display: grid;
  gap: 12px;
}

.home-service__title {
  font-size: 20px;
}

.home-service__desc {
  font-size: 14px;
  line-height: 1.8;
}

.home-service__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-service__image.is-photo {
  background: #d9d9d9;
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #666;
}

.home-events {
  background: url("./assets/images/event-top-logo.png") no-repeat center top;
  background-size: cover;
  padding: 12% 0;
  /* background-color: #d0ecf2; */
}

.home-events__title {
  text-align: center;
  font-size: 24px;
}

.home-events__subtitle {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #4c6f76;
}

.home-events__swiper {
  margin: 32px 0;
}

.home-events__list {
  display: flex;
  gap: 0;
}

.home-events__card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.home-events__thumb {
  background: #d9d9d9;
  border-radius: 12px;
  height: 140px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  color: #666;
  overflow: hidden;
}

.home-events__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.home-events__empty {
  background: #fff;
  border-radius: 20px;
  padding: 32px 16px;
  text-align: center;
  color: #4c6f76;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-events__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.home-events__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #c9dfe3;
}

.home-events__pagination .swiper-pagination-bullet-active {
  background: #4c6f76;
}

.home-events__more {
  text-align: center;
}

.home-news {
  background: url("./assets/images/news-bg.png") no-repeat center top;
  background-size: cover;
  padding: 17% 0;
  background-color: #d0ecf2;
}

.home-news__cloud {
  padding: 80px 0;
}

.home-news__title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.home-news__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.home-news__tab {
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #666;
  font-weight: 600;
}

.home-news__tab.is-active {
  background: #f28c28;
  color: #fff;
}

.home-news__list {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 14px;
}

.home-news__list li {
  background: #e7f6fb;
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.home-news__more {
  text-align: center;
}

.home-brand {
  background: url("./assets/images/event-under-logo.png") no-repeat center;
  background-size: cover;
  padding: 10% 0;
  text-align: center;
}

.home-brand__text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-contact {
  /* background-color: #0f0f0f; */
  background-image: url("./assets/images/contact-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 15% 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 400px;
}

.home-contact::before {
  content: none;
}

.home-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.home-contact__title {
  grid-column: 1 / -1;
  text-align: center;
  /* color: #f28c28; */
  font-size: 20px;
  margin-bottom: 8px;
}

/* 会社概要 */
.company {
  background: #f2a06f;
  color: #fff;
}

.company-hero {
  padding: 300px 0 500px;
  background: #f27f3d;
}

.company-hero__inner {
  max-width: 860px;
}

.company-hero__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  color: #fff;
}

.company-table {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.company-table__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.company-table__head {
  background: rgba(243, 140, 40, 0.85);
  text-align: center;
  padding: 16px 12px;
  font-weight: 700;
}

.company-table__body {
  padding: 16px 24px;
  text-align: center;
  color: #fff;
}

/* ニュース一覧 */
.news {
  background: #f27f3d;
}

.news-hero {
  padding: 300px 0 500px;
  background: #f27f3d;
}

.news-hero__inner {
  max-width: 760px;
}

.news-hero__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  color: #fff;
}

.news-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 auto 28px;
}

.news-list__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.news-list__item a:hover {
  background: #f6f6f6;
}

.news-list__date {
  font-size: 14px;
  color: #4c6f76;
  flex: 0 0 auto;
}

.news-list__title {
  font-size: 15px;
  color: #333;
}

.news-pagination {
  display: flex;
  justify-content: center;
}

.news-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.news-pagination .page-numbers li a,
.news-pagination .page-numbers li span {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #4c6f76;
  font-weight: 600;
  text-decoration: none;
}

.news-pagination .page-numbers li .current {
  background: #f28c28;
  color: #fff;
}

.news-empty {
  text-align: center;
  color: #fff;
}

/* イベント一覧 */
.events {
  background: #d0ecf2;
}

.events-hero {
  padding: 300px 0 500px;
  background: #d0ecf2;
}

.events-hero__inner {
  max-width: 860px;
}

.events-hero__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.events-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0 auto 28px;
}

.events-list__item a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
}

.events-list__item a:hover {
  background: #f8fbfd;
}

.events-list__thumb {
  background: #d9d9d9;
  border-radius: 14px;
  height: 120px;
  display: grid;
  place-items: center;
  color: #666;
  font-weight: 700;
  overflow: hidden;
}

.events-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events-list__title {
  font-size: 16px;
  margin-bottom: 6px;
}

.events-list__date {
  font-size: 13px;
  color: #4c6f76;
}

.events-pagination {
  display: flex;
  justify-content: center;
}

.events-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.events-pagination .page-numbers li a,
.events-pagination .page-numbers li span {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #4c6f76;
  font-weight: 600;
  text-decoration: none;
}

.events-pagination .page-numbers li .current {
  background: #f28c28;
  color: #fff;
}

.events-empty {
  text-align: center;
  color: #4c6f76;
}

/* 移動販売車登録 */
.register {
  background: #f27f3d;
  color: #fff;
}

.register-hero {
  padding: 300px 0 500px;
  background: #f27f3d;
  position: static;
}

.register-hero__inner {
  max-width: 100%;
}

.register-hero__inner.container {
  max-width: 100%;
  padding: 0;
}

.register-hero__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: #fff;
}

.register-card {
  max-width: 100%;
  margin: 0;
  position: relative;
}

.register-card__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.register-card__bg-sp {
  display: none;
}

.register-card__bg-sp img {
  display: block;
  width: 100%;
  height: auto;
}

.register-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 90px 100px;
  text-align: center;
  color: #333;
}

.register-card__lead {
  font-weight: 700;
  margin-bottom: 24px;
}

.register-card__values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 700;
}

.register-card__values span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
}

.register-card__values span:nth-child(1) {
  background: #1ea4a5;
}

.register-card__values span:nth-child(3) {
  background: #f2b233;
}

.register-card__values span:nth-child(5) {
  background: #2e8fd1;
}

.register-card__values span:nth-child(2),
.register-card__values span:nth-child(4) {
  width: auto;
  height: auto;
  color: #666;
  font-size: 24px;
}

.register-card__text {
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.register-dots {
  display: grid;
  grid-template-columns: repeat(3, 14px);
  gap: 18px;
  justify-content: center;
  margin: 28px 0;
}

.register-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
}

.register-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  color: #333;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  max-width: 820px;
  margin: 0 auto;
  margin-top: 15px;
}

.register-form__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border: 1px solid #b8d6de;
  /* border-bottom: none; */
}

.register-form__row:last-of-type {
  border-bottom: 1px solid #b8d6de;
}

.register-form__row label {
  background: #dff2f6;
  padding: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}

.register-form__row input,
.register-form__row textarea {
  border: none;
  padding: 12px;
  font-size: 13px;
  width: 100%;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}

.register-form__row textarea {
  min-height: 110px;
  resize: vertical;
}

.register-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.register-form__actions button {
  background: #f28c28;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
}

.register-form__actions .wpcf7-submit {
  background: #f28c28;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  display: block;
  margin: 0 auto;
}

/* 屋台・移動販売車を呼ぶ */
.call {
  background: #4f9da6;
  color: #fff;
}

.call-hero {
  padding: 20% 0 500px;
  background: #4f9da6;
}

.call-hero__inner {
  max-width: 100%;
}

.call-hero__inner.container {
  max-width: 100%;
  padding: 0;
}

.call-hero__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: #fff;
}

.call-card {
  max-width: 100%;
  margin: 0;
  position: relative;
}

.call-card__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.call-card__bg-sp {
  display: none;
}

.call-card__bg-sp img {
  display: block;
  width: 100%;
  height: auto;
}

.call-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 90px 100px;
  text-align: center;
  color: #333;
}

.call-card__lead {
  font-weight: 700;
  margin-bottom: 24px;
}

.call-card__values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 700;
}

.call-card__values span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
}

.call-card__values span:nth-child(1) {
  background: #1ea4a5;
}

.call-card__values span:nth-child(3) {
  background: #f2b233;
}

.call-card__values span:nth-child(5) {
  background: #2e8fd1;
}

.call-card__values span:nth-child(2),
.call-card__values span:nth-child(4) {
  width: auto;
  height: auto;
  color: #666;
  font-size: 24px;
}

.call-card__text {
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.call-dots {
  display: grid;
  grid-template-columns: repeat(3, 14px);
  gap: 18px;
  justify-content: center;
  margin: 28px 0;
}

.call-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
}

.call-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  color: #333;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  max-width: 820px;
  margin: 0 auto;
  margin-top: 15px;
}

.call-form__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border: 1px solid #b8d6de;
}

.call-form__row + .call-form__row {
  border-top: none;
}

.call-form__row label {
  background: #dff2f6;
  padding: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}

.call-form__row input,
.call-form__row textarea {
  border: none;
  padding: 12px;
  font-size: 13px;
  width: 100%;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}

.call-form__row textarea {
  min-height: 110px;
  resize: vertical;
}

.call-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.call-form__actions button {
  background: #f28c28;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
}

.call-form__actions .wpcf7-submit {
  background: #f28c28;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  display: block;
  margin: 0 auto;
}

.call-form__actions .wpcf7-spinner,
.register-form__actions .wpcf7-spinner {
  margin: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* 登録店舗一覧 */
.shop-list {
  background: #4f9da6;
  color: #fff;
}

.shop-list__hero {
  padding: 280px 0 500px;
  background: #4f9da6;
}

.shop-list__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  color: #fff;
}

.shop-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop-card {
  background: #fff;
  color: #333;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.shop-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.shop-card__body h2 {
  font-size: 14px;
  margin-bottom: 6px;
}

.shop-card__body p {
  font-size: 11px;
  line-height: 1.5;
  color: #666;
}

.shop-list__more {
  margin-top: 32px;
  text-align: center;
}

/* 出店プランのご案内 */
.plan {
  background: #fff;
  color: #333;
}

.plan-hero {
  position: relative;
  min-height: 520px;
  background: url("./assets/images/kv-shop.png") no-repeat center/cover;
  padding: 220px 0 120px;
  text-align: center;
}

.plan-hero__bg {
  position: absolute;
  inset: 0;
  background: url("./assets/images/kv-shop.png") no-repeat center/cover;
  z-index: 0;
}

.plan-hero__over {
  position: absolute;
  right: 4%;
  /* bottom: -10px; */
  width: 100%;
  max-width: 92%;
  height: auto;
  z-index: 3;
}

.plan-hero__title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.plan-wave {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.plan-wave--white-top {
  background-image: url("./assets/images/shop-white-top-bg.png");
  margin-top: -180px;
}

.plan-wave--gray-top {
  background-image: url("./assets/images/shop-gray-top-bg.png");
}

.plan-wave--gray-under {
  background-image: url("./assets/images/shop-white-top-bg.png");
  background-color: #efefef;
  margin-top: -1px;
}

.plan-block {
  padding: 60px 0;
}

.plan-block--standard {
  background: #efefef;
}

.plan-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.plan-block__inner.is-reverse {
  grid-template-columns: 1fr 1fr;
}

.plan-block__content {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.plan-block__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.plan-block__desc {
  font-size: 13px;
  line-height: 1.9;
}

.plan-block__flower {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -40%);
}

.plan-block__flower--orange {
  background-image: url("./assets/images/flower-orange.png");
}

.plan-block__flower--blue {
  background-image: url("./assets/images/flower-blue.png");
}

.plan-table {
  border: 1px solid #b8d6de;
}

.plan-table__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #b8d6de;
}

.plan-table__row:last-of-type {
  border-bottom: none;
}

.plan-table__head {
  background: #dff2f6;
  padding: 12px;
  font-size: 12px;
  text-align: center;
}

.plan-table__body {
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.7;
}

.plan-cancel {
  padding: 40px 20px 20px;
  display: flex;
  justify-content: center;
}

.plan-cancel__inner {
  background: #dff2f6;
  border-radius: 999px;
  padding: 20px 150px;
  text-align: center;
  max-width: 820px;
}

.plan-cancel__inner h3 {
  font-size: 13px;
  margin-bottom: 6px;
}

.plan-cancel__inner p {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.plan-cancel__list {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 11px;
}

.plan-cancel__list span {
  background: #fff;
  border-radius: 999px;
  padding: 20px 14px;
}

.plan-cta {
  text-align: center;
  padding: 20px 0 80px;
  margin-bottom: 400px;
}

@media (max-width: 900px) {
  .plan-hero {
    padding: 15% 0 0;
  }

  .plan-hero__title {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
  }

  .plan-hero__over {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 24px auto 0;
    display: block;
  }

  .plan-block__inner,
  .plan-block__inner.is-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .plan-block {
    padding: 0;
  }

  .plan-cta {
    margin-bottom: 50%;
  }

  .plan-cancel {
    padding: 24px 16px 12px;
  }

  .plan-cancel__inner {
    padding: 16px 20px;
    border-radius: 24px;
  }

  .plan-cancel__inner h3 {
    font-size: 12px;
  }

  .plan-cancel__inner p {
    font-size: 11px;
  }

  .plan-cancel__list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .plan-cancel__list span {
    padding: 8px 16px;
  }
}

@media (max-width: 900px) {
  .plan-block--standard .plan-block__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }
}

.shop-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
}

.shop-modal.is-open {
  display: flex;
}

.shop-modal__panel {
  background: #fff;
  width: min(980px, 100%);
  border-radius: 16px;
  padding: 24px 28px 28px;
  position: relative;
}

.shop-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f2f2f2;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

.shop-modal__images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.shop-modal__image {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.shop-modal__text {
  margin-top: 16px;
  color: #333;
  font-size: 13px;
  line-height: 1.8;
}

.shop-modal__title {
  font-size: 16px;
  margin-bottom: 8px;
}

.shop-modal__menu {
  margin-bottom: 6px;
}

@media (max-width: 700px) {
  .shop-modal__images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .shop-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .shop-list__hero {
    padding: 20% 0 350px;
  }

  .shop-list__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .call-hero {
    padding: 20% 0 350px;
  }

  .call-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
  }

  .call-card__bg--main {
    display: none;
  }

  .call-card__bg-sp {
    display: block;
    line-height: 0;
  }

  .call-card__bg-sp--top {
    margin-bottom: -2px;
  }

  .call-card__bg-sp--under {
    margin-top: -2px;
  }

  .call-hero__title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .call-card__content {
    position: static;
    padding: 24px 20px 28px;
    background: #fff;
  }

  .call-card__values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    justify-items: center;
  }

  .call-card__values span {
    width: 84px;
    height: 84px;
    font-size: 13px;
  }

  .call-card__values span:nth-child(1) {
    grid-column: 1 / -1;
  }

  .call-card__values span:nth-child(2),
  .call-card__values span:nth-child(4) {
    display: none;
  }

  .call-card__lead span {
    font-size: 20px !important;
  }

  .call-card__text {
    text-align: left;
    font-size: 12px;
  }

  .call-form {
    background: #dff2f6;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .call-form__row {
    grid-template-columns: 1fr;
    border: none;
    gap: 8px;
    padding: 8px 0;
  }

  .call-form__row label {
    justify-content: flex-start;
    background: transparent;
    padding: 0 4px;
    font-weight: 700;
    color: #2f7d86;
    letter-spacing: 0.05em;
  }

  .call-form__row input,
  .call-form__row textarea {
    border: 1px solid #b8d6de;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
  }

  .call-form__actions {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .register-hero {
    padding: 30% 0 70%;
  }

  .register-hero__title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .register-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
  }

  .register-card__bg--main {
    display: none;
  }

  .register-card__bg-sp {
    display: block;
    line-height: 0;
  }

  .register-card__bg-sp--top {
    margin-bottom: -2px;
  }

  .register-card__bg-sp--under {
    margin-top: -2px;
  }

  .register-card__content {
    position: static;
    padding: 24px 20px 28px;
    background: #fff;
  }

  .register-card__values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    justify-items: center;
  }

  .register-card__values span {
    width: 84px;
    height: 84px;
    font-size: 13px;
  }

  .register-card__values span:nth-child(1) {
    grid-column: 1 / -1;
  }

  .register-card__values span:nth-child(2),
  .register-card__values span:nth-child(4) {
    display: none;
  }

  .register-card__lead span {
    font-size: 20px !important;
  }

  .register-card__text {
    text-align: left;
    font-size: 12px;
  }

  .register-form {
    background: #dff2f6;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .register-form__row {
    grid-template-columns: 1fr;
    border: none;
    gap: 8px;
    padding: 8px 0;
  }

  .register-form__row label {
    justify-content: flex-start;
    background: transparent;
    padding: 0 4px;
    font-weight: 700;
    color: #c96a2e;
    letter-spacing: 0.05em;
  }

  .register-form__row input,
  .register-form__row textarea {
    border: 1px solid #b8d6de;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  }

  .register-form__actions {
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .company-hero {
    padding: 120px 0 350px;
  }

  .company-table__row {
    grid-template-columns: 1fr;
  }

  .company-table__head,
  .company-table__body {
    text-align: left;
  }

  .news-hero {
    padding: 20% 0 350px;
  }

  .news-list__item a {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
  }

  .events-hero {
    padding: 20% 0 350px;
  }

  .events-list__item a {
    grid-template-columns: 1fr;
  }

  .events-list__thumb {
    height: 160px;
  }
}

.home-contact__card {
  background: transparent;
  border-radius: 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  text-align: center;
  color: #fff;
}

.home-contact__image {
  background: #2f2f2f;
  border-radius: 16px;
  height: 150px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #f28c28;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.btn.is-outline {
  background: transparent;
  color: #f28c28;
  border: 2px solid #f28c28;
}

@media (max-width: 900px) {
  .home-service__block,
  .home-service__block.is-reverse {
    grid-template-columns: 1fr;
  }

  .home-service__image.is-photo {
    order: -1;
  }

  .home-service__content {
    order: 1;
  }

  .home-contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-intro {
    background-size: contain;
    background-position: center 40%;
    padding: 60px 0 40px;
  }

  .home-intro__label,
  .home-intro__text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.95),
      0 2px 12px rgba(255, 255, 255, 0.85),
      0 4px 16px rgba(255, 255, 255, 0.65);
  }

  .home-events {
    padding:  145px 0 60px;
  }

  .home-events__swiper {
    padding-right: 16px;
  }

  .home-news__list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-contact {
    margin-bottom: 50%;
  }

  .home-news {
    padding: 0;
  }

  .home-service-alt,
  .home-service {
    padding: 0;
  }

  .home-service__buttons .btn {
    width: 100%;
    text-align: center;
  }

  .home-support {
    height: 180px;
  }
}

@media (min-width: 1200px) {
  .home-news {
    padding: 0;
    background: none;
    background-color: #d0ecf2;
  }

  .home-news__cloud {
    background: url("./assets/images/cloud-04.png") no-repeat center top;
    background-size: 85%;
    padding: 15% 0;
    background-position: center right;
    margin-top: -1px;
  }

  .home-service-under, .home-service-wave {
    height: 290px;
  }

  .home-intro{
    padding: 10% 0 20%;
    margin-top: -20%;
  }
}


