@charset "UTF-8";
:root {
  --round: "M PLUS Rounded 1c", sans-serif;
  --zenmaru: "Zen Maru Gothic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--zenmaru);
  font-weight: 700;
  color: #4a3223;
  background-color: #fdf6e6;
  line-height: 1.7;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
.round {
  font-family: var(--round);
}
.zenmaru {
  font-family: var(--zenmaru);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
  line-height: 0;
}

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

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
dt,
dd,
table,
figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

mark {
  background: linear-gradient(transparent 60%, #ffe58a 60%);
  color: inherit;
}

.wbr {
  display: inline-block;
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.section-title {
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;

  @media (width < 768px) {
    font-size: 1.375rem;
  }
}

/* ==========================================================================
   header / mv
   ========================================================================== */

.mv {
  background: linear-gradient(180deg, #fff7e3 0%, #fdf1d4 100%);
  padding: 1.5rem 0 2.5rem;
}

.mv-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;

  @media (width < 768px) {
    padding: 0 1rem;
  }
}

.mv-logo {
  margin: 0 auto 1rem;
  width: 12rem;
  height: auto;

  @media (width < 768px) {
    width: 9.375rem;
    margin-bottom: 0.75rem;
  }
}

.mv-notice {
  display: inline-block;
  background: #3c2b1e;
  color: #ffe58a;
  font-size: 1.125rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;

  @media (width < 768px) {
    font-size: 0.8125rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }
}

.mv-catch {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;

  @media (width < 768px) {
    font-size: 1.125rem;
  }
}

.mv-catch-area {
  display: inline-block;
  background: #f2941e;
  color: #fff;
  padding: 0.15em 0.6em;
  border-radius: 0.4em;
  margin-right: 0.3em;
}

.mv-title {
  font-size: 4.5rem;
  color: #5a3a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;

  @media (width < 768px) {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
  }
}

.mv-lead {
  font-size: 1.375rem;
  color: #e07a1f;
  margin-bottom: 1.5rem;

  @media (width < 768px) {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}

.mv-photo {
  width: 100%;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;

  @media (width < 768px) {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

.mv-badge-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;

  @media (width < 768px) {
    gap: 0.5rem;
  }
}

.mv-badge-list-item {
  width: 10.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #f6a53a, #ea7f1a);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.5rem rgba(180, 100, 20, 0.25);

  @media (width < 768px) {
    width: 6.5rem;
  }
}

.mv-badge-list-item-label {
  background: #fff;
  color: #e07a1f;
  font-size: 0.9375rem;
  padding: 0.15em 0.7em;
  border-radius: 1rem;
  margin-bottom: 0.4rem;

  @media (width < 768px) {
    font-size: 0.625rem;
    padding: 0.1em 0.5em;
  }
}

.mv-badge-list-item-value {
  font-size: 1.375rem;
  text-align: center;
  line-height: 1.3;

  @media (width < 768px) {
    font-size: 0.8125rem;
  }
}

.mv-note {
  font-size: 0.75rem;
  color: #7a5c3e;
  text-align: left;
  max-width: 40rem;
  margin: 0 auto 1.5rem;

  @media (width < 768px) {
    font-size: 0.625rem;
    margin-bottom: 1rem;
  }
}

.mv-button-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;

  @media (width < 768px) {
    gap: 0.5rem;
  }
}

.mv-button-list-item {
  display: block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  color: #ffe58a;
  background: linear-gradient(180deg, #7cb342 0%, #3f7d2c 100%);
  border: 0.1875rem solid #fff;
  box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.15);

  @media (width < 768px) {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    flex: 1 1 auto;
  }
}

/* ==========================================================================
   consult (繰り返しCTAブロック)
   ========================================================================== */

.consult {
  background: linear-gradient(180deg, #ffe58a 0%, #ffd45a 100%);
  padding: 2.5rem 1.5rem;

  @media (width < 768px) {
    padding: 1.5rem 1rem;
  }
}

.consult-inner {
  max-width: 40rem;
  margin: 0 auto;
  background: #f2941e;
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;

  @media (width < 768px) {
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
  }
}

.consult-doctor-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;

  @media (width < 768px) {
    gap: 1rem;
  }
}

.consult-doctor-list-item img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
  border: 0.25rem solid #fff;
  margin: 0 auto 0.5rem;

  @media (width < 768px) {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.consult-doctor-list-item-name {
  color: #fff;
  font-size: 0.8125rem;

  @media (width < 768px) {
    font-size: 0.6875rem;
  }
}

.consult-heading {
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;

  @media (width < 768px) {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.consult-check-list {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;

  @media (width < 768px) {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }
}

.consult-check-list-item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.0625rem;
  padding-bottom: 0.75rem;

  @media (width < 768px) {
    font-size: 0.875rem;
    padding-left: 1.5rem;
    padding-bottom: 0.6rem;
  }
}

.consult-check-list-item:last-child {
  padding-bottom: 0;
}

.consult-check-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid #4a3223;
  border-radius: 0.25rem;

  @media (width < 768px) {
    width: 1rem;
    height: 1rem;
  }
}

.consult-check-list-item::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.35em;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 0.1875rem solid #e02020;
  border-bottom: 0.1875rem solid #e02020;
  transform: rotate(-45deg);

  @media (width < 768px) {
    width: 0.55rem;
    height: 0.3rem;
    left: 0.22rem;
  }
}

.consult-second {
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 1rem;

  @media (width < 768px) {
    font-size: 1.0625rem;
  }
}

.consult-button {
  display: block;
  max-width: 26rem;
  margin: 0 auto 1rem;
  background: linear-gradient(180deg, #8bc34a 0%, #3f7d2c 100%);
  border: 0.1875rem solid #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.15);
}

.consult-button:last-child {
  margin-bottom: 0;
}

.consult-button-tag {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: #3f7d2c;
  font-size: 0.875rem;
  padding: 0.3rem;

  @media (width < 768px) {
    font-size: 0.6875rem;
  }
}

.consult-button-label {
  display: block;
  color: #ffe58a;
  font-size: 1.25rem;
  padding: 0.75rem;

  @media (width < 768px) {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

/* ==========================================================================
   worry
   ========================================================================== */

.worry {
  background: #2e2620 url("images/worried-photo.webp") no-repeat;
  background: #2e2620;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.worry .section-title {
  color: #fff;
  margin-bottom: 1.5rem;

  @media (width < 768px) {
    margin-bottom: 1.25rem;
  }
}

.worry-title-accent {
  color: #f2941e;
}

.worry-photo {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.5rem;

  @media (width < 768px) {
    max-width: 14rem;
  }
}

.worry-list {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;

  @media (width < 768px) {
    padding: 1rem;
  }
}

.worry-list-item {
  position: relative;
  padding-left: 1.75rem;
  color: #fff;
  font-size: 1.0625rem;
  padding-bottom: 0.75rem;

  @media (width < 768px) {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }
}

.worry-list-item:last-child {
  padding-bottom: 0;
}

.worry-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.125rem solid #f2941e;
  border-radius: 0.2rem;

  @media (width < 768px) {
    width: 0.9rem;
    height: 0.9rem;
  }
}

.worry-list-item::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.4em;
  width: 0.65rem;
  height: 0.35rem;
  border-left: 0.1875rem solid #f2941e;
  border-bottom: 0.1875rem solid #f2941e;
  transform: rotate(-45deg);
}

.worry-callout {
  display: inline-block;
  background: #fff2c4;
  color: #3c2b1e;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  line-height: 1.5;

  @media (width < 768px) {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

.worry-callout-accent {
  color: #e02020;
}

/* ==========================================================================
   choice
   ========================================================================== */

.choice {
  position: relative;
}

.choice-photo {
  width: 100%;
  aspect-ratio: 205 / 285;
  object-fit: cover;
}

.choice-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fdf6e6;
  color: #3c2b1e;
  font-size: 1.5rem;
  padding: 1rem 0.75rem;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);

  @media (width < 768px) {
    font-size: 1.0625rem;
    padding: 0.75rem 0.4rem;
  }
}

.choice-text-left {
  left: 2rem;

  @media (width < 768px) {
    left: 0.5rem;
  }
}

.choice-text-right {
  right: 2rem;

  @media (width < 768px) {
    right: 0.5rem;
  }
}

/* ==========================================================================
   about
   ========================================================================== */

.about {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.about .section-title {
  background: linear-gradient(90deg, #f2941e, #ee6c1e);
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;

  @media (width < 768px) {
    margin-bottom: 1.25rem;
  }
}

.about-lead {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;

  @media (width < 768px) {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.about-bubble-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;

  @media (width < 768px) {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
}

.about-bubble-list-item {
  background: #f2941e;
  color: #fff;
  font-size: 1.125rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1.5rem;

  @media (width < 768px) {
    font-size: 0.8125rem;
    padding: 0.6rem 1rem;
  }
}

.about-photo {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.5rem;
}

.about-bubble-single {
  display: inline-block;
  background: #ea7f1a;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.75rem 1.75rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;

  @media (width < 768px) {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
  }
}

.about-foot {
  font-size: 1.5rem;

  @media (width < 768px) {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   caution
   ========================================================================== */

.caution {
  text-align: center;
  padding-bottom: 2.5rem;
}

.caution-flag {
  display: inline-block;
  background: #ea7f1a;
  color: #fff;
  font-size: 1.75rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem 0.5rem 0 0;
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 1;

  @media (width < 768px) {
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
  }
}

.caution-panel {
  background: linear-gradient(180deg, #3c3c3c, #1c1c1c);
  color: #fff;
  padding: 2.5rem 1.5rem;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.caution-panel-lead {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;

  @media (width < 768px) {
    font-size: 1.0625rem;
  }
}

.caution-panel-strong {
  display: inline-block;
  background: #ffe58a;
  color: #3c2b1e;
  font-size: 1.75rem;
  padding: 0.25rem 1rem;
  margin-bottom: 0.5rem;

  @media (width < 768px) {
    font-size: 1.25rem;
  }
}

.caution-photo {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}

.caution-message {
  background: #fff;
  font-size: 1.5rem;
  padding: 2rem 1.5rem;
  line-height: 1.6;

  @media (width < 768px) {
    font-size: 1.25rem;
    padding: 1.5rem 1rem;
  }
}

.caution-message-accent {
  color: #e02020;
  border-bottom: 0.1875rem dotted #e02020;
}

/* ==========================================================================
   merit
   ========================================================================== */

.merit {
  padding: 3rem 1.5rem;
  background: #f4941e;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.merit .section-title {
  color: #fff;
  margin-bottom: 2rem;

  @media (width < 768px) {
    margin-bottom: 1.5rem;
  }
}

.merit-list {
  display: flex;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
  align-items: flex-start;

  @media (width < 768px) {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.merit-list-item {
  flex: 1;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.merit-list-item-heading {
  font-size: 1.5rem;
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  @media (width < 768px) {
    font-size: 1.25rem;
  }
}

.merit-list-item-heading img {
  width: 2rem;
  height: 2rem;
}

.merit-list-item-good .merit-list-item-heading {
  background: #ffe58a;
  color: #ea7f1a;
}

.merit-list-item-caution .merit-list-item-heading {
  background: #3c3c3c;
  color: #fff;
}

.merit-list-item-list {
  padding: 1.25rem 1.5rem;
}

.merit-list-item-list-item {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;

  @media (width < 768px) {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }
}

.merit-list-item-list-item:last-child {
  padding-bottom: 0;
}

.merit-list-item-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.125rem solid #4a3223;
  border-radius: 0.2rem;
}

.merit-list-item-list-item::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.4em;
  width: 0.65rem;
  height: 0.35rem;
  border-left: 0.1875rem solid #4a3223;
  border-bottom: 0.1875rem solid #4a3223;
  transform: rotate(-45deg);
}

/* ==========================================================================
   reason
   ========================================================================== */

.reason {
  padding: 3rem 1.5rem;
  background: repeating-linear-gradient(135deg, #ffb35a, #ffb35a 2px, #ffa53a 2px, #ffa53a 4px);
  background-color: #ffa53a;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.reason .section-title {
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.4;

  @media (width < 768px) {
    margin-bottom: 1.5rem;
  }
}

.reason-title-accent {
  display: inline-block;
  background: #fff;
  color: #ea7f1a;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.reason-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reason-list-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0 1.5rem;
  align-items: start;
  position: relative;

  @media (width < 768px) {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 0.75rem;
  }
}

.reason-list-item picture {
  grid-row: 1 / 4;

  @media (width < 768px) {
    grid-row: auto;
  }
}

.reason-list-item img {
  width: 9rem;
  height: 9rem;
  object-fit: cover;
  border-radius: 50%;
  border: 0.25rem solid #ffd45a;

  @media (width < 768px) {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
  }
}

.reason-list-item-number {
  color: #ea7f1a;
  font-size: 1rem;
}

.reason-list-item-number span {
  font-size: 1.75rem;
}

.reason-list-item-title {
  font-size: 1.375rem;
  line-height: 1.4;
  margin: 0.25rem 0 0.5rem;

  @media (width < 768px) {
    font-size: 1.125rem;
  }
}

.reason-list-item-text {
  font-size: 0.9375rem;
  grid-column: 2 / 3;

  @media (width < 768px) {
    grid-column: auto;
    font-size: 0.875rem;
  }
}

.reason-list-item-note {
  grid-column: 2 / 3;
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.5rem;

  @media (width < 768px) {
    grid-column: auto;
  }
}

/* ==========================================================================
   flow
   ========================================================================== */

.flow {
  padding: 3rem 1.5rem;
  background: #fdeccb;
  text-align: center;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.flow-eyebrow {
  color: #ea7f1a;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.flow .section-title {
  margin-bottom: 2rem;

  @media (width < 768px) {
    margin-bottom: 1.5rem;
  }
}

.flow-list {
  max-width: 46rem;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flow-list-item {
  background: #fff;
  border: 0.0625rem solid #f3d9a0;
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 12rem;
  gap: 1rem 1.5rem;
  align-items: start;

  @media (width < 768px) {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

.flow-list-item-step {
  grid-column: 1 / 2;
  color: #ea7f1a;
  font-size: 0.9375rem;
}

.flow-list-item-step span {
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

.flow-list-item picture {
  grid-row: 1 / 4;
  grid-column: 2 / 3;

  @media (width < 768px) {
    grid-row: auto;
    grid-column: auto;
    order: -1;
  }
}

.flow-list-item img {
  border-radius: 0.5rem;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.flow-list-item-title {
  grid-column: 1 / 2;
  font-size: 1.25rem;

  @media (width < 768px) {
    font-size: 1.0625rem;
  }
}

.flow-list-item-text {
  grid-column: 1 / 2;
  font-size: 0.9375rem;

  @media (width < 768px) {
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   case
   ========================================================================== */

.case {
  padding: 3rem 1.5rem;
  background: #fff3d0;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.case .section-title {
  margin-bottom: 2rem;

  @media (width < 768px) {
    margin-bottom: 1.5rem;
  }
}

.case-list {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-list-item {
  background: #fff;
  border: 0.1875rem solid #ffd45a;
  border-radius: 1rem;
  padding: 1.5rem;

  @media (width < 768px) {
    padding: 1.25rem;
  }
}

.case-list-item-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.case-list-item-number {
  background: #ea7f1a;
  color: #fff;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  flex: none;
}

.case-list-item-number span {
  font-size: 1.125rem;
}

.case-list-item-head img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex: none;
}

.case-list-item-info-title {
  font-size: 1.125rem;

  @media (width < 768px) {
    font-size: 1rem;
  }
}

.case-list-item-info-meta {
  font-size: 0.8125rem;
  color: #7a5c3e;
}

.case-list-item-data {
  background: #fff3d0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.case-list-item-data-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  padding: 0.35rem 0;

  @media (width < 768px) {
    font-size: 0.8125rem;
  }
}

.case-list-item-data-row dt {
  color: #ea7f1a;
  flex: none;
}

.case-list-item-data-row small {
  display: block;
  font-size: 0.6875rem;
  color: #999;
}

.case-list-item-photo {
  margin-bottom: 1rem;
}

.case-list-item-photo-label {
  font-size: 0.875rem;
  color: #7a5c3e;
  margin: 0.5rem 0 0.25rem;
}

.case-list-item-result {
  margin-bottom: 1rem;
  text-align: center;
}

.case-list-item-result-label {
  font-size: 0.875rem;
  color: #7a5c3e;
  margin-bottom: 0.5rem;
}

.case-list-item-result-note {
  display: inline-block;
  background: #fff2c4;
  border: 0.0625rem solid #ea7f1a;
  padding: 0.3rem 0.75rem;
  border-radius: 0.3rem;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.case-list-item-message {
  background: #fff8ea;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.case-list-item-message-label {
  display: inline-block;
  background: #ea7f1a;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.case-list-item-message-text {
  font-size: 0.875rem;
}

.case-list-item-risk-label {
  font-size: 0.8125rem;
  color: #a33;
  margin-bottom: 0.25rem;
}

.case-list-item-risk-text {
  font-size: 0.75rem;
  color: #7a5c3e;
}

/* ==========================================================================
   faq
   ========================================================================== */

.faq {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #fdeccb, #eaf2d8);

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.faq .section-title {
  margin-bottom: 1rem;
}

.faq-lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #7a5c3e;

  @media (width < 768px) {
    margin-bottom: 1.5rem;
  }
}

.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-list-item {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-list-item-question {
  position: relative;
  background: linear-gradient(90deg, #ea7f1a, #f2941e);
  color: #fff;
  font-size: 1.0625rem;
  padding: 1rem 1rem 1rem 3rem;

  @media (width < 768px) {
    font-size: 0.9375rem;
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
  }
}

.faq-list-item-question::before {
  content: "Q";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;

  @media (width < 768px) {
    left: 0.75rem;
  }
}

.faq-list-item-answer {
  font-size: 0.9375rem;
  padding: 1rem 1.25rem;

  @media (width < 768px) {
    font-size: 0.8125rem;
    padding: 0.875rem 1rem;
  }
}

/* ==========================================================================
   staff
   ========================================================================== */

.staff {
  padding: 3rem 1.5rem;
  background: #f2f7e9;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.staff .section-title {
  margin-bottom: 2rem;

  @media (width < 768px) {
    margin-bottom: 1.5rem;
  }
}

.staff-list {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.staff-list-item {
  background: #fff;
  border: 0.0625rem solid #dde8c8;
  border-radius: 1rem;
  padding: 1.5rem;

  @media (width < 768px) {
    padding: 1.25rem;
  }
}

.staff-list-item picture {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.staff-list-item-role {
  text-align: center;
  font-size: 0.8125rem;
  color: #7a5c3e;
}

.staff-list-item-name {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 0.75rem;

  @media (width < 768px) {
    font-size: 1.125rem;
  }
}

.staff-list-item-name-en {
  display: block;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.1em;
}

.staff-list-item-headline {
  text-align: center;
  font-size: 1.25rem;
  color: #6a9b32;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.125rem dotted #cfe0ae;

  @media (width < 768px) {
    font-size: 1.0625rem;
  }
}

.staff-list-item-text {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;

  @media (width < 768px) {
    font-size: 0.8125rem;
  }
}

.staff-list-item-career,
.staff-list-item-belong,
.staff-list-item-abroad {
  margin-bottom: 1rem;
}

.staff-list-item-career-title,
.staff-list-item-belong-title,
.staff-list-item-abroad-title {
  font-size: 1rem;
  color: #ea7f1a;
  margin-bottom: 0.5rem;
}

.staff-list-item-career-list-item,
.staff-list-item-belong-list-item,
.staff-list-item-abroad-list-item {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 0.0625rem solid #f2ead8;

  @media (width < 768px) {
    font-size: 0.8125rem;
  }
}

/* ==========================================================================
   price
   ========================================================================== */

.price {
  padding: 3rem 1.5rem;

  @media (width < 768px) {
    padding: 2rem 1rem;
  }
}

.price .section-title {
  margin-bottom: 1.5rem;
}

.price-list {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.price-list-item {
  border: 0.1875rem solid #ea7f1a;
  border-radius: 1rem;
  padding: 1.5rem;

  @media (width < 768px) {
    padding: 1.25rem;
  }
}

.price-list-item-heading {
  font-size: 1.375rem;
  color: #ea7f1a;
  margin-bottom: 0.5rem;
}

.price-list-item-caption {
  font-size: 0.9375rem;
}

.price-list-item-value {
  font-size: 2.25rem;
  color: #d9530f;
  margin-bottom: 0.25rem;

  @media (width < 768px) {
    font-size: 1.75rem;
  }
}

.price-list-item-value span {
  font-size: 1rem;
  color: #4a3223;
}

.price-list-item-sub {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.price-list-item-note {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1rem;
}

.price-list-item-monthly {
  display: inline-block;
  background: #ffe58a;
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 1.375rem;
  color: #d9530f;
  margin-bottom: 1.5rem;
}

.price-list-item-monthly span {
  font-size: 0.875rem;
  color: #4a3223;
  margin-right: 0.4rem;
}

.price-list-item-monthly small {
  display: block;
  font-size: 0.6875rem;
  color: #999;
}

.price-list-item-photo {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 1.5rem;
}

.price-list-item-message {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff8ea;
  border-radius: 0.5rem;
  padding: 1rem;

  @media (width < 768px) {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.price-list-item-message img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
}

.price-list-item-message-text {
  font-size: 0.8125rem;
}

.pay {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pay-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;

  @media (width < 768px) {
    font-size: 1.25rem;
  }
}

.pay-lead {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.pay-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;

  @media (width < 768px) {
    gap: 1rem;
  }
}

.pay-list-item img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #ffe58a;
  object-fit: contain;
  padding: 1rem;
  margin: 0 auto 0.5rem;

  @media (width < 768px) {
    width: 4.5rem;
    height: 4.5rem;
    padding: 0.75rem;
  }
}

.pay-list-item-label {
  font-size: 0.875rem;
}

.pay-highlight {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pay-text {
  font-size: 0.875rem;
  color: #7a5c3e;
}

.deduction {
  max-width: 40rem;
  margin: 0 auto;
  border: 0.0625rem solid #ea7f1a;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;

  @media (width < 768px) {
    padding: 1.25rem;
  }
}

.deduction-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.deduction-text {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.deduction-note {
  font-size: 0.75rem;
  color: #999;
}

/* ==========================================================================
   footer / info / access
   ========================================================================== */

.info {
  background: #fdf1d4;
  padding: 3rem 1.5rem 6rem;

  @media (width < 768px) {
    padding: 2rem 1rem 5rem;
  }
}

.info .section-title {
  margin-bottom: 1.5rem;
}

.info-card {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;

  @media (width < 768px) {
    display: block;
  }
}

.info-card-photo {
  width: 40%;
  height: 100%;
  object-fit: cover;
  flex: none;

  @media (width < 768px) {
    width: 100%;
    height: auto;
  }
}

.info-card-plate {
  flex: 1;
  padding: 1.5rem;
  background: #fff9df;

  @media (width < 768px) {
    padding: 1.25rem;
  }
}

.info-card-plate-logo {
  width: 12rem;
  margin-bottom: 0.75rem;
}

.info-card-plate-address {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.info-card-plate-table {
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-align: center;

  @media (width < 768px) {
    font-size: 0.75rem;
  }
}

.info-card-plate-table caption {
  text-align: left;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.info-card-plate-table th,
.info-card-plate-table td {
  border: 0.0625rem solid #e8d9b0;
  padding: 0.35rem;
}

.info-card-plate-hours {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.info-card-plate-note-list-item {
  font-size: 0.75rem;
  color: #7a5c3e;
  padding-bottom: 0.5rem;
}

.access {
  max-width: 46rem;
  margin: 0 auto 2rem;
}

.access-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;

  @media (width < 768px) {
    font-size: 1.25rem;
  }
}

.access-map {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 20rem;
  border: 0;
  display: block;

  @media (width < 768px) {
    height: 14rem;
  }
}

.access-list {
  display: flex;
  gap: 1rem;

  @media (width < 768px) {
    flex-direction: column;
  }
}

.access-list-item {
  flex: 1;
  background: #fff;
  border: 0.0625rem solid #e8d9b0;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.access-list-item img {
  margin: 0 auto 0.5rem;
}

.access-list-item-text {
  font-size: 0.875rem;
}

.access-list-item-text strong {
  display: block;
  font-size: 1.0625rem;
  margin-top: 0.25rem;
}

.info-copyright {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #a4835c;
}

/* ==========================================================================
   follow (追従ボタン)
   ========================================================================== */

.follow {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.follow-sp {
  display: flex;
  background: #ffe58a;
  border-top: 0.1875rem solid #fff;
  padding: 0.5rem;
  gap: 0.5rem;
}

.follow-sp-item {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.25rem;
  border-radius: 0.4rem;
  font-size: 0.8125rem;
  color: #fff;
  background: linear-gradient(180deg, #8bc34a, #3f7d2c);
}

.follow-pc {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8bc34a, #3f7d2c 75%);
  color: #ffe58a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
  border: 0.1875rem solid #fff;
}

.follow-pc-tag {
  background: #fff;
  color: #4a3223;
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  margin-bottom: 0.35rem;
}

.follow-pc-label {
  font-size: 1.0625rem;
  line-height: 1.3;
}
