.bg-washi {
  background-image: none;
  background-image: url(../images/lp2025/bgwashi.jpg);
  background-size: 100%;
  background-position: top center;
  background-repeat: repeat-y;
}

.cr-blue,
.introduction-subtitle.cr-blue {
  color: #005184;
}

.c-underline {
  text-decoration-color: #EF8200;
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
}

/* sp */
@media screen and (max-width: 767px) {
  .c-underline {
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
  }
}

/* ==========================================================================
   h-gnav
   ========================================================================== */
.h-gnav {
  gap: 66px;
}

.h-gnav-list-item a {
  color: #005184;
  font-weight: bold;
}

/* メガメニュー項目：テキスト左に下矢印 */
.h-gnav-list-item__link {
  cursor: pointer;
}

.h-gnav-list-item__arrow {
  color: inherit;
}

@media screen and (max-width: 1080px) {
  .h-gnav-list-item__arrow {
    display: none;
  }
}

.h-gnav-list-item__arrow svg {
  transform: translateY(-2px);
  flex-shrink: 0;
}

/* ==========================================================================
   h-megamenu（PC: フルワイドパネル / SP: 常に全項目表示・テキストのみ）
   ========================================================================== */
.h-gnav-list-item--mega {
  position: relative;
}

/* PC: メガメニュー＝ヘッダー直下・ビューポート幅フルパネル */
#header {
  --header-height: 100px;
}

.h-megamenu-panel {
  position: fixed;
  top: var(--header-height, 100px);
  left: 0;
  right: 0;
  width: 100%;
  padding: 24px 40px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 99;
}

/* PC: クリックで開く（.is-open は JS で付与） */
.h-gnav-list-item--mega.is-open .h-megamenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.h-megamenu-panel__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.h-megamenu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 機能紹介メガメニュー：グリッド＋カード */
.h-megamenu__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 40px;
}

/* 機能紹介のみ：4項目のため横1列に固定 */
.h-megamenu-panel--kinou .h-megamenu__list--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .h-megamenu-panel--kinou .h-megamenu__list--grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.h-megamenu__item {
  margin: 0;
}

.h-megamenu__item a {
  display: block;
  padding: 12px 0;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.h-megamenu__item a:hover {
  color: #005184;
  border-bottom-color: #005184;
}

/* カード型項目（機能紹介のみ） */
.h-megamenu__list--grid .h-megamenu__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-align: center;
  white-space: normal;
  border-bottom: none;
}

.h-megamenu__card {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.h-megamenu__card:hover {
  color: #005184;
}

.h-megamenu__card-visual {
  display: block;
  width: 100%;
}

.h-megamenu__card-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 240 / 150;
  object-fit: contain;
}

.h-megamenu__card-visual--placeholder {
  background: #e8e8e8;
}

.h-megamenu__card-label {
  display: block;
}

.h-contact-pc {
  display: flex;
  gap: 24px;
}

.h-contact-pc .btn-contact {
  width: 200px;
  padding: 10px;
}

.btn-side-contact img {
  vertical-align: baseline;
}

/* SP */
@media screen and (max-width: 1080px) {
  .h-gnav {
    gap: 24px;
  }

  .h-gnav-list-item a {
    color: #fff;
  }

  /* SP: メガメニューは最初から全項目表示・テキストのみ */
  .h-gnav-list-item--mega {
    position: static;
  }

  .h-megamenu-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: auto;
    max-width: none;
    padding: 8px 0 8px 16px;
    margin-top: 4px;
    left: auto;
    background: #005184;
    box-shadow: none;
  }

  .h-megamenu__list {
    flex-direction: column;
    gap: 0;
  }

  .h-megamenu__list--grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .h-megamenu__list--grid .h-megamenu__item a {
    flex-direction: row;
    text-align: left;
    padding: 8px 16px;
  }

  .h-megamenu__card-visual {
    display: none;
  }

  .h-megamenu__item a {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-bottom: none;
  }

  .h-megamenu__item a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  .h-contact-pc {
    display: none;
  }

  .h-contact-mb .btn-contact {
    border-radius: 999px;
    background-color: #EF5233;
  }

  .h-contact-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

/* ==========================================================================
   p-promo-banner
   ========================================================================== */
.p-promo-banner {
  background-color: #045285;
  width: 100%;
}

.p-promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 25px;
}

.p-promo-banner__image {
  flex-shrink: 0;
  max-width: 20%;
}

.p-promo-banner__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-promo-banner__text {
  color: #fff;
}

.p-promo-banner__heading {
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.6;
}

.p-promo-banner__emphasis {
  color: #e83828;
  font-weight: 700;
}

/* SP */
@media screen and (max-width: 767px) {
  .p-promo-banner__inner {
    flex-direction: column;
    gap: 20px;
  }

  .p-promo-banner__image {
    max-width: 250px;
  }
}


/* ==========================================================================
   p-interview - ドットナビゲーション
   ========================================================================== */
.interview-container {
  margin-bottom: 0px;
}

#interview .slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

#interview .slick-dots li {
  margin: 0;
}

#interview .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #ccc;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

#interview .slick-dots li.slick-active button {
  background-color: #333;
}


/* ==========================================================================
  p-introduction
========================================================================== */
#introduction {
  overflow: hidden;
  background-color: transparent;
}

#introduction .section-inner {
  padding-top: 0px;
  max-width: 1040px;
  width: 100%;
}

.introduction-imgarea-flex {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.introduction-imgarea-flex figure {
  flex: 1;
}

@media screen and (min-width: 768px) {
  .introduction-imgarea-flex .introduction-imgarea {
    margin-bottom: 0;
  }
}

.introduction-operation-title {
  width: 100%;
  border-radius: 20px;
  margin: 80px 0 40px;
}

.introduction-subtitle {
  color: #000;
}

.introduction-subtitle.--smalltext {
  font-size: 20px;
}

.introduction-point-subtitle {
  font-size: 22px;
  padding: 15px 0;
}

.introduction-point-subtitle.--spaceadjust {
  margin-top: -20px;
  margin-bottom: 20px;
}

.introduction-point-subtitle.--fit {
  width: fit-content;
  padding-inline: 40px;
}

.introduction-imgarea.--narrow img {
  max-width: 900px;
}

/* 動画埋め込み（YouTube等）：16:9レスポンシブ */
.introduction-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 450 / 315;
  overflow: hidden;
  border-radius: 8px;
}

.introduction-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1040px) {
  .introduction-imgarea.--narrow img {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .introduction-imgarea {
    margin-bottom: 40px;
  }

  .introduction-imgarea-flex {
    flex-direction: column;
    gap: 0;
  }

  .introduction-point-title {
    font-size: 24px;
  }

  .introduction-point-title span {
    font-size: 20px;
  }

  .introduction-operation-title {
    margin-top: 40px;
  }

  .introduction-operation-title .text {
    font-size: 5.3vw;
  }

  .introduction-operation-title .text span {
    display: block;
    font-size: 4.8vw;
  }

  .introduction-subtitle {
    font-size: 20px;
  }

  .introduction-point-subtitle {
    padding: 5px 0;
  }

  .introduction-imgarea img {
    max-width: 100%;
  }

  .introduction-imgarea.--narrow img {
    max-width: 100%;
  }

  .introduction-point-subtitle.--spaceadjust {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .introduction-point-title {
    font-size: 6.4vw;
  }
}

.introduction-text:last-child {
  margin-bottom: 0;
}

.introduction-caption {
  font-size: 16px;
  margin-top: 10px;
}

/* ==========================================================================
   p-cta-section
   ========================================================================== */
.p-cta-section {
  background-color: #1f70c5;
  padding: 40px 20px;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#introduction .p-cta-section {
  margin: 40px 0 80px;
  overflow: visible;
  width: 100%;
}

.p-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(94.79deg, #2E9DE3 0%, #005184 100%);
  z-index: -1;
}

.p-cta-section__inner {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.p-cta-section__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}

.p-cta-section__title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.p-cta-section__blocks {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.p-cta-section__block {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 32px 40px;
}

.p-cta-section__text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  height: 62px;
  width: fit-content;
  padding-inline: 35px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 64px;
    background-color: #000;
  }

  &::before {
    left: 0;
    transform: translateY(-50%) rotate(-30deg);
  }

  &::after {
    right: 0;
    transform: translateY(-50%) rotate(30deg);
  }
}

.p-cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 260px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-cta-section__btn:hover {
  opacity: 0.9;
}

.p-cta-section__btn--document {
  background-color: #EF5233;
  color: #fff;
  box-shadow: 0px 4px 0px 0px #EF523340;
}

.p-cta-section__btn--contact {
  background-color: #FAD94D;
  color: #000;
  box-shadow: 0px 4px 0px 0px #D0B02740;
}


/* SP */
@media screen and (max-width: 767px) {
  #introduction .p-cta-section {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .p-cta-section__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .p-cta-section__text {
    font-size: 20px;

    &::before,
    &::after {
      top: 60%;
      height: 50px;
    }
  }

  .p-cta-section__blocks {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .p-cta-section__block {
    width: 100%;
    min-width: 0;
    padding: 20px 24px;
  }

  .p-cta-section__heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .p-cta-section__title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .p-cta-section__text {
    font-size: 5vw;

    &::before,
    &::after {
      height: 10vw;
    }
  }
}


/* ==========================================================================
    #reason - reason-box改修
  ========================================================================== */
#reason {
  background-color: #014A78;
}

#reason .section-title .c-outline {
  color: #014A78;
}

/* reason-container: 上段3・下段2のグリッド */
.reason-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* reason-box: 白背景・角丸 */
.reason-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  position: relative;
  border-radius: 0;
  border-color: #005184;
}

/* 吹き出し数字: オレンジ円バッジ */
.reason-box-num {
  width: 73px;
  height: 70px;
  color: #fff;
  position: absolute;
  top: -55px;
  left: -35px;
}

/* タイトル: 上段小・下段大 */
.reason-box-title {
  margin-bottom: 28px;
}

.reason-box-title__small {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #005184;
}

.reason-box-title__large {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #005184;
  line-height: 1.1;
}

/* 一枚画像 */
.reason-box-image {
  margin: 0;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-box-image img {
  width: 100%;
  max-width: 90%;
  height: auto;
  object-fit: contain;
}


/* SP */
@media screen and (max-width: 767px) {
  .reason-box-num {
    top: -25px;
    left: -12px;
    width: 60px;
    height: 60px;
  }

  .reason-box {
    padding: 30px;
  }

  .reason-box-title {
    margin-bottom: 10px;
  }

  .reason-box-title__small,
  .reason-box-title__large {
    font-size: 28px;
  }

  .reason-box-image img {
    max-width: 100%;
  }
}


/* ==========================================================================
   #usage - 業態別の活用例
   ========================================================================== */
/* タイトルカラー変更（マルーン系） */

#usage .section-title .c-outline {
  color: #fff;
}

#usage {
  padding: 80px 0 100px;
  background-color: #fff;
}

/* カード型スライド */
.usage-container {
  margin-bottom: 0;
}

.slick-track {
  padding-bottom: 5px;
}

.usage-card {
  border: 3px solid #005184;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  padding: 20px 20px 40px;
  margin: 0 15px;
  box-sizing: border-box;
  width: 340px;
  height: auto;
  position: relative;
  box-shadow: 4px 4px 0px 0px #005184;
  transition: opacity 0.3s;
}

.usage-card:hover {
  opacity: 0.7;
}

.usage-card__image {
  position: relative;
  margin: 0;
}

.usage-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.usage-card__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.usage-card__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: 10px 0;
}

.usage-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #005184;
  text-decoration: none;
  transition: opacity 0.3s;
}

.usage-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.usage-card__link:hover {
  opacity: 0.8;
}

.usage-card__link img {
  width: 30px;
  height: 30px;
}

/* ドットナビ（interviewと同じ） */
#usage .slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

#usage .slick-dots li {
  margin: 0;
}

#usage .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #ccc;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

#usage .slick-dots li.slick-active button {
  background-color: #005184;
}

/* SP */
@media screen and (max-width: 767px) {
  #usage {
    padding: 40px 0;
  }

  .usage-card {
    padding: 20px;
    margin: 0 10px;
  }
}

/* ==========================================================================
  #faq - よくあるご質問
  ========================================================================== */
#faq {
  background-color: #EBEFF4;
}

#faq .section-title .c-outline {}

.faq-list-question {
  background-color: #014A78;
}

.faq-list-answer-text::before {
  color: #014A78;
}

.faq-list-answer-text {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

/* SP */
@media screen and (max-width: 767px) {
  .faq-list-answer-text {
    font-size: 14px;
    color: var(--text_main, #666359);
  }
}

/* ==========================================================================
   u__form - お問い合わせフォーム
   ========================================================================== */
#contact {
  background-color: #F7F3F0;
}

.u__form {}

.u__formBtn {
  text-align: center;
  margin-bottom: 0;
}

.u__formBtn button {
  background: #3F1B00;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 5px;
  box-shadow: 0px 4px 0px 0px #3F1B0040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.u__formBtn button::before {
  content: "";
  background: url("../lp-img/common_image/icon_circle-arrow_brawn.svg") no-repeat 50% 50%;
  background-size: 31px;
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.u__formItems {
  display: table;
  width: 100%;
}

.u__formTxt {
  margin: 0 0 35px;
  font-size: 20px;
  font-weight: bold;
}

.u__formTxt a {
  color: #3465E3;
  text-decoration: underline;
}

.u__formTxt * {
  font-size: inherit;
}

.u__formItem {
  display: table-row-group;
}

.u__formItemLabel,
.u__formItemReq,
.u__formItemContent {
  display: table-cell;
  padding-bottom: 40px;
  vertical-align: top;
}

.u__formItemLabel {
  padding-top: 15px;
  font-weight: 600;
  font-size: 20px;
  white-space: nowrap;
  width: 1%;
}

.u__formItemReq {
  padding-top: 8px;
  padding-left: 20px;
  padding-right: 40px;
  white-space: nowrap;
  width: 1%;
}

.u__formItemReq span {
  background: #EF5233;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px;
  display: inline-block;
  padding: 5px 10px;
}

.u__formItemContent input[type=text] {
  border: #332923 3px solid;
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  font-size: 20px;
}

.u__formItemContent textarea {
  border: #332923 3px solid;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  min-height: 270px;
}

.u__formItemContent ul {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.u__formItemContent ul li input {
  display: none;
}

.u__formItemContent ul li input:checked+label::after {
  content: "";
  width: 15px;
  height: 15px;
  background: #332923;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 7.5px;
  left: 7.5px;
}

.u__formItemContent ul li label {
  position: relative;
  padding-left: 40px;
  font-size: 20px;
}

.u__formItemContent ul li label::before {
  content: "";
  border: #332923 3px solid;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

.u__formItemNote {
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .u__form {}

  .u__formBtn {
    text-align: center;
    margin-bottom: 0;
  }

  .u__formBtn button {
    font-size: 20px;
    width: 100%;
    padding: 16px;
  }

  .u__formItems {
    display: block;
  }

  .u__formTxt {
    font-size: 16px;
    margin: 40px auto;
  }

  .u__formTxt * {
    font-size: inherit;
  }

  .u__formItem {
    display: block;
    padding-bottom: 0;
    margin-bottom: 40px;
  }

  .u__formItemLabel {
    padding-top: 10px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 15px;
  }

  .u__formItemReq {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 20px;
    white-space: nowrap;
    width: 1%;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 15px;
  }

  .u__formItemReq span {
    font-size: 12px;
  }

  .u__formItemContent {
    display: block;
    padding-bottom: 0;
  }

  .u__formItemContent input[type=text] {
    border-width: 2px;
  }

  .u__formItemContent textarea {
    border-width: 2px;
  }

  .u__formItemContent ul {
    margin-bottom: 0;
    flex-direction: column;
    gap: 5px;
  }

  .u__formItemContent ul li {
    margin-bottom: 10px;
  }

  .u__formItemContent ul li:last-child {
    margin-bottom: 0;
  }

  .u__formItemContent ul li label {
    font-size: 16px;
    padding-top: 4px;
  }
}

/* SP */
@media screen and (max-width: 480px) {
  .u__formBtn button {
    font-size: 5vw;
  }
}

/* ==========================================================================
   #footer - フッター
   ========================================================================== */
#footer {
  background-color: #014A78;
}

.f-nav-list-item.--bold {
  font-weight: bold;
}

.f-nav-list-item {
  color: #fff;
}

.btn-contact {
  border-radius: 5px;
  background-color: #EF5233;
  box-shadow: 0px 4px 0px 0px #EF523340;
}

.btn-contact.--yellow {
  background-color: #FAD94D;
  color: #000;
  box-shadow: 0px 4px 0px 0px #D0B02740;
}


/* ==========================================================================
   p-yakiniku-benefits - 焼肉屋×ワンレジで得られるメリット
   ========================================================================== */
.c-benefits {
  background-color: #014A78;
  padding: 80px 0 100px;
  margin-bottom: 30px;
}

.c-benefits__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}

.c-benefits__title {
  color: #fff;
  font-size: 48px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;

  &::before {
    content: "MERIT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 96px;
    font-weight: 700;
    color: #EDF1FA;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
  }
}

.c-benefits__title.--wide {
  letter-spacing: -0.05em;
}

.c-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.c-benefits__card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  position: relative;
  border-radius: 0;
  border-color: #005184;
  box-shadow: 16px 16px 0px 0px #FFFFFF33;
}

.c-benefits__num {
  width: 73px;
  height: 70px;
  color: #fff;
  position: absolute;
  top: -35px;
  left: -35px;
}

.c-benefits__card-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  color: #F1711E;
  margin-bottom: 20px;
}


.c-benefits__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
}

.c-benefits__link {
  font-size: 18px;
  font-weight: 700;
  color: #014A78;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.c-benefits__link::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHJ4PSIxMiIgZmlsbD0iIzAxNEE3OCIvPjxwYXRoIGQ9Ik0xOCAxMEwxMiAxNUw2IDEwIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* SP */
@media screen and (max-width: 767px) {
  .c-benefits {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .c-benefits__title {
    font-size: 24px;
  }

  .c-benefits__grid {
    grid-template-columns: 1fr;
  }

  .c-benefits__card {
    padding: 25px 0;
    box-shadow: 8px 8px 0px 0px #FFFFFF33;
  }

  .c-benefits__num {
    top: -25px;
    left: -12px;
    width: 60px;
    height: 60px;
  }

  .c-benefits__card-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .c-benefits__desc {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .c-benefits__title {
    font-size: 6.0vw;
    white-space: nowrap;
  }
}


/* ==========================================================================
     introduction-numtitle
     ========================================================================== */

.introduction-numtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.introduction-numtitle span {
  font-size: 128px;
  font-size: min(calc(128/1440 * 100vw), 128px);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #005184;
}

.introduction-numtitle-text {
  font-size: 48px;
  font-size: min(calc(48/1440 * 100vw), 48px);
  font-weight: 900;
  line-height: 1.3;
  color: #3F1B00;
  letter-spacing: -0.05em;
}

.introduction-numtitle-text.--wide {
  white-space: nowrap;
}

.introduction-numtitle-text small {
  font-size: 36px;
  font-size: min(calc(36/1440 * 100vw), 36px);
  line-height: 1.6;
  color: #F1711E;
  display: block;
}

/* sp */
@media screen and (max-width: 767px) {
  .introduction-numtitle {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .introduction-numtitle span {
    font-size: 40px;
  }

  .introduction-numtitle-text {
    font-size: 28px;
  }

  .introduction-numtitle-text small {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .introduction-numtitle-text {
    font-size: 7.4vw;
  }

  .introduction-numtitle-text small {
    font-size: 5.3vw;
  }
}

/* ==========================================================================
   理由モーダル（ワンレジが選ばれる理由の詳細）
  ========================================================================== */

/* モーダル表示時のスクロール防止 */
body.no-scroll {
  overflow: hidden;
}

/* クリック可能な理由ボックス */
.reason-box.js-reason-trigger {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.reason-box.js-reason-trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 81, 132, 0.2);
}

/* モーダルオーバーレイ */
.reason-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.reason-modal.is-open {
  display: flex;
  animation: reasonModalFadeIn 0.3s ease;
}

.reason-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.reason-modal__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  width: 95%;
  max-height: 90vh;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reason-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 45px;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 40px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.reason-modal__close:hover {
  color: #005184;
}

.reason-modal__content {
  padding: 20px 60px 90px;
  max-height: 85vh;
  overflow-y: auto;
}

.reason-modal__panel {
  display: none;
}

.reason-modal__panel.is-active {
  display: block;
}

/* ヘッダー：REAS + ワンレジが選ばれる理由・特徴 + 数字 */
.reason-modal__header {
  margin-bottom: 60px;
}

.reason-modal__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.reason-modal__badge-lead {
  font-size: 96px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #EDF1FA;
  position: absolute;
  top: 0;
  left: -30px;
  z-index: -1;
  pointer-events: none;
}

.reason-modal__badge-main {
  font-size: 36px;
  font-weight: 700;
  color: #F1711E;
}

.reason-modal__badge-num {
  font-size: 88px;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  color: #F1711E;
  line-height: 1;
}

.reason-modal__hero {
  display: flex;
  align-items: center;
  gap: 24px;
}

.reason-modal__hero-text {
  flex: 1;
  min-width: 0;
}

.reason-modal__main-caption {
  font-size: 36px;
  font-weight: bold;
  color: #3F1B00;
  margin-bottom: 10px;
  line-height: 1;
}

.reason-modal__main-title {
  font-size: 64px;
  font-weight: 700;
  color: #3F1B00;
  line-height: 1;
  margin-bottom: 20px;
}

.reason-modal__subtitle {
  font-size: 24px;
  line-height: 1.5;
  color: #000;
}

.reason-modal__hero-fig {
  flex-shrink: 0;
  margin: 0;
  width: 46%;
}

.reason-modal__hero-fig img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature セクション */
.reason-modal__feature {
  margin-bottom: 60px;
}

.reason-modal__feature:last-child {
  margin-bottom: 0;
}

.reason-modal__feature-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 36px;
  font-weight: 700;
  color: #005184;
  margin-bottom: 20px;
}

.reason-modal__feature-label {
  font-size: 38px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #EDF1FA;
  line-height: 1;
  text-align: center;

  span {
    font-size: 150px;
    line-height: .9;
  }
}

.reason-modal__feature-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.reason-modal__feature-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  width: 46%;
}

.reason-modal__feature-image {
  width: 54%;
}

.reason-modal__feature--reverse .reason-modal__feature-head {
  justify-content: flex-end;
}

.reason-modal__feature--reverse .reason-modal__feature-content {
  flex-direction: row-reverse;
}

@keyframes reasonModalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .reason-modal__inner {
    max-width: 350px;
  }

  .reason-modal__content {
    padding: 40px 25px;
  }

  .reason-modal__badge {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 15px;
  }

  .reason-modal__badge-lead {
    font-size: 48px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .reason-modal__badge-num {
    font-size: 48px;
  }

  .reason-modal__badge-main {
    font-size: 20px;
  }

  .reason-modal__hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .reason-modal__main-caption {
    font-size: 18px;
    font-weight: 900;
  }

  .reason-modal__main-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
  }

  .reason-modal__subtitle {
    font-size: 16px;
  }

  .reason-modal__hero-fig {
    width: 100%;
  }

  .reason-modal__feature {
    margin-bottom: 40px;
  }

  .reason-modal__feature-head {
    flex-flow: column;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    text-align: center;
  }

  .reason-modal__feature-label {
    font-size: 16px;

    span {
      font-size: 64px;
    }
  }

  .reason-modal__feature-content {
    flex-flow: column;
    gap: 20px;
  }

  .reason-modal__feature--reverse .reason-modal__feature-content {
    flex-direction: column;
  }

  .reason-modal__feature-desc {
    width: 100%;
  }

  .reason-modal__feature-image {
    width: 100%;
  }
}

/* ==========================================================================
   p-quantity-display - キッチンディスプレイLP用
   ========================================================================== */
.p-quantity-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
  width: fit-content;
}

.p-quantity-display__graphic {
  width: 163px;
  flex-shrink: 0;
}

.p-quantity-display__arrow {
  width: 75px;
}

.p-quantity-display__text {
  flex: 1;
}

.p-quantity-display__list {
  list-style: none;
  padding: 0;
}

.p-quantity-display__item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}

.p-quantity-display__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #014A78;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.p-quantity-display__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
}

.introduction-imgarea-point4 img {
  max-width: 865px;
}

@media screen and (max-width: 767px) {
  .p-quantity-display {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .p-quantity-display__arrow {
    width: 56px;
  }

  .p-quantity-display__item {
    font-size: 14px;
  }

  .p-quantity-display__desc {
    font-size: 14px;
  }

  .introduction-imgarea-point4 img {
    max-width: 100%;
  }
}


/* ==========================================================================
   インタビューモーダル
  ========================================================================== */
body.no-scroll {
  overflow: hidden;
}

.interview-post.js-interview-trigger {
  cursor: pointer;
}

.interview-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.interview-modal.is-open {
  display: flex;
  animation: interviewModalFadeIn 0.3s ease;
}

.interview-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.interview-modal__inner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.interview-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.interview-modal__close:hover {
  color: #666;
}

.interview-modal__content {
  max-height: 85vh;
  overflow-y: auto;
}

/* インタビューヘッド：左画像＋右テキスト */
.interview-modal__head {
  display: flex;
}

.interview-modal__head-fig {
  flex-shrink: 0;
  margin: 0;
  width: 66%;
  aspect-ratio: 800/430;
  overflow: hidden;
}

.interview-modal__head-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-modal__head-text {
  flex: 1;
  min-width: 0;
  padding: 40px;
}

.interview-modal__company {
  font-size: 16px;
  margin-bottom: 25px;
}

.interview-modal__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.interview-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.interview-modal__tags li {
  padding: 5px 10px;
  font-size: 16px;
  color: #3F1B00;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #3F1B00;
}

/* 概要文 */
.interview-modal__overview {
  padding: 40px 40px 20px;
}

.interview-modal__overview p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* 続きを見るボタン */
.interview-modal__btn-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 40px;
  font-size: 15px;
  font-weight: 600;
  color: #3F1B00;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.interview-modal__btn-continue:hover {
  opacity: 0.7;
}

.interview-modal__btn-icon {
  background-image: url(../lp-img/common_image/interview-modal__btn-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
}

/* 本文エリア */
.interview-modal__article {
  padding: 0 40px 40px;
}

.interview-modal__article-body {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.interview-modal__article-section {
  margin-bottom: 32px;
}

.interview-modal__article-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.5;
  padding-left: 10px;
  border-left: 5px solid #3F1B00;
}

.interview-modal__article-fig {
  margin: 0 0 32px;
  text-align: center;
}

.interview-modal__article-fig img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.interview-modal__article-text {
  font-size: 16px;
  line-height: 1.5;
}

.interview-modal__article-text p {
  margin-bottom: 16px;
}

.interview-modal__article-text p:last-child {
  margin-bottom: 0;
}

@keyframes interviewModalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .interview-modal__head {
    flex-direction: column;
  }

  .interview-modal__head-fig {
    width: 100%;
  }

  .interview-modal__head-text {
    padding: 20px;
  }

  .interview-modal__company {
    margin-bottom: 16px;
  }

  .interview-modal__title {
    font-size: 20px;
  }

  .interview-modal__tags li {
    font-size: 14px;
    padding: 3px 6px;
  }

  .interview-modal__overview {
    padding: 20px 20px 10px;
  }

  .interview-modal__article {
    padding: 0 20px 20px;
  }
}