@charset "UTF-8";
/*
* study-support.scss
*
*/
/* ==========================================================================
   layout
   ========================================================================== */
.l-inner {
  width: 100%;
  max-width: calc(1140px + 8.6%);

  margin-inline: auto;
  padding-inline: 8.33%;
}
@media (min-width: 768px) {
  .l-inner {
    padding-inline: 4.3%;
  }
}

.p-first-view,
.p-conversion,
.p-example {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px){
  .m-headerMain {
    position: initial;
  }
  .c-header.-common+main, .c-header.-lp+main {
    padding-top: 0;
  }
}

/* ==========================================================================
   components
   ========================================================================== */
/* fv ------------------------------------------------------- */
.p-first-view {
  background-color: #faf8ea;
  background-image: linear-gradient(to right, #003b98 50%, #faf8ea 50%);
}

.p-first-view__image {
  max-width: 1280px;

  margin-inline: auto;
}
.p-first-view__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* cv ------------------------------------------------------- */
.p-conversion {
  padding: 4rem 0 3.3rem;
  background-color: #e9f3fe;
}
@media (min-width: 768px) {
  .p-conversion {
    padding: 4rem 0;
  }
}

.p-conversion__list {
  display: flex;
  flex-direction: column;

  gap: 1.3rem;
}
@media (min-width: 768px) {
  .p-conversion__list {
    flex-flow: row wrap;

    gap: 3rem;
  }
}

.p-conversion__item {
  display: grid;
}
@media (min-width: 768px) {
  .p-conversion__item {
    flex: 1 1 36rem;
  }
}

/* CTAボタン共通(CV帯・お問い合わせで使用) ------------------- */
.c-cta-button {
  display: block;
  position: relative;
  padding: calc(1.2rem + var(--btn-sink)) 1.2rem calc(2.1rem - var(--btn-sink));
  border-radius: 6px;
  transition: padding 0.2s;
  text-align: center;
  text-decoration: none;
  color: #fff;

  --btn-step: 7px;
  --btn-step-color: #b7b7b7;
  --btn-sink: 0px;
  isolation: isolate;
}
@media (min-width: 768px) {
  .c-cta-button {
    padding: calc(1.3rem + var(--btn-sink)) 1.2rem calc(2.8rem - var(--btn-sink));
  }
}
.c-cta-button::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 6px;
  transition: inset 0.2s;
  background-color: var(--btn-step-color);

  inset: var(--btn-sink) 0 0;
}
.c-cta-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 6px;
  transition: inset 0.2s;
  background-image: var(--btn-grad);

  inset: var(--btn-sink) 0 calc(var(--btn-step) - var(--btn-sink));
}
.c-cta-button:visited,
.c-cta-button:active {
  text-decoration: none;
  color: #fff;
}
.c-cta-button--document {
  --btn-grad: linear-gradient(to bottom, #cc6d00, #731700);
  --btn-grad-hover: linear-gradient(to bottom, #af5d00, #571100);
}
.c-cta-button--meeting {
  --btn-grad: linear-gradient(to bottom, #018590, #01364e);
  --btn-grad-hover: linear-gradient(to bottom, #016972, #002739);
}
.c-cta-button--tel {
  --btn-grad: linear-gradient(to bottom, #088b34, #054219);
  --btn-grad-hover: linear-gradient(to bottom, #036b26, #022a10);
}
@media (hover: hover) {
  .c-cta-button:hover {
    color: #fff;

    --btn-sink: var(--btn-step);
  }
  .c-cta-button:hover::before {
    background-image: var(--btn-grad-hover);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-cta-button {
    transition: none;
  }
}

.c-cta-button__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cta-button--document .c-cta-button__row {
  gap: 0.6rem;
}
.c-cta-button--meeting .c-cta-button__row {
  gap: 1.6rem;
}
.c-cta-button--tel .c-cta-button__row {
  gap: 0.9rem;
}

.c-cta-button__icon {
  width: 3.2rem;
  height: 3.2rem;
}
@media (min-width: 768px) {
  .c-cta-button__icon {
    width: 4.4rem;
    height: 4.4rem;
  }
}
@media (hover: hover) {
  .c-cta-button__icon:hover {
    opacity: 1;
  }
}
.c-cta-button--contact .c-cta-button__icon {
  width: 3.6rem;
  height: 3.6rem;
}
@media (min-width: 768px) {
  .c-cta-button--contact .c-cta-button__icon {
    width: 5.2rem;
    height: 5.2rem;
  }
}

.c-cta-button__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-cta-button__title {
    font-size: 3rem;
  }
}
.c-cta-button--tel .c-cta-button__title {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .c-cta-button--tel .c-cta-button__title {
    font-size: 3.1rem;
  }
}

.c-cta-button__note {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .c-cta-button__note {
    margin-top: 0.5rem;
    font-size: 1.3rem;
  }
}

/* biz(トライの自治体連携事業) --------------------------------- */
.p-business {
  padding: 8rem 0;
}
@media (min-width: 768px) {
  .p-business {
    padding: 13rem 0 14rem;
  }
}

.p-business__balloon {
  position: relative;
  padding: 1.2rem 2.4rem 1.4rem;
  border-radius: 6px;
  width: 100%;
  background-image: linear-gradient(to right, #0041a6, #1a73e8);
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;

  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-business__balloon {
    padding: 1.4rem 2.4rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
.p-business__balloon::after {
  content: "";
  position: absolute;
  top: calc(100% - var(--tail-overlap));
  left: 0;
  width: 100%;
  height: calc(1.1rem + var(--tail-overlap));
  background-image: linear-gradient(to right, #0041a6, #1a73e8);

  --tail-half-width: 1.25rem;
  --tail-overlap: 2px;
  -webkit-clip-path: polygon(calc(50% - var(--tail-half-width)) 0, calc(50% + var(--tail-half-width)) 0, calc(50% + var(--tail-half-width)) var(--tail-overlap), 50% 100%, calc(50% - var(--tail-half-width)) var(--tail-overlap));
          clip-path: polygon(calc(50% - var(--tail-half-width)) 0, calc(50% + var(--tail-half-width)) 0, calc(50% + var(--tail-half-width)) var(--tail-overlap), 50% 100%, calc(50% - var(--tail-half-width)) var(--tail-overlap));
}

.p-business__title {
  position: relative;
  margin: 1.9rem auto 0;
  padding-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: underline;
  color: #0041a6;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.46;

  text-decoration-thickness: 1px;
  text-underline-offset: 0.4rem;
}
@media (min-width: 768px) {
  .p-business__title {
    margin-top: 3rem;
    padding-bottom: 1rem;
    text-decoration: none;
    font-size: 5.2rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .p-business__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #0041a6;

    translate: -50% 0;
  }
}

.p-business__lead-title {
  margin-top: 3.1rem;
  text-align: center;
  color: #2d4480;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-business__lead-title {
    margin-top: 5.4rem;
    font-size: 3.4rem;
    line-height: 1;
  }
}

.p-business__reference-mark {
  font-size: 1.2rem;
}

.p-business__lead-text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .p-business__lead-text {
    margin-top: 2.2rem;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.p-business__lead-note {
  margin-top: 1.4rem;
  font-size: 1.3rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-business__lead-note {
    margin-top: 1.6rem;
    text-align: center;
    font-size: 1.4rem;
  }
}

.p-business__fields {
  overflow: clip;
  position: relative;
  padding-top: 4rem;

  isolation: isolate;
}
@media (min-width: 768px) {
  .p-business__fields {
    overflow: visible;
    margin-top: -4.3rem;
    padding: 7.5rem 0 2.3rem;

    --apex-y: 34.2rem;
  }
  .p-business__fields::before,
  .p-business__fields::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: var(--apex-y);
    width: 50%;
    background-image: linear-gradient(to bottom, #e9f3fe, #faf8ea);

    aspect-ratio: 701/676;
    translate: 0 -50.6%;
  }
  .p-business__fields::before {
    left: 0;

    -webkit-clip-path: polygon(0 0, 100% 50.6%, 0 100%);

            clip-path: polygon(0 0, 100% 50.6%, 0 100%);
    -webkit-mask-image: linear-gradient(to left, #000 max(70.1rem, 85%), transparent 100%);
            mask-image: linear-gradient(to left, #000 max(70.1rem, 85%), transparent 100%);
  }
  .p-business__fields::after {
    right: 0;

    -webkit-clip-path: polygon(100% 0, 0 50.6%, 100% 100%);

            clip-path: polygon(100% 0, 0 50.6%, 100% 100%);
    -webkit-mask-image: linear-gradient(to right, #000 max(70.1rem, 85%), transparent 100%);
            mask-image: linear-gradient(to right, #000 max(70.1rem, 85%), transparent 100%);
  }
}

.p-business__field-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-business__field-list {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .p-business__field-list::before,
  .p-business__field-list::after {
    content: "";
    position: absolute;
    top: var(--apex-y);
    left: 50%;
    width: 7.8rem;
    height: 2px;
    background-color: #2d4480;

    translate: -50% -50%;
  }
}
@media (min-width: 768px) {
  .p-business__field-list::before {
    rotate: 24.75deg;
  }
}
@media (min-width: 768px) {
  .p-business__field-list::after {
    rotate: -24.75deg;
  }
}

.p-business__field-divider {
  position: relative;
  height: 8.3rem;
}
@media (min-width: 768px) {
  .p-business__field-divider {
    display: none;
  }
}
.p-business__field-divider::before,
.p-business__field-divider::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  height: calc(50% + 53.0555555556vw);

  aspect-ratio: 1114/353;
  translate: -50% 0;
}
.p-business__field-divider::before {
  bottom: 50%;
  background-image: linear-gradient(to left, #e9f3fe, #faf8ea);

  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);

          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-business__field-divider::after {
  top: 50%;
  background-image: linear-gradient(to right, #e9f3fe, #faf8ea);

  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);

          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.p-business__field-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.7rem;
  height: 2px;

  translate: -50% -50%;
}
.p-business__field-cross::before,
.p-business__field-cross::after {
  content: "";
  position: absolute;
  background-color: #2d4480;

  inset: 0;
}
.p-business__field-cross::before {
  rotate: 31deg;
}
.p-business__field-cross::after {
  rotate: -31deg;
}

@media (min-width: 768px) {
  .p-business__field {
    width: 44.4%;
  }
}

.p-business__field-photo {
  display: block;
  width: 100vw;

  margin-inline: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .p-business__field-photo {
    width: auto;

    margin-inline: 0;
  }
}
.p-business__field-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-business__field-card {
  position: relative;
  margin: -3.3rem auto 0;
  padding: 4rem 3rem 2.2rem;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 2.8rem rgba(45, 68, 128, 0.15);
}
@media (min-width: 768px) {
  .p-business__field-card {
    margin-top: -4.3rem;
    padding: 7.8rem 2rem 3.8rem;
    width: 79.6%;
  }
}

.p-business__field-icon {
  position: absolute;
  top: -2.2rem;
  left: 50%;
  width: 5.3rem;
  height: 5.3rem;

  translate: -50% 0;
}
@media (min-width: 768px) {
  .p-business__field-icon {
    top: -2.4rem;
    width: 8.7rem;
    height: 8.7rem;
  }
}

.p-business__field-title {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e1e1e1;
  width: 84.2%;
  color: #003b98;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;

  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-business__field-title {
    padding-bottom: 1.5rem;
    font-size: 3.4rem;
  }
}

.p-business__field-text {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-business__field-text {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }
}

.p-business__summary {
  margin-top: 3.4rem;
  text-align: center;
  letter-spacing: 0.03em;
  color: #2d4480;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-business__summary {
    margin-top: 3.6rem;
    font-size: 2.6rem;
    line-height: 1.7;
  }
}

.p-business__anchor {
  margin-top: 6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-business__anchor {
    margin-top: 6.7rem;
  }
}

.p-business__anchor-title {
  position: relative;
  padding-bottom: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.03em;
  color: #0d2e5b;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;

  margin-inline: auto;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .p-business__anchor-title {
    padding-bottom: 2rem;
    font-size: 2.6rem;
    line-height: 1.6;
  }
}
.p-business__anchor-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 0.72rem;
  transform: translate(-50%, 0);
  background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 362 11\"><path d=\"M0 1h169M177 10 197 1h165\" fill=\"none\" stroke=\"%230D2E5B\" stroke-width=\"2\"/></svg>") center/contain no-repeat;
}
@media (min-width: 768px) {
  .p-business__anchor-title::after {
    height: 1.1rem;
  }
}

.p-business__anchor-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 1rem auto 0;
  padding-top: var(--btn-sink);
  padding-bottom: calc(0.4rem - var(--btn-sink));
  border-radius: 6px;
  width: 100%;
  max-width: 48rem;
  min-height: 5.4rem;
  transition: padding 0.2s;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;

  --btn-step: 4px;
  --btn-step-color: #b7b7b7;
  --btn-sink: 0px;
  isolation: isolate;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p-business__anchor-button {
    padding-bottom: calc(0.7rem - var(--btn-sink));
    min-height: 7rem;

    --btn-step: 7px;
  }
}
@media (min-width: 768px) {
  .p-business__anchor-button {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .p-business__anchor-button {
    font-size: 1.8rem;
  }
}
.p-business__anchor-button::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 6px;
  transition: inset 0.2s;
  background-color: var(--btn-step-color);

  inset: var(--btn-sink) 0 0;
}
.p-business__anchor-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 6px;
  transition: inset 0.2s;
  background-color: #2d4480;

  inset: var(--btn-sink) 0 calc(var(--btn-step) - var(--btn-sink));
}
.p-business__anchor-button:visited,
.p-business__anchor-button:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .p-business__anchor-button:hover {
    color: #fff;

    --btn-sink: var(--btn-step);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-business__anchor-button {
    transition: none;
  }
}

.p-business__anchor-arrow {
  border: 6px solid transparent;
  border-top: 8px solid currentColor;
  border-bottom: none;
  width: 0;
  height: 0;
}

.p-business__results {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .p-business__results {
    margin-top: 7rem;
  }
}

.p-business__results-title {
  text-align: center;
  color: #2d4480;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;

  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .p-business__results-title {
    font-size: 3.4rem;
    line-height: 1;
  }
}

.p-business__result-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.2rem;

  gap: 2rem;
}
@media (min-width: 768px) {
  .p-business__result-list {
    flex-direction: row;
    margin-top: 4rem;

    gap: 3rem;
  }
}

.p-business__result {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background-color: #faf8ea;
}
@media (min-width: 768px) {
  .p-business__result {
    flex: 1;
  }
}

.p-business__result-heading {
  position: relative;
  padding: 1.2rem 1rem 1rem;
  border-radius: 6px 6px 0 0;
  background-image: linear-gradient(to right, #0041a6, #1a73e8);
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-business__result-heading {
    padding: 1.8rem 1rem 1.4rem;
  }
}
@media (min-width: 768px) {
  .p-business__result-heading {
    min-height: 10rem;
    font-size: 2.4rem;
  }
}
.p-business__result-heading::after {
  content: "";
  position: absolute;
  top: calc(100% - var(--notch-overlap));
  left: 0;
  width: 100%;
  height: calc(1rem + var(--notch-overlap));
  background-image: linear-gradient(to right, #0041a6, #1a73e8);

  --notch-overlap: 2px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% var(--notch-overlap), 50% 100%, 0 var(--notch-overlap));
          clip-path: polygon(0 0, 100% 0, 100% var(--notch-overlap), 50% 100%, 0 var(--notch-overlap));
}
@media (min-width: 768px) {
  .p-business__result-heading::after {
    height: calc(1.5rem + var(--notch-overlap));
  }
}

.p-business__result-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.4rem 1.5rem 1.3rem;

  gap: 2rem;
}
@media (min-width: 768px) {
  .p-business__result-body {
    padding: 4rem 3rem 3.4rem;

    gap: 2.4rem;
  }
}

.p-business__result-number {
  border-bottom: 2px solid #0041a6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  white-space: nowrap;
  color: #0041a6;

  margin-inline: auto;
}
.p-business__result-number em {
  font-family: "Noto Serif JP", serif;
  font-size: 6.6rem;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-business__result-number em {
    font-size: 10rem;
  }
}
.p-business__result-number span {
  margin-left: 0.6rem;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-business__result-number span {
    font-size: 3.2rem;
  }
}

.p-business__result-text {
  flex: 1 0 auto;
  padding: 1.6rem 1.9rem;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-business__result-text {
    padding: 2rem 0.2rem;
    min-height: 9.8rem;
    font-size: 1.8rem;
  }
}

.p-business__results-note {
  margin-top: 2.4rem;
  text-align: right;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .p-business__results-note {
    font-size: 1.4rem;
  }
}

/* example(実施例のご紹介) ------------------------------------ */
.p-example {
  padding-top: 8rem;
  background-color: #e9f3fe;
}
@media (min-width: 768px) {
  .p-example {
    padding-top: 10.9rem;
  }
}

.p-example__title {
  position: relative;
  padding-bottom: 1.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #0041a6;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1;

  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-example__title {
    font-size: 5.2rem;
  }
}
.p-example__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 36.5rem;
  height: 2px;
  background-color: #0041a6;

  translate: -50% 0;
}

.p-example__tab-list {
  display: flex;
  align-items: flex-end;
  margin-top: 4rem;

  gap: 0.6rem;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .p-example__tab-list {
    margin-top: 7rem;

    gap: 3rem;
    padding-inline: 4.3%;
  }
}

.p-example__tab {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 1rem 0.8rem;
  border: none;
  border-radius: 6px 6px 0 0;
  min-height: 6.6rem;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-example__tab {
    display: block;
    min-height: 8rem;
    font-size: 2.2rem;
  }
}
.p-example__tab--tab1 {
  background-color: #0041a6;
}
.p-example__tab--tab2 {
  background-color: #0f7bc3;
}
.p-example__tab--tab3 {
  background-color: #115de0;
}
.p-example__tab[aria-selected=true] {
  min-height: 7.9rem;
}
@media (min-width: 768px) {
  .p-example__tab[aria-selected=true] {
    min-height: 10.7rem;
  }
}
@media (hover: hover) {
  .p-example__tab:hover {
    text-decoration: underline;
  }
}

.p-example__panel {
  padding: 4rem 0 6rem;
  background-color: #0041a6;
}
.p-example__panel--tab2 {
  background-color: #0f7bc3;
}
.p-example__panel--tab3 {
  background-color: #115de0;
}
@media (min-width: 768px) {
  .p-example__panel {
    padding: 4.6rem 0 7.1rem;
  }
}

.p-example__filter-groups {
  display: flex;
  flex-direction: column;

  gap: 3rem;
}
@media (min-width: 768px) {
  .p-example__filter-groups {
    gap: 2.4rem;
  }
}

.p-example__filter-group {
  margin: 0;
  padding: 0;
  border: none;
}

.p-example__filter-legend {
  float: left;
  margin-bottom: 1.2rem;
  padding: 0;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-example__filter-legend {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}

.p-example__chip-list {
  display: flex;
  flex-wrap: wrap;
  clear: both;

  gap: 1.4rem 1.2rem;
}
@media (min-width: 768px) {
  .p-example__chip-list {
    gap: 1.2rem;
  }
}

.p-example__filter-note {
  margin-top: 0.6rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-example__filter-note {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}

.p-example__chip {
  display: flex;
}

.p-example__chip-input {
  margin: 0;
  padding: 0;
  border: none;
  width: 0;
  height: 0;

  -webkit-appearance: none;

     -moz-appearance: none;

          appearance: none;
}

.p-example__chip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.8rem;
  border-radius: 9999px;
  min-height: 2.4rem;
  cursor: pointer;
  background-color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-example__chip-label {
    min-width: 13.6rem;
    min-height: 2.8rem;
    font-size: 1.6rem;
    line-height: 1;

    padding-block: 0.4rem;
  }
}
@media (hover: hover) {
  .p-example__chip-label:hover {
    text-decoration: underline;
  }
}
.p-example__chip-input:focus-visible + .p-example__chip-label {
  outline: auto;
}
.p-example__chip-input:checked + .p-example__chip-label {
  padding-right: 1rem;
  background-color: #002f6d;
  color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
  font-weight: bold;

  gap: 1rem;
}
.p-example__chip-input:checked + .p-example__chip-label::after {
  content: "";
  width: 1.3rem;
  height: 1rem;
  background-color: currentColor;

  -webkit-clip-path: polygon(0 55%, 12% 42%, 38% 68%, 88% 0, 100% 12%, 40% 100%);

          clip-path: polygon(0 55%, 12% 42%, 38% 68%, 88% 0, 100% 12%, 40% 100%);
}

.p-example__clear {
  margin-top: 3.7rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-example__clear {
    margin-top: 3rem;
  }
}

.p-example__clear-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;

  gap: 1rem;
}
@media (hover: hover) {
  .p-example__clear-button:hover {
    text-decoration: underline;
  }
}
@media (min-width: 768px) {
  .p-example__clear-button {
    font-size: 1.6rem;
  }
}

.p-example__clear-icon {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
}
.p-example__clear-icon::before,
.p-example__clear-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}
.p-example__clear-icon::before {
  transform: rotate(45deg);
}
.p-example__clear-icon::after {
  transform: rotate(-45deg);
}

.p-example__search {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-example__search {
    margin-top: 1.8rem;
  }
}

.p-example__search-button {
  position: relative;
  padding: calc(1.8rem + var(--btn-sink)) 3rem calc(2.3rem - var(--btn-sink));
  border: none;
  border-radius: 6px;
  width: 100%;
  min-height: 5.5rem;
  cursor: pointer;
  transition: padding 0.2s;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;

  --btn-step: 5px;
  --btn-step-color: #dadada;
  --btn-sink: 0px;
  isolation: isolate;
}
.p-example__search-button::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 6px;
  transition: inset 0.2s;
  background-color: var(--btn-step-color);

  inset: var(--btn-sink) 0 0;
}
@media (min-width: 768px) {
  .p-example__search-button {
    padding: calc(1.8rem + var(--btn-sink)) 3rem calc(2.4rem - var(--btn-sink));
    width: auto;
    min-width: 28rem;
    min-height: 6.4rem;
    font-size: 1.8rem;

    --btn-step: 6px;
  }
}
.p-example__search-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 6px;
  transition: inset 0.2s;
  background-color: #936f01;

  inset: var(--btn-sink) 0 calc(var(--btn-step) - var(--btn-sink));
}
@media (hover: hover) {
  .p-example__search-button:hover {
    --btn-sink: var(--btn-step);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-example__search-button {
    transition: none;
  }
}

.p-example__card-list {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;

  gap: 3rem;
  scroll-margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-example__card-list {
    flex-flow: row wrap;
    margin-top: 7.6rem;

    gap: 4rem 3rem;
    scroll-margin-top: 4rem;
  }
}

.p-example__more {
  margin-top: 5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-example__more {
    margin-top: 7rem;
  }
}

.p-example__more-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;

  gap: 1rem;
}
@media (min-width: 768px) {
  .p-example__more-button {
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .p-example__more-button:hover {
    text-decoration: underline;
  }
}

.p-example__more-icon {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
}
.p-example__more-icon::before,
.p-example__more-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
}
.p-example__more-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;

  translate: 0 -50%;
}
.p-example__more-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;

  translate: -50% 0;
}

.p-example__empty {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .p-example__empty {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .p-example__empty {
    text-align: center;
    font-size: 2.4rem;
  }
}

.p-example__result-status {
  overflow: hidden;
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;

  -webkit-clip-path: inset(50%);

          clip-path: inset(50%);
}

/* 実施例カード ---------------------------------------------- */
.p-case-card {
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-case-card {
    width: calc((100% - 3rem) / 2);
  }
}

.p-case-card__header {
  display: flex;
  align-items: center;
  padding: 1.4rem;
  border-left: 10px solid #d9c388;
  background-color: #e9f3fe;

  gap: 2.8rem;
}
@media (min-width: 768px) {
  .p-case-card__header {
    padding: 1.5rem 2.6rem 1rem 3.1rem;
    min-height: 12.7rem;

    gap: 2.1rem;
  }
}

.p-case-card__title {
  flex: 1;
  color: #2d4480;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-case-card__title {
    font-size: 2.4rem;
  }
}

.p-case-card__badge {
  flex-shrink: 0;
  width: 30%;
  height: auto;
}
@media (min-width: 768px) {
  .p-case-card__badge {
    width: 22.3%;
  }
}

.p-case-card__specification {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 2rem;
  background-color: #faf8ea;

  gap: 0.4rem;
}
@media (min-width: 768px) {
  .p-case-card__specification {
    padding: 1.7rem 3.6rem 1.8rem;

    gap: 0;
  }
}

.p-case-card__specification-row {
  display: flex;
  align-items: flex-start;

  gap: 0.2rem;
}
@media (min-width: 768px) {
  .p-case-card__specification-row {
    gap: 1rem;
  }
}
.p-case-card__specification-row::before {
  content: "";
  flex-shrink: 0;
  margin-top: 0.9rem;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #2d4480;
}
@media (min-width: 768px) {
  .p-case-card__specification-row::before {
    margin-top: 1.1rem;
  }
}
.p-case-card__specification-row dt {
  flex-shrink: 0;
  width: 9.1rem;
  color: #2d4480;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-case-card__specification-row dt {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.p-case-card__specification-row dd {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-case-card__specification-row dd {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.p-case-card__text {
  padding: 1.6rem 1.6rem 2.4rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-case-card__text {
    padding: 2rem 4.2rem 3.2rem 3.2rem;
    font-size: 1.8rem;
    line-height: 1.7;
  }
}

/* reason(トライが選ばれる5つの理由) --------------------------- */
.p-reason {
  padding: 8rem 0;
}
@media (min-width: 768px) {
  .p-reason {
    padding: 13rem 0;
  }
}

.p-reason__title {
  position: relative;
  padding-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: underline;
  color: #0041a6;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.46;

  margin-inline: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4rem;
}
@media (min-width: 768px) {
  .p-reason__title {
    padding-bottom: 0.9rem;
    text-decoration: none;
    font-size: 5.2rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .p-reason__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #0041a6;

    translate: -50% 0;
  }
}

.p-reason__lead-title {
  margin-top: 4rem;
  text-align: center;
  color: #2d4480;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-reason__lead-title {
    margin-top: 5rem;
    font-size: 3.4rem;
    line-height: 1;
  }
}

.p-reason__lead-text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-reason__lead-text {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.8rem;
  }
}

.p-reason__list {
  display: flex;
  flex-direction: column;
  margin-top: 6rem;

  gap: 4rem;
}
@media (min-width: 768px) {
  .p-reason__list {
    margin-top: 5rem;

    gap: 8rem;
  }
}

.p-reason__item {
  display: grid;
  position: relative;

  grid-template-areas: "photo" "body";
  gap: 3.4rem;
}
@media (min-width: 768px) {
  .p-reason__item {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;

    gap: 5rem;
  }
}
.p-reason__item:nth-child(even) {
  gap: 5rem;
}
@media (min-width: 768px) {
  .p-reason__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.p-reason__photo {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;

  grid-area: photo;
}
@media (min-width: 768px) {
  .p-reason__photo {
    width: 47.8%;
  }
}
.p-reason__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-reason__body {
  position: relative;
  z-index: 1;

  grid-area: body;
}
@media (min-width: 768px) {
  .p-reason__body {
    width: 47.8%;
  }
}

.p-reason__item-title {
  color: #2d4480;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-reason__item-title {
    font-size: 3.4rem;
  }
}

.p-reason__item-text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-reason__item-text {
    margin-top: 1.8rem;
  }
}

.p-reason__number {
  opacity: 0.2;
  align-self: start;
  position: relative;
  z-index: 0;
  margin-top: -2.8rem;
  color: #97a8d6;
  font-family: Cardo, serif;
  font-size: 9rem;
  line-height: 1;

  grid-area: body;
  justify-self: end;
}
@media (min-width: 768px) {
  .p-reason__number {
    position: absolute;
    top: 0;
    right: -4rem;
    margin-top: 0;
    font-size: 17rem;
  }
}
.p-reason__item:nth-child(even) .p-reason__number {
  margin-top: -4.4rem;

  justify-self: start;
}
@media (min-width: 768px) {
  .p-reason__item:nth-child(even) .p-reason__number {
    right: auto;
    left: 0;
    margin-top: 0;
  }
}

/* flow(ご相談から公募までの流れ) ------------------------------ */
.p-flow {
  padding: 8rem 0;
  background-color: #e9f3fe;
}
@media (min-width: 768px) {
  .p-flow {
    padding: 13rem 0 13.1rem;
  }
}

.p-flow__title {
  position: relative;
  padding-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: underline;
  color: #0041a6;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.46;

  margin-inline: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4rem;
}
@media (min-width: 768px) {
  .p-flow__title {
    padding-bottom: 1.2rem;
    text-decoration: none;
    font-size: 4.9rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .p-flow__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 59.6rem;
    height: 2px;
    background-color: #0041a6;

    translate: -50% 0;
  }
}

.p-flow__inner {
  position: relative;
}
@media (min-width: 768px) {
  .p-flow__inner {
    --list-left: max(0%, calc((100% - 91rem) / 2));
    --card-row: min(91rem, calc(100% - var(--list-left) - 11.1rem));
  }
}

.p-flow__list {
  display: grid;
  margin-top: 2.9rem;

  gap: 1.8rem;
}
@media (min-width: 768px) {
  .p-flow__list {
    justify-content: center;
    margin-top: 4.7rem;
    margin-left: var(--list-left);
    max-width: var(--card-row);

    grid-template-columns: repeat(2, minmax(0, 42.8rem));
    gap: 3.2rem 5.4rem;
  }
}

.p-flow__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-flow__body {
  flex: 1;
  margin-top: 1.3rem;
  padding: 2.4rem 3rem 2.4rem;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .p-flow__body {
    margin-top: 2.2rem;
    padding: 2.6rem 15.2% 4rem;
    min-height: 27rem;
  }
}

.p-flow__step {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 1.7rem;
  border-radius: 50%;
  width: 7.3rem;
  height: 7.3rem;
  background-color: #0041a6;
  color: #fff;
}

.p-flow__step-label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.p-flow__step-number {
  margin-top: 0.1rem;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.p-flow__icon {
  display: block;
  width: 8rem;
  height: 8rem;

  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-flow__icon {
    width: 7.2rem;
    height: 7.2rem;
  }
}

.p-flow__item-title {
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  color: #0d2e5b;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-flow__item-title {
    margin-top: 0.2rem;
    letter-spacing: normal;
  }
}

.p-flow__item-text {
  margin-top: 1rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-flow__item-text {
    margin-top: 1.2rem;
    font-size: 1.8rem;
  }
}

.p-flow__person {
  display: block;
  position: absolute;
  right: -10%;
  bottom: -8rem;
  width: 10.1rem;
  height: 15rem;

  -o-object-fit: cover;

     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 768px) {
  .p-flow__person {
    right: auto;
    bottom: -1.9rem;
    left: calc(var(--list-left) + var(--card-row) - 4.8rem);
    width: 15.9rem;
    height: auto;

    -o-object-fit: fill;

       object-fit: fill;
  }
}

/* faq(よくある質問) ------------------------------ */
.p-faq {
  padding: 8rem 0;
}
@media (min-width: 768px) {
  .p-faq {
    padding: 13rem 0;
  }
}

.p-faq__title {
  position: relative;
  padding-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: underline;
  color: #0041a6;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.46;

  margin-inline: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4rem;
}
@media (min-width: 768px) {
  .p-faq__title {
    padding-bottom: 0.9rem;
    text-decoration: none;
    font-size: 5.2rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .p-faq__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 31.4rem;
    height: 2px;
    background-color: #0041a6;

    translate: -50% 0;
  }
}

.p-faq__list {
  display: grid;
  margin-top: 4rem;

  gap: 2rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-faq__list {
    margin-top: 5rem;

    gap: 3rem;
  }
}

.p-faq__item {
  overflow: hidden;
  border-radius: 6px;
}

.p-faq__question {
  font-size: inherit;
}

.p-faq__question-button {
  display: flex;
  align-items: center;
  padding: 1.6rem 2rem;
  border: 0;
  width: 100%;
  min-height: 6.4rem;
  cursor: pointer;
  background-color: #e9f3fe;
  text-align: left;
  font: inherit;
}
@media (min-width: 768px) {
  .p-faq__question-button {
    padding: 2.4rem 3rem;
    min-height: 8.8rem;
  }
}

.p-faq__question-mark,
.p-faq__answer-mark {
  display: grid;
  flex-shrink: 0;
  padding-bottom: 0.22rem;
  border-radius: 3px;
  width: 3rem;
  height: 3rem;
  background-color: #0041a6;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;

  place-items: center;
}
@media (min-width: 768px) {
  .p-faq__question-mark,
  .p-faq__answer-mark {
    padding-bottom: 0.3rem;
    width: 4rem;
    height: 4rem;
    font-size: 2.8rem;
  }
}

.p-faq__question-text {
  flex-grow: 1;
  margin-left: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-faq__question-text {
    margin-left: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.45;
  }
}
@media (hover: hover) {
  .p-faq__question-button:hover .p-faq__question-text {
    text-decoration: underline;
  }
}

.p-faq__question-icon {
  flex-shrink: 0;
  position: relative;
  margin-left: 1.8rem;
  width: 2rem;
  height: 2rem;
}
@media (min-width: 768px) {
  .p-faq__question-icon {
    margin-left: 3.1rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-faq__question-icon::before,
.p-faq__question-icon::after {
  content: "";
  position: absolute;
  background-color: #0041a6;
}
.p-faq__question-icon::before {
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
}
.p-faq__question-icon::after {
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0, 0, 0.58, 1);
}
@media (prefers-reduced-motion: reduce) {
  .p-faq__question-icon::after {
    transition: none;
  }
}
.is-open .p-faq__question-icon::after {
  transform: rotate(90deg);
}

.p-faq__answer {
  display: grid;
  transition: grid-template-rows 0.3s cubic-bezier(0, 0, 0.58, 1);

  grid-template-rows: 0fr;
}
@media (prefers-reduced-motion: reduce) {
  .p-faq__answer {
    transition: none;
  }
}
.is-open .p-faq__answer {
  grid-template-rows: 1fr;
}

.p-faq__answer-body {
  visibility: hidden;
  overflow: hidden;
  min-height: 0;
  transition: visibility 0s 0.3s;
  background-color: #faf8ea;
}
.is-open .p-faq__answer-body {
  visibility: visible;
  transition-delay: 0s;
}

.p-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  padding: 1.6rem 2rem;
}
@media (min-width: 768px) {
  .p-faq__answer-inner {
    padding: 2.4rem 3rem;
  }
}

.p-faq__answer-text {
  flex-grow: 1;
  margin-left: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-faq__answer-text {
    margin-left: 1.6rem;
    font-size: 1.8rem;
  }
}

/* contact(お問い合わせ) ------------------------------ */
.p-contact {
  padding: 8rem 0;
  background-image: linear-gradient(to right, #0041a6, #1a73e8);
}
@media (min-width: 768px) {
  .p-contact {
    padding: 13rem 0;
  }
}

.p-contact__title {
  position: relative;
  padding-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: underline;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.46;

  margin-inline: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4rem;
}
@media (min-width: 768px) {
  .p-contact__title {
    padding-bottom: 0.9rem;
    text-decoration: none;
    font-size: 5.2rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .p-contact__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 30.8rem;
    height: 2px;
    background-color: #fff;

    translate: -50% 0;
  }
}

.p-contact__lead {
  margin-top: 4rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-contact__lead {
    margin-top: 5rem;
    text-align: center;
    font-size: 1.8rem;
  }
}

.p-contact__list {
  display: grid;
  margin-top: 5rem;

  gap: 2.2rem;
}
@media (min-width: 768px) {
  .p-contact__list {
    margin-top: 6rem;

    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3rem;
  }
}

.p-contact__item {
  display: grid;
}
@media (min-width: 768px) {
  .p-contact__item--document {
    grid-column: 1/-1;
  }
}

.c-cta-button--contact {
  padding: calc(1.2rem + var(--btn-sink)) 1.6rem calc(2.2rem - var(--btn-sink));

  --btn-step: 8px;
  --btn-step-color: #fff;
}
@media (min-width: 768px) {
  .c-cta-button--contact {
    padding: calc(1.6rem + var(--btn-sink)) 1.6rem calc(2.8rem - var(--btn-sink));
  }
}
.c-cta-button--contact.c-cta-button--document {
  --btn-grad: linear-gradient(to bottom, #cc6d00, #731700);
}
.c-cta-button--contact.c-cta-button--meeting {
  --btn-grad: linear-gradient(to bottom, #05979f, #023d4c);
}
.c-cta-button--contact .c-cta-button__title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-cta-button--contact .c-cta-button__title {
    font-size: 3.4rem;
  }
}
.c-cta-button--contact.c-cta-button--tel .c-cta-button__title {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .c-cta-button--contact.c-cta-button--tel .c-cta-button__title {
    font-size: 3.8rem;
  }
}
.c-cta-button--contact .c-cta-button__note {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .c-cta-button--contact .c-cta-button__note {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}

/* follow(追従ボタン) ------------------------------ */
.p-follow {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;

  gap: 0.6rem;
}

.p-follow__pagetop {
  display: block;
  visibility: hidden;
  opacity: 0;
  margin-right: 0.5rem;
  transition: opacity 0.2s, visibility 0s 0.2s;
  pointer-events: auto;
  color: #0041a6;
}
@media (prefers-reduced-motion: reduce) {
  .p-follow__pagetop {
    transition: none;
  }
}
.p-follow__pagetop.is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s, visibility 0s;
}

.p-follow__pagetop-icon {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
}
.p-follow__pagetop-icon rect {
  fill: #fff;
  stroke: currentColor;
}
.p-follow__pagetop-icon path {
  stroke: currentColor;
}

.p-follow__pagetop-arrow {
  transition: translate 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .p-follow__pagetop-arrow {
    transition: none;
  }
}
@media (hover: hover) {
  .p-follow__pagetop:hover .p-follow__pagetop-arrow {
    translate: 0 -0.3rem;
  }
}

.p-follow__list {
  display: flex;
  visibility: hidden;
  width: 100%;
  transition: translate 0.2s, visibility 0s 0.2s;
  background-color: #eef3f9;
  pointer-events: auto;

  gap: 1px;
  translate: 0 100%;
}
@media (min-width: 768px) {
  .p-follow__list {
    justify-content: center;
    padding: 2rem 0;

    gap: 1.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-follow__list {
    transition: none;
  }
}
.p-follow__list.is-visible {
  visibility: visible;
  transition: translate 0.2s, visibility 0s;

  translate: 0 0;
}

.p-follow__item {
  flex: 1;
}
@media (min-width: 768px) {
  .p-follow__item {
    flex: 0 1 28rem;
  }
}

.p-follow__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 4.4rem;
  transition: padding 0.2s;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;

  --btn-step: 0.4rem;
  --btn-sink: 0px;
  isolation: isolate;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .p-follow__button {
    padding-top: var(--btn-sink);
    padding-bottom: calc(var(--btn-step) - var(--btn-sink));
    border-radius: 6px;
    min-height: 5.4rem;
    font-size: 1.9rem;

    gap: 1.3rem;
  }
}
.p-follow__button::before {
  content: "";
  position: absolute;
  z-index: -1;
  transition: inset 0.2s;
  background-image: var(--btn-grad);

  inset: 0;
}
@media (min-width: 768px) {
  .p-follow__button::before {
    border-radius: 6px;

    inset: var(--btn-sink) 0 calc(var(--btn-step) - var(--btn-sink));
  }
}
@media (min-width: 768px) {
  .p-follow__button::after {
    content: "";
    position: absolute;
    z-index: -2;
    border-radius: 6px;
    transition: inset 0.2s;
    background-color: #b7b7b7;

    inset: var(--btn-sink) 0 0;
  }
}
.p-follow__button--document {
  --btn-grad: linear-gradient(to bottom, #cc6d00, #731700);
  --btn-grad-hover: linear-gradient(to bottom, #af5d00, #571100);
}
.p-follow__button--meeting {
  --btn-grad: linear-gradient(to bottom, #018590, #01364e);
  --btn-grad-hover: linear-gradient(to bottom, #016972, #002739);
}
.p-follow__button--tel {
  --btn-grad: linear-gradient(to bottom, #088b34, #054219);
  --btn-grad-hover: linear-gradient(to bottom, #036b26, #022a10);
}
.p-follow__button:visited {
  color: #fff;
}
@media (hover: hover) {
  .p-follow__button:hover {
    --btn-sink: var(--btn-step);
  }
  .p-follow__button:hover::before {
    background-image: var(--btn-grad-hover);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-follow__button {
    transition: none;
  }
}

.p-follow__icon {
  width: 2.2rem;
  height: 2.2rem;
}
@media (min-width: 768px) {
  .p-follow__icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (hover: hover) {
  .p-follow__icon:hover {
    opacity: 1;
  }
}

.c-footer {
  display: none;
}

.c-copyright {
  text-align: center;
}
@media (max-width: 767.98px) {
  .c-copyright {
    padding: 10px 0;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-copyright {
    padding: 20px 0;
    font-size: 1.2rem;
  }
}