@charset "UTF-8";
:root {
  --color-light-orange: #ff9900;
  --color-super-light-orange: #ffebcc;
  --color-orange: #e35212;
  --color-yellow: #fbcd22;
  --color-white: #fff;
  --color-black: #252525;
}
/*------------------------------------------------------------------------------
共通設定
------------------------------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  background-color: var(--color-white);
  /* scroll-behavior: smooth; */
  color: var(--color-black);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
@media screen and (max-width: 768px) {
  html,
  body {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
}
body .sp-item {
  display: none !important;
}
@media screen and (max-width: 768px) {
  body .sp-item {
    display: block !important;
  }
}
body .pc-item {
  display: block !important;
}
@media screen and (max-width: 768px) {
  body .pc-item {
    display: none !important;
  }
}
a {
  text-decoration: underline;
}
.btn:hover {
  opacity: 0.7;
}
.btn-poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}
img {
  width: 100%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* 上へ戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 2px;
  background: #005bea;
  color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 1.4rem;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/*------------------------------------------------------------------------------
ファーストビューエリア
------------------------------------------------------------------------------*/
.fv-target {
  background-color: var(--color-light-orange);
  color: var(--color-white);
  font-size: min(calc(26 * 100vw / 1200), 26px);
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .fv-target {
    font-size: 1.6rem;
  }
}
.fv-text {
  font-size: min(calc(14 * 100vw / 1200), 14px);
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .fv-text {
    font-size: 1rem;
  }
}
.cards-scroll-container {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: min(20px, calc(20 * 100vw / 1200)) 0;
}
@media (max-width: 768px) {
  .cards-scroll-container {
    padding: 10px 0;
  }
}
/* トラック：JSで transform を連続更新 */
.cards-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 0; /* セット間の余白はゼロ固定（ズレ防止） */
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}
.cards-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: min(60px, calc(60 * 100vw / 1200));
}
.cards-set img {
  display: block;
  width: auto;
  height: min(120px, calc(120 * 100vw / 1200));
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cards-set img {
    height: 60px;
  }
}
/* 1周目と2週目のスペース用 */
.cards-spacer {
  flex: 0 0 auto;
}
/*------------------------------------------------------------------------------
CTAエリア
------------------------------------------------------------------------------*/
.cta-area {
  position: relative;
}
.cta-btn {
  position: absolute;
  width: 40%;
  top: 23%;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
}
.cta-btn-mail {
  left: 52%;
}
.cta-btn-download {
  left: 8%;
}
@media screen and (max-width: 768px) {
  .cta-btn {
    width: 90%;
  }
  .cta-btn-download {
    top: 15%;
    left: 5%;
  }
  .cta-btn-mail {
    top: 27%;
    left: 5%;
  }
}
/*------------------------------------------------------------------------------
悩みエリア
------------------------------------------------------------------------------*/
.nayami-area {
  position: relative;
  z-index: 1;
}
/*------------------------------------------------------------------------------
コンセプトエリア
------------------------------------------------------------------------------*/
.concept-area {
  background: var(--color-light-orange);
  margin: max(calc(-1 * (120 * 100vw / 1200)), -120px) auto 0;
  padding-bottom: min(calc(40 * 100vw / 1200), 40px);
}
@media screen and (max-width: 768px) {
  .concept-area {
    margin: -80px auto 0;
    padding-bottom: 40px;
  }
}
.concept-img-wrap {
  padding-top: min(calc(100 * 100vw / 1200), 100px);
}
@media screen and (max-width: 768px) {
  .concept-img-wrap {
    padding-top: 70px;
  }
}
.concept-text {
  font-size: min(calc(30 * 100vw / 1200), 30px);
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .concept-text {
    font-size: 1.8rem;
  }
}
.concept-text span {
  background-color: var(--color-white);
}
.concept-overview {
  margin: min(calc(40 * 100vw / 1200), 40px) min(calc(80 * 100vw / 1200), 80px);
}
@media screen and (max-width: 768px) {
  .concept-overview {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 20px;
  }
  .concept-overview img {
    width: 140vw;
    max-width: none;
    height: auto;
    display: block;
    padding: 0 10px;
  }
}
/*------------------------------------------------------------------------------
選ばれる理由エリア
------------------------------------------------------------------------------*/
.reason-area {
  margin: min(calc(100 * 100vw / 1200), 100px) auto;
}
@media screen and (max-width: 768px) {
  .reason-area {
    margin: 60px auto;
  }
}
.reason-area-ttl {
  margin-bottom: min(calc(100 * 100vw / 1200), 100px);
}
@media screen and (max-width: 768px) {
  .reason-area-ttl {
    margin-bottom: 60px;
  }
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: min(calc(100 * 100vw / 1200), 100px);
}
@media screen and (max-width: 768px) {
  .reason-list {
    gap: 60px;
  }
}
.reason-text {
  font-size: min(calc(30 * 100vw / 1200), 30px);
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .reason-text {
    font-size: 1.8rem;
  }
}
.reason-text span {
  color: var(--color-orange);
}
/*------------------------------------------------------------------------------
違いエリア
------------------------------------------------------------------------------*/
.difference-area {
  background: #f4f3f0;
  padding: min(calc(100 * 100vw / 1200), 100px) 0;
}
@media screen and (max-width: 768px) {
  .difference-area {
    padding: 50px 0;
  }
}
.difference-area-ttl {
  margin-bottom: min(calc(80 * 100vw / 1200), 80px);
}
@media screen and (max-width: 768px) {
  .difference-area-ttl {
    margin-bottom: 60px;
  }
}
.difference-text {
  font-size: min(calc(30 * 100vw / 1200), 30px);
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
  margin-bottom: min(calc(60 * 100vw / 1200), 60px);
}
@media screen and (max-width: 768px) {
  .difference-text {
    font-size: 1.8rem;
  }
}
.difference-table {
  margin: 0 min(calc(80 * 100vw / 1200), 80px) min(calc(60 * 100vw / 1200), 60px);
  width: min(1040px, calc(1040 * 100vw / 1200));
}
@media screen and (max-width: 768px) {
  .difference-table {
    margin: 40px auto;
    width: 100%;
  }
}
/*------------------------------------------------------------------------------
メリットエリア
------------------------------------------------------------------------------*/
.benefit-area {
  padding-top: min(calc(100 * 100vw / 1200), 100px);
  margin-bottom: min(calc(100 * 100vw / 1200), 100px);
  background-color: var(--color-light-white);
  background-image: url(../images/bg_benefit.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .benefit-area {
    background-image: url(../images/bg_benefit_sp.webp);
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.benefit-area-ttl {
  margin-bottom: min(calc(60 * 100vw / 1200), 60px);
}
@media screen and (max-width: 768px) {
  .benefit-area-ttl {
    margin-bottom: 60px;
  }
}
.benefit-wrap {
  position: relative;
  margin: 0 min(calc(40 * 100vw / 1200), 40px);
}
@media screen and (max-width: 768px) {
  .benefit-wrap {
    margin: 0 20px;
  }
}
.benefit-list-brand {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
}
@media screen and (max-width: 768px) {
  .benefit-list-brand {
    position: relative;
    background-color: #ff8500;
    margin: 0 0 60px 0;
    padding: 5em 2em 0.5em 2em;
    top: initial;
    left: initial;
    transform: initial;
    width: initial;
  }
  .benefit-list-brand::before {
    content: "広告主";
    position: absolute;
    top: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    padding: 0.5em 2em;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
  }
}
.benefit-list-consumer {
  position: absolute;
  top: 60%;
  left: 22%;
  transform: translateX(-50%);
  width: 33%;
}
@media screen and (max-width: 768px) {
  .benefit-list-consumer {
    position: relative;
    background-color: #ff9900;
    margin: 0 0 60px 0;
    padding: 5em 2em 0.5em 2em;
    top: initial;
    left: initial;
    transform: initial;
    width: initial;
  }
  .benefit-list-consumer::before {
    content: "消費者";
    position: absolute;
    top: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    padding: 0.5em 2em;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
  }
}
.benefit-list-merchant {
  position: absolute;
  top: 62%;
  left: 78%;
  transform: translateX(-50%);
  width: 33%;
}
@media screen and (max-width: 768px) {
  .benefit-list-merchant {
    position: relative;
    background-color: var(--color-yellow);
    margin: 0;
    padding: 5em 2em 0.5em 2em;
    top: initial;
    left: initial;
    transform: initial;
    width: initial;
  }
  .benefit-list-merchant::before {
    content: "加盟店";
    position: absolute;
    top: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    padding: 0.5em 2em;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
  }
}
.benefit-list-brand li,
.benefit-list-consumer li,
.benefit-list-merchant li {
  list-style: none;
  position: relative;
  padding-left: 1.4em;
  font-size: min(calc(20 * 100vw / 1200), 20px);
  font-weight: 600;
  margin-bottom: min(calc(14 * 100vw / 1200), 14px);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .benefit-list-brand li,
  .benefit-list-consumer li,
  .benefit-list-merchant li {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
}
.benefit-list-brand li span,
.benefit-list-consumer li span,
.benefit-list-merchant li span {
  background-color: var(--color-white);
}
.benefit-list-brand li::before,
.benefit-list-consumer li::before,
.benefit-list-merchant li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  background-image: url(../images/icon_check_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/*------------------------------------------------------------------------------
ギフトカードイメージエリア
------------------------------------------------------------------------------*/
.gift-card-area {
  padding: min(calc(80 * 100vw / 1200), 80px) 0;
  background-color: var(--color-light-orange);
}
@media screen and (max-width: 768px) {
  .gift-card-area {
    padding: 60px 0;
  }
}
.gift-card-area-ttl {
  margin-bottom: min(calc(60 * 100vw / 1200), 60px);
}
@media screen and (max-width: 768px) {
  .gift-card-area-ttl {
    margin-bottom: 20px;
  }
}
.gift-card-area-text {
  font-size: min(calc(26 * 100vw / 1200), 26px);
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
  margin: 0 min(calc(40 * 100vw / 1200), 40px) min(calc(40 * 100vw / 1200), 40px);
}
@media screen and (max-width: 768px) {
  .gift-card-area-text {
    font-size: 1.6rem;
    margin: 0 20px 20px;
  }
}
.gift-card-wrap {
  display: flex;
  flex-direction: row;
  gap: min(calc(40 * 100vw / 1200), 60px);
  margin: 0 min(calc(40 * 100vw / 1200), 40px);
}
@media screen and (max-width: 768px) {
  .gift-card-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
.gift-card-pattern1,
.gift-card-pattern2 {
  display: flex;
  flex-direction: column;
  gap: min(calc(40 * 100vw / 1200), 40px);
  flex: 1;
  background-color: var(--color-white);
  padding: min(calc(40 * 100vw / 1200), 40px);
  box-shadow: min(calc(10 * 100vw / 1200), 10px) min(calc(10 * 100vw / 1200), 10px) 0 var(--color-black);
}
@media screen and (max-width: 768px) {
  .gift-card-pattern1,
  .gift-card-pattern2 {
    padding: 20px;
    box-shadow: 5px 5px 0 var(--color-black);
  }
}
.gift-card-pattern-ttl {
  font-size: min(calc(30 * 100vw / 1200), 30px);
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .gift-card-pattern-ttl {
    font-size: 2.4rem;
  }
}
.gift-card-pattern-ttl span {
  display: inline-block;
  position: relative;
  padding: 0;
}
.gift-card-pattern-ttl span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: min(calc(8 * 100vw / 1200), 8px);
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .gift-card-pattern-ttl span::after {
    height: 6px;
  }
}
.spec-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
  font-size: min(calc(18 * 100vw / 1200), 18px);
}
@media screen and (max-width: 768px) {
  .spec-table {
    font-size: 1.6rem;
  }
}
.spec-table th {
  width: min(calc(100 * 100vw / 1200), 100px);
  white-space: nowrap;
  padding: 0.4em 1em 0.4em 0;
  vertical-align: top;
  line-height: 1.7;
  position: relative;
  text-align: left;
  font-weight: 400;
}
.spec-table td {
  padding: 0.4em 0;
  padding-left: 0.5em;
  vertical-align: top;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph;
}
/* コロンを自動挿入 */
.spec-table th::after {
  content: "：";
  position: absolute;
  right: 0em;
}
/* 注釈 */
.spec-note {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #666;
  margin: 0 min(calc(20 * 100vw / 1200), 20px);
}
@media screen and (max-width: 768px) {
  .spec-table th {
    width: 5.5em;
  }
  .spec-table td {
    font-size: 0.9em;
  }
}
/*--------------------------------------------------------
よくある質問エリア
--------------------------------------------------------*/
.faq-area {
  margin: 0 auto;
  padding: min(calc(100 * 100vw / 1200), 100px) 0 min(calc(60 * 100vw / 1200), 60px) 0;
  background-color: var(--color-super-light-orange);
}
@media screen and (max-width: 768px) {
  .faq-area {
    margin: 0 auto;
    padding: 60px 0 40px;
  }
}
.faq-items {
  padding: min(calc(40 * 100vw / 1200), 40px) min(calc(80 * 100vw / 1200), 80px) 0;
  overflow-anchor: none;
}
@media screen and (max-width: 768px) {
  .faq-items {
    padding: 20px 20px 0;
  }
}
.acd-check {
  display: none;
}
.acd-label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: flex-start;
  padding: 0.5em 2em 0.5em 1em;
  font-size: min(calc(18 * 100vw / 1200), 18px);
  font-weight: 600;
  position: relative;
  text-align: justify;
  background-color: var(--color-black);
  color: var(--color-light-orange);
}
@media screen and (max-width: 768px) {
  .acd-label {
    font-size: 1.8rem;
  }
}
.acd-label:before {
  content: "Q";
  color: var(--brand-orange);
  font-weight: 600;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-label:after {
  content: "＋";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .acd-label:after {
    right: 0.5em;
  }
}
.acd-content {
  display: grid;
  /* ← 横並び：1列目=「A」用 2列目=本文 */
  grid-template-columns: 2em 1fr;
  /* ← 閉じてる間は中身の行を0frで潰す（高さ可変でもアニメ可） */
  grid-template-rows: 0fr;
  align-items: start;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.28s ease, padding-block 0.28s ease, opacity 0.18s ease;
  font-size: min(calc(18 * 100vw / 1200), 18px);
  /* 閉じている間は縦パディング0で“上ずれ感”を抑える */
  padding: 0 min(calc(60 * 100vw / 1200), 60px) 0 min(calc(20 * 100vw / 1200), 20px);
  text-align: justify;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-top-width: 0;
}
@media screen and (max-width: 768px) {
  .acd-content {
    font-size: 1.8rem;
    padding: 0 1em 0 1em;
  }
}
/* gridの0frを機能させるため、中身はoverflow:hiddenに */
.acd-content > * {
  grid-column: 2;
  min-height: 0; /* 0fr時のつぶれ対策 */
  overflow: hidden;
}
/* 開いた状態 */
.acd-check:checked ~ .acd-content {
  grid-template-rows: 1fr; /* 実高までなめらかに展開 */
  opacity: 1;
  visibility: visible;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.acd-content:before {
  content: "A";
  grid-column: 1;
  color: var(--brand-yellow);
  font-weight: 600;
}
.acd-check:checked + .acd-label:after {
  content: "ー";
}
/* .qa-box {
  border-bottom: 1px solid #ddd;
  padding: min(calc(20 * 100vw / 1200), 20px) 0;
}
.qa-box:first-of-type {
  border-top: 1px solid #ddd;
} */
/*--------------------------------------------------------
会社概要エリア
--------------------------------------------------------*/
.company-area {
  width: 100%;
  background-color: var(--color-yellow);
  padding: min(calc(100 * 100vw / 1200), 100px) 0 min(calc(60 * 100vw / 1200), 60px) 0;
}
@media screen and (max-width: 768px) {
  .company-area {
    padding: 60px 0 40px 0;
  }
}
.company-area-ttl {
  margin-bottom: min(calc(60 * 100vw / 1200), 60px);
}
@media screen and (max-width: 768px) {
  .company-area-ttl {
    margin-bottom: 40px;
  }
}
.company-area-text {
  font-size: min(calc(26 * 100vw / 1200), 26px);
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
  margin: 0 min(calc(80 * 100vw / 1200), 40px) min(calc(40 * 100vw / 1200), 40px);
}
@media screen and (max-width: 768px) {
  .company-area-text {
    font-size: 1.6rem;
    margin: 0 20px 20px;
  }
}
.company-area-text span {
  border-bottom: 6px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .company-area-text span {
    border-bottom: 4px solid var(--color-white);
  }
}
.company-area-img {
  width: 80%;
  margin: min(calc(60 * 100vw / 1200), 60px) auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .company-area-img {
    margin: 20px auto;
  }
}
.company-area-list {
  background-color: var(--color-white);
  box-shadow: min(calc(10 * 100vw / 1200), 10px) min(calc(10 * 100vw / 1200), 10px) 0 var(--color-black);
  width: 50%;
  margin: 0 auto min(calc(60 * 100vw / 1200), 60px) auto;
  font-size: min(calc(20 * 100vw / 1200), 20px);
  padding: 1em 2em;
}
@media screen and (max-width: 768px) {
  .company-area-list {
    box-shadow: 6px 6px 0 var(--color-black);
    width: 80%;
    margin: 0 auto 40px auto;
    font-size: 1.8rem;
    padding: 1em 1.5em;
  }
}
.company-area-list li {
  list-style: none;
  position: relative;
  padding-left: 1.4em;
  font-size: min(calc(20 * 100vw / 1200), 20px);
  font-weight: 600;
  text-align: justify;
  line-height: 1.7;
  display: flex;
  align-items: center;
  min-height: 1.7em;
}
@media screen and (max-width: 768px) {
  .company-area-list li {
    font-size: 1.4rem;
    align-items: flex-start;
    padding-top: 0.2em;
  }
}
.company-area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-image: url(../images/icon_check_black.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .company-area-list li::before {
    top: 0.6em;
    transform: none;
  }
}
.company-info-table-wrap {
  background-color: var(--color-white);
  margin: 0 min(calc(80 * 100vw / 1200), 80px);
  border-radius: min(calc(40 * 100vw / 1200), 40px);
  padding: min(calc(20 * 100vw / 1200), 20px) min(calc(40 * 100vw / 1200), 40px);
}
@media screen and (max-width: 768px) {
  .company-info-table-wrap {
    margin: 0 10px;
    border-radius: 20px;
    padding: 10px 20px;
  }
}
.company-info-table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  margin: min(calc(60 * 100vw / 1200), 60px) auto;
}
@media screen and (max-width: 768px) {
  .company-info-table {
    margin: 40px auto;
  }
}
.company-info-table th {
  font-size: 1.8rem;
  font-weight: bold;
  width: 30%;
  padding: 30px 40px;
  border-top: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .company-info-table th {
    font-size: 1.4rem;
    width: 30%;
    padding: 1em 0.5em;
  }
}
.company-info-table td {
  font-size: 1.8rem;
  width: 70%;
  padding: 30px 40px;
  border-top: 1px solid #ccc;
  text-align: justify;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .company-info-table td {
    font-size: 1.4rem;
    width: 70%;
    padding: 1em 0.5em;
  }
}
/*--------------------------------------------------------
あいさつエリア
--------------------------------------------------------*/
.greeting-area {
  padding-top: min(calc(100 * 100vw / 1200), 100px);
  margin-bottom: min(calc(100 * 100vw / 1200), 100px);
  background-color: var(--color-light-white);
  background-image: url(../images/bg_greeting.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .greeting-area {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.greeting-area-ttl {
  margin-bottom: min(calc(60 * 100vw / 1200), 60px);
}
@media screen and (max-width: 768px) {
  .greeting-area-ttl {
    margin-bottom: 40px;
  }
}
.greeting-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: min(calc(40 * 100vw / 1200), 40px);
  padding: 0 min(calc(100 * 100vw / 1200), 100px);
  margin: 0 min(calc(80 * 100vw / 1200), 80px);
}
@media screen and (max-width: 768px) {
  .greeting-wrap {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    margin: 0 20px;
  }
}
.greeting-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(5 * 100vw / 1200), 5px);
}
@media screen and (max-width: 768px) {
  .greeting-img {
    gap: 5px;
  }
}
.greeting-img img {
  width: 100%;
  background-color: var(--color-white);
  border-radius: min(calc(40 * 100vw / 1200), 40px);
  padding-top: min(calc(20 * 100vw / 1200), 20px);
  box-shadow: min(calc(4 * 100vw / 1200), 4px) min(calc(4 * 100vw / 1200), 4px) min(calc(8 * 100vw / 1200), 8px) rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .greeting-img img {
    width: 70%;
    border-radius: 20px;
    padding-top: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  }
}
.greeting-img p {
  font-size: min(calc(18 * 100vw / 1200), 18px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .greeting-img p {
    font-size: 1.4rem;
  }
}
.greeting-text p {
  font-size: min(calc(18 * 100vw / 1200), 18px);
  text-align: justify;
  line-height: 1.7;
  margin-bottom: min(calc(10 * 100vw / 1200), 10px);
}
@media screen and (max-width: 768px) {
  .greeting-text p {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------
フォームエリア
--------------------------------------------------------*/
.form-area {
  background-color: var(--color-light-orange);
  padding: min(calc(100 * 100vw / 1200), 100px) 0 min(calc(60 * 100vw / 1200), 60px) 0;
}
@media screen and (max-width: 768px) {
  .form-area {
    padding: 60px 0;
  }
}
.form-area-ttl {
  margin-bottom: min(calc(60 * 100vw / 1200), 60px);
}
@media screen and (max-width: 768px) {
  .form-area-ttl {
    margin-bottom: 40px;
  }
}
.form-content {
  background-color: var(--color-white);
  margin: 0 min(calc(120 * 100vw / 1200), 120px);
  padding: min(calc(80 * 100vw / 1200), 80px) min(calc(160 * 100vw / 1200), 160px);
}
@media screen and (max-width: 768px) {
  .form-content {
    margin: 0 10px;
    padding: 40px 10px;
  }
}
/*--------------------------------------------------------
フッターエリア
--------------------------------------------------------*/
.footer-area {
  margin: min(calc(40 * 100vw / 1200), 40px) auto;
  text-align: center;
  font-size: min(calc(16 * 100vw / 1200), 16px);
}
@media screen and (max-width: 768px) {
  .footer-area {
    margin: 40px auto 20px;
    font-size: 1.4rem;
  }
}
.footer-area a {
  color: var(--color-black);
  text-decoration: none;
}
.footer-area a:hover {
  text-decoration: underline;
}
.footer-area .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-area .menu li {
  margin: 0;
  padding: 0 min(calc(20 * 100vw / 1200), 20px);
}
@media screen and (max-width: 768px) {
  .footer-area .menu li {
    padding: 0 20px;
  }
}
.footer-area .copyright {
  margin: 0;
  padding: min(calc(20 * 100vw / 1200), 20px) 0 0 0;
}
@media screen and (max-width: 768px) {
  .footer-area .copyright {
    padding: 20px 0 0 0;
  }
}
/*--------------------------------------------------------
追従ボタン
--------------------------------------------------------*/
.fixed-buttons {
  position: fixed;
  top: 65%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: none;
  flex-direction: column;
  transition: opacity 0.3s ease-in-out;
  gap: 20px;
}
.fixed-buttons a {
  display: block;
  line-height: 0;
}
.fixed-buttons img {
  display: block;
  width: min(calc(60 * 100vw / 1200), 60px);
  height: auto;
  border-radius: 0;
  margin: 0;
}
.fixed-buttons.visible {
  display: flex;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .fixed-buttons {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    flex-direction: row;
    width: 100%;
    gap: 0;
    background: #fff;
  }
  .fixed-buttons a {
    flex: 1 1 33.333%;
  }
  .fixed-buttons img {
    width: 100%;
    height: auto;
    display: block;
  }
  .fixed-buttons.visible {
    display: flex;
    opacity: 1;
  }
}
