@charset "UTF-8";
/* === foundation ===  */
/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

qbefore,
qafter,
blockquotebefore,
blockquoteafter {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #333333;
  text-decoration: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button-moz-focus-inner,
input-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

label,
select,
button,
input[type=button],
input[type=reset],
input[type=submit],
input[type=radio],
input[type=checkbox] {
  cursor: pointer;
}

textarea {
  overflow: auto;
  vertical-align: top;
  font-family: sans-serif;
}

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

/* base */
@font-face {
  font-family: "Monorama";
  font-style: normal;
  font-weight: 600;
  src: local("Monorama"), url("../fonts/Monorama/Monorama.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("NotoSansJP-Regular"), url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: local("NotoSansJP-Medium"), url("../fonts/Noto_Sans_JP/NotoSansJP-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("NotoSansJP-Bold"), url("../fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  min-height: -webkit-fill-available;
  color: #333333;
  background: #F7F7F7;
}

body .l-header,
body .l-wrap,
body .l-footer,
body .p-menu__button {
  opacity: 0;
  animation-name: bodyFadeIn;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

body.is-fadeOut .l-header,
body.is-fadeOut .l-wrap,
body.is-fadeOut .l-footer,
body.is-fadeOut .p-menu__button {
  animation-name: bodyFadeOut;
  animation-delay: 0s;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

html {
  background-color: #fff;
  height: -webkit-fill-available;
}

b,
strong {
  font-weight: 400;
}

a {
  transition: all 0.2s;
}

a:hover {
  opacity: 0.5;
  text-decoration: none;
}

/* === layout ===  */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 5;
  background: url(../images/header-bg.png);
  background-size: cover;
  transition: all 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.is-home .l-header {
  top: -90px;
}

.is-scroll .l-header {
  top: 0;
}

.l-header__inner {
  padding: 0 47px;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.l-header__logo {
  width: 125px;
  height: auto;
  display: block;
  margin-right: auto;
  margin-right: 20px;
  margin-top: 5px;
}

.l-footer {
  background: #222222;
  color: #fff;
  padding: 74px 47px 66px;
  position: relative;
}

.l-footer__inner {
  margin: 0 auto;
}

.l-footer__banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #fff;
}

.l-footer__banner a {
  width: 260px;
  height: 90px;
}

.l-footer__bottom {
  font-size: 17px;
  font-weight: 500;
  padding-top: 35px;
  position: relative;
}

.l-footer__bottom-link {
  color: #fff;
  padding-left: 10px;
  position: relative;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

.l-footer__bottom-link:before {
  content: "";
  display: block;
  border-left: 4px solid #fff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  left: 0;
  top: 0.6em;
}

.l-footer__copy {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 25px;
}

.l-footer__sns {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
}

.l-wrap {
  width: 100%;
  position: relative;
  margin-top: 70px;
}

.l-wrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.7) 100%);
  z-index: -1;
}

.is-home .l-wrap {
  margin-top: 0;
}

.l-section {
  padding: 0 20px;
}

.l-section._page-type-1 {
  padding-top: 55px;
  padding-bottom: 120px;
}

.l-section._page-type-2 {
  padding-top: 55px;
  padding-bottom: 120px;
}

.l-section._page-type-2:before {
  content: "";
  display: block;
  width: 100%;
  height: 490px;
  background: url(../images/section-type-2-bg.png) no-repeat center top;
  background-size: cover;
  position: fixed;
  top: 70px;
  left: 0;
}

.l-section._page-type-2 .c-section-title {
  color: #fff;
}

.l-section__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 120px;
}

.is-scale-in {
  opacity: 0;
  animation-name: scalein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-direction: normal;
}

.is-fade-in {
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-direction: normal;
}

[data-animation-delay="100"] {
  animation-delay: 100ms;
}

[data-animation-delay="200"] {
  animation-delay: 200ms;
}

[data-animation-delay="300"] {
  animation-delay: 300ms;
}

[data-animation-delay="400"] {
  animation-delay: 400ms;
}

[data-animation-delay="500"] {
  animation-delay: 500ms;
}

[data-animation-delay="600"] {
  animation-delay: 600ms;
}

[data-animation-delay="700"] {
  animation-delay: 700ms;
}

[data-animation-delay="800"] {
  animation-delay: 800ms;
}

[data-animation-delay="900"] {
  animation-delay: 900ms;
}

[data-animation-delay="1000"] {
  animation-delay: 1000ms;
}

/* === utility ===  */
.u-relative {
  position: relative;
}

.u-overflow {
  width: 100%;
  overflow: hidden;
}

.u-relative {
  position: relative;
}

.u-text-en {
  font-family: "Poppins", sans-serif;
}

/* === component ===  */
.c-anchor-wrap {
  position: relative;
}

.c-anchor-wrap._absolute {
  position: absolute;
  top: 0;
}

.c-anchor {
  position: absolute;
  top: -70px;
}

.c-anchor._products {
  top: -120px;
}

.c-anchor._reason {
  top: -120px;
}

.c-anchor._flow {
  top: -190px;
}

.c-box {
  padding: 30px;
  background: #fff;
}

.c-button {
  -moz-appearance: unset;
  appearance: unset;
  -webkit-appearance: none;
  outline: none;
  width: 300px;
  max-width: 100%;
  height: 50px;
  border: 1px solid #999;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
  background: #F7F7F7;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.c-button span {
  transition: all 0.2s;
}

.c-button:hover {
  opacity: 1;
}

.c-button:hover span {
  opacity: 0.5;
}

.c-button__icon {
  position: absolute;
  right: 13px;
  width: 24px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.c-button__icon svg {
  width: 24px;
  height: 4px;
  position: absolute;
  right: 0;
}

.c-news-cards {
  display: flex;
  gap: 40px 40px;
  flex-wrap: wrap;
}

.c-news-card {
  width: calc((100% - 40px) / 2);
}

.c-news-card__link {
  background: #fff;
  display: flex;
  padding: 15px;
  gap: 28px;
  align-items: flex-start;
}

.c-news-card__link:hover {
  opacity: 1;
}

.c-news-card__link:hover .c-news-card__image img {
  transform: scale(1.1);
}

.c-news-card__image {
  width: 150px;
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  max-width: 40%;
  overflow: hidden;
  border: 1px solid #E6E6E6;
  flex-shrink: 0;
}

.c-news-card__image img {
  transition: all 0.5s;
  width: 100%;
  height: auto;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.c-news-card__text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  align-items: center;
}

.c-news-card__date {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #A73837;
  font-weight: 600;
  line-height: 1.7em;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.c-news-card__name {
  font-size: 16px;
  line-height: 26px;
  border: 1px solid #333;
  padding: 0 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-news-card__category {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-news-card__title {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5em;
  width: 100%;
}

.c-news-all {
  position: absolute;
  bottom: 0;
  left: -20px;
}

.c-news-all__link {
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-direction: column;
}

.c-news-all__link span {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}

.c-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.c-links a {
  color: #754C24;
  padding-left: 10px;
  position: relative;
  line-height: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.c-links a:before {
  content: "";
  display: block;
  border-left: 4px solid #333;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  left: 0;
  top: 0.6em;
}

[data-inview] {
  transition: opacity 1s ease;
  opacity: 0;
}

[data-inview].in-view {
  opacity: 1;
}

[data-inview][data-delay="100"] {
  transition-delay: 100ms;
}

[data-inview][data-delay="200"] {
  transition-delay: 200ms;
}

[data-inview][data-delay="300"] {
  transition-delay: 300ms;
}

[data-inview][data-delay="400"] {
  transition-delay: 400ms;
}

[data-inview][data-delay="500"] {
  transition-delay: 500ms;
}

[data-inview][data-delay="600"] {
  transition-delay: 600ms;
}

[data-inview][data-delay="700"] {
  transition-delay: 700ms;
}

[data-inview][data-delay="800"] {
  transition-delay: 800ms;
}

[data-inview][data-delay="900"] {
  transition-delay: 900ms;
}

[data-inview][data-delay="1000"] {
  transition-delay: 1000ms;
}

.c-page-header {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-page-header._company {
  background-image: url(../images/bg-company.jpg);
}

.c-page-header._news {
  background-image: url(../images/bg-news.jpg);
}

.c-page-header._recruit {
  background-image: url(../images/bg-recruit.jpg);
}

.c-page-header._contact {
  background-image: url(../images/bg-contact.jpg);
}

.c-page-header._privacy-policy {
  background-image: url(../images/bg-privacy-policy.jpg);
}

.c-page-header__title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.c-page-header__title span {
  color: #fff;
  text-align: center;
}

.c-page-header__title span:first-child {
  font-family: "Inter", sans-serif;
  font-size: 55px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.c-page-header__title span:last-child {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-page-navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  max-width: 800px;
  margin: 60px auto 0;
}

.c-page-navi__button {
  transition: all 0.2s;
}

.c-page-navi__button svg {
  transition: all 0.2s;
  position: relative;
}

.c-page-navi__button._index svg {
  margin-bottom: 0;
}

.c-page-navi__button._index:hover svg {
  transform: scale(1.1);
}

.c-page-navi__button._prev svg {
  left: 0;
}

.c-page-navi__button._prev:hover svg {
  left: -10px;
}

.c-page-navi__button._next svg {
  left: 0px;
}

.c-page-navi__button._next:hover svg {
  left: 10px;
}

.c-page-navi__button.is-disabled {
  visibility: hidden;
}

.c-scroll-arrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  width: 180px;
  height: 16px;
  font-weight: 500;
  position: absolute;
  right: 48px;
  bottom: 0;
  transform: rotate(90deg);
  transform-origin: right bottom;
  font-family: "Poppins", sans-serif;
  display: flex;
  line-height: 18px;
}

.c-scroll-arrow__line-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  overflow: hidden;
  transition: all 1s;
  width: 120px;
  height: 1px;
  overflow: hidden;
  background: #fff;
}

.c-scroll-arrow__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #CCCCCC;
  max-width: unset;
  animation-name: scroll;
  animation-fill-mode: backwards;
  animation-duration: 1.7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
}

.swiper-modalInSlider {
  width: 100%;
}

/* モーダル */
.swiper-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(51, 51, 51, 0.9);
  pointer-events: none !important;
}

.swiper-modal * {
  pointer-events: none !important;
}

/* モーダルがactiveの時 */
.swiper-modal.is-active {
  opacity: 1;
  pointer-events: auto !important;
}

.swiper-modal.is-active * {
  pointer-events: auto !important;
}

/* モーダル背景のオーバーレイ部分 */
.swiper-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.swiper-modal__content {
  position: relative;
  width: 100%;
}

.swiper-modal_inner {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 閉じるボタン */
.swiper-modal__close-btn {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 20;
}

.swiper-modal__close-btn:before,
.swiper-modal__close-btn:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper-modal__close-btn:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-modal__close-btn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.swiper-modal__close-btn:hover {
  opacity: 0.8;
}

.swiper-modalInSlider-slide {
  padding: 20px 100px;
  position: relative;
  z-index: 20;
  opacity: 0 !important;
}

.swiper-modalInSlider-slide.swiper-slide-active {
  opacity: 1 !important;
}

.swiper-wrapper {
  align-items: center;
  z-index: 10;
}

.swiper-button-wrap {
  width: 100%;
  max-width: 1042px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.swiper-slide {
  pointer-events: none;
}

.swiper-slide.swiper-slide-active {
  pointer-events: initial;
  position: relative !important;
  z-index: 1000 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: -10px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: relative;
}

.swiper-button-prev:after {
  transform: rotate(-135deg);
  left: 5px;
}

.swiper-button-next:after {
  transform: rotate(45deg);
  right: 5px;
}

.c-swiper-modal-detail {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  z-index: 10;
  position: relative;
  overflow: auto;
  max-height: 90vh;
  word-break: break-all;
}

.c-swiper-modal-detail img {
  font-family: "object-fit:contain";
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto;
}

.swiper-outmask {
  width: 100%;
  height: 300%;
  position: absolute;
  left: 0;
  top: -100%;
  opacity: 0.5;
  z-index: 10;
  cursor: pointer;
}

.swiper-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: 10;
  cursor: pointer;
}

.c-swiper-modal-detail__image {
  width: 290px;
  flex-shrink: 0;
  max-width: 40%;
  z-index: 1;
}

.c-swiper-modal-detail__image img {
  width: 100%;
  height: auto;
}

.c-swiper-modal-detail__texts {
  width: 100%;
}

.c-swiper-modal-detail__texts p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.c-swiper-modal-detail__texts p + p {
  margin-top: 1.5em;
}

.c-swiper-modal-detail__texts p.text-large {
  font-size: 18px;
  font-weight: 600;
}

.c-swiper-modal-detail__texts p.text-red {
  font-weight: 600;
  color: #8D1233;
}

.c-swiper-modal-detail__texts p.text-red + p {
  margin-top: 0;
}

.c-swiper-modal-detail__title {
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-swiper-modal-detail__title._member {
  flex-direction: row;
  gap: 24px;
  margin-bottom: 0;
}

.c-swiper-modal-detail__time {
  font-size: 20px;
  line-height: 23px;
  color: #8D1233;
}

.c-swiper-modal-detail__title-text {
  font-size: 20px;
  line-height: 27px;
}

.c-swiper-modal-detail__title-sub {
  font-size: 17px;
  line-height: 23px;
}

.c-swiper-modal-detail__number {
  font-size: 28px;
  line-height: 38px;
  color: #AE8726;
}

.c-swiper-modal-detail__names {
  color: #AE8726;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.c-swiper-modal-detail__names span {
  display: block;
}

.c-swiper-modal-detail__names span:first-child {
  font-size: 25px;
  line-height: 38px;
}

.c-swiper-modal-detail__names span:last-child {
  font-size: 14px;
  line-height: 1em;
  font-family: "Helvetica", sans-serif;
  letter-spacing: 0.05em;
}

.c-swiper-modal-detail__member-data {
  width: 100%;
}

.c-swiper-modal-detail__member-data-list {
  display: flex;
  border-bottom: 1px solid #E6E6E6;
  padding: 10px 0;
}

.c-swiper-modal-detail__member-data-list span {
  font-weight: 500;
}

.c-swiper-modal-detail__member-data-list span:first-child {
  width: 117px;
  flex-shrink: 0;
}

.c-swiper-modal-detail__member-data-list span:last-child {
  font-size: 14px;
  line-height: 1em;
  font-family: "Helvetica", sans-serif;
  letter-spacing: 0.05em;
}

.c-table {
  font-size: 15px;
  line-height: 1.8em;
  width: 100%;
  margin-bottom: 28px;
}

.c-table tr {
  border-top: 1px solid #E6E6E6;
}

.c-table tr:last-child th,
.c-table tr:last-child td {
  padding-bottom: 0;
}

.c-table th {
  padding: 25px 0;
  width: 130px;
  min-width: 130px;
  font-weight: 600;
  vertical-align: top;
  letter-spacing: 0.05em;
}

.c-table td {
  padding: 25px 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-section-title {
  font-size: 60px;
  color: #333333;
  font-family: "Monorama", sans-serif;
  letter-spacing: 0.1em;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  left: 53px;
}

.c-section-title span {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-left: 5px;
  line-height: 0;
  position: relative;
  top: 30px;
}

.c-section-title._sticky {
  height: 0;
  transform: rotate(0deg);
  line-height: 0;
  position: sticky;
  top: 125px;
  margin-left: -97px;
}

.c-section-title._sticky._management {
  transform: rotate(0deg) translate(0px, -20px);
  margin-left: -70px;
}

.c-section-title._sticky._management.is-over {
  margin-left: -3px !important;
}

.c-section-title._sticky .c-section-title__inner {
  transform: rotate(90deg);
  transform-origin: 0 0;
  position: sticky;
  top: 125px;
  display: inline-block;
}

/* === pg ===  */
.pg-actor {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.pg-actor p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pg-actor p + p {
  margin-top: 26px;
}

.pg-actor__image {
  width: calc(50% - 30px);
  position: sticky;
  top: 125px;
}

.pg-actor__texts {
  width: calc(50% - 30px);
}

.pg-actor__box {
  margin-bottom: 50px;
}

.pg-actor__title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
  text-align: center;
  background: #E6E6E6;
  line-height: 50px;
  margin-bottom: 20px;
}

.pg-actor__name {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #999999;
}

.pg-actor__name span {
  font-weight: 500;
  display: block;
}

.pg-actor__name span:first-child {
  font-size: 15px;
  line-height: 1.5em;
  margin-bottom: 3px;
}

.pg-actor__name span:last-child {
  font-size: 20px;
  line-height: 1.8em;
}

.pg-actor__gallery {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pg-actor__gallery-item {
  width: calc((100% - 42px) / 4);
  aspect-ratio: 1/1;
  height: auto;
  cursor: pointer;
  transition: all 0.5s;
}

.pg-actor__gallery-item:hover {
  opacity: 0.5;
}

.pg-actor__gallery-item img {
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.pg-actor__news {
  display: flex;
  flex-direction: column;
}

.pg-actor__news-item {
  border-bottom: 1px solid #999;
  padding: 17px 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.pg-actor__news-date {
  font-size: 15px;
  color: #A73837;
  font-weight: 600;
}

.pg-actor__news-category {
  font-size: 15px;
  color: #666666;
  font-weight: 500;
  margin-right: auto;
}

.pg-actor__news-title {
  font-size: 16px;
  color: #333333;
  line-height: 25px;
  width: 100%;
}

.pg-actor__works-item {
  padding-top: 10px;
}

.pg-actor__works-item + .pg-actor__works-item {
  border-top: 1px solid #999;
  padding-top: 30px;
  margin-top: 30px;
}

.pg-actor__works-item li {
  font-size: 16px;
  line-height: 25px;
}

.pg-actor__works-item li + li {
  margin-top: 0.8em;
}

.pg-actor__works-title {
  font-size: 18px;
  font-weight: 600;
  color: #A73837;
  margin-bottom: 20px;
}

.pg-company-detail {
  padding: 30px 30px 50px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

.pg-company-detail + .pg-company-detail {
  margin-top: 60px;
}

.pg-company-detail__title {
  font-size: 25px;
  line-height: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #A73837;
  padding-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: -1px;
}

.pg-company-detail__text p {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.05em;
  margin: 23px 0;
}

.pg-company-detail__text p:first-child {
  margin-top: 0;
}

.pg-company-detail__text p:last-child {
  margin-bottom: 0;
}

.pg-company-map {
  width: 100%;
  height: 380px;
  filter: grayscale(1);
  margin-top: 43px;
  margin-bottom: 20px;
}

.pg-company-map__data {
  display: flex;
  align-items: flex-end;
  gap: 113px;
  margin-bottom: 30px;
}

.pg-company-map__data-item span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5em;
}

.pg-company-map__data-item p {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-google-map-button {
  font-size: 16px;
  font-weight: 600;
  color: #754C24;
  border-bottom: 1px solid #754C24;
  display: inline-flex;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  padding: 0 4px 5px 2px;
}

.pg-company-related {
  width: 100%;
}

.pg-company-related__item {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #E6E6E6;
}

.pg-company-related__item:first-child {
  margin-top: 0;
}

.pg-company-related__item p {
  min-height: 100px;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.pg-company-related__image {
  width: 200px;
  flex-shrink: 0;
}

.pg-company-related__name {
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 15px;
}

.pg-company-related__link-wrap {
  display: flex;
  justify-content: flex-end;
}

.pg-company-related__link {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #754C24;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #754C24;
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.pg-company-related__link:hover {
  border: none;
}

.pg-management-lists {
  display: flex;
  border-left: 1px solid #333;
  margin-bottom: 46px;
}

.pg-management-lists a {
  width: 20%;
  flex-shrink: 0;
  text-align: center;
  display: block;
  border-right: 1px solid #333;
  line-height: 40px;
  letter-spacing: 0.1em;
}

.pg-management-lists a.is-current {
  background: #E6E6E6;
  pointer-events: none;
}

.pg-management-lists a:hover {
  opacity: 1;
  background: #E6E6E6;
}

.pg-management__cards {
  display: flex;
  gap: 50px 27px;
  flex-wrap: wrap;
}

.pg-management__card {
  width: calc((100% - 27px - 27px - 27px) / 4);
  background: #fff;
}

.pg-management__card._spacer {
  background: #F0F0F0;
}

.pg-management__link {
  padding: 15px 15px 20px;
  display: block;
  height: 100%;
}

.pg-management__link:hover {
  opacity: 1;
}

.pg-management__link:hover img {
  transform: scale(1.1);
}

.pg-management__image {
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
  aspect-ratio: 1/1;
}

.pg-management__image img {
  transition: all 0.5s;
}

.pg-management__texts {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 3px;
}

.pg-management__text-1 {
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.pg-management__text-2 {
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.pg-management__text-3 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #666;
}

.pg-news-navi {
  display: flex;
  border-left: 1px solid #fff;
  margin-bottom: 46px;
}

.pg-news-navi a {
  width: auto;
  flex-shrink: 0;
  text-align: center;
  display: block;
  border-right: 1px solid #fff;
  line-height: 40px;
  letter-spacing: 0.1em;
  padding: 0 30px;
  color: #fff;
}

.pg-news-navi a.is-current {
  background: #E6E6E6;
  pointer-events: none;
  color: #333;
}

.pg-news-navi a:hover {
  opacity: 1;
  background: #E6E6E6;
  color: #333;
}

.pg-news-detail {
  padding: 30px 40px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

.pg-news-detail__head {
  display: flex;
  gap: 20px 15px;
  flex-wrap: wrap;
  margin-bottom: 37px;
}

.pg-news-detail__head-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}

.pg-news-detail__head-image img {
  width: 100%;
  height: auto;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.pg-news-detail__head-meta {
  display: flex;
  gap: 5px 15px;
  flex-wrap: wrap;
  align-items: center;
}

.pg-news-detail__head-date {
  font-size: 18px;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #A73837;
  display: block;
  font-family: "Poppins", sans-serif;
  width: 100%;
}

.pg-news-detail__head-name {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  border: 1px solid #333;
  font-weight: 500;
  padding: 0 14px;
}

.pg-news-detail__head-category {
  color: #666;
  font-weight: 500;
}

.pg-news-detail__head-title {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  width: 100%;
  padding: 20px 0;
}

.pg-news-detail__body {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.1em;
  word-break: break-all;
}

.pg-news-detail__body p {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.1em;
  margin: 23px 0;
}

.pg-news-detail__body ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 23px;
}

.pg-news-detail__body ol {
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 23px;
}

.pg-news-detail__body a {
  text-decoration: underline;
  color: #754C24;
}

.pg-news-detail__body a:hover {
  text-decoration: none;
}

.pg-news-detail__body h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 46px 0 23px;
}

.pg-news-detail__body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 23px 0;
}

.pg-news-detail__body h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 23px 0;
}

.pg-news-detail__body h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 23px 0;
}

.pg-site-policy {
  padding: 30px 30px 50px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

.pg-site-policy__title {
  font-size: 25px;
  line-height: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #A73837;
  padding-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: -1px;
}

.pg-site-policy__item {
  border-top: 1px solid #E6E6E6;
  margin-top: 30px;
  padding-top: 30px;
}

.pg-site-policy__item:first-child {
  margin-top: 0;
}

.pg-site-policy__item h2 {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pg-site-policy__item p {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.05em;
}

.pg-work-shop__read {
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 500;
  max-width: 880px;
  margin: 0 auto 70px;
}

.pg-work-shop-detail {
  padding: 30px 30px 50px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

.pg-work-shop-detail + .pg-work-shop-detail {
  margin-top: 60px;
}

.pg-work-shop-detail__title {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #A73837;
  margin-bottom: 35px;
}

.pg-work-shop-detail__data {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
}

.pg-work-shop-detail__data-image {
  width: 250px;
  height: auto;
  aspect-ratio: 1/1;
  max-width: 31%;
  flex-shrink: 0;
  overflow: hidden;
}

.pg-work-shop-detail__data-image img {
  width: 100%;
  height: auto;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.pg-work-shop-detail__data-text {
  border-top: 1px solid #E6E6E6;
  width: 100%;
}

.pg-work-shop-detail__data-item {
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}

.pg-work-shop-detail__data-item p {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 4px 0;
}

.pg-work-shop-detail__data-label {
  width: 100px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  text-align: center;
  height: 35px;
  background: #999;
}

.pg-work-shop-detail__text p {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.05em;
  margin: 23px 0;
}

.pg-work-shop-detail__text p:first-child {
  margin-top: 0;
}

.pg-work-shop-detail__text p:last-child {
  margin-bottom: 0;
}

.pg-work-shop-detail__text-more {
  overflow: hidden;
  height: 0;
  transition: all 0.5s;
}

.pg-work-shop-detail__text-more p:first-child {
  padding-top: 23px;
}

.pg-work-shop-detail__more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  margin-top: 34px;
  cursor: pointer;
  transition: all 0.2s;
}

.pg-work-shop-detail__more:hover {
  opacity: 0.5;
}

.pg-work-shop-detail__more span {
  position: relative;
  padding-right: 24px;
  color: #754C24;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.pg-work-shop-detail__more span:before,
.pg-work-shop-detail__more span:after {
  content: "";
  width: 12px;
  height: 1px;
  background: #754C24;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pg-work-shop-detail__more span:after {
  transform: translateY(-50%) rotate(90deg);
}

.pg-work-shop-detail__more span:last-child {
  display: none;
}

.pg-work-shop-detail__more.is-accordion-open span:first-child {
  display: none;
}

.pg-work-shop-detail__more.is-accordion-open span:last-child {
  display: block;
}

.pg-work-shop-detail__more.is-accordion-open span:after {
  transform: translateY(-50%) rotate(180deg);
}

.pg-work-shop-detail__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: #754C24;
  gap: 19px;
  margin-top: 50px;
}

.pg-work-shop-detail__button span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/* === project ===  */
.p-about-section {
  padding-bottom: 120px;
}

.p-about-section .c-section-title {
  top: 145px;
}

.p-about {
  padding: 135px 0 112px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-about p {
  font-size: 18px;
  line-height: 50px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-about p.u-text-en {
  font-size: 17px;
  line-height: 44px;
}

.p-about .c-button {
  margin-top: 10px;
}

.p-about-section__slides {
  display: flex;
  overflow: hidden;
  margin-left: -20px;
  margin-right: -20px;
}

.p-about-section__slides.is-loaded .p-about-section__slide {
  animation-name: loop-slide; /* アニメーション名 */
  animation-duration: 59990s; /* 開始から終了までの所要時間 */
  animation-iteration-count: infinite; /* アニメーションのループ回数 */
  animation-timing-function: linear; /* 動きの加減速 */
  animation-delay: 1s; /* アニメーションが開始するまでの遅延時間 */
  animation-fill-mode: both; /* アニメーション開始前・終了後の挙動 */
  animation-duration: 20s;
}

.p-about-section__slide {
  display: flex;
  gap: 30px;
  padding-right: 30px;
  white-space: nowrap;
  width: auto;
  position: relative;
}

.p-about-section__slide img {
  display: block;
  width: 280px;
  max-width: unset;
}

.p-contact {
  margin-top: 50px;
}

.p-contact .c-text {
  font-size: 17px;
  letter-spacing: 0.05em;
}

.p-mainvisual {
  position: relative;
  background: url(../images/mv-bg.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.p-mainvisual__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 66px;
  height: 100%;
  padding: 46px;
  padding-top: 108px;
}

.p-mainvisual__text-1,
.p-mainvisual__text-2,
.p-mainvisual__text-3 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  line-height: 2em;
  position: absolute;
  top: 30px;
  letter-spacing: 0.1em;
}

.p-mainvisual__text-1 {
  font-size: 13px;
  left: 70px;
}

.p-mainvisual__text-2 {
  font-size: 10px;
  right: 182px;
}

.p-mainvisual__text-3 {
  font-size: 10px;
  right: 40px;
}

.p-mainvisual__logo {
  transform: scale(1.1);
  transition: all 1s ease;
}

.p-mainvisual__logo.in-view {
  transform: scale(1);
}

.p-mainvisual__lists {
  display: flex;
  gap: 5px;
  flex-direction: column;
  padding-left: 14px;
  width: 250px;
  position: relative;
}

.p-mainvisual__link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
}

.p-mainvisual__images {
  position: absolute;
  width: calc(100% - 0px);
  height: 100%;
  top: 63px;
  left: 38.5%;
  width: 72.8334%;
  max-width: 878px;
}

.p-mainvisual__images img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  animation-name: bgfade;
  animation-fill-mode: backwards;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: normal;
  transition-delay: 0;
}

.p-mainvisual__images img:nth-child(1) {
  animation-delay: 0;
}

.p-mainvisual__images img:nth-child(2) {
  animation-delay: 1.5s;
}

.p-mainvisual__images img:nth-child(3) {
  animation-delay: 3s;
}

.p-mainvisual__images img:nth-child(4) {
  animation-delay: 4.5s;
}

.p-menu {
  margin-left: auto;
}

.p-menu__lists {
  display: flex;
  gap: 2em;
}

.p-menu__link {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #FFFFFF;
  display: block;
  transition: all 0.2s;
  white-space: nowrap;
}

.p-menu__link._current {
  color: #999999;
}

.p-menu__link._current:hover {
  color: #999999;
}

.p-menu__link:hover {
  color: #FFFFFF;
  opacity: 1;
}

.p-menu__contact {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
}

.p-news-section {
  background: url(../images/news-bg.png) no-repeat center center;
  background-size: cover;
  padding-top: 106px;
  padding-bottom: 180px;
  overflow: hidden;
}

.p-news-section .c-section-title {
  color: #fff;
}

.p-news-section .c-news-cards {
  min-height: 260px;
}

.p-pickup-section {
  padding-top: 115px;
  padding-bottom: 190px;
  overflow: hidden;
  background: #F7F7F7;
}

.p-pickup-section .c-section-title {
  z-index: 2;
}

.p-pickup-slider {
  overflow: visible;
}

.p-pickup-slider:after {
  content: "";
  width: 100vw;
  height: 102%;
  background: #F7F7F7;
  display: block;
  position: absolute;
  top: -1%;
  right: 100%;
  z-index: 10;
}

.p-pickup-slider .swiper-slide {
  pointer-events: initial;
}

.p-pickup-slider__wrapper {
  display: flex;
  white-space: nowrap;
}

.p-pickup-slider__slide {
  width: 35.4vw;
  aspect-ratio: 453/340;
  max-width: 453px;
}

.p-pickup-slider__slide img {
  max-width: unset;
  display: block;
  width: 100%;
  height: auto;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pickup-slider__link {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.p-pickup-slider__link img {
  transition: all 0.5s;
}

.p-pickup-slider__link:hover {
  opacity: 1;
}

.p-pickup-slider__link:hover img {
  transform: scale(1.05);
}

.swiper-button-prev._prev-pickup,
.swiper-button-next._next-pickup {
  position: absolute;
  top: -74px;
  left: auto;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 1px solid #333;
  transform: unset;
  margin: 0;
}

.swiper-button-prev._prev-pickup:after,
.swiper-button-next._next-pickup:after {
  display: none;
}

.swiper-button-prev._prev-pickup:before,
.swiper-button-next._next-pickup:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-prev._prev-pickup {
  right: 70px;
  transform: rotate(180deg);
}

.swiper-button-next._next-pickup {
  right: 0;
}

.p-privacy-policy {
  margin-bottom: 100px;
}

.p-privacy-policy__title {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 70px;
}

.p-privacy-policy__item {
  padding-left: 32px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  border-bottom: 1px solid #999999;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.p-privacy-policy__item:last-child {
  border: none;
}

.p-privacy-policy__item:before {
  font-size: 18px;
  font-weight: 600;
  color: #8CAFC0;
  position: absolute;
  display: block;
  top: 0;
  left: 4px;
}

.p-privacy-policy__item:nth-child(1):before {
  content: "1";
}

.p-privacy-policy__item:nth-child(2):before {
  content: "2";
}

.p-privacy-policy__item:nth-child(3):before {
  content: "3";
}

.p-privacy-policy__item:nth-child(4):before {
  content: "4";
}

.p-privacy-policy__item:nth-child(5):before {
  content: "5";
}

.p-privacy-policy__item:nth-child(6):before {
  content: "6";
}

.p-privacy-policy__item:nth-child(7):before {
  content: "7";
}

.p-privacy-policy__item:nth-child(8):before {
  content: "8";
}

.p-privacy-policy__item:nth-child(9):before {
  content: "9";
}

.p-privacy-policy__item:nth-child(10):before {
  content: "10";
}

.p-privacy-policy__item:nth-child(11):before {
  content: "11";
}

.p-privacy-policy__item:nth-child(12):before {
  content: "12";
}

.p-privacy-policy__item:nth-child(13):before {
  content: "13";
}

.p-privacy-policy__item:nth-child(14):before {
  content: "14";
}

.p-privacy-policy__item:nth-child(15):before {
  content: "15";
}

.p-service-section {
  background: url(../images/service-bg.png) no-repeat center center;
  background-size: cover;
  padding-top: 115px;
  padding-bottom: 190px;
}

.p-service-section .c-section-title {
  color: #fff;
}

.p-service {
  padding-top: 110px;
  padding-bottom: 190px;
}

.p-service-links {
  display: flex;
  gap: 58px;
}

.p-service-link {
  width: calc((100% - 116px) / 3);
  display: flex;
  flex-direction: column;
}

.p-service-link__title {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 3px;
}

.p-service-link__image-wrap {
  position: relative;
}

.p-service-link__image-wrap:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: 25px;
  right: -18px;
  transform: rotate(-45deg);
  transform-origin: 50%;
}

.p-service-link__image {
  width: 100%;
  height: auto;
  aspect-ratio: 32/24;
  margin-bottom: 15px;
  overflow: hidden;
}

.p-service-link__image img {
  transition: all 0.5s;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.p-service-link__text {
  display: block;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #fff;
}

@media screen and (min-width: 751px) {
  .p-menu__link:hover {
    color: #999999;
  }
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .p-service-link:nth-child(1) br {
    display: none;
  }
}
@media screen and (min-width: 751px) and (max-width: 870px) {
  .p-service-link:nth-child(2) br {
    display: none;
  }
}
@media screen and (min-width: 751px) and (max-width: 1180px) {
  .p-service-link:nth-child(3) br {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1090px) {
  .p-service-links {
    gap: 5vw;
  }
  .p-service-link {
    width: calc((100% - 10vw) / 3);
  }
  .p-service-link__title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 0 20px;
  }
  .l-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-menu__lists {
    gap: 1.5em;
  }
  .p-menu__link {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 900px) {
  body {
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  body::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
}
@media screen and (max-width: 800px) {
  /* モーダル */
  /* モーダルがactiveの時 */
  /* モーダル背景のオーバーレイ部分 */
  /* モーダルのコンテンツ */
  .swiper-modal_inner {
    padding: 0;
  }
  /* 閉じるボタン */
  .swiper-modal__close-btn {
    position: fixed;
    right: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
  }
  .swiper-modal__close-btn:before,
  .swiper-modal__close-btn:after {
    width: 45px;
  }
  .swiper-modalInSlider-slide {
    padding: 0;
  }
  .swiper-modalInSlider {
    padding: 68px 30px 84px;
    box-sizing: border-box;
    max-height: 100vh;
    max-height: 100svh;
  }
  .swiper-button-wrap {
    width: 98px;
    max-width: 98px;
    height: 40px;
    top: auto;
    bottom: 26px;
    transform: translateX(-50%);
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 22px;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 12px;
    height: 12px;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
  .swiper-button-prev:after {
    left: 3px;
  }
  .swiper-button-next:after {
    right: 3px;
  }
  .c-swiper-modal-detail {
    padding: 25px;
    height: calc(100svh - 152px);
    flex-direction: column;
    gap: 10px;
  }
  .c-swiper-modal-detail._sp-padding-small {
    padding: 20px 15px;
  }
  .c-swiper-modal-detail__image {
    width: 190px;
    height: 190px;
    margin: 0 auto 7px;
    max-width: 100%;
  }
  .c-swiper-modal-detail__texts p {
    font-size: 14px;
    line-height: 22px;
  }
  .c-swiper-modal-detail__texts p.text-large {
    font-size: 17px;
  }
  .c-swiper-modal-detail__time {
    font-size: 15px;
    line-height: 0px;
  }
  .c-swiper-modal-detail__title-text {
    font-size: 17px;
    line-height: 23px;
  }
  .c-swiper-modal-detail__title-sub {
    font-size: 15px;
    line-height: 20px;
  }
  .c-swiper-modal-detail__number {
    font-size: 18px;
    line-height: 25px;
  }
  .c-swiper-modal-detail__names {
    gap: 3px;
  }
  .c-swiper-modal-detail__names span:first-child {
    font-size: 17px;
    line-height: 25px;
  }
  .c-swiper-modal-detail__names span:last-child {
    font-size: 12px;
  }
  .c-swiper-modal-detail__member-data-list {
    padding: 10px 0;
  }
  .c-swiper-modal-detail__member-data-list span {
    font-size: 13px;
  }
  .c-swiper-modal-detail__member-data-list span:first-child {
    width: 100px;
  }
  .c-swiper-modal-detail__member-data-list span:last-child {
    font-size: 13px;
  }
}
@media screen and (max-width: 750px) {
  .l-header {
    height: 50px;
  }
  .is-home .l-header {
    top: -50px;
  }
  .is-scroll .l-header {
    top: 0;
  }
  .l-header__inner {
    padding: 0 20px;
  }
  .l-header__logo {
    width: 91px;
  }
  .l-footer {
    padding: 43px 20px 34px;
  }
  .l-footer__banner {
    gap: 15px 17px;
    justify-content: flex-start;
    padding-bottom: 40px;
  }
  .l-footer__banner a {
    width: 159px;
    height: 55px;
  }
  .l-footer__bottom {
    padding-top: 19px;
  }
  .l-footer__bottom-link {
    font-size: 11px;
  }
  .l-footer__copy {
    font-size: 11px;
    margin-top: 15px;
  }
  .l-footer__sns {
    position: relative;
    margin: 0 auto 30px;
    width: 159px;
  }
  .l-wrap {
    margin-top: 50px;
  }
  .l-section._page-type-1 {
    padding-top: 30px;
    padding-bottom: 70px;
  }
  .l-section._page-type-2 {
    padding-top: 30px;
    padding-bottom: 70px;
  }
  .l-section._page-type-2:before {
    height: 325px;
    top: 50px;
  }
  .l-section__inner {
    padding-left: 0;
  }
  .u-sp-none {
    display: none !important;
  }
  .c-anchor {
    position: absolute;
    top: -50px;
  }
  .c-anchor._reason {
    top: 0;
  }
  .c-anchor._flow {
    top: -50px;
  }
  .c-box {
    padding: 17px;
  }
  .c-button {
    font-size: 15px;
    width: 225px;
    height: 38px;
  }
  .c-button__icon {
    right: 10px;
    width: 18px;
    overflow: hidden;
  }
  .c-news-cards {
    gap: 25px;
  }
  .c-news-card {
    width: 100%;
  }
  .c-news-card__link {
    padding: 10px;
    gap: 14px;
  }
  .c-news-card__image {
    width: 97px;
  }
  .c-news-card__text {
    gap: 3px 10px;
  }
  .c-news-card__date {
    font-size: 12px;
  }
  .c-news-card__name {
    font-size: 11px;
    line-height: 20px;
  }
  .c-news-card__category {
    font-size: 11px;
  }
  .c-news-card__title {
    -webkit-line-clamp: 2;
    margin-top: 5px;
    font-size: 11px;
    line-height: 17px;
    height: 3em;
  }
  .c-news-all {
    position: relative;
    left: 0;
    margin: 30px auto 0;
    width: 60px;
    height: 60px;
  }
  .c-news-all__link {
    width: 60px;
    height: 60px;
  }
  .c-news-all__link span {
    font-size: 15px;
  }
  .c-news-all__icon {
    width: 20px;
    height: 4px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
  }
  .c-news-all__icon svg {
    position: absolute;
    right: 0;
    top: 0;
  }
  .c-links a {
    font-size: 12px;
  }
  .c-links a:before {
    top: 0.5em;
  }
  .c-page-header {
    height: 180px;
  }
  .c-page-header__title {
    gap: 10px;
  }
  .c-page-header__title span:first-child {
    font-size: 32px;
  }
  .c-page-header__title span:last-child {
    font-size: 12px;
  }
  .c-page-navi {
    margin-top: 30px;
    height: 30px;
    max-width: 85%;
  }
  .c-page-navi__button svg {
    height: 32px;
  }
  .c-page-navi__button._index svg {
    height: 23px;
  }
  .c-scroll-arrow {
    width: 100px;
    right: 22px;
  }
  .c-scroll-arrow__line-wrap {
    width: 100px;
  }
  .c-scroll-arrow__line {
    width: 100px;
    height: 1px;
    animation-name: scrollSp;
  }
  .c-table tr:last-child th,
  .c-table tr:last-child td {
    padding-bottom: 7px;
  }
  .c-table {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .c-table tr {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
  }
  .c-table th {
    padding: 0 5px;
    min-width: 5em;
  }
  .c-table td {
    padding: 0 5px;
  }
  .c-section-title {
    position: static;
    transform: rotate(0deg);
    margin-bottom: 20px;
    font-size: 45px;
    letter-spacing: 0.075em;
  }
  .c-section-title span {
    display: block;
    margin-left: 0;
    font-size: 18px;
    line-height: 30px;
    margin-top: 8px;
  }
  .c-section-title._sticky._management {
    transform: rotate(0deg) translate(0px, 0);
    margin-left: 0;
  }
  .c-section-title._sticky._management span {
    top: 0;
  }
  .c-section-title._sticky {
    height: auto;
    margin-left: 0;
    position: static !important;
    height: auto;
    line-height: 1em;
  }
  .c-section-title._sticky .c-section-title__inner {
    transform: rotate(0deg);
    position: static;
  }
  .pg-actor {
    flex-direction: column;
    gap: 20px;
  }
  .pg-actor p {
    font-size: 12px;
    line-height: 20px;
  }
  .pg-actor p + p {
    margin-top: 20px;
  }
  .pg-actor__image {
    width: 100%;
    position: static;
  }
  .pg-actor__texts {
    width: 100%;
  }
  .pg-actor__box {
    margin-bottom: 20px;
  }
  .pg-actor__title {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 35px;
  }
  .pg-actor__name {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .pg-actor__name span:first-child {
    font-size: 12px;
  }
  .pg-actor__name span:last-child {
    font-size: 17px;
  }
  .pg-actor__gallery {
    gap: 10px;
  }
  .pg-actor__gallery-item {
    width: calc((100% - 30px) / 4);
  }
  .pg-actor__news-item {
    gap: 6px 22px;
    padding: 14px 0 12px;
  }
  .pg-actor__news-date {
    font-size: 12px;
  }
  .pg-actor__news-category {
    font-size: 11px;
  }
  .pg-actor__news-title {
    font-size: 12px;
    line-height: 22px;
  }
  .pg-actor__works-item li {
    font-size: 11px;
    line-height: 20px;
  }
  .pg-actor__works-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .pg-company-detail {
    padding: 20px 15px 30px;
  }
  .pg-company-detail + .pg-company-detail {
    margin-top: 30px;
  }
  .pg-company-detail__title {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .pg-company-map {
    height: 240px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .pg-company-map__data {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .pg-company-map__data-item span {
    font-size: 14px;
  }
  .pg-company-map__data-item p {
    font-size: 12px;
  }
  .c-google-map-button {
    font-size: 12px;
    gap: 4px;
    padding: 0 2px 2px 2px;
    align-items: center;
  }
  .c-google-map-button svg {
    width: 9px;
  }
  .pg-company-related__item {
    display: block;
    min-height: 87px;
    position: relative;
    margin-top: 27px;
    padding-top: 14px;
  }
  .pg-company-related__item p {
    font-size: 11px;
    line-height: 18px;
    margin-left: 115px;
  }
  .pg-company-related__image {
    position: absolute;
    top: 52px;
    left: 0;
    width: 100px;
  }
  .pg-company-related__name {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .pg-company-related__link {
    font-size: 12px;
    margin-top: 10px;
    gap: 8px;
  }
  .pg-company-related__link svg {
    width: 10px;
  }
  .pg-management-lists {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 14px 0;
    border: none;
  }
  .pg-management-lists a {
    width: 33.33%;
    line-height: 30px;
    font-size: 12px;
    border-left: 1px solid #333;
    margin-right: -1px;
  }
  .pg-management__cards {
    gap: 20px 15px;
  }
  .pg-management__card {
    width: calc((100% - 15px) / 2);
  }
  .pg-management__link {
    padding: 10px 10px 15px;
  }
  .pg-management__text-1 {
    font-size: 12px;
  }
  .pg-management__text-2 {
    font-size: 15px;
  }
  .pg-management__text-3 {
    font-size: 12px;
  }
  .pg-news-navi {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 14px 0;
    border: none;
  }
  .pg-news-navi a {
    width: 25%;
    line-height: 30px;
    font-size: 12px;
    border-left: 1px solid #fff;
    margin-right: -1px;
    padding: 0;
  }
  .pg-news-detail {
    padding: 15px 15px 40px;
  }
  .pg-news-detail__head {
    margin-bottom: 20px;
    gap: 12px 10px;
  }
  .pg-news-detail__head-image {
    width: 60px;
    height: 60px;
  }
  .pg-news-detail__head-meta {
    width: calc(100% - 70px);
    flex-shrink: 0;
    gap: 0 10px;
  }
  .pg-news-detail__head-date {
    font-size: 12px;
  }
  .pg-news-detail__head-name {
    font-size: 11px;
    line-height: 18px;
    padding: 0 12px;
  }
  .pg-news-detail__head-category {
    font-size: 11px;
  }
  .pg-news-detail__head-title {
    font-size: 14px;
    line-height: 19px;
    padding: 15px 0;
  }
  .pg-news-detail__body {
    font-size: 12px;
    line-height: 17px;
  }
  .pg-news-detail__body p {
    font-size: 12px;
    line-height: 17px;
    margin: 17px 0;
  }
  .pg-news-detail__body ul {
    margin: 17px;
  }
  .pg-news-detail__body ol {
    margin: 17px;
  }
  .pg-news-detail__body h2 {
    font-size: 18px;
  }
  .pg-news-detail__body h3 {
    font-size: 16px;
  }
  .pg-news-detail__body h4 {
    font-size: 14px;
  }
  .pg-news-detail__body h5 {
    font-size: 12px;
  }
  .pg-site-policy {
    padding: 20px 15px 30px;
  }
  .pg-site-policy__title {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .pg-site-policy__item {
    margin-top: 25px;
    padding-top: 15px;
  }
  .pg-site-policy__item h2 {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .pg-site-policy__item p {
    font-size: 11px;
    line-height: 18px;
  }
  .pg-work-shop__read {
    font-size: 13px;
    line-height: 25px;
    margin: 0 auto 27px;
  }
  .pg-work-shop-detail + .pg-work-shop-detail {
    margin-top: 30px;
  }
  .pg-work-shop-detail__title {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .pg-work-shop-detail__data {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  .pg-work-shop-detail__data-image {
    max-width: unset;
    width: 180px;
  }
  .pg-work-shop-detail__data-item {
    flex-direction: column;
    gap: 5px;
    padding: 13px 0 10px;
  }
  .pg-work-shop-detail__data-item p {
    font-size: 12px;
  }
  .pg-work-shop-detail__data-label {
    font-size: 11px;
    line-height: 25px;
    height: 25px;
    width: 75px;
  }
  .pg-work-shop-detail__text p {
    font-size: 12px;
    line-height: 1.5em;
    margin: 17px 0;
  }
  .pg-work-shop-detail__text-more p:first-child {
    padding-top: 17px;
  }
  .pg-work-shop-detail__more {
    height: 35px;
    margin-top: 20px;
  }
  .pg-work-shop-detail__more span {
    padding-right: 18px;
    font-size: 12px;
  }
  .pg-work-shop-detail__more span:before,
  .pg-work-shop-detail__more span:after {
    width: 8px;
  }
  .pg-work-shop-detail__button {
    height: 50px;
    margin-top: 30px;
    gap: 13px;
  }
  .pg-work-shop-detail__button span {
    font-size: 13px;
  }
  .pg-work-shop-detail__button img {
    width: 23px;
  }
  .p-about-section {
    padding-bottom: 65px;
    padding-top: 60px;
  }
  .p-about {
    padding: 0 0 42px;
    gap: 30px;
  }
  .p-about p {
    font-size: 14px;
    line-height: 30px;
  }
  .p-about p.u-text-en {
    font-size: 13px;
    line-height: 24px;
  }
  .p-about-section__slide {
    gap: 14px;
    padding-right: 14px;
  }
  .p-about-section__slide img {
    width: 130px;
  }
  .p-contact .c-title {
    margin-bottom: 18px;
  }
  .p-contact .c-text {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .p-mainvisual {
    min-height: 430px;
    overflow: hidden;
  }
  .p-mainvisual__inner {
    gap: 58px;
    padding: 20px;
    padding-top: 96px;
  }
  .p-mainvisual__text-1 {
    font-size: 11px;
    top: 17px;
    left: 20px;
  }
  .p-mainvisual__text-2 {
    font-size: 9px;
    width: 9px;
    top: 17px;
    right: 0;
  }
  .p-mainvisual__text-2 span {
    display: block;
    transform: rotate(90deg);
    transform-origin: left top;
  }
  .p-mainvisual__text-3 {
    font-size: 9px;
    width: 9px;
    top: 123px;
    right: 0;
  }
  .p-mainvisual__text-3 span {
    display: block;
    transform: rotate(90deg);
    transform-origin: left top;
  }
  .p-mainvisual__logo {
    width: 217px;
    margin-left: 4px;
  }
  .p-mainvisual__lists {
    gap: 6px;
    padding-left: 0;
  }
  .p-mainvisual__link {
    font-size: 16px;
  }
  .p-mainvisual__images {
    width: 480px;
    height: 480px;
    left: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 50px;
  }
  .p-menu__button {
    position: fixed;
    top: 0;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 11;
    cursor: pointer;
    transition: all 0.5s;
  }
  .is-home .p-menu__button {
    top: -50px;
  }
  .is-scroll .p-menu__button {
    top: 0;
  }
  .is-menu-open .p-menu__button {
    top: 0;
  }
  .p-menu__button-line,
  .p-menu__button-line:before,
  .p-menu__button-line:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 1px;
    transition: all 0.2s;
  }
  .p-menu__button-line:before {
    content: "";
    top: -4px;
    background: #fff;
  }
  .p-menu__button-line:after {
    content: "";
    top: 6px;
    background: #fff;
  }
  .is-menu-open .p-menu {
    opacity: 1;
    pointer-events: initial;
  }
  .is-menu-open .p-menu__button-line:before {
    transform: translate(-50%, -50%) rotate(198deg);
    top: 50%;
    width: 32px;
    background: #fff;
  }
  .is-menu-open .p-menu__button-line:after {
    transform: translate(-50%, -50%) rotate(-198deg);
    top: 50%;
    width: 32px;
    margin-left: 0;
    background: #fff;
  }
  .p-menu {
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.9);
    padding-top: 50px;
    transition: all 0.5s;
  }
  .p-menu * {
    pointer-events: none;
  }
  .p-menu .p-menu__lang {
    display: none;
  }
  .p-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 50px;
  }
  .p-menu__lists {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 0 auto 40px;
    overflow: auto;
    height: 100%;
    padding: 67px 20px 100px;
  }
  .p-menu__link {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
  }
  .is-menu-open .p-menu {
    left: 0;
    opacity: 1;
    pointer-events: initial;
  }
  .is-menu-open .p-menu * {
    pointer-events: initial;
  }
  .p-news-section {
    padding-top: 47px;
    padding-bottom: 50px;
    background: url(../images/news-bg_sp.png) no-repeat center bottom;
    background-size: cover;
  }
  .p-news-section .c-news-cards {
    margin-top: 36px;
  }
  .p-pickup-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .p-pickup-slider {
    margin-top: 35px;
  }
  .p-pickup-slider:after {
    display: none;
  }
  .swiper-button-prev._prev-pickup,
  .swiper-button-next._next-pickup {
    width: 30px;
    height: 30px;
    top: -67px;
  }
  .swiper-button-prev._prev-pickup:before,
  .swiper-button-next._next-pickup:before {
    width: 8px;
    height: 8px;
  }
  .swiper-button-prev._prev-pickup {
    right: 40px;
  }
  .p-privacy-policy__title {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 30px;
  }
  .p-privacy-policy__item {
    font-size: 12px;
    padding-left: 19px;
    line-height: 20px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  .p-privacy-policy__item:before {
    font-size: 15px;
    left: 0;
  }
  .p-service-section {
    padding-top: 40px;
    padding-bottom: 84px;
  }
  .p-service-links {
    flex-direction: column;
    gap: 28px;
  }
  .p-service-link {
    min-height: 120px;
    padding-left: 147px;
    display: block;
    position: relative;
    width: 100%;
  }
  .p-service-link__title {
    font-size: 18px;
    line-height: 1.2em;
  }
  .p-service-link__image-wrap {
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-service-link__image-wrap:after {
    width: 28px;
    bottom: 19px;
    right: -9px;
  }
  .p-service-link__image {
    width: 120px;
    height: 120px;
  }
  .p-service-link__text {
    font-size: 11px;
    line-height: 20px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .c-table th {
    font-size: 12px;
    padding: 7px 0;
  }
  .c-table th br {
    display: none;
  }
  .c-table td {
    font-size: 11px;
    padding: 0 0 7px;
  }
}
@keyframes bodyFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bodyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    left: -140px;
  }
  100% {
    left: 140px;
  }
}
@keyframes scrollSp {
  0% {
    left: -120px;
  }
  100% {
    left: 120px;
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes bgfade {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}