@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #000;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
body.m_fixed_sns {
  padding-bottom: 75px;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  outline: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

table {
  border: 1px solid #eee;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
table th,
table td {
  border: 1px solid #eee;
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
}

li {
  border: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* メインコンテンツをびよーんと伸ばす */
#l-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* フッターはそのままの位置（一番下）へ */
#footer {
  margin-top: auto;
}

.inner {
  margin: 0 auto;
  max-width: 100%;
  padding-inline: 20px;
  box-sizing: border-box;
}

@media screen and (min-width: 375px) {
  .inner {
    max-width: 375px;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1280px;
  }
}
@media screen and (min-width: 375px) {
  .u-hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .u-hidden-sm {
    display: inline-block;
  }
}

@media screen and (min-width: 375px) {
  .u-hidden-xl {
    display: inline-block;
  }
}
@media screen and (min-width: 1280px) {
  .u-hidden-xl {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-top.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.scroll-top:active {
  transform: translateY(-1px);
}
.scroll-top a {
  display: block;
  width: 22px;
  height: 12px;
  color: #382620;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
}
.scroll-top a:hover {
  opacity: 0.6;
}
.scroll-top__icon:before {
  content: "\f077";
  bottom: 11px;
  right: 11px;
}

/* ページ下部に一瞬現れる固定用ヘッダーのクローンを隠す */
.l-header-fixed,
.is-fixed-header {
  opacity: 0;
  transition: opacity 0.3s;
}

/* 準備ができたら表示させる（テーマのクラス名に合わせて調整） */
body.is-scrolled .l-header-fixed {
  opacity: 1;
}

/* スライダーが動き出す前、1枚目以外のスライドを非表示にする */
.header-image-slider .slider-item:not(:first-child) {
  display: none;
}

/* スライダーの準備ができたら（slickクラスがついたら）表示させる */
.header-image-slider.slick-initialized .slider-item {
  display: block !important;
}

/* ついでに：高さが500pxに固定されているので、はみ出しを物理的にカット */
.main-visual {
  overflow: hidden;
  max-height: 700px;
  img {
    width: 100%; /* 横幅は任意 */
    height: clamp(300px, 100px + 31.25vw, 700px);
    object-fit: cover; /* 画像が歪まないように調整 */
  }
}

/* 全てのボタンと送信ボタンの色を強制的に変更 */
/* button,
input[type="button"],
input[type="submit"],
.u-btn {
  background-color: #e6a83c !important;
  color: #ffffff !important;
  border: none !important;
} */
/* ホバー（マウスを乗せた時）の色も忘れずに */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.u-btn:hover {
  background-color: #ffc15e !important; /* 少し明るいオレンジ */
}

/* パンくずリスト全体の装飾 */
.breadcrumbs__inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
@media screen and (min-width: 375px) {
  .breadcrumbs__inner {
    max-width: 375px;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumbs__inner {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumbs__inner {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1280px) {
  .breadcrumbs__inner {
    max-width: 1280px;
  }
}

.breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
}

/* リンクの色をブランドカラーに */
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #e6a83c; /* ホバーでゴールドに */
}

/* 区切り文字（ > ）の調整 */
.breadcrumbs span {
  margin: 0 8px;
  color: #ccc;
}

/* 背景を透明にする場合 */
.l-header-custom,
.l-header-default,
.l-header-center,
.l-header-row {
  background-color: transparent !important;
}

/* または、スライダー上の文字を見やすくするために半透明にする場合 */
.l-header-custom {
  background-color: #fffacd; /* 白の50%透明 */
}

.l-container {
  background-color: #fff;
  color: #000;
}

.header__nav {
  display: flex;
  justify-content: space-between;
}

.header__list {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 375px) {
  .header__list {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .header__list {
    display: flex;
  }
}

.top__inner {
  font-size: 24px;
  padding-bottom: 40px;
}

.top__button {
  padding: 20px;
  background-color: #ffec80;
  width: 500px;
  margin: 0 auto;
  margin-top: 40px;
}
.top__button a {
  color: #fff;
}

.top__button_bl {
  padding: 20px;
  background-color: #ffd700;
  width: 500px;
  margin: 20px auto 0;
}
.top__button_bl a {
  color: #fff;
}

.p-step {
  padding: 120px 0 160px;
  background: #fff7cc;
  margin: 20px auto 0;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-step {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  }
}
.p-step__title {
  margin-bottom: 40px;
  font-size: 2rem;
}
.p-step__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-step__list {
    grid-template-columns: 1fr;
  }
}
.p-step__item {
  padding: 20px 10px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
.p-step__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 45px 0 45px 12px;
  z-index: 2;
}
.p-step__item--1 {
  background: #f5f5f5;
}
.p-step__item--1::after {
  border-color: transparent transparent transparent #f5f5f5;
}
.p-step__item--2 {
  background: #f5f5f5;
}
.p-step__item--2::after {
  border-color: transparent transparent transparent #f5f5f5;
}
.p-step__item--3 {
  background: #ffc400;
}
.p-step__item--3::after {
  border-color: transparent transparent transparent #ffc400;
}
.p-step__item--4 {
  background: #ffe066;
}
.p-step__item--4::after {
  border-color: transparent transparent transparent #ffe066;
}
.p-step__item--5 {
  background: #ffe066;
}
.p-step__item--5::after {
  border-color: transparent transparent transparent #ffe066;
}
.p-step__number {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.p-step__text {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #000;
}

.main-visual__btn .c-btn__outline {
  font-size: 2rem;
  font-weight: bold;
}

.main-visual__btn {
  background-color: #ffc400;
  border-radius: 16px;
}

.c-btn__outline:hover {
  border: none;
}

.category-section {
  padding-top: 80px;
  padding-bottom: 120px;
}

.category-section__lead {
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 40px;
}

.category-section__description {
  font-size: 1.25rem;
}

.category-section__lead-small {
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: #000;
}

.category-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

}

.category-grid {
  margin-top: -75px;
  padding-bottom: 50px;
  padding-top: 80px;
  background-color: #d4d4d4;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .category-grid {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  }

  .category-grid__inner.inner {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}

/* 1列目（3列均等） */
.row-3 .category-item {
  width: calc(33.333% - 13.333px); /* 隙間を考慮した3等分 */
}

/* 2列目（2列中央寄せ） */
.row-2 {
  justify-content: center; /* 中央に寄せる */
}

.row-2 .category-item {
  width: calc(33.333% - 13.333px); /* 1列目と同じ幅に合わせる */
}

/* 装飾（あしらい提案：清潔感のあるBtoBスタイル） */
.category-item {
  border: 1px solid #000 !important;
  padding: 20px;
  text-align: center;
  background: #ffd700 !important;
  font-weight: bold;
  color: #000 !important;
  border-radius: 16px;
  font-size: 2rem;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  /* --- なめらか設定の肝 --- */
  transition:
    transform 0.2s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.2s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.3s ease;
  will-change: transform, box-shadow;
}
@media screen and (max-width: 768px) {
  .category-item {
    font-size: 1.25rem;
  }
}
.category-item:hover {
  background-color: #efeeeb !important; /* アクセントカラーに変化 */
  color: #000 !important;
  cursor: pointer;
  /* 2. 影の分（4px）だけ右下に移動させる */
  transform: translate(4px, 4px);
  /* 3. 移動した分、影をゼロにする */
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
.category-item:active {
  transform: translate(5px, 5px);
  transition: transform 0.05s;
}

.category-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .category-section__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.category-section__text {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .category-section__text {
    width: 60%;
  }
}
.category-section__image {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .category-section__image {
    width: 35%;
  }
}
.category-section__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.category-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 375px) {
  .category-item {
    padding: 20px 10px 20px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .category-item {
    padding: 30px 43px 30px 30px;
  }
}

.category-item:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #000;
  border-radius: 5px;
}
@media screen and (min-width: 375px) {
  .category-item:before {
    display: none;
  }
}

.category-item:after {
  content: "";
  position: absolute;
  top: 47%;
  right: 43px;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffec80;
  border-right: 2px solid #ffec80;
}
@media screen and (min-width: 375px) {
  .category-item:after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .category-item:after {
    display: block;
  }
}

.category-section__midashi {
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.25rem;
  color: #000;
}

.contact__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-inline: 40px;
  }
}

.p-form__list {
  margin-top: 60px;
  padding-top: 20px;
}

.p-form__label {
  padding-top: 20px;
  display: block;
}

.p-form__field {
  display: block;
  padding-top: 10px;
}

.p-button {
  padding: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 10px 20px;
  background-color: #ffec80 !important;
  color: #d4d4d4 !important;
  font-weight: bold;
  cursor: pointer;
}

.contact__big-text {
  padding-top: 40px;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .contact__big-text {
    font-size: 36px;
  }
}

.contact__small-text {
  padding-top: 20px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .contact__small-text {
    font-size: 24px;
  }
}

/* 電話番号フィールドの親要素をFlexboxにする */
.p-form__field .mwform-tel-field {
  display: flex !important;
  align-items: center; /* 縦方向の中央揃え */
  gap: 5px; /* ボックス間の隙間を固定 */
}

/* 各入力ボックスの幅を調整（必要に応じて） */
.p-form__field .mwform-tel-field input[type="text"] {
  flex: 1; /* 幅を均等に広げる */
  min-width: 0; /* flexアイテムの縮小を許可 */
  margin: 0 !important; /* 余計な余白を消す */
}

/* ハイフン（テキスト部分）の余白調整 */
.p-form__field .mwform-tel-field span {
  display: inline-block;
  flex-shrink: 0; /* ハイフンが潰れないようにする */
}

.comparison__lead {
  font-size: 28px;
  font-weight: bold;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .comparison__lead {
    padding-top: 0;
  }
}

.comparison__lead-small {
  font-size: 18px;
}

.comparison__grid {
  display: grid;
  /* スマホ版：1fr（均等幅）を2つ。minmax(0, 1fr)にすることで「はみ出し」を防ぎます */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px; /* アイテム間の隙間 */
  width: 100%; /* 親の幅を100%に固定 */
}
@media screen and (min-width: 1024px) {
  .comparison__grid {
    /* PC版：4カラムに戻す */
    grid-template-columns: repeat(4, 1fr);
  }
}

.comparison__grid label {
  display: block;
  width: 100%; /* 子要素が親のグリッド幅いっぱいに広がるようにする */
  box-sizing: border-box;
}

.comparison__title {
  padding-top: 40px;
}

.p-result-item h3 {
  color: #333333 !important;
}

.result-content .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.result-content .inner h2 {
  text-align: center;
  margin-bottom: 40px;
}
.result-content .p-result-fallback-msg {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}
.result-content .p-result-fallback-msg p {
  color: #c53030;
  font-weight: bold;
  margin: 0;
}
.result-content .p-result-item {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
}
.result-content .p-result-item__score {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
  border-radius: 4px;
}
.result-content .p-result-item h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #000;
}
.result-content .p-result-item__desc {
  margin-bottom: 20px;
  line-height: 1.6;
}
.result-content .c-no-result {
  text-align: center;
  padding: 50px 20px;
  color: #000;
  background: #f9f9f9;
  border-radius: 8px;
}
.result-content .c-no-result p:first-child {
  font-weight: bold;
  font-size: 1.2rem;
}
.result-content .c-no-result div {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.result-content .c-button {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.result-content .c-button:hover {
  opacity: 0.8;
}
.result-content .p-question__button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background: #000;
  color: #fff;
  padding: 15px 50px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
.result-content .p-question__button a {
  color: inherit;
  text-decoration: none;
}

.company__image img {
  width: 300px;
  min-width: 100%;
}

.p-single-company__details {
  display: flex;
  gap: 40px;
  padding-top: 40px;
}

.company-info li {
  padding-bottom: 10px;
}

.company__image img {
  width: 300px;
  min-width: 100%;
}

.p-single-company__details {
  display: flex;
  gap: 40px;
  padding-top: 40px;
}

.company-info li {
  padding-bottom: 10px;
}

.p-question__button {
  padding: 40px;
  margin: 40px auto;
  padding: 20px 40px;
  border: 1px solid #000;
  background-color: #ffd700;
  color: #333333;
  font-weight: bold;
  cursor: pointer;
}

#footer {
  background-color: #333333;
  color: #fff;
  height: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
}

.privacy-policy__big-text {
  padding-top: 40px;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .privacy-policy__big-text {
    font-size: 28px;
  }
}

.privacy-policy__small-text {
  padding-top: 20px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .privacy-policy__small-text {
    font-size: 18px;
  }
}

.privacy-policy__small-text a {
  color: #000;
  text-decoration: solid underline;
}

.footer__inner {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .footer__inner {
    flex-direction: column !important;
  }
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    flex-direction: row !important;
    justify-content: center; /* これで中央に寄ります */
    align-items: center; /* 上下の高さを揃えます */
    flex-wrap: nowrap; /* 「絶対に改行するな」という強い命令です */
  }
}

@media screen and (min-width: 375px) {
  .copy {
    white-space: normal !important;
  }
}
@media screen and (min-width: 768px) {
  .copy {
    white-space: nowrap;
  }
}

.privacy-link a {
  color: #fff !important;
}
@media screen and (min-width: 375px) {
  .privacy-link a {
    white-space: normal !important;
  }
}
@media screen and (min-width: 768px) {
  .privacy-link a {
    white-space: nowrap;
  }
}

.policy-list a {
  color: #000;
  text-decoration: solid underline;
}

.c-button {
  padding: 10px 20px;
  border: 1px solid #ffd700;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
}

/*# sourceMappingURL=comparison.css.map */
