@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  margin: 0;
}

input, textarea {
  border: 0;
}

button {
  background-color: transparent;
  border: 0;
}

:root {
  --fv-blur-radius: 3px;
}
@media screen and (max-width: 768px) {
  :root {
    --fv-blur-radius: 1.7px;
  }
}

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

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: #f1f1f1;
}
html.is-hidden {
  overflow: clip;
}

body {
  color: #333333;
}

input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

a {
  color: #333333;
  transition: all 0.3s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: normal;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.l-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(32, 38, 50, 0.75);
  backdrop-filter: blur(var(--fv-blur-radius, 2px));
}

.l-header__inner {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-left: 16px;
    padding-right: 16px;
    gap: 32px;
  }
}

.l-header__title {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.l-header__logo {
  flex-shrink: 0;
  width: 47px;
}

.l-header__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.l-header__text__en {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (max-width: 1600px) {
  .l-header__text__en {
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .l-header__text__en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.l-header__text__jp {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (max-width: 1600px) {
  .l-header__text__jp {
    display: none;
  }
}

.l-header__nav {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.l-header__sp {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
@media screen and (max-width: 1380px) {
  .l-header__sp {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(32, 38, 50, 0.75);
    backdrop-filter: blur(var(--fv-blur-radius, 2px));
    position: fixed;
    z-index: 1;
    top: 76px;
    right: 0;
    max-width: 100%;
    max-height: calc(100dvh - 76px);
    timeline-scope: --header-menu;
  }
  .l-header__sp .l-header__submenu__item {
    backdrop-filter: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header__sp {
    display: flex;
    width: 100%;
    left: 100%;
    right: auto;
    transition: left 0.2s ease-out;
  }
}
@media screen and (max-width: 1380px) {
  .l-header__sp.is-active {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .l-header__sp.is-active {
    left: 0;
  }
}

.l-header__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-self: stretch;
}
@media screen and (max-width: 1380px) {
  .l-header__menu {
    flex-shrink: 1;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    overflow-y: auto;
    scroll-timeline-name: --header-menu;
    scroll-timeline-axis: block;
  }
}

.l-header__menu-scroll {
  display: none;
}
@media screen and (max-width: 1380px) {
  .l-header__menu-scroll {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
    height: 0;
    opacity: 0;
    pointer-events: none;
    animation: l-header-menu-scroll-hint 1ms linear both;
    animation-timeline: --header-menu;
  }
  .l-header__menu-scroll::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: 16px auto 14px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    animation: l-header-menu-scroll-chevron 1ms linear both;
    animation-timeline: --header-menu;
  }
}

@keyframes l-header-menu-scroll-hint {
  from, to {
    height: 36px;
    opacity: 1;
  }
}
@keyframes l-header-menu-scroll-chevron {
  0%, 85% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(225deg);
  }
}
.l-header__menu__item {
  --_menu-item-height-sp: 56px;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 1380px) {
  .l-header__menu__item {
    flex-basis: auto;
    flex-direction: column;
    align-items: stretch;
    white-space: normal;
    border-top: 1px solid #cccccc;
  }
  .l-header__menu__item:first-child {
    border-top: none;
  }
}
.l-header__menu__item > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 1380px) {
  .l-header__menu__item > a {
    height: var(--_menu-item-height-sp);
    padding: 8px 32px;
  }
}

.l-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-left: -32px;
  width: max-content;
  z-index: 1;
}
@media screen and (max-width: 1380px) {
  .l-header__submenu {
    --_menu-item-height-sp: 44px;
    position: static;
    width: auto;
    margin-left: 32px;
    margin-bottom: 16px;
  }
}

.l-header__submenu__item {
  height: 0;
  overflow: hidden;
  background-color: rgba(32, 38, 50, 0.75);
  backdrop-filter: blur(var(--fv-blur-radius, 2px));
  transition: height 0.2s ease;
}
.l-header__submenu__item:not(:last-child) {
  box-shadow: inset 0 -1px 0 #50535c;
}
.l-header__menu__item:hover .l-header__submenu__item, .l-header__menu__item:focus-within .l-header__submenu__item {
  height: 6.4em;
}
.l-header__submenu__item:hover {
  background-color: #50535c;
}
.l-header__submenu__item a {
  display: flex;
  align-items: center;
  height: 4em;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
  word-break: auto-phrase;
}
@media screen and (max-width: 1380px) {
  .l-header__submenu__item {
    height: auto;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
    transition: none;
  }
  .l-header__submenu__item:not(:last-child) {
    margin-bottom: 1em;
    box-shadow: none;
  }
  .l-header__menu__item:hover .l-header__submenu__item, .l-header__menu__item:focus-within .l-header__submenu__item {
    height: auto;
  }
  .l-header__submenu__item:hover {
    background-color: transparent;
  }
  .l-header__submenu__item a {
    height: var(--_menu-item-height-sp);
    padding: 8px 32px;
    white-space: normal;
    justify-content: flex-start;
  }
}

.l-header__cta {
  width: 206px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #96773E;
  background: linear-gradient(60deg, rgb(150, 119, 62) 0%, rgb(179, 148, 83) 100%);
}
.l-header__cta span {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 1380px) {
  .l-header__cta {
    flex-shrink: 0;
    margin: 32px;
    width: auto;
  }
}

.l-header__btn {
  width: 76px;
  height: 76px;
  margin: 0;
  color: #ffffff;
  background: #000000;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 1380px) {
  .l-header__btn {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .l-header__btn {
    margin-right: -16px;
  }
}

.l-header__btn__text {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.l-header__btn__line {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  position: relative;
  width: 28px;
}
.l-header__btn__line::before, .l-header__btn__line::after, .l-header__btn__line span {
  content: "";
  display: block;
  height: 2px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.l-header__btn__line::before, .l-header__btn__line::after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.is-opened .l-header__btn__line::before {
  transform: translateY(-50%) rotate(45deg) scaleX(1.414);
}
.is-opened .l-header__btn__line::after {
  transform: translateY(-50%) rotate(-45deg) scaleX(1.414);
}
.is-opened .l-header__btn__line span {
  opacity: 0;
}

.l-footer-top {
  padding-top: 80px;
  padding-bottom: 60px;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .l-footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-footer-mid {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #cccccc;
}

.l-footer-btm {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #cccccc;
}

.l-footer__inner {
  width: 1180px;
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 0 16px;
  }
}

.l-footer__menu {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1fr;
  gap: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .l-footer__menu {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.l-footer__menu__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .l-footer__menu__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__menu__item {
    width: 100%;
  }
}

.l-footer__menu__link {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.31;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #987a3e;
}

.l-footer__menu-sub__item {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.08em;
  word-break: auto-phrase;
}
.l-footer__menu-sub__item::before {
  content: "・";
}

.l-footer__document {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 20px 0;
}
@media screen and (max-width: 1024px) {
  .l-footer__document {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__document {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .l-footer__document__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__document__item {
    width: 100%;
  }
  .l-footer__document__item .c-text {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.l-footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__info {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__company .c-text {
    font-size: 12.5px;
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}

.l-footer__iso {
  width: 146px;
}

.l-footer__floating-contact {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-footer__floating-contact {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 98;
    transform: translateY(100%);
    transition: transform 0.45s ease;
    pointer-events: none;
  }
  .l-footer__floating-contact.is-visible {
    transform: translateY(0);
    transition-duration: 0.8s;
    pointer-events: auto;
  }
  .l-footer__floating-contact .c-button {
    width: 100%;
    border-radius: 0;
    background: linear-gradient(145deg, rgb(206, 170, 96) 30%, rgb(152, 122, 62) 60%, rgb(152, 122, 62) 80%, rgb(206, 170, 96) 100%);
    box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.2);
  }
}

.l-footer__copyright {
  padding: 8px;
  background-color: #1f2531;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__copyright .c-text {
  word-break: auto-phrase;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright .c-text {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.c-text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.c-text--medium {
  font-weight: 500;
}

.c-text--center {
  text-align: center;
}

.c-text--white {
  color: #ffffff;
}

.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.c-title__en {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-style: italic;
  color: #987a3e;
}
@media screen and (max-width: 768px) {
  .c-title__en {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-title__jp {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-title__jp {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
.c-title--white .c-title__jp {
  color: #ffffff;
}

.c-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.c-label__en {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #987a3e;
}
.c-label--dark .c-label__en {
  color: #1f2630;
}

.c-label__num {
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-size: 7rem;
  letter-spacing: 0.1em;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(305deg, rgb(152, 122, 62) 0%, rgb(206, 170, 96) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 0 #ffffff);
}
@media screen and (max-width: 768px) {
  .c-label__num {
    font-size: 50px;
    font-size: 5rem;
  }
}
.c-label--small .c-label__num {
  font-size: 50px;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .c-label--small .c-label__num {
    font-size: 40px;
    font-size: 4rem;
  }
}
.c-label--dark .c-label__num {
  background: linear-gradient(320deg, rgb(32, 39, 49) 0%, rgb(32, 39, 49) 25%, rgb(134, 134, 134) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .c-list {
    flex-direction: column;
  }
}

.c-list__item {
  width: 33.3333333333%;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 1024px) {
  .c-list__item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .c-list__item {
    width: 100%;
  }
}
.c-list__item a {
  height: 92px;
  padding-left: 30px;
  padding-right: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
}

.c-list__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.625;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-list__text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-list__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.c-list__icon--download {
  width: 20px;
  height: 17px;
  background-image: url(/src/images/cmn/icon_download.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-list__icon--arrow {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  color: #987a3e;
  -webkit-mask-image: linear-gradient(to left, #000 60%, transparent 60%);
  mask-image: linear-gradient(to left, #000 60%, transparent 60%);
}

.c-hover-border {
  --c-hover-border-color: #987a3e;
  position: relative;
  anchor-scope: all;
}
@supports (anchor-name: --c-hover-border-1) and (width: anchor-size(width)) {
  @media (any-hover: hover) {
    .c-hover-border::after {
      --_border-color: transparent;
      content: "";
      background: transparent;
      position: absolute;
      z-index: 2;
      top: calc(anchor(top) - 1px);
      left: calc(anchor(left) - 2px);
      width: anchor-size(width);
      bottom: anchor(bottom);
      box-sizing: content-box;
      border: 1px solid var(--_border-color);
      box-shadow: 0 0 0 1px inset var(--_border-color);
      pointer-events: none;
      transition: top 0.2s, left 0.2s, bottom 0.2s, width 0.2s, --_border-color 0.4s;
    }
    .c-hover-border:has(> :nth-child(1):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-1;
    }
    .c-hover-border > :nth-child(1) {
      anchor-name: --c-hover-border-1;
    }
    .c-hover-border:has(> :nth-child(2):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-2;
    }
    .c-hover-border > :nth-child(2) {
      anchor-name: --c-hover-border-2;
    }
    .c-hover-border:has(> :nth-child(3):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-3;
    }
    .c-hover-border > :nth-child(3) {
      anchor-name: --c-hover-border-3;
    }
    .c-hover-border:has(> :nth-child(4):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-4;
    }
    .c-hover-border > :nth-child(4) {
      anchor-name: --c-hover-border-4;
    }
    .c-hover-border:has(> :nth-child(5):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-5;
    }
    .c-hover-border > :nth-child(5) {
      anchor-name: --c-hover-border-5;
    }
    .c-hover-border:has(> :nth-child(6):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-6;
    }
    .c-hover-border > :nth-child(6) {
      anchor-name: --c-hover-border-6;
    }
    .c-hover-border:has(> :nth-child(7):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-7;
    }
    .c-hover-border > :nth-child(7) {
      anchor-name: --c-hover-border-7;
    }
    .c-hover-border:has(> :nth-child(8):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-8;
    }
    .c-hover-border > :nth-child(8) {
      anchor-name: --c-hover-border-8;
    }
    .c-hover-border:has(> :nth-child(9):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-9;
    }
    .c-hover-border > :nth-child(9) {
      anchor-name: --c-hover-border-9;
    }
    .c-hover-border:has(> :nth-child(10):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-10;
    }
    .c-hover-border > :nth-child(10) {
      anchor-name: --c-hover-border-10;
    }
    .c-hover-border:has(> :nth-child(11):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-11;
    }
    .c-hover-border > :nth-child(11) {
      anchor-name: --c-hover-border-11;
    }
    .c-hover-border:has(> :nth-child(12):hover)::after {
      --_border-color: var(--c-hover-border-color);
      position-anchor: --c-hover-border-12;
    }
    .c-hover-border > :nth-child(12) {
      anchor-name: --c-hover-border-12;
    }
  }
}

.c-badge-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}
.c-badge-shine::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(45deg);
  opacity: 0;
  animation: c-badge-shine-move 5.35s linear infinite, c-badge-shine-glow 5.35s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .c-badge-shine::before {
    animation: none;
    opacity: 0;
  }
}

@keyframes c-badge-shine-move {
  0% {
    left: -50%;
    animation-timing-function: cubic-bezier(0.33, 0, 0.55, 0.85);
  }
  6.5420560748% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes c-badge-shine-glow {
  0% {
    opacity: 0;
  }
  3.2710280374% {
    opacity: 1;
  }
  6.5420560748% {
    opacity: 1;
  }
  6.5430560748%, 100% {
    opacity: 0;
  }
}
.c-button {
  width: 267px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #666666;
  background: linear-gradient(60deg, rgb(102, 102, 102) 0%, rgb(68, 68, 68) 100%);
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  line-height: 1.5;
  gap: 1.5em;
  padding: 8px 72px 8px 16px;
  position: relative;
}
.c-button__text {
  min-width: 0;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
}
.c-button--white .c-button__text {
  color: #000;
}

.c-button__text--en {
  font-family: "Montserrat", sans-serif;
}

.c-button__icon {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  color: #ffffff;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-image: linear-gradient(to left, #000 60%, transparent 60%);
  mask-image: linear-gradient(to left, #000 60%, transparent 60%);
}
.c-button--white .c-button__icon {
  color: #003ba0;
}

.c-button--transparent {
  background: unset;
  border: 1px solid #ffffff;
}

.c-button--white {
  background: #ffffff;
}

.p-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-section__inner {
  width: 1180px;
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-section__inner {
    padding: 0 20px;
  }
}
.p-section--home-service .p-section__inner, .p-section--strengths-reason .p-section__inner {
  width: 1380px;
}

.p-section__head {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.p-section__body {
  position: relative;
}

.p-section--cta {
  padding-top: 90px;
  padding-bottom: 70px;
  background-color: #1f2630;
}

.p-section--home-strengths {
  padding-top: 200px;
  background-color: #1f2630;
  overflow: hidden;
}

.p-section--home-about {
  background: linear-gradient(rgba(0, 0, 0, 0.8)), no-repeat center bottom/cover url(/src/img/home/top-06.jpg);
}

.p-section--home-column {
  background: linear-gradient(rgba(0, 0, 0, 0.72)), no-repeat center top/cover url(/src/img/home/top-07.jpg);
}

.p-section--strengths-intro {
  padding-top: 160px;
  background-color: #1f2630;
  background-image: url(/src/images/strengths/intro_bg_01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.p-section--strengths-intro::before {
  content: "";
  width: 463px;
  height: 619px;
  background-image: url(/src/images/strengths/intro_bg_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.p-section--strengths-archivements {
  background-color: #1f2630;
}

.p-section--strengths-voice {
  background-color: #ece4d9;
}

.p-fv {
  height: 520px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
}
.p-fv__inner {
  width: 1380px;
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    padding: 0 20px;
  }
}

.p-fv__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-fv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(51, 51, 51, 0.5);
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 30px;
    font-size: 3rem;
  }
}

.p-fv__desc {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(51, 51, 51, 0.5);
}

.p-fv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-fv__bg img {
  height: 100%;
  object-fit: cover;
}

.p-breadcrumb {
  position: relative;
  z-index: 1;
  padding: 20px 20px 20px 60px;
}
@media screen and (max-width: 1024px) {
  .p-breadcrumb {
    padding: 16px 16px 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    padding: 16px;
  }
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__list {
    gap: 7px;
  }
}

.p-breadcrumb__item {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__item {
    /*    @include fontsize.setFix(14);  */
    letter-spacing: 0.04em;
  }
}
.p-breadcrumb__item:not(:last-of-type)::after {
  content: ">";
  margin-left: 10px;
}
.p-breadcrumb__item:last-of-type {
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}

.p-cta {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-cta {
    flex-direction: column;
  }
}

.p-cta__img {
  width: 178px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-cta__img {
    width: 150px;
  }
}

.p-cta__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-cta__lead {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
}

.p-cta__list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-cta__list {
    flex-direction: column;
  }
}

.p-cta__item {
  flex: 1 1 0;
}
.p-cta__item a {
  height: 120px;
  display: flex;
  background-color: #37383d;
  border: 1px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.p-cta__icon {
  width: 64px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-cta__item--tel .p-cta__icon img {
  width: 26px;
}
.p-cta__item--mail .p-cta__icon img {
  width: 29px;
}

.p-cta__text {
  color: #ffffff;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-cta__text {
    padding-left: 20px;
  }
}

.p-cta__time {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-cta__time {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-cta__num {
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-cta__num {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.p-cta__desc {
  font-size: 23px;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-banner {
  width: 206px;
  position: fixed;
  top: 82px;
  right: 0;
  z-index: 40;
}
@media screen and (max-width: 1380px) {
  .p-banner {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-banner {
    display: none;
  }
}

.p-banner__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-banner__item a {
  display: block;
  padding: 20px 0 20px 20px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #50535c;
}
@media screen and (max-width: 768px) {
  .p-banner__item a {
    padding: 12px 16px;
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 768px) {
  .p-banner__item:nth-child(n+2) {
    display: none;
  }
}

.p-banner__item--01 a {
  background-color: #ece4d9;
}

.p-banner__item--02 a {
  color: #ffffff;
  background-color: #37383c;
}

.p-banner__item--03 a {
  color: #ffffff;
  background-color: #50535c;
}

.p-banner__item--04 a {
  color: #ffffff;
  background-color: #282b32;
}

.p-banner__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-banner__text {
    gap: 4px;
  }
  .p-banner__text br {
    display: none;
  }
}

.p-banner__title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-banner__desc {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.p-banner__icon {
  position: absolute;
}
.p-banner__item--02 .p-banner__icon {
  width: 27px;
  top: 45px;
  right: 18px;
}
.p-banner__item--03 .p-banner__icon {
  width: 45px;
  top: 30px;
  right: 18px;
}
.p-banner__item--04 .p-banner__icon {
  width: 30px;
  right: 5px;
  bottom: 20px;
}

.p-banner__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-banner__bg {
    display: flex;
    justify-content: flex-end;
  }
}
.p-banner__bg img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-banner__bg img {
    width: 60%;
  }
}

.p-section.p-section--flow {
  padding-top: 80px;
  padding-bottom: 0;
  background-color: #ffffff;
}

.p-flow {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-flow__item {
  padding: 60px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    flex-direction: column;
    align-items: unset;
    padding-top: 0;
    gap: 32px;
  }
}

.p-flow__label {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-flow__label {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__label {
    width: unset;
    justify-content: flex-start;
  }
  .p-flow__label .c-label {
    flex-direction: row;
    background: #ffffff;
    margin-top: -2.6rem;
    padding-right: 1rem;
  }
}

.p-flow__text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.p-flow__title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-flow__title__label {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 12px;
  background-color: #333333;
  flex-shrink: 0;
}

.p-flow__title__jp {
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  .p-section--strengths-intro {
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-section--strengths-intro::before {
    width: calc(100% - 200px);
    height: auto;
    aspect-ratio: 2/3;
    background-image: url(/src/images/strengths/intro_bg_02_sp.png);
    background-size: cover;
    top: 500px;
    left: 0;
    right: auto;
    transform: translateY(-50%);
  }
}

.p-strengths__head {
  height: 187px;
  background-color: #987a3e;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-strengths__head {
    height: unset;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }
}

.p-strengths__head__en {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 500;
  color: #ffffff;
  font-style: italic;
  letter-spacing: 0.1em;
  width: 230px;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strengths__head__en {
    width: 100%;
    padding-bottom: 20px;
  }
}
.p-strengths__head__en::after {
  content: "";
  width: 1px;
  height: 142px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-strengths__head__en::after {
    width: 100%;
    height: 1px;
    top: unset;
    right: unset;
    bottom: 0;
    left: 0;
  }
}

.p-strengths__head__jp {
  padding-left: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-strengths__head__jp {
    padding-left: 0;
  }
}
.p-strengths__head__jp span {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-strengths__head__jp span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-strengths__head__jp p {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-strengths__head__jp p {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-strengths__body {
  padding: 80px 100px;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .p-strengths__body {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-strengths__body {
    padding: 80px 20px;
  }
}

.p-strengths__title {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #987a3e;
}

.p-strengths-breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
}
.p-strengths-breadcrumb * {
  color: #ffffff;
}

.p-strengths-intro {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 1024px) {
  .p-strengths-intro {
    gap: 320px;
  }
}
@media screen and (max-width: 768px) {
  .p-strengths-intro {
    gap: 240px;
  }
}

.p-strengths-intro__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-strengths-intro__badge {
  width: 285px;
  position: absolute;
  top: -50px;
  right: 130px;
}
@media screen and (max-width: 1024px) {
  .p-strengths-intro__badge {
    top: 100%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__badge {
    width: 200px;
    top: 100%;
    right: 0px;
  }
}

.p-strengths-intro__title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  word-break: auto-phrase;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.p-strengths-intro__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__list {
    flex-direction: column;
    gap: 40px;
  }
}
.p-strengths-intro__list::after {
  content: "";
  width: 42px;
  height: 217px;
  background-image: url(/src/images/strengths/intro_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__list::after {
    display: none;
  }
}

.p-strengths-intro__item {
  width: calc((100% - 40px) / 2);
  padding: 80px 50px 50px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__item {
    width: 100%;
  }
}
.p-strengths-intro__item dt {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(2px 2px 0 rgba(31, 31, 31, 0.7));
}
.p-strengths-intro__item dt p {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 1px 0 #ffffff;
  width: 420px;
  padding: 10px;
  background-color: #fff;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}
@media screen and (max-width: 1024px) {
  .p-strengths-intro__item dt p {
    font-size: 24px;
    font-size: 2.4rem;
    width: 290px;
  }
}
.p-strengths-intro__item::before {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 8px;
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: -1;
}
.p-strengths-intro__item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #1F2630;
  background: linear-gradient(320deg, rgb(31, 38, 48) 0%, rgb(63, 67, 76) 100%);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-strengths-intro__item--01 dt p {
  background: #987A3E;
  background: linear-gradient(320deg, rgb(152, 122, 62) 0%, rgb(206, 170, 96) 64%, rgb(246, 216, 156) 100%);
}
.p-strengths-intro__item--01::before {
  background: #987A3E;
  background: linear-gradient(60deg, rgb(152, 122, 62) 0%, rgb(255, 219, 143) 43%, rgb(255, 255, 255) 47%, rgb(255, 219, 143) 70%, rgb(152, 122, 62) 100%);
}

.p-strengths-intro__item--02 dt p {
  background: #8A8A8A;
  background: linear-gradient(320deg, rgb(138, 138, 138) 0%, rgb(189, 188, 185) 64%, rgb(227, 226, 225) 100%);
}
.p-strengths-intro__item--02::before {
  background: #987A3E;
  background: linear-gradient(60deg, rgb(139, 139, 139) 0%, rgb(221, 221, 221) 43%, rgb(255, 255, 255) 47%, rgb(220, 220, 220) 70%, rgb(143, 143, 143) 100%);
}

.p-strengths-intro__item--03 {
  width: unset;
  width: 476px;
  height: auto;
  aspect-ratio: 476/352;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__item--03 {
    width: 100%;
    margin-top: 0;
  }
}
.p-strengths-intro__item--03 dt {
  position: static;
  transform: unset;
}
.p-strengths-intro__item--03 dt p {
  font-size: 34px;
  font-size: 3.4rem;
  color: #987a3e;
  width: 360px;
}
@media screen and (max-width: 1024px) {
  .p-strengths-intro__item--03 dt p {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.p-strengths-intro__item--03 dd {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__item--03 dd {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-strengths-intro__item--03::before {
  background: #e7c379;
  background: linear-gradient(320deg, rgb(152, 122, 62) 0%, rgb(206, 170, 96) 64%, rgb(246, 216, 156) 100%);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__item--03::before {
    width: 100%;
    min-width: 476px;
    height: auto;
    aspect-ratio: 476/352;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-strengths-intro__item--03::after {
  background: unset;
  background-image: url(/src/images/strengths/intro_bg_03.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .p-strengths-intro__item--03::after {
    width: 100%;
    min-width: 476px;
    height: auto;
    aspect-ratio: 476/352;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-strengths-factoring {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.p-strengths-factoring__button {
  display: flex;
  justify-content: center;
}

.p-strengths-factoring__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-strengths-factoring__list {
    flex-direction: column;
  }
}

.p-strengths-factoring__item {
  width: calc((100% - 30px) / 2);
  padding: 50px;
  border: 1px solid #cccccc;
}
@media screen and (max-width: 1024px) {
  .p-strengths-factoring__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-strengths-factoring__item {
    width: 100%;
    padding: 50px 30px;
  }
}

.p-strengths-factoring__heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.p-strengths-archivements {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-strengths-archivements__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.p-strengths-archivements__item {
  padding: 50px 60px;
  background-color: #ffffff;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-strengths-archivements__item {
    padding: 50px 30px;
  }
}

.p-strengths-archivements__heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.p-strengths-archivements__title {
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #987a3e;
}

.p-strengths-archivements__title__jp {
  font-size: 25px;
  font-size: 2.5rem;
}

.p-strengths-archivements__title__num {
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-size: 7rem;
  font-style: italic;
  font-weight: 700;
}

.p-strengths-archivements__title__yen {
  font-size: 35px;
  font-size: 3.5rem;
}

.p-strengths-archivements__title__border {
  padding-left: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

.p-strengths-reason__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-strengths-reason__list {
    flex-direction: column;
  }
}

.p-strengths-reason__item {
  width: calc((100% - 30px) / 2);
  padding: 40px 50px 50px;
  border: 1px solid #cccccc;
}
@media screen and (max-width: 1024px) {
  .p-strengths-reason__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-strengths-reason__item {
    width: 100%;
    padding: 40px 30px 50px;
  }
}

.p-strengths-reason__item--01 {
  width: 100%;
}

.p-strengths-reason__heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.p-strengths-reason__icon {
  width: 70px;
}

.p-strengths-voice {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-strengths-voice__list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .p-strengths-voice__list {
    flex-direction: column;
  }
}

.p-strengths-voice__item {
  width: 50%;
  padding: 50px;
  background-color: #ffffff;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 1024px) {
  .p-strengths-voice__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-strengths-voice__item {
    width: 100%;
    padding: 50px 30px;
  }
}

.p-strengths-voice__heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .u-hide-pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-hide-mobile {
    display: none;
  }
}

.u-scroll-prevent {
  overflow: hidden;
  scrollbar-gutter: stable;
}
/*# sourceMappingURL=common.css.map */
