/* =============================================================
  ワールドの受け取りサービス PC Style
  プレフィックス: omo-service
  コンテンツ幅: 1120px (実質1056px / 左右32pxパディング)
============================================================= */

html {
  scroll-behavior: smooth;
}

.contents-area {
  width: 100%;
  min-width: 1200px;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  /* JS側でPC/SP判定に使用する目印（style_sp.cssには定義しない） */
  --omo-device-pc: 1;
  --omo-text: #1a1a1a;
  --omo-sub: #726c62;
  --omo-key: #e4e8ef;
  --omo-line: #f4f5f7;
  --omo-icon: #bfcadf;
  --omo-bg-alt: #fafbfb;
  --omo-yellow: #fce139;
  --omo-blue: #6EAAF0;
}

.contents-area a {
  text-decoration: none;
  color: inherit;
}
.contents-area a:hover {
  opacity: 0.8;
}

/* Inner wrapper
------------------------------------------------------------- */
.omo-service__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* 共通パーツ
------------------------------------------------------------- */
.omo-service__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--omo-sub);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.omo-service__eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--omo-blue);
}

.omo-service__h2 {
  margin-top: 17px;
  color: var(--omo-text);
  font-weight: 400;
  font-size: 32px;
  line-height: 56px;
}

.omo-service__text-link {
  text-decoration: underline;
  color: inherit;
}

/* ============================================================
  Lead
============================================================ */
.omo-service__lead {
  position: relative;
  padding: 76px 0 118px;
}
.omo-service__lead::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1120px;
  margin: 0 auto;
  height: 1px;
  background: var(--omo-line);
}

.omo-service__lead .omo-service__inner {
  position: relative;
}

.omo-service__lead-heading {
  max-width: 720px;
  margin-top: 17px;
  color: var(--omo-text);
  font-weight: 400;
}
.omo-service__lead-heading-sub {
  display: block;
  font-size: 32px;
  line-height: 56px;
  letter-spacing: 0.03em;
}
.omo-service__lead-heading-main {
  display: block;
  font-size: 50px;
  line-height: 80px;
  letter-spacing: 0.03em;
}

.omo-service__lead-illust {
  position: absolute;
  top: 49px;
  right: 32px;
  width: 372px;
}
.omo-service__lead-illust img {
  display: block;
  width: 100%;
  height: auto;
}

.omo-service__lead-cards {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 80px;
}
.omo-service__lead-card {
  position: relative;
  box-sizing: border-box;
  width: 208px;
  height: 200px;
  border: 1px solid var(--omo-icon);
  border-radius: 6px;
  background: #fff;
}
.omo-service__lead-card::after {
  content: '';
  position: absolute;
  right: 27px;
  bottom: 27px;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--omo-text);
  border-bottom: 1.5px solid var(--omo-text);
  transform: rotate(45deg);
  pointer-events: none;
}
.omo-service__lead-card-link {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 32px 24px;
}
.omo-service__lead-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.omo-service__lead-card-icon {
  width: 28px;
  height: 28px;
}
.omo-service__lead-card-title {
  color: var(--omo-text);
  font-size: 16px;
  line-height: 29px;
}
.omo-service__lead-card-desc {
  margin-top: 10px;
  color: var(--omo-sub);
  font-size: 14px;
  line-height: 26px;
}

/* ============================================================
  3つの受け取りサービス（比較表）
  属性=行 / サービス=列（grid-auto-flow:column で列方向に流し込む）
============================================================ */
.omo-service__services {
  position: relative;
  padding: 88px 0 89px;
}
.omo-service__services::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1120px;
  margin: 0 auto;
  height: 1px;
  background: var(--omo-key);
}

.omo-service__table-wrap {
  margin-top: 52px;
  border: 1px solid var(--omo-icon);
  border-radius: 6px;
  overflow: hidden;
}

.omo-service__table {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 120px repeat(8, auto);
  grid-template-columns: 180px repeat(3, 1fr);
}

.omo-service__cell {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  background: #fff;
  color: var(--omo-sub);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  border-top: 1px solid var(--omo-key);
  border-left: 1px solid var(--omo-key);
}
/* 各列の先頭行（コーナー／各サービス見出し）は上ボーダー無し */
.omo-service__cell:nth-child(1),
.omo-service__cell:nth-child(10),
.omo-service__cell:nth-child(19),
.omo-service__cell:nth-child(28) {
  border-top: none;
}
/* 先頭列（コーナー＋属性見出し8つ）は左ボーダー無し */
.omo-service__cell:nth-child(-n+9) {
  border-left: none;
}
/* 送料は3サービス分のセルを横につなげて1列に見せる（中央のセルにのみ「無料」を表示） */
.omo-service__cell:nth-child(23),
.omo-service__cell:nth-child(32) {
  border-left: none;
}

.omo-service__cell--attr-head {
  justify-content: flex-start;
  background: var(--omo-line);
  color: var(--omo-text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.omo-service__break-sp {
  display: none;
}
.omo-service__cell.is-shaded {
  background: var(--omo-bg-alt);
}
.omo-service__cell.is-center {
  align-items: center;
}
.omo-service__cell--strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--omo-text);
}

.omo-service__cell--svc-head {
  padding: 0;
  background: var(--omo-key);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.omo-service__table-head-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 120px;
  text-align: center;
}
.omo-service__table-head-icon {
  width: 36px;
  height: 36px;
}
.omo-service__table-head-title {
  color: var(--omo-text);
  font-size: 16px;
  line-height: 22px;
}
.omo-service__table-head-sub {
  color: var(--omo-text);
  font-size: 12px;
  line-height: 12px;
  text-decoration: underline;
}

.omo-service__table-note {
  margin-top: 4px;
  font-size: 12px;
  line-height: 18px;
}
.omo-service__table-list li {
  position: relative;
  padding-left: 14px;
}
.omo-service__table-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ============================================================
  ご利用方法
============================================================ */
.omo-service__procedure {
  padding: 88px 0;
}

.omo-service__procedure-group {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 2px solid var(--omo-text);
}
/* .omo-service__procedure-group:first-of-type {
  margin-top: 24px;
} */

.omo-service__procedure-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.omo-service__procedure-icon {
  width: 56px;
  height: 56px;
}
.omo-service__procedure-title {
  color: var(--omo-text);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
}
.omo-service__procedure-desc {
  margin-top: 24px;
  color: var(--omo-sub);
  font-size: 16px;
  line-height: 29px;
}
.omo-service__procedure-note {
  margin-top: 8px;
  color: var(--omo-sub);
  font-size: 14px;
  line-height: 26px;
}

.omo-service__step-list {
  margin-top: 24px;
  padding: 16px 48px;
  background: #fff;
  border: 1px solid var(--omo-icon);
  border-radius: 6px;
}
.omo-service__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--omo-key);
}
.omo-service__step:first-child {
  border-top: none;
}
.omo-service__step-media {
  /* PCはバッジ・アイコンともに横並びの行内アイテムのまま */
  display: contents;
}
.omo-service__step-badge {
  flex: none;
  padding: 5px 11px;
  background: var(--omo-icon);
  border-radius: 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.omo-service__step-icon {
  position: relative;
  flex: none;
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.omo-service__step-icon-layer {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}
.omo-service__step-icon-layer--a {
  inset: 4.95% 3.97% 62.53% 61.69%;
}
.omo-service__step-icon-layer--b {
  inset: 25.62% 9.21% 8.24% 9.21%;
}
.omo-service__step-icon-layer--mail {
  inset: 25.52% 14.29% 24.48% 16.07%;
}
.omo-service__step-icon-layer--hold4 {
  inset: 11.21% 10.71% 10.21% 10.71%;
}
.omo-service__step-body {
  flex: 1 1 0;
  min-width: 0;
}
.omo-service__step-title {
  color: var(--omo-text);
  font-size: 16px;
  line-height: 29px;
}
.omo-service__step-title > a{
  text-decoration: underline;
}
.omo-service__step-note {
  margin-top: 8px;
  color: var(--omo-sub);
  font-size: 14px;
  line-height: 26px;
}
.omo-service__step-note > a{
  text-decoration: underline;
}
.omo-service__step-note--limit,
.omo-service__step-note--annotation {
  font-size: 12px;
  line-height: 18px;
}
.omo-service__step-note--icon {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.omo-service__step-inline-icon {
  width: 24px;
  height: 24px;
}

/* ============================================================
  よくあるご質問はこちら
============================================================ */
.omo-service__faq {
  padding: 88px 0 89px;
}

.omo-service__faq .omo-service__h2{
  margin-bottom: 56px;
}

.omo-service__faq-group {
  border-top: 2px solid var(--omo-text);
  /* height: 104px;
  line-height: 104px; */
}
/* .omo-service__faq-group:first-of-type {
  margin-top: 24px;
} */

.omo-service__faq-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  height: 104px;
  line-height: 104px;
}
.omo-service__faq-icon {
  width: 56px;
  height: 56px;
}
.omo-service__faq-title {
  flex: 1 1 auto;
  color: var(--omo-text);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
}
.omo-service__faq-group-arrow {
  flex: none;
  color: var(--omo-text);
  font-size: 12px;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
  margin-right: 20px;
}
.omo-service__faq-list{
  margin-bottom: 52px;
}
.omo-service__faq-group.is-collapsed .omo-service__faq-group-arrow {
  transform: rotate(0deg);
}

/* .omo-service__faq-list {
  margin-top: 24px;
} */
.omo-service__faq-group.is-collapsed .omo-service__faq-list {
  display: none;
}

.omo-service__faq-item {
  border-top: 1px solid var(--omo-icon);
}
.omo-service__faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px 28px;
  background: var(--omo-bg-alt);
  border: none;
  color: var(--omo-text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}
.omo-service__faq-arrow {
  flex: none;
  color: var(--omo-icon);
  font-size: 12px;
  transition: transform 0.2s ease;
}
.omo-service__faq-item.is-open .omo-service__faq-arrow {
  transform: rotate(180deg);
}
.omo-service__faq-a {
  display: none;
  padding: 14px 84px 14px 28px;
  background: #fff;
  color: var(--omo-sub);
  font-size: 14px;
  line-height: 26px;
}
.omo-service__faq-item.is-open .omo-service__faq-a {
  display: block;
}

.omo-service__faq-item.is-open .omo-service__faq-a p > a{
  text-decoration: underline;
}

p.omo-service__lead-card-note{
  font-size: 11px;
  color: var(--omo-sub);
  line-height: 26px;
}
