@charset "UTF-8";
/* global */
/* foundation */
html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

@font-face {
  font-family: "YakuhanJP";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/YakuHanJPs-Light.woff2") format("woff2");
}
@font-face {
  font-family: "YakuhanJP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/YakuHanJPs-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-italic";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/Roboto-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-italic";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/Roboto-BlackItalic.woff2") format("woff2");
}
@font-face {
  font-family: "HiraginoKakugo";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Hiragino-Kaku-Gothic-Pro-W3.woff2") format("woff2");
}
@font-face {
  font-family: "HiraginoKakugo";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Hiragino-Kaku-Gothic-Pro-W6.woff2") format("woff2");
}
body {
  background-color: #ffffff;
  color: #333333;
  font-size: 1.6rem;
  font-family: "YakuhanJP", "HiraginoKakugo", sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  font-size: clamp(1.5rem, 1.479rem + 0.1vw, 1.6rem);
}

.navfadeUpTrigger {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .navfadeUpTrigger {
    opacity: 1;
  }
}

.navfadeUp {
  animation-delay: 0.5s;
  animation-name: navfadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes navfadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.downAnime {
  opacity: 0;
}

.slideAnimeDownUp {
  animation-name: slideTextY100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slideAnimeUpDown {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.upAnime {
  opacity: 0;
}

.slideAnimeDownUp {
  animation-name: slideTextY100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slideAnimeUpDown {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeDown */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.delay01 {
  animation-delay: 0.1s;
}

.delay02 {
  animation-delay: 0.2s;
}

.delay03 {
  animation-delay: 0.3s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay05 {
  animation-delay: 0.5s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay07 {
  animation-delay: 0.7s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay09 {
  animation-delay: 0.9s;
}

.delay10 {
  animation-delay: 1s;
}

.delay11 {
  animation-delay: 1.1s;
}

.delay12 {
  animation-delay: 1.2s;
}

.delay13 {
  animation-delay: 1.3s;
}

.delay14 {
  animation-delay: 1.4s;
}

/* layout */
.l-header {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  position: fixed;
  z-index: 900;
  transition: 0.2s;
}
.l-header__inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .l-header__inner {
    width: 100%;
  }
}
.l-header__logo {
  z-index: 998;
}
.l-header__logo a {
  font-size: 1.25em;
  font-weight: 600;
  color: #333333;
}
@media screen and (max-width: 767.98px) {
  .l-header__logo {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
}
.l-header__nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: space-between;
}
.l-header__nav li a {
  padding: 10px 15px;
  transition: 0.2s all;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 10px;
  color: #333333;
}
.l-header__nav li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fb4201;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.1s ease-in-out;
}
.l-header__nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.l-header__nav li a.insta-link {
  height: 70px;
}
.l-header__nav li a.insta-link img {
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav li a.insta-link {
    display: flex;
    justify-content: start;
    align-items: center;
    text-transform: initial;
    gap: 10px;
  }
}
.l-header__nav-desc {
  display: block;
  font-size: 0.8em;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100dvh;
    background-size: 50%;
    background-position: 90% 70%;
    background-color: #fb4201;
    transition: ease-out 0.2s;
  }
  .l-header__nav.panelactive {
    right: 0;
  }
  .l-header__nav.panelactive .l-header__nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 989;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l-header__nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: block;
  }
  .l-header__nav li {
    list-style: none;
  }
  .l-header__nav li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 2rem;
    margin: 20px 0;
    color: #ffffff;
  }
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .l-header__hamburger {
    position: fixed;
    z-index: 9999;
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: inline-block;
  }
  .l-header__hamburger span {
    display: inline-block;
    transition: ease-out 0.3s;
    position: absolute;
    left: 14px;
    height: 2px;
    background-color: #333333;
    width: 55%;
  }
  .l-header__hamburger span:nth-of-type(1) {
    top: 15px;
  }
  .l-header__hamburger span:nth-of-type(2) {
    top: 23px;
  }
  .l-header__hamburger span:nth-of-type(3) {
    top: 31px;
  }
  .l-header__hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
    background-color: #ffffff;
  }
  .l-header__hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
    background-color: #ffffff;
  }
}

@media screen and (max-width: 767.98px) {
  .insta-link-sp {
    display: block;
    height: 40px;
    position: fixed;
    right: 70px;
  }
  .insta-link-sp img {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .insta-link-sp {
    display: none;
  }
}
.l-footer {
  background-color: #333333;
  padding: 40px 0 0;
}
.l-footer__inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .l-footer__inner {
    flex-direction: column-reverse;
  }
}
.l-footer__info {
  color: #ffffff;
}
@media screen and (max-width: 767.98px) {
  .l-footer__info {
    padding: 10px;
  }
}
.l-footer__logo {
  z-index: 1;
  margin: 20px 0;
  font-size: 2.6rem;
  font-weight: 600;
  vertical-align: middle;
}
.l-footer__logo svg {
  width: 58px;
  height: 50px;
}
@media screen and (max-width: 767.98px) {
  .l-footer__logo {
    margin: 10px auto;
    text-align: center;
  }
}
.l-footer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .l-footer ul {
    display: block;
  }
}
.l-footer ul li a {
  padding: 10px 15px;
  transition: 0.2s all;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 10px;
  color: #ffffff;
}
.l-footer ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.1s ease-in-out;
}
.l-footer ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.l-footer__nav-desc {
  display: block;
  font-size: 0.8em;
}
.l-footer .copyrigiht {
  text-align: center;
  display: block;
  color: #ffffff;
  padding: 5px 0;
}

/* component */
.c-inner-wide {
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
}

.c-inner-narrow {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

a.button_25 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  height: 5rem;
  font-size: 1.8rem;
  font-family: "YakuhanJP", "HiraginoKakugo", sans-serif;
  font-weight: 600;
  width: 230px;
  margin: 70px auto;
  padding: 0 4rem 0 0.8rem;
  background: #333333;
  background-size: 400%;
  color: #ffffff;
  z-index: 100;
}
@media screen and (max-width: 767.98px) {
  a.button_25 {
    margin: 50px auto;
  }
}
a.button_25 span {
  position: relative;
}
a.button_25 span::before {
  height: 2px;
  width: 40px;
  background-color: #ffffff;
  display: block;
  content: "";
  position: absolute;
  bottom: 7px;
  right: -51px;
}
a.button_25 span::after {
  height: 2px;
  width: 10px;
  background-color: #ffffff;
  display: block;
  content: "";
  position: absolute;
  bottom: 10px;
  right: -53px;
  transform: rotate(45deg);
}
a.button_25:hover {
  color: #ffffff;
}
a.button_25:hover::before {
  transform: scaleX(1);
}
a.button_25 span {
  position: relative;
  z-index: 1;
}
a.button_25::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background-color: #fb4201;
  transition: ease-in-out 0.275s;
}
a.button_25.-yellow::before {
  background-color: #FEF323;
}

.button-wrap.-left .button_25 {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.button-wrap.-right .button_25 {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.c-section__title {
  font-size: clamp(4rem, 3.253rem + 3.62vw, 7.6rem);
  font-family: "YakuhanJP", "HiraginoKakugo", sans-serif;
  color: #fb4201;
  font-weight: 600;
  position: relative;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
}
.c-section__title.-left {
  text-align: left;
}
.c-section__title.-right {
  text-align: right;
}
.c-section__title.-white {
  color: #ffffff;
}

.c-section-title-sub {
  font-size: clamp(1.8rem, 1.717rem + 0.4vw, 2.2rem);
  font-family: "YakuhanJP", "HiraginoKakugo", sans-serif;
  font-weight: 600;
  text-align: center;
  display: block;
}
.c-section-title-sub.-left {
  text-align: left;
}
.c-section-title-sub.-right {
  text-align: right;
}
.c-section-title-sub.-white {
  color: #ffffff;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  border: 1px solid #333333;
  padding: 20px;
}
.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top: none;
}
.c-table th {
  width: 20%;
  font-weight: bold;
  border-left: none;
}
.c-table td {
  border-right: none;
}
.c-table__list li {
  list-style-type: circle;
  margin-left: 20px;
}
.c-table .map {
  width: 100%;
  margin: 20px 0;
}
.c-table .map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767.98px) {
  .c-table .map iframe {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767.98px) {
  .c-table {
    display: inline-block;
    width: 100%;
  }
  .c-table tr,
  .c-table td {
    display: inline-block;
    width: 100%;
  }
  .c-table th {
    display: inline-block;
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
  }
  .c-table td {
    border-right: none;
    border-left: none;
    border-top: none;
  }
}

.c-card__list {
  display: flex;
  justify-content: space-between;
  align-items: top;
  gap: 30px;
}
@media screen and (max-width: 767.98px) {
  .c-card__list {
    display: block;
  }
}

.c-card {
  width: 33.3333333333%;
  border: solid 2px #fb4201;
  min-height: 500px;
  padding: 50px 20px;
}
.c-card__number {
  display: block;
  font-family: "YakuhanJP", "HiraginoKakugo", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2.8rem, 2.551rem + 1.21vw, 4rem);
  position: relative;
  color: #fb4201;
  margin-bottom: 27px;
}
.c-card__number::after {
  position: absolute;
  display: block;
  content: "";
  background-color: #333333;
  width: 35px;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .c-card {
    width: 100%;
    margin: 20px auto;
  }
}
.c-card__title {
  font-size: clamp(1.8rem, 1.717rem + 0.4vw, 2.2rem);
  text-align: center;
  display: block;
}
.c-card__detail {
  text-align: left;
  padding: 25px;
}
@media screen and (max-width: 767.98px) {
  .c-card__detail {
    padding: 10px;
  }
}

.c-recruit {
  padding: 150px 0;
}
.c-recruit__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .c-recruit__container {
    display: block;
  }
}
.c-recruit__img {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 4%;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .c-recruit__img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
.c-recruit__img img {
  width: 100%;
}
.c-recruit__text {
  width: 30%;
}
@media screen and (max-width: 767.98px) {
  .c-recruit__text {
    width: 100%;
    text-align: center;
  }
}
.c-recruit p {
  margin: 50px 0;
}
@media screen and (max-width: 767.98px) {
  .c-recruit .button-wrap.-left .button_25 {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-cta {
  width: 95%;
  margin: 50px auto;
  height: 350px;
  background: url(../img/cta-bg.webp) no-repeat;
  background-size: cover;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 598.98px) {
  .c-cta {
    background-position: 84%;
  }
}
.c-cta::after {
  background-color: #fb4201;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}
@media screen and (max-width: 598.98px) {
  .c-cta::after {
    width: 63%;
  }
}
.c-cta__container {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.c-cta__button {
  position: absolute;
  background-color: #ffffff;
  border: #fb4201 solid 2px;
  color: #333333;
  padding: 1em 2em;
  font-size: clamp(2rem, 1.846rem + 0.63vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  z-index: 1;
}
.c-cta__button:hover {
  opacity: 0.7;
}
.c-cta__tel {
  font-size: 0.7em;
}
.c-cta__text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1rem, 1.614rem + 1vw, 3rem);
  line-height: 2;
}

/* project */
.p-mv {
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-top: 80px;
}
@media screen and (max-width: 767.98px) {
  .p-mv {
    height: 75vh;
    height: 75svh;
  }
}
.p-mv img {
  width: 100%;
  height: auto;
}
.p-mv__catch-text {
  position: absolute;
  top: 63%;
  left: 4%;
  transform: translateY(-50%);
  font-size: clamp(3rem, 1.34rem + 8.05vw, 11rem);
  font-family: "Roboto-italic", sans-serif;
  font-style: italic;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), -1px 1px 1px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .p-mv__catch-text {
    top: 66%;
  }
}
.p-mv__catch-text .u-mt-adj {
  margin-top: calc(clamp(2.5rem, 2.125rem + 1.88vw, 4.375rem) * -1);
}
.p-mv__catch-text .p-mv__catch-sub {
  display: block;
  font-size: 0.375em;
  font-family: "YakuhanJP", "HiraginoKakugo", sans-serif;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 427.98px) {
  .p-mv__catch-text .p-mv__catch-sub {
    font-size: 0.36em;
  }
}

.p-subv {
  --color-filter-rgb:251, 66, 1;
  background: url(../img/sub-v.webp) no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  background-color: #d4d4d4;
  height: 400px;
  padding-top: 80px;
  position: relative;
  z-index: -2;
}
.p-subv::after {
  display: block;
  content: "";
  background-color: rgba(var(--color-filter-rgb), 0.3);
  background-size: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-subv__inner {
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}
.p-subv__title {
  width: 90%;
  max-width: 400px;
  z-index: 1;
}

.p-top-message {
  padding: 150px 0;
}
.p-top-message__container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 767.98px) {
  .p-top-message__container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 598.98px) {
  .p-top-message {
    background-position: center 99%;
  }
}
.p-top-message__text {
  width: 55%;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767.98px) {
  .p-top-message__text {
    width: 97%;
    margin: 0 auto;
  }
}
.p-top-message__concept {
  font-size: clamp(1.7rem, 1.43rem + 1.31vw, 3rem);
  margin: 70px 0;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media screen and (max-width: 767.98px) {
  .p-top-message__concept {
    margin: 50px 0;
  }
}
.p-top-message__daihyo {
  width: 80%;
  max-width: 400px;
  margin: 1em auto;
}
.p-top-message__daihyo img {
  width: 100%;
}

.p-top-service {
  padding: 150px 0;
  background-position: left 100.2%;
  background-size: 70%;
  background-color: #d4d4d4;
}
@media screen and (max-width: 767.98px) {
  .p-top-service {
    background-size: 90%;
  }
}
.p-top-service-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px auto;
}
@media screen and (max-width: 767.98px) {
  .p-top-service-list {
    margin: 50px auto;
    display: block;
  }
}
.p-top-service-list__item {
  width: 25%;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-top-service-list__item {
    width: 100%;
    height: 350px;
  }
}
.p-top-service-list__item img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.7;
}
@media screen and (max-width: 767.98px) {
  .p-top-service-list__item img {
    height: 350px;
  }
}
.p-top-service-list__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.7rem, 1.596rem + 0.5vw, 2.2rem);
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4), -2px 2px 3px rgba(0, 0, 0, 0.4);
}

.p-feature {
  padding: 150px 0;
}
.p-feature .c-card__list {
  margin-top: 70px;
}
@media screen and (max-width: 767.98px) {
  .p-feature .c-card__list {
    margin-top: 50px;
  }
}

.p-faq {
  padding: 150px 0;
  /* 質問 */
  /* --?アイコン */
  /* --▼アイコン */
  /* 答え */
  /* --!アイコン */
  /* 質問を開いた時の仕様 */
  /* --答えの高さ */
  /* 質問をクリックした時の▼アイコンの動き */
}
.p-faq .cp_qa {
  margin-top: 70px;
}
@media screen and (max-width: 767.98px) {
  .p-faq .cp_qa {
    margin-top: 20px;
  }
}
.p-faq .cp_qa * {
  box-sizing: border-box;
}
.p-faq .cp_qa *:after, .p-faq .cp_qa *:before {
  box-sizing: border-box;
}
.p-faq .cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #ffffff;
}
.p-faq .cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}
.p-faq .cp_qa .cp_actab label {
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0.5em 0.5em 2em;
  padding: 1em 0 2em 0;
  cursor: pointer;
  background: #fb4201;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.p-faq .cp_qa .cp_actab label span {
  display: block;
  padding: 0 2em 1em 2em;
  border-bottom: 1px solid #ffffff;
}
.p-faq .cp_qa .cp_actab label::before {
  font-size: 2em;
  position: absolute;
  z-index: 99;
  top: 0.5em;
  left: -1em;
  padding: 0 0.5em 0 0.425em;
  content: "Q";
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #fb4201;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
}
.p-faq .cp_qa .cp_actab label::after {
  font-size: 1em;
  font-weight: normal;
  line-height: 1em;
  position: absolute;
  right: 0;
  bottom: 1em;
  content: "Click";
  display: inline-block;
  width: 100%;
  height: 1em;
  padding: 0.5em;
  text-align: right;
  transition: all 0.5s ease;
}
.p-faq .cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  margin: 0 0 0.5em 0;
  padding: 0 0 0 5em;
  transition: max-height 0.5s ease;
  color: #333333;
}
.p-faq .cp_qa .cp_actab .cp_actab-content::before {
  font-size: 1.5em;
  position: absolute;
  z-index: 99;
  top: calc(50% - 0.9em);
  left: 2.5em;
  padding: 0 0.5em 0 0.425em;
  content: "A";
  color: #fb4201;
  border: #fb4201 solid 2px;
  border-radius: 50%;
  background: #ffffff;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
}
.p-faq .cp_qa .cp_actab .cp_actab-content p {
  margin: 0.5em 0.5em 0.5em 0;
  padding: 1em 1em 1em 3em;
  color: #333333;
  background: #ffffff;
  border: #fb4201 solid 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.p-faq .cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}
.p-faq .cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  content: "Close";
}

.p-reason__container {
  margin: 150px auto;
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media screen and (max-width: 767.98px) {
  .p-reason__container {
    flex-direction: column-reverse;
  }
  .p-reason__container.-fd-c {
    flex-direction: column;
  }
}
.p-reason__text {
  width: 50%;
  padding: 20px;
}
.p-reason__text p {
  margin-top: 70px;
}
@media screen and (max-width: 767.98px) {
  .p-reason__text {
    width: 100%;
    padding: 10px;
  }
  .p-reason__text p {
    margin-top: 50px;
  }
}
.p-reason__img {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .p-reason__img {
    width: 100%;
  }
}
.p-reason__img img {
  width: 100%;
}
.p-reason .c-section__title {
  font-size: clamp(2.4rem, 2.275rem + 0.6vw, 3rem);
  font-weight: 700;
  line-height: 1.7;
}
.p-reason .c-section__title.-left {
  text-align: left;
}
.p-reason .c-section__title.-right {
  text-align: right;
}
.p-reason .c-section__title.-white {
  color: #ffffff;
}
.p-reason .c-section-title-sub {
  font-size: clamp(1.7rem, 1.638rem + 0.3vw, 2rem);
  font-weight: 600;
}
.p-reason .c-section-title-sub.-left {
  text-align: left;
}
.p-reason .c-section-title-sub.-right {
  text-align: right;
}
.p-reason .c-section-title-sub.-white {
  color: #ffffff;
}

.p-service {
  padding: 150px 0 0;
}
.p-service-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px auto;
}
@media screen and (max-width: 767.98px) {
  .p-service-list {
    margin: 50px auto;
    display: block;
  }
}
.p-service-list__item {
  width: 25%;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-service-list__item {
    width: 100%;
    height: 350px;
  }
}
.p-service-list__item img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.7;
}
@media screen and (max-width: 767.98px) {
  .p-service-list__item img {
    height: 350px;
  }
}
.p-service-list__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.7rem, 1.596rem + 0.5vw, 2.2rem);
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4), -2px 2px 3px rgba(0, 0, 0, 0.4);
}
.p-service .c-section__title {
  font-size: clamp(2.4rem, 2.275rem + 0.6vw, 3rem);
  font-weight: 700;
  line-height: 1.7;
}
.p-service .c-section__title.-left {
  text-align: left;
}
.p-service .c-section__title.-right {
  text-align: right;
}
.p-service .c-section__title.-white {
  color: #ffffff;
}
.p-service .p-service__text p {
  margin-left: 25px;
}
.p-service .p-service__heading {
  font-size: clamp(1.7rem, 1.638rem + 0.3vw, 2rem);
  position: relative;
  margin-left: 25px;
  margin-bottom: 10px;
  margin-top: 30px;
  font-weight: 600;
}
.p-service .p-service__heading::before {
  width: 20px;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  content: "";
  background-color: #fb4201;
}
.p-service .c-section-title-sub {
  font-size: clamp(1.7rem, 1.638rem + 0.3vw, 2rem);
  font-weight: 600;
}
.p-service .c-section-title-sub.-left {
  text-align: left;
}
.p-service .c-section-title-sub.-right {
  text-align: right;
}
.p-service .c-section-title-sub.-white {
  color: #ffffff;
}

.p-service-works {
  padding: 150px 0 0;
}
.p-service-works__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin: 70px auto;
}
@media screen and (max-width: 427.98px) {
  .p-service-works__cards {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }
}
.p-service-works__img img {
  width: 100% !important;
}
.p-service-works__body {
  padding: 0 0.5em;
}
.p-service-works__heading {
  font-weight: 600;
  text-align: center;
  font-size: 1.125em;
  margin: 5px 0;
}
.p-service-works .c-section__title {
  font-size: clamp(2.4rem, 2.275rem + 0.6vw, 3rem);
  font-weight: 700;
  line-height: 1.7;
}
.p-service-works .c-section__title.-left {
  text-align: left;
}
.p-service-works .c-section__title.-right {
  text-align: right;
}
.p-service-works .c-section__title.-white {
  color: #ffffff;
}
.p-service-works .c-section-title-sub {
  font-size: clamp(1.7rem, 1.638rem + 0.3vw, 2rem);
  font-weight: 600;
}
.p-service-works .c-section-title-sub.-left {
  text-align: left;
}
.p-service-works .c-section-title-sub.-right {
  text-align: right;
}
.p-service-works .c-section-title-sub.-white {
  color: #ffffff;
}

.p-recruit {
  padding: 150px 0;
}
.p-recruit p {
  text-align: left;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media screen and (max-width: 767.98px) {
  .p-recruit p {
    padding: 10px;
  }
}

.p-recuirement {
  padding: 150px 0;
}
.p-recuirement .c-table {
  margin-top: 70px;
}
@media screen and (max-width: 767.98px) {
  .p-recuirement .c-table {
    margin-top: 50px;
  }
}

.p-vision {
  padding: 150px 0;
}
.p-vision p {
  text-align: left;
  text-wrap: balance;
  word-break: auto-phrase;
  margin-top: 70px;
}
@media screen and (max-width: 767.98px) {
  .p-vision p {
    padding: 10px;
    margin-top: 50px;
  }
}
.p-vision .daiyou-name {
  text-align: right;
  font-weight: 600;
  font-size: 1.1em;
}

.p-history {
  padding: 150px 0;
  background-color: #d4d4d4;
  /*絶対配置で線を設定*/
}
.p-history__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .p-history__container {
    display: block;
  }
}
.p-history__text {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .p-history__text {
    width: 100%;
  }
}
.p-history__timeline {
  width: 50%;
  margin: 50px auto;
  padding: 0 30px;
}
@media screen and (max-width: 767.98px) {
  .p-history__timeline {
    width: 100%;
  }
}
.p-history__timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 20px 0;
}
.p-history__timeline li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
}
.p-history__timeline dl {
  margin: 0 0 20px 3em;
}
.p-history__timeline dl dt, .p-history__timeline dl dd {
  color: #ffffff;
}
.p-history .border-line {
  /*線の位置*/
  position: absolute;
  left: 0.2em;
  top: 10px;
  width: 2px;
  /*線の太さ*/
  height: 0;
  /*はじめは高さを0に*/
  background: #ffffff;
}

.p-outline {
  padding: 150px 0;
}
.p-outline .c-table {
  margin-top: 70px;
}
@media screen and (max-width: 767.98px) {
  .p-outline .c-table {
    margin-top: 50px;
  }
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
}
table.formTable td, table.formTable th {
  /* border:1px solid #ccc; */
  padding: 7px;
  border: solid 1px;
}
table.formTable td {
  background-color: rgba(255, 255, 255, 0.8);
}
table.formTable th {
  width: 40%;
  font-weight: 600;
  /* background:#4ba8de; */
  color: #120d0b;
  vertical-align: middle;
  text-align: left;
  padding-left: 15px;
}

.formTable .caution-text {
  color: red;
  font-size: 1.3rem;
}

table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  background-color: #ffffff;
}

.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: 0.3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: solid 2px;
}
.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  /* 背景色     */
  background: #ffffff;
  border: solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  /* 文字色     */
}
.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  /* 文字色     */
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button-wrapper input {
  margin-bottom: 20px;
}

.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.m-form-text:hover {
  background-color: rgba(33, 150, 243, 0.1);
}

.m-form-textarea:hover {
  background-color: rgba(33, 150, 243, 0.1);
}

.m-form-text:focus, .m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: #333333;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: 0.3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid #333333;
  /* 枠の指定 */
}
.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #333333;
  /* 背景色     */
  background: #ffffff;
  /* 文字色     */
}

/* ラジオボタン */
input[type=radio] {
  margin-left: 20px;
}

.radio-box-p {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .radio-box-p {
    display: block;
  }
}
/* セレクト */
select {
  padding: 5px 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  color: #555;
}

/* カレンダー選択 */
input[type=date] {
  width: 150px;
  position: relative;
  height: 2.4em;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
          appearance: none;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type=date]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.form-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 70%;
  max-width: 250px;
  margin: 0 0 auto 0;
}

.select-box {
  width: 150px;
  height: 2.4em;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
.select-box select {
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    border-bottom: 0;
    padding: 10px;
  }
  input[type=text], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }
  input[type=submit], input[type=reset], input[type=button] {
    /* display:block; */
    height: 40px;
  }
}
/* utility */
.u-in {
  display: inline-block;
}

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

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

.u-t-blank__link {
  margin: 5px 0;
  display: block;
  text-decoration: underline;
}
.u-t-blank__link::after {
  display: inline-block;
  content: "";
  background: url(../img/t-blank_icon.svg) no-repeat;
  background-position: center;
  background-size: contain;
  width: 14px;
  height: 14px;
  margin-right: 3px;
}/*# sourceMappingURL=style.css.map */