@charset "UTF-8";

/* ====================================================================
   shinki_domo_d.css
   top-shinki_domo_d.html (domo バリアント d) 専用 CSS
   各 _d.jsp 内の <style> を集約
   ==================================================================== */

/* ====== ユーティリティクラス (SP / PC / narrow PC 出し分け) ====== */
/* narrow PC のみ表示 */
.narrow_pc_design { display: none; }
@media screen and (min-width: 750px) and (max-width: 1079px) {
  .narrow_pc_design { display: inline; }
}

/* narrow PC 以外で表示 (= SP + wide PC) */
@media screen and (min-width: 750px) and (max-width: 1079px) {
  .not_narrow_pc_design { display: none; }
}

/* ====== コンテンツ全体 ====== */
.otameshi-welcome__contents {
  max-width: 1200px;
  margin: 0 auto;
}

.otameshi-welcome__secion {
  margin-top: 56px !important;
}

@media screen and (min-width: 750px) {
  .otameshi-welcome__secion {
    margin-top: 80px !important;
  }
  .visitor {
    width: 100% !important;
  }
}

/* ====== ヘッダーバナー非表示 ====== */
.shinki_head_bnr {
  display: none;
}

/* ====== Footer Banner & Tab ====== */
.shinki-top-footer-bnr {
  margin: 80px 24px 0;
}

@media screen and (min-width: 750px) {
  .otameshi-welcome__secion-bnr {
    max-width: 980px;
    margin: 0 auto;
  }
  .otameshi-tab {
    max-width: 100% !important;
  }
  .otameshi-tab__dropdown {
    left: 50% !important;
    transform: translateX(-50%);
  }
}

/* ====================================================================
   Footer Fixed Navigation (追従ナビ)
   from: smart/shinki/inc_otameshi_footer_navigation_d.jsp
   ==================================================================== */

/* ====== 外側 nav: SP=ピル / PC=円形 ====== */
.otameshi-footer-navigation {
  width: calc(100% - 16px*2);
  max-width: 480px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 10;
  white-space: nowrap;
  box-sizing: border-box;
  background: #DB4F43;
  box-shadow: 0px 2px 16px 0px rgb(0 0 0 / .2);
  padding: 10px 18px;
  transition: all 0.2s ease-out;
  border-radius: 50vh;
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.otameshi-footer-navigation._show {
  transform: translate(-50%, -16px);
  z-index: 12;
}
.otameshi-footer-navigation._hidden-by-section {
  transform: translate(-50%, 100%) !important;
  pointer-events: none;
}

/* ====== SP: ピル内のレイアウト ====== */
.otameshi-footer-navigation__list {
  display: flex;
  justify-content: space-evenly;
}
.otameshi-footer-navigation__item {
  flex: 1;
  margin: 0 6px;
}
.otameshi-footer-navigation__item:nth-of-type(2) {
  border-left: 1px solid rgb(255 255 255 / .5);
}
.otameshi-footer-navigation__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  padding-left: 0;
  gap: 8px;
}
.otameshi-footer-navigation__item-thumb {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: block;
}
.otameshi-footer-navigation__item-text {
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
  font-size: 16px;
}
.otameshi-footer-navigation__item a svg {
  margin: 2px 0 0 2%;
  min-width: 12px;
  width: 12px;
}

/* ====== メガメニュー ====== */
.otameshi-footer-navigation__mega-menu {
  width: 88%;
  min-width: 350px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.otameshi-footer-navigation__mega-menu._open {
  height: auto;
  bottom: 75px;
  transition: all 0.2s 0s ease-out;
  visibility: visible;
  opacity: 1;
}
.otameshi-footer-navigation__mega-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px 26px;
  gap: 20px;
  background: #F3F6E8;
  max-height: calc(100vh - 110px);
  box-sizing: border-box;
  overflow: auto;
  border-radius: 8px;
}
.otameshi-footer-navigation__mega-menu-item {
  position: relative;
}
.otameshi-footer-navigation__mega-menu-item a {
  display: block;
}
.otameshi-footer-navigation__mega-menu-item.-full-width {
  grid-column: 1 / -1;
}
.otameshi-footer-navigation__mega-menu-item span {
  display: flex;
  margin-top: 8px;
  font-size: 15px;
  color: #000;
  text-align: center;
  line-height: 1.5;
  max-height: 3em;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  word-wrap: break-word;
  position: relative;
}
.otameshi-footer-navigation__mega-menu-item-wappen {
  position: absolute;
  top: -12px;
  left: -12px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 35px;
  aspect-ratio: 1 / 1;
  font-size: 14px;
  background: #DB4F43;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  padding-bottom: 1%;
  box-sizing: border-box;
  font-style: normal;
}
.otameshi-footer-navigation__mega-menu-item-wappen.-limited {
  background: #FFBF00;
}

/* ====== PC: 円形ボタンに変身 + メガメニュー位置調整 ====== */
@media screen and (min-width: 750px) {
  .otameshi-footer-navigation {
    width: 165px;
    max-width: none;
    height: 165px;
    background: #DB4F43;
    padding: 0;
    border-radius: 50%;
    left: auto;
    right: 32px;
    bottom: 32px;
    transform: translateX(120%);
  }
  .otameshi-footer-navigation._show {
    transform: translateX(0) !important;
  }
  .otameshi-footer-navigation._hidden-by-section {
    transform: translateX(120%) !important;
  }
  .otameshi-footer-navigation__pc-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    position: relative;
  }
  .otameshi-footer-navigation__pc-link::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
  }
  .otameshi-footer-navigation__pc-thumb-wrap {
    display: flex;
    align-items: flex-end;
  }
  .otameshi-footer-navigation__pc-thumb {
    width: 60px;
    height: 60px;
    display: block;
  }
  .otameshi-footer-navigation__pc-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    background: #DB4F43;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin-left: -10px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding-bottom: 2px;
  }
  .otameshi-footer-navigation__pc-title {
    color: var(--monotone-white, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.64px;
  }
  .otameshi-footer-navigation__pc-sub {
    color: var(--monotone-white, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 1px;
  }
  .otameshi-footer-navigation__item-text {
    font-size: 20px;
  }
  .otameshi-footer-navigation__mega-menu {
    width: auto;
    left: auto;
    right: 0;
    transform: none;
  }
  .otameshi-footer-navigation__mega-menu._open {
    bottom: 180px;
  }
  .otameshi-footer-navigation__mega-menu-list.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .otameshi-footer-navigation__mega-menu-list.-col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ====================================================================
   Media & Awards (TV/メディア紹介 & アワード)
   from: smart/shinki/inc_otameshi_media_d.jsp
   ==================================================================== */

/* ====== .media: TVで紹介されました ====== */
/* 変数は新規トップマイクロサイトにガイドライン(暫定)に書かれています */

@media screen and (min-width: 750px) {
  .media {
    --icon-img-size: 100px;
    --fs-heading-a: 32px;
    --fs-heading-c: 22px;
    --fs-catch-c: 20px;
    --fs-text-a: 17px;
    --fs-text-note: 13px;
  }
}
@media screen and (max-width: 749px) {
  .media {
    --icon-img-size: 50px;
    --fs-heading-a: 28px;
    --fs-heading-c: 18px;
    --fs-catch-c: 19px;
    --fs-text-a: 16px;
    --fs-text-note: 10px;
  }
}

.media {
  position: relative;
}
.media__icon {
  display: block;
  width: var(--icon-img-size);
  margin: 0 auto calc((var(--icon-img-size) / 2) * -1);
}
.media__inner {
  padding: 0 25px 40px;
  padding-top: calc(20px + (var(--icon-img-size) / 2));
  background: #F5EEE3;
}
.media__title {
  text-align: center;
  line-height: 1.5;
  font-size: var(--fs-heading-c);
  font-weight: bold;
}
.media__title strong {
  font-size: var(--fs-heading-a);
  font-weight: bold;
  color: #CFAA6E;
}

/* ====== .media__content: 番組リスト ====== */
.media__content {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
}
.media__content__item:nth-of-type(n + 2) {
  margin-top: 12px;
  border-top: #AAAAAA 1px solid;
  padding-top: 12px;
}
.media__content__item-title {
  font-size: var(--fs-text-a);
}
.media__content__item-note {
  margin-top: 8px;
  font-size: var(--fs-text-note);
}
.media__note {
  margin-top: 20px;
  font-size: var(--fs-catch-c);
  font-weight: bold;
  color: #CFAA6E;
  text-align: center;
  line-height: 1.5;
}

/* PC: 4列グリッド */
@media screen and (min-width: 750px) {
  .media__content {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .media__content__item {
    min-width: 220px;
    max-width: 250px;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    width: calc((100% - 16px * 3) / 4);
  }
  .media__content__item:nth-of-type(n + 2) {
    margin-top: 0;
    border-top: none;
    padding-top: 20px;
  }
}

/* ====== .media__award: 各種アワード ====== */
.media__award {
  text-align: center;
}
.media__award__image {
  margin: 0 auto;
}
.media__award__image img {
  display: block;
  width: 100%;
  height: auto;
}
.media__award__notes {
  margin-top: 16px;
  text-align: left;
  line-height: 1.6;
  padding: 0 24px;
}
.media__award__note {
  margin: 0 4px;
  font-size: var(--fs-text-note);
  color: #B58744;
}
.media__award__link {
  color: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 750px) {
  .media__award {
    margin-top: 0px;
  }
  .media__award__notes {
    margin-top: 24px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ====================================================================
   Otameshi CTA Section (おためしセット CTA)
   from: smart/shinki/inc_cta_shinki_top_d.jsp
   ==================================================================== */

/* ====== Otameshi section header (Oisixのサービスと同じデザイン) ====== */
.otameshi-welcome-otameshi__header {
  text-align: center;
  padding-top: 56px;
}
.otameshi-welcome-otameshi__header__icon {
  width: 24px;
  margin: 0 auto;
}
.otameshi-welcome-otameshi__header__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.otameshi-welcome-otameshi__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 4px;
}
.otameshi-welcome-otameshi__title__text {
  color: var(--monotone-dark-gray, #333);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.otameshi-welcome-otameshi__title__hige {
  display: inline-block;
  width: 28px;
  line-height: 0;
  flex-shrink: 0;
}
.otameshi-welcome-otameshi__title__hige img {
  display: block;
  width: 100%;
  height: auto;
}
.otameshi-welcome-otameshi__title__hige--right img {
  transform: scaleX(-1);
}
.otameshi-welcome-otameshi__sub {
  color: var(--base-green, #76952F);
  text-align: center;
  font-feature-settings: 'halt' on;
  font-family: "Hiragino Kaku Gothic StdN";
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 1.5px;
}

.otameshi-cta-otameshi {
  background: #F5EEE3;
}
.otameshi-welcome-otameshi__intro {
  text-align: center;
  padding: 16px 16px 0;
  max-width: 800px;
  margin: 0 auto;
}
.otameshi-welcome-otameshi__lead {
  color: var(--monotone-dark-gray, #333);
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.56px;
  margin: 0 0 12px;
}
.otameshi-welcome-otameshi__note {
  color: var(--monotone-mid-gray, #666);
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 11px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
.otameshi-welcome__otameshi-bnr-cta-hero {
  border-radius: 8px;
  overflow: hidden;
}
.otameshi-welcome__otameshi-bnr-description {
  align-items: center;
}
.otameshi-welcome__otameshi-bnr-cta {
  margin: 0 auto;
}
.otameshi-cta-otameshi__body {
  max-width: 1200px;
  margin: 0 auto;
}
.otameshi-welcome__otameshi-bnr-description {
  margin: 16px auto 0;
}
.otameshi-welcome__otameshi-bnr-description img {
  width: 72px;
}
.otameshi-welcome__otameshi-bnr-description-text {
  color: var(--monotone-dark-gray, #333);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.56px;
  margin-left: 16px;
}
.otameshi-welcome__otameshi-bnr-cta .shinki-btn {
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.64px;
  border: 1px solid var(--color-primary);
}
.otameshi-welcome__otameshi-bnr-cta .shinki-btn .shinki-btn__label {
  font-size: 16px;
}

/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  .otameshi-welcome-otameshi__lead {
    font-size: clamp(16px, calc(0.89vw + 9.33px), 20px);
  }
  .otameshi-welcome-otameshi__note {
    font-size: 12px;
  }
  .otameshi-welcome__otameshi-bnr-description img {
    width: clamp(56px, calc(3.56vw + 29.33px), 72px);
  }
  .otameshi-welcome__otameshi-bnr-description-text {
    font-size: clamp(12px, calc(0.44vw + 8.67px), 14px);
  }

  .otameshi-welcome-otameshi__header {
    padding-top: 80px;
  }
  .otameshi-welcome-otameshi__header__icon {
    width: clamp(28px, calc(0.89vw + 21.33px), 32px);
  }
  .otameshi-welcome-otameshi__title {
    gap: 8px;
    margin: 8px 0;
  }
  .otameshi-welcome-otameshi__title__text {
    font-size: 32px;
  }
  .otameshi-welcome-otameshi__title__hige {
    width: 28px;
  }
  .otameshi-welcome-otameshi__sub {
    font-size: 12px;
  }
  .otameshi-cta-plan .shinki-btn.primary-outline,
  .otameshi-cta-plan .shinki-btn.primary-outline .shinki-btn__label,
  .otameshi-cta-plan .shinki-btn.primary-outline .shinki-btn__arrow {
    transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
  }

  .otameshi-cta-plan .shinki-btn.primary-outline:hover {
    background-color: var(--color-primary);
  }
  .otameshi-cta-plan .shinki-btn.primary-outline:hover .shinki-btn__label {
    color: #fff;
  }
  .otameshi-cta-plan .shinki-btn.primary-outline:hover .shinki-btn__arrow {
    border-color: #fff;
  }
}

/* ====== Otameshi card list (PC 3列グリッド) ====== */
.otameshi-cta-otameshi__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 56px;
  column-gap: clamp(12px, calc(1.71vw - 0.82px), 32px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 56px;
  position: relative;
}
.otameshi-cta-otameshi__list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
}

/* PC: 3列、5なら 3+2 で左寄せ */
@media screen and (min-width: 750px) {
  .otameshi-cta-otameshi__list {
    grid-template-columns: repeat(3, 1fr);
    padding: 56px 16px 120px;
    row-gap: 80px;
  }
  /* カード全体を縦 flex に */
  .otameshi-cta-plan {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .otameshi-cta-plan__content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .otameshi-welcome__otameshi-bnr-cta {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 auto;
  }

  /* description の下に最低 16px の余白を確保 */
  .otameshi-welcome__otameshi-bnr-description {
    margin-bottom: 16px;
  }

  /* ボタンを下端に押し付ける(固定 margin-top を上書き) */
  .otameshi-welcome__otameshi-bnr-cta .shinki-btn.primary-outline {
    margin: auto 0 0 !important;
  }
}

/* ====== Self-check (CTA セクション内) ====== */
.otameshi-cta__self-check {
  padding: 0 0 56px;
}
.otameshi-welcome-lineup__check .otameshi-self-check__lead {
  display: none;
}
.otameshi-cta__self-check .otameshi-self-check__lead {
  display: block;
}
.otameshi-cta__self-check .otameshi-self-check__lead {
  font-size: 18px;
}
.otameshi-cta__self-check .otameshi-self-check {
  background: #F5EEE3;
  padding: 0;
}
.otameshi-welcome__otameshi-bnr-title-fukidashi {
  margin: 0px 0px 16px;
}
.otameshi-cta__self-check .otameshi-self-check__lead {
  font-size: 14px;
}

/* ====================================================================
   Welcome Top (タブ "おためしセット" 内のメインビュー)
   from: g6/shinki/topTabLink_domo_welcome_d.jsp
   ==================================================================== */

/* ====== FAQ Section ====== */
.otameshi-welcome__faq-item {
  border-top: 1px #76952F dashed;
}
.otameshi-welcome__faq-item:last-child {
  border-bottom: 1px #76952F dashed;
}
.otameshi-welcome__secion-faq {
  background: #fff;
  padding: 0 24px 40px;
  margin-top: 40px;
}
.otameshi-welcome__secion-faq .otameshi-welcome-service__header {
  padding-top: 0;
}
.otameshi-welcome__faq-item dt {
  border-bottom: none;
}
.otameshi-welcome__faq-icon-q,
.otameshi-welcome__faq-icon-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.otameshi-welcome__faq-text .shinki-btn {
  margin-top: 8px;
}

/* Q: 緑塗り + 白文字 */
.otameshi-welcome__faq-icon-q {
  background: #76952F;
  color: #fff;
}

/* A: 白塗り + 緑枠 + 緑文字 */
.otameshi-welcome__faq-icon-a {
  background: #fff;
  color: #76952F;
  border: 2px solid #76952F;
}

.otameshi-welcome__faq-icon-q + .otameshi-welcome__faq-text {
  color: var(--monotone-dark-gray, #333);
  font-feature-settings: 'halt' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 24px */
  letter-spacing: 0.48px;
}
.otameshi-welcome__faq-icon-a + .otameshi-welcome__faq-text {
  color: var(--monotone-dark-gray, #333);
  font-feature-settings: 'halt' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 24px */
  letter-spacing: 0.48px;
}
.otameshi-welcome__faq-item dt {
  align-items: center;
  padding: 20px 0 0;
}
.otameshi-welcome__faq-item dd {
  padding: 8px 0 20px;
}
.shinki-btn.primary-text .shinki-btn__label {
  color: var(--base-green, #76952F);
  font-feature-settings: 'halt' on, 'liga' off, 'clig' off;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
}
.shinki-btn.primary-text .shinki-btn__arrow {
  width: 7px;
  height: 7px;
  border-width: 1px;
}
@media screen and (min-width: 750px) {
  .otameshi-welcome__secion-faq {
    max-width: 750px;
    margin: 0 auto;
  }
  .otameshi-welcome__faq-icon-q + .otameshi-welcome__faq-text {
    font-size: 16px;
  }
  .otameshi-welcome__faq-icon-a + .otameshi-welcome__faq-text {
    font-size: 14px;
  }
}

/* ====== Enquete Section (クーポンアンケート) ====== */
.otameshi-welcome__secion-enq {
  margin: 56px auto 0;
}
.otameshi-welcome__secion-enq .coupon-form {
  margin-top: 0;
}
@media screen and (min-width: 750px) {
  .otameshi-welcome__secion-enq {
    max-width: 750px;
    margin: 0 auto;
  }
}

/* ====================================================================
   Hero Slider (メインビジュアル + Oisix紹介ブロック)
   from: g6/shinki/topTabLink_domo_welcome_hero_slider_d.jsp
   ==================================================================== */

.otameshi-welcome__hero {
  background: linear-gradient(180deg, #FFF 60%, #F5EEE3 60.14%);
}
.otameshi-welcome__main-mv {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.otameshi-welcome__main-mv-logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.otameshi-welcome__main-mv-logo img {
  width: auto;
  height: 100%;
}
.otameshi-welcome__main-mv-logo p {
  color: #fff;
  font-weight: var(--fw-noto-bold);
}
.otameshi-welcome__main-mv-title {
  position: absolute;
  line-height: 1.5;
  font-weight: var(--fw-noto-bold);
  color: #fff;
  text-shadow: 0px 0px 25px #4f4f4f;
  letter-spacing: 1.26px;
  font-feature-settings: 'palt' 1;
}
.otameshi-welcome__main-mv-link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0px 0px 15px 0px #505050;
  box-sizing: border-box;
}
.otameshi-welcome__main-mv-link span {
  color: #fff;
}
.otameshi-welcome__main-mv-link::after {
  content: '';
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  margin-top: 2%;
}

/* ====== Swiper ====== */
.swiper-container-hero.swiper-container {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.swiper-container-hero .swiper-pagination-bullet {
  background: transparent;
  opacity: 1;
  border: 1px solid #aaa;
}
.swiper-container-hero .swiper-pagination-bullet-active {
  background: #aaa;
}
.swiper-container-hero .swiper-wrapper {
  flex: 1;
  height: auto;
}
.swiper-container-hero .swiper-slide {
  height: 100%;
}
.swiper-container-hero.swiper-container .swiper-pagination {
  position: relative;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-container-hero .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.otameshi-welcome__mv-foot-scroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: var(--sp-mv-foot-scroll);
  font-size: var(--fs-text-note);
}
.otameshi-welcome__mv-foot-scroll svg {
  margin-top: 5px;
}

/* ====== Oisix 紹介ブロック ====== */
.otameshi-welcome-intro {
  background: #F5EEE3;
  overflow: hidden;
  position: relative;
}
.otameshi-welcome-intro__body {
  position: relative;
  max-width: 1330px;
  margin: 0 auto;
}
.otameshi-welcome-intro__message {
  color: var(--monotone-dark-gray, #333);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 43.2px */
  letter-spacing: 0.96px;
  padding-top: 24px;
}
.otameshi-welcome-intro__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1330px;
}
.otameshi-welcome-intro__bg img {
  width: 100%;
  height: auto;
  display: block;
}
.otameshi-welcome-intro__message__em {
  color: var(--monotone-dark-gray, #447E11);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.otameshi-welcome-intro__img {
  width: 218px;
  height: 117px;
  aspect-ratio: 218/117;
  margin: 24px auto;
}
.otameshi-welcome-intro__img img {
  width: 100%;
  height: auto;
}
.otameshi-welcome-intro__under__text {
  color: var(--monotone-dark-gray, #333);
  text-align: center;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}
.otameshi-welcome-intro__under {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 68px;
}
.otameshi-welcome-intro__bg span {
  position: relative;
  display: block;
}
.otameshi-welcome-intro__bg__frame {
  display: block;
  width: 100%;
}
.otameshi-welcome-intro__bg__frame--1 {
  animation: dish-flip-1 1.6s steps(1, end) infinite;
}
.otameshi-welcome-intro__bg__frame--2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: dish-flip-2 1.6s steps(1, end) infinite;
}
@keyframes dish-flip-1 {
  0%, 49.99% { opacity: 1; }
  50%, 100%  { opacity: 0; }
}
@keyframes dish-flip-2 {
  0%, 49.99% { opacity: 0; }
  50%, 100%  { opacity: 1; }
}
.otameshi-welcome-intro__divider {
  display: flex;
  justify-content: center;
  margin: 0;
}
.otameshi-welcome-intro__divider svg {
  display: block;
}

/*---------- SP ----------*/
@media screen and (max-width: 749px) {
  .small-image {
    display: block;
  }
  .large-image {
    display: none;
  }
  .otameshi-welcome__hero {
    height: calc(100svh - var(--sp-header-height) - var(--sp-mv-foot-scroll));
  }
  .swiper-container-hero .swiper-wrapper {
    height: auto;
  }
  .swiper-container-hero.swiper-container .swiper-pagination {
    bottom: 0;
    background: #fff;
  }
  .swiper-container-hero .swiper-slide {
    width: 100%;
  }
  .otameshi-welcome__main-mv-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .otameshi-welcome__main-mv-img img.small-image {
    width: 100%;
    height: var(--swiper-wrapper-height, 100%);
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .otameshi-welcome__main-mv-logo {
    width: 100%;
    height: 13%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .otameshi-welcome__main-mv-logo p {
    font-size: clamp(30px, 9vw, 36px);
  }
  .otameshi-welcome__main-mv-title {
    width: 100%;
    text-align: center;
    top: 64%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: clamp(14px, 4vw, 20px);
  }
  .otameshi-welcome__main-mv-title br {
    display: none;
  }
  .otameshi-welcome__main-mv-link {
    width: fit-content;
    max-width: 234px;
    justify-content: center;
    height: 54px;
    left: 50%;
    transform: translate(-50%, 0);
    top: 74%;
    gap: 13px;
    padding: 0 24px;
  }
  .otameshi-welcome__main-mv-link span {
    display: block;
    flex: 1;
    font-size: 16px;
    white-space: nowrap;
  }
  .otameshi-welcome-intro__bg {
    width: 100%;
    min-width: 430px;
    max-width: 480px;
  }
  .otameshi-welcome-intro__message {
    padding-top: 64px;
  }
}

/*---------- PC ----------*/
@media (min-width: 750px) {
  .small-image {
    display: none;
  }
  .large-image {
    display: block;
  }
  /* スライダー1枚の高さ: 751px → 420px / 1920px → 620px の線形伸縮 */
  .swiper-container-hero .swiper-wrapper {
    flex: none;
    height: clamp(420px, calc(17.09vw + 291.8px), 620px);
  }
  /* スライド幅: 751px → 650px / 1920px → 950px の線形伸縮 */
  .swiper-container-hero .swiper-slide {
    width: clamp(650px, calc(25.64vw + 457.69px), 950px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .swiper-container-hero .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: inherit;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  .swiper-container-hero .swiper-slide-active::after {
    opacity: 0;
  }
  .swiper-container-hero .swiper-slide-active {
    opacity: 1;
  }
  .otameshi-welcome__main-mv-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .otameshi-welcome__main-mv-img img.large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .otameshi-welcome__main-mv-logo {
    height: 65px;
    left: clamp(24px, calc(2.05vw + 8.62px), 48px);
    top: clamp(104px, calc(5.64vw + 61.69px), 170px);
  }
  .otameshi-welcome__main-mv-logo p {
    font-size: 36px;
  }
  .otameshi-welcome__main-mv-title {
    left: clamp(24px, calc(2.05vw + 8.62px), 48px);
    top: clamp(184px, calc(7.35vw + 128.87px), 270px);
    font-size: 21px;
    line-height: 1.5;
  }
  .otameshi-welcome__main-mv-link {
    width: clamp(234px, calc(4.96vw + 196.82px), 292px);
    height: clamp(54px, calc(1.20vw + 45.03px), 68px);
    left: clamp(24px, calc(2.05vw + 8.62px), 48px);
    top: clamp(267px, calc(9.83vw + 193.28px), 382px);
    padding: 0 24px;
  }
  .otameshi-welcome__main-mv-link span {
    font-size: clamp(16px, calc(0.34vw + 13.44px), 20px);
  }
  .swiper-container-hero.swiper-container .swiper-pagination {
    bottom: 0;
  }
  .otameshi-welcome-intro__bg {
    width: 100%;
    min-width: 1120px;
    max-width: 1330px;
  }
  .otameshi-welcome-intro__message {
    font-size: 24px;
  }
  .otameshi-welcome-intro__message__em {
    font-size: 24px;
  }
  .otameshi-welcome-intro__under__text {
    font-size: 16px;
  }
}

/* ====================================================================
   Service Cards & Lineup (Oisixのサービス + 商品ラインナップ)
   from: kounyuu/include/inc_oic_intro_shinki_product_content_d.jsp
   ==================================================================== */

/* ====== Service Header ====== */
.otameshi-welcome-service__header {
  text-align: center;
  padding-top: 56px;
}
.otameshi-welcome-service__header__icon {
  width: 26px;
  margin: 0 auto;
}
.otameshi-welcome-service__header__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.otameshi-welcome-service__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 4px;
}
.otameshi-welcome-service__title__text {
  color: var(--monotone-dark-gray, #333);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 43.2px */
  letter-spacing: 0.96px;
}
.otameshi-welcome-service__title__hige {
  display: inline-block;
  width: 28px;
  line-height: 0;
  flex-shrink: 0;
}
.otameshi-welcome-service__title__hige img {
  display: block;
  width: 100%;
  height: auto;
}
.otameshi-welcome-service__title__hige--right img {
  transform: scaleX(-1);
}
.otameshi-welcome-service__sub {
  color: var(--base-green, #76952F);
  text-align: center;
  font-feature-settings: 'halt' on;
  font-family: "Hiragino Kaku Gothic StdN";
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 1.5px;
}

/* ====== Service List & Cards ====== */
.otameshi-welcome-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.otameshi-welcome-service__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.otameshi-welcome-service__recommend {
  text-align: center;
}
.otameshi-welcome-service__recommend__main {
  font-size: 13px;
  font-weight: 600;
}
.otameshi-welcome-service__recommend__sub {
  font-size: 11px;
}
.otameshi-welcome-service__hero {
  margin-top: 10px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.otameshi-welcome-service__hero img {
  display: block;
  width: 100%;
  height: auto;
}
.otameshi-welcome-service__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 16px 40px;
  text-align: center;
  background: #76952F;
  color: #fff;
  position: relative;
}
.otameshi-welcome-service__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -36px;
  width: 100%;
}
.otameshi-welcome-service__item.-chokatu .otameshi-welcome-service__logo {
  top: -38px;
}
.otameshi-welcome-service__logo img {
  display: block;
  height: 65px;
  width: auto;
  margin: 0 auto;
}
.otameshi-welcome-service__item.-chokatu .otameshi-welcome-service__logo img {
  height: 70px;
}
.otameshi-welcome-service__cook-time {
  margin-top: 28px;
}
.otameshi-welcome-service__cook-time__label {
  color: var(--monotone-white, #FFF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.56px;
  display: block;
  opacity: 0.7;
}
.otameshi-welcome-service__cook-time__value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-feature-settings: 'liga' off, 'clig' off;
}
.otameshi-welcome-service__cook-time__value .__num {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.otameshi-welcome-service__cook-time__value .__unit {
  font-size: 14px;
  font-weight: 700;
  margin-right: 2px;
  color: #fff;
}
.otameshi-welcome-service__cook-time__value .__sep {
  font-size: 14px;
  font-weight: 400;
  margin: 0 2px;
  color: #fff;
}
.otameshi-welcome-service__cook-time__value img {
  width: auto;
  height: 20px;
}
.otameshi-welcome-service__desc {
  color: var(--monotone-white, #FFF);
  text-align: center;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.56px;
}
.otameshi-welcome-service__features {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  gap: 4px;
}
.otameshi-welcome-service__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  flex: 1;
  position: relative;
}
.otameshi-welcome-service__feature:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--monotone-white, #FFF);
}
.otameshi-welcome-service__feature img {
  width: auto;
  height: 32px;
}
.otameshi-welcome-service__feature span {
  color: var(--monotone-white, #FFF);
  text-align: center;
  font-feature-settings: 'palt' on;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.4px;
}
.otameshi-welcome-service__cta {
  width: 230px;
  height: 55px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  text-decoration: none;
  padding: 14px 10px;
  border-radius: 4px;
  border: 1px solid currentColor;
  font-size: 16px;
  font-weight: 700;
  margin: auto auto 0;
  letter-spacing: 0.05em;
  transition: background-color 0.2s, color 0.2s;
}
.otameshi-welcome-service__cta::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ====== サービス別カラー上書き (Deli / BK / Healthcare は文字が暗色) ====== */
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__cook-time__label,
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__cook-time__value .__num,
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__cook-time__value .__unit,
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__cook-time__value .__sep,
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__desc,
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__feature span {
  color: var(--monotone-dark-gray, #333);
}
.otameshi-welcome-service__item.-deli .otameshi-welcome-service__feature:not(:first-child)::before {
  background: var(--monotone-dark-gray, #333);
}

.otameshi-welcome-service__item.-bk .otameshi-welcome-service__cook-time__label,
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__cook-time__value,
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__cook-time__value .__num,
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__cook-time__value .__unit,
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__cook-time__value .__sep,
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__desc,
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__feature span {
  color: var(--monotone-dark-gray, #333);
}
.otameshi-welcome-service__item.-bk .otameshi-welcome-service__feature:not(:first-child)::before {
  background: var(--monotone-dark-gray, #333);
}

.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__cook-time__label,
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__cook-time__value,
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__cook-time__value .__num,
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__cook-time__value .__unit,
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__cook-time__value .__sep,
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__desc,
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__feature span {
  color: var(--monotone-dark-gray, #333);
}
.otameshi-welcome-service__item.-healthcare .otameshi-welcome-service__feature:not(:first-child)::before {
  background: var(--monotone-dark-gray, #333);
}

/* ====== Lineup (商品ラインナップ + 診断) ====== */
.otameshi-welcome-lineup {
  padding: 48px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.otameshi-welcome-lineup__cols {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.otameshi-welcome-lineup__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.5;
}
.otameshi-welcome-lineup__title__icon {
  display: inline-block;
  width: 22px;
  flex-shrink: 0;
}
.otameshi-welcome-lineup__title__icon.-h_icon {
  width: 24px;
}
.otameshi-welcome-lineup__title__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.otameshi-welcome-lineup__title__text {
  color: var(--monotone-dark-gray, #333);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
  letter-spacing: 0.64px;
}
.otameshi-welcome-lineup__title__text.-strong {
  color: var(--monotone-dark-gray, #333);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.8px;
}
.otameshi-welcome-lineup__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.otameshi-welcome-lineup__item__link {
  display: flex;
  align-items: center;
  background: #EAF0DC;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  position: relative;
  padding-right: 40px;
  min-height: 80px;
}
.otameshi-welcome-lineup__item__link::after {
  content: '';
  position: absolute;
  right: 32px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}
.otameshi-welcome-lineup__item__img {
  flex-shrink: 0;
  width: 120px;
  align-self: stretch;
  overflow: hidden;
}
.otameshi-welcome-lineup__item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.otameshi-welcome-lineup__item__label {
  flex: 1;
  padding: 16px 0px 16px 32px;
  font-weight: 700;
  font-size: 16px;
  color: var(--monotone-dark-gray, #333);
  text-align: left;
  font-feature-settings: 'liga' off, 'clig' off;
  /* 2606/ボタン/Button-M-Bold */
  font-family: "Hiragino Kaku Gothic Std";
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.64px;
}

/* ====== Self-check (Lineup 内) ====== */
.otameshi-self-check {
  background: #fff;
}
.otameshi-self-check__lead {
  display: none;
}
.otameshi-self-check__screen.-first-screen > p > button {
  border-radius: 8px;
  overflow: hidden;
}
.otameshi-self-check__screen.-first-screen .shinki-btn {
  width: 100%;
}
.otameshi-welcome-lineup__check__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.otameshi-welcome-lineup__check__img {
  border-radius: 8px;
  overflow: hidden;
}
.otameshi-welcome-lineup__check__img img {
  display: block;
  width: 100%;
  height: auto;
}

/* 「診断スタート」ボタン: 他の CTA と同じ意匠 */
.otameshi-welcome-lineup__check__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 20px;
  background: #fff;
  color: #76952F;
  text-decoration: none;
  border: 1px solid #76952F;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background-color 0.2s, color 0.2s;
}
.otameshi-welcome-lineup__check__cta::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.otameshi-welcome-lineup__check__cta:hover,
.otameshi-welcome-lineup__check__cta:active {
  background: #76952F;
  color: #fff;
}

/* ====== アコーディオン (4枚目以降の追加カード) ====== */
/* 4 枚目以降はデフォルト非表示 */
.otameshi-welcome-service__item.is-extra {
  display: none;
}
/* 展開時: 表示 + フェードイン */
.otameshi-welcome-service__list.is-expanded .otameshi-welcome-service__item.is-extra {
  display: flex;
  animation: serviceCardFadeIn 0.4s ease-out both;
}
/* 順番に少し遅延 */
.otameshi-welcome-service__list.is-expanded .otameshi-welcome-service__item.is-extra:nth-of-type(4) { animation-delay: 0s; }
.otameshi-welcome-service__list.is-expanded .otameshi-welcome-service__item.is-extra:nth-of-type(5) { animation-delay: 0.08s; }
.otameshi-welcome-service__list.is-expanded .otameshi-welcome-service__item.is-extra:nth-of-type(6) { animation-delay: 0.16s; }

@keyframes serviceCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== トグルボタン (もっと見る) ====== */
.otameshi-welcome-service__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
  padding: 8px 40px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.otameshi-welcome-service__toggle .otameshi-welcome-service__toggle__label {
  font-size: inherit;
}
.otameshi-welcome-service__toggle .otameshi-welcome-service__toggle__icon {
  font-size: inherit;
}
.otameshi-welcome-service__toggle:hover {
  border: 1px solid #76952F;
  color: var(--base-green, #76952F);
}
.otameshi-welcome-service__toggle:hover .otameshi-welcome-service__toggle__label {
  color: inherit;
}
.otameshi-welcome-service__toggle:hover .otameshi-welcome-service__toggle__icon {
  color: inherit;
  font-size: inherit;
}
.otameshi-welcome-service__toggle__icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

/* ====== Hero Video ====== */
.otameshi-welcome-service__hero__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  .otameshi-welcome-service__header {
    padding-top: 80px;
  }
  .otameshi-welcome-service__header__icon {
    width: clamp(30px, calc(0.44vw + 26.67px), 32px);
  }
  .otameshi-welcome-service__title {
    gap: 8px;
    margin: 8px 0;
  }
  .otameshi-welcome-service__title__text {
    font-size: 32px;
  }
  .otameshi-welcome-service__title__hige {
    width: 28px;
  }
  .otameshi-welcome-service__sub {
    font-size: 12px;
  }
  /* PC: 3列, 5なら 3+2 で左寄せ */
  .otameshi-welcome-service__list {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 16px 0 16px;
    margin: 0 auto;
    gap: clamp(12px, calc(2.67vw - 8px), 24px);
  }
  .otameshi-welcome-service__desc {
    font-size: clamp(13px, calc(0.22vw + 11.33px), 14px);
  }
  .otameshi-welcome-service__hero {
    margin-top: 12px;
  }
  .otameshi-welcome-service__logo {
    top: clamp(-36px, calc(-3.11vw + 1.33px), -22px);
  }
  .otameshi-welcome-service__logo img {
    height: clamp(40px, calc(5.56vw - 1.67px), 65px);
  }
  .otameshi-welcome-service__cta {
    width: clamp(150px, 20vw, 240px);
    height: clamp(40px, calc(3.56vw + 13.33px), 56px);
    font-size: clamp(11px, calc(1.11vw + 2.67px), 16px);
  }
  .otameshi-welcome-service__cta::after {
    width: 0.5em;
    height: 0.5em;
  }
  .otameshi-welcome-service__feature span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8em;
  }
  .otameshi-welcome-lineup__cols {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(32px, calc(5.33vw - 8px), 56px);
  }
  .otameshi-welcome-lineup__col {
    flex: 1;
    min-width: 0;
  }
  .otameshi-welcome-lineup__title {
    flex-direction: initial;
    gap: 8px;
  }
  .otameshi-welcome-lineup__title__text {
    color: var(--monotone-dark-gray, #333);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Hiragino Kaku Gothic Std";
    font-size: clamp(16px, calc(0.89vw + 9.33px), 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 36px */
    letter-spacing: 0.8px;
  }
  .otameshi-welcome-lineup__title__text.-strong {
    font-size: clamp(16px, calc(0.89vw + 9.33px), 20px);
  }
  .otameshi-welcome-lineup__title__icon {
    width: 30px;
  }
  .otameshi-welcome-lineup__title__icon.-h_icon {
    width: 30px;
  }
  .otameshi-welcome-lineup__item__link {
    min-height: 96px;
  }
  .otameshi-welcome-lineup__item__img {
    width: clamp(90px, calc(11.11vw + 6.67px), 140px);
    overflow: hidden;
  }
  .otameshi-welcome-lineup__item__img img {
    transition: transform 0.3s ease-out;
  }
  .otameshi-welcome-lineup__item__link:hover .otameshi-welcome-lineup__item__img img {
    transform: scale(1.05);
  }
  .otameshi-welcome-lineup__item__link:hover .otameshi-welcome-lineup__item__label {
    color: var(--base-green, #76952F);
  }
  .otameshi-welcome-lineup__item__link:hover::after {
    border-top: 2px solid var(--base-green, #76952F);
    border-right: 2px solid var(--base-green, #76952F);
  }
  .otameshi-welcome-lineup__check__img a img {
    transition: transform 0.3s ease-out;
  }
  .otameshi-welcome-lineup__check__img a:hover img {
    transform: scale(1.05);
  }
  .otameshi-welcome-lineup__item__label {
    font-size: clamp(16px, calc(0.89vw + 9.33px), 20px);
    padding: 16px 0px 16px clamp(24px, calc(1.78vw + 10.67px), 32px);
    transition: color 0.3s ease-out;
  }
  .otameshi-self-check__lead {
    display: none;
  }
  .otameshi-self-check__lead+button {
    display: none;
  }
  .otameshi-self-check {
    padding: 0;
  }
  .otameshi-welcome-lineup__item__link::after {
    right: clamp(24px, calc(1.78vw + 10.67px), 32px);
    transition: border-color 0.3s ease-out;
  }
  .otameshi-welcome-lineup__items {
    gap: clamp(12px, calc(0.89vw + 5.33px), 16px);
  }
}
