@charset "UTF-8";
/**
 * FilePath: wp-content/themes/arkhe-child/assets/scss/style.scss
 * Purpose: サイト全体のメインスタイル定義。
 * Function: 
 * - 変数の読み込みとベーススタイルの定義。
 * - コンポーネント（ボタン、カード、LINEフロー等）のレイアウト実装。
 * - テンプレート固有（TOP、店舗詳細、採用詳細）のスタイル実装。
 */
/* ==========================================================================
   Base
   ========================================================================== */
body {
  color: #333333;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

.l-main {
  padding-bottom: 60px;
}

.l-content__body {
  margin: 3rem auto;
  padding: 0 20px;
  max-width: 1200px;
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-small {
  font-size: 0.6em;
  display: block;
}

/* ==========================================================================
   Components
   ========================================================================== */
.c-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2d8c3c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}
.c-btn:hover {
  opacity: 0.8;
  color: #ffffff;
}
.c-btn--line {
  background: #06c755;
}
.c-btn--sub {
  background: #666;
}
.c-btn--primary {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.c-btn--small {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.c-service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.c-service-card__icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}
.c-service-card__title {
  font-size: 1.25rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
}
.c-service-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.c-shop-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 0;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.c-shop-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.c-shop-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f4f7f4;
  overflow: hidden;
}
.c-shop-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@supports not (aspect-ratio: 16/9) {
  .c-shop-card__img {
    height: 200px;
  }
}
.c-shop-card__body {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-shop-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.c-shop-card__type {
  font-size: 0.75rem;
  background: #666;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
}
.c-shop-card__badge {
  font-size: 0.75rem;
  color: #2d8c3c;
  font-weight: bold;
  border: 1px solid #2d8c3c;
  padding: 1px 6px;
  border-radius: 3px;
}
.c-shop-card__name {
  font-size: 1.2rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
}
.c-shop-card__info {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #444;
}
.c-shop-card__info p {
  margin-bottom: 4px;
  position: relative;
  padding-left: 0;
}
.c-shop-card__status {
  margin-bottom: 15px;
}
.c-shop-card__status .is-open {
  font-size: 0.8rem;
  color: #2d8c3c;
  font-weight: bold;
}
.c-shop-card__status .is-open::before {
  content: "●";
  margin-right: 4px;
}
.c-shop-card__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  border-top: 1px solid #f4f7f4;
  padding-top: 15px;
}
.c-shop-card__footer .c-btn {
  padding: 6px 4px;
}

.c-line-flow {
  background: #f4f7f4;
  padding: 80px 0;
  margin: 40px 0;
}
.c-line-flow__title {
  text-align: center;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
}
.c-line-flow__lead {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.c-line-flow__steps {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .c-line-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.c-line-flow__step {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-line-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #06c755;
    border-right: 3px solid #06c755;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    z-index: 2;
  }
}
.c-line-flow__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background: #06c755;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
          box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  line-height: 1.2;
  padding-top: 2px;
}
.c-line-flow__step-title {
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #2d8c3c;
}
.c-line-flow__step-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  text-align: left;
  width: 100%;
}
.c-line-flow__benefit-wrap {
  margin-top: 60px;
  padding: 0 20px;
}
.c-line-flow__benefit-title {
  text-align: center;
  font-size: 1.5rem;
  color: #2d8c3c;
  margin-bottom: 35px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-line-flow__benefit-title::before, .c-line-flow__benefit-title::after {
  content: "";
  height: 2px;
  background: #06c755;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 60px;
  margin: 0 15px;
}
.c-line-flow__benefits {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-line-flow__benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-line-flow__benefit-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #06c755;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.c-line-flow__benefit-item dt {
  font-weight: bold;
  color: #06c755;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-line-flow__benefit-item dt::before {
  content: "✔";
  margin-right: 8px;
  font-size: 1.3rem;
}
.c-line-flow__benefit-item dd {
  margin: 0;
  font-size: 0.95rem;
  color: #333333;
  font-weight: bold;
  line-height: 1.6;
}
.c-line-flow__notes {
  margin: 60px auto 0;
  max-width: 850px;
  padding: 35px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  text-align: left;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}
.c-line-flow__notes h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: #e54d42;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-line-flow__notes h3::before {
  content: "⚠️";
  margin-right: 12px;
}
.c-line-flow__notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-line-flow__notes ul li {
  font-size: 0.95rem;
  color: #555;
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: 12px;
  line-height: 1.7;
}
.c-line-flow__notes ul li::before {
  content: "•";
  color: #ccc;
  margin-right: 0.8em;
  font-weight: bold;
}
.c-line-flow__notes ul li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Layouts
   ========================================================================== */
.l-header {
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
}
.l-header .c-gnav__item > a {
  color: #333333;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-header .c-gnav__item > a:hover {
  color: #2d8c3c;
}
.l-header .current-menu-item > a {
  color: #2d8c3c;
  position: relative;
}
.l-header .current-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2d8c3c;
}
.l-header .c-gnav .c-btn--primary {
  background: transparent;
  padding: 0;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header .c-gnav .c-btn--primary > a {
  background: #2d8c3c;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  height: auto;
  margin: auto 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header .c-gnav .c-btn--primary > a:hover {
  opacity: 0.8;
}
.l-header .c-gnav .c-btn--primary > a::after {
  display: none !important;
}

/* ==========================================================================
   Pages
   ========================================================================== */
.p-fv {
  position: relative;
  width: 100%;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.p-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p-fv__bg .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-animation: fv-slider 20s infinite;
          animation: fv-slider 20s infinite;
}
.p-fv__bg .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-fv__bg .slide:nth-child(1) {
  background-image: url("./scss/images/top01.png");
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-fv__bg .slide:nth-child(2) {
  background-image: url("./scss/images/top02.png");
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.p-fv__bg .slide:nth-child(3) {
  background-image: url("./scss/images/top03.png");
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.p-fv__bg .slide:nth-child(4) {
  background-image: url("./scss/images/top04.png");
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.p-fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.p-fv__copy {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .p-fv__copy {
    font-size: 3rem;
  }
}

@-webkit-keyframes fv-slider {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
  }
}

@keyframes fv-slider {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
  }
}
.p-home-services {
  padding: 80px 0;
  background-color: #fff;
}
.p-home-services__title {
  text-align: center;
  font-size: 2rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
}
.p-home-services__lead {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
}
.p-home-services__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-home-shops {
  padding: 80px 0;
  background-color: #f4f7f4;
}
.p-home-shops__title {
  text-align: center;
  font-size: 2rem;
  color: #2d8c3c;
  margin-bottom: 50px;
  font-weight: bold;
}
.p-home-shops__list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-home-shops__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-home-shops__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-home-shops__more {
  text-align: center;
  margin-top: 50px;
}
.p-home-shops__more .c-btn {
  min-width: 240px;
}

.p-home-visit {
  padding: 80px 0;
  background-color: #ffffff;
}
.p-home-visit__header {
  margin-bottom: 40px;
  text-align: left;
}
.p-home-visit__title {
  font-size: 1.8rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
}
.p-home-visit__title span {
  font-size: 1.1rem;
  display: block;
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .p-home-visit__title {
    font-size: 2.2rem;
  }
}
.p-home-visit__lead {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
}
.p-home-visit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-home-visit__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.p-home-visit__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home-visit__img img {
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-visit__features {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  gap: 20px;
}
.p-home-visit__feature-card {
  background-color: #f9fbf9;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #2d8c3c;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.p-home-visit__feature-card dt {
  font-weight: bold;
  color: #2d8c3c;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.p-home-visit__feature-card dd {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.p-home-visit__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-home-visit__usage {
  padding: 25px;
  border: 1px dashed #2d8c3c;
  background-color: rgba(45, 140, 60, 0.02);
  border-radius: 12px;
}
.p-home-visit__usage h3 {
  font-size: 1.1rem;
  color: #2d8c3c;
  margin-bottom: 12px;
  font-weight: bold;
}
.p-home-visit__usage h3::before {
  content: "ご利用について";
}
.p-home-visit__usage p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.p-home-visit__action .c-btn {
  max-width: none;
  width: 100%;
  padding: 18px 0;
  font-size: 1.2rem;
  border-radius: 6px;
}

.c-shop-info {
  margin-top: 40px;
}
.c-shop-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.c-shop-info__table th, .c-shop-info__table td {
  padding: 15px;
  border: 1px solid #dddddd;
}
.c-shop-info__table th {
  background: #f4f7f4;
  width: 30%;
  text-align: left;
}
.c-shop-info__map {
  margin-bottom: 40px;
}
.c-shop-info__map iframe {
  border-radius: 12px;
}

.c-recruit-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.c-recruit-info__table th, .c-recruit-info__table td {
  padding: 15px;
  border: 1px solid #dddddd;
}
.c-recruit-info__table th {
  background: #f0f7f3;
  width: 30%;
}