﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Noto+Sans+JP:wght@300;400&family=Open+Sans:wght@300&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
}
@media (prefers-reduced-motion: no-preference) {
  :where(html: focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(button) {
  all: unset;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}
:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}
:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}
:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body {
  position: relative;
  color: #000;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  padding-top: 124px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 21.333333333333333vw;
    font-size: 4vw;
    width: 100%;
    overflow-x: hidden;
  }
  html {
    width: 100%;
    overflow-x: hidden;
  }
}
.slide-animation {
  animation: fadezoom 8s 0s forwards ease-in-out;
}
.slide-animation_reverse {
  animation: fadezoomout 8s 0s forwards ease-in-out;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes fadezoomout {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes widthchange {
  0% {
    width: 0%;
  }
  100% {
    width: 800px;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
.js-fade, .js-fade-late {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.l-header {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 124px;
  padding: 20px;
}
.l-header-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background: #fff;
}
.l-header--logo {
  width: 280px;
}
.l-header--logo img {
  width: 100%;
  height: auto;
}
.l-header--nav-list {
  display: flex;
  justify-content: flex-end;
}
.l-header--nav-list-itm {
  position: relative;
}
.l-header--nav-list-itm-link {
  display: block;
  padding: 2px 20px;
  text-align: center;
  text-decoration: none;
  position: relative;
  font-size: 18px;
  font-weight: 400;
}
.l-header--nav-list-itm-link span {
  display: block;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 769px), print {
  .l-header--nav-list-itm-link {
    transition: 0.3s;
    position: relative;
  }
  .l-header--nav-list-itm-link::after {
    transition: 0.6s;
    content: "";
    width: 30%;
    height: 1.5px;
    border-radius: 1px;
    background: #efbd4d;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
  }
  .l-header--nav-list-itm-link:hover {
    color: #906505;
  }
  .l-header--nav-list-itm-link:hover::after {
    opacity: 1;
    bottom: -9px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    height: 21.3333333333vw;
    padding: 4.2666666667vw;
    position: relative;
  }
  .l-header--logo {
    width: 60vw;
  }
  .l-header--nav {
    height: 100%;
  }
  .l-header--nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100vw;
    z-index: 3;
    padding-bottom: 10vw;
  }
  .l-header--nav-list-itm-link {
    border-bottom: solid 1px #231815;
    width: 80%;
    padding: 3vw;
    margin: 0 auto;
    font-size: 4vw;
  }
  .l-header--nav-list-itm-link span {
    font-size: 3.2vw;
  }
  .l-header--nav-spbtn {
    width: 16vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.6vw;
    height: 100%;
  }
  .l-header--nav-spbtn span {
    display: block;
    width: 60%;
    height: 1px;
    background: #efbd4d;
  }
  .l-header--nav.is-open .l-header--nav-list {
    display: flex;
    flex-direction: column;
  }
}
.l-footer {
  background: #000 url("/assets/img/common/footer_bg.svg") no-repeat top 100px center / 1100px auto;
}
.l-footer-inner {
  width: 1100px;
  margin: 0 auto;
  padding: 87px 20px;
  display: flex;
  justify-content: space-between;
}
.l-footer-copy {
  background: #343434;
}
.l-footer-copy-inner {
  width: 1100px;
  margin: 0 auto;
  height: 130px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-footer-copy-link-list {
  display: flex;
  align-items: center;
  gap: 80px;
}
.l-footer-copy-link-list-itm-link {
  color: #fff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}
.l-footer-copy-link-list-itm-link:hover {
  text-decoration: underline;
}
.l-footer-copy-txt {
  font-size: 16px;
  color: #fff;
}
.l-footer-address {
  font-size: 16px;
  color: #fff;
  display: flex;
  gap: 16px;
}
.l-footer-address + .l-footer-address {
  margin-top: 50px;
}
.l-footer-address-dt {
  border-right: solid 1px #fff;
  width: 55px;
  flex-shrink: 0;
  flex-grow: 0;
}
.l-footer-address-dd {
  padding-bottom: 20px;
}
.l-footer-address-dd-txt + .l-footer-address-dd-txt {
  margin-top: 16px;
}
.l-footer-info {
  flex-grow: 1;
}
.l-footer-info-logo {
  margin-bottom: 50px;
}
.l-footer-info-logo img {
  width: 280px;
  height: auto;
}
.l-footer-nav {}
.l-footer-nav-list-itm-link {
  color: #fff;
  font-family: "Inter", sans-serif;
  display: block;
  text-decoration: none;
  font-size: 26px;
  font-weight: 900 !important;
  position: relative;
  line-height: 1.3;
}
.l-footer-nav-list-itm-link span {
  font-size: 16px;
  font-weight: 400;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  display: block;
  padding: 0 6px;
}
.l-footer-nav-list-itm-link:hover {
  text-decoration: none !important;
}
.l-footer-nav-list-itm-link::after {
  content: "";
  width: 100%;
  height: 0;
  background: #000;
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: 0.3s;
}
.l-footer-nav-list-itm-link:hover::after {
  height: 1px;
  background: #fff;
}
.l-footer-nav-list-itm + .l-footer-nav-list-itm {
  margin-top: 31px;
}
@media screen and (min-width: 769px), print {
  .l-footer-nav-list a {
    transition: 0.5s;
  }
  .l-footer-nav-list a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-inner {
    width: 100%;
    padding: 9.3333333333vw 5.3333333333vw 5vw;
    flex-direction: column;
  }
  .l-footer-info {
    padding-bottom: 8vw;
    margin-bottom: 0;
    /*border-bottom: solid 1px #231815;*/
  }
  .l-footer-info-logo {
    margin-bottom: 8.3333333333vw;
    text-align: center;
  }
  .l-footer-info-logo img {
    width: 67%;
    margin-left: 0;
  }
  .l-footer-info-company-name {
    font-size: 4.8vw;
    margin-bottom: 3.7333333333vw;
    padding-left: 4.2666666667vw;
  }
  .l-footer-info-company-info {
    font-size: 3.7333333333vw;
    padding-left: 4.2666666667vw;
  }
  .l-footer-nav {
    margin-top: 0vw;
    padding: 0 4.2666666667vw 4.2666666667vw;
    border-left: none;
  }
  .l-footer-nav-list-itm-link {
    font-size: 3vw;
    padding: 0.8vw 0;
  }
  .l-footer-nav-list-sub-itm-link {
    font-size: 3.7333333333vw;
    padding: 0.8vw 0 0.8vw 1.6vw;
  }
  .l-footer--copy {
    font-size: 3.2vw;
    padding: 0 0 4.2666666667vw;
  }
  .l-footer-address {
    font-size: 3.2vw;
    gap: 4vw;
    margin: 0 5vw;
  }
  .l-footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5vw 3vw;
  }
  .l-footer-nav-list-itm {
    width: 33%;
    margin-top: 0 !important;
    text-align: left;
  }
  .l-footer-nav-list-itm:nth-child(3){
    width: 24%;
  }
  .l-footer-copy-inner {
    width: 100%;
    height: auto;
    padding: 4vw;
    flex-direction: column;
    text-align: center;
  }
  .l-footer-copy-txt {
    font-size: 2.4vw;
    margin-top: 6vw;
  }
  .l-footer-address-dt {
    width: 13vw;
  }
  .l-footer-address-dd {
    padding-bottom: 5vw;
  }
  .l-footer-nav-list-itm-link {
    padding-left: 3vw;
  }
  .l-footer-nav-list-itm-link span {
    font-size: 2.7vw;
    font-weight: 400;
    padding: 0;
  }
  .l-footer-nav-list-itm-link::after {
    contnt: "";
    width: 3px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left:0;
    display: block;
  }
  .l-footer {
    background: #000 url(/assets/img/common/footer_bg.svg) no-repeat top 10vw center / 130% auto;
  }
  .l-footer-copy-link-list-itm-link {
    font-size: 3.2vw;
  }
  .l-footer-address + .l-footer-address {
    margin-top: 6vw;
  }
}
.l-contact {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.l-contact--tel {
  text-align: center;
}
.l-contact--tel-hdg {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 300;
}
.l-contact--tel-txt {
  font-size: 18px;
  font-weight: 300;
}
.r-nocontact .l-contact {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-contact {
    padding: 16vw 0 26.6666666667vw;
  }
  .l-contact--tel-hdg {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
  .l-contact--tel-txt {
    font-size: 3.7333333333vw;
  }
}
.l-pagetop {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: "Lato", sans-serif;
  font-size: 3px;
  color: transparent;
}
.l-pagetop__link {
  text-decoration: none;
  padding-top: 40px;
  display: block;
}
.l-pagetop__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 15px;
  background: url("/assets/img/common/to-top.svg") no-repeat center center/auto 100%;
}
@media screen and (min-width: 769px), print {
  .l-pagetop__link::before {
    transition: 0.5s;
  }
  .l-pagetop__link:hover::before {
    top: -4px;
  }
}
@media screen and (max-width: 768px) {
  .l-pagetop {
    width: 20vw;
    bottom: 20.3333333333vw;
    right: 2vw;
    text-align: right;
    font-size: 3.2vw;
  }
  .l-pagetop__link {
    padding-top: 6.4vw;
  }
  .l-pagetop__link::before {
    height: 5.3333333333vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.l-content-header-s img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.l-content-header-s-hdg {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.l-content-header-s-hdg::after {
  content: "";
  display: inline-block;
  width: 160px;
  height: 2.5px;
  background: #000;
  margin-left: 0.5em;
}
.l-content-header-s-hdg-sub {
  font-size: 37px;
}
.l-content-header-s-hdg-wrap {
  width: 1100px;
  margin: 28px auto 0;
  height: 190px;
  padding-left: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.l-content-header-s-hdg-wrap::after {
  content: "";
  display: block;
  width: 190px;
  height: 190px;
  background: url("/assets/img/common/logo_sy.svg") no-repeat center center/100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -170px;
  margin: auto;
}
.l-content-header-l {
  position: relative;
}
.l-content-header-l img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.l-content-header-l-hdg {
  font-size: 20px;
}
.l-content-header-l-hdg-wrap {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-content-header-l-hdg-wrap.r-bwrev {
  width: 372px;
  height: 172px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.5);
}
.l-content-header-l-hdg-wrap.r-bwrev .l-content-header-l-hdg-sub, .l-content-header-l-hdg-wrap.r-bwrev .l-content-header-l-hdg {
  color: #231815;
  margin: 0;
}
.l-content-header-l-hdg-sub {
  font-size: 51px;
  margin-bottom: 0;
  font-weight: 400;
}
.l-content-header-l-kv {
  overflow: hidden;
}
.l-content-header-lean {
  margin-top: 0;
  background: url("/assets/img/project/service/kv.png") no-repeat right center/auto 100%;
}
.l-content-header-lean-block {
  width: 1040px;
  padding: 10px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.l-content-header-lean-hdg {
  font-size: 27px;
  margin-bottom: 30px;
  padding-left: 0.3em;
}
.l-content-header-lean-hdg-sub {
  font-size: 51px;
  margin-bottom: 0;
  font-weight: 400;
}
.l-content-header-lean-hdg-lead {
  font-size: 23px;
  margin-bottom: 30px;
}
.l-content-header-lean-txt {
  font-size: 18px;
  line-height: calc(41 / 22);
}
.l-content-header-lined {
  border-top: solid 2px #231815;
}
.l-content-header-lined-hdg {
  width: 1100px;
  margin: 0 auto;
  border-left: solid 2px #231815;
  height: 150px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-content-header-lined-hdg-sub {
  font-size: 30px;
}
.l-content-header-lined-hdg-main {
  font-size: 20px;
  margin-top: 0.3em;
}
.l-content-lead {
  margin: 60px auto 0;
  max-width: 1100px;
  text-align: center;
}
.l-content-lead-pic {
  display: flex;
  justify-content: center;
  margin-bottom: 65px;
}
.l-content-lead-pic-img {
  width: 340px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.l-content-lead-pic-img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 135px;
  width: 100%;
  height: 1.5px;
  background: #000;
  animation: widthchange 2.5s ease-in-out forwards;
}
.l-content-lead-pic-img01 {
  width: 100%;
  height: auto !important;
  margin-bottom: 30px;
  animation: fadein 1.5s ease-in-out forwards;
  animation-delay: 2s;
  opacity: 0;
}
.l-content-lead-pic-img02 {
  width: 80% !important;
  height: auto !important;
  animation: fadein 1s ease-in-out forwards;
  animation-delay: 4s;
  opacity: 0;
  margin: 0 auto;
}
.l-content-lead-txt {
  font-size: 18px;
  line-height: calc(42 / 22);
}
.l-content-header-lined + .l-content-header-lined {
  margin-top: 100px;
}
.l-content-header-lined-hdg.r-txt {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1385px) {
  .l-content-header-lean {
    background: url("/assets/img/project/service/kv.png") no-repeat right 0 center/auto 100%;
  }
}
@media screen and (max-width: 1200px) {
  .l-content-header-lean {
    background: url("/assets/img/project/service/kv.png") no-repeat right -100px center/auto 100%;
  }
}
@media screen and (max-width: 1000px) {
  .l-content-header-lean {
    background: url("/assets/img/project/service/kv.png") no-repeat right -230px center/auto 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-content-header-s img {
    width: 100%;
    height: 21vw;
  }
  .l-content-header-s-hdg {
    font-size: 4.2666666667vw;
  }
  .l-content-header-s-hdg::after {
    display: inline-block;
    width: 50%;
    height: 0.5333333333vw;
  }
  .l-content-header-s-hdg-sub {
    font-size: 6.9333333333vw;
  }
  .l-content-header-s-hdg-wrap {
    width: 100%;
    margin: 6.6666666667vw auto 0;
    height: 30vw;
    padding-left: 26.6666666667vw;
  }
  .l-content-header-s-hdg-wrap::after {
    width: 30vw;
    height: 30vw;
    left: -7vw;
  }
  .l-content-header-l img {
    height: 40vw;
  }
  .l-content-header-l-hdg {
    font-size: 4.8vw;
  }
  .l-content-header-l-hdg-wrap.r-bwrev {
    width: 60%;
    height: 64%;
  }
  .l-content-header-l-hdg-sub {
    font-size: 9.6vw;
    margin-bottom: 0vw;
  }
  .l-content-header-lean {
    margin-top: 0;
    background: url("/assets/img/project/service/kv.png") no-repeat right bottom/119% auto;
    padding-bottom: 74vw;
  }
  .l-content-header-lean-block {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
  .l-content-header-lean-hdg {
    font-size: 5.3333333333vw;
    margin-bottom: 0;
  }
  .l-content-header-lean-hdg-sub {
    font-size: 10.1333333333vw;
    margin-bottom: 0;
  }
  .l-content-header-lean-hdg-lead {
    font-size: 5vw;
    margin: 4vw 0;
    position: relative;
    padding-top: 2vw;
  }
  .l-content-header-lean-hdg-lead::before {
    content: "";
    display: block;
    width: 90vw;
    height: 1.5px;
    background: #000;
    left: -0.5vw;
    top: -1.5vw;
    position: absolute;
  }
  .l-content-header-lean-txt {
    font-size: 3.7333333333vw;
  }
  .l-content-header-lined {
    border-top: solid 0.5333333333vw #231815;
  }
  .l-content-header-lined-hdg {
    width: 90%;
    border-left: solid 0.5333333333vw #231815;
    height: auto;
    padding: 0 8vw;
  }
  .l-content-header-lined-hdg-sub {
    font-size: 9.6vw;
  }
  .l-content-header-lined-hdg-main {
    font-size: 4.8vw;
  }
  .l-content-lead {
    margin: 12vw auto 0;
    max-width: 100%;
    text-align: center;
  }
  .l-content-lead-pic {
    margin-bottom: 9vw;
  }
  .l-content-lead-pic-img {
    width: 70%;
  }
  .l-content-lead-pic-img::after {
    left: 0;
    top: 28.8vw;
    height: 0.4vw;
  }
  .l-content-lead-pic-img01 {
    margin-bottom: 8vw;
  }
  .l-content-lead-txt {
    font-size: 4.2666666667vw;
  }
  .l-content-header-lined + .l-content-header-lined {
    margin-top: 16vw;
  }
  .l-content-header-lined-hdg.r-txt {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8vw;
  }
}
.l-block {
  margin-top: 60px;
  position: relative;
}
.l-block.r-feature {
  background: rgba(115, 214, 142, 0.2);
  padding: 70px 0;
}
.l-block-inner {
  width: 1100px;
  margin: 0 auto;
  margin-right: auto !important;
  margin-left: auto !important;
}
.l-block-inner.r-max1200 {
  max-width: 1200px;
  min-width: 1100px;
  width: auto;
}
.l-block-inner-max {
  width: 100%;
  margin: 0 auto;
  margin-right: auto !important;
  margin-left: auto !important;
}
.l-block-inner.r-line {
  width: auto;
  display: inline-block;
  position: relative;
}
.l-block-inner.r-line::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 100%;
  background: #ffba1a;
  left: -70px;
  top: 0;
}
.l-block-upper {
  margin-top: 30px;
}
.l-block-over {
  min-width: 1100px;
  margin: 0 auto;
  max-width: 1260px;
}
.l-block-p {
  line-height: 1.8;
  margin-top: 4em;
  padding: 0 2em 6em;
}
.l-block-sec {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .l-block {
    margin-top: 8vw;
  }
  .l-block.r-feature {
    padding: 13.3333333333vw 0 8vw;
  }
  .l-block-inner {
    width: 100%;
  }
  .l-block-upper {
    margin-top: 8vw;
  }
  .l-block-over {
    min-width: 96%;
    max-width: 96%;
  }
  .l-block-sec {
    margin-bottom: 26.6666666667vw;
  }
}
.p-top-mv {
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 762px;
}
.p-top-mv span {
  display: block;
}
.p-top-mv span img {
  width: 100%;
  height: 762px;
  object-fit: cover;
}
.p-top-mv-inner {
  height: 762px;
  overflow: hidden;
}
.p-top-mv-copy-wrap {
  width: 1040px;
  margin: 0 auto;
  height: 762px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  gap: 30px;
}
.p-top-mv .slick-list {
  height: 762px;
}
.p-top-mv-copy01 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 90px;
  animation: fadein 1.5s ease-in-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.p-top-mv-copy02 {
  animation: fadein 1.5s ease-in-out forwards;
  animation-delay: 1s;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 32px;
  opacity: 0;
}
.p-top-mv-copy {
  position: relative;
}
.p-top-mv-copy::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 100%;
  background: #ffba1a;
  left: -50px;
  top: 0;
  animation: fadein 2.5s ease-in-out forwards;
  animation-delay: 2s;
  opacity: 0;
}
.p-top-mv-copy-wrap.r-left {
  width: 90%;
  min-width: 1040px;
  justify-content: flex-start;
  align-items: flex-start;
  top: 0;
  text-align: left;
  padding-top: 80px;
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
}
.p-top-mv-copy-wrap.r-left .p-top-mv-copy01 {
  font-size: 70px;
}
.p-top-mv-copy-wrap.r-left .p-top-mv-copy::before {
  content: none;
}
.p-top-main {
  background: #fff;
  text-align: center;
  padding: 50px 0;
}
.p-top-main-txt {
  font-size: 20px;
  line-height: 1.8;
}
.p-top-main-txt + .p-top-main-txt {
  margin-top: 16px;
}
.p-top-category-link {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.p-top-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.p-top-category-txt-group {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 80px 60px;
  color: #fff;
}
.p-top-category-txt-group-or {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 80px 60px;
  color: #fff;
  flex-direction: column-reverse;
}
.p-top-category-txt-m {
  font-size: 32px;
  margin-bottom: 8px;
}
.p-top-category-txt-m span {
  position: relative;
  top: 3px;
}
.p-top-category-txt-m.r-top {
  position: absolute;
  top: 140px;
  right: 70px;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}
.p-top-category-txt-l {
  font-size: 75px;
  font-family: "Inter", sans-serif;
  position: absolute;
  top: 50px;
  right: 65px;
  color: #fff;
}
.p-top-category-txt-group-or .p-top-category-txt-l {
  position: relative;
  top: initial;
  right: initial;
}
.p-top-category + .p-top-category {
  margin-top: 8px;
}
.p-sitemap-inner {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
.p-sitemap-nav {
  padding: 0 32px;
}
.p-sitemap-nav-list-itm-link {
  display: block;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  font-weight: 300;
}
.p-sitemap-nav-list-sub-itm-link {
  display: block;
  font-size: 16px;
  padding: 8px 0 8px 6px;
  text-decoration: none;
  font-weight: 300;
}
.p-sitemap-nav-list-sub-itm-link::before {
  content: "-";
}
@media screen and (min-width: 769px), print {
  .p-sitemap-inner a {
    transition: 0.5s;
  }
  .p-sitemap-inner a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .p-sitemap-inner {
    width: 100%;
    padding: 0;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .p-sitemap-nav {
    padding: 0 4.2666666667vw 4.2666666667vw;
  }
  .p-sitemap-nav-list-itm-link {
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw 0;
  }
  .p-sitemap-nav-list-sub-itm-link {
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw 0 2.1333333333vw 1.6vw;
  }
}
.c-hdg-lv2 {
  text-align: center;
  font-size: 25px;
  font-weight: 300;
}
.c-hdg-lv2-sub {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}
.c-hdg-lv2-left {
  font-size: 22px;
  font-weight: 300;
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
}
.c-hdg-lv2-left-wrap {
  padding: 4px 24px;
  border-left: solid 2px #efbd4d;
}
.c-hdg-lv2-left-sub {
  font-size: 36px;
  font-weight: 400;
}
.c-hdg-content-lv2 {
  text-align: center;
  font-size: 20px;
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
  margin-top: 0;
}
.c-hdg-content-lv2-sub {
  text-align: center;
  font-size: 51px;
  font-weight: 400;
}
.c-hdg-content-lv2-type01 {
  font-size: 20px;
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
  padding-left: 0.5em;
}
.c-hdg-content-lv2-type01-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.c-hdg-content-lv2-type01-sub {
  font-size: 51px;
}
.c-hdg-content-lv2-type01-txt {
  margin-top: 36px;
  font-size: 18px;
  line-height: calc(33 / 22);
  padding: 20px 10px 0;
  border-top: solid 2px #231815;
}
.c-hdg-content-lv2-type01-txt-wrap {
  flex-grow: 1;
}
.c-hdg-content-lv2-type01-txt-sub {
  font-size: 18px;
  line-height: calc(33 / 22);
  padding: 0 10px;
}
.c-hdg-content-lv2-type01-txt.r-hdg {
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
  font-size: 37px;
  margin-bottom: 16px;
  padding: 20px 10px 0;
}
.c-hdg-content-lv2-type02-wrap {
  position: relative;
  overflow: hidden;
}
.c-hdg-content-lv2-type02-pic {
  width: 100%;
  height: 450px;
}
.c-hdg-content-lv2-type02-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-hdg-content-lv2-type02-block {
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.c-hdg-content-lv2-type02-hdg {
  font-size: 20px;
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
  position: relative;
}
.c-hdg-content-lv2-type02-hdg::after {
  content: "";
  height: 1.5px;
  background: #fff;
  width: 3000px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 110%;
}
.c-hdg-content-lv2-type02-hdg-sub {
  font-size: 51px;
  font-weight: 400;
  text-align: right;
}
.c-hdg-content-lv2-type03 {
  font-size: 20px;
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  padding-left: 0.5em;
}
.c-hdg-content-lv2-type03-wrap {
  display: flex;
  border-top: solid 1.5px #231815;
}
.c-hdg-content-lv2-type03-block {
  padding: 40px 60px 10px 10px;
  border-right: solid 1.5px #231815;
}
.c-hdg-content-lv2-type03-sub {
  font-size: 51px;
  font-weight: 400;
}
.c-hdg-content-lv2-type03-txt {
  font-size: 18px;
  line-height: calc(33 / 22);
}
.c-hdg-content-lv2-type03-txt-wrap {
  padding: 50px 50px 30px;
}
.c-hdg-content-lv2-type03-txt-sub {
  font-size: 15px;
  line-height: calc(33 / 22);
  padding: 0 10px;
}
.c-hdg-content-lv2-type03-txt.r-hdg {
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 16px;
}
.c-hdg-bg-g {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
  font-size: 22px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-hdg-lv2 {
    font-size: 5.3333333333vw;
  }
  .c-hdg-lv2-sub {
    font-size: 4.2666666667vw;
  }
  .c-hdg-lv2-left {
    font-size: 4.8vw;
  }
  .c-hdg-lv2-left-wrap {
    padding: 1.0666666667vw 4.2666666667vw;
    width: 98vw;
    margin: 0 auto;
  }
  .c-hdg-lv2-left-sub {
    font-size: 6.9333333333vw;
  }
  .c-hdg-content-lv2 {
    font-size: 5.3333333333vw;
    margin-top: 0;
  }
  .c-hdg-content-lv2-sub {
    font-size: 10.1333333333vw;
  }
  .c-hdg-content-lv2-type01 {
    font-size: 5.3333333333vw;
  }
  .c-hdg-content-lv2-type01-wrap {
    gap: 0;
    flex-direction: column;
  }
  .c-hdg-content-lv2-type01-block {
    padding: 0 5.3333333333vw;
  }
  .c-hdg-content-lv2-type01-sub {
    font-size: 10.1333333333vw;
  }
  .c-hdg-content-lv2-type01-txt {
    margin-top: 8vw;
    font-size: 4vw;
    padding: 5.3333333333vw 2.6666666667vw 0;
    border-top: solid 0.5333333333vw #231815;
  }
  .c-hdg-content-lv2-type01-txt-sub {
    font-size: 4vw;
    padding: 0 2.6666666667vw;
  }
  .c-hdg-content-lv2-type01-txt.r-hdg {
    font-size: 5.3333333333vw;
    margin-bottom: 4.2666666667vw;
    padding: 5.3333333333vw 2.6666666667vw 0;
  }
  .c-hdg-content-lv2-type01-txt-wrap {
    padding-left: 10.6666666667vw;
  }
  .c-hdg-content-lv2-type02-pic {
    width: 100%;
    height: 80vw;
  }
  .c-hdg-content-lv2-type02-block {
    width: 94vw;
    padding-bottom: 8vw;
  }
  .c-hdg-content-lv2-type02-hdg {
    font-size: 5.3333333333vw;
  }
  .c-hdg-content-lv2-type02-hdg-sub {
    font-size: 10.1333333333vw;
  }
  .c-hdg-content-lv2-type03 {
    font-size: 5.3333333333vw;
  }
  .c-hdg-content-lv2-type03-wrap {
    flex-direction: column;
  }
  .c-hdg-content-lv2-type03-block {
    padding: 5.3333333333vw;
    width: 80vw;
    margin-left: 10vw;
    border-right: none;
    border-left: solid 1.5px #231815;
  }
  .c-hdg-content-lv2-type03-sub {
    font-size: 10.1333333333vw;
  }
  .c-hdg-content-lv2-type03-txt {
    font-size: 4vw;
    line-height: calc(33 / 22);
  }
  .c-hdg-content-lv2-type03-txt-wrap {
    padding: 2.6666666667vw;
    margin-left: 15vw;
  }
  .c-hdg-content-lv2-type03-txt-sub {
    font-size: 4vw;
    line-height: calc(33 / 22);
    padding: 0;
  }
  .c-hdg-content-lv2-type03-txt.r-hdg {
    font-size: 6.9333333333vw;
    margin-bottom: 2.1333333333vw;
  }
  .c-hdg-bg-g {
    padding: 2.6666666667vw 5.3333333333vw;
    font-size: 4.8vw;
    margin-top: 8vw;
  }
}
.u-nohdg {
  margin-top: 0;
}
.u-nohdg .c-hdg-content-lv2-sub, .u-nohdg .c-hdg-content-lv2 {
  display: none;
}
.u-nohdg .p-people-jobtype {
  margin-top: 0;
}
.u-nohdg .p-people-jobtype::before {
  content: none;
}
.c-button-contact {
  width: 395px;
  height: 80px;
  border: solid 2px #efbd4d;
  color: #efbd4d;
  font-size: 25px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
}
.c-button-contact-wrap {
  margin: 32px 0;
}
.c-button-type01 {
  width: 395px;
  height: 80px;
  border: solid 2px #efbd4d;
  background: #efbd4d;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
.c-button-type01.r-large {
  height: 80px;
}
.c-button-type01-wrap {
  margin: 32px 0;
}
.c-button-type01 span {
  font-size: 18px;
  display: block;
}
.c-button-inline {
  display: inline-block;
  padding: 10px;
  background: rgba(0, 171, 128, 0.7);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  margin-left: 20px;
}
.c-button-inline.r-footer {
  margin-left: 0;
  margin-top: 1em;
}
@media screen and (min-width: 769px), print {
  .c-button-contact {
    transition: 1s;
  }
  .c-button-contact:hover {
    background: #efbd4d;
    color: #fff;
  }
  .c-button-type01 {
    transition: 1s;
  }
  .c-button-type01:hover {
    background: rgba(0, 171, 132, 0);
    color: #efbd4d;
  }
  .c-button-inline {
    transition: 0.6s;
  }
  .c-button-inline:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .c-button-contact {
    width: 80vw;
    height: 16vw;
    border: solid 0.5333333333vw #efbd4d;
    font-size: 4.8vw;
  }
  .c-button-contact-wrap {
    margin: 8vw 0;
  }
  .c-button-type01 {
    width: 60vw;
    height: 16vw;
    border: solid 0.5333333333vw #efbd4d;
    font-size: 4.8vw;
  }
  .c-button-type01.r-large {
    height: 16.333vw;
  }
  .c-button-type01-wrap {
    margin: 8vw 0;
  }
  .c-button-type01 span {
    font-size: 4vw;
  }
  .c-button-inline {
    padding: 1.6vw;
    font-size: 3.4666666667vw;
    margin-left: 2.6666666667vw;
  }
  .c-button-inline.r-footer {
    margin-left: 0;
    margin-top: 1em;
  }
}
.c-block-lv2 {
  text-align: center;
  font-size: 25px;
}
.c-block-lv2-sub {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .c-block-movie {
    width: 92vw;
    height: 52vw;
    margin: 10.6666666667vw auto;
  }
  .c-block-movie iframe {
    width: 100%;
    height: 100%;
  }
  .c-block-lv2 {
    font-size: 3.7333333333vw;
  }
  .c-block-lv2-sub {
    font-size: 4vw;
  }
}
.c-link-1col {
  height: 600px;
}
.c-link-1col-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-link-1col-link img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.c-link-1col-pic {
  display: block;
  width: 100%;
  height: 100%;
}
.c-link-1col-pic img {
  max-height: 610px;
  object-fit: cover;
  width: 100%;
}
.c-link-1col-block {
  position: absolute;
  width: 400px;
  height: 230px;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  bottom: 0;
  right: 50%;
  margin: auto;
  margin-right: 50px;
  overflow: hidden;
}
.c-link-1col-block img {
  width: 420px !important;
  height: auto;
  margin-left: -60px;
  max-inline-size: initial;
  margin-top: 30px;
}
.c-link-2col {
  margin-top: 80px;
}
.c-link-2col-list {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.c-link-2col-list-itm {
  width: 50%;
  height: 485px;
  position: relative;
}
.c-link-2col-list-itm-pic {
  display: block;
  width: 100%;
  height: 100%;
}
.c-link-2col-list-itm-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-link-2col-list-itm-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-top: 40px;
}
.c-link-2col-list-itm-hdg {
  font-size: 18px;
  margin-top: 16px;
}
.c-link-2col-list-itm-hdg-sub {
  font-size: 37px;
}
.c-link-2col-list-itm-txt {
  font-size: 14px;
  margin-top: 33px;
}
.c-link-2col-list-itm-btn {
  width: 220px;
  height: 80px;
  border: solid 2px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  margin-top: 46px;
  font-family: "Lato", sans-serif;
}
.c-link-4col-lean {
  position: relative;
  margin-bottom: 1em;
}
.c-link-4col-lean-list {
  width: 1257px;
  margin: 54px auto 0;
  padding-left: 57px;
  display: flex;
  justify-content: center;
}
.c-link-4col-lean-list-itm {
  height: 500px;
  margin-left: -57px;
}
.c-link-4col-lean-list-itm-pic {
  height: 100%;
}
.c-link-4col-lean-list-itm-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}
.c-link-4col-lean-list-itm-link img {
  height: 100%;
  width: auto;
}
.c-link-4col-lean-list-itm-block {
  position: absolute;
  bottom: 48px;
  left: 44%;
  width: 117px;
  height: 100px;
  color: #fff;
}
.c-link-4col-lean-list-itm-num {
  font-size: 51px;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}
.c-link-4col-lean-list-itm-more {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  background: url("/assets/img/common/arrow.svg") no-repeat bottom right/100% auto;
  padding-bottom: 7px;
}
.c-link-4col-lean-list-itm:last-child .c-link-4col-lean-list-itm-block {
  left: 56%;
}
.c-link-4col-lean-hdg {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 303px;
  height: 172px;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.c-link-4col-lean-hdg img {
  width: 340px !important;
  height: auto;
  margin-left: -60px;
  max-inline-size: initial;
  margin-top: 17px;
}
@media screen and (min-width: 769px), print {
  .c-link-2col-list-itm-btn {
    transition: 1s;
  }
  .c-link-2col-list-itm-btn:hover {
    background: #fff;
    color: #000;
  }
  .c-link-4col-lean-list-itm-link img {
    transition: 1s;
  }
  .c-link-4col-lean-list-itm-link:hover img {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .c-link-1col {
    height: 30vw;
  }
  .c-link-1col-block {
    width: 40vw;
    height: 20vw;
    margin-right: 8vw;
  }
  .c-link-1col-block img {
    width: 44vw !important;
    margin-left: -5.3333333333vw;
    margin-top: 2.6666666667vw;
  }
  .c-link-2col {
    margin-top: 10.6666666667vw;
  }
  .c-link-2col-list {
    flex-direction: column;
    max-width: 100%;
    gap: 3vw;
  }
  .c-link-2col-list-itm {
    width: 100%;
    height: 74.6666666667vw;
  }
  .c-link-2col-list-itm-cont {
    padding-top: 5.3333333333vw;
  }
  .c-link-2col-list-itm-hdg {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
  .c-link-2col-list-itm-hdg-sub {
    font-size: 5.3333333333vw;
  }
  .c-link-2col-list-itm-txt {
    font-size: 3.7333333333vw;
    margin-top: 5.3333333333vw;
  }
  .c-link-2col-list-itm-btn {
    width: 53.3333333333vw;
    height: 16vw;
    border: solid 0.5333333333vw #fff;
    font-size: 4.2666666667vw;
    margin-top: 8vw;
  }
  .c-link-4col-lean {
    position: relative;
  }
  .c-link-4col-lean-list {
    width: 100%;
    margin: 8vw auto 0;
    padding-left: 0;
    flex-wrap: wrap;
  }
  .c-link-4col-lean-list-itm {
    height: 64vw;
    margin-left: 0;
    width: 50vw;
    overflow: hidden;
  }
  .c-link-4col-lean-list-itm:nth-child(1) {
    margin-left: 0;
  }
  .c-link-4col-lean-list-itm:nth-child(2) {
    margin-right: auto;
  }
  .c-link-4col-lean-list-itm:nth-child(3) {
    margin-left: auto;
  }
  .c-link-4col-lean-list-itm-pic {
    display: block;
    width: 100%;
    height: 100%;
  }
  .c-link-4col-lean-list-itm-pic img {
    transform: scale(1.5);
    margin-top: 11vw;
  }
  .c-link-4col-lean-list-itm-block {
    bottom: 11.333vw;
    left: 42%;
    width: 50%;
    height: 21.3333333333vw;
  }
  .c-link-4col-lean-list-itm-num {
    font-size: 8vw;
  }
  .c-link-4col-lean-list-itm-more {
    font-size: 5.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
  .c-link-4col-lean-list-itm:last-child .c-link-4col-lean-list-itm-block {
    left: 44%;
  }
  .c-link-4col-lean-hdg {
    width: 90%;
    height: 30vw;
    top: 0;
    bottom: auto;
    right: 0;
    left: auto;
  }
  .c-link-4col-lean-hdg img {
    width: 52vw !important;
    margin-left: -10.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}
/* 会社情報テーブル 行にだけボーダー */
.p-info-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  margin: 40px auto 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-info-table-tr {
  border-bottom: 1px solid #ccc;
}
.p-info-table-th, .p-info-table-td {
  padding: 10px 12px;
  text-align: left;
  font-size: 20px;
  font-weight: 300;
}
.p-info-table-th {
  width: 280px;
  display: flex;
  align-items: center;
  padding-left: 60px;
  &::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 20px;
    background: #ffba1a;
    margin-right: 15px;
    position: relative;
  }
}
.p-info-table-tr:last-child {
  border-bottom: none;
}
.c-dlist-wrap.r-small {
  margin-top: 35px;
  .c-dlist {
    padding: 0 !important;
    margin-top: 12px !important;
  }
  .c-dlist-t {
    font-size: 20px !important;
    font-weight: 400;
    justify-content: flex-start !important;
    padding: 12px;
  }
  .c-dlist-d {
    padding: 12px !important;
  }
}
.c-dlist {
  display: flex;
  border: solid 1px #000;
  padding: 20px;
  margin: 35px auto 0;
  align-items: stretch;
}
.c-dlist-t {
  width: 200px;
  padding-right: 20px;
  border-right: solid 1px #000;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-dlist-d {
  padding-left: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.c-dlist-d p + p {}
.p-people-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}
.p-people-list-itm {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-people-list-itm-pic {
  display: block;
}
.p-people-list-itm-pic-img {
  width: 100%;
  height: 352px;
  object-fit: cover;
}
.p-people-list-itm-name {
  text-align: center;
  font-size: 28px;
}
.p-people-list-itm-name.r-right {
  align-self: flex-end;
  padding: 0 71px;
  text-align: right;
  line-height: 1.3;
  margin-top: -40px;
  font-size: 30px;
}
.p-people-list-itm-txt {
  padding: 24px 28px;
  font-size: 16px;
}
.p-people-list.r-1col {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 75px;
}
.p-people-list.r-1col .p-people-list-itm {
  width: 100%;
  justify-content: center;
  align-items: center;
}
.p-people-list.r-1col .p-people-list-itm-pic {
  text-align: center;
}
.p-people-list.r-1col .p-people-list-itm-pic-img, .p-people-list-itm-pic-img.r-pic {
  width: 800px;
  height: 500px;
}
.p-people-list-itm.r-ceo {
  display: flex;
  flex-direction: row;
}
.p-people-list-itm.r-ceo .p-people-list-itm-pic {
  width: 43%;
  flex-shrink: 0;
}
.p-people-list-itm.r-ceo .c-lead-txt-sub-m {
  font-size: 24px;
  text-align: left;
  margin-bottom: 16px;
  margin-top: 0
}
.p-main-bdr-block {
  border: solid 1px #000;
  padding: 40px 54px;
  margin-top: 70px;
}
.p-main-bdr-block-hdg {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 16px;
}
.p-main-bdr-block-hdg span {
  line-height: 1;
  font-weight: 400;
  display: block !important;
}
.p-main-bdr-block-hdg-sub {
  font-size: 20px;
  padding: 0 50px;
  font-weight: 400;
  margin-top: 8px;
}
.p-main-bdr-block-txt {
  margin: 8px 0 24px;
  font-size: 16px;
  padding: 0 50px;
}
.p-main-bdr-block-pics {
  display: flex;
  justify-content: space-between;
}
.p-main-bdr-block-pic-l {
  width: 75%;
  display: block;
}
.p-main-bdr-block-pics img {
  width: 100%;
  height: auto;
}
.p-main-bdr-block-pic-r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 23%;
}
.p-main-bdr-block-pic-r-itm {
  width: 100%;
  display: block;
}
.p-main-bdr-block-link-wrap {
  text-align: right;
  margin-top: 32px;
}
.p-main-bdr-block-link {
  font-size: 24px;
  display: inline-block;
  text-decoration: none;
}
.p-main-bdr-block-link:hover {
  text-decoration: underline;
}
.p-works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.p-works-list-itm {
  width: calc((100% - 60px) / 4);
}
.p-works-list-itm-pic {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.c-button-n {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 407px;
  height: 82px;
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background: #FFBA1A;
  margin: 32px auto;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
}
.c-button-n:hover {
  box-shadow: 0 0 0 3px #FFBA1A;
  opacity: 0.7;
}
.l-main--fullwidth {
  padding-bottom: 50px;
}
.c-card-3col-list {
  display: flex;
  justify-content: space-between;
}
.c-card-3col-list-itm {
  width: 350px;
}
.c-card-3col-list-itm-pic {
  display: block;
  margin-bottom: 10px;
}
.c-card-3col-list-itm-pic-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.c-card-3col-list-itm p {
  font-size: 20px;
}
.c-list {
  padding-left: 1em;
}
.c-list-itm {
  position: relative;
}
.c-list-itm::before {
  content: "・";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: -1em;
}
p + .c-list {
  margin-top: 1em;
}
.c-form {
  width: 900px;
  margin: 60px auto;
  padding-bottom: 40px;
}
.c-form br {
  display: none;
}
.c-form .r-hdg {
  display: block;
  width: 200px;
  text-align: right;
  cursor: auto;
}
.c-form-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.c-form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.c-form input[type="text"], .c-form input[type="email"], .c-form input[type="tel"] {
  width: 600px;
  border-radius: 4px;
  background: #f0f2f4;
  padding: 8px;
}
.c-form input[type="text"]:focus, .c-form input[type="email"]:focus, .c-form input[type="tel"]:focus {
  outline: none;
  box-shadow: 0 0 0 1px #ddd inset;
}
.c-form input[type="text"].wpcf7-not-valid, .c-form input[type="email"].wpcf7-not-valid, .c-form input[type="tel"].wpcf7-not-valid {
  background: #fceae2;
}
.c-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 600px;
  border-radius: 4px;
  background: #f0f2f4;
  padding: 8px;
}
.c-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px #ddd inset;
}
.c-form textarea.wpcf7-not-valid {
  background: #fceae2;
}
.c-form-radio {
  width: 600px;
}
.c-form .wpcf7-submit {
  width: 240px;
  height: 60px;
  border: solid 2px #efbd4d;
  background: #efbd4d;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
  margin-top: 40px;
  cursor: pointer;
}
.c-form .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 8px;
  display: block;
}
.c-form .wpcf7-list-item input[type="radio"] {
  appearance: none;
}
.c-form .wpcf7-list-item-label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.c-form .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #ccc;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-form .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #efbd4d;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.wpcf7-not-valid .wpcf7-list-item-label::before {
  background: #fceae2;
}
.wpcf7-form.sent .c-form, .wpcf7-submit {
  display: none;
}
.wpcf7-form.sent .wpcf7-response-output {
  text-align: center;
  border: none;
}
@media screen and (min-width: 769px), print {
  .wpcf7-submit {
    transition: 1s;
  }
  .wpcf7-submit:hover {
    background: rgba(0, 171, 132, 0);
    color: #efbd4d;
  }
}
@media screen and (max-width: 768px) {
  .c-form {
    width: 90%;
    margin: 16vw auto;
    padding-bottom: 8vw;
  }
  .c-form .r-hdg {
    width: 100%;
    text-align: left;
  }
  .c-form-flex {
    flex-direction: column;
    gap: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  .c-form input[type="text"], .c-form input[type="email"], .c-form input[type="tel"] {
    width: 100%;
    border-radius: 0.8vw;
    padding: 2.1333333333vw;
  }
  .c-form textarea {
    width: 100%;
    border-radius: 0.8vw;
    background: #f0f2f4;
    padding: 2.1333333333vw;
  }
  .c-form-radio {
    width: 100%;
  }
  .c-form .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 2.1333333333vw;
    display: block;
  }
  .c-form .wpcf7-list-item-label {
    padding-left: 8vw;
  }
  .c-form .wpcf7-list-item-label::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
  .c-form .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    left: 1.3333333333vw;
  }
  .c-form .wpcf7-submit {
    width: 60vw;
    height: 16vw;
    border: solid 0.5333333333vw #efbd4d;
    font-size: 4.8vw;
  }
}
/* ギャラリーモーダル */
#gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
#gallery-modal.show {
  display: flex;
}
#gallery-modal-img {
  max-width: 80vw;
  max-height: 80vh;
  box-shadow: 0 0 40px #000;
  border-radius: 8px;
}
#gallery-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}
@keyframes moveleft {
  0% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}
@keyframes updown {
  0% {
    bottom: 3px;
  }
  100% {
    bottom: 0;
  }
}
.c-pos-rel {
  position: relative;
}
.u-txt-serif {
  font-family: YakuHanJP, "Noto Serif JP", serif !important;
  font-weight: 300;
}
.u-txt-c {
  text-align: center;
}
.u-txt-bold {
  font-weight: bold;
}
.u-txt1rem {
  font-size: 15px;
}
.u-txt18 {
  font-size: 18px;
  line-height: calc(41 / 22);
}
@media screen and (min-width: 769px), print {
  .u-txt-c--pc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .u-txt1rem {
    font-size: 4vw;
  }
  .u-txt18 {
    font-size: 4.2666666667vw;
    line-height: calc(41 / 22);
  }
  .u-txt14 {
    font-size: 3.7666666667vw;
    line-height: calc(41 / 22);
  }
  .u-txt-l--sp {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px), print {
  .u-none--pc {
    display: none !important;
  }
  .u-wd80per--pc {
  width: 80% !important;
}
}
@media screen and (max-width: 768px) {
  .u-none--sp {
    display: none !important;
  }
}
.u-wd0per {
  width: 0 !important;
}
.u-wd1per {
  width: 1% !important;
}
.u-wd2per {
  width: 2% !important;
}
.u-wd3per {
  width: 3% !important;
}
.u-wd4per {
  width: 4% !important;
}
.u-wd5per {
  width: 5% !important;
}
.u-wd6per {
  width: 6% !important;
}
.u-wd7per {
  width: 7% !important;
}
.u-wd8per {
  width: 8% !important;
}
.u-wd9per {
  width: 9% !important;
}
.u-wd10per {
  width: 10% !important;
}
.u-wd11per {
  width: 11% !important;
}
.u-wd12per {
  width: 12% !important;
}
.u-wd13per {
  width: 13% !important;
}
.u-wd14per {
  width: 14% !important;
}
.u-wd15per {
  width: 15% !important;
}
.u-wd16per {
  width: 16% !important;
}
.u-wd17per {
  width: 17% !important;
}
.u-wd18per {
  width: 18% !important;
}
.u-wd19per {
  width: 19% !important;
}
.u-wd20per {
  width: 20% !important;
}
.u-wd21per {
  width: 21% !important;
}
.u-wd22per {
  width: 22% !important;
}
.u-wd23per {
  width: 23% !important;
}
.u-wd24per {
  width: 24% !important;
}
.u-wd25per {
  width: 25% !important;
}
.u-wd26per {
  width: 26% !important;
}
.u-wd27per {
  width: 27% !important;
}
.u-wd28per {
  width: 28% !important;
}
.u-wd29per {
  width: 29% !important;
}
.u-wd30per {
  width: 30% !important;
}
.u-wd31per {
  width: 31% !important;
}
.u-wd32per {
  width: 32% !important;
}
.u-wd33per {
  width: 33% !important;
}
.u-wd34per {
  width: 34% !important;
}
.u-wd35per {
  width: 35% !important;
}
.u-wd36per {
  width: 36% !important;
}
.u-wd37per {
  width: 37% !important;
}
.u-wd38per {
  width: 38% !important;
}
.u-wd39per {
  width: 39% !important;
}
.u-wd40per {
  width: 40% !important;
}
.u-wd41per {
  width: 41% !important;
}
.u-wd42per {
  width: 42% !important;
}
.u-wd43per {
  width: 43% !important;
}
.u-wd44per {
  width: 44% !important;
}
.u-wd45per {
  width: 45% !important;
}
.u-wd46per {
  width: 46% !important;
}
.u-wd47per {
  width: 47% !important;
}
.u-wd48per {
  width: 48% !important;
}
.u-wd49per {
  width: 49% !important;
}
.u-wd50per {
  width: 50% !important;
}
.u-wd51per {
  width: 51% !important;
}
.u-wd52per {
  width: 52% !important;
}
.u-wd53per {
  width: 53% !important;
}
.u-wd54per {
  width: 54% !important;
}
.u-wd55per {
  width: 55% !important;
}
.u-wd56per {
  width: 56% !important;
}
.u-wd57per {
  width: 57% !important;
}
.u-wd58per {
  width: 58% !important;
}
.u-wd59per {
  width: 59% !important;
}
.u-wd60per {
  width: 60% !important;
}
.u-wd61per {
  width: 61% !important;
}
.u-wd62per {
  width: 62% !important;
}
.u-wd63per {
  width: 63% !important;
}
.u-wd64per {
  width: 64% !important;
}
.u-wd65per {
  width: 65% !important;
}
.u-wd66per {
  width: 66% !important;
}
.u-wd67per {
  width: 67% !important;
}
.u-wd68per {
  width: 68% !important;
}
.u-wd69per {
  width: 69% !important;
}
.u-wd70per {
  width: 70% !important;
}
.u-wd71per {
  width: 71% !important;
}
.u-wd72per {
  width: 72% !important;
}
.u-wd73per {
  width: 73% !important;
}
.u-wd74per {
  width: 74% !important;
}
.u-wd75per {
  width: 75% !important;
}
.u-wd76per {
  width: 76% !important;
}
.u-wd77per {
  width: 77% !important;
}
.u-wd78per {
  width: 78% !important;
}
.u-wd79per {
  width: 79% !important;
}
.u-wd80per {
  width: 80% !important;
}
.u-wd81per {
  width: 81% !important;
}
.u-wd82per {
  width: 82% !important;
}
.u-wd83per {
  width: 83% !important;
}
.u-wd84per {
  width: 84% !important;
}
.u-wd85per {
  width: 85% !important;
}
.u-wd86per {
  width: 86% !important;
}
.u-wd87per {
  width: 87% !important;
}
.u-wd88per {
  width: 88% !important;
}
.u-wd89per {
  width: 89% !important;
}
.u-wd90per {
  width: 90% !important;
}
.u-wd91per {
  width: 91% !important;
}
.u-wd92per {
  width: 92% !important;
}
.u-wd93per {
  width: 93% !important;
}
.u-wd94per {
  width: 94% !important;
}
.u-wd95per {
  width: 95% !important;
}
.u-wd96per {
  width: 96% !important;
}
.u-wd97per {
  width: 97% !important;
}
.u-wd98per {
  width: 98% !important;
}
.u-wd99per {
  width: 99% !important;
}
.u-wd100per {
  width: 100% !important;
}
@media screen and (min-width: 769px), print {
  .u-wd559--pc {
    width: 559px;
  }
  .u-wd32per--pc {
    width: 32% !important;
  }
}
@media screen and (max-width: 768px) {
  .u-wd40per--sp {
    width: 40% !important;
  }
  .u-wd48per--sp {
    width: 48% !important;
  }
}
.u-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.u-flex-row .r-obj-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.u-flex-center {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .u-flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.6666666667vw;
  }
  .u-flex-row .r-obj-cover {
    height: 26.6666666667vw;
    object-fit: cover;
  }
  .u-flex-center--sp {
    justify-content: center;
  }
}
.u-mt1em {
  margin-top: 1em;
}
.u-mt2em {
  margin-top: 2em;
}
.u-mt20 {
  margin-top: 20px !important;
}
.u-mt40 {
  margin-top: 40px !important;
}
.u-mt60 {
  margin-top: 60px !important;
}
.u-mt70 {
  margin-top: 70px !important;
}
.u-mt100 {
  margin-top: 100px !important;
}
.u-mb2em {
  margin-bottom: 2em;
}
.u-mb10 {
  margin-bottom: 10px !important;
}
.u-fs18 {
  font-size: 18px !important;
}
.u-fs24 {
  font-size: 24px !important;
}
.u-fs32 {
  font-size: 32px !important;
}
.u-pa10px {
  padding: 10px !important;
}
@media screen and (min-width: 769px), print {
  .u-mt1em--pc {
    margin-top: 1em;
  }
  .u-mt2em--pc {
    margin-top: 2em;
  }
  .u-mt40--pc {
    margin-top: 40px !important;
  }
  .u-mt70--pc {
    margin-top: 70px !important;
  }
  .u-wd94per--pc {
    width: 94% !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt12vw--sp {
    margin-top: 12vw !important;
  }
}
.u-px1em {
  margin-left: 1em;
  margin-right: 1em;
}
.u-px50 {
  margin-left: 50px;
  margin-right: 50px;
}
@media screen and (min-width: 769px), print {
  .u-px1em--pc {
    margin-left: 1em;
    margin-right: 1em;
  }
}
.p-top-mv-link {
  display: block;
  width: 200px;
  position: absolute;
  left: 50%;
  top: 63px;
  transform: translateX(350px);
  text-decoration: none;
}
.p-top-mv-link-img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}
.p-top-mv-link:hover .p-top-mv-link-img {
  box-shadow: 0 0 0 2px #00ab80;
  background: #fff;
}
.p-top-mv-link span {
  display: block;
  background: #fff;
  padding: 3px 6px;
  font-size: 14px;
  font-weight: bold;
  margin: 6px 2px 0;
  white-space: nowrap;
}
.p-top-motto {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
  transition: 0.3s ease;
}
.p-top-motto:hover {
  box-shadow: 0 0 0 4px #00ab80;
}
.p-top-motto:link {
  text-decoration: none;
}
.p-top-motto-img {
  width: 100%;
  height: auto;
}
.p-top-motto-txt {
  font-size: 16px;
  margin-top: 32px;
}
.p-top-motto-btn {
  display: block;
  padding: 0 20px 6px 0;
  width: 140px;
  color: #00ab80;
  font-size: 20px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  background: url("/assets/img/project/top/top_motto_line.svg") no-repeat bottom center / 100% auto;
  transition: 0.3s;
  align-self: flex-end;
  margin-right: 10px;
  margin-top: 10px;
}
.c-mimochan-3-top {
  display: block;
  width: 140px;
  height: 140px;
  animation: para4 1s linear infinite;
  top: 90px;
  position: absolute;
  left: 20%;
  transform: rotate(-10deg);
}
.c-mimochan-3-top:hover::after {
  content: "";
  position: absolute;
  display: block;
  top: -90px;
  left: 4px;
  width: 180px;
  height: 120px;
  background: url("/assets/img/common/mimochan3-3.svg") no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .c-mimochan-3-top {
    display: block;
    width: 18vw;
    height: 18vw;
    animation: none;
    top: 6.4vw;
    position: absolute;
    left: 5%;
    transform: rotate(-10deg);
    background: url("/assets/img/common/mimochan3-1.svg") no-repeat center center/contain;
  }
  .c-mimochan-3-top.active-style::after {
    content: "" !important;
    position: absolute;
    display: block;
    top: -21vw;
    left: -2vw;
    width: 28vw;
    height: 28vw;
    transform: rotate(20deg);
    background: url("/assets/img/common/mimochan3-3.svg") no-repeat center center/contain;
  }
  .c-mimochan-4 {
    display: block;
    width: 18vw;
    height: 18vw;
    animation: para5 2s linear infinite;
    bottom: 11vw;
    position: absolute;
    right: 1%;
    background: url("/assets/img/common/mimocha41-1.svg") no-repeat center center/contain;
  }
}
.u-justify-center {
  justify-content: center !important;
}
.u-align-center {
  align-items: center !important;
}
.u-align-c {
  text-align: center !important;
}
.u-align-r {
  text-align: right !important;
}
.u-relative {
  position: relative !important;
}
.u-flex {
  display: flex !important;
}
.u-justify-between {
  justify-content: space-between !important;
}
.c-link-3col-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-link-3col-list-itm {
  width: calc(100% / 3);
  aspect-ratio: 1 / 0.8;
}
.c-link-3col-list-itm-pic {
  width: 100%;
  height: 100%;
}
.c-link-3col-list-itm-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top-mv-link {
    width: 26vw;
    left: initial;
    right: 4vw;
    top: 4vw;
    transform: translateX(0);
  }
  .p-top-mv-link span {
    padding: 0.8vw 1vw;
    font-size: 2vw;
    margin: 1.6vw 0.533333333vw 0;
  }
  .p-top-motto {
    width: 50%;
    padding: 3vw 2vw 3vw;
    gap: 4vw;
    margin-bottom: 10vw;
    align-self: center;
  }
  .p-top-motto-txt {
    font-size: 4vw;
    margin-top: 0;
  }
  .p-top-motto-btn {
    width: 30vw;
    font-size: 4vw;
    margin-right: 1vw;
    margin-top: 0;
  }
  .c-link-3col-list-itm {
    width: 100%;
  }
  .u-flex-col--sp {
    flex-direction: column !important;
  }
  .u-wd100per--sp {
    width: 100% !important;
  }
  .u-pd1--sp {
    padding: 1em !important;
  }
}
/* ドットの親要素 */
.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px; /* ドット間の間隔 */
  bottom: 40px; /* 位置調整 */
  position: relative;
}
/* ドットのボタン部分 */
.slick-dots li button:before {
  font-size: 0; /* デフォルトの文字(•)を消す */
}
/* ドット自体のスタイル */
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d9d9d9; /* 非アクティブ色 */
  border: none;
  padding: 0;
  color: transparent;
  overflow: hidden;
}
/* 選択中のドット */
.slick-dots li.slick-active button {
  background-color: #9d9b9b; /* アクティブ色 */
}
.c-lead-txt {
  text-align: center;
  font-size: 70px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.c-lead-txt-sub {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}
.c-lead-txt-sub-l {
  text-align: center;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.c-lead-txt-sub-m {
  font-size: 34px;
  text-align: center;
  font-weight: 400;
  margin-top: 42px;
}
.c-lead-txt-l {
  font-size: 20px;
  line-height: 1.7;
  margin-top: 30px;
}
.c-page-nav {
  margin-top: 70px;
}
.c-page-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.c-page-nav-list-itm {
  width: 20%;
}
.c-page-nav-list-itm-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  color: #000;
  font-size: 18px;
  position: relative;
  height: 60px;
  text-decoration: none;
}
.c-page-nav-list-itm-link::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  position: absolute;
  left: 24px;
  top: 40%;
  transform: rotate(-135deg);
  transition: 0.3s;
}
.c-page-nav-list-itm-link:hover::before {
  top: 46%;
}
.p-top-category {
  margin-top: 44px;
}
.p-top-category-list-wrap {
  margin-top: 56px;
}
.p-top-category-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.p-top-category-list-itm {
  display: flex;
  height: 620px;
}
.p-top-category-list-itm:nth-child(even), .p-top-category-list-itm.r-reverse {
  flex-direction: row-reverse;
}
.p-top-category-list-itm-pic {
  position: relative;
  flex-grow: 1;
}
.p-top-category-list-itm-pic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-category-list-itm-hdg {
  position: absolute;
  top: 50px;
  left: 65px;
  color: #fff;
  font-size: 75px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.p-top-category-list-itm-link {
  padding: 85px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  color: #fff;
  width: 540px;
  text-decoration: none;
  gap: 8px;
  flex-shrink: 0;
}
.p-top-category-link:hover .p-top-category-list-itm-link-btn, .p-top-category-list-itm-link:hover .p-top-category-list-itm-link-btn {
  transform: translateX(4px);
}
.p-top-category-list-itm.r-reverse .p-top-category-list-itm-hdg, .p-top-category-list-itm:nth-child(even) .p-top-category-list-itm-hdg {
  left: initial;
  right: 65px;
}
.p-top-category-list-itm.r-reverse .p-top-category-list-itm-link, .p-top-category-list-itm:nth-child(even) .p-top-category-list-itm-link {
  align-items: flex-start;
}
.p-top-category-list-itm-link.r-yellow {
  background: #ffba1a;
}
.p-top-category-list-itm-link.r-blue {
  background: #8cd4d7;
}
.p-top-category-list-itm-link.r-black {
  background: #000;
}
.p-top-category-list-itm-link-hdg, .p-top-category-list-itm-link-btn {
  font-size: 32px;
  font-weight: 600;
}
.p-top-category-list-itm-link-hdg {
  margin-bottom: 24px;
}
.p-top-category-list-itm-link-btn {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: 0.3s;
}
.p-top-category-list-itm-link-btn::after {
  content: ">";
  margin-top: 5px;
}
.p-top-category-list-itm-link-txt {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
}
.c-pic-list {
  display: flex;
  justify-content: space-between;
}
.c-pic-list-itm {
  width: 19.6%;
}
.c-pic-list-itm img {
  width: 100%;
  height: auto;
}
.u-serif {
  font-family: "Noto Serif JP", serif;
}
.c-right-link {
  text-align: right;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  display: block;
  text-decoration: none;
  margin-top: 30px;
}
.c-970-block {
  width: 970px;
  margin: 0 auto;
}
.c-txt-m {
  font-size: 20px;
  margin-top: 30px;
}
.u-mb30 {
  margin-bottom: 30px !important;
}
.u-pr0 {
  padding-right: 0 !important;
}
.u-mt0 {
  margin-top: 0 !important;
}
.u-pt0 {
  padding-top: 0 !important;
}
.u-pt10 {
  padding-top: 10px !important;
}
.p-gallery-list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  min-width: 1100px;
}
/* ========== 4カラム（テキストあり） ========== */
.p-gallery-list.r-4col .p-gallery-list-itm {
  width: calc((100% - 500px) / 3);
  aspect-ratio: 430 / 287;
  overflow: hidden;
}
.p-gallery-list.r-4col .p-gallery-list-itm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}
.p-gallery-list.r-4col .p-gallery-list-itm img:hover {
  transform: scale(1.05);
}
.p-gallery-list.r-4col .p-gallery-list-itm.r-text-w {
  width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: #0a0000;
}
/* ========== 4カラム（テキストなし） ========== */
.p-gallery-list.r-4col_notxt::after {
  content: "";
  display: block;
  width: 200px;
  height: auto;
  background: #ffba1a;
}
.p-gallery-list.r-4col_notxt .p-gallery-list-itm {
  width: calc((100% - 260px) / 4);
  aspect-ratio: 430 / 287;
  overflow: hidden;
}
.p-gallery-list.r-4col_notxt .p-gallery-list-itm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}
.p-gallery-list.r-4col_notxt .p-gallery-list-itm img:hover {
  transform: scale(1.05);
}
/* ========== 3カラム（テキスト枠あり） ========== */
.p-gallery-list.r-3col::before {
  content: "";
  display: block;
  width: 220px;
  height: auto;
  background: #ffba1a;
}
.p-gallery-list.r-3col .p-gallery-list-itm {
  width: calc((100% - 680px) / 3);
  aspect-ratio: 430 / 287;
  overflow: hidden;
}
.p-gallery-list.r-3col .p-gallery-list-itm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}
.p-gallery-list.r-3col .p-gallery-list-itm img:hover {
  transform: scale(1.05);
}
.p-gallery-list.r-3col .p-gallery-list-itm.r-text-w {
  width: 399px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: #0a0000;
}
.u-txt-justify {
  text-align: justify !important;
}
.u-mxauto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.u-fs32 {
  font-size: 2rem !important;
}
.u-hover-x {
  transition: 0.3s;
}
.u-hover-x:hover {
  transform: translateX(4px);
}
.c-dlist-simple {
  width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 20px;
}
.c-dlist-simple-t {
  width: 260px;
  padding: 10px 12px 10px 80px;
  border-right: solid 1px #ddd;
}
.c-dlist-simple-d {
  padding: 10px 12px 10px 30px;
}
/* 動画ブロック（PC） */
.c-block-movie {
  width: 760px;
  height: 428px;
  margin: 0 auto 40px;
}
/* 中の video を枠いっぱいにフィットさせる */
.c-block-movie video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* 全画面を埋める（上下左右少し切れる） */
  /* object-fit: contain; にすると全部収まるけど余白が出る */
}


#gallery-modal {
  display: none; /* ← 初期状態では非表示 */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
}

#gallery-modal.active {
  display: flex; /* ← JSで開くときに付与 */
}

#gallery-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #333;
  cursor: pointer;
}

#gallery-modal-img {
  max-width: 80vw;
  max-height: 80vh;
  box-shadow: 0 0 20px #ccc;
  border-radius: 2px;
}

/* SPレイアウト（幅優先） */
@media screen and (max-width: 768px) {
  .c-block-movie {
    width: 92%;
    height: auto;
    margin: 0 auto 8vw;
  }
  .c-block-movie video {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    height: 95vw;
  }
  .p-top-mv span img {
    height: 95vw;
  }
  .p-top-mv-inner {
    height: 95vw;
  }
  .p-top-mv-copy-wrap {
    width: 100%;
    margin: 0 auto;
    height: 95vw;
    gap: 4vw;
  }
  .p-top-mv .slick-list {
    height: 95vw;
  }
  .p-top-mv-copy01 {
    font-size: 8vw;
  }
  .p-top-mv-copy02 {
    font-size: 4vw;
  }
  .p-top-mv-copy::before {
    width: 2vw;
    left: -6vw;
  }
  .p-top-main {
    padding: 13vw 0;
  }
  .p-top-main-txt {
    font-size: 4vw;
  }
  .p-top-main-txt + .p-top-main-txt {
    margin-top: 4vw;
  }
  .p-top-category-txt-group {
    padding: 5vw;
    text-align: left;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .p-top-category-txt-m {
    font-size: 9vw;
    margin-bottom: 2vw;
  }
  .p-top-category-txt-m.r-top {
    top: 16vw;
    right: 5vw;
    font-size: 5vw;
  }
  .p-top-category-txt-l {
    font-size: 9vw;
    top: 5vw;
    right: 5vw;
  }
  .l-main--fullwidth {
    padding-bottom: 13vw;
  }
  .slick-dots {
    gap: 2.133333vw;
    bottom: 10.666667vw;
  }
  .slick-dots li button {
    width: 3.2vw;
    height: 3.2vw;
  }
  .p-top-category {
    margin-top: 2.733333vw;
  }
  .p-top-category-list-wrap {
    margin-top: 5.933333vw;
  }
  .p-top-category-list {
    gap: 2.733333vw;
  }
  .p-top-category-list-itm {
    height: auto;
    flex-direction: column;
  }
  .p-top-category-list-itm:nth-child(even), .p-top-category-list-itm.r-reverse {
    flex-direction: column;
  }
  .p-top-category-list-itm-pic {
    aspect-ratio: 1 / 0.7;
  }
  .p-top-category-list-itm-pic-img {
    /* height already 100% → 無変換 */
  }
  .p-top-category-list-itm-hdg {
    top: 5.333333vw;
    left: 5.333333vw;
    font-size: 9vw;
  }
  .p-top-category-list-itm-link {
    padding: 4.666667vw;
    gap: 2.133333vw;
    width: 100vw;
  }
  .p-top-category-list-itm:nth-child(even) .p-top-category-list-itm-hdg {
    right: 5.333333vw;
  }
  .p-top-category-list-itm-link-hdg, .p-top-category-list-itm-link-btn {
    font-size: 4.533333vw;
  }
  .p-top-category-list-itm-link-hdg {
    margin-bottom: 0.5vw;
    line-height: 1;
  }
  .p-top-category-list-itm-link-btn {
    gap: 4.266667vw;
    line-height: 1;
  }
  .p-top-category-list-itm-link-btn::after {
    margin-top: 1.333333vw;
  }
  .p-top-category-list-itm-link-txt {
    font-size: 3.8vw;
  }
  .p-top-category-link {
    height: 61vw;
  }
  .c-lead-txt {
    font-size: 10vw;
    margin-bottom: 2vw;
  }
  .c-lead-txt-sub {
    font-size: 5vw;
  }
  .c-pic-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
  }
  .c-pic-list-itm {
    width: 30%;
  }
  .u-fs32 {
    font-size: 5.533333vw !important;
  }
  .u-pr20--sp {
    padding-right: 5vw !important;
  }
  .u-align-c--sp {
    text-align: center !important;
  }
  .c-right-link {
    margin-top: 3vw;
  }
  .c-lead-txt-sub-l {
    font-size: 8vw;
    margin-bottom: 1vw;
  }
  .c-dlist-wrap {
    width: 86%;
    margin: 0 auto;
  }
  .c-dlist {
    padding: 5vw;
    margin: 4vw auto 0;
    flex-direction: column;
  }
  .c-dlist-t {
    width: 100%;
    padding: 0 0 2vw 0;
    border-right: none;
    border-bottom: solid 1px #000;
    font-size: 4.2vw;
  }
  .c-dlist-d {
    padding: 2vw 0 0 0;
    font-size: 4vw;
  }
  .p-people-list {
    flex-direction: column;
    gap: 5vw 0;
    width: 92vw;
    margin: 0 auto;
  }
  .p-people-list-itm {
    width: 100%;
    gap: 3vw;
  }
  .p-people-list-itm-pic-img {
    height: 60vw;
  }
  .p-people-list-itm-name {
    font-size: 5vw;
  }
  .p-people-list-itm-txt {
    padding: 5vw 8vw;
    font-size: 4vw;
  }
  .u-mt40 {
    margin-top: 6vw !important;
  }
  .u-mt20 {
    margin-top: 4vw !important;
  }
  .u-pt10 {
    padding-top: 2vw !important;
  }
  .u-fs18 {
    font-size: 3.8vw !important;
  }
  .p-people-list-itm-name.r-right {
    padding: 0;
    margin-top: 0;
    font-size: 5vw;
  }
  .p-people-list.r-1col {
    margin-top: 6vw;
  }
  .p-people-list.r-1col .p-people-list-itm-pic-img {
    width: 100%;
    height: 60vw;
  }
  .p-people-list-itm.r-ceo {
    flex-direction: column;
  }
  .p-people-list-itm.r-ceo .p-people-list-itm-pic {
    width: 100%;
  }
  .p-people-list-itm.r-ceo .c-lead-txt-sub-m {
    font-size: 4.6vw;
    margin-bottom: 2vw;
  }
  .c-lead-txt-sub-m {
    font-size: 8vw;
    margin-top: 7vw;
  }
  .c-button-n {
    width: 70vw;
    height: 16vw;
    font-size: 5vw;
    margin: 5vw auto;
  }
  .p-gallery-list {
    min-width: 100%;
    flex-wrap: wrap;
    gap: 2vw 0;
    position: relative;
    margin-top: 24vw;
  }
  .p-gallery-list.r-4col .p-gallery-list-itm {
    width: 49vw;
  }
  .p-gallery-list.r-4col .p-gallery-list-itm.r-text-w {
    width: 100%;
    height: 18vw;
    font-size: 6vw;
    top: -19vw;
    position: absolute;
    left:0;
    right: 0;
    margin: 0 auto;
  }
  .p-gallery-list.r-4col_notxt::after {
    content: none;
  }
  .p-gallery-list.r-4col_notxt .p-gallery-list-itm {
    width: 49vw;
  }
  .p-gallery-list.r-3col::before {
    content: none;
    width: 40vw;
  }
  .p-gallery-list.r-3col .p-gallery-list-itm {
    width:49vw;
  }
  .p-gallery-list.r-3col .p-gallery-list-itm.r-text-w {
    width: 100%;
    height: 18vw;
    font-size: 6vw;
    top: -19vw;
    position: absolute;
    left:0;
    right: 0;
    margin: 0 auto;
  }
  #gallery-modal-close {
    position: absolute;
    top: calc(50% - 40vw);
    right: 8vw;
    font-size: 8vw;
  }

  #gallery-modal-img {
    box-shadow: 0 0 5vw #ccc;
    border-radius: 1vw;
  }

.p-info-table{width:92vw;max-width:92vw;margin:5vw auto 0;}
.p-info-table-th,.p-info-table-td{padding:2vw;font-size:4vw;}
.p-info-table-th{width:30vw;padding-left:5vw;}
.p-info-table-th::before {
        width: 1.8vw;
        height: 4vw;
        margin-right: 2vw;
    }
  
  
.c-dlist-wrap.r-small{margin-top:5vw;}
.c-dlist-simple{width:92vw;font-size:4vw;}
.c-dlist-simple + .c-dlist-simple {margin-top: 2vw;}
.c-dlist-simple-t{
  width:28vw;
  padding:2vw 5vw 2vw 4vw;
  flex-grow: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  }
.c-dlist-simple-d{padding:2vw;flex-grow: 1;width: 67vw;}

  
  .p-top-category-txt-group-or {
    padding: 5vw;
}
  .u-fs5vw--sp {
            font-size: 5.533333vw !important;
  }
  .u-mt5vw--sp {
    margin-top: 5vw !important;
  }
  .c-lead-txt-l {
    font-size: 4.2vw;
    margin-top: 5vw;
  }
  .u-px50 {
    margin-right: 5vw;
    margin-left: 5vw;
  }
  .c-card-3col-list .c-card-3col-list-itm:nth-child(3) {
    display: none;
  }
  .u-mt60 {
    margin-top: 6vw !important;
  }
  .p-main-bdr-block {
    padding: 6vw;
    margin: 6vw 8vw 0;
  }
  .p-main-bdr-block-hdg {
    font-size: 7vw;
    margin-bottom: 3vw;
    line-height: 1.2;
  }
  .p-main-bdr-block-hdg-sub {
    font-size: 4.2vw;
    padding: 0;
    margin-top: 2vw;
    text-align: center;
  }
  .p-main-bdr-block-txt {
    margin: 2vw 0 4vw;
    font-size: 4vw;
    padding: 0;
  }
  .u-fs24 {
    font-size: 5vw !important;
  }
  .u-mt5vw {
    margin-top: 2vw !important;
  }
  .p-main-bdr-block-pics {
    flex-direction: column;
    gap: 2vw;
    width: 100%;
  }
  .p-main-bdr-block-pic-r {
    flex-direction: row;
    width: 100%;
    gap: 2vw;
  }
  .p-main-bdr-block-pic-l {
    width: 100%;
  }
  .u-px5vw--sp {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  .p-works-list {
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 4vw;
  }
  .p-works-list-itm {
    width: calc((100% - 2vw) / 2);
  }
  .p-top-category-list-itm.r-reverse .p-top-category-list-itm-hdg, .p-top-category-list-itm:nth-child(even) .p-top-category-list-itm-hdg {
    right: 5vw;
  }
  .p-info-table-td {
    padding-right: 4vw;
  }
  .c-dlist-simple-d {
    padding-right: 4vw;
  }
  .u-mt100--sp {
    margin-top: 14vw !important;
  }
}