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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

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

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  font-size: clamp(16px, 1.8vw, 21px);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.7vw;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #303030;
}
@media screen and (max-width: 768px) {
  body {
    font-weight: 600;
  }
}

a {
  word-break: break-all;
}

* > img {
  width: 100%;
  height: 100%;
}

/* root container */
.l-wrapper {
  overflow-x: clip;
  background: #f6f6f6;
}

/* main container */
.l-content-container {
  position: relative;
  padding: 8.6rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-container {
    padding: 8.6rem 0 0;
  }
}

/* container */
.l-container {
  width: calc(100% - 4rem);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: calc(100% - 2rem);
  }
}
.l-container.-ssm {
  max-width: 1440px;
}
@media screen and (max-width: 1300px) {
  .l-container.-ssm {
    max-width: 1080px;
  }
}
.l-container.-xs {
  max-width: 850px;
}

/* ================================
Header
================================ */
.l-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: max(6.7vh, 50px);
  margin: 0 auto;
}
.l-header__inner {
  max-width: calc(1760px + 4.2vw);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.1rem;
  padding: 0 2.1vw;
  margin: 0 auto;
  background-color: transparent;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.l-header__logo {
  position: relative;
  z-index: 1000;
  display: block;
  width: clamp(200px, 18vw, 345px);
  aspect-ratio: 394/34;
  line-height: 0;
  --logo-accent-color: #998222;
  margin: 0 auto 0 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__logoTypo {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__toggle {
  display: none;
}
.l-header.-wh .l-header__logo {
  color: #fff;
  --logo-accent-color: #fff;
}
.l-header.-wh .l-header-drawer__menuItem {
  color: #fff;
}
.l-header.is-fixed .l-header__logo {
  color: #303030;
  --logo-accent-color: #998222;
}
.l-header.is-fixed .l-header-drawer__menuItem {
  color: #303030;
}
@media screen and (min-width: 1025px) {
  .l-header.is-fixed, .l-header:has(.l-header-drawer.is-active) {
    position: fixed;
    top: 0 !important;
  }
  .l-header.is-fixed {
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    width: 100%;
    height: 3.9rem;
    background-color: #fff;
  }
  .l-header__inner {
    padding: 0 1.1rem;
  }
  .l-header__logo {
    width: 14rem;
  }
  .l-header__toggle {
    display: block;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    background-color: #303030;
    border-radius: 50%;
    cursor: pointer;
  }
  .l-header__toggle span {
    position: absolute;
    left: 1rem;
    display: inline-block;
    width: 1rem;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header__toggle span:nth-of-type(1) {
    top: 1.1rem;
  }
  .l-header__toggle span:nth-of-type(2) {
    top: 1.5rem;
  }
  .l-header__toggle span:nth-of-type(3) {
    bottom: 1rem;
  }
  .l-header__toggle.is-active {
    background-color: #fff;
  }
  .l-header__toggle.is-active span {
    background-color: #303030;
  }
  .l-header__toggle.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(0.4rem) rotate(45deg);
            transform: translateY(0.4rem) rotate(45deg);
  }
  .l-header__toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-0.4rem) rotate(-45deg);
            transform: translateY(-0.4rem) rotate(-45deg);
  }
  .l-header.-wh .l-header__logo {
    color: #303030;
    --logo-accent-color: #998222;
  }
  .l-header.is-fixed, .l-header:has(.l-header-drawer.is-active) {
    position: fixed;
    top: 0 !important;
  }
  .l-header:has(.l-header-drawer.is-active) .l-header__logo {
    color: #fff;
    --logo-accent-color: #fff;
  }
  .l-header:has(.l-header-drawer.is-active) .l-header-drawer__menuItem {
    color: #fff;
  }
}

.l-header-drawer {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.6vw;
}
.l-header-drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(16px, 1.6vw, 30px);
}
.l-header-drawer__menuItem {
  position: relative;
  font-size: clamp(16px, 1.1vw, 21px);
}
.l-header-drawer__menuItem a {
  display: block;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header-drawer__menuItem a:hover {
  opacity: 0.7;
}
.l-header-drawer__menuItem.menu-item-inactive {
  opacity: 0.7;
  pointer-events: none;
}
.l-header-drawer__social.c-social {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header-drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 500;
    top: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 4.1rem 0;
    padding: 7.9rem 1.1rem 2.1rem;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #303030;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header-drawer.is-active {
    visibility: visible;
    opacity: 1;
  }
  .l-header-drawer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.1rem 0;
  }
  .l-header-drawer__menuItem {
    color: #fff;
    font-size: 1rem;
  }
  .l-header-drawer__social.c-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .l-header-drawer__social.c-social .c-social__heading {
    color: #fff;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    font-size: 0.9rem;
  }
  .l-header-drawer__social.c-social .c-social__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 1rem;
  }
  .l-header-drawer__social.c-social .c-social__item {
    height: 1.9rem;
  }
}

/* footer */
.l-footer__top {
  background-color: #303030;
  padding: 4.5rem 0 4.8rem;
}
.l-footer__topInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5.7rem 1.4rem;
}
.l-footer__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-areas: "nav nav" "media social";
  grid-template-columns: 1fr -webkit-min-content;
  grid-template-columns: 1fr min-content;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 3.3rem 4.5rem;
}
.l-footer__bottom {
  background-color: #292929;
  padding: 0.7rem 0;
}
.l-footer__bottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem 1.4rem;
}
.l-footer__copyright {
  color: #DADADA;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    padding: 5rem 0;
  }
  .l-footer__topInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l-footer__right {
    width: 100%;
    grid-template-areas: "nav media" "nav social";
    grid-template-columns: 1fr 11.4rem;
    grid-template-rows: 1fr -webkit-min-content;
    grid-template-rows: 1fr min-content;
    gap: 2.5rem 0;
  }
  .l-footer__bottom {
    padding: 1.4rem 0 4.6rem;
  }
  .l-footer__bottomInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l-footer__copyright {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: left;
  }
}
.l-footer.hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-footer.hide {
    opacity: 1;
  }
}

.l-footer-company__logo {
  width: 15.5rem;
  aspect-ratio: 394/34;
  line-height: 0;
  color: #fff;
  --logo-accent-color: #fff;
  margin: 0 0 2.4rem;
}
.l-footer-company__logoTypo {
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer-company__info {
  color: #DADADA;
  font-weight: 400;
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .l-footer-company__logo {
    width: 14.3rem;
    margin: 0 0 1.4rem;
  }
  .l-footer-company__info {
    font-size: 0.9rem;
    font-weight: 500;
  }
}

.l-footer-nav {
  grid-area: nav;
}
.l-footer-nav__menu {
  grid-area: menu;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.l-footer-nav__menuItem {
  color: #fff;
  font-size: 0.86rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-nav__menuItem:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 2.1rem 0;
  }
  .l-footer-nav__menuItem {
    font-size: 1rem;
  }
}

.l-footer-social.c-social {
  grid-area: social;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.l-footer-social.c-social .c-social__heading {
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  color: #DADADA;
}
.l-footer-social.c-social .c-social__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .l-footer-social.c-social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer-media {
  grid-area: media;
}
.l-footer-media__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.1rem 0.8rem;
}
.l-footer-media__btn {
  width: 10.8rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-media__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer-media {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .l-footer-media__btn {
    width: 100%;
  }
}

.l-footer-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.4rem;
}
.l-footer-link__item {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-link__item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer-link__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.4rem 1.4rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-footer-link__item {
    font-size: 0.9rem;
  }
}

/* arrow */
.c-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.9rem;
  aspect-ratio: 1/1;
  border: 1px solid #303030;
  border-radius: 50%;
}
.c-arrow__inner {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.c-arrow__ico {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.c-arrow__ico.-after {
  position: absolute;
  bottom: -100%;
  left: -100%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c-arrow {
    width: 1.8rem;
  }
  .c-arrow__inner {
    width: 0.7rem;
  }
}
.c-arrow.-wh {
  border-color: #fff;
}
.c-arrow.-wh .c-arrow__ico {
  color: #fff;
}
.c-arrow.-bk {
  background-color: #303030;
  border-color: #303030;
}
.c-arrow.-bk .c-arrow__ico {
  color: #fff;
}
.c-arrow.-noborder {
  border-color: transparent;
}
.c-arrow:hover .c-arrow__ico.-before {
  -webkit-animation-name: arrowBefore;
          animation-name: arrowBefore;
}
.c-arrow:hover .c-arrow__ico.-after {
  -webkit-animation-name: arrowAfter;
          animation-name: arrowAfter;
}
@-webkit-keyframes arrowBefore {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
    opacity: 0;
  }
}
@keyframes arrowBefore {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
    opacity: 0;
  }
}
@-webkit-keyframes arrowAfter {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
    opacity: 1;
  }
}
@keyframes arrowAfter {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
    opacity: 1;
  }
}

.c-link-block:has(.c-arrow):hover .c-arrow__ico.-before,
.c-arrow-btn:has(.c-arrow):hover .c-arrow__ico.-before,
.c-arrow-link:has(.c-arrow):hover .c-arrow__ico.-before {
  -webkit-animation-name: arrowBefore;
          animation-name: arrowBefore;
}
.c-link-block:has(.c-arrow):hover .c-arrow__ico.-after,
.c-arrow-btn:has(.c-arrow):hover .c-arrow__ico.-after,
.c-arrow-link:has(.c-arrow):hover .c-arrow__ico.-after {
  -webkit-animation-name: arrowAfter;
          animation-name: arrowAfter;
}

/* heading */
.c-heading {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.9rem;
  font-weight: 700;
}
.c-heading .-xs {
  display: inline-block;
  font-size: 0.6em;
}
.c-heading .-sm {
  display: inline-block;
  font-size: 0.75em;
}
.c-heading .-md {
  display: inline-block;
  font-size: 1.25em;
}
.c-heading .-lg {
  display: inline-block;
  font-size: 1.75em;
}
.c-heading .-xl {
  display: inline-block;
  font-size: 2.25em;
}
.c-heading + .c-sentence {
  margin-top: 1.9rem;
}
@media screen and (max-width: 1200px) {
  .c-heading {
    font-size: 1.5rem;
  }
  .c-heading .-lg {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .c-heading .-xs {
    font-size: 0.75em;
  }
  .c-heading + .c-sentence {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-center_only_mobile {
    text-align: center;
  }
}

.c-dot-heading {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 0 0 0.76em;
}
.c-dot-heading::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 0.38em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: currentColor;
}
.c-dot-heading.-gr {
  color: #958B89;
}
@media screen and (max-width: 768px) {
  .c-dot-heading {
    font-size: 1.1rem;
    font-weight: 600;
  }
}

.c-catch-heading {
  font-size: 1.9rem;
  font-weight: 700;
}
.c-catch-heading + .c-sentence {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-catch-heading {
    font-size: 1.6rem;
  }
  .c-catch-heading + .c-sentence {
    margin-top: 1.4rem;
  }
}

/* sentence */
.c-sentence {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1px;
}
.c-sentence .u-color--gd {
  font-weight: 700;
}
.c-sentence small {
  display: inline-block;
  line-height: 1.8;
  margin: 0.5rem 0 0;
}
.c-sentence + .c-sentence {
  margin-top: 2em;
}
.c-sentence + .c-btn__wrap {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-sentence {
    line-height: 1.8;
  }
  .c-sentence + .c-sentence {
    margin-top: 1.8em;
  }
  .c-sentence + .c-btn__wrap {
    margin-top: 2.1rem;
  }
}
.c-sentence.-center_only_desktop {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-sentence.-center_only_desktop {
    text-align: left;
  }
}

/* link text */
.c-external-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
}
.c-external-link::after {
  content: "";
  display: inline-block;
  height: 1em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/external_ico_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .c-external-link {
    gap: 0 0.7rem;
  }
}

.c-underline-link {
  text-decoration: underline;
}

/* button */
.c-arrow-btn {
  position: relative;
  min-width: 16.9rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.7rem;
  color: #fff;
  font-size: 1rem;
  background-color: #303030;
  border: 1px solid #303030;
  border-radius: 9999px;
  padding: 0.7rem 1.9rem;
}
.c-arrow-btn__arrow {
  width: auto;
  border-color: transparent;
}
.c-arrow-btn__arrow .c-arrow__inner {
  width: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-arrow-btn {
    min-width: 16.7rem;
    padding: 1rem 3.6rem 1rem 2.9rem;
  }
  .c-arrow-btn .c-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1.4rem;
  }
}
.c-arrow-btn.-rd {
  background-color: #A51D22;
  border-color: #A51D22;
}
.c-arrow-btn.-tr {
  background-color: transparent;
  border-color: #fff;
}
.c-arrow-btn.-gr {
  background-color: #67605F;
  border-color: #67605F;
}
.c-arrow-btn.-justify_sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.c-arrow-btn.-justify_sb .c-arrow-btn__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.c-arrow-btn.-line {
  background-color: #06c755;
  border-color: #06c755;
  padding-left: 4rem;
}
.c-arrow-btn.-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 2.6rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/line_ico.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .c-arrow-btn.-line {
    padding-left: 1.4rem;
  }
  .c-arrow-btn.-line::before {
    left: 1rem;
    width: 3rem;
  }
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap {
    gap: 1.4rem 0;
  }
}
.c-btn__wrap.-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.c-btn__wrap.-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.c-btn__wrap.-verticalOnlyDesktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-verticalOnlyDesktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn__wrap.-right_only_desktop {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-right_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn__wrap.-left_only_desktop {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* table */
.c-table {
  width: 100%;
  table-layout: fixed;
}
.c-table th,
.c-table td {
  font-size: 1rem;
  line-height: 2;
  padding: 1.4rem 0;
}
.c-table th {
  width: 11rem;
  font-weight: 500;
}
.c-table__note {
  display: block;
  font-size: 0.9rem;
  text-align: right;
  margin: 0.5em 0 0;
}
@media screen and (max-width: 768px) {
  .c-table th {
    display: block;
    width: 100%;
    font-weight: 600;
    line-height: 1.8;
    padding: 0;
  }
  .c-table td {
    display: block;
    width: 100%;
    padding: 0 0 1.4rem;
  }
  .c-table tr:last-child td {
    padding-bottom: 0;
  }
}

.c-bg-table {
  width: 100%;
  table-layout: auto;
}
.c-bg-table th,
.c-bg-table td {
  font-size: 1rem;
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #e7dbc9;
}
.c-bg-table th {
  color: #BB8600;
  text-align: center;
  white-space: nowrap;
  background-color: #F7F3ED;
}
.c-bg-table td {
  line-height: 2;
  background-color: rgba(247, 243, 237, 0.6);
}
@media screen and (max-width: 768px) {
  .c-bg-table th,
  .c-bg-table td {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .c-bg-table th {
    text-align: left;
    border-bottom: none;
  }
  .c-bg-table td {
    line-height: 1.8;
  }
}

/* media object */
.c-media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem 2.4rem;
}
.c-media-object__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46%;
}
.c-media-object__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-media-object.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
  .c-media-object {
    gap: 1.4rem 1.4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .c-media-object {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .c-media-object__img {
    width: 100%;
  }
  .c-media-object__content {
    width: 100%;
    padding: 0 1.2rem;
  }
}

/* pager */
.c-pager__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
}
.c-pager .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.2rem;
  width: 1.9rem;
  height: 1.9rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1;
  border: 1px solid #303030;
}
.c-pager .page-numbers.current {
  color: #fff;
  background-color: #303030;
}
.c-pager .page-numbers.dots {
  width: auto;
  border: none;
}
.c-pager .page-numbers.prev::after, .c-pager .page-numbers.first::after {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1/1;
  border-bottom: 2px solid #303030;
  border-left: 2px solid #303030;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-pager .page-numbers.first::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.82em;
  background-color: #303030;
}
.c-pager .page-numbers.next::before, .c-pager .page-numbers.last::before {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1/1;
  border-top: 2px solid #303030;
  border-right: 2px solid #303030;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-pager .page-numbers.last::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.82em;
  background-color: #303030;
}
.c-pager .screen-reader-text {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-pager .page-numbers {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}

/* breadcrumbs */
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  white-space: nowrap;
}
.c-breadcrumbs__item a {
  color: #DADADA;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-breadcrumbs__item a:hover {
  opacity: 0.7;
}
.c-breadcrumbs__item:not(:last-of-type)::after {
  content: ">";
  margin: 0 1em;
}
.c-breadcrumbs__item:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-y: auto;
  }
  .c-breadcrumbs__item {
    font-size: 0.9rem;
  }
}

/* Contact Form 7 */
.wpcf7-form-control-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 1rem;
}

.wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}
.wpcf7-form-control-wrap input {
  color: #303030;
}

.wpcf7-not-valid-tip {
  font-size: 0.8em;
  white-space: nowrap;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1.9rem;
}

.wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
}
.wpcf7-list-item input {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0;
  accent-color: #A51D22;
}

.wpcf7-file {
  display: block;
  width: 19rem;
  background-color: transparent;
  color: #303030;
  font-size: 0.8rem;
  height: 100%;
  padding-left: 0;
}

input[type=file]::-webkit-file-upload-button {
  background-color: #fff;
  padding: 0.6rem 1.3rem;
  margin-right: 1em;
  color: #A51D22;
  font-weight: 700;
  height: 100%;
  cursor: pointer;
  border: 1px solid #A51D22;
  border-radius: 9999px;
}

input[type=file]::file-selector-button {
  background-color: #fff;
  padding: 0.6rem 1.3rem;
  margin-right: 1em;
  color: #A51D22;
  font-weight: 700;
  height: 100%;
  cursor: pointer;
  border: 1px solid #A51D22;
  border-radius: 9999px;
}

.wpcf7-spinner {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
}

.wpcf7-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem 1rem;
}
.wpcf7-item.-required .wpcf7-form-label::after {
  content: "必須";
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  background-color: #A51D22;
  border-radius: 9999px;
  white-space: nowrap;
  padding: 0.1em 1em;
}
.wpcf7-item.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wpcf7-item.-vertical .wpcf7-item-col--label {
  width: auto;
}
.wpcf7-item:not(:last-of-type) {
  margin-bottom: 2.9rem;
}

.wpcf7-item-col--label {
  width: 100%;
  font-size: 1rem;
}
.wpcf7-item-col--controls {
  width: 100%;
  font-size: 1rem;
}

.wpcf7-form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.7rem;
  font-weight: 500;
}

.wpcf7-text {
  width: 100%;
  height: 3.3rem;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  padding: 0 1em;
}

.wpcf7-textarea {
  width: 100%;
  height: 23.3rem;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  padding: 1em;
}

.wpcf7-select-wrap {
  position: relative;
  width: 100%;
  max-width: 16.7rem;
  height: 3.3rem;
  border: 1px solid #d4d4d4;
  background-color: #fff;
}
.wpcf7-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1/1;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.wpcf7-select-wrap select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 1em;
}
.wpcf7-select-wrap .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.wpcf7-date-wrap {
  position: relative;
  width: 100%;
  max-width: 16.7rem;
  height: 3.3rem;
  border: 1px solid #d4d4d4;
  background-color: #fff;
}
.wpcf7-date-wrap input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 1em;
}
.wpcf7-date-wrap .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.wpcf7-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 4.8rem 0 0;
}

.wpcf7-button {
  position: relative;
  min-width: 13.3rem;
  height: 2.9rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1rem;
  background-color: #303030;
  border-radius: 9999px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.wpcf7-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.7rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/ne-arrow_wh.svg) no-repeat center center/contain;
}
.wpcf7-button input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.wpcf7-button:not(:has(input:disabled)):hover {
  opacity: 0.7;
}

.wpcf7-privacy .wpcf7-acceptance {
  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: 0 0.7rem;
  font-weight: 500;
}
.wpcf7-privacy .wpcf7-acceptance::after {
  content: "必須";
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  background-color: #A51D22;
  border-radius: 9999px;
  white-space: nowrap;
  padding: 0.1em 1em;
}
.wpcf7-privacy .wpcf7-list-item-label a {
  text-decoration: underline;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.wpcf7-privacy .wpcf7-list-item-label a:hover {
  opacity: 0.7;
}

.wpcf7-privacy-content {
  font-size: 0.9rem;
  margin: 1.7rem 0 0;
}
.wpcf7-privacy-content p {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .wpcf7-item {
    gap: 1rem 0;
  }
  .wpcf7-item.-required .wpcf7-form-label::after {
    font-size: 0.9rem;
  }
  .wpcf7-item:not(:last-of-type) {
    margin-bottom: 2.9rem;
  }
  .wpcf7-item-col--label {
    font-size: 1.1rem;
  }
  .wpcf7-item-col--controls {
    font-size: 1rem;
  }
  .wpcf7-form-label {
    font-weight: 600;
    gap: 0 0.7rem;
  }
  .wpcf7-form-control-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.7rem 0;
  }
  .wpcf7-text {
    height: 4.3rem;
  }
  .wpcf7-textarea {
    height: 23.6rem;
  }
  .wpcf7-privacy .wpcf7-acceptance {
    font-weight: 600;
    gap: 0 0.7rem;
  }
  .wpcf7-privacy .wpcf7-acceptance::after {
    font-size: 0.9rem;
  }
  .wpcf7-privacy-content {
    font-size: 1rem;
    margin: 2.9rem 0 0;
  }
  .wpcf7-action {
    margin: 5rem 0 0;
  }
  .wpcf7-button {
    min-width: 16.7rem;
    height: 3.6rem;
  }
  .wpcf7-button .c-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1.4rem;
  }
}
/* modal */
.c-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  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;
  width: 100%;
  height: 100svh;
  padding: 2.9rem 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 65, 66, 0.4);
}
.c-modal__wrap {
  position: relative;
  z-index: 0;
  max-width: 1600px;
  width: calc(100% - 2rem);
  max-height: 100%;
  height: auto;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-modal__body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5.7rem 7.6rem;
}
.c-modal__close {
  position: sticky;
  z-index: 1;
  top: 1.4rem;
  right: 1.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;
  width: 2.4rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  border-radius: 50%;
  background-color: #303030;
  margin: 0 0 0 auto;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-modal__close img {
  width: 0.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-modal__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .c-modal__body {
    padding: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-modal {
    padding: 1.4rem 0;
  }
  .c-modal__body {
    padding: 1.4rem 1rem 2.1rem;
  }
}

body:has(.c-modal.is-open) {
  overflow-y: hidden;
}

/* box */
.c-box {
  position: relative;
  width: calc(50% - 0.7rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F7F3ED;
  border: 1px solid #BB8600;
  margin: 1rem 0 0;
}
.c-box__heading {
  position: absolute;
  top: 0;
  left: 1rem;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #BB8600;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #BB8600;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-box__heading.-center {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-box__content {
  padding: 2.4rem 1.4rem;
}
.c-box__content .c-heading + .c-sentence {
  margin-top: 1rem;
}
@media screen and (max-width: 1200px) {
  .c-box__content {
    padding: 2.4rem 1rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-box {
    width: 100% !important;
  }
  .c-box__content {
    padding: 2.1rem 1rem 1rem;
  }
}

.c-box__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4rem 1.4rem;
}
@media screen and (min-width: 769px) {
  .c-box__wrap.-col3 {
    gap: 1.4rem 0.7rem;
  }
  .c-box__wrap.-col3 .c-box {
    width: calc((100% - 1.4rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .c-box__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
  }
}

/* CTA */
.c-contact-cta {
  color: #fff;
  background-color: #a51d22;
  padding: 2.9rem 2rem;
  margin: 0 auto 4.8rem;
}
@media screen and (max-width: 768px) {
  .c-contact-cta {
    padding: 2.9rem 2rem;
    margin: 0 auto 2.9rem;
  }
}

.c-jslta-cta {
  color: #fff;
  background-color: #7c0300;
  padding: 2.8rem 0;
}
.c-jslta-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.4rem;
}
.c-jslta-cta__sub-title {
  font-size: 0.9rem;
}
.c-jslta-cta__main-title {
  font-size: 1.3rem;
  font-weight: 500;
}
.c-jslta-cta__btn {
  min-width: 11.2rem;
  color: #7c0300;
  border-color: #fff;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-jslta-cta {
    width: calc(100% - 2rem);
    padding: 2rem 0.5rem;
    margin: 2.9rem auto;
    -webkit-filter: drop-shadow(0.5rem 0.5rem 2.9rem rgba(0, 0, 0, 0.08));
            filter: drop-shadow(0.5rem 0.5rem 2.9rem rgba(0, 0, 0, 0.08));
  }
  .c-jslta-cta__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .c-jslta-cta__sub-title {
    font-size: 0.9rem;
  }
  .c-jslta-cta__main-title {
    font-size: 1.3rem;
  }
  .c-jslta-cta__btn {
    min-width: initial;
    color: #fff;
    border-color: #fff;
    background-color: transparent;
    padding: 0;
  }
  .c-jslta-cta__btn .c-arrow-btn__text {
    display: none;
  }
  .c-jslta-cta__btn .c-arrow-btn__arrow {
    position: initial;
    top: initial;
    right: initial;
    -webkit-transform: none;
            transform: none;
    width: 1.9rem;
  }
}

/* social */
.c-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 1rem;
}
.c-social__heading {
  font-family: "Roboto", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
.c-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 0.5rem;
}
.c-social__item {
  aspect-ratio: 1/1;
  height: 1.2rem;
  line-height: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-social__item img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-social__item:hover {
  opacity: 0.7;
}
.c-social__item.-youtube {
  aspect-ratio: 36/26;
}
.c-social.-wh .c-social__heading {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-social {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.7rem 0;
  }
  .c-social__heading {
    font-size: 0.9rem;
    font-weight: 500;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    color: #DADADA;
  }
  .c-social__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.1rem 1.1rem;
  }
  .c-social__item {
    width: 1.4rem;
  }
}

/* news card */
.c-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-news-card__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7.2rem;
  aspect-ratio: 1/1;
}
.c-news-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-areas: "categories categories" "date title-wrap";
  grid-template-columns: 7.9rem 1fr;
  gap: 1rem 0.7rem;
  border-bottom: 1px solid #DADADA;
  padding: 0 0 1rem;
}
.c-news-card__categories {
  grid-area: categories;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
}
.c-news-card__category {
  min-width: 4.8rem;
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #303030;
  border-radius: 9999px;
  padding: 0.25em 1em;
}
.c-news-card__date {
  grid-area: date;
  font-size: 0.9rem;
  line-height: 1.8rem;
}
.c-news-card__title-wrap {
  grid-area: title-wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
}
.c-news-card__title {
  font-size: 0.9rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: underline;
}
.c-news-card__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-news-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-news-card {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0 1.4rem;
    padding: 0 0 0.7rem;
  }
  .c-news-card__thumb {
    width: 7.1rem;
  }
  .c-news-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.7rem 0;
    padding: 0 0 0.7rem;
  }
  .c-news-card__category {
    min-width: 5rem;
    font-size: 0.9rem;
  }
  .c-news-card__date {
    font-size: 1.1rem;
    line-height: 1;
  }
  .c-news-card__title-wrap {
    gap: 0 0.7rem;
  }
  .c-news-card__title {
    font-size: 1.1rem;
  }
}

.c-news-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 0;
}
.c-news-card__wrap .c-news-card {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-news-card__wrap {
    gap: 2.9rem 0;
  }
}

/* results card */
.c-results-card {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-results-card:hover {
  opacity: 0.7;
}
.c-results-card__thumb {
  width: 100%;
  aspect-ratio: 450/263;
  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;
  border: 1px solid #DADADA;
  background-color: #fff;
  -webkit-box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
          box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
  margin: 0 0 1.4rem;
}
.c-results-card__logo {
  width: 9.3rem;
  aspect-ratio: 450/263;
  text-align: center;
  overflow: hidden;
}
.c-results-card__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-results-card__company-name {
  font-size: 1rem;
  margin: 0 0 0.7rem;
}
.c-results-card__title {
  font-size: 0.9rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-results-card__thumb {
    margin: 0 0 1.4rem;
  }
  .c-results-card__logo {
    width: 14rem;
  }
  .c-results-card__company-name {
    font-size: 1rem;
    margin: 0 0 0.3rem;
  }
  .c-results-card__title {
    font-size: 1.1rem;
  }
}

.c-results-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.8rem 2.1rem;
}
.c-results-card__wrap .c-results-card {
  width: calc((100% - 4.2rem) / 3);
}
@media screen and (max-width: 1200px) {
  .c-results-card__wrap {
    gap: 3.8rem 1.4rem;
  }
  .c-results-card__wrap .c-results-card {
    width: calc((100% - 2.9rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .c-results-card__wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.9rem 0;
  }
  .c-results-card__wrap .c-results-card {
    width: 100%;
  }
}

/* voice card */
.c-voice-card__thumb {
  width: 100%;
  aspect-ratio: 450/400;
  margin: 0 0 1rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-card__thumb:hover {
  opacity: 0.7;
}
.c-voice-card__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem 0.2rem;
  margin: 0 0 1rem;
}
.c-voice-card__category {
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
  border: 1px solid #67605F;
  border-radius: 9999px;
  background-color: #67605F;
  padding: 0.25em 1em;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-card__category:hover {
  opacity: 0.7;
}
.c-voice-card__company-name {
  display: block;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-card__company-name:hover {
  opacity: 0.7;
}
.c-voice-card__position {
  display: block;
  font-size: 1rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-card__position:hover {
  opacity: 0.7;
}
.c-voice-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-card__name:hover {
  opacity: 0.7;
}
.c-voice-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0.7rem 0 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-card__title:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-voice-card__thumb {
    margin: 0 0 1.4rem;
  }
  .c-voice-card__categories {
    margin: 0 0 0.7rem;
  }
  .c-voice-card__company-name {
    margin: 0 0 0.4rem;
  }
  .c-voice-card__name {
    font-size: 1.3rem;
  }
  .c-voice-card__title {
    font-size: 1rem;
    margin: 0.7rem 0 0;
  }
}

.c-voice-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.8rem 2.1rem;
}
.c-voice-card__wrap .c-voice-card {
  width: calc((100% - 4.2rem) / 3);
}
@media screen and (max-width: 1200px) {
  .c-voice-card__wrap {
    gap: 3.8rem 1.4rem;
  }
  .c-voice-card__wrap .c-voice-card {
    width: calc((100% - 2.9rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .c-voice-card__wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.9rem 0;
  }
  .c-voice-card__wrap .c-voice-card {
    width: 100%;
  }
}

/* media card */
.c-media-card {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-media-card__thumb {
  width: 100%;
  aspect-ratio: 650/900;
  margin: 0 0 1rem;
}
.c-media-card__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  margin: 0 0 0.5rem;
}
.c-media-card__category {
  min-width: 4.8rem;
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #303030;
  border-radius: 9999px;
  padding: 0.25em 1em;
}
.c-media-card__date {
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
}
.c-media-card__title {
  font-size: 1rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-decoration: underline;
}
.c-media-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-media-card__category {
    min-width: 5rem;
    font-size: 0.9rem;
  }
  .c-media-card__date {
    font-size: 1rem;
  }
  .c-media-card__title {
    font-size: 1.1rem;
  }
}

.c-media-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.8rem 3.7rem;
}
.c-media-card__wrap .c-media-card {
  width: calc((100% - 11.1rem) / 4);
}
@media screen and (max-width: 1200px) {
  .c-media-card__wrap {
    gap: 3.8rem 1.4rem;
  }
  .c-media-card__wrap .c-media-card {
    width: calc((100% - 5.7rem) / 4);
  }
}
@media screen and (max-width: 768px) {
  .c-media-card__wrap {
    gap: 2.1rem 1.4rem;
  }
  .c-media-card__wrap .c-media-card {
    width: calc(50% - 0.7rem);
  }
}

/* media parts */
.c-media-parts {
  color: #fff;
  background: url(../img/cmn/media-parts_bg.jpg) no-repeat center center/cover;
  padding: 8.8rem 0 5.5rem;
}
.c-media-parts__heading {
  font-weight: 600;
  margin: 0 0 2.9rem;
}
.c-media-parts__desc {
  text-shadow: 0 0 1.4rem #000;
}
.c-media-parts__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 1.9rem;
  margin: 4.5rem 0 0;
}
.c-media-parts__category {
  position: relative;
  max-width: 370px;
  width: calc((100% - 5.7rem) / 4);
  aspect-ratio: 370/210;
}
.c-media-parts__banner {
  width: 100%;
  height: 100%;
}
.c-media-parts__arrow {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
}
.c-media-parts__badge {
  position: absolute;
  top: -1.4rem;
  left: -1.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;
  width: 3.8rem;
  aspect-ratio: 1/1;
  color: #303030;
  font-size: 0.7rem;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #ffe000;
}
.c-media-parts__badge .-num {
  font-size: 2em;
}
.c-media-parts__badge .-unit {
  font-size: 1.25em;
}
@media screen and (max-width: 1200px) {
  .c-media-parts__category {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 768px) {
  .c-media-parts {
    background: url(../img/cmn/media-parts_bg_sp.jpg) no-repeat center center/cover;
    padding: 3.6rem 0;
  }
  .c-media-parts__heading {
    margin: 0 0 2.1rem;
  }
  .c-media-parts__categories {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.4rem 1.4rem;
  }
  .c-media-parts__category {
    width: calc(50% - 0.7rem);
  }
  .c-media-parts__badge {
    left: -1rem;
    width: 3.6rem;
    font-size: 0.7rem;
  }
}

/* publish parts */
.c-publish-parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1rem 1.9rem;
  background-color: #959e79;
  padding: 2.9rem 2.4rem;
  margin: 3.8rem auto;
}
.c-publish-parts__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
}
.c-publish-parts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.9rem;
  padding: 0 0 0.5rem;
}
.c-publish-parts__item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 155px;
  width: calc((100% - 9.5rem) / 6);
  aspect-ratio: 155/225;
}
.c-publish-parts__item:hover .c-publish-parts__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-publish-parts__img {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(0.3rem 0.3rem 1.4rem rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0.3rem 0.3rem 1.4rem rgba(0, 0, 0, 0.15));
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.c-publish-parts__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-publish-parts__arrow {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  background-color: #fff;
  border-color: #959e79;
  color: #959e79;
}
@media screen and (max-width: 1200px) {
  .c-publish-parts {
    gap: 2.1rem 1.4rem;
    padding: 1.4rem;
  }
  .c-publish-parts__list {
    gap: 0 1.4rem;
  }
  .c-publish-parts__item {
    width: calc((100% - 7.1rem) / 6);
  }
}
@media screen and (max-width: 768px) {
  .c-publish-parts {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.6rem 1rem;
  }
  .c-publish-parts__body {
    width: 100%;
    overflow-x: auto;
  }
  .c-publish-parts__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .c-publish-parts__item {
    width: 5.7rem;
  }
}

/* voice parts */
.c-voice-parts {
  background-color: #fff;
  padding: 5.7rem 0 2.9rem;
}
.c-voice-parts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4rem 1.9rem;
  margin: 2.4rem 0 3.8rem;
}
.c-voice-parts__card {
  width: calc(50% - 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-voice-parts__header {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.2rem;
  background-color: #fff;
  padding: 1.4rem 1rem;
  border: 1px solid #DADADA;
  border-bottom: none;
}
.c-voice-parts__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  aspect-ratio: 1/1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-parts__thumb:hover {
  opacity: 0.7;
}
.c-voice-parts__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-voice-parts__footer {
  height: 7.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.9rem;
  background-color: #303030;
  padding: 1.4rem 1rem 1.4rem 2.4rem;
}
.c-voice-parts__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-voice-parts__title:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-voice-parts {
    padding: 3.6rem 0;
  }
  .c-voice-parts__list {
    gap: 1rem 1rem;
    margin: 2.1rem 0 2.9rem;
  }
  .c-voice-parts__card {
    width: 100%;
  }
  .c-voice-parts__header {
    padding: 1rem;
  }
  .c-voice-parts__footer {
    height: auto;
    gap: 0 1.4rem;
    padding: 1rem;
  }
  .c-voice-parts__title {
    font-size: 1.1rem;
  }
}

/* results parts */
.c-results-parts {
  background-color: #fff;
  padding: 2.9rem 0 5.7rem;
}
.c-results-parts__heading .mark {
  font-size: 1.2rem;
}
.c-results-parts__logo {
  width: 96%;
  margin: 2.4rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-results-parts__logo {
    width: auto;
  }
}
.c-results-parts__company-name {
  width: 96%;
  text-align: center;
  line-height: 1.8;
  color: #958b89;
  margin-bottom: 2.4rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .c-results-parts__company-name {
    width: auto;
  }
}
.c-results-parts__note {
  text-align: center;
  margin-bottom: 2.4rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 1200px) {
  .c-results-parts__heading .mark {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-results-parts__note {
    font-size: min(3.73vw, 0.8rem);
    margin-bottom: 1.9rem;
  }
}
@media screen and (max-width: 768px) {
  .c-results-parts {
    padding: 0 0 3.6rem;
  }
  .c-results-parts__logo {
    margin: 2.1rem 0 1.7rem;
  }
}

/* ================================
Top
================================ */
.p-top-bc {
  margin: 3.8rem auto 1.4rem;
}
.p-top-bc__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem 1rem;
  background-color: #fff;
  padding: 1.4rem 3.1rem 1.4rem 1.4rem;
  background: url(../img/top/bc_bg.jpg) no-repeat center center/cover;
  border: 1px solid #dadada;
  cursor: pointer;
}
.p-top-bc__img {
  width: 30%;
  aspect-ratio: 360/288;
}
.p-top-bc__logo {
  width: 25%;
}
.p-top-bc__content {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 700;
}
.p-top-bc__title {
  font-size: 1.3rem;
  border-bottom: 1px solid #303030;
  padding: 0 0 0.7rem;
  margin: 0 0 1rem;
}
.p-top-bc__company-name {
  margin: 0 0 0.2rem;
}
.p-top-bc__name {
  font-size: 1.3rem;
}
.p-top-bc__arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-top-bc__link {
    display: grid;
    grid-template-areas: "img logo" "content content";
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    background-size: auto 200%;
  }
  .p-top-bc__img {
    grid-area: img;
    width: auto;
  }
  .p-top-bc__logo {
    grid-area: logo;
    width: auto;
  }
  .p-top-bc__content {
    grid-area: content;
  }
  .p-top-bc__title {
    font-size: 1.1rem;
  }
  .p-top-bc__company-name {
    margin: 0 0 0.4rem;
  }
  .p-top-bc__name {
    font-size: 1.1rem;
  }
  .p-top-bc__arrow {
    width: 1.8rem;
  }
}

.p-top-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 1.2rem;
  margin: 0 auto 7.6rem;
}
.p-top-banner__item {
  width: calc(50% - 0.6rem);
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-top-banner__item:hover {
  opacity: 0.7;
}
.p-top-banner__item.-guest {
  width: 100%;
}
.p-top-banner__item.-shindan {
  -webkit-box-shadow: 0.3rem 0.3rem 1.4rem rgba(0, 0, 0, 0.05);
          box-shadow: 0.3rem 0.3rem 1.4rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .p-top-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem 1.2rem;
    margin: 0 auto 3.6rem;
  }
  .p-top-banner__item {
    width: 100%;
  }
}

.p-top-repeatpro {
  background: url(../img/top/repeatpro_bg.jpg) no-repeat bottom center/cover;
  padding: 6.2rem 0;
  margin: 0 0 7.6rem;
}
.p-top-repeatpro__points {
  max-width: 40.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4rem 1.4rem;
  margin: 2.6rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-top-repeatpro__points {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top-repeatpro__points li {
  width: calc((100% - 2.9rem) / 3);
  border-radius: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 1.4rem 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0.3rem 0.3rem 1.4rem 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .p-top-repeatpro {
    padding: 3.6rem 0;
    margin: 0 0 3.6rem;
  }
  .p-top-repeatpro__heading {
    font-size: 1.3rem;
  }
  .p-top-repeatpro__heading .-md {
    font-size: 1.2em;
  }
  .p-top-repeatpro__points {
    gap: 1rem 1rem;
  }
}

.p-top-reason {
  margin: 0 0 7.6rem;
}
.p-top-reason__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.9rem 2.9rem;
}
.p-top-reason__heading {
  font-size: 2.3rem;
}
.p-top-reason__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-reason__desc {
  max-width: 33.4rem;
}
.p-top-reason__img {
  width: 48%;
  margin: 0 -8.3vw 0 0;
}
@media screen and (max-width: 1200px) {
  .p-top-reason__body {
    gap: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-reason {
    margin: 0 0 7.1rem;
  }
  .p-top-reason__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-top-reason__heading {
    font-size: 2rem;
  }
  .p-top-reason__content {
    padding: 0;
  }
  .p-top-reason__img {
    width: 80%;
    margin: 0 -1rem 0 0;
  }
}

.p-top-feature01 {
  margin: 0 0 3.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature01 {
    margin: 0 0 3.6rem;
  }
}

.p-top-feature02 {
  position: relative;
  margin: 4.8rem 0 4.8rem 0;
}
.p-top-feature02__img01 {
  display: block;
}
.p-top-feature02__img01.sp {
  display: none;
}
.p-top-feature02__heading {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background-color: #BB8600;
  padding: 1em 1.5em;
}
.p-top-feature02__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.9rem 4.8rem;
  padding: 5.7rem 3.8rem 3.6rem;
}
@media screen and (max-width: 1200px) {
  .p-top-feature02__img-wrap {
    gap: 2.9rem 1.4rem;
    padding: 2.9rem 1.4rem 1.9rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-feature02 {
    margin: 0 0 0.7rem;
  }
  .p-top-feature02__img01 {
    display: none;
  }
  .p-top-feature02__img01.sp {
    display: block;
  }
  .p-top-feature02__heading {
    padding: 0.5em 1em;
  }
  .p-top-feature02__img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3.6rem 1rem 2.1rem;
  }
}

.p-top-feature03 {
  background-color: #fff;
  padding: 4.8rem 3.8rem 5.7rem;
  margin: 0 0 2.9rem;
}
.p-top-feature03__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 0.7rem;
  margin: 3.3rem 0 0;
}
.p-top-feature03__item {
  width: calc((100% - 2.1rem) / 4);
  aspect-ratio: 335/310;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem 1.4rem;
  background-color: #F7F3ED;
  padding: 1rem 0.5rem;
}
.p-top-feature03__item:nth-of-type(4) .p-top-feature03__ico {
  width: 46.8656716418%;
}
.p-top-feature03__item:nth-of-type(6) .p-top-feature03__ico {
  width: 49.552238806%;
}
.p-top-feature03__item:nth-of-type(7) .p-top-feature03__ico {
  width: 65.0746268657%;
}
.p-top-feature03__item:nth-of-type(8) .p-top-feature03__ico {
  width: 45.671641791%;
}
.p-top-feature03__ico {
  width: 43.2835820896%;
}
.p-top-feature03__ico img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-feature03__title {
  color: #BB8600;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-top-feature03 {
    padding: 2.9rem 1.4rem;
  }
  .p-top-feature03__item {
    width: calc((100% - 2.4rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .p-top-feature03 {
    padding: 2.1rem 1rem;
  }
  .p-top-feature03__list {
    gap: 1rem 1rem;
    margin: 1.4rem 0 0;
  }
  .p-top-feature03__item {
    width: 100%;
    min-height: 6.4rem;
    aspect-ratio: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 1rem;
  }
  .p-top-feature03__ico {
    width: 4.3rem !important;
    aspect-ratio: 1/1;
  }
  .p-top-feature03__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    font-size: 1rem;
  }
}

.p-top-feature04 {
  background-color: #fff;
  padding: 5.7rem 3.8rem;
  margin: 0 0 2.9rem;
}
.p-top-feature04__concept {
  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: 0 1.4rem;
  margin: 2.4rem 0 0;
}
.p-top-feature04__box {
  width: 6.5em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #BB8600;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid #BB8600;
  padding: 0.6em;
}
.p-top-feature04__box.-gd {
  color: #fff;
  background-color: #BB8600;
}
.p-top-feature04__cross {
  color: #BB8600;
  font-size: 2.9rem;
  font-weight: 100;
  line-height: 1;
}
.p-top-feature04__equal {
  color: #BB8600;
  font-size: 2.9rem;
  font-weight: 100;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-top-feature04 {
    padding: 2.9rem 1.4rem 3.8rem;
  }
  .p-top-feature04__box {
    font-size: 1.2rem;
  }
  .p-top-feature04__cross {
    font-size: 1.8rem;
  }
  .p-top-feature04__equal {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-feature04 {
    padding: 2.1rem 1rem;
  }
  .p-top-feature04__concept {
    gap: 0 0.6rem;
    margin: 1.4rem 0 0;
  }
  .p-top-feature04__box {
    font-size: 1.1rem;
  }
  .p-top-feature04__cross {
    font-size: 1.1rem;
  }
  .p-top-feature04__equal {
    font-size: 1.1rem;
  }
}

.p-top-feature05 {
  background-color: #fff;
  padding: 5.7rem 3.8rem;
  margin: 0 0 2.9rem;
}
@media screen and (max-width: 1200px) {
  .p-top-feature05 {
    padding: 2.9rem 1.4rem 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-feature05 {
    padding: 2.1rem 1rem;
    margin: 0 0 3.6rem;
  }
}

.p-top-feature06 {
  color: #fff;
  background-color: #BB8600;
  padding: 4.8rem 3.8rem 5.7rem;
  margin: 0 0 7.6rem;
}
.p-top-feature06__block-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.9rem 1rem;
  margin: 3.8rem 0 0;
}
.p-top-feature06__block {
  position: relative;
  width: 100%;
  border: 1px solid #fff;
  padding: 2.9rem 3.3rem;
}
.p-top-feature06__block.-sm {
  width: calc(50% - 0.5rem);
}
.p-top-feature06__block-title {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3.3rem;
  display: inline-block;
  color: #BB8600;
  font-size: 1rem;
  background-color: #fff;
  white-space: nowrap;
  padding: 0.5rem 1.9rem;
}
.p-top-feature06__graph-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.5rem;
}
.p-top-feature06__graph {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1200px) {
  .p-top-feature06 {
    padding: 2.9rem 1.4rem 3.8rem;
  }
  .p-top-feature06__block {
    padding: 1.9rem 1.4rem;
  }
  .p-top-feature06__block-title {
    left: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-feature06 {
    padding: 2.1rem 1rem;
    margin: 0 0 3.6rem;
  }
  .p-top-feature06__block-wrap {
    margin: 4.3rem 0 0;
  }
  .p-top-feature06__block.-sm {
    width: 100%;
  }
  .p-top-feature06__graph-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-feature06__graph {
    width: 100%;
  }
}

.p-top-service {
  padding: 7.1rem 0;
}
.p-top-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1rem;
  margin: 2.9rem 0 3.8rem;
}
.p-top-service__card {
  width: calc((100% - 2rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 1.4rem 1rem 2.4rem;
}
.p-top-service__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0.7rem;
}
.p-top-service__img {
  width: 100%;
  aspect-ratio: 445/400;
  overflow: hidden;
  margin: 0 0 1.4rem;
}
.p-top-service__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #BB8600;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.p-top-service__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 0 0 1.4rem;
}
.p-top-service__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
}
.p-top-service__tags li {
  min-width: 6.7rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  background-color: #BB8600;
  border-radius: 9999px;
  padding: 0.25em 1em;
}
.p-top-service__tags li.-inactive {
  background-color: #DADADA;
}
@media screen and (max-width: 1200px) {
  .p-top-service__list {
    gap: 1.4rem 1.4rem;
  }
  .p-top-service__card {
    width: calc(50% - 0.7rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-service {
    padding: 3.6rem 0;
  }
  .p-top-service__list {
    gap: 1.4rem 0;
    margin: 2.1rem 0 2.9rem;
  }
  .p-top-service__card {
    width: 100%;
    padding: 1rem 1rem 1.4rem;
  }
  .p-top-service__img {
    aspect-ratio: 4/3;
    margin: 0 0 1rem;
  }
  .p-top-service__title {
    font-size: 1.4rem;
    margin: 0 0 0.7rem;
  }
  .p-top-service__desc {
    font-size: 1rem;
    margin: 0 0 0.7rem;
  }
  .p-top-service__tags {
    gap: 0.7rem 0.7rem;
  }
  .p-top-service__tags li {
    min-width: 6.4rem;
    font-weight: 500;
    font-size: 0.9rem;
  }
}

.p-top-fujimura {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 7.6rem;
}
.p-top-fujimura__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 3.8rem 2.4rem;
}
.p-top-fujimura__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 37%;
}
@media screen and (max-width: 1200px) {
  .p-top-fujimura__content {
    padding: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-fujimura {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto 3.6rem;
  }
  .p-top-fujimura__img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .p-top-fujimura__content {
    padding: 2.1rem 1rem;
  }
  .p-top-fujimura__desc + .p-top-fujimura__desc {
    margin-top: 1.2em;
  }
}

.p-top-mediainfo {
  position: relative;
  background-color: #F7F3ED;
  padding: 5.7rem 0;
}
.p-top-mediainfo::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: calc(100% - 2rem);
  max-width: 1600px;
  height: 1px;
  background-color: #fff;
}
.p-top-mediainfo__slider-wrap {
  max-width: 1140px;
  margin: 2.9rem auto 3.8rem;
}
.p-top-mediainfo__slider {
  margin: 0 -1.2rem;
}
.p-top-mediainfo__slide {
  margin: 0 1.2rem;
}
.p-top-mediainfo__arrow {
  position: absolute;
  z-index: 10;
  top: 6.7rem;
  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;
  width: 2.2rem;
  aspect-ratio: 1/1;
  background-color: #303030;
  border-radius: 50%;
}
.p-top-mediainfo__arrow::before {
  content: "";
  display: block;
  width: 0.8rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/arrow_wh.svg) no-repeat center center/contain;
}
.p-top-mediainfo__arrow.-prev {
  left: -1.9rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-top-mediainfo__arrow.-next {
  right: -1.9rem;
}
@media screen and (max-width: 1600px) {
  .p-top-mediainfo__arrow.-prev {
    left: 0;
  }
  .p-top-mediainfo__arrow.-next {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .p-top-mediainfo__slider .slick-track {
    gap: 0 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mediainfo {
    padding: 3.6rem 0;
  }
  .p-top-mediainfo__slider-wrap {
    overflow: hidden;
  }
  .p-top-mediainfo__slider-inner {
    padding: 0 1rem;
  }
  .p-top-mediainfo__slider {
    margin: 0 -0.7rem;
  }
  .p-top-mediainfo__slider .slick-list {
    overflow: visible;
  }
  .p-top-mediainfo__slide {
    margin: 0 0.7rem;
  }
  .p-top-mediainfo__arrow {
    top: 7.1rem;
  }
}

.p-top-news {
  position: relative;
  background-color: #F7F3ED;
  padding: 5.7rem 0;
}
.p-top-news__body {
  display: grid;
  grid-template-areas: "feed list" "feed btn-wrap";
  grid-template-columns: 15.7rem 1fr;
  gap: 2.9rem 4.8rem;
  margin: 2.9rem 0 0;
}
.p-top-news__feed {
  grid-area: feed;
  width: 100%;
  aspect-ratio: 330/500;
}
.p-top-news__list {
  grid-area: list;
}
.p-top-news__btn-wrap {
  grid-area: btn-wrap;
  align-self: end;
}
@media screen and (max-width: 1200px) {
  .p-top-news__body {
    gap: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding: 3.6rem 0;
  }
  .p-top-news__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1rem 0;
    margin: 2.1rem 0 0;
  }
  .p-top-news__btn-wrap {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

/* ================================
Page
================================ */
.p-page-info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: max(4.6vh, 34px);
  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: 0 1em;
  color: #fff;
  font-size: clamp(16px, 1.1vw, 21px);
  background-color: #262626;
  padding: 0 1em;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-page-info:hover {
  opacity: 0.7;
}
.p-page-info__chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1em;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
}
.p-page-info__chevron::before {
  content: "";
  display: block;
  width: 0.3em;
  aspect-ratio: 1/1;
  border-top: 1px solid #303030;
  border-right: 1px solid #303030;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-page-info + .l-header {
  top: max(4.6vh, 34px);
}
@media screen and (max-width: 768px) {
  .p-page-info {
    height: 3.3rem;
    gap: 0 0.5em;
    font-size: 0.9rem;
  }
  .p-page-info__chevron {
    width: 1.3rem;
  }
  .p-page-info__chevron::before {
    width: 0.3rem;
  }
  .p-page-info + .l-header {
    top: 3.3rem;
  }
}

.p-page-breadcrumbs {
  margin: 0 0 5.7rem;
}
@media screen and (max-width: 768px) {
  .p-page-breadcrumbs {
    margin: 0 0 2.9rem;
  }
}

.p-page-sidebar {
  position: fixed;
  z-index: 10;
  top: calc(50% + 1.9rem);
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.9rem 0;
  -webkit-transition: ease-out 0.8s;
  transition: ease-out 0.8s;
}
.p-page-sidebar__contact {
  border-radius: 0;
  gap: 0.7rem 0;
  font-size: 1rem;
  padding: 1.4rem 0.7rem;
}
@media screen and (max-width: 1400px) {
  .p-page-sidebar__contact {
    padding: 1rem 0.5rem;
  }
}
.p-page-sidebar__contact .c-arrow-btn__arrow {
  background-color: #fff;
  border-color: #fff;
  color: #A51D22;
  width: 1.9rem;
}
@media screen and (max-width: 1400px) {
  .p-page-sidebar__contact .c-arrow-btn__arrow {
    width: 1.4rem;
  }
}
.p-page-sidebar__social .c-social__heading {
  color: #303030 !important;
}
@media screen and (min-width: 769px) {
  .p-page-sidebar__contact {
    min-width: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0;
  }
  .p-page-sidebar__contact .c-arrow-btn__text {
    letter-spacing: 0.05em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .p-page-sidebar {
    top: initial;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
  .p-page-sidebar__contact {
    width: 100%;
    padding: 0.7rem 1rem;
  }
  .p-page-sidebar__social {
    display: none;
  }
}
.p-page-sidebar.hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-page-sidebar.hide {
    opacity: 1;
  }
}

.p-page-heading {
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-page-heading {
    margin: 0 0 2.1rem;
  }
}

.p-page-content {
  padding: 0 0 7.6rem;
}
.p-page-content__edit-area h2 {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 0 0 0.76em;
  margin: 1.7rem 0;
}
.p-page-content__edit-area h2::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 0.38em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: currentColor;
}
.p-page-content__edit-area p {
  font-size: 1rem;
  line-height: 2;
}
.p-page-content__edit-area p + p {
  margin-top: 2em;
}
.p-page-content__edit-area p + h2 {
  margin-top: 5.7rem;
}
.p-page-content__edit-area ul {
  margin: 1.7rem 0;
}
.p-page-content__edit-area ul li {
  font-size: 1rem;
  line-height: 2;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.p-page-content__edit-area ul li::before {
  content: "・";
}
.p-page-content__edit-area ul + h2 {
  margin-top: 5.7rem;
}
@media screen and (max-width: 768px) {
  .p-page-content {
    padding: 0 0 5.7rem;
  }
  .p-page-content__edit-area h2 {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  .p-page-content__edit-area p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .p-page-content__edit-area p + h2 {
    margin-top: 5.7rem;
  }
  .p-page-content__edit-area ul li {
    font-size: 1rem;
    line-height: 1.8;
  }
  .p-page-content__edit-area ul + h2 {
    margin-top: 5.7rem;
  }
}

.privacy-policy .p-page-heading {
  display: none;
}

/* ================================
リピプロ®藤村としてさらに進化します。
================================ */
.p-message-modal__wrap {
  max-width: 1440px;
  background: #fff url(../img/cmn/message-modal_bg.jpg) no-repeat top right/100% auto;
}
.p-message-modal__bg {
  display: none;
}
.p-message-modal__body {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem 4.3rem;
  padding: 2.1rem 5.7rem 2.6rem;
}
.p-message-modal__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-message-modal__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 18.1rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
}
.p-message-modal__blank {
  height: 21.9rem;
}
.p-message-modal__company-name {
  margin: 0 0 0.5rem;
}
.p-message-modal__name {
  font-size: 1.3rem;
}
@media screen and (max-width: 1200px) {
  .p-message-modal__wrap::before {
    right: -3.8rem;
  }
  .p-message-modal__body {
    padding: 0 1.4rem 1.9rem;
  }
}
@media screen and (max-width: 768px) {
  .p-message-modal__wrap {
    background: #fff;
  }
  .p-message-modal__bg {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    margin: -2.6rem 0 0;
  }
  .p-message-modal__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.4rem 1rem 2.1rem;
  }
  .p-message-modal__blank {
    height: 0;
  }
}
.p-message-modal.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: ease-out 0.8s;
  transition: ease-out 0.8s;
}
@media screen and (max-width: 768px) {
  .p-message-modal.hide {
    opacity: 1;
  }
}

/* ================================
リピプロが選ばれる理由
================================ */
@media screen and (max-width: 768px) {
  .p-reason-mv__desc {
    text-align: justify;
  }
}

.p-reason-problem {
  position: relative;
  z-index: 0;
  background: url(../img/reason/problem_bg.jpg) no-repeat left center/cover;
  padding: 5.7rem 0;
}
.p-reason-problem::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #316daa;
  opacity: 0.5;
}
.p-reason-problem__body {
  position: relative;
  z-index: 2;
  color: #fff;
  border: 1px solid #fff;
  padding: 3.8rem 2.4rem;
}
.p-reason-problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.7rem 1.7rem;
  margin: 2.4rem 0 0;
}
.p-reason-problem__item {
  max-width: 336px;
  width: calc((100% - 5.1rem) / 4);
}
.p-reason-problem__img {
  width: 100%;
  aspect-ratio: 335/245;
  margin: 0 0 1.4rem;
}
.p-reason-problem__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 700;
}
.p-reason-problem__desc {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.7rem !important;
}
@media screen and (max-width: 1200px) {
  .p-reason-problem__body {
    padding: 2.9rem 1.4rem;
  }
  .p-reason-problem__item {
    width: calc(50% - 0.9rem);
  }
}
@media screen and (max-width: 768px) {
  .p-reason-problem {
    padding: 1rem 0;
  }
  .p-reason-problem__body {
    padding: 3.6rem 1rem;
  }
  .p-reason-problem__list {
    gap: 2.9rem 0;
    margin: 2.1rem 0 0;
  }
  .p-reason-problem__item {
    max-width: initial;
    width: 100%;
  }
  .p-reason-problem__img {
    aspect-ratio: 320/175;
    margin: 0 auto 1.4rem;
  }
  .p-reason-problem__title {
    text-align: left;
    padding: 0 1.2rem;
  }
  .p-reason-problem__desc {
    text-align: left;
    padding: 0 1.2rem;
  }
}

.p-reason-main {
  position: relative;
  padding: 7.6rem 0;
}
.p-reason-main::before {
  content: "";
  position: absolute;
  top: -1.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 5.7rem;
  aspect-ratio: 120/40;
  background-color: #f8f8f8;
  clip-path: polygon(50% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-reason-main {
    padding: 3.6rem 0;
  }
  .p-reason-main::before {
    top: -1.4rem;
    width: 4.3rem;
  }
}

.p-reason-block {
  position: relative;
  background-color: #fff;
  padding: 2.9rem 2.4rem;
}
.p-reason-block__num {
  position: absolute;
  top: -1.4rem;
  left: 1rem;
  display: inline-block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #BB8600;
  font-size: 3.3rem;
  line-height: 1;
  font-style: italic;
}
.p-reason-block.-reverse .p-reason-block__num {
  left: initial;
  right: 1rem;
}
.p-reason-block:first-of-type {
  margin-top: 6.7rem;
}
.p-reason-block:not(:last-of-type) {
  margin-bottom: 5.2rem;
}
@media screen and (max-width: 1200px) {
  .p-reason-block {
    padding: 2.4rem 1.4rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-reason-block {
    padding: 2.9rem 1rem 2.1rem;
  }
  .p-reason-block:first-of-type {
    margin-top: 3.6rem;
  }
  .p-reason-block:not(:last-of-type) {
    margin-bottom: 3.6rem;
  }
}

.p-reason-system01 {
  margin: 2.4rem 0;
}

.p-reason-system02__heading {
  color: #BB8600;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5em 1em;
  border: 1px solid #BB8600;
  margin: 0 0 1.9rem;
}
.p-reason-system02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 1.2rem;
}
.p-reason-system02__item {
  width: calc(50% - 0.6rem);
  min-height: 11.7rem;
  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: 0 1.7rem;
  background-color: #fff;
  border: 1px solid #BB8600;
  padding: 2.4rem;
}
.p-reason-system02__item::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-reason-system02__item:nth-of-type(1)::before {
  width: 3.6rem;
  aspect-ratio: 96/120;
  background: url(../img/reason/system02-item01_ico.png) no-repeat center center/contain;
}
.p-reason-system02__item:nth-of-type(2)::before {
  width: 5.1rem;
  aspect-ratio: 136/128;
  background: url(../img/reason/system02-item02_ico.png) no-repeat center center/contain;
}
.p-reason-system02__item:nth-of-type(3)::before {
  width: 5.1rem;
  aspect-ratio: 136/128;
  background: url(../img/reason/system02-item03_ico.png) no-repeat center center/contain;
}
.p-reason-system02__item:nth-of-type(4)::before {
  width: 3.5rem;
  aspect-ratio: 187/259;
  background: url(../img/reason/system02-item04_ico.png) no-repeat center center/contain;
}
.p-reason-system02__title {
  color: #BB8600;
  font-size: 1.1rem;
  font-weight: 700;
}
.p-reason-system02__desc {
  color: #BB8600;
  font-weight: 400;
  margin: 0.5rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-reason-system02__item {
    min-height: 9.5rem;
    padding: 1.4rem;
  }
  .p-reason-system02__item:nth-of-type(1)::before {
    width: 2.9rem;
  }
  .p-reason-system02__item:nth-of-type(2)::before {
    width: 4.1rem;
  }
  .p-reason-system02__item:nth-of-type(3)::before {
    width: 4.1rem;
  }
  .p-reason-system02__item:nth-of-type(4)::before {
    width: 2.9rem;
  }
  .p-reason-system02__title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-reason-system02__heading {
    margin: 0 0 1rem;
  }
  .p-reason-system02__item {
    min-height: initial;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0 1rem;
    padding: 1rem;
  }
  .p-reason-system02__item::before {
    width: 4rem !important;
    aspect-ratio: 1/1 !important;
  }
  .p-reason-system02__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-reason-system02__desc {
    font-weight: 500;
  }
}

.p-reason-review {
  padding: 0 0 7.1rem;
}
.p-reason-review__slider {
  margin: 4.3rem 0 0;
}
.p-reason-review__slider .slick-track {
  left: 14.65rem;
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.4rem;
}
.p-reason-review__slide {
  width: 100%;
  height: auto;
  max-width: 27.9rem;
  padding: 2.4rem 2.9rem;
  color: #67605F;
  background-color: #fff;
  border-radius: 0.7rem 0.7rem 0 0.7rem;
  -webkit-box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
          box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
}
.p-reason-review__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.9rem;
  margin: 0 0 1rem;
}
.p-reason-review__rating {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-reason-review__rating .-star {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
  display: inline-block;
  width: 0.9rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/star_ico.svg) no-repeat center center/contain;
}
.p-reason-review__rating .-num {
  color: #BB8600;
  font-size: 1rem;
  margin: 0 0 0 0.25em;
}
.p-reason-review__job {
  font-size: 0.9rem;
}
.p-reason-review__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}
@media screen and (max-width: 1200px) {
  .p-reason-review__slider .slick-track {
    left: 9.65rem;
  }
  .p-reason-review__slide {
    max-width: 17.9rem;
    padding: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-reason-review {
    padding: 0 0 3.6rem;
  }
  .p-reason-review__slider {
    margin: 3.6rem 0 0;
  }
  .p-reason-review__slider .slick-track {
    left: 0;
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1rem;
  }
  .p-reason-review__slide {
    width: 21.4rem;
    padding: 1.4rem 1rem;
  }
  .p-reason-review__title {
    font-size: 1.1rem;
    margin: 0 0 0.7rem;
  }
  .p-reason-review__job {
    font-size: 0.9rem;
  }
}

/* ================================
藤村純子について
================================ */
.p-fujimura-main {
  margin: 5.7rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-fujimura-main {
    margin: 3.6rem 0 0;
  }
}

.p-fujimura-block {
  position: relative;
  padding: 9.5rem 0;
  clip-path: polygon(0 4.3rem, 100% 0, 100% calc(100% - 4.3rem), 0 100%);
}
.p-fujimura-block__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.4rem 4.8rem;
}
.p-fujimura-block__num {
  position: absolute;
  top: -1.4rem;
  left: 1.9rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 1rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #BB8600;
  font-size: 3.3rem;
  line-height: 1;
  font-style: italic;
}
.p-fujimura-block__num::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 7.1rem;
  background-color: #BB8600;
}
.p-fujimura-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2.9rem 0 0 6.7rem;
}
.p-fujimura-block__img {
  width: 46%;
  margin: 0 -8.3vw 0 0;
}
.p-fujimura-block.-reverse {
  background-color: #F7F3ED;
}
.p-fujimura-block.-reverse .p-fujimura-block__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-fujimura-block.-reverse .p-fujimura-block__num {
  left: initial;
  right: 1.9rem;
}
.p-fujimura-block.-reverse .p-fujimura-block__content {
  padding: 2.9rem 6.7rem 0 0;
}
.p-fujimura-block.-reverse .p-fujimura-block__img {
  margin: 0 0 0 -8.3vw;
}
@media screen and (max-width: 1200px) {
  .p-fujimura-block__inner {
    gap: 1.4rem 1.4rem;
  }
  .p-fujimura-block__num {
    left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-fujimura-block__num::after {
    width: 7.1rem;
    height: 1px;
  }
  .p-fujimura-block__content {
    padding: 2.9rem 0 0 0;
  }
  .p-fujimura-block__img {
    margin: 0 -1rem 0 0;
  }
  .p-fujimura-block.-reverse .p-fujimura-block__num {
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-fujimura-block.-reverse .p-fujimura-block__img {
    margin: 0 0 0 -1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-fujimura-block {
    padding: 5rem 0 3.6rem;
    clip-path: polygon(0 2.1rem, 100% 0, 100% calc(100% - 2.1rem), 0 100%);
  }
  .p-fujimura-block__inner {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .p-fujimura-block__content {
    padding: 0 !important;
  }
  .p-fujimura-block__num {
    top: 0;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .p-fujimura-block__num::after {
    width: 1px;
    height: 5.7rem;
  }
  .p-fujimura-block__img {
    width: 80%;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .p-fujimura-block.-reverse .p-fujimura-block__img {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.p-fujimura-gallery {
  padding: 0 0 7.1rem;
}
.p-fujimura-gallery__slider {
  margin: 4.8rem 0 0;
}
.p-fujimura-gallery__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 1.4rem;
}
.p-fujimura-gallery__slide {
  position: relative;
  cursor: pointer;
}
.p-fujimura-gallery__slide::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #bb8600;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-fujimura-gallery__slide:hover::before {
  opacity: 0.7;
}
.p-fujimura-gallery__slide:hover .p-fujimura-gallery__slide-title {
  opacity: 1;
}
.p-fujimura-gallery__slide:nth-of-type(even) {
  margin-top: 1.4rem;
}
.p-fujimura-gallery__slide-img {
  width: 20.2rem;
  aspect-ratio: 427/288;
}
.p-fujimura-gallery__slide-title {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.p-fujimura-gallery__slide-title .-year {
  font-size: 0.85em;
}
@media screen and (max-width: 768px) {
  .p-fujimura-gallery {
    padding: 0 0 3.6rem;
  }
  .p-fujimura-gallery__slider {
    margin: 1.4rem 0 0;
  }
  .p-fujimura-gallery__slider .slick-track {
    gap: 0 1rem;
  }
}

.p-fujimura-profile {
  position: relative;
  z-index: 0;
  min-height: 51.6rem;
  padding: 5.7rem 0;
}
.p-fujimura-profile__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 91.4rem;
  aspect-ratio: 1920/1084;
}
.p-fujimura-profile__body {
  max-width: 36.7rem;
  margin: 0 0 0 auto;
}
.p-fujimura-profile__position {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1rem;
  margin: 0 0 0.7rem;
}
.p-fujimura-profile__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 700;
  margin: 0 0 2.4rem;
}
.p-fujimura-profile__name .-kanji {
  font-size: 1.9rem;
}
.p-fujimura-profile__name .-furigana {
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .p-fujimura-profile {
    min-height: initial;
  }
  .p-fujimura-profile::before {
    left: -16.7rem;
    -webkit-transform: none;
            transform: none;
  }
  .p-fujimura-profile__body {
    max-width: 58.3vw;
  }
}
@media screen and (max-width: 768px) {
  .p-fujimura-profile {
    background-color: #fff;
    padding: 0 0 7.1rem;
  }
  .p-fujimura-profile__bg {
    position: initial;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    aspect-ratio: 4/3;
  }
  .p-fujimura-profile__body {
    max-width: initial;
    padding: 2.1rem 0 0;
  }
  .p-fujimura-profile__name {
    margin: 0 0 1.4rem;
  }
}

.p-fujimura-history {
  position: relative;
  z-index: 1;
  background-color: #fff;
  -webkit-box-shadow: 0.3rem 0.3rem 1.4rem rgba(0, 0, 0, 0.05);
          box-shadow: 0.3rem 0.3rem 1.4rem rgba(0, 0, 0, 0.05);
  padding: 4.3rem 2.4rem 4.8rem;
  margin: -3.8rem auto 0;
}
.p-fujimura-history__heading {
  font-weight: 700;
  text-align: center;
  padding: 0 0 0.5em;
  margin: 0 0 3.3rem;
  border-bottom: 1px solid #303030;
}
.p-fujimura-history__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.4rem;
}
.p-fujimura-history__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16%;
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #303030;
}
.p-fujimura-history__item:first-of-type .p-fujimura-history__header::before {
  content: none;
}
.p-fujimura-history__item:first-of-type .p-fujimura-history__content {
  padding-top: 0;
}
.p-fujimura-history__item:last-of-type::before {
  content: none;
}
.p-fujimura-history__item:last-of-type .p-fujimura-history__header::after {
  content: none;
}
.p-fujimura-history__item:last-of-type .p-fujimura-history__content {
  border-bottom: none;
}
.p-fujimura-history__header {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32%;
  background-color: #fff;
  padding: 3.1rem 0;
}
.p-fujimura-history__header::before, .p-fujimura-history__header::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 0.2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #303030;
}
.p-fujimura-history__header::before {
  top: 0;
}
.p-fujimura-history__header::after {
  bottom: 0;
}
.p-fujimura-history__title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.p-fujimura-history__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.7rem 1rem;
  padding: 3.8rem 0;
  border-bottom: 1px solid #303030;
}
.p-fujimura-history__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.8rem;
}
.p-fujimura-history__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-fujimura-history__logo01 {
  max-width: 11.9rem;
  margin: 0 auto 1.4rem;
}
.p-fujimura-history__logo02 {
  max-width: 7.5rem;
  margin: 0 auto 1.4rem;
}
@media screen and (max-width: 1200px) {
  .p-fujimura-history {
    padding: 2.9rem 1.4rem;
  }
  .p-fujimura-history__img {
    float: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-fujimura-history {
    padding: 3.6rem 1.2rem;
  }
  .p-fujimura-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem 0;
  }
  .p-fujimura-history__item::before {
    top: initial;
    bottom: 0;
    left: 0;
    height: 2.9rem;
  }
  .p-fujimura-history__item:last-of-type .p-fujimura-history__content {
    padding-bottom: 0;
  }
  .p-fujimura-history__item:last-of-type .p-fujimura-history__content::after {
    content: none;
  }
  .p-fujimura-history__img {
    width: 100%;
    aspect-ratio: 320/175;
  }
  .p-fujimura-history__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1rem;
    padding: 1.4rem 0 0;
  }
  .p-fujimura-history__header::before {
    left: -0.1rem;
    -webkit-transform: none;
            transform: none;
    width: 0.4rem;
  }
  .p-fujimura-history__header::after {
    content: none;
  }
  .p-fujimura-history__title {
    text-align: left;
  }
  .p-fujimura-history__content {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 0 4.3rem;
    border-bottom: none;
  }
  .p-fujimura-history__content::after {
    content: "";
    position: absolute;
    bottom: 2.9rem;
    left: -0.1rem;
    display: inline-block;
    width: 0.4rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #303030;
  }
  .p-fujimura-history__content .c-heading + .c-sentence {
    margin-top: 0.7rem;
  }
  .p-fujimura-history__logo01 {
    width: 8.5rem;
    margin: 0 0 0 auto;
  }
  .p-fujimura-history__logo02 {
    width: 4.1rem;
    margin: 0 0 0 auto;
  }
}

.p-fujimura-cta {
  padding: 6.2rem 0 0;
}
.p-fujimura-cta__btn {
  min-width: 11.9rem;
}
@media screen and (max-width: 768px) {
  .p-fujimura-cta {
    padding: 3.6rem 0 0;
  }
  .p-fujimura-cta__btn {
    min-width: 16.7rem;
  }
}

/* ================================
サービスについて
================================ */
@media screen and (max-width: 768px) {
  .p-service-mv__bg img {
    -o-object-position: top center;
       object-position: top center;
  }
}

.p-service-case {
  background-color: #fff;
  padding: 2.9rem 2.4rem;
  margin: 5.7rem auto 7.6rem;
}
.p-service-case__list {
  margin: 2.9rem 0 0;
}
.p-service-case__item {
  background-color: #fff;
}
.p-service-case__item .c-box__heading {
  color: #BB8600;
  background-color: #fff;
}
.p-service-case__catch {
  text-align: center;
  font-weight: 700;
  margin: 0 0 1rem;
}
.p-service-case__catch .-lg {
  font-size: 1.7rem;
}
@media screen and (min-width: 769px) {
  .p-service-case__item .c-box__content {
    padding: 1.9rem 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-service-case {
    padding: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service-case {
    padding: 3.6rem 1rem;
    margin: 3.6rem auto;
  }
  .p-service-case__list {
    margin: 1.4rem 0 0;
  }
  .p-service-case__catch .-lg {
    font-size: 1.3rem;
  }
}

.p-service-block {
  position: relative;
  background-color: #fff;
  padding: 2.9rem 2.4rem;
}
.p-service-block__num {
  position: absolute;
  top: -1.4rem;
  left: 1rem;
  display: inline-block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #BB8600;
  font-size: 3.3rem;
  line-height: 1;
  font-style: italic;
}
.p-service-block__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
  padding: 0 0 1.9rem;
  margin: 1rem 0 1.9rem;
  border-bottom: 1px solid #BB8600;
}
.p-service-block__tags li {
  min-width: 7.6rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
  background-color: #BB8600;
  border-radius: 9999px;
  padding: 0.25em 1em;
}
.p-service-block__tags li.-inactive {
  background-color: #DADADA;
}
.p-service-block:first-of-type {
  margin-top: 5.7rem;
}
.p-service-block:not(:last-of-type) {
  margin-bottom: 4.8rem;
}
.p-service-block.-reverse .p-reason-block__num {
  left: initial;
  right: 1rem;
}
@media screen and (max-width: 1200px) {
  .p-service-block {
    padding: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service-block {
    padding: 2.9rem 1rem 2.1rem;
  }
  .p-service-block__tags {
    gap: 0.7rem 0.7rem;
    padding: 0 0 1.4rem;
    margin: 0.7rem 0 2.1rem;
  }
  .p-service-block__tags li {
    min-width: 6.4rem;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .p-service-block:first-of-type {
    margin-top: 3.6rem;
  }
  .p-service-block:not(:last-of-type) {
    margin-bottom: 3.6rem;
  }
}

.p-service-block-recom {
  background-color: #F7F3ED;
  padding: 1.9rem 1.9rem 2.9rem;
  margin: 2.9rem 0 0;
}
.p-service-block-recom__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  gap: 1rem 4.3rem;
  grid-template-columns: repeat(2, auto);
  margin: 1.9rem auto 0;
}
.p-service-block-recom__list li {
  position: relative;
  padding: 0 0 0 1.5rem;
}
.p-service-block-recom__list li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  background-color: #BB8600;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-service-block-recom {
    padding: 1.4rem 1rem;
    margin: 2.1rem 0 0;
  }
  .p-service-block-recom__list {
    display: block;
    margin: 1.4rem auto 0;
  }
  .p-service-block-recom__list li:not(:last-child) {
    margin-bottom: 0.7rem;
  }
}

.p-service-block-course {
  margin: 4.8rem 0 0;
}
.p-service-block-course__btn {
  min-width: 26rem;
  color: #BB8600;
  font-size: 1.7rem;
  font-weight: 700;
  border: 1px solid #BB8600;
  background-color: #fff;
  border-radius: 0;
  padding: 0.5em 1.1em;
}
.p-service-block-course__btn .c-arrow {
  width: 1.9rem;
  color: #fff;
  background-color: #BB8600;
}
@media screen and (max-width: 1200px) {
  .p-service-block-course__btn {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service-block-course {
    margin: 2.1rem 0 0;
  }
  .p-service-block-course__btn {
    min-width: initial;
    width: 90%;
    font-size: 1.1rem;
  }
}

.p-service-block03__boxWrap {
  margin: 3.3rem 0;
}
@media screen and (max-width: 768px) {
  .p-service-block03__boxWrap {
    margin: 2.1rem 0;
  }
}

.p-service-modal__heading {
  color: #BB8600;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.9rem;
}
.p-service-modal__heading span {
  display: inline-block;
  border: 1px solid #BB8600;
  padding: 0.4em 1.1em;
}
@media screen and (max-width: 1200px) {
  .p-service-modal__heading {
    font-size: 1.4rem;
  }
}

.p-service-flow {
  margin: 4.8rem 0 0;
}
.p-service-flow__block {
  position: relative;
  padding: 0 0 0 5.7rem;
}
.p-service-flow__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #BB8600;
}
.p-service-flow__block:not(:last-of-type) {
  padding-bottom: 5.7rem;
}
.p-service-flow__block .attention {
  font-size: 0.9rem;
  font-weight: 400;
}
.p-service-flow__num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3.2rem;
  aspect-ratio: 1/1;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-align: center;
  background-color: #BB8600;
  border-radius: 50%;
}
.p-service-flow__title {
  color: #BB8600;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}
.p-service-flow__table-wrap {
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-service-flow__block {
    padding: 0 0 0 2.9rem;
  }
  .p-service-flow__block::before {
    left: 1.2rem;
  }
  .p-service-flow__num {
    width: 2.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service-flow__block {
    padding: 0 0 0 2.9rem;
  }
  .p-service-flow__block .attention {
    font-weight: 600;
  }
  .p-service-flow__table-wrap {
    margin: 2.1rem 0 0;
  }
}

.p-service-contents {
  margin: 5.7rem 0 0;
}
.p-service-contents__block {
  max-width: 54.8rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.4rem 1.9rem;
  border: 1px solid #303030;
  padding: 1.4rem 1.4rem 2.9rem 2.9rem;
  margin: 0 auto 3.8rem;
}
.p-service-contents__block:nth-of-type(1) {
  border-color: #b50014;
}
.p-service-contents__block:nth-of-type(2) {
  border-color: #06226a;
}
.p-service-contents__block:nth-of-type(3) {
  border-color: #ef9800;
}
.p-service-contents__block:nth-of-type(4) {
  border-color: #0c5f33;
}
.p-service-contents__block:nth-of-type(5) {
  border-color: #52b748;
}
.p-service-contents__block:nth-of-type(6) {
  border-color: #078dbc;
}
.p-service-contents__block:nth-of-type(7) {
  border-color: #b98400;
}
.p-service-contents__content {
  padding: 1rem 0 0;
}
.p-service-contents__content .c-sentence {
  font-weight: 700;
}
.p-service-contents__content ul {
  font-weight: 700;
}
.p-service-contents__content ul li {
  line-height: 180%;
}
.p-service-contents__content ul span {
  font-weight: 500;
}
.p-service-contents__title {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 0 0.75em;
  margin: 0 0 1em;
  border-bottom: 2px solid #303030;
}
.p-service-contents__title span {
  color: #303030;
  font-size: 1rem;
  font-weight: 500;
}
.p-service-contents__img {
  width: 7rem;
}
.p-service-contents__group-title {
  position: relative;
  max-width: 54.8rem;
  color: #fff;
  text-align: center;
  background-color: #BB8600;
  padding: 0.7rem;
  margin: 0 auto 1.9rem;
  font-size: 1.2rem;
}
.p-service-contents__group-title::after {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 2.7rem;
  aspect-ratio: 50/15;
  background-color: #BB8600;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-service-contents__group-title span {
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .p-service-contents__block {
    padding: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service-contents__block {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
    padding: 1rem;
    margin: 0 auto 2.1rem;
  }
  .p-service-contents__img {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .p-service-contents__content {
    padding: 0;
  }
  .p-service-contents__content .c-sentence {
    font-weight: 700;
  }
  .p-service-contents__content ul li span {
    font-weight: 600;
  }
  .p-service-contents__title {
    border-bottom: 1px solid #303030;
  }
  .p-service-contents__title span {
    font-weight: 600;
  }
}

.p-service-contents-flow {
  margin: 0.5rem 0 0;
}
.p-service-contents-flow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #67605F;
}
.p-service-contents-flow__item:not(:last-of-type) {
  margin-bottom: 4rem;
}
.p-service-contents-flow__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -2.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 2.4rem;
  aspect-ratio: 50/18;
  background-color: #67605F;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-service-contents-flow__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.5rem;
  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;
  color: #fff;
  text-align: center;
  font-weight: 700;
  background-color: #67605F;
  padding: 1rem;
}
.p-service-contents-flow__content {
  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;
  font-weight: 700;
  line-height: 2;
  background-color: #fff;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .p-service-contents-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-service-contents-flow__item:not(:last-of-type) {
    margin-bottom: 2.1rem;
  }
  .p-service-contents-flow__item:not(:last-of-type)::after {
    bottom: -1.4rem;
    width: 2.1rem;
  }
  .p-service-contents-flow__title {
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
  }
  .p-service-contents-flow__content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    font-weight: 500;
    line-height: 1.8;
    padding: 0.5rem 1rem;
  }
}

.p-service-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 0;
  background-color: #fef5f4;
  padding: 3.3rem 0;
  width: calc(100% + 15.2rem);
  margin: 3.8rem -7.6rem;
}
.p-service-nav__block {
  padding: 0 1rem;
}
.p-service-nav__block:not(:last-of-type) {
  border-right: 1px solid #e7dbc9;
}
.p-service-nav__table {
  table-layout: fixed;
}
.p-service-nav__table thead th {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  padding: 0 0 1rem;
}
.p-service-nav__item {
  width: 9.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 0;
}
.p-service-nav__item::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  aspect-ratio: 1/1;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-service-nav__item01 {
  color: #b50014;
}
.p-service-nav__item02 {
  color: #06226a;
}
.p-service-nav__item03 {
  color: #52b748;
}
.p-service-nav__item04 {
  color: #078dbc;
}
.p-service-nav__item05 {
  color: #b98400;
}
.p-service-nav__item06 {
  color: #ef9800;
}
.p-service-nav__item07 {
  color: #0c5f33;
}
.p-service-nav__cover {
  width: 73%;
  aspect-ratio: 146/208;
}
.p-service-nav__cover img {
  height: auto;
}
.p-service-nav__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service-nav__title {
    font-size: 0.8rem !important;
  }
}
.p-service-nav__title-sales {
  margin: 0.6rem 0 1rem;
}
@media screen and (max-width: 1200px) {
  .p-service-nav {
    width: calc(100% + 2.9rem);
    margin: 3.8rem -1.4rem;
  }
  .p-service-nav__block:not(:last-of-type) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .p-service-nav {
    width: calc(100% + 2rem);
    gap: 2rem 1rem;
    margin: 2rem -1rem;
  }
  .p-service-nav__block {
    padding: 0 1rem;
  }
  .p-service-nav__table thead th {
    font-size: 0.9rem;
  }
  .p-service-nav__item {
    width: 7.9rem;
    gap: 0.5rem 0;
  }
  .p-service-nav__title {
    font-size: 0.9rem;
  }
}

/* ================================
News
================================ */
/* 一覧ページ共通 */
.p-archive-header {
  margin: 0 0 3.8rem;
}
.p-archive-header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 9.5rem;
}
.p-archive-header__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 0.7rem;
}
.p-archive-header__category {
  min-width: 5.8rem;
  font-size: 0.8rem;
  text-align: center;
  border: 1px solid #303030;
  padding: 0.4rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-archive-header__category.-current, .p-archive-header__category:hover {
  color: #fff;
  background-color: #303030;
}
@media screen and (max-width: 768px) {
  .p-archive-header__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.1rem 0;
  }
  .p-archive-header__categories {
    gap: 1rem 1rem;
  }
  .p-archive-header__category {
    min-width: 7.1rem;
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

.p-archive-footer {
  margin: 4.8rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-archive-footer {
    margin: 4.3rem 0 0;
  }
}

/* 詳細ページ共通 */
.p-single-article__header {
  margin: 0 0 2.1rem;
}
.p-single-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin: 0 0 0.5rem;
}
.p-single-article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
}
.p-single-article__category {
  min-width: 4.8rem;
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #303030;
  border-radius: 9999px;
  padding: 0.25em 1em;
}
.p-single-article__date {
  color: #958B89;
  font-size: 0.9rem;
}
.p-single-article__title {
  font-weight: 700;
}
.p-single-article__thumb {
  margin: 0 0 1.9rem;
}
.p-single-article__edit-area h2 {
  font-size: 1.2rem;
  margin: 2.4rem 0 1.4rem;
}
.p-single-article__edit-area p {
  font-size: 1rem !important;
  line-height: 2;
}
.p-single-article__edit-area p * {
  font-size: inherit !important;
}
.p-single-article__edit-area p a {
  text-decoration: underline;
}
.p-single-article__edit-area p span {
  display: inline;
}
.p-single-article__edit-area p:has(img) {
  margin: 4.8rem 0 2.4rem;
}
.p-single-article__edit-area p + p {
  margin-top: 0.7rem;
}
.p-single-article__edit-area .wp-block-image {
  margin: 4.8rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-single-article__meta {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    margin: 0;
  }
  .p-single-article__category {
    font-size: 0.9rem;
  }
  .p-single-article__date {
    font-size: 1.1rem;
  }
  .p-single-article__title {
    font-size: 1.3rem;
    margin: 0 0 1.4rem;
  }
  .p-single-article__thumb {
    margin: 0 0 1.4rem;
  }
  .p-single-article__edit-area h2 {
    font-size: 1.1rem;
    margin: 0 0 1.1rem;
  }
  .p-single-article__edit-area p {
    font-size: 1rem !important;
    line-height: 1.8;
  }
  .p-single-article__edit-area p:has(img) {
    margin: 2.9rem 0 1.4rem;
  }
  .p-single-article__edit-area p + p {
    margin-top: 0.7rem;
  }
  .p-single-article__edit-area .wp-block-image {
    margin: 2.9rem 0 1.4rem;
  }
}

.p-single-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.4rem 4.8rem;
}
.p-single-block__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.1rem;
}
.p-single-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-single-block__heading {
  font-size: 1rem;
  margin: 0 0 0.2rem;
}
.p-single-block__catch {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 1rem;
}
.p-single-block__desc {
  font-size: 1rem;
}
.p-single-block:not(:last-of-type) {
  margin-bottom: 4.3rem;
}
@media screen and (max-width: 768px) {
  .p-single-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border-top: 1px solid #DADADA;
    padding: 2.9rem 0 0;
  }
  .p-single-block__img {
    width: 100%;
  }
  .p-single-block__heading {
    font-size: 1rem;
    margin: 0 0 0.4rem;
  }
  .p-single-block__catch {
    font-size: 1.1rem;
    margin: 0 0 0.7rem;
  }
  .p-single-block__desc {
    font-size: 1rem;
  }
  .p-single-block:not(:last-of-type) {
    margin-bottom: 2.9rem;
  }
}

.p-single-footer {
  clear: both;
  padding: 5.7rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-single-footer {
    padding: 4.3rem 0 0;
  }
}

/* ================================
Results
================================ */
.p-resultsTop-footer__results {
  margin: 2.4rem 0 0;
}

.p-results-article__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem 3.1rem;
  margin: 0 0 4.8rem;
}
.p-results-article__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35%;
  aspect-ratio: 514/398;
  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;
  border: 1px solid #DADADA;
  background-color: #fff;
  -webkit-box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
          box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
}
.p-results-article__logo {
  width: 9rem;
  aspect-ratio: 1/1;
  text-align: center;
}
.p-results-article__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-results-article__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-results-article__company-name {
  font-size: 1rem;
}
.p-results-article__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .p-results-article__header {
    gap: 1.8rem 1.4rem;
  }
  .p-results-article__logo {
    width: 6.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-results-article__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 0 2.9rem;
  }
  .p-results-article__thumb {
    width: 100%;
  }
  .p-results-article__company-name {
    font-size: 1rem;
  }
  .p-results-article__title {
    font-size: 1.3rem;
  }
}

/* ================================
Voice
================================ */
.p-voice-article__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.1rem 2.9rem;
  margin: 0 0 4.8rem;
}
.p-voice-article__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36%;
  aspect-ratio: 514/398;
  overflow: hidden;
}
.p-voice-article__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-voice-article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  margin: 0 0 1rem;
}
.p-voice-article__category {
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #67605F;
  border-radius: 9999px;
  background-color: #67605F;
  padding: 0.25em 1em;
}
.p-voice-article__company-name {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.p-voice-article__position {
  font-size: 1rem;
}
.p-voice-article__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.p-voice-article__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .p-voice-article__header {
    gap: 1.8rem 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-voice-article__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 0 3.6rem;
  }
  .p-voice-article__thumb {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .p-voice-article__company-name {
    font-size: 1rem;
  }
  .p-voice-article__name {
    font-size: 1.3rem;
  }
  .p-voice-article__title {
    font-size: 1.3rem;
  }
}

/* ================================
Media
================================ */
.p-mediaTop-header {
  margin: 0 0 4.3rem;
}
.p-mediaTop-header__title {
  font-size: 1.9rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 4.3rem;
}
.p-mediaTop-header__categories {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 2.6rem;
}
.p-mediaTop-header__categories--img {
  display: block;
  max-width: 900px;
  margin: 0 auto 0;
}
@media screen and (max-width: 1200px) {
  .p-mediaTop-header__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mediaTop-header {
    margin: 0 0 4.3rem;
  }
  .p-mediaTop-header__title {
    margin: 0 0 2.1rem;
  }
}

.p-mediaTop__body {
  margin: 0 auto 4.3rem;
}

.p-mediaTop-backnumber {
  margin: 0 0 7.1rem;
}
.p-mediaTop-backnumber__title {
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  margin: 0 0 3.6rem;
}
.p-mediaTop-backnumber__coverList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 0.7rem;
  margin: 0 auto;
}
.p-mediaTop-backnumber__coverList li {
  width: calc((100% - 3.8rem) / 6);
}
@media screen and (max-width: 768px) {
  .p-mediaTop-backnumber {
    margin: 0 0 4.3rem;
  }
  .p-mediaTop-backnumber__title {
    margin: 0 0 1.4rem;
  }
  .p-mediaTop-backnumber__coverList {
    gap: 0.3rem 0.3rem;
  }
  .p-mediaTop-backnumber__coverList li {
    width: calc((100% - 0.9rem) / 4);
  }
}

.p-media-file {
  position: relative;
  width: 100%;
  aspect-ratio: 1246/550;
}
.p-media-file__bg {
  width: 100%;
  height: 100%;
}
.p-media-file__bg img {
  width: 100%;
  height: 100%;
}
.p-media-file__link {
  position: absolute;
  bottom: 2.1rem;
  right: 2.1rem;
  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;
  width: 3.3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0.5rem 0.5rem 1.9rem 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0.5rem 0.5rem 1.9rem 0 rgba(0, 0, 0, 0.04);
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-media-file__link img {
  width: 50%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-media-file__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-media-file {
    aspect-ratio: 1/1;
    margin: 0 0 2.1rem;
  }
  .p-media-file__link {
    bottom: 1.4rem;
    right: 1.4rem;
    width: 3.6rem;
  }
}

/* ================================
Company
================================ */
.p-company-info {
  margin: 0 0 8.6rem;
}
@media screen and (max-width: 768px) {
  .p-company-info {
    margin: 0 0 3.6rem;
  }
}

.p-company-outline {
  margin: 5.7rem 0 6.7rem;
}
.p-company-outline__table-wrap {
  margin: 3.6rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-outline {
    position: relative;
    padding: 0 0 2.9rem;
    margin: 3.6rem 0 2.9rem;
  }
  .p-company-outline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: calc(100% - 2rem);
    height: 1px;
    background-color: #DADADA;
  }
  .p-company-outline__table-wrap {
    margin: 1.4rem 0 0;
  }
}

.p-company-partner {
  margin: 0 0 6.7rem;
}
@media screen and (max-width: 768px) {
  .p-company-partner {
    position: relative;
    padding: 0 0 2.9rem;
    margin: 0 0 2.9rem;
  }
  .p-company-partner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: calc(100% - 2rem);
    height: 1px;
    background-color: #DADADA;
  }
}

.p-company-history {
  position: relative;
  padding: 0 0 3.6rem;
  margin: 0 0 3.6rem;
}
.p-company-history__table-wrap {
  margin: 2.9rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-history {
    margin: 0;
  }
  .p-company-history::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: calc(100% - 2rem);
    height: 1px;
    background-color: #DADADA;
  }
  .p-company-history__table-wrap {
    margin: 1.4rem 0 0;
  }
}

.p-company-access__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.1rem 2.9rem;
  margin: 5.7rem 0 2.9rem;
}
.p-company-access__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
}
.p-company-access__title01 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.p-company-access__title01:last-of-type {
  margin-top: 2em;
}
.p-company-access__map {
  position: relative;
  width: 40%;
  aspect-ratio: 590/327;
}
.p-company-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-company-access__title02 {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 1rem;
}
.p-company-access__btn {
  font-size: 0.9rem;
}
@media screen and (max-width: 1200px) {
  .p-company-access__body {
    gap: 2.1rem 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-company-access__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-company-access__map {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-company-access__body {
    margin: 2.9rem 0;
  }
  .p-company-access__content {
    font-size: 1.1rem;
  }
  .p-company-access__title01 {
    font-weight: 600;
    margin: 0 0 0.4rem;
  }
  .p-company-access__title01:last-of-type {
    margin-top: 1em;
  }
  .p-company-access__title02 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.4rem;
  }
  .p-company-access__btn {
    width: 100%;
    font-size: 1rem;
  }
}

/* ================================
Newsletter
================================ */
.p-newsletter__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9rem 1.7rem;
  margin: 3.8rem 0 0;
}
.p-newsletter__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #DADADA;
  -webkit-box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
          box-shadow: 0.5rem 0.5rem 1.4rem rgba(0, 0, 0, 0.04);
  padding: 4.5rem 2.1rem;
}
.p-newsletter__title {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  margin: 0 0 1.9rem;
}
.p-newsletter__btn {
  min-width: 11.9rem;
}
@media screen and (max-width: 1200px) {
  .p-newsletter__body {
    gap: 2.9rem 1.4rem;
  }
  .p-newsletter__item {
    padding: 2.9rem 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-newsletter__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-newsletter__item {
    width: 100%;
  }
  .p-newsletter__title {
    font-size: 1.1rem;
  }
  .p-newsletter__btn {
    min-width: 16.7rem;
  }
}

/* ================================
Contact
================================ */
.p-contact-header {
  margin: 0 0 6.2rem;
}
.p-contact-header__desc {
  max-width: 41.4rem;
}
@media screen and (max-width: 768px) {
  .p-contact-header {
    margin: 0 0 4.3rem;
  }
}

/* adjustment */
.u-fit--contain {
  text-align: center;
}
.u-fit--contain img,
.u-fit--contain source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.u-color--gd {
  color: #BB8600;
}
.u-color--primary {
  color: #A51D22;
}
.u-color--wh {
  color: #fff;
}

.u-align--center {
  text-align: center;
}
.u-align--right {
  text-align: right;
}
.u-align--left {
  text-align: left;
}

.u-lh--12 {
  line-height: 1.2;
}

.u-indent--01 {
  text-indent: -1em;
  padding-left: 1em;
}

.u-display_ib {
  display: inline-block;
}
.u-display_ib--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_ib--sm {
    display: inline-block;
  }
}

.u-display--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display--lg {
    display: block;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}

.u-display_flex--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display_flex--lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display_flex--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_flex--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1600px) {
  .u-hidden--xl {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .u-hidden--lg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}