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

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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* ===============================================
# メディアクエリー
=============================================== */
/* ===============================================
# line-heightの余白削除
=============================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}
@media screen and (max-width: 1389px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 392 * 100vw);
  }
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
  padding-top: 6.5625rem;
  line-break: strict;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 3.75rem;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

[lang=ja] {
  font-family: "Noto Sans JP", sans-serif;
}

[lang=en] {
  font-family: "Inter", sans-serif;
}

img {
  display: block;
}

a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1390px;
  height: inherit;
  padding: 0 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding: 0 1.375rem;
  }
}

.l-inner__narrow {
  max-width: 81.25rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .l-inner__narrow-sp {
    padding: 0 1rem;
  }
}

.l-inner__out {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 1440px;
}
@media screen and (max-width: 767px) {
  .l-inner__out {
    margin: 0 auto;
    width: 100%;
  }
}

.l-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 1.75rem;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  display: grid;
  grid-template-columns: 12.625rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 6.5625rem;
  max-width: 1440px;
  margin-inline: auto;
  gap: 12.125rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    min-height: 3.75rem;
    grid-template-columns: 7.6875rem 1fr;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.l-header__list li a {
  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;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  position: relative;
}
.l-header__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: #000;
  scale: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .l-header__list li a:hover::after {
    scale: 1;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.l-header__list li a span:nth-child(2) {
  font-family: "Afacad", sans-serif;
}

.l-header__btn {
  -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s;
  transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
/* ===============================================
# ドロワーアイコン
=============================================== */
.l-drawer__icon {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-drawer__icon {
    position: fixed;
    z-index: 102;
    top: 0.75rem;
    right: 1.25rem;
    width: 1.5rem;
    height: 1rem;
    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;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media (any-hover: hover) {
  .l-drawer__icon:hover {
    opacity: 0.7;
  }
}

.l-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: red;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.46875rem;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.46875rem;
}

/* ===============================================
# ドロワー
=============================================== */
/* ===============================================
# ドロワーアイコン
=============================================== */
.l-drawer__icon {
  display: none;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-drawer__icon {
    position: fixed;
    z-index: 102;
    top: 1.25rem;
    right: 1.25rem;
    width: 1.5rem;
    height: 1rem;
    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;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media (any-hover: hover) {
  .l-drawer__icon:hover {
    opacity: 0.7;
  }
}
.l-drawer__icon::after {
  content: "MENU";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  font-size: max(0.4375rem, 5.6px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1428571429em;
  white-space: nowrap;
  color: #000;
  text-align: center;
}

.l-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #000;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.46875rem;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.46875rem;
}

/* ===============================================
# ドロワー
=============================================== */
.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 17.375rem;
  height: 100vh;
  height: 100svh;
  overflow-y: scroll;
  background: #fff;
}

.l-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 5.5rem 2.5rem;
  padding-left: 2.125rem;
}

.l-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  margin-bottom: 2.5rem;
}
.l-drawer__list li a {
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}

.l-drawer__list li a span:nth-of-type(2) {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
}

.l-drawer__btn {
  padding-right: 2.125rem;
}

.l-drawer__btn a {
  display: inline-block;
  padding: 0.75rem;
  background: #3B9240;
  text-align: center;
}

.l-drawer__btn a span {
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}

.l-drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__bg {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}

.l-drawer__bg.js-show {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

.l-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.l-footer__inner {
  padding: 1.0625rem 1.875rem 1.4375rem 1.75rem;
  max-width: 1440px;
  margin-inline: auto;
}

.l-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Afacad", sans-serif;
}

.l-footer__left__logo {
  width: 12.6875rem;
}

.l-footer__left__company {
  margin-top: 0.625rem;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}

.l-footer__left__address {
  margin-top: 0.9375rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .l-footer__left__address {
    margin-top: 1.375rem;
    font-size: max(0.75rem, 9.6px);
    font-weight: 400;
    line-height: 1.6666666667;
    letter-spacing: 0.14em;
  }
}

.l-footer__right {
  margin-top: 0.6875rem;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .l-footer__right {
    margin-top: 1.5rem;
  }
}

.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    display: none;
  }
}

.l-footer__list li a {
  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;
  row-gap: 0.5rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  font-family: "Afacad", sans-serif;
  position: relative;
}
.l-footer__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: #000;
  scale: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .l-footer__list li a:hover::after {
    scale: 1;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.l-footer__copy {
  font-family: "Afacad", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: max(0.75rem, 9.6px);
    font-weight: 400;
    line-height: 1.1666666667;
    letter-spacing: 0.14em;
  }
}
.l-footer__copy a {
  border-bottom: 1px solid #000;
}

.l-sectionWorks {
  padding-top: 2.125rem;
  padding-bottom: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .l-sectionWorks {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.l-sectionWorks__body {
  margin-top: 7.8125rem;
  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;
}
@media screen and (max-width: 767px) {
  .l-sectionWorks__body {
    margin-top: 1.375rem;
  }
}

.l-sectionWorks__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .l-sectionWorks__items {
    grid-template-columns: 1fr;
    gap: 2.9375rem;
  }
}

.l-sectionWorks__item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-sectionWorks__item {
    text-align: center;
  }
}

.l-sectionWorks__item__title {
  font-family: "Afacad", sans-serif;
  font-size: max(3rem, 38.4px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .l-sectionWorks__item__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.08em;
  }
}

.l-sectionWorks__item__img {
  height: 21.375rem;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .l-sectionWorks__item__img {
    height: 11.8125rem;
  }
}
.l-sectionWorks__item__img img {
  border-radius: 1.5rem;
}
@media (any-hover: hover) {
  .l-sectionWorks__item__img:hover {
    opacity: 0.7;
  }
}

.l-sectionPerson {
  padding-top: 3.25rem;
  border-radius: 0.125rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .l-sectionPerson {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .l-sectionPerson__inner {
    padding-inline: 1rem;
  }
}

.l-sectionPerson__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-sectionPerson__title {
    row-gap: 0.25rem;
  }
}

.l-sectionPerson__body {
  margin-top: 5.3125rem;
  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;
}
@media screen and (max-width: 767px) {
  .l-sectionPerson__body {
    margin-top: 1.5rem;
  }
}

.l-sectionPerson__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .l-sectionPerson__items {
    grid-template-columns: 1fr;
  }
}

.l-sectionPerson__item {
  padding-top: 25.3125rem;
  background: url(./../img/sectionPerson_item1.png) no-repeat center center/cover;
  text-align: center;
  height: 35.9375rem;
  color: #FFF;
  position: relative;
}

.l-sectionPerson__item:nth-child(1) {
  background: url(./../img/DSC_1081.jpg) no-repeat center center/cover;
}

.l-sectionPerson__item:nth-child(2) {
  background: url(./../img/DSC_1189_20250921.jpg) no-repeat center center/cover;
}

.l-sectionPerson__item:nth-child(3) {
  background: url(./../img/DSC_1009.jpg) no-repeat center center/cover;
}

.l-sectionPerson__item:nth-child(4) {
  background: url(./../img/DSC_1310.jpg) no-repeat center center/cover;
}

.l-sectionPerson__item__title {
  font-family: "Afacad", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.l-sectionPerson__item__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}

.l-sectionPerson__item__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-cta {
    margin-top: 4rem;
  }
}

.l-cta picture {
  width: 100%;
  height: auto;
}

.l-2col {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-2col {
    border-top: none;
    border-bottom: none;
  }
}

.l-2col__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .l-2col__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.l-2col__item {
  padding: 2.4375rem 3.4375rem 4.3125rem;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .l-2col__item {
    padding: 1.25rem 1.25rem 1.875rem;
    border: none;
  }
}
@media (any-hover: hover) {
  .l-2col__item:hover {
    opacity: 0.7;
  }
}
.l-2col__item:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-2col__item:not(:first-child) {
    border-left: none;
  }
}

.l-2col__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.625rem;
}
@media screen and (max-width: 767px) {
  .l-2col__item__title {
    -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;
  }
}

.l-2col__item__title__sub {
  font-family: "Afacad", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .l-2col__item__title__sub {
    font-size: max(0.875rem, 11.2px);
    font-weight: 700;
    line-height: 1.7142857143;
    letter-spacing: 0.08em;
  }
}

.l-2col__item__img {
  margin-top: 3.25rem;
  width: 34.9375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-2col__item__img {
    margin-top: 0.5rem;
    width: 100%;
  }
}

.l-2col__item__img img {
  border-radius: 1.5rem;
}

.l-fv {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
  height: 48.125rem;
}
@media screen and (max-width: 767px) {
  .l-fv {
    height: 33.875rem;
  }
}

.l-fv img {
  scale: 1.5;
}

.l-fv__title {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 0;
  left: 50%;
  translate: -50%;
  color: #FFF;
  font-family: "Afacad", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.6015625;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-fv__title {
    font-size: max(4rem, 51.2px);
    font-weight: 700;
    line-height: 0.75;
    letter-spacing: 0.08em;
  }
}

.l-fv.l-fv--single {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-fv.l-fv--single {
    height: 13.5625rem;
  }
}
.l-fv.l-fv--single img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .l-fv.l-fv--single .l-fv__title {
    display: none;
  }
}

.l-office {
  padding-bottom: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .l-office {
    padding-bottom: 1.875rem;
  }
}

.l-office__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  font-family: "Afacad", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-office__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
}

.l-office__wrapper {
  margin-top: 1.6875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6875rem 2.5625rem;
}
@media screen and (max-width: 767px) {
  .l-office__wrapper {
    margin-top: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem 1.0625rem;
  }
}

.l-office__img img {
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-office__img img {
    border-radius: 0.75rem;
  }
}

.l-service {
  padding-top: 2.3125rem;
  padding-bottom: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .l-service {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.l-service--black {
  background-color: #000;
}

.l-service__body {
  margin-top: 6.8125rem;
  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;
}
@media screen and (max-width: 767px) {
  .l-service__body {
    margin-top: 1.5rem;
  }
}

.l-service__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .l-service__items {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .l-service__items.l-inner__out {
    margin: 0 auto;
    width: 100%;
  }
}

.l-service__item {
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: url(./../img/top/topService_item_bg1.png) no-repeat center center/cover;
  text-align: center;
  height: 35.9375rem;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .l-service__item {
    background: url(./../img/top/topService_item_bg1_sp.png) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .l-service__item {
    padding-top: 1.3125rem;
    height: 24.125rem;
  }
}
@media (any-hover: hover) {
  .l-service__item:hover {
    opacity: 0.7 !important;
  }
}

.l-service__item:not(:first-child) {
  pointer-events: none;
}

.l-service__item:nth-child(1) {
  background: url(./../img/top/topService_item_bg1.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-service__item:nth-child(1) {
    background: url(./../img/top/topService_item_bg1_sp.png) no-repeat center center/cover;
  }
}

.l-service__item:nth-child(2) {
  background: url(./../img/top/topService_item_bg2.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-service__item:nth-child(2) {
    background: url(./../img/top/topService_item_bg2_sp.png) no-repeat center center/cover;
  }
}

.l-service__item:nth-child(3) {
  background: url(./../img/top/topService_item_bg3.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-service__item:nth-child(3) {
    background: url(./../img/top/topService_item_bg3_sp.png) no-repeat center center/cover;
  }
}

.l-service__item:nth-child(4) {
  background: url(./../img/top/topService_item_bg4.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-service__item:nth-child(4) {
    background: url(./../img/top/topService_item_bg4_sp.png) no-repeat center center/cover;
  }
}

.l-service__item__title {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  font-family: "Afacad", sans-serif;
}

.l-service__item__text {
  margin-top: 0.5rem;
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: left;
}

/* ===============================================
# black
=============================================== */
@media screen and (max-width: 767px) {
  .l-service--black .l-service__item {
    padding-top: 2rem;
    height: 35.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .l-service--black .l-service__items {
    gap: 1.875rem;
  }
}

.l-service--black .l-service__item:nth-child(1) {
  background: url(./../img/topService_item_bg1_black.png) no-repeat center center/cover;
}

.l-service--black .l-service__item:nth-child(2) {
  background: url(./../img/topService_item_bg2_black.png) no-repeat center center/cover;
}

.l-service--black .l-service__item:nth-child(3) {
  background: url(./../img/topService_item_bg3_black.png) no-repeat center center/cover;
}

.l-service--black .l-service__item:nth-child(4) {
  background: url(./../img/topService_item_bg4_black.png) no-repeat center center/cover;
}

.l-cardList {
  padding-top: 5rem;
  padding-bottom: 5.75rem;
}
@media screen and (max-width: 767px) {
  .l-cardList {
    padding-top: 1.9375rem;
    padding-bottom: 4.25rem;
  }
}

.l-cardList__items {
  margin-top: 3.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-cardList__items {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.l-cardList__empty {
  grid-column: 1/-1;
}

.l-cardList__item {
  text-align: center;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .l-cardList__item:hover {
    opacity: 0.7;
  }
}

.l-cardList__item__img img {
  aspect-ratio: 416/277;
  border-radius: 1.5rem;
}

.l-cardList__item__title {
  margin-top: 0.5rem;
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Afacad", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.l-cardList__item__text {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
}

.l-cardList__btn {
  margin-top: 3.75rem;
  max-width: 45.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-cardList__btn {
    margin-top: 0.625rem;
  }
}
@media (any-hover: hover) {
  .l-cardList__btn .c-btn:hover {
    cursor: pointer;
  }
}

.l-blog__title {
  font-family: "Afacad", sans-serif;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .l-blog__title {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 2.4;
    letter-spacing: 0.08em;
  }
}

.l-blog__wrapper {
  margin-top: 1.9375rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.l-blog__item__img {
  width: 100%;
  aspect-ratio: 16/9;
}

.l-blog__item__img img {
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-blog__item__title {
  margin-top: 0.5rem;
  font-family: "Afacad", sans-serif;
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.l-blog__btn {
  padding-right: 12px;
  margin-left: auto;
  margin-top: 2.75rem;
  max-width: 144px;
  width: 100%;
  min-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #000;
  border-radius: 100vmax;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  gap: 18px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-blog__btn {
    margin-top: 1rem;
    margin-inline: auto;
  }
}
.l-blog__btn svg {
  translate: 0 1px;
  width: 10px;
  height: 10px;
  -webkit-transition: translate 0.3s ease;
  transition: translate 0.3s ease;
}
.l-blog__btn:hover {
  background-color: #000;
  color: #fff;
}
.l-blog__btn:hover svg {
  translate: 6px 0;
}
.l-blog__btn:hover svg path {
  fill: #fff;
}

/* ===============================================
# swiper
=============================================== */
.l-blog__swiper-container,
.l-blog__swiper,
.l-blog__swiper-wrapper,
.l-blog__swiper-slide {
  position: relative;
}

.l-blog__swiper-slide.swiper-slide a .l-blog__item__img img {
  aspect-ratio: 352/194;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  top: 5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.swiper-button-prev {
  left: -0.8125rem;
  rotate: 180deg;
}

.swiper-button-next {
  right: -0.8125rem;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
}

.c-btn {
  min-width: 20.5rem;
  width: 100%;
  min-height: 4.625rem;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font-size: max(1.5rem, 19.2px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.08em;
  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;
  -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s, border 0.3s ease 0s;
  transition: color 0.3s ease 0s, background 0.3s ease 0s, border 0.3s ease 0s;
}
@media (any-hover: hover) {
  .c-btn:hover {
    border: 1px solid #000;
    color: #000;
    background: #fff;
  }
}

.c-btn--white {
  color: #000;
  background: #fff;
}
@media (any-hover: hover) {
  .c-btn--white:hover {
    color: #fff;
    background: #000;
  }
}

.c-btn--glow {
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
}
.c-btn--glow .glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 7px #fff;
          box-shadow: 0 0 7px #fff;
  opacity: 1;
  pointer-events: none;
}
@media (any-hover: hover) {
  .c-btn--glow:hover {
    border: 1px solid #fff;
    background: #000;
    color: #fff;
  }
  .c-btn--glow:hover .glow-bar {
    -webkit-animation: glow-pulse 1.5s linear infinite;
            animation: glow-pulse 1.5s linear infinite;
  }
}

@-webkit-keyframes glow-pulse {
  0% {
    opacity: 0;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  100% {
    opacity: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

@keyframes glow-pulse {
  0% {
    opacity: 0;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  100% {
    opacity: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.c-title {
  font-family: "Afacad", sans-serif;
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.c-title--small {
  font-size: max(2.25rem, 28.8px);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-title--small {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.c-title--mini {
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-title--mini {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

.c-title--notLimit {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-title--notLimit {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.c-titleSub {
  font-family: "Afacad", sans-serif;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-titleSub {
    font-size: max(0.875rem, 11.2px);
    font-weight: 700;
    line-height: 1.7142857143;
    letter-spacing: 0.08em;
  }
}

.c-titleArrow {
  font-family: "Afacad", sans-serif;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-titleArrow {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.6666666667;
    letter-spacing: 0.08em;
  }
}

.c-titleSub--notLimit {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-titleSub--notLimit {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.7142857143;
    letter-spacing: 0.08em;
  }
}

.c-titleArrow {
  position: relative;
  padding-left: 1.6875rem;
}
.c-titleArrow::before {
  content: "";
  background: url(./../img/arrow-right.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1.125rem;
  height: 1.125rem;
}

.p-topFv {
  padding-top: 9.7916666667vw;
  background: url(./../img/top/fv_bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-topFv {
    padding-top: 0;
    background: none;
  }
}

@media screen and (max-width: 767px) {
  .p-topFv__main {
    padding-top: 6.875rem;
    background: url(./../img/top/fv_bg_sp.png) no-repeat center center/cover;
  }
}

.p-topFv__title {
  margin-left: 49.3055555556vw;
  font-size: 6.9444444444vw;
  line-height: 8.4722222222vw;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-topFv__title {
    margin-left: 1.4375rem;
    font-size: max(2.25rem, 28.8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-topFv__text {
  margin-top: 2.6388888889vw;
  margin-left: 49.7916666667vw;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 3.3333333333vw;
  letter-spacing: 0.2444444444vw;
}
@media screen and (max-width: 767px) {
  .p-topFv__text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.22em;
    margin-top: 0.625rem;
    margin-left: 1.4375rem;
    padding-bottom: 5.25rem;
  }
}

.p-topFv__btns {
  margin-top: 7.1527777778vw;
  margin-left: 43.6805555556vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.5277777778vw;
}
@media screen and (max-width: 767px) {
  .p-topFv__btns {
    display: none;
  }
}

.p-topFv__btn .c-btn {
  width: 22.7777777778vw;
  height: 5.1388888889vw;
  font-size: 1.6666666667vw;
  line-height: 1;
  letter-spacing: 0.1333333333vw;
}

.p-topFv__news {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  border-radius: 0.125rem;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-topFv__news {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }
}

.p-topFv__news__inner {
  padding: 0 1.4375rem;
  max-width: 90rem;
}

.p-topFv__news__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topFv__news__items {
    padding-inline: 1rem;
  }
}

.p-topFv__news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem;
  color: #000;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .p-topFv__news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.4285714286;
    letter-spacing: 0.08em;
  }
}
@media (any-hover: hover) {
  .p-topFv__news__item:hover span::after {
    scale: 1;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.p-topFv__news__item__label {
  min-width: 8.5rem;
  min-height: 2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100vmax;
  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;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topFv__news__item__label {
    min-width: 7.75rem;
    min-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topFv__news__item__date {
    margin-top: 0.25rem;
  }
}

.p-topFv__news__item__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-topFv__news__item__title span {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-topFv__news__item__title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  scale: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}

/* ===============================================
# test
=============================================== */
.p-topStorytelling {
  padding-top: 2.4375rem;
  padding-bottom: 24.625rem;
  background: url(./../img/top/storytelling_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-topStorytelling {
    padding-top: 2.625rem;
    padding-bottom: 23.5rem;
    background: url(./../img/top/storytelling_bg_sp.png) no-repeat center center/cover;
  }
}

.p-topStorytelling__body {
  margin-top: 18.4375rem;
  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;
}
@media screen and (max-width: 767px) {
  .p-topStorytelling__body {
    margin-top: 1.625rem;
  }
}

.p-topStorytelling__content__item {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.08em;
  font-family: "Afacad", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-topStorytelling__content__item {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.7142857143;
    letter-spacing: 0.08em;
  }
}

.p-mission__main {
  padding-top: 6.25rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-mission__main {
    padding-top: 2.6875rem;
    padding-bottom: 4.1875rem;
  }
}

.p-mission__main__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.3125rem;
}

.p-mission__main__item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mission__main__item {
    text-align: left;
  }
}

.p-mission__main__item__copy {
  margin-top: 2.875rem;
  font-family: "Afacad", sans-serif;
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-mission__main__item__copy {
    margin-top: 0.625rem;
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.p-mission__main__item__text {
  margin-top: 2rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.08em;
  width: 44.1875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mission__main__item__text {
    margin-top: 0.875rem;
    width: 100%;
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: 2;
  }
}

.p-mission__main__item__text span:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mission__main__item__text span:not(:first-child) {
    margin-top: 2.25rem;
  }
}

.p-mission__main__item__img {
  margin-inline: auto;
  width: 24rem;
  height: 19.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mission__main__item__img {
    width: 100%;
  }
}
.p-mission__main__item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===============================================
# value
=============================================== */
.p-mission__value {
  width: 100%;
  height: 29.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mission__value {
    height: auto;
  }
}

.p-mission__value__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mission__value__bg {
    display: none;
    position: static;
  }
}

.p-mission__value__wrapper {
  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;
  position: absolute;
  top: -8.5625rem;
  left: 50%;
  translate: -50%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mission__value__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: static;
    row-gap: 2.875rem;
    translate: 0;
  }
}

.p-mission__value__item {
  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-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
}

.p-mission__value__item.item1 {
  background: url(./../img/mission_value_item1.png) no-repeat center center/cover;
  width: 18.5625rem;
  height: 17.625rem;
}

.p-mission__value__item.item2 {
  background: url(./../img/mission_value_item2.png) no-repeat center center/cover;
  width: 17.625rem;
  height: 17.625rem;
  margin-left: 2.875rem;
  margin-right: 3.4375rem;
}

.p-mission__value__item.item3 {
  background: url(./../img/mission_value_item3.png) no-repeat center center/cover;
  width: 15.0625rem;
  height: 15.0625rem;
}

/* ===============================================
# message
=============================================== */
.p-mission__message {
  padding-top: 10.6875rem;
  padding-bottom: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message {
    padding-top: 4.1875rem;
    padding-bottom: 5.5625rem;
  }
}

.p-mission__message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.5rem;
  }
}

.p-mission__message__left__img {
  margin-top: 5.125rem;
  margin-left: -4.375rem;
  max-width: 37rem;
  height: 35.9375rem;
}
.p-mission__message__left__img img {
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__left__img {
    margin-top: 1.6875rem;
    margin-left: 0;
    max-width: 100%;
    width: 21.75rem;
    height: 21.125rem;
  }
}

.p-mission__message__right {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.08em;
  width: 44.1875rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__right {
    width: 100%;
  }
}

.p-mission__message__right__title {
  font-family: "Afacad", sans-serif;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-mission__message__right__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
}

.p-mission__message__right__text {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__right__text {
    margin-top: 2.5rem;
  }
}

.p-mission__message__right__ceo {
  margin-top: 6.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__right__ceo {
    margin-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-mission__message__right__ceo__text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__right__ceo__text {
    margin-top: 0;
  }
}

.p-mission__message__right__ceo__text__name {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.p-mission__message__right__ceo__img {
  width: 26.5625rem;
}
@media screen and (max-width: 767px) {
  .p-mission__message__right__ceo__img {
    width: 100%;
  }
}

.p-singleWorks {
  padding-top: 5.3125rem;
  padding-bottom: 9.25rem;
  font-family: "Afacad", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-singleWorks {
    padding-top: 2.8125rem;
    padding-bottom: 3rem;
  }
}

.p-singleWorks__title {
  font-size: max(2.25rem, 28.8px);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-singleWorks__texts {
  margin-top: 0.375rem;
  padding-bottom: 1.1875rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__texts {
    margin-top: 1.3125rem;
    padding-bottom: 3.875rem;
  }
}

.p-singleWorks__url {
  border-bottom: 1px solid #000;
}

.p-singleWorks__hashtag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.p-singleWorks__content {
  padding-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__content {
    padding-top: 1.5rem;
  }
}

.p-singleWorks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.p-singleWorks__item__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-singleWorks__item__texts__text {
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__item__texts__text {
    margin-top: 0.5rem;
  }
}

.p-singleWorks__item__img {
  width: 38.25rem;
  height: 25.5rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__item__img {
    width: 100%;
    height: auto;
    aspect-ratio: 612/408;
  }
}
.p-singleWorks__item__img img {
  border-radius: 1.5rem;
}

/* ===============================================
# 共創の背景・課題
=============================================== */
.p-singleWorks__content__background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__content__background {
    row-gap: 0.5rem;
  }
}
.p-singleWorks__content__background .p-singleWorks__item:last-child {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__content__background .p-singleWorks__item:last-child {
    margin-top: 2.5rem;
  }
}
.p-singleWorks__content__background .p-singleWorks__item__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-singleWorks__content__background .p-singleWorks__item__texts__h3:not(:first-child) {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__content__background .p-singleWorks__item__texts__h3:not(:first-child) {
    margin-top: 0.5rem;
  }
}

/* ===============================================
# gallery
=============================================== */
.p-singleWorks__gallery {
  margin-top: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__gallery {
    margin-top: 4.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.125rem;
  }
}

.p-singleWorks__gallery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.9375rem;
}

.p-singleWorks__gallery__item img {
  width: 25.5rem;
  height: 17rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__gallery__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 408/272;
  }
}

/* ===============================================
# プロセス
=============================================== */
.p-singleWorks__process {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__process {
    margin-top: 3.6875rem;
  }
}

.p-singleWorks__process__wrapper {
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__process__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: 1fr;
    gap: 2.3125rem;
  }
}

.p-singleWorks__process__item {
  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-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  border: 2px solid #000;
  min-height: 3.5rem;
  border-radius: 0.5rem;
}

.p-singleWorks__process__item:not(:first-child) {
  position: relative;
}
.p-singleWorks__process__item:not(:first-child)::before {
  content: "";
  position: absolute;
  background: url(./../img/arrow-right.png) no-repeat center center/cover;
  width: 1.125rem;
  height: 1.125rem;
  top: 50%;
  left: -3.125rem;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__process__item:not(:first-child)::before {
    top: -1.75rem;
    left: 50%;
    translate: -50% 0;
    rotate: 90deg;
  }
}

.p-singleWorks__process__textarea {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-singleWorks__process__textarea {
    margin-top: 2.0625rem;
  }
}

/* ===============================================
# 成果・インパクト
=============================================== */
.p-singleWorks__outcome {
  margin-top: 5.625rem;
}

.p-singleWorks__comment {
  margin-top: 2.9375rem;
}

.p-newsNote {
  padding-top: 5.3125rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-newsNote {
    padding-top: 0.8125rem;
    padding-bottom: 4rem;
  }
}

.p-newsNote__lead {
  margin-top: 3.75rem;
  font-family: "Afacad", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-newsNote__lead {
    margin-top: 0.75rem;
  }
}

.p-newsNote__blogs {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-newsNote__blogs {
    margin-top: 2rem;
    row-gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .p-newsNote__blogs.u-is--pc {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (max-width: 767px) {
  .p-newsNote__blogs.u-is--sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.p-contact {
  padding-top: 3.8125rem;
  padding-bottom: 7rem;
}

.p-contact__company {
  font-family: "Afacad", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
}

.p-contact__company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__company__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.875rem;
  }
}

.p-contact__company__title {
  font-weight: 700;
}

.p-contact__company__table {
  margin-top: 5.25rem;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__company__table {
    margin-top: 2rem;
  }
}

.p-contact__company__map {
  width: 31.4375rem;
  height: 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__company__map {
    width: 100%;
    height: 19.8125rem;
  }
}
.p-contact__company__map iframe {
  width: 100%;
  height: 50%;
  border: 0;
}

.p-contact__company__table th,
.p-contact__company__table td {
  padding: 0.375rem;
  text-align: left;
}
.p-contact__company__table th a,
.p-contact__company__table td a {
  text-decoration: underline;
}

.p-contact__company__table th {
  width: 7.75rem;
}

.p-contact__main {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__main {
    margin-top: 2rem;
  }
}

.p-contact__main__form {
  margin-top: 4.875rem;
  margin-left: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__main__form {
    margin-top: 0.75rem;
    margin-left: 0;
  }
}
.p-contact__main__form .wpcf7-spinner {
  display: none;
}

/* ===============================================
# フォーム
=============================================== */
.wpcf7-form-control-wrap {
  width: 100%;
}

.c-form {
  max-width: 800px;
}

.c-form__item {
  margin-bottom: 1.8em;
}

.c-form__item label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.c-form__required {
  color: red;
  font-size: 0.9em;
}

.c-form__item input,
.c-form__item textarea {
  width: 100%;
  padding: 0.8em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.c-form__item textarea {
  min-height: 120px;
  resize: vertical;
}

.c-form__example {
  font-size: 0.85em;
  color: #666;
  margin-top: 0.3em;
}

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

.c-form__submit input[type=submit] {
  background-color: #333;
  color: #fff;
  padding: 0.8em 2em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.c-form__submit input[type=submit]:hover {
  background-color: #555;
}

.p-person {
  padding-top: 5.3125rem;
  padding-bottom: 12.375rem;
}
@media screen and (max-width: 767px) {
  .p-person {
    padding-top: 5.375rem;
    padding-bottom: 3.75rem;
  }
}

.p-person__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 7.3125rem;
}
@media screen and (max-width: 767px) {
  .p-person__wrapper {
    row-gap: 5.375rem;
  }
}

.p-person__member__human {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-person__member__human {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-person__member__human:first-child {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-person__member__human:first-child {
    margin-top: 3rem;
  }
}

.p-person__member__human:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-person__member__human:not(:first-child) {
    margin-top: 2.0625rem;
  }
}

.p-person__member__human__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-person__member__human__name {
  font-family: "Afacad", sans-serif;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-person__member__human__name {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.p-person__member__human__text {
  margin-top: 2.3125rem;
  font-family: "Afacad", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-person__member__human__text {
    margin-top: 0;
  }
}

.p-person__member__human__img {
  width: 38.25rem;
  height: 25.4375rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-person__member__human__img {
    width: 100%;
    height: 14.4375rem;
  }
}
.p-person__member__human__img img {
  border-radius: 1.5rem;
}

/* ===============================================
# sectionPerson
=============================================== */
.p-person .l-sectionPerson {
  margin-top: 5.625rem;
  padding-top: 0;
  background: inherit;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-person .l-sectionPerson {
    margin-top: 5.1875rem;
  }
}

.p-person .l-sectionPerson__body {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-person .l-sectionPerson__body {
    margin-top: 1.5rem;
  }
}

.p-recruit {
  padding-top: 6.375rem;
  padding-bottom: 8.5625rem;
  font-family: "Afacad", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-recruit__read {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__read {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

/* ===============================================
# joinUs
=============================================== */
.p-recruit__joinUs {
  margin-top: 5.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  width: calc(100% + (100vw - 100%) / 2);
  max-width: 1440px;
}
@media screen and (max-width: 767px) {
  .p-recruit__joinUs {
    margin-top: 2.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.75rem;
    width: 100%;
  }
}

.p-recruit__joinUs__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-recruit__joinUs__title {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__joinUs__title {
    font-size: max(3rem, 38.4px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.p-recruit__joinUs__titleSub {
  margin-top: 2.625rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__joinUs__titleSub {
    margin-top: 0.875rem;
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

.p-recruit__joinUs__text {
  margin-top: 1.8125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__joinUs__text {
    margin-top: 1.1875rem;
  }
}

.p-recruit__joinUs__img {
  width: min(61.1111111111vw, 880px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__joinUs__img {
    height: 17.75rem;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

/* ===============================================
# want
=============================================== */
.p-recruit__want {
  margin-top: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__want {
    margin-top: 2.5rem;
  }
}

.p-recruit__want__title {
  text-align: center;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__want__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.p-recruit__want__content {
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f6fafb;
  width: 100%;
  max-width: 43.75rem;
  margin-inline: auto;
}

.p-recruit__want__content__title {
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.08em;
}

.p-recruit__want__content__icon {
  width: 18.75rem;
}

.p-recruit__want__content__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
}

.p-recruit__want__content__text {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-left: 1rem;
  position: relative;
}
.p-recruit__want__content__text span {
  font-weight: 700;
}
.p-recruit__want__content__text::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* ===============================================
# entry
=============================================== */
.p-recruit__entry {
  margin-top: 10.5625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry {
    margin-top: 2.5rem;
  }
}

.p-recruit__entry__title {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__title {
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.16em;
  }
}

.p-recruit__entry__text {
  margin-top: 0.5rem;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__entry__btns__container {
  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;
}

.p-recruit__entry__btns {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__btns {
    margin-top: 2.125rem;
  }
}

.p-recruit__entry__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__top {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
}

.p-recruit__entry__link {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .p-recruit__entry__link:hover {
    opacity: 0.5;
  }
}

.p-recruit__entry__btn {
  background: #000;
  color: #fff;
  text-align: center;
  min-height: 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;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__btn {
    margin-top: 0.75rem;
    min-height: 4.4375rem;
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

/* ===============================================
# culture
=============================================== */
.p-recruit__culture {
  margin-top: 7.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__culture {
    margin-top: 2.5rem;
  }
}

.p-recruit__culture__title {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1.46875;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-recruit__culture__title {
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__culture__text {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__culture__text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__culture__items {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__culture__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
}

.p-recruit__culture__item {
  overflow: hidden;
}
.p-recruit__culture__item img {
  -webkit-transition: scale 0.3s ease 0s;
  transition: scale 0.3s ease 0s;
}
@media (any-hover: hover) {
  .p-recruit__culture__item:hover img {
    scale: 1.07;
  }
}

/* ===============================================
# team
=============================================== */
.p-recruit__team {
  margin-top: 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__team {
    margin-top: 5.0625rem;
  }
}

.p-recruit__team__title {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1.46875;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-recruit__team__title {
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__team__text {
  margin-top: 0.5rem;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__team__text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__team__body .l-sectionPerson__body {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__team__body .l-sectionPerson__body {
    margin-top: 1.125rem;
  }
}

/* ===============================================
# office
=============================================== */
.p-recruit__office {
  padding-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__office {
    padding-top: 6.4375rem;
  }
}

.p-recruit__office__title {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1.46875;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-recruit__office__title {
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__office__text {
  margin-top: 0.5rem;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__office__text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__office__cards {
  margin-top: 4.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6875rem 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__office__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem 1.0625rem;
  }
}

.p-recruit__office__card img {
  border-radius: 1.5rem;
  aspect-ratio: 408/272;
}
@media screen and (max-width: 767px) {
  .p-recruit__office__card img {
    border-radius: 0.75rem;
  }
}

/* ===============================================
# contact
=============================================== */
.p-recruit__contact {
  margin-top: 6.375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__contact {
    margin-top: 4.75rem;
  }
}

.p-recruit__contact__title {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1.46875;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-recruit__contact__title {
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__contact__text {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-recruit__contact__text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.p-recruit__contact__btns {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__contact__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4375rem;
    margin-top: 1rem;
  }
}

.p-recruit__contact__btn {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.p-recruit__contact__btn img {
  aspect-ratio: 613/164;
}
@media (any-hover: hover) {
  .p-recruit__contact__btn:hover {
    opacity: 0.5;
  }
}

.p-single {
  padding-top: 5.3125rem;
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-top: 2.375rem;
    padding-bottom: 9.6875rem;
  }
}

.p-single__inner--news {
  max-width: 748px;
}
.p-single__inner--news .toc_list li:not(:first-child) {
  margin-top: 0.3125rem !important;
}

.p-single__bled {
  margin-top: 1rem;
  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;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
  gap: 0.5em;
}
.p-single__bled a {
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: border-bottom 0.2s;
  transition: border-bottom 0.2s;
}
.p-single__bled a:hover {
  border-bottom: 1px solid #000;
}

.p-single__body {
  margin-top: 2rem;
}

.p-single__body #toc_container {
  width: 100%;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
  padding: 3.5rem 1rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
.p-single__body #toc_container .toc_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-single__body #toc_container a {
  color: #000;
  border-bottom: none !important;
}

.p-single__body .aligncenter {
  margin-inline: auto;
}
.p-single__body pre {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
.p-single__body pre img {
  margin: 1rem 0;
}

.p-serviceDetail {
  padding-top: 5.0625rem;
  padding-bottom: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-serviceDetail__section:not(:first-child) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__section:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-serviceDetail__section__title {
  font-size: max(3rem, 38.4px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Afacad", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__section__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
  }
}

.p-serviceDetail__section__items {
  margin-top: 4.25rem;
  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: 1.875rem 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__section__items {
    margin-top: 2.5rem;
  }
}

.p-serviceDetail__section__item {
  text-align: center;
  width: calc(33.333% - 2.5625rem);
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__section__item {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .p-serviceDetail__section__item:hover {
    opacity: 0.5;
  }
}

.p-serviceDetail__section__body__img img {
  border-radius: 1.5rem;
}

.p-serviceDetail__section__body__text {
  margin-top: 0.875rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__section__body__text {
    margin-top: 0.5rem;
  }
}

.u-visually-hidden {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
/*きらっと光る*/
.u-btnShine {
  text-decoration: none;
  outline: none;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s ease 0s;
  transition: -webkit-transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
}
.u-btnShine:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.7;
}

/*キラッと光る*/
.u-btnShine::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.u-btnShine::before {
  -webkit-animation: shine 3s infinite linear;
          animation: shine 3s infinite linear;
}

@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  23.333% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  23.333% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
@keyframes reflect {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes reflect {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .u-is--pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-is--pc {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .u-is--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-is--sp {
    display: block;
  }
}

.u-is--hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-is--hidden-pc {
    display: block;
  }
}

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

.u-is--notUpper {
  text-transform: none;
}

.u-color__white {
  color: #fff;
}

.u-color__black {
  color: #000;
}

.u-wysiwyg {
  font-family: "Afacad", sans-serif;
}
.u-wysiwyg h2 {
  font-size: max(2.5rem, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding-left: 1.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg h2 {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
}
.u-wysiwyg h2::before {
  content: "";
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.625rem;
  left: 0;
  background: url(./../img/arrow-right.png) no-repeat center center/cover;
}
.u-wysiwyg h3 {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg h3 {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
.u-wysiwyg h4 {
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg h4 {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
}
.u-wysiwyg h5 {
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg h5 {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
}
.u-wysiwyg p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.8666666667;
  letter-spacing: 0.0746666667em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg p {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.6428571429;
  }
}
.u-wysiwyg a {
  color: #00A2D9;
  border-bottom: 1px solid #00A2D9;
}
.u-wysiwyg a:has(img) {
  border-bottom: none;
}
.u-wysiwyg ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg h2 {
  margin-bottom: 2.9375rem;
}
.u-wysiwyg h3,
.u-wysiwyg h4 {
  margin-bottom: 2.3125rem;
}
.u-wysiwyg h5 {
  margin-bottom: 1.6875rem;
}
.u-wysiwyg p + p {
  margin-top: 1.3125rem;
}
.u-wysiwyg figure {
  margin-block: 2.8125rem;
}
.u-wysiwyg table {
  margin-block: 2.8125rem;
}
.u-wysiwyg p + ul,
.u-wysiwyg p + ol,
.u-wysiwyg ul + p,
.u-wysiwyg ol + p,
.u-wysiwyg ul + ol,
.u-wysiwyg ol + ul {
  margin-top: 1.3125rem;
}
.u-wysiwyg div + h2,
.u-wysiwyg p + h2,
.u-wysiwyg ul + h2,
.u-wysiwyg ol + h2,
.u-wysiwyg figure + h2,
.u-wysiwyg table + h2 {
  margin-top: 2.8125rem;
}
.u-wysiwyg div + h3,
.u-wysiwyg p + h3,
.u-wysiwyg ul + h3,
.u-wysiwyg ol + h3,
.u-wysiwyg figure + h3,
.u-wysiwyg table + h3 {
  margin-top: 2.8125rem;
}
.u-wysiwyg p + h4,
.u-wysiwyg ul + h4,
.u-wysiwyg ol + h4,
.u-wysiwyg figure + h4,
.u-wysiwyg table + h4,
.u-wysiwyg p + h5,
.u-wysiwyg ul + h5,
.u-wysiwyg ol + h5,
.u-wysiwyg figure + h5,
.u-wysiwyg table + h5 {
  margin-top: 1.3125rem;
}
.u-wysiwyg table + table {
  margin-top: 2.8125rem;
}
.u-wysiwyg img {
  width: auto;
  max-width: 100%;
}

.u-wysiwyg--h3 h3 {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.3333333333;
}
.u-wysiwyg--h3 h4 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.6;
}
.u-wysiwyg--h3 h5 {
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  line-height: 1.6;
}
.u-wysiwyg--h3 p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--h3 p {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.6428571429;
  }
}
.u-wysiwyg--h3 a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-wysiwyg--h3 a:hover {
    text-decoration: none;
  }
}
.u-wysiwyg--h3 ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg--h3 ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg--h3 h3 {
  margin-bottom: 10px;
}
.u-wysiwyg--h3 h4,
.u-wysiwyg--h3 h5 {
  margin-bottom: 5px;
}
.u-wysiwyg--h3 p + p {
  margin-top: 5px;
}
.u-wysiwyg--h3 figure {
  margin-block: 10px;
}
.u-wysiwyg--h3 table {
  margin-block: 10px;
}
.u-wysiwyg--h3 p + ul,
.u-wysiwyg--h3 p + ol,
.u-wysiwyg--h3 ul + p,
.u-wysiwyg--h3 ol + p,
.u-wysiwyg--h3 ul + ol,
.u-wysiwyg--h3 ol + ul {
  margin-top: 5px;
}
.u-wysiwyg--h3 p + h3,
.u-wysiwyg--h3 ul + h3,
.u-wysiwyg--h3 ol + h3,
.u-wysiwyg--h3 figure + h3,
.u-wysiwyg--h3 table + h3 {
  margin-top: 25px;
}
.u-wysiwyg--h3 p + h4,
.u-wysiwyg--h3 ul + h4,
.u-wysiwyg--h3 ol + h4,
.u-wysiwyg--h3 figure + h4,
.u-wysiwyg--h3 table + h4 {
  margin-top: 20px;
}
.u-wysiwyg--h3 p + h5,
.u-wysiwyg--h3 ul + h5,
.u-wysiwyg--h3 ol + h5,
.u-wysiwyg--h3 figure + h5,
.u-wysiwyg--h3 table + h5 {
  margin-top: 15px;
}
.u-wysiwyg--h3 table + table {
  margin-top: 15px;
}

.u-wysiwyg--h3-small h3 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small h4 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small h5 {
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-wysiwyg--h3-small a:hover {
    text-decoration: none;
  }
}
.u-wysiwyg--h3-small ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg--h3-small ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg--h3-small h3 {
  margin-bottom: 10px;
}
.u-wysiwyg--h3-small h4,
.u-wysiwyg--h3-small h5 {
  margin-bottom: 5px;
}
.u-wysiwyg--h3-small p + p {
  margin-top: 5px;
}
.u-wysiwyg--h3-small figure {
  margin-block: 10px;
}
.u-wysiwyg--h3-small table {
  margin-block: 10px;
}
.u-wysiwyg--h3-small p + ul,
.u-wysiwyg--h3-small p + ol,
.u-wysiwyg--h3-small ul + p,
.u-wysiwyg--h3-small ol + p,
.u-wysiwyg--h3-small ul + ol,
.u-wysiwyg--h3-small ol + ul {
  margin-top: 5px;
}
.u-wysiwyg--h3-small p + h3,
.u-wysiwyg--h3-small ul + h3,
.u-wysiwyg--h3-small ol + h3,
.u-wysiwyg--h3-small figure + h3,
.u-wysiwyg--h3-small table + h3 {
  margin-top: 25px;
}
.u-wysiwyg--h3-small p + h4,
.u-wysiwyg--h3-small ul + h4,
.u-wysiwyg--h3-small ol + h4,
.u-wysiwyg--h3-small figure + h4,
.u-wysiwyg--h3-small table + h4 {
  margin-top: 20px;
}
.u-wysiwyg--h3-small p + h5,
.u-wysiwyg--h3-small ul + h5,
.u-wysiwyg--h3-small ol + h5,
.u-wysiwyg--h3-small figure + h5,
.u-wysiwyg--h3-small table + h5 {
  margin-top: 15px;
}
.u-wysiwyg--h3-small table + table {
  margin-top: 15px;
}

.u-wysiwyg--news {
  font-family: "Afacad", sans-serif;
}
.u-wysiwyg--news h2 {
  font-size: max(1.375rem, 17.6px);
  font-weight: 700;
  line-height: 1.4545454545;
  letter-spacing: 0.0872727273em;
  padding-left: 1.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--news h2 {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
}
.u-wysiwyg--news h2::before {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  top: 0.4375rem;
  left: 0;
  background: url(./../img/arrow-right.png) no-repeat center center/cover;
}
.u-wysiwyg--news h3 {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.0888888889em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--news h3 {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
.u-wysiwyg--news h4 {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--news h4 {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
}
.u-wysiwyg--news h5 {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--news h5 {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
}
.u-wysiwyg--news p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.8666666667;
  letter-spacing: 0.0746666667em;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--news p {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.6428571429;
  }
}
.u-wysiwyg--news a {
  color: #00A2D9;
  border-bottom: 1px solid #00A2D9;
}
.u-wysiwyg--news a:has(img) {
  border-bottom: none;
}
.u-wysiwyg--news ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg--news ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg--news h2 {
  margin-bottom: 1.25rem;
}
.u-wysiwyg--news h3,
.u-wysiwyg--news h4 {
  margin-bottom: 1.0625rem;
}
.u-wysiwyg--news h5 {
  margin-bottom: 0.625rem;
}
.u-wysiwyg--news p + p {
  margin-top: 0.6875rem;
}
.u-wysiwyg--news figure {
  margin-block: 1.5625rem;
}
.u-wysiwyg--news table {
  margin-block: 1.5625rem;
}
.u-wysiwyg--news p + ul,
.u-wysiwyg--news p + ol,
.u-wysiwyg--news ul + p,
.u-wysiwyg--news ol + p,
.u-wysiwyg--news ul + ol,
.u-wysiwyg--news ol + ul {
  margin-top: 1.3125rem;
}
.u-wysiwyg--news div + h2,
.u-wysiwyg--news p + h2,
.u-wysiwyg--news ul + h2,
.u-wysiwyg--news ol + h2,
.u-wysiwyg--news figure + h2,
.u-wysiwyg--news table + h2 {
  margin-top: 2.8125rem;
}
.u-wysiwyg--news div + h3,
.u-wysiwyg--news p + h3,
.u-wysiwyg--news ul + h3,
.u-wysiwyg--news ol + h3,
.u-wysiwyg--news figure + h3,
.u-wysiwyg--news table + h3 {
  margin-top: 2.8125rem;
}
.u-wysiwyg--news p + h4,
.u-wysiwyg--news ul + h4,
.u-wysiwyg--news ol + h4,
.u-wysiwyg--news figure + h4,
.u-wysiwyg--news table + h4,
.u-wysiwyg--news p + h5,
.u-wysiwyg--news ul + h5,
.u-wysiwyg--news ol + h5,
.u-wysiwyg--news figure + h5,
.u-wysiwyg--news table + h5 {
  margin-top: 1.3125rem;
}
.u-wysiwyg--news table + table {
  margin-top: 2.8125rem;
}
.u-wysiwyg--news img {
  width: auto;
  max-width: 100%;
}

.u-padding-block-120 {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .u-padding-block-120 {
    padding-block: 3.75rem;
  }
}