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

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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

ol, ul {
  list-style: none;
  list-style-type: none;
}

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

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

:root {
  --color-base: #FFF;
  --text-black: #1B1D1E;
  --white: #FFF;
  --blue: #014E98;
  --orange: #DB5F00;
  --gray: #D1D1D1;
  --border-blue: #B8D3EF;
  --light-blue: #EFF7FF;
  --hover-blue: #d2e8fe;
  --border-kensaku: #393D40;
}

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

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: var(--text-black);
  background: var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2142857143;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top; /* img下の隙間を消す */
}

a, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* タップ時のハイライトを消す */
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

address {
  font-style: normal;
}

/* スクリーンリーダーオンリー */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.l-inner {
  width: 100%;
  max-width: 100.8rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 2.4rem;
  }
}

.l-inner-narrow {
  width: 100%;
  max-width: 86.8rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner-narrow {
    padding: 0 2.4rem;
  }
}

.l-inner-narrow2 {
  width: 100%;
  max-width: 94.8rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner-narrow2 {
    padding: 0 2.4rem;
  }
}

.l-inner-wide {
  width: 100%;
  max-width: 132.8rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner-wide {
    padding: 0 2.4rem;
  }
}

.l-inner-wide2 {
  width: 100%;
  max-width: 112.8rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner-wide2 {
    padding: 0 2.4rem;
  }
}

.l-header {
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 4rem;
  }
}

.l-main {
  width: 100%;
  z-index: 0;
}

.c-btn-search {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--blue, #014E98);
  background: var(--blue, #014E98);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-btn-search span {
  display: inline-block;
  color: var(--white, #FFF);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-padding-start: 2.8rem;
          padding-inline-start: 2.8rem;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-btn-search span.--side {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-btn-search span {
    font-size: 1.6rem;
  }
}
.c-btn-search span::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_search.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn-search span::before {
    width: 1.6rem;
    height: 1.6rem;
    -webkit-padding-start: 2.4rem;
            padding-inline-start: 2.4rem;
  }
}
@media (hover: hover) {
  .c-btn-search:hover {
    background: var(--white, #FFF);
  }
  .c-btn-search:hover span {
    color: var(--blue, #014E98);
  }
  .c-btn-search:hover span::before {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_search-blue.svg) no-repeat center center/contain;
  }
}

.c-btn-arrow {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  background: var(--blue, #014E98);
  border: 0.1rem solid var(--blue, #014E98);
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-btn-arrow span {
  display: inline-block;
  color: var(--white, #FFF);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-padding-end: 3rem;
          padding-inline-end: 3rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn-arrow span {
    font-size: 1.6rem;
    -webkit-padding-end: 2.8rem;
            padding-inline-end: 2.8rem;
  }
}
.c-btn-arrow span::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn-arrow span::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (hover: hover) {
  .c-btn-arrow:hover {
    background: var(--white, #FFF);
  }
  .c-btn-arrow:hover span {
    color: var(--blue, #014E98);
  }
  .c-btn-arrow:hover span::after {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow-blue.svg) no-repeat center center/contain;
  }
}
.c-btn-arrow.--light {
  background: var(--white, #FFF);
}
.c-btn-arrow.--light span {
  color: var(--blue, #014E98);
}
.c-btn-arrow.--light span::after {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow-blue.svg) no-repeat center center/contain;
}
@media (hover: hover) {
  .c-btn-arrow.--light:hover {
    background: var(--blue, #014E98);
  }
  .c-btn-arrow.--light:hover span {
    color: var(--white, #FFF);
  }
  .c-btn-arrow.--light:hover span::after {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow.svg) no-repeat center center/contain;
  }
}
.c-btn-arrow.--back span {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
}
.c-btn-arrow.--back span::after {
  rotate: 180deg;
  right: auto;
  left: 0;
}

.c-btn-download {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--blue, #014E98);
  background: var(--white, #FFF);
  display: grid;
  place-items: center;
}
.c-btn-download span {
  display: inline-block;
  color: var(--blue, #014E98);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-padding-start: 2.8rem;
          padding-inline-start: 2.8rem;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn-download span {
    font-size: 1.6rem;
  }
}
.c-btn-download span::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_download.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn-download span::before {
    width: 1.6rem;
    height: 1.6rem;
    -webkit-padding-start: 2.4rem;
            padding-inline-start: 2.4rem;
  }
}
@media (hover: hover) {
  .c-btn-download {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-btn-download:hover {
    background: var(--blue, #014E98);
  }
  .c-btn-download:hover span {
    color: var(--white, #FFF);
  }
  .c-btn-download:hover span::before {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_download-light.svg) no-repeat center center/contain;
  }
}

.c-btn-contact {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  background: var(--orange, #DB5F00);
  border: 0.1rem solid var(--orange, #DB5F00);
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-btn-contact span {
  display: inline-block;
  color: var(--white, #FFF);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-padding-start: 2.8rem;
          padding-inline-start: 2.8rem;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn-contact span {
    font-size: 1.6rem;
  }
}
.c-btn-contact span::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_mail.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn-contact span::before {
    width: 1.6rem;
    height: 1.6rem;
    -webkit-padding-start: 2.4rem;
            padding-inline-start: 2.4rem;
  }
}
@media (hover: hover) {
  .c-btn-contact:hover {
    background: var(--white, #FFF);
  }
  .c-btn-contact:hover span {
    color: var(--orange, #DB5F00);
  }
  .c-btn-contact:hover span::before {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_mail-orange.svg) no-repeat center center/contain;
  }
}

/* --------------------------------
  base
-------------------------------- */
.c-search-box {
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
  padding: 4.8rem 4.7rem 3.2rem;
  border-radius: 0.2rem 0.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-search-box {
    -webkit-margin-before: 2.2rem;
            margin-block-start: 2.2rem;
    padding: 2.4rem;
    border-radius: 0.2rem;
  }
}

/* dl */
.c-search-box-dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-search-box-dl {
    gap: 1.6rem;
  }
}

/* list item */
.c-search-box-list-item:nth-child(1) {
  grid-column: 1/3;
}
.c-search-box-list-item:nth-child(2) {
  grid-column: 1/2;
}
@media screen and (max-width: 767px) {
  .c-search-box-list-item:nth-child(2) {
    grid-column: 1/3;
  }
}
.c-search-box-list-item:nth-child(3) {
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .c-search-box-list-item:nth-child(3) {
    grid-column: 1/3;
  }
}

/* dt */
.c-search-box-list-dt {
  position: relative;
  -webkit-padding-start: 0.8rem;
          padding-inline-start: 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-black, #1B1D1E);
}
@media screen and (max-width: 767px) {
  .c-search-box-list-dt {
    font-size: 1.8rem;
  }
}
.c-search-box-list-dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.4rem;
  height: 2.4rem;
  background: var(--blue, #014E98);
}

/* dd */
.c-search-box-list-dd {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}

/* input / select 共通 */
.c-search-box-input,
.c-search-box-select {
  width: 100%;
  height: 3.6rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--border-kensaku, #393D40);
  background: var(--white, #FFF);
  font-size: 1.6rem;
}

/* input */
.c-search-box-input::-webkit-input-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.c-search-box-input::-moz-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.c-search-box-input:-ms-input-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.c-search-box-input::-ms-input-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.c-search-box-input::placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}

/* select */
.c-search-box-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--white, #FFF) url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_select-arrow.svg) no-repeat right 0.8rem center/1.6rem 3.2rem;
  color: var(--text-black, #1B1D1E);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-search-box-btn-wrap {
  -webkit-margin-before: 2.6rem;
          margin-block-start: 2.6rem;
  width: 28rem;
  max-width: 100%;
  height: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-search-box-btn-wrap {
    -webkit-margin-before: 2.2rem;
            margin-block-start: 2.2rem;
    width: 26.8rem;
  }
}

/* --------------------------------
  modifier : header
-------------------------------- */
/* --------------------------------
  modifier : top-mv
-------------------------------- */
.c-search-box.--top-mv {
  background: var(--white, #FFF);
}
@media screen and (max-width: 767px) {
  .c-search-box.--top-mv {
    padding: 2.4rem 2.4rem 2.2rem;
    border: 0.1rem solid var(--border-blue, #B8D3EF);
    background: var(--light-blue, #EFF7FF);
  }
}
@media screen and (max-width: 767px) {
  .c-search-box.--top-mv .c-search-box-list-item:not(:first-child) {
    -webkit-margin-before: 0.4rem;
            margin-block-start: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-search-box.--top-mv .c-search-box-list-dd {
    -webkit-margin-before: 0.6rem;
            margin-block-start: 0.6rem;
  }
}

/* --------------------------------
  modifier : side
-------------------------------- */
.c-search-box.--side {
  border-radius: 0.2rem;
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  background: var(--light-blue, #EFF7FF);
  padding: 2.4rem;
}
.c-search-box.--side .c-search-box-list-item:nth-child(1) {
  grid-column: 1/3;
}
.c-search-box.--side .c-search-box-list-item:nth-child(2) {
  grid-column: 1/3;
}
.c-search-box.--side .c-search-box-list-item:nth-child(3) {
  grid-column: 1/3;
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.c-pagination__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.c-pagination__first,
.c-pagination__last,
.c-pagination__prev,
.c-pagination__next {
  border: 0.1rem solid var(--blue, #014E98);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3rem;
  height: 3.6rem;
  padding: 1rem;
  background-color: var(--white, #FFF);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.2rem 1.2rem;
}
@media (hover: hover) {
  .c-pagination__first,
  .c-pagination__last,
  .c-pagination__prev,
  .c-pagination__next {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-pagination__first:hover,
  .c-pagination__last:hover,
  .c-pagination__prev:hover,
  .c-pagination__next:hover {
    background-color: var(--blue, #014E98);
    color: var(--white, #FFF);
  }
}

@media screen and (max-width: 767px) {
  .c-pagination__first,
  .c-pagination__last {
    display: none;
  }
}

.c-pagination__first {
  background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-first.svg);
}
@media (hover: hover) {
  .c-pagination__first {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-pagination__first:hover {
    background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-first-light.svg);
  }
}

.c-pagination__last {
  background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-last.svg);
}
@media (hover: hover) {
  .c-pagination__last {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-pagination__last:hover {
    background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-last-light.svg);
  }
}

.c-pagination__prev {
  background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-prev.svg);
}
@media (hover: hover) {
  .c-pagination__prev {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-pagination__prev:hover {
    background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-prev-light.svg);
  }
}

.c-pagination__next {
  background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-next.svg);
}
@media (hover: hover) {
  .c-pagination__next {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-pagination__next:hover {
    background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-next-light.svg);
  }
}

.c-pagination__prev:disabled,
.c-pagination__next:disabled {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
}

.c-pagination__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.c-pagination__number {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 3rem;
  padding: 1rem 0.2rem;
  border: 0.1rem solid var(--blue, #014E98);
  color: var(--blue, #014E98);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__number {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .c-pagination__number {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-pagination__number:hover {
    background-color: var(--blue, #014E98);
    color: var(--white, #FFF);
    opacity: 1;
  }
}

.c-pagination__number.--active {
  background-color: var(--blue, #014E98);
  color: var(--white, #FFF);
  pointer-events: none;
}

.c-pagination__dots {
  width: 1.4rem;
  height: 3.6rem;
  padding-block: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_pagination-dots.svg) no-repeat center bottom 1rem;
  background-size: 1.4rem 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__dots {
    display: none;
  }
}

.c-form__error-message {
  display: none;
  color: #EE6A62;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.c-form:has(.is-error) .c-form__error-message {
  display: block;
}

.c-form:has(.is-error) .c-form__list {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .c-form:has(.is-error) .c-form__list {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.c-form__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.c-form__title:not(:first-of-type) {
  -webkit-margin-before: 3.2rem;
          margin-block-start: 3.2rem;
}
.c-form__title.--hissu, .c-form__title.--option {
  -webkit-padding-start: 4.5rem;
          padding-inline-start: 4.5rem;
}
.c-form__title.--hissu::before, .c-form__title.--option::before {
  padding-inline: 0.4rem;
  border-radius: 0.2rem;
  color: var(--white, #FFF);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.215;
  letter-spacing: 0.05em;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.c-form__title.--hissu::before {
  content: "必須";
  background: var(--orange, #DB5F00);
}
.c-form__title.--option::before {
  content: "任意";
  background: var(--gray, #D1D1D1);
}

.c-form__input {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}
.c-form__input input[type=text],
.c-form__input input[type=email],
.c-form__input input[type=tel],
.c-form__input textarea {
  width: 100%;
  min-height: 4.6rem;
  padding-inline: 0.5em;
  border-radius: 0.2rem;
  background: var(--light-gray, #EEF0F2);
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-form__input input[type=text]::-webkit-input-placeholder, .c-form__input input[type=email]::-webkit-input-placeholder, .c-form__input input[type=tel]::-webkit-input-placeholder, .c-form__input textarea::-webkit-input-placeholder {
  color: #E6E6E6;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.c-form__input input[type=text]::-moz-placeholder, .c-form__input input[type=email]::-moz-placeholder, .c-form__input input[type=tel]::-moz-placeholder, .c-form__input textarea::-moz-placeholder {
  color: #E6E6E6;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.c-form__input input[type=text]:-ms-input-placeholder, .c-form__input input[type=email]:-ms-input-placeholder, .c-form__input input[type=tel]:-ms-input-placeholder, .c-form__input textarea:-ms-input-placeholder {
  color: #E6E6E6;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.c-form__input input[type=text]::-ms-input-placeholder, .c-form__input input[type=email]::-ms-input-placeholder, .c-form__input input[type=tel]::-ms-input-placeholder, .c-form__input textarea::-ms-input-placeholder {
  color: #E6E6E6;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.c-form__input input[type=text]::placeholder,
.c-form__input input[type=email]::placeholder,
.c-form__input input[type=tel]::placeholder,
.c-form__input textarea::placeholder {
  color: #E6E6E6;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.c-form__input input[type=text]:focus,
.c-form__input input[type=email]:focus,
.c-form__input input[type=tel]:focus,
.c-form__input textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem var(--blue, #014E98);
          box-shadow: 0 0 0 0.2rem var(--blue, #014E98);
}
.c-form__input input.is-error,
.c-form__input textarea.is-error {
  background-color: #EE6A62;
}

.c-form__2columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-start: 1.6rem;
          padding-inline-start: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-form__2columns {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    display: grid;
    grid-template-columns: 4.7rem 1fr;
    row-gap: 1rem;
  }
}
.c-form__2columns input {
  max-width: 28rem;
}

.c-form__input-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4.7rem;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.c-form__input-title:not(:first-of-type) {
  -webkit-margin-start: 5.4rem;
          margin-inline-start: 5.4rem;
}
@media screen and (max-width: 767px) {
  .c-form__input-title:not(:first-of-type) {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.c-form__text {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  color: var(--text-black, #1B1D1E);
  font-size: 1.4rem;
  font-weight: 400;
}

.c-form__radio-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.6rem;
     -moz-column-gap: 2.6rem;
          column-gap: 2.6rem;
  row-gap: 1.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-form__radio-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}
.c-form__radio-list.--width-narrow {
  max-width: 76rem;
}

.c-form__input-radio + span {
  cursor: pointer;
  display: inline-block;
  -webkit-padding-start: 1.9rem;
          padding-inline-start: 1.9rem;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
}
.c-form__input-radio + span::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--white, #FFF);
  border: 0.1rem solid var(--gray, #D1D1D1);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form__input-radio + span::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--text-black, #1B1D1E);
  position: absolute;
  left: 0.3rem;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-form__input-radio:checked + span::after {
  opacity: 1;
}
.c-form__input-radio:focus + span::before {
  -webkit-box-shadow: 0 0 0 0.1rem rgba(63, 81, 181, 0.2509803922);
          box-shadow: 0 0 0 0.1rem rgba(63, 81, 181, 0.2509803922);
}
.c-form__input-radio:disabled + span {
  opacity: 0.5;
}
.c-form__input-radio:disabled + span::before {
  background-color: #eee;
}
.c-form__input-radio:disabled + span::after {
  content: none;
}

.c-form__privacy-box {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  margin-inline: auto;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-form__privacy-box {
    -webkit-margin-before: 3.8rem;
            margin-block-start: 3.8rem;
  }
}

.c-form__privacy-box-link {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .c-form__privacy-box-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .c-form__privacy-box-link:hover {
    opacity: 0.7;
  }
}

.c-form__privacy-checkbox + span {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-block;
  -webkit-padding-start: 2.8rem;
          padding-inline-start: 2.8rem;
  position: relative;
}
.c-form__privacy-checkbox + span::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--text-black, #1B1D1E);
  background: var(--white, #FFF);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form__privacy-checkbox + span::after {
  content: "";
  display: block;
  width: 1.4em;
  height: 0.8em;
  border-bottom: 0.3rem solid #014E98;
  border-left: 0.3rem solid #014E98;
  margin-top: -0.4em;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-form__privacy-checkbox:checked + span::after {
  opacity: 1;
}
.c-form__privacy-checkbox:focus + span::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.2509803922);
          box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.2509803922);
}
.c-form__privacy-checkbox:disabled + span {
  opacity: 0.5;
}
.c-form__privacy-checkbox:disabled + span::before {
  background-color: #eee;
}
.c-form__privacy-checkbox:disabled + span::after {
  content: none;
}

.c-form__submit {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    -webkit-margin-before: 3.4rem;
            margin-block-start: 3.4rem;
    width: 26.8rem;
    height: 4.8rem;
  }
}

.c-form__submit-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.p-header {
  background: var(--color-base);
  width: 100%;
  height: 100%;
  padding-inline: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-inline: 1.2rem;
  }
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    -webkit-column-gap: 0.4rem;
       -moz-column-gap: 0.4rem;
            column-gap: 0.4rem;
  }
}

.p-header__logo-img {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo-img {
    width: 2.4rem;
  }
}
.p-header__logo-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-header__logo-link {
  display: block;
  color: var(--text-black, #1B1D1E);
  font-size: clamp(1.8rem, 1.3076923077rem + 0.4807692308vw, 2rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-header__logo-link {
    font-size: 1.6rem;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.6rem, -1.3538461538rem + 2.8846153846vw, 2.8rem);
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    width: 100%;
    height: calc(100svh - 8rem);
    background: var(--light-blue, #EFF7FF);
    padding: 2.4rem 4.8rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    height: calc(100svh - 4rem);
    padding: 2.4rem 2.4rem;
  }
}
.p-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.2rem, -1.7538461538rem + 2.8846153846vw, 2.4rem);
}
@media screen and (max-width: 1023px) {
  .p-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-header__nav-link {
  font-size: clamp(1.5rem, 1.2538461538rem + 0.2403846154vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 0.2rem solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 1023px) {
  .p-header__nav-link {
    font-size: 2.133rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-link {
    font-size: 1.4rem;
  }
}
.p-header__nav-link:hover {
  border-bottom-color: var(--blue);
}

.p-header__nav-button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

.p-header__nav-button {
  display: grid;
  place-items: center;
  width: clamp(14rem, -2.7384615385rem + 16.3461538462vw, 20.8rem);
  height: 5.1rem;
}
.p-header__nav-button.--contact {
  border: 0.1rem solid var(--orange);
  background: var(--orange);
}
.p-header__nav-button.--search {
  border: 0.1rem solid var(--blue);
  background: var(--blue);
}

.p-header__button-text {
  color: var(--white);
  font-size: clamp(1.4rem, 0.4153846154rem + 0.9615384615vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
.p-header__button-text::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.--contact .p-header__button-text::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_mail.svg) no-repeat center center/contain;
}
.--search .p-header__button-text::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_search.svg) no-repeat center center/contain;
}

@media (hover: hover) {
  .p-header__nav-button {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-header__nav-button.--contact:hover {
    background: var(--white);
  }
  .p-header__nav-button.--contact:hover .p-header__button-text {
    color: var(--orange);
  }
  .p-header__nav-button.--contact:hover .p-header__button-text::before {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_mail-orange.svg) no-repeat center center/contain;
  }
  .p-header__nav-button.--search:hover {
    background: var(--white);
  }
  .p-header__nav-button.--search:hover .p-header__button-text {
    color: var(--blue);
  }
  .p-header__nav-button.--search:hover .p-header__button-text::before {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_search-blue.svg) no-repeat center center/contain;
  }
}
.p-header__sp-button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}

.p-header__search-btn {
  display: grid;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.1rem solid var(--blue);
  background-color: var(--blue);
  background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.8rem 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-header__search-btn {
    width: 2rem;
    height: 2rem;
    background-size: 0.9rem 0.9rem;
  }
}
@media (hover: hover) {
  .p-header__search-btn {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-header__search-btn:hover {
    background-color: var(--white);
    background-image: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_search-blue.svg);
  }
}

.p-header__hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    width: 3.4rem;
    height: 4rem;
    position: relative;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 2.4rem;
  }
}
@media (hover: hover) {
  .p-header__hamburger {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-header__hamburger:hover {
    opacity: 0.7;
  }
}

.p-header__hamburger-icon {
  display: inline-block;
  width: 100%;
  height: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-icon {
    height: 1.2rem;
  }
}

.p-header__hamburger-icon-bar {
  display: inline-block;
  width: 100%;
  height: 0.1rem;
  background-color: var(--text-black);
  border-radius: 0.6rem;
  position: absolute;
  left: 0;
}

.p-header__hamburger-icon-bar:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.is-open .p-header__hamburger-icon-bar:nth-child(1) {
  width: 100%;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
.is-open .p-header__hamburger-icon-bar:nth-child(1)::after {
  opacity: 0;
  visibility: hidden;
}

.p-header__hamburger-icon-bar:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
.is-open .p-header__hamburger-icon-bar:nth-child(2) {
  height: 0;
  opacity: 0;
}

.p-header__hamburger-icon-bar:nth-child(3) {
  bottom: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.is-open .p-header__hamburger-icon-bar:nth-child(3) {
  -webkit-transform: rotate(45deg) translateY(50%);
          transform: rotate(45deg) translateY(50%);
  bottom: 50%;
}

.p-header__sp-bg {
  position: fixed;
  display: block;
  top: 8rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: var(--text-black);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-header__sp-bg {
    top: 4rem;
  }
}
.p-header__sp-bg.is-open {
  visibility: visible;
  opacity: 0.8;
}

.p-header__search-box {
  border-radius: 0 0 0.2rem 0.2rem;
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  background: var(--light-blue, #EFF7FF);
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}
.p-header__search-box.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-header__search-close-btn {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 4rem;
  height: 4rem;
}
.p-header__search-close-btn::before, .p-header__search-close-btn::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.1rem;
  background-color: var(--text-black);
  position: absolute;
  left: 50%;
  top: 50%;
}
.p-header__search-close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-header__search-close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-footer {
  -webkit-padding-before: 7.8rem;
          padding-block-start: 7.8rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/bg_footer.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-footer {
    -webkit-padding-before: 6rem;
            padding-block-start: 6rem;
  }
}

.p-footer__inner {
  width: 100%;
  padding-inline: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 7.4rem;
    padding-inline: 2.4rem;
  }
}

.p-footer__info {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

.p-footer__title {
  grid-row: 1/2;
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .p-footer__title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.p-footer__title-link {
  color: var(--white, #FFF);
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__title-link {
    font-size: 1.8rem;
  }
}

.p-footer__logo {
  grid-row: 2/3;
  grid-column: 1/2;
  width: 17.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    -webkit-margin-before: 3.6rem;
            margin-block-start: 3.6rem;
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-footer__access {
  -webkit-margin-before: -0.4rem;
          margin-block-start: -0.4rem;
  grid-row: 2/3;
  grid-column: 2/3;
  color: var(--white, #FFF);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__access {
    -webkit-margin-before: 1.7rem;
            margin-block-start: 1.7rem;
    grid-row: 3/4;
    grid-column: 1/2;
    font-size: re, 14;
  }
}

.p-footer__access-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-footer__address {
  display: block;
}

.p-footer__tel {
  display: block;
}
.p-footer__email {
  display: block;
}
.p-footer__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  row-gap: 2.5rem;
  -webkit-column-gap: 8.2rem;
     -moz-column-gap: 8.2rem;
          column-gap: 8.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-footer__nav-link {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 0.2rem solid transparent;
}
@media (hover: hover) {
  .p-footer__nav-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-footer__nav-link:hover {
    border-bottom-color: var(--white);
  }
}

.p-footer__copyright {
  -webkit-margin-before: 9rem;
          margin-block-start: 9rem;
  text-align: center;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    -webkit-margin-before: 6.2rem;
            margin-block-start: 6.2rem;
    padding-block: 0.4rem;
  }
}

.p-footer__copyright-text {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
}

.p-to-contact {
  position: fixed;
  bottom: 10%;
  right: 3.2rem;
  z-index: 800;
}
@media screen and (max-width: 767px) {
  .p-to-contact {
    bottom: 5%;
    right: 0;
  }
}
.p-to-contact.--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-to-contact__link {
  display: block;
  width: 20.8rem;
  height: 5.6rem;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--orange, #DB5F00);
  background: var(--orange, #DB5F00);
  padding-block: 0.8rem;
  text-align: center;
}
@media (hover: hover) {
  .p-to-contact__link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-to-contact__link:hover {
    background: var(--white, #FFF);
  }
}

.p-to-contact__link-lead {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
@media (hover: hover) {
  .p-to-contact__link:hover .p-to-contact__link-lead {
    color: var(--orange, #DB5F00);
  }
}

.p-to-contact__link-text {
  -webkit-margin-before: 0.4rem;
          margin-block-start: 0.4rem;
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-padding-end: 1.6rem;
          padding-inline-end: 1.6rem;
  position: relative;
}
.p-to-contact__link-text::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
@media (hover: hover) {
  .p-to-contact__link:hover .p-to-contact__link-text {
    color: var(--orange, #DB5F00);
  }
  .p-to-contact__link:hover .p-to-contact__link-text::after {
    background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow-orange.svg) no-repeat center center/contain;
  }
}

/* --------------------------------
  commmon
-------------------------------- */
.p-top__sec-title {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__sec-title {
    font-size: 2.4rem;
  }
}

.p-top__sec-lead {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__sec-lead {
    text-align: left;
    line-height: 1.6;
  }
  .p-top__sec-lead.--center-md {
    text-align: center;
  }
}
.p-top__sec-lead .--highlight {
  color: var(--blue, #014E98);
}

/* --------------------------------
  mv
-------------------------------- */
.p-top__mv {
  width: 100%;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/bg_mv.webp) no-repeat center center/cover;
  -webkit-padding-before: 14.2rem;
          padding-block-start: 14.2rem;
  -webkit-padding-after: 5.4rem;
          padding-block-end: 5.4rem;
  padding-inline: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv {
    -webkit-padding-before: 6.4rem;
            padding-block-start: 6.4rem;
    -webkit-padding-after: 0;
            padding-block-end: 0;
    padding-inline: 0;
  }
}

.p-top__mv-lead {
  color: var(--white, #FFF);
  text-align: center;
  font-size: clamp(5.6rem, 3.6307692308rem + 1.9230769231vw, 6.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.p-top__mv-lead .--palt {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (max-width: 767px) {
  .p-top__mv-lead {
    font-size: 2.4rem;
  }
}

.p-top_mv-text {
  -webkit-margin-before: 1.8rem;
          margin-block-start: 1.8rem;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top_mv-text {
    -webkit-margin-before: 2.7rem;
            margin-block-start: 2.7rem;
    font-size: 1.8rem;
  }
  .p-top_mv-text .--big {
    display: inline-block;
    -webkit-margin-before: 0.3rem;
            margin-block-start: 0.3rem;
    font-size: 2.2rem;
  }
}
.p-top_mv-text + .p-top_mv-text {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top_mv-text + .p-top_mv-text {
    -webkit-margin-before: -0.2rem;
            margin-block-start: -0.2rem;
  }
}

.p-top__mv-text-deco {
  display: inline-block;
  border-radius: 0.2rem;
  background: var(--orange, #DB5F00);
  padding: 0.3rem 0.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__mv-text-deco {
    font-size: 2.2rem;
    padding: 0rem 0.6rem 0.1rem;
  }
}
.p-top__mv-text-deco:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.6rem;
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv-text-deco:before {
    width: 2rem;
    height: 2rem;
  }
}
.p-top__mv-text-deco.--deco01 {
  -webkit-padding-start: 3.4rem;
          padding-inline-start: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv-text-deco.--deco01 {
    -webkit-padding-start: 2.8rem;
            padding-inline-start: 2.8rem;
  }
}
.p-top__mv-text-deco.--deco01:before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_mv01.svg) no-repeat center center/100%;
}
.p-top__mv-text-deco.--deco02 {
  -webkit-padding-start: 3.4rem;
          padding-inline-start: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv-text-deco.--deco02 {
    -webkit-padding-start: 2.4rem;
            padding-inline-start: 2.4rem;
  }
}
.p-top__mv-text-deco.--deco02:before {
  left: 0.4rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_mv02.svg) no-repeat center center/100%;
}
.p-top__mv-text-deco.--deco03 {
  -webkit-padding-start: 3.6rem;
          padding-inline-start: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv-text-deco.--deco03 {
    -webkit-margin-before: 0.7rem;
            margin-block-start: 0.7rem;
    -webkit-padding-start: 2.6rem;
            padding-inline-start: 2.6rem;
  }
}
.p-top__mv-text-deco.--deco03:before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_mv03.svg) no-repeat center center/100%;
}

.p-top__mv-text-x {
  color: #9D9D9D;
  text-align: center;
  margin-inline: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv-text-x {
    font-size: 2.2rem;
  }
}

.p-top__search-box {
  -webkit-margin-before: 4.8rem;
          margin-block-start: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__search-box {
    -webkit-margin-before: 2.8rem;
            margin-block-start: 2.8rem;
  }
}

/* --------------------------------
  about
-------------------------------- */
.p-top__about {
  -webkit-padding-before: 8rem;
          padding-block-start: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top__about {
    -webkit-padding-before: 5.2rem;
            padding-block-start: 5.2rem;
  }
}

.p-top__about-content {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__about-content {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}

.p-top__about-text {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__about-text {
    text-align: left;
    font-weight: 700;
    line-height: 1.78;
  }
}
.p-top__about-text .--highlight {
  color: var(--blue, #014E98);
}

/* --------------------------------
  work
-------------------------------- */
.p-top__work {
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
}
@media screen and (max-width: 767px) {
  .p-top__work {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
  }
}

.p-top__work-content {
  -webkit-margin-before: 2.6rem;
          margin-block-start: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__work-content {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}

.p-top__work-list {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__work-list {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
    grid-template-columns: 1fr;
    gap: 3.2rem;
    max-width: 28.8rem;
    margin-inline: auto;
  }
}

.p-top__work-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-top__work-item {
    grid-template-rows: auto;
    grid-row: auto;
  }
}

.p-top__work-item-title-area {
  border-radius: 0.2rem;
  border: 0.1rem solid var(--blue, #014E98);
  display: grid;
  width: 100%;
  height: 8.8rem;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-title-area {
    height: auto;
    padding-block: 1rem;
  }
}

.p-top__work-item-title {
  color: var(--text-black, #1B1D1E);
  -webkit-padding-start: 2.6rem;
          padding-inline-start: 2.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-title {
    -webkit-padding-start: 3rem;
            padding-inline-start: 3rem;
  }
}
.p-top__work-item-title::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-title::before {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.p-top__work-item-title .--main-title {
  display: block;
  -webkit-margin-start: 0.9rem;
          margin-inline-start: 0.9rem;
  color: var(--text-black, #1B1D1E);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-title .--main-title {
    font-size: 2rem;
  }
}
.p-top__work-item-title .--sub-title {
  display: block;
  color: var(--text-black, #1B1D1E);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-title .--sub-title {
    font-size: 1.6rem;
  }
}
.p-top__work-item:nth-of-type(1) .p-top__work-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work01.svg) no-repeat center center/100%;
}
.p-top__work-item:nth-of-type(1) .p-top__work-item-title .--main-title {
  letter-spacing: 0;
}
.p-top__work-item:nth-of-type(1) .p-top__work-item-title .--sub-title {
  letter-spacing: 0;
}
.p-top__work-item:nth-of-type(2) .p-top__work-item-title {
  -webkit-padding-start: 2.2rem;
          padding-inline-start: 2.2rem;
}
.p-top__work-item:nth-of-type(2) .p-top__work-item-title::before {
  width: 2.2rem;
  height: 2.8rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work02.svg) no-repeat center center/100%;
}
.p-top__work-item:nth-of-type(3) .p-top__work-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work03.svg) no-repeat center center/100%;
}
.p-top__work-item:nth-of-type(4) .p-top__work-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work04.svg) no-repeat center center/100%;
}
.p-top__work-item:nth-of-type(4) .p-top__work-item-title .--sub-title {
  letter-spacing: 0;
}
.p-top__work-item:nth-of-type(5) .p-top__work-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work05.svg) no-repeat center center/100%;
}
.p-top__work-item:nth-of-type(5) .p-top__work-item-title .--main-title {
  letter-spacing: 0;
}
.p-top__work-item:nth-of-type(5) .p-top__work-item-title .--sub-title {
  letter-spacing: 0;
}
.p-top__work-item:nth-of-type(6) .p-top__work-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work06.svg) no-repeat center center/100%;
}
.p-top__work-item:nth-of-type(6) .p-top__work-item-title .--main-title {
  line-height: 1;
}

.p-top__work-item-problem {
  -webkit-margin-before: 1.3rem;
          margin-block-start: 1.3rem;
  border-radius: 0.2rem 0.2rem 0 0;
  background: var(--bg-gray, #F6F6F6);
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  padding-block: 1.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-problem {
    -webkit-margin-before: 0.4rem;
            margin-block-start: 0.4rem;
    padding-block: 1.4rem 1.3rem;
  }
}
.p-top__work-item-problem::before {
  content: "";
  position: absolute;
  border-inline: 0.75rem solid transparent;
  border-top: 1.3rem solid #B8D3EF;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
.p-top__work-item-problem::after {
  content: "";
  border-inline: 0.65rem solid transparent;
  border-top: 1.2rem solid #F6F6F6;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}

.p-top__work-item-problem-text {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.p-top__work-item-solution {
  min-height: 16.7rem;
  border-radius: 0 0 0.2rem 0.2rem;
  border-inline: 0.1rem solid var(--border-blue, #B8D3EF);
  border-bottom: 0.1rem solid var(--border-blue, #B8D3EF);
  background: var(--light-blue3, #EFF7FF);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-solution {
    min-height: 0;
    padding-block: 2.7rem 2.4rem;
  }
}
.p-top__work-item-solution::before {
  content: "";
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/bg_work-solution.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top__work-item-solution::before {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.p-top__work-item-solution-text {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.p-top__work-item-solution-text .--highlight {
  color: var(--orange, #DB5F00);
}

.p-top__work-btn {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top__work-btn {
    width: 28.8rem;
  }
}

/* --------------------------------
  partner
-------------------------------- */
.p-top__partner {
  -webkit-padding-before: 11.8rem;
          padding-block-start: 11.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__partner {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
  }
}

.p-top__partner-content {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__partner-content {
    -webkit-margin-before: 3.4rem;
            margin-block-start: 3.4rem;
  }
}

.p-top__partner-list {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  max-width: 87.2rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__partner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-top__partner-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top__partner-item img {
  width: 100%;
  height: auto;
}

.p-top__partner-btn {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top__partner-btn {
    width: 28.8rem;
  }
}

.p-top__partner-entry {
  -webkit-margin-before: 12rem;
          margin-block-start: 12rem;
  padding-block: 8rem 7.9rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/bg_partner-entry.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top__partner-entry {
    -webkit-margin-before: 8rem;
            margin-block-start: 8rem;
    padding-block: 5.1rem 5.5rem;
  }
}

.p-top__partner-entry-lead {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__partner-entry-lead {
    font-size: 2.4rem;
  }
}

.p-top__partner-entry-text {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top__partner-entry-text {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}

.p-top__partner-entry-btn {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top__partner-entry-btn {
    -webkit-margin-before: 4.8rem;
            margin-block-start: 4.8rem;
    width: 28.8rem;
  }
}
@media (hover: hover) {
  .p-top__partner-entry-btn .c-btn-arrow:hover {
    border-color: var(--white, #FFF);
  }
}

/* --------------------------------
  faq
-------------------------------- */
.p-top__faq {
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
}
@media screen and (max-width: 767px) {
  .p-top__faq {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
  }
}

.p-top__faq-list {
  -webkit-margin-before: 3.8rem;
          margin-block-start: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__faq-list {
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

.p-top__faq-item {
  border-bottom: 0.1rem solid #D1D1D1;
  padding-block: 2rem 2.4rem;
}
.p-top__faq-item:first-child {
  border-top: 0.1rem solid #D1D1D1;
}
@media screen and (max-width: 767px) {
  .p-top__faq-item {
    padding-block: 2.1rem 1.9rem;
  }
}
.p-top__faq-item.is-hidden {
  display: none;
}

.p-top__faq-item-a {
  -webkit-padding-before: 1rem;
          padding-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top__faq-item-a {
    -webkit-padding-before: 1.2rem;
            padding-block-start: 1.2rem;
  }
}

.p-top__faq-item-text {
  display: inline-block;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-padding-start: 3.6rem;
          padding-inline-start: 3.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__faq-item-text {
    -webkit-padding-start: 3.1rem;
            padding-inline-start: 3.1rem;
    line-height: 1.6;
  }
}
.p-top__faq-item-text::before {
  display: inline-block;
  color: var(--text-black, #1B1D1E);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.p-top__faq-item-q .p-top__faq-item-text::before {
  content: "Q.";
}
.p-top__faq-item-a .p-top__faq-item-text::before {
  content: "A.";
}

.p-top__faq-btn-wrap {
  -webkit-margin-before: 3.8rem;
          margin-block-start: 3.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__faq-btn-wrap {
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

.p-top__faq-btn {
  color: var(--blue, #014E98);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__faq-btn {
    font-size: 1.6rem;
  }
}
.p-top__faq-btn::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.6rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow-blue.svg) no-repeat center center/100%;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  translate: 0 -50%;
  rotate: 90deg;
}
.p-top__faq-btn.--close::after {
  rotate: -90deg;
}
.p-top__faq-btn.is-hidden {
  display: none;
}
@media (hover: hover) {
  .p-top__faq-btn {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-top__faq-btn:hover {
    opacity: 0.7;
  }
}

/* --------------------------------
  news
-------------------------------- */
.p-top__news {
  -webkit-margin-before: 11.6rem;
          margin-block-start: 11.6rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
.p-top__news .p-top__sec-title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top__news {
    -webkit-margin-before: 7.4rem;
            margin-block-start: 7.4rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
  .p-top__news .p-top__sec-title {
    text-align: center;
  }
}

.p-top__news-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr auto;
}
@media screen and (max-width: 767px) {
  .p-top__news-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 4.6rem;
  }
}

.p-top__news-info {
  grid-row: 1/2;
  grid-column: 1/2;
}

.p-top__news-lead {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__news-lead {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
    text-align: center;
  }
}

.p-top__news-btn {
  grid-row: 2/3;
  grid-column: 1/2;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__news-btn {
    grid-row: 3/4;
    width: 28.8rem;
    margin-inline: auto;
  }
}

.p-top__news-list {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .p-top__news-list {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

.p-top__news-link {
  display: block;
  padding-block: 0.4rem 1.7rem;
  border-bottom: 0.1rem solid #D1D1D1;
}
.p-top__news-item:not(:first-child) .p-top__news-link {
  -webkit-padding-before: 1.6rem;
          padding-block-start: 1.6rem;
}
@media (hover: hover) {
  .p-top__news-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-top__news-link:hover {
    background-color: var(--hover-blue, #d2e8fe);
  }
}

.p-top__news-item-head {
  display: grid;
  grid-template-columns: 10rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top__news-item-date {
  color: var(--text-black, #1B1D1E);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-top__news-item-category {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.2rem;
  background: var(--blue, #014E98);
  padding: 0.4rem 1.2rem;
  color: var(--white, #FFF);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-top__news-item-title {
  -webkit-margin-before: 0.6rem;
          margin-block-start: 0.6rem;
  color: var(--text-black, #1B1D1E);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top__news-item-title {
    -webkit-line-clamp: 2;
  }
}

/* --------------------------------
  facility index
-------------------------------- */
.p-facility {
  width: 100%;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-facility {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
  }
}

.p-facility__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-facility__title {
    font-size: 3.2rem;
  }
}

.p-facility__search-box-wrap {
  width: 100%;
  max-width: 134rem;
  padding: 0 3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-facility__search-box-wrap {
    padding: 0;
  }
}

.p-facility__search-box {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  padding: 4rem;
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  background: var(--light-blue, #EFF7FF);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-facility__search-box {
    -webkit-margin-before: 5.8rem;
            margin-block-start: 5.8rem;
    padding: 2.4rem 2.4rem 2.2rem;
  }
}

.p-facility__search-box-list-item:not(:first-child) {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-facility__search-box-list-item:not(:first-child) {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-facility__search-box-list-item.u-view-md {
    display: block;
  }
}

.p-facility__search-box-list-dt {
  color: var(--text-black, #1B1D1E);
  font-size: 2rem;
  font-weight: 700;
  -webkit-padding-start: 0.8rem;
          padding-inline-start: 0.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-facility__search-box-list-dt {
    font-size: 1.8rem;
  }
}
.p-facility__search-box-list-dt::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2.4rem;
  background: var(--blue, #014E98);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.p-facility__search-box-list-dd {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-facility__search-box-list-dd {
    -webkit-margin-before: 0.4rem;
            margin-block-start: 0.4rem;
  }
}

.p-facility__search-box-input,
.p-facility__search-box-select {
  width: 100%;
  max-width: 114rem;
  height: 3.6rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--border-kensaku, #393D40);
  background: var(--white, #FFF);
  font-size: 1.6rem;
}
.p-facility__search-box-input::-webkit-input-placeholder, .p-facility__search-box-select::-webkit-input-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.p-facility__search-box-input::-moz-placeholder, .p-facility__search-box-select::-moz-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.p-facility__search-box-input:-ms-input-placeholder, .p-facility__search-box-select:-ms-input-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.p-facility__search-box-input::-ms-input-placeholder, .p-facility__search-box-select::-ms-input-placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}
.p-facility__search-box-input::placeholder,
.p-facility__search-box-select::placeholder {
  color: #8F8F8F;
  letter-spacing: 0.05em;
}

.p-facility__checkbox-list {
  display: grid;
  row-gap: 1.6rem;
}
.p-facility__checkbox-list.--category {
  grid-template-columns: repeat(auto-fit, minmax(18.9rem, 1fr));
}
.p-facility__checkbox-list.--institution {
  grid-template-columns: repeat(auto-fit, minmax(26.8rem, 1fr));
}

.p-facility__checkbox + span {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-block;
  -webkit-padding-start: 1.7rem;
          padding-inline-start: 1.7rem;
  position: relative;
}
.p-facility__checkbox + span::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  border: 0.05rem solid var(--gray, #D1D1D1);
  background: var(--white, #FFF);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-facility__checkbox + span::after {
  content: "";
  display: block;
  width: 1em;
  height: 0.6em;
  border-bottom: 0.3rem solid #014E98;
  border-left: 0.3rem solid #014E98;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.p-facility__checkbox:checked + span::after {
  opacity: 1;
}
.p-facility__checkbox:focus + span::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.2509803922);
          box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.2509803922);
}
.p-facility__checkbox:disabled + span {
  opacity: 0.5;
}
.p-facility__checkbox:disabled + span::before {
  background-color: #eee;
}
.p-facility__checkbox:disabled + span::after {
  content: none;
}

.p-facility__search-btn-area {
  -webkit-margin-before: 3.4rem;
          margin-block-start: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-facility__search-btn-area {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.2rem;
  }
}

.p-facility__btn {
  width: 28rem;
  max-width: 100%;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .p-facility__btn {
    width: 26.8rem;
  }
}

.p-facility__search-result {
  -webkit-margin-before: 10.2rem;
          margin-block-start: 10.2rem;
}
@media screen and (max-width: 767px) {
  .p-facility__search-result {
    -webkit-margin-before: 8.2rem;
            margin-block-start: 8.2rem;
  }
}

#search-result {
  scroll-margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  #search-result {
    scroll-margin-top: 4rem;
  }
}

.p-facility__search-result-num {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-facility__search-condition-area {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-facility__search-condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}

.p-facility__search-condition-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.2rem 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.2rem;
  background: var(--blue, #014E98);
  color: var(--white, #FFF);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-facility__search-condition-value {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-facility__search-condition-value.--unspecified {
  color: #888;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-facility__search-result-table-wrap {
    width: 100vw;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-margin-start: -2.4rem;
            margin-inline-start: -2.4rem;
    padding-inline: 2.4rem;
  }
}

.p-facility__search-result-table {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 0.1rem solid #D1D1D1;
}
.p-facility__search-result-table thead th {
  background: var(--blue, #014E98);
  border: 0.1rem solid #D1D1D1;
  height: 5.2rem;
  color: var(--white, #FFF);
  font-size: 2rem;
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
.p-facility__search-result-table thead th:nth-of-type(1) {
  width: 32.8125%;
}
.p-facility__search-result-table thead th:nth-of-type(2) {
  width: 14.0625%;
}
.p-facility__search-result-table thead th:nth-of-type(3) {
  width: 21.25%;
}
.p-facility__search-result-table thead th:nth-of-type(4) {
  width: 20.9375%;
}
@media screen and (max-width: 767px) {
  .p-facility__search-result-table thead th:nth-of-type(1) {
    width: 40rem;
  }
  .p-facility__search-result-table thead th:nth-of-type(2) {
    width: 18rem;
  }
  .p-facility__search-result-table thead th:nth-of-type(3) {
    width: 26.8rem;
  }
  .p-facility__search-result-table thead th:nth-of-type(4) {
    width: 26.8rem;
  }
  .p-facility__search-result-table thead th:nth-of-type(5) {
    width: 14rem;
  }
}
.p-facility__search-result-table tbody tr:not(.is-striped) td {
  background: var(--white, #FFF);
}
.p-facility__search-result-table tbody tr.is-striped td {
  background: var(--bg-gray, #F6F6F6);
}
.p-facility__search-result-table tbody tr:has(.p-facility__search-result-table-link:hover) td {
  background: var(--hover-blue, #d2e8fe);
}
.p-facility__search-result-table tbody td {
  border: 0.1rem solid #D1D1D1;
  height: 5rem;
  padding-inline: 1rem;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.p-facility__search-result-table tbody td.--hidden {
  display: none;
}

.p-facility__search-result-item.--excluded {
  display: none;
}
.p-facility__search-result-item.--out-of-page {
  display: none;
}

.p-facility__search-result-table-link {
  display: inline-grid;
  color: var(--blue, #014E98);
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-padding-end: 1.8rem;
          padding-inline-end: 1.8rem;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.p-facility__search-result-table-link::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/common/icon_btn-arrow-blue.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}

.p-facility__pagination {
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}

/* --------------------------------
  facility detail
-------------------------------- */
.p-facility-detail {
  width: 100%;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-facility-detail {
    -webkit-padding-before: 7.8rem;
            padding-block-start: 7.8rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-facility-detail__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__title {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}

.p-facility-detail__content-wrap {
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
  display: grid;
  grid-template-columns: 1fr 24.4rem;
  -webkit-column-gap: clamp(2rem, -3.9076923077rem + 5.7692307692vw, 4.4rem);
     -moz-column-gap: clamp(2rem, -3.9076923077rem + 5.7692307692vw, 4.4rem);
          column-gap: clamp(2rem, -3.9076923077rem + 5.7692307692vw, 4.4rem);
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-wrap {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
    grid-template-columns: 1fr;
  }
}

.p-facility-detail__content {
  width: 100%;
  min-width: 0;
}

.p-facility-detail__content-dl-wrap {
  width: 100%;
}

.p-facility-detail__content-dl {
  width: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-dl {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.p-facility-detail__content-item {
  display: grid;
  grid-template-columns: 22.4rem 1fr;
  border-inline: 0.1rem solid var(--gray, #D1D1D1);
  border-top: 0.1rem solid var(--gray, #D1D1D1);
}
.p-facility-detail__content-item:last-child {
  border-bottom: 0.1rem solid var(--gray, #D1D1D1);
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-item {
    grid-template-columns: 14rem 1fr;
  }
}

.p-facility-detail__content-dt {
  background: var(--blue, #014E98);
  display: grid;
  place-content: center;
  padding: 1.186rem 1rem;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-dt {
    font-size: 1.6rem;
    padding: 0.9rem 1rem;
  }
}

.p-facility-detail__content-dd {
  background: var(--white, #FFF);
  padding: 1rem 1.4rem;
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-dd {
    padding: 0.9rem 1.2rem;
  }
}

.p-facility-detail__content-link {
  color: var(--blue, #014E98);
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
@media (hover: hover) {
  .p-facility-detail__content-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-facility-detail__content-link:hover {
    opacity: 0.7;
  }
}

.p-facility-detail__content-address {
  -webkit-margin-before: 0.5em;
          margin-block-start: 0.5em;
}

.p-facility-detail__content-address-text {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1.3;
}

.p-facility-detail__content-info-link {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
}

.p-facility-detail__content-caption {
  color: var(--text-black, #1B1D1E);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-facility-detail__content-btn-area {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

.p-facility-detail__content-btn {
  width: 28rem;
  max-width: 100%;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__content-btn {
    width: 26.8rem;
  }
}

.p-facility-detail__search-box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-facility-detail__search-box {
    display: none;
  }
}

/* --------------------------------
  common
-------------------------------- */
.p-network {
  width: 100%;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-network {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-network__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-network__title {
    font-size: 3.2rem;
  }
}

/* --------------------------------
  about
-------------------------------- */
.p-network__about-wrap {
  -webkit-margin-before: 9.6rem;
          margin-block-start: 9.6rem;
  display: grid;
  grid-template-columns: 1fr 24.4rem;
  -webkit-column-gap: clamp(2rem, -10.3076923077rem + 12.0192307692vw, 7rem);
     -moz-column-gap: clamp(2rem, -10.3076923077rem + 12.0192307692vw, 7rem);
          column-gap: clamp(2rem, -10.3076923077rem + 12.0192307692vw, 7rem);
}
@media screen and (max-width: 767px) {
  .p-network__about-wrap {
    -webkit-margin-before: 7.1rem;
            margin-block-start: 7.1rem;
    grid-template-columns: 1fr;
  }
}

.p-network__about-title {
  color: var(--text-black, #1B1D1E);
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-network__about-title {
    font-size: 2.4rem;
  }
}

.p-network__about-text {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-network__about-text {
    -webkit-margin-before: 3.8rem;
            margin-block-start: 3.8rem;
    line-height: 1.75;
  }
}
.p-network__about-text .--highlight {
  color: var(--blue, #014E98);
  font-weight: 700;
}

.p-network__search-box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-network__search-box {
    display: none;
  }
}

/* --------------------------------
  aim
-------------------------------- */
.p-network__aim {
  -webkit-margin-before: 5.4rem;
          margin-block-start: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-network__aim {
    -webkit-margin-before: 8rem;
            margin-block-start: 8rem;
  }
}

.p-network__aim-title {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-network__aim-title {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

.p-network__aim-list {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-network__aim-list {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
    gap: 3.2rem;
  }
}

.p-network__aim-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item {
    grid-template-rows: auto;
    grid-row: auto;
  }
}

.p-network__aim-item-title-area {
  border-radius: 0.2rem;
  border: 0.1rem solid var(--blue, #014E98);
  display: grid;
  width: 100%;
  height: 5.8rem;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-title-area {
    height: auto;
    min-height: 5.4rem;
  }
}

.p-network__aim-item-title {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  -webkit-padding-start: 4rem;
          padding-inline-start: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-title {
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    -webkit-padding-start: 3rem;
            padding-inline-start: 3rem;
  }
}
.p-network__aim-item-title::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-title::before {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.p-network__aim-item:nth-of-type(1) .p-network__aim-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work01.svg) no-repeat center center/100%;
}
.p-network__aim-item:nth-of-type(2) .p-network__aim-item-title {
  -webkit-padding-start: 2.6rem;
          padding-inline-start: 2.6rem;
}
.p-network__aim-item:nth-of-type(2) .p-network__aim-item-title::before {
  width: 2.2rem;
  height: 2.8rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work02.svg) no-repeat center center/100%;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item:nth-of-type(2) .p-network__aim-item-title::before {
    width: 1.72857rem;
    height: 2.2rem;
  }
}
.p-network__aim-item:nth-of-type(3) .p-network__aim-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work03.svg) no-repeat center center/100%;
}
.p-network__aim-item:nth-of-type(4) .p-network__aim-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work04.svg) no-repeat center center/100%;
}
.p-network__aim-item:nth-of-type(5) .p-network__aim-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work05.svg) no-repeat center center/100%;
}
.p-network__aim-item:nth-of-type(6) .p-network__aim-item-title::before {
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/icon_work06.svg) no-repeat center center/100%;
}

.p-network__aim-item-problem {
  -webkit-margin-before: 1.4rem;
          margin-block-start: 1.4rem;
  border-radius: 0.2rem 0.2rem 0 0;
  background: var(--bg-gray, #F6F6F6);
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  padding-block: 2.1rem 2.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-problem {
    -webkit-margin-before: 0.4rem;
            margin-block-start: 0.4rem;
    padding-block: 1.4rem 1.2rem;
    padding-inline: 1.35rem;
  }
}
.p-network__aim-item-problem::before {
  content: "";
  position: absolute;
  border-inline: 2.5rem solid transparent;
  border-top: 1.3rem solid #B8D3EF;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-problem::before {
    border-inline: 1.25rem solid transparent;
  }
}
.p-network__aim-item-problem::after {
  content: "";
  border-inline: 2.4rem solid transparent;
  border-top: 1.2rem solid #F6F6F6;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-problem::after {
    border-inline: 1.15rem solid transparent;
  }
}

.p-network__aim-item-problem-text {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-network__aim-item-solution {
  border-radius: 0 0 0.2rem 0.2rem;
  border-inline: 0.1rem solid var(--border-blue, #B8D3EF);
  border-bottom: 0.1rem solid var(--border-blue, #B8D3EF);
  background: var(--light-blue3, #EFF7FF);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 2.7rem 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-solution {
    min-height: 0;
    padding-block: 1.2rem;
    padding-inline: 1.35rem;
  }
}
.p-network__aim-item-solution::before {
  content: "";
  display: block;
  width: 5.8rem;
  height: 5.8rem;
  background: url(/~yfnet/wp-content/themes/yamaguchi-facility-network/assets/img/top/bg_work-solution.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-solution::before {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.p-network__aim-item-solution-text {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-network__aim-item-solution-text {
    line-height: 1.4;
  }
}
.p-network__aim-item-solution-text .--highlight {
  color: var(--orange, #DB5F00);
}

/* --------------------------------
  summary
-------------------------------- */
.p-network__summary {
  -webkit-margin-before: 10rem;
          margin-block-start: 10rem;
}
@media screen and (max-width: 767px) {
  .p-network__summary {
    -webkit-margin-before: 8rem;
            margin-block-start: 8rem;
  }
}

.p-network__summary-title {
  color: var(--text-black, #1B1D1E);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-network__summary-title {
    font-size: 2.4rem;
  }
}

.p-network__summary-content-block {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media screen and (max-width: 767px) {
  .p-network__summary-content-block {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}

.p-network__summary-content-title {
  color: var(--text-black, #1B1D1E);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-network__summary-content-item {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-padding-start: 1.25em;
          padding-inline-start: 1.25em;
  position: relative;
}
.p-network__summary-content-item::before {
  content: "・";
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  position: absolute;
  left: 0;
}

.p-network__summary-content-dl {
  display: grid;
  grid-template-columns: 12.8rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-network__summary-content-dl {
    grid-template-columns: 1fr;
  }
}

.p-network__summary-content-dt {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-network__summary-content-dt:not(:first-of-type) {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
  }
}

.p-network__summary-content-dd {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-network__summary-content-dd {
    -webkit-margin-before: 0.4rem;
            margin-block-start: 0.4rem;
  }
}

.p-network__summary-content-link {
  color: var(--text-black, #1B1D1E);
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (hover: hover) {
  .p-network__summary-content-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-network__summary-content-link:hover {
    opacity: 0.7;
  }
}

.p-network__summary-contact {
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}
@media screen and (max-width: 767px) {
  .p-network__summary-contact {
    -webkit-margin-before: 9.2rem;
            margin-block-start: 9.2rem;
  }
}

.p-network__summary-contact-title {
  color: var(--text-black, #1B1D1E);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-network__summary-contact-title {
    -webkit-font-feature-settings: "palt" on;
            font-feature-settings: "palt" on;
  }
}

.p-network__summary-contact-btn {
  -webkit-margin-before: 0.4rem;
          margin-block-start: 0.4rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-network__summary-contact-btn {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    width: 26.8rem;
    height: 4.8rem;
    margin-inline: auto;
  }
}

/* --------------------------------
  related-links
-------------------------------- */
.p-network__related-links {
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}

.p-network__related-links-title {
  color: var(--text-black, #1B1D1E);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-network__related-links-title {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.p-network__related-links-text {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-network__related-links-text {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}

.p-network__related-list {
  -webkit-margin-before: 1.4rem;
          margin-block-start: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-network__related-list {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
}

.p-network__related-link {
  display: block;
  width: 35.2rem;
}
@media screen and (max-width: 767px) {
  .p-network__related-link {
    width: 100%;
  }
}
@media (hover: hover) {
  .p-network__related-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-network__related-link:hover {
    opacity: 0.7;
  }
}
.p-network__related-item:nth-of-type(2) .p-network__related-link {
  width: 41rem;
}
@media screen and (max-width: 767px) {
  .p-network__related-item:nth-of-type(2) .p-network__related-link {
    width: 100%;
  }
}
.p-network__related-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------
  common
-------------------------------- */
.p-partner {
  width: 100%;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-partner {
    -webkit-padding-before: 8.6rem;
            padding-block-start: 8.6rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-partner__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-partner__title {
    font-size: 3.2rem;
  }
}

/* --------------------------------
  map
-------------------------------- */
.p-partner__map-wrap {
  -webkit-margin-before: 9.6rem;
          margin-block-start: 9.6rem;
  display: grid;
  grid-template-columns: 1fr 24.4rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-partner__map-wrap {
    -webkit-margin-before: 3.6rem;
            margin-block-start: 3.6rem;
    grid-template-columns: 1fr;
  }
}

.p-partner__map-area {
  width: 100%;
}

.p-partner__map {
  width: 100%;
  max-width: 55.8rem;
  position: relative;
}

.p-partner__map-img {
  width: 100%;
}
.p-partner__map-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-partner__map-btn {
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-partner__map-btn {
    display: none;
  }
}
.p-partner__map-btn.--point1 {
  top: 72.3%;
  left: 27.03%;
}
.p-partner__map-btn.--point2 {
  top: 80.7%;
  left: 83.1%;
}
.p-partner__map-btn.--point3 {
  top: 56.6%;
  left: 57.42%;
}
.p-partner__map-btn.--point4 {
  top: 71.3%;
  left: 23.25%;
}
.p-partner__map-btn.--point5 {
  top: 69.5%;
  left: 29.9%;
}
.p-partner__map-btn.--point6 {
  top: 63.5%;
  left: 42.5%;
}
.p-partner__map-btn.--point7 {
  top: 58.6%;
  left: 36.2%;
}
.p-partner__map-btn.--point8 {
  top: 56.1%;
  left: 39.8%;
}

.p-partner__map-btn-balloon {
  display: block;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 1rem;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  background: rgba(239, 247, 255, 0.8784313725);
  text-align: center;
  position: absolute;
  bottom: calc(100% + 0.8rem);
  left: 50%;
  translate: -50% 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-partner__map-btn-balloon {
    display: none;
  }
}
.p-partner__map-btn-balloon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0.5rem 0 0.5rem;
  border-color: rgba(239, 247, 255, 0.8784313725) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
}
.p-partner__map-btn:hover .p-partner__map-btn-balloon {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-partner__map-btn-balloon-text {
  color: var(--text-black, #1B1D1E);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-partner__map-text {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  color: #1B1D1E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-partner__search-box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-partner__search-box {
    display: none;
  }
}

/* --------------------------------
  list
-------------------------------- */
.p-partner__list {
  -webkit-margin-before: 14rem;
          margin-block-start: 14rem;
}
@media screen and (max-width: 767px) {
  .p-partner__list {
    -webkit-margin-before: 8rem;
            margin-block-start: 8rem;
  }
}

.p-partner__item {
  width: 100%;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--border-blue, #B8D3EF);
  background: var(--light-blue, #EFF7FF);
}
.p-partner__item:not(:first-child) {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-partner__item:not(:first-child) {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}
.p-partner__item.is-highlight {
  -webkit-animation: partner-highlight 2s ease-out forwards;
          animation: partner-highlight 2s ease-out forwards;
}

@-webkit-keyframes partner-highlight {
  0% {
    background-color: #ffe2e0;
    border: 0.1rem solid #fa98ce;
    -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
            box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
  }
  50% {
    background-color: #ffe2e0;
    border: 0.1rem solid #fa98ce;
    -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
            box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
  }
  70% {
    -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(184, 211, 239, 0.2509803922);
            box-shadow: 0 0 0.2rem 0.2rem rgba(184, 211, 239, 0.2509803922);
  }
  100% {
    background-color: var(--light-blue, #EFF7FF);
    border: 0.1rem solid var(--border-blue, #B8D3EF);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@keyframes partner-highlight {
  0% {
    background-color: #ffe2e0;
    border: 0.1rem solid #fa98ce;
    -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
            box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
  }
  50% {
    background-color: #ffe2e0;
    border: 0.1rem solid #fa98ce;
    -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
            box-shadow: 0 0 0.2rem 0.2rem rgba(253, 192, 226, 0.2509803922);
  }
  70% {
    -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(184, 211, 239, 0.2509803922);
            box-shadow: 0 0 0.2rem 0.2rem rgba(184, 211, 239, 0.2509803922);
  }
  100% {
    background-color: var(--light-blue, #EFF7FF);
    border: 0.1rem solid var(--border-blue, #B8D3EF);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.p-partner__item-link {
  display: block;
  padding: 1.2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-partner__item-link {
    padding: 1.6rem 1.2rem 1.4rem 1.6rem;
  }
}
@media (hover: hover) {
  .p-partner__item-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-partner__item-link:hover {
    background: var(--hover-blue, #d2e8fe);
  }
}

.p-partner__name {
  display: block;
  color: var(--text-black, #1B1D1E);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-partner__item-dl {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  display: grid;
  grid-template-columns: 8.6rem 1fr;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-partner__item-dl {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-partner__item-dt {
  width: 100%;
  border-radius: 0.2rem;
  background: var(--blue, #014E98);
  color: var(--white, #FFF);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0.4rem;
  text-align: center;
}

.p-partner__item-dd {
  color: var(--text-black, #1B1D1E);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* --------------------------------
  common
-------------------------------- */
.p-topics,
.p-topics-detail {
  width: 100%;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-topics,
  .p-topics-detail {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-topics__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topics__title {
    font-size: 3.2rem;
  }
}

/* --------------------------------
  list
-------------------------------- */
.p-topics__list {
  -webkit-margin-before: 9.8rem;
          margin-block-start: 9.8rem;
}
@media screen and (max-width: 767px) {
  .p-topics__list {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
  }
}

.p-topics__item {
  border-bottom: 0.1rem solid #DDD;
}
.p-topics__item.--out-of-page {
  display: none;
}

.p-topics__link {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 25rem 1fr;
  gap: 1rem;
  -webkit-padding-after: 1.6rem;
          padding-block-end: 1.6rem;
}
.p-topics__item:not(:first-child) .p-topics__link {
  -webkit-padding-before: 1.5rem;
          padding-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-topics__link {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (hover: hover) {
  .p-topics__link {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .p-topics__link:hover {
    background-color: var(--hover-blue, #d2e8fe);
  }
}

.p-topics__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-topics__item-date {
  color: var(--text-black, #1B1D1E);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-topics__item-category {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.4rem 1.2rem;
  border-radius: 0.2rem;
  background: var(--blue, #014E98);
  color: var(--white, #FFF);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-topics__item-title {
  color: var(--text-black, #1B1D1E);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topics__item-title {
    -webkit-line-clamp: 3;
  }
}

.p-topics__pagination {
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}
@media screen and (max-width: 767px) {
  .p-topics__pagination {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
  }
}

/* --------------------------------
  detail
-------------------------------- */
.p-topics__detail-title {
  color: var(--text-black, #1B1D1E);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topics__detail-title {
    font-size: 3.2rem;
    line-height: normal;
  }
}

.p-topics__detail-info {
  -webkit-margin-before: 0.7rem;
          margin-block-start: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-topics__detail-info {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}

.p-topics__detail-date {
  color: var(--text-black, #1B1D1E);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-topics__detail-category {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.4rem 1.2rem;
  border-radius: 0.2rem;
  background: var(--blue, #014E98);
  color: var(--white, #FFF);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-topics__detail-content {
  -webkit-margin-before: 10rem;
          margin-block-start: 10rem;
}
@media screen and (max-width: 767px) {
  .p-topics__detail-content {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.p-topics__detail-btn-area {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topics__detail-btn-area {
    -webkit-margin-before: 8rem;
            margin-block-start: 8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}

.p-topics__detail-btn {
  width: 28rem;
  max-width: 100%;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topics__detail-btn {
    width: 26.8rem;
  }
}

/* --------------------------------
  single__WYSIWYG
-------------------------------- */
@scope (.p-topics__detail-content.single__WYSIWYG) {
  h1 {
    color: var(--text-black, #1B1D1E);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 3.2rem;
    }
  }
  h2 {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  * + h2 {
    -webkit-margin-before: 6.4rem;
            margin-block-start: 6.4rem;
  }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 2.4rem;
      line-height: normal;
    }
  }
  h3 {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  * + h3 {
    -webkit-margin-before: 6.4rem;
            margin-block-start: 6.4rem;
  }
  @media screen and (max-width: 767px) {
    h3 {
      font-size: 2rem;
      line-height: normal;
    }
  }
  h4 {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  * + h4 {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  @media screen and (max-width: 767px) {
    h4 {
      line-height: normal;
    }
  }
  h5 {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  * + h5 {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  h6 {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  * + h6 {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  p {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  * + p {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  p.text-center,
  p.has-text-align-center {
    text-align: center;
  }
  p.text-right,
  p.has-text-align-right {
    text-align: right;
  }
  * + .featured-image-wrapper {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  img.featured-image {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  figure {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow: hidden;
  }
  * + figure {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  figure.alignleft {
    float: left;
  }
  figure.alignright {
    float: right;
  }
  figure.aligncenter {
    margin-inline: auto;
  }
  figure figcaption {
    text-align: center;
    margin-top: 2rem;
  }
  p img {
    display: block;
    overflow: hidden;
  }
  p img.size-small {
    width: 35%;
  }
  p img.size-medium {
    width: 55%;
  }
  p img.size-large {
    width: 100%;
  }
  p img.alignleft {
    float: left;
  }
  p img.alignright {
    float: right;
  }
  a {
    color: var(--text-black, #1B1D1E);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  @media (hover: hover) {
    a {
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
    }
    a:hover {
      opacity: 0.7;
    }
  }
  ul {
    list-style-type: none;
  }
  * + ul {
    -webkit-margin-before: 0.6rem;
            margin-block-start: 0.6rem;
  }
  ul li {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  ul li:before {
    content: "・";
    margin-right: 0.4rem;
  }
  * + ol {
    -webkit-margin-before: 0.6rem;
            margin-block-start: 0.6rem;
  }
  ol {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    list-style-type: none;
  }
  ol li {
    color: var(--text-black, #1B1D1E);
    -webkit-font-feature-settings: "liga" off, "clig" off;
            font-feature-settings: "liga" off, "clig" off;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  ol > li {
    counter-increment: section;
    position: relative;
  }
  ol > li:before {
    content: counter(section) ". ";
  }
}
.p-privacy-policy {
  width: 100%;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-privacy-policy__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__title {
    font-size: 3.2rem;
  }
}

.p-privacy-policy__content {
  -webkit-margin-before: 10rem;
          margin-block-start: 10rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.p-privacy-policy__item:not(:first-child) {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}

.p-privacy-policy__item-title {
  color: var(--text-black, #1B1D1E);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item-title {
    font-size: 2rem;
  }
}

.p-privacy-policy__item-subtext {
  color: var(--text-black, #1B1D1E);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item-subtext {
    font-size: 1.8rem;
    -webkit-margin-after: 0.8rem;
            margin-block-end: 0.8rem;
  }
}

.p-privacy-policy__item-text {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item-text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-privacy-policy__item-link {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item-link {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (hover: hover) {
  .p-privacy-policy__item-link {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-privacy-policy__item-link:hover {
    opacity: 0.7;
  }
}

.p-contact {
  width: 100%;
  -webkit-padding-before: 12.4rem;
          padding-block-start: 12.4rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-contact__title, .p-contact-thanks__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__title, .p-contact-thanks__title {
    font-size: 3.2rem;
  }
}

.p-contact-thanks__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__title {
    font-size: 2.8rem;
    text-align: left;
  }
}

.p-contact__content {
  -webkit-margin-before: 9rem;
          margin-block-start: 9rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.p-contact__text {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    text-align: left;
  }
}

.p-contact__btn {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    -webkit-margin-before: 3.4rem;
            margin-block-start: 3.4rem;
    width: 26.8rem;
    height: 4.8rem;
  }
}

.p-404 {
  width: 100%;
  -webkit-padding-before: 12.4rem;
          padding-block-start: 12.4rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}

.p-404__title {
  color: var(--text-black, #1B1D1E);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 2.8rem;
    text-align: left;
  }
}

.p-404__content {
  -webkit-margin-before: 9rem;
          margin-block-start: 9rem;
}
@media screen and (max-width: 767px) {
  .p-404__content {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.p-404__text {
  color: var(--text-black, #1B1D1E);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    text-align: left;
  }
}

.p-404__btn {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  width: 32rem;
  max-width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-404__btn {
    -webkit-margin-before: 3.4rem;
            margin-block-start: 3.4rem;
    width: 26.8rem;
    height: 4.8rem;
  }
}

@media screen and (max-width: 1023px) {
  .u-none-lg {
    display: none;
  }
}

.u-view-lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-view-lg {
    display: unset;
  }
}

@media screen and (max-width: 767px) {
  .u-none-md {
    display: none;
  }
}

.u-view-md {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-view-md {
    display: unset;
  }
}

@media screen and (max-width: 599px) {
  .u-none-sm {
    display: none;
  }
}

.u-view-sm {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-view-sm {
    display: unset;
  }
}/*# sourceMappingURL=style.css.map */