/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #333;
  --color-white: #fff;
  --color-black: #000;
  --color-navy: #3a4769;
  --color-navy-dark: #1e2738;
  --color-navy-mid: #20263e;
  --color-navy-text: #2e416e;
  --color-gold: #b7ab52;
  --color-gold-muted: #a9a062;
  --color-gold-dark: #7f6912;
  --color-gold-divider: #d0c8a0;
  --color-gold-badge-border: #998742;
  --color-red-dark: #9d1515;
  --color-red-badge-border: #a54a4a;
  --color-red-badge-text: #8e1c1c;
  --color-beige: #f5f3ec;
  --color-cream: #fcfaf3;
  --color-gray-light: #f5f5f5;
  --color-gray-answer: #f6f6f6;
  --color-gray-logo: #c5c5c5;
  --color-gray-mid: #999;
  --color-support-tab-strategy: #beb79d;
  --color-support-tab-sourcing: #b9af86;
  --color-support-tab-selection: #b2a46a;
  --color-shadow: rgba(0, 0, 0, 0.05);
  --color-kv-gold-gradient-start: rgba(182, 182, 100, 0.92);
  --color-kv-gold-gradient-mid: rgba(167, 167, 87, 0.88);
  --color-kv-gold-gradient-end: rgba(148, 148, 72, 0.88);
  --color-button-sheen: rgba(255, 255, 255, 0.2);
  --color-button-sheen-end: rgba(255, 255, 255, 0);
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 800px;
  --width-content: 1200px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-serif: "Shippori Mincho", serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header: 30;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: var(--color-black);
  background: var(--color-white);
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.8;
  font-size: 16px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-ptb {
  padding: 56px 0 64px;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 80px 0 100px;
  }
}

.u-sp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-sp-block {
    display: inline;
  }
}

.u-pc-block {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-pc-block {
    display: block;
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 20px 56px;
  box-shadow: 0 4px 2px var(--color-shadow);
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 24px 56px;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.8;
  }
}

.c-button--red {
  background-image: linear-gradient(var(--color-button-sheen) 0%, var(--color-button-sheen) 50%, var(--color-button-sheen-end) 51%, var(--color-button-sheen-end) 100%), linear-gradient(90deg, var(--color-red-dark) 0%, var(--color-red-dark) 100%);
}
.c-button--red .c-button-badge {
  border-color: var(--color-red-badge-border);
  color: var(--color-red-badge-text);
}

.c-button--gold {
  background-image: linear-gradient(var(--color-button-sheen) 0%, var(--color-button-sheen) 50%, var(--color-button-sheen-end) 51%, var(--color-button-sheen-end) 100%), linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold-dark) 100%);
}
.c-button--gold .c-button-badge {
  border-color: var(--color-gold-badge-border);
  color: var(--color-gold-dark);
}

.c-button-badge {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border: 1px solid;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-button-badge {
    font-size: 16px;
  }
}

.c-button-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.c-button-label {
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-button-label {
    font-size: 22px;
  }
}

.c-button-suffix {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-button-suffix {
    font-size: 20px;
  }
}

/*!
component > cta
------------------------------
*/
.c-cta {
  padding: 48px 0 56px;
  background-image: url(../img/common/bg-cta-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding: 80px 0;
    background-image: url(../img/common/bg-cta.png);
  }
}

.c-cta-inner {
  max-width: 880px;
  margin-inline: auto;
}

.c-cta-title {
  font-family: var(--font-family-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta-title {
    font-size: 38px;
  }
}
.c-cta-title span {
  display: block;
}
@media screen and (min-width: 1080px) {
  .c-cta-title span {
    display: inline;
  }
}

.c-cta-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.7;
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .c-cta-text {
    font-size: 18px;
  }
}
.c-cta-text span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-cta-text span {
    display: inline;
  }
}

.c-cta-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .c-cta-buttons {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }
}

/*!
component > form-page
------------------------------
*/
.c-form-page {
  background: var(--color-gray-light);
}

.c-form-page-kv {
  padding: 80px 0;
  background-image: url(../img/common/bg-page-kv-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-form-page-kv {
    padding: 120px 0;
    background-image: url(../img/common/bg-page-kv.png);
  }
}

.c-form-page-title-en {
  color: var(--color-gold);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-form-page-title-en {
    font-size: 18px;
  }
}

.c-form-page-title {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-form-page-title {
    font-size: 40px;
  }
}

.c-form-page-content {
  padding: 56px 0 64px;
}
@media screen and (min-width: 768px) {
  .c-form-page-content {
    padding: 80px 0 100px;
  }
}

.c-form-page-hubspot {
  background-color: var(--color-white);
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .c-form-page-hubspot {
    padding: 40px 64px;
  }
}

.c-form-page-thanks {
  text-align: center;
}

.c-form-page-thanks-text {
  line-height: 1.8;
}

.c-form-page-thanks-button {
  margin-top: 24px;
  max-width: 480px;
  margin-inline: auto;
}

/*!
component > title
------------------------------
*/
.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.c-section-title-eyebrow {
  font-family: var(--font-family-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1.7;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-section-title-eyebrow {
    font-size: 16px;
    letter-spacing: 0.5em;
  }
}

.c-section-title-heading {
  width: 100%;
}
.c-section-title-heading h2 {
  font-family: var(--font-family-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-section-title-heading h2 {
    font-size: 28px;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1080px) {
  .c-section-title-heading h2 {
    font-size: 32px;
  }
}

.c-section-title-accent {
  color: var(--color-gold);
}

.c-section-title-accent--muted {
  color: var(--color-gold-muted);
}

.c-section-title--on-dark .c-section-title-heading h2 {
  color: var(--color-white);
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  padding: 27px min(5%, 56px);
}

.l-header-logo {
  width: 120px;
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  background-color: var(--color-white);
  padding-block: 15px;
  padding-inline: min(5%, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-block: 20px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer-privacy {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .l-footer-privacy {
    gap: 25px;
  }
}
.l-footer-privacy img {
  width: 51px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-footer-privacy img {
    width: 70px;
  }
}

.l-footer-privacy-text,
.l-footer-company {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-navy-text);
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .l-footer-privacy-text,
  .l-footer-company {
    font-size: 14px;
  }
}

/*!
layout > page
------------------------------
*/
.l-page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-page-main {
  flex: 1;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  position: relative;
  background-image: url(../img/top/bg-top-kv-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .top-kv {
    background-image: url(../img/top/bg-top-kv.png);
  }
}

.top-kv-inner {
  position: relative;
  padding: 250px 0 40px;
}
@media screen and (min-width: 768px) {
  .top-kv-inner {
    padding: 250px 0 40px;
  }
}
@media screen and (min-width: 900px) {
  .top-kv-inner {
    padding: 130px 0 60px;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-inner {
    padding: 130px 0 100px;
  }
}

.top-kv-person {
  width: 75%;
  position: absolute;
  top: 48px;
  right: -3%;
}
@media screen and (min-width: 500px) {
  .top-kv-person {
    width: 330px;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-person {
    width: 380px;
    top: 30px;
  }
}
@media screen and (min-width: 900px) {
  .top-kv-person {
    width: 380px;
    top: auto;
    bottom: 0;
    right: -30px;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-person {
    width: 436px;
    top: auto;
    bottom: 0;
    right: -30px;
  }
}

.top-kv-content {
  max-width: 736px;
  position: relative;
  z-index: 1;
}

.top-kv-copy {
  font-family: var(--font-family-serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .top-kv-copy {
    font-size: 52px;
  }
}
.top-kv-copy span {
  display: block;
}
@media screen and (min-width: 1080px) {
  .top-kv-copy span {
    display: inline;
  }
}
.top-kv-copy span:first-child {
  color: var(--color-gold);
}

.top-kv-point {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .top-kv-point {
    margin-top: 12px;
    max-width: 564px;
  }
}

.top-kv-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .top-kv-buttons {
    margin-top: 48px;
    grid-template-columns: 1fr 1fr;
  }
}

.top-kv-note {
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
}

/*!
page > top > top-logo
------------------------------
*/
.top-logo-strip {
  background-color: var(--color-white);
  padding: 16px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-logo-strip {
    padding: 32px 20px;
  }
  .top-logo-strip .splide__list {
    display: flex !important;
    justify-content: center !important;
    gap: 36px !important;
  }
}

.top-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.top-logo-item img {
  width: auto;
  height: 50px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .top-logo-item img {
    height: 57px;
  }
}

/*!
page > top > top-problem
------------------------------
*/
.top-problem {
  background-color: var(--color-gray-light);
}

.top-problem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top-problem-list {
    grid-template-columns: 1fr 1fr;
    gap: 18px 36px;
    max-width: 874px;
    margin-inline: auto;
  }
}

.top-problem-item {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 21px 16px;
  box-shadow: 0 4px 4px var(--color-shadow);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
  line-height: 1.5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-problem-item {
    padding: 21px 26px;
    font-size: 24px;
  }
}
.top-problem-item span {
  display: block;
}

.top-problem-conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.top-problem-arrow {
  width: 194px;
  margin: 40px auto 24px;
}
@media screen and (min-width: 768px) {
  .top-problem-arrow {
    width: 243px;
    margin: 56px auto 24px;
  }
}

.top-problem-resolution {
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-problem-resolution {
    font-size: 28px;
  }
}

/*!
page > top > top-feature
------------------------------
*/
.top-feature {
  background-color: var(--color-navy-dark);
  background-image: url("../img/top/bg-top-feature-sp.png");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .top-feature {
    background-image: url("../img/top/bg-top-feature.png");
  }
}

.top-feature-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: feature;
}

.top-feature-section {
  padding: 24px 20px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  counter-increment: feature;
}
@media screen and (min-width: 500px) {
  .top-feature-section {
    padding: 32px;
  }
}
@media screen and (min-width: 768px) {
  .top-feature-section {
    padding: 48px;
    gap: 40px;
  }
}
.top-feature-section::before {
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1;
  font-size: 80px;
  color: var(--color-gold);
  opacity: 0.08;
}
@media screen and (min-width: 768px) {
  .top-feature-section::before {
    top: 20px;
    right: 40px;
    font-size: 116px;
  }
}

.top-feature-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .top-feature-head {
    gap: 24px;
    text-align: center;
  }
}

.top-feature-head-title {
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .top-feature-head-title {
    font-size: 32px;
  }
}
.top-feature-head-title span {
  color: var(--color-gold);
}

.top-feature-head-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .top-feature-head-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .top-feature-head-text span {
    display: block;
  }
}

.top-feature01-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 1080px) {
  .top-feature01-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-feature01-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 11px;
}
@media screen and (min-width: 1080px) {
  .top-feature01-item {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
}
.top-feature01-item:first-child .top-feature01-tab::before {
  display: none;
}
.top-feature01-item:last-child .top-feature01-tab::after {
  display: none;
}

.top-feature01-tab {
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.2;
  box-shadow: 0 4px 2px var(--color-shadow);
  grid-column: 1/2;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 10px 12px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .top-feature01-tab {
    writing-mode: horizontal-tb;
    padding: 12px;
  }
}
.top-feature01-tab::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 28px 0 28px;
  border-color: var(--color-white, transparent) transparent transparent transparent;
}
@media screen and (min-width: 1080px) {
  .top-feature01-tab::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-width: 21.5px 0 21.5px 14px;
    border-color: transparent transparent transparent var(--color-white, transparent);
  }
}
.top-feature01-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 28px 0 28px;
  border-color: var(--feature01-tab-bg, transparent) transparent transparent transparent;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .top-feature01-tab::after {
    left: auto;
    right: -14px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-width: 21.5px 0 21.5px 14px;
    border-color: transparent transparent transparent var(--feature01-tab-bg, transparent);
  }
}

.top-feature01-tab--strategy {
  --feature01-tab-bg: var(--color-support-tab-strategy);
  background-color: var(--feature01-tab-bg);
}

.top-feature01-tab--sourcing {
  --feature01-tab-bg: var(--color-support-tab-sourcing);
  background-color: var(--feature01-tab-bg);
}

.top-feature01-tab--selection {
  --feature01-tab-bg: var(--color-support-tab-selection);
  background-color: var(--feature01-tab-bg);
}

.top-feature01-tab--offer {
  --feature01-tab-bg: var(--color-gold-dark);
  background-color: var(--feature01-tab-bg);
  color: var(--color-white);
}

.top-feature01-panel {
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  box-shadow: 0 4px 4px var(--color-shadow);
  padding-left: 40px;
  list-style: disc;
}
@media screen and (min-width: 1080px) {
  .top-feature01-panel {
    padding: 20px 24px 20px 32px;
    flex-grow: 1;
  }
}

.top-feature01-panel-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.5;
}

.top-feature02-img,
.top-feature03-img {
  max-width: 812px;
  margin-inline: auto;
}

/*!
page > top > top-case
------------------------------
*/
.top-case {
  background-color: var(--color-beige);
}

.top-case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 16px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top-case-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1080px) {
  .top-case-list {
    grid-template-columns: 1fr;
  }
}

.top-case-item {
  background-color: var(--color-white);
  box-shadow: 0 4px 2px var(--color-shadow);
}
@media screen and (min-width: 1080px) {
  .top-case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.top-case-image {
  aspect-ratio: 335/223;
}
@media screen and (min-width: 1080px) {
  .top-case-image {
    aspect-ratio: 600/399;
  }
}
.top-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-case-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px 20px 20px;
}
@media screen and (min-width: 1080px) {
  .top-case-body {
    padding: 16px 48px 24px;
  }
}

.top-case-company {
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (min-width: 1080px) {
  .top-case-company {
    font-size: 30px;
  }
}

.top-case-tagline {
  font-family: var(--font-family-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1.5;
}
@media screen and (min-width: 1080px) {
  .top-case-tagline {
    font-size: 22px;
  }
}

.top-case-quote {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-font-base);
  line-height: 1.7;
  margin-top: 6px;
}
@media screen and (min-width: 1080px) {
  .top-case-quote {
    margin-top: 24px;
    font-size: 16px;
  }
}

.top-case-button {
  margin-top: 40px;
  max-width: 450px;
  margin-inline: auto;
}

/*!
page > top > top-flow
------------------------------
*/
.top-flow {
  background-image: url(../img/top/bg-flow-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .top-flow {
    background-image: url(../img/top/bg-flow.jpg);
  }
}

.top-flow-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.top-flow-item {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 18px 0;
  box-shadow: 0 4px 4px var(--color-shadow);
}

.top-flow-number {
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1.5;
  text-align: center;
  width: 64px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top-flow-number {
    font-size: 20px;
    width: 100px;
  }
}

.top-flow-divider {
  display: block;
  width: 1px;
  height: 46px;
  background-color: var(--color-gold-divider);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top-flow-divider {
    height: 57px;
  }
}

.top-flow-text {
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.5;
  padding: 0 26px;
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .top-flow-text {
    font-size: 20px;
    display: flex;
    align-items: center;
  }
}

.top-flow-note {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/*!
page > top > top-faq
------------------------------
*/
.top-faq {
  background-color: var(--color-gray-light);
}

.top-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.top-faq-item {
  box-shadow: 0 4px 2px var(--color-shadow);
}

.top-faq-question,
.top-faq-answer {
  display: flex;
  gap: 8px;
  padding: 18px 26px;
  overflow: hidden;
  align-items: baseline;
}
.top-faq-question::before,
.top-faq-answer::before {
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  flex-shrink: 0;
}

.top-faq-question {
  background-color: var(--color-white);
}
.top-faq-question::before {
  content: "Q.";
  color: var(--color-black);
}

.top-faq-answer {
  background-color: var(--color-gray-answer);
}
.top-faq-answer::before {
  content: "A.";
  color: var(--color-gold);
}

.top-faq-question-text,
.top-faq-answer-text {
  line-height: 1.5;
  flex: 1;
  color: var(--color-black);
}

.top-faq-question-text {
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
}

.top-faq-answer-text {
  font-size: 15px;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */