@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

ul, ol {
  list-style: none;
  list-style-type: none;
}

code, kbd, pre, samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

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

address {
  font-style: normal;
}

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

mark {
  background-color: transparent;
}

/**font size*********/
/**font weight*********/
/**カラー*********/
/**font-family*********/
/******縦書き*******/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  color: #fff;
  line-height: 1.8;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-feature-settings: "palt";
  letter-spacing: 1px;
  text-align: justify;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: ease 0.3s;
  color: inherit;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.c-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.c-grid {
  display: grid;
}

.c-logo {
  width: fit-content;
  margin: 0 auto;
}
.c-logo a {
  display: block;
}

.c-price {
  color: #2a9e55;
}
.c-price__large {
  font-size: 26px;
}
.c-price__min {
  font-size: 14px;
}

.c-mark__or {
  background-image: linear-gradient(transparent 60%, #E9D4AB 60%);
}

.c-fuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.c-single__data {
  justify-content: flex-start;
  color: #1d1d1d;
}
.c-single__data time {
  margin-right: 12px;
}

/*========= ローディング画面のためのCSS ===============*/
body {
  background-color: #000;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移の後現れるコンテンツ設定*/
.home .l-outer {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear .l-outer {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-navigation {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}
.c-navigation__item {
  color: #fff;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
}
.c-navigation__item:last-child {
  margin-bottom: 0;
}
.c-navigation__item a {
  transition: ease 0.3s;
}
.c-navigation__item a:hover {
  color: #C51B1B;
}

/************ FVタイトル ***********/
.c-title {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.c-title2 {
  color: #fff;
  font-size: clamp(1.125rem, 0.478rem + 2.76vw, 2.375rem);
  font-weight: 500;
}

/************ セクションタイトル ***********/
.c-title3 {
  width: fit-content;
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 0.013rem + 6.34vw, 4.375rem);
  color: #fff;
  line-height: 1.2;
}

.c-title_under {
  width: fit-content;
  width: 100%;
  margin: 0;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.125rem, 1.06rem + 0.28vw, 1.25rem);
  color: #fff;
  line-height: 1.2;
  position: relative;
}
.c-title_under::before {
  width: 4px;
  height: 250px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #C51B1B;
}

.c-beforeSkew {
  content: "";
  display: block;
  width: 90px;
  height: 100%;
  position: absolute;
  background-color: #C51B1B;
  clip-path: polygon(78% 0, 90% 0, 37% 100%, 0% 145%);
  left: -94px;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .c-beforeSkew {
    left: -35px;
  }
}
@media screen and (max-width: 480px) {
  .c-beforeSkew {
    left: -44px;
  }
}

.c-fv__sub {
  margin-top: 20px;
  padding: 20px;
  position: relative;
  line-height: 2;
  font-size: clamp(0.875rem, 0.681rem + 0.83vw, 1.25rem);
  color: #fff;
  font-weight: 700;
  z-index: 10;
  background-color: #C51B1B;
}
@media screen and (max-width: 480px) {
  .c-fv__sub {
    padding: 20px 0;
  }
}
.c-fv__sub::before {
  content: "";
  height: 100%;
  width: 50px;
  display: block;
  position: absolute;
  clip-path: polygon(95% 0%, 100% 0%, 100% 100%, 0% 100%);
  background-color: #C51B1B;
  left: -50px;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .c-fv__sub {
    width: 92%;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .c-fv__sub {
    width: 85%;
  }
}

/*** headerCTAボタン ***/
.c-scrollBtn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.621rem + 0.55vw, 1rem);
  padding-bottom: 6px;
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-scrollBtn a {
  display: inline-block;
  color: #fff;
  transition: ease 0.3s;
}
.c-scrollBtn a:hover {
  color: #C51B1B;
}
.c-scrollBtn a::after {
  content: "";
  display: block;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin: 8px auto 0;
  transform: rotate(90deg);
}

/*********************/
/***** ボタンタイプ１******/
.c-btn01 {
  font-size: clamp(0.75rem, 0.685rem + 0.28vw, 0.875rem);
  max-width: 280px;
  width: 100%;
  padding-bottom: 2px;
  margin-top: 40px;
  position: relative;
  color: #fff;
  display: flex;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    max-width: 100%;
  }
}
.c-btn01::before {
  content: "";
  display: inline-block;
  background-color: #C51B1B;
  width: 100%;
  height: 3px;
  transition: ease-in-out 0.3s;
  position: absolute;
  left: -100%;
  bottom: -2px;
  z-index: 1000;
}
.c-btn01::after {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 3px;
  transition: ease-in-out 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 1;
}
.c-btn01 a {
  width: 100%;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.c-btn01 a span:last-child:after {
  content: "▶︎";
  display: inline-block;
  color: #C51B1B;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  transition: ease-in-out 0.3s;
}
.c-btn01:hover::before {
  left: 0;
}
.c-btn01:hover::after {
  right: -100%;
}

/*********************/
/***** ボタンタイプ2 ******/
.c-btn02 {
  width: 100%;
}
.c-btn02 a {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #2a9e55;
  text-align: center;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.c-btn02 a::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #b07cad;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  transition: ease-in-out 0.3s;
}
.c-btn02 a::after {
  content: "";
  height: 14px;
  width: 14px;
  display: inline-block;
  background-image: url(../images/icon-arrow2_w.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  margin-bottom: -2px;
  margin-left: 10px;
}
.c-btn02 a:hover::before {
  left: 0;
}

/*********************/
/***** Footer CTAボタン ******/
.c-footerCta {
  border: 1px solid #fff;
  width: 100%;
}
.c-footerCta a {
  height: 100%;
  padding: 32px;
  position: relative;
  color: #fff;
  font-size: clamp(1.125rem, 0.931rem + 0.83vw, 1.5rem);
  gap: 14px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .c-footerCta a {
    padding: 24px 32px;
  }
}
.c-footerCta a::before {
  content: "";
  width: clamp(1.125rem, 0.931rem + 0.83vw, 1.5rem);
  height: clamp(1.125rem, 0.931rem + 0.83vw, 1.5rem);
  display: inline-block;
  background-image: url(../images/icon-mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-footerCta a::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  background-image: url(../images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*********************/
.c-fadeSection {
  height: 100vh;
  position: relative;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(50px);
}
@media screen and (max-width: 1024px) {
  .c-fadeSection {
    height: auto;
  }
}

.c-fadeSection.visible {
  opacity: 1;
  transform: translateY(0);
}

.c-fadeSection.visible .c-fadecontent,
.c-fadeSectionn.visible .c-fadecontent {
  transform: translateY(0);
  opacity: 1;
}

/** パンクズリスト **/
.c-bread {
  width: 100%;
  margin: 50px auto 0 !important;
}
.c-bread__list {
  width: fit-content;
  justify-content: flex-start;
  gap: 6px;
}
.c-bread__item {
  font-size: 12px;
}
.c-bread__item a {
  display: block;
}
.c-bread__item img {
  vertical-align: inherit;
}
.c-bread__item__icon {
  margin-right: 4px;
}

.home .p-fv {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-fv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
.home .p-fv__inner {
  width: 100%;
  align-items: flex-start;
  position: relative;
}
.home .p-fv__inner__left {
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.875rem, 1.552rem + 1.38vw, 2.5rem);
  color: #fff;
  text-align: justify;
  padding-left: clamp(0.625rem, 0.366rem + 1.1vw, 1.125rem);
  border-left: 4px solid #C51B1B;
  line-height: 1.5;
}
.home .p-fv__inner__right {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .home .p-fv__inner__right {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .home .p-fv__inner__right {
    width: 100%;
    margin-top: 50px;
  }
}
.home .p-fv__inner__text {
  font-size: clamp(0.875rem, 0.681rem + 0.83vw, 1.25rem);
  color: #fff;
  font-weight: 500;
  margin-top: 50px;
  line-height: 2;
}

.home .p-sec1 {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-design.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
}
@media screen and (max-width: 767px) {
  .home .p-sec1__inner {
    gap: 50px;
  }
}
.home .p-sec1__left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .home .p-sec1__left {
    width: 100%;
  }
}
.home .p-sec1__right {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .home .p-sec1__right {
    width: 100%;
  }
}
.home .p-sec1__right__wrap {
  align-items: flex-start;
}
.home .p-sec1__title {
  padding-left: 16px;
  border-left: 4px solid #C51B1B;
}
@media screen and (max-width: 767px) {
  .home .p-sec1__title {
    font-size: clamp(2rem, 1.761rem + 1.02vw, 2.25rem);
  }
}
.home .p-sec1__catch {
  font-size: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
  font-weight: 500;
  margin: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem) 0;
}
.home .p-sec1__sub {
  width: 90%;
  font-size: 14px;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .home .p-sec1__sub {
    width: 100%;
  }
}
.home .p-sec1__image {
  width: calc(50% - 10px);
  height: 300px;
  margin-bottom: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home .p-sec1__image {
    height: 200px;
    margin-bottom: 50px;
  }
}
.home .p-sec1__image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.home .p-sec1__image:last-child {
  margin-top: 80px;
}
.home .p-sec1__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #fff;
}

.home .p-sec2 {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-sec2_back.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
}
@media screen and (max-height: 800px) {
  .home .p-sec2 {
    height: 120vh;
  }
}
@media screen and (max-width: 767px) {
  .home .p-sec2__inner {
    gap: 50px;
    flex-direction: column-reverse;
  }
}
.home .p-sec2__left {
  width: 47%;
}
.home .p-sec2__left__wrap {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .home .p-sec2__left {
    width: 100%;
  }
}
.home .p-sec2__right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .home .p-sec2__right {
    width: 100%;
  }
}
.home .p-sec2__title {
  padding-right: 16px;
  border-right: 4px solid #C51B1B;
}
@media screen and (max-width: 767px) {
  .home .p-sec2__title {
    font-size: clamp(2rem, 1.761rem + 1.02vw, 2.25rem);
  }
}
.home .p-sec2__catch {
  font-size: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
  font-weight: 500;
  margin: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem) 0;
}
.home .p-sec2__sub {
  width: 90%;
  font-size: 14px;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .home .p-sec2__sub {
    width: 100%;
  }
}
.home .p-sec2__image {
  width: calc(50% - 10px);
  height: 300px;
  margin-bottom: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home .p-sec2__image {
    height: 200px;
    margin-bottom: 50px;
  }
}
.home .p-sec2__image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.home .p-sec2__image:last-child {
  margin-top: 80px;
}
.home .p-sec2__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #fff;
}

.home .p-sec3 {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-kaigan.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
}
.home .p-sec3__inner {
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .home .p-sec3__inner {
    gap: 50px;
  }
}
.home .p-sec3__left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .home .p-sec3__left {
    width: 100%;
  }
}
.home .p-sec3__right {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .home .p-sec3__right {
    width: 100%;
  }
}
.home .p-sec3__right__wrap {
  align-items: flex-start;
}
.home .p-sec3__right .c-btn01 {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .home .p-sec3__right .c-btn01 {
    margin-left: 0;
  }
}
.home .p-sec3__title {
  padding-left: 16px;
  border-left: 4px solid #C51B1B;
}
@media screen and (max-width: 767px) {
  .home .p-sec3__title {
    font-size: clamp(2rem, 1.761rem + 1.02vw, 2.25rem);
  }
}
.home .p-sec3__catch {
  font-size: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
  font-weight: 500;
  margin: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem) 0;
}
.home .p-sec3__sub {
  width: 90%;
  font-size: 14px;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .home .p-sec3__sub {
    width: 100%;
  }
}
.home .p-sec3__image {
  width: calc(50% - 10px);
  height: 300px;
  margin-bottom: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem);
  overflow: hidden;
}
.home .p-sec3__image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.home .p-sec3__image:last-child {
  margin-top: 80px;
}
.home .p-sec3__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #fff;
}

.page-template-page-about .p-fv {
  width: 100%;
  height: 660px;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-fv_about.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
@media screen and (max-width: 480px) {
  .page-template-page-about .p-fv {
    height: auto;
  }
}
.page-template-page-about .p-fv__inner {
  width: 100%;
  align-items: flex-start;
  position: relative;
}
.page-template-page-about .p-fv__inner__left {
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.875rem, 1.552rem + 1.38vw, 2.5rem);
  color: #fff;
  text-align: justify;
  padding-left: clamp(0.625rem, 0.366rem + 1.1vw, 1.125rem);
  border-left: 4px solid #C51B1B;
  line-height: 1.5;
}
.page-template-page-about .p-fv__inner__right {
  width: 70%;
}
@media screen and (max-width: 1023px) {
  .page-template-page-about .p-fv__inner__right {
    width: 100%;
    margin-top: 5%;
  }
}
.page-template-page-about .p-fv__inner__wrap {
  position: relative;
}
.page-template-page-about .p-fv__inner__after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #C51B1B;
  right: -100%;
  top: 0;
}

.page-template-page-about .p-sec1 {
  width: 100%;
  height: auto;
}
.page-template-page-about .p-sec1 .l-wrap {
  padding-bottom: 0;
}
.page-template-page-about .p-sec1__image {
  margin-top: 30px;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
.page-template-page-about .p-sec1__list {
  width: 100%;
  margin-top: 40px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px clamp(1rem, -0.099rem + 4.69vw, 3.125rem);
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
@media screen and (max-width: 480px) {
  .page-template-page-about .p-sec1__list {
    padding-left: 0;
  }
}
.page-template-page-about .p-sec1__list__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-template-page-about .p-sec1__list__item:nth-child(3) {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
  }
}
.page-template-page-about .p-sec1__list__title {
  font-size: clamp(1rem, 0.806rem + 0.83vw, 1.375rem);
  letter-spacing: 6.6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.page-template-page-about .p-sec1__list__caption {
  margin: 10px 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  font-weight: 700;
}
.page-template-page-about .p-sec1__bottom {
  width: 100%;
  margin-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: clamp(1rem, 0.871rem + 0.55vw, 1.25rem);
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 1px solid #C51B1B;
}
@media screen and (max-width: 480px) {
  .page-template-page-about .p-sec1__bottom {
    margin-left: 0;
  }
}
.page-template-page-about .p-sec1__text {
  width: 100%;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
  font-size: 14px;
  line-height: 2.2;
}
@media screen and (max-width: 480px) {
  .page-template-page-about .p-sec1__text {
    padding-left: 0;
  }
}

.page-template-page-about .p-sec2 {
  width: 100%;
  height: auto;
  margin: 0;
}
.page-template-page-about .p-sec2__inner {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page-template-page-about .p-sec2__inner {
    gap: 30px;
  }
}
.page-template-page-about .p-sec2__left {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .page-template-page-about .p-sec2__left {
    width: 100%;
  }
}
.page-template-page-about .p-sec2__profile {
  margin-top: 30px;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
.page-template-page-about .p-sec2__profile__cap {
  width: 100%;
  margin: 24px 0;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 4px;
  border-bottom: 1px solid #C51B1B;
}
.page-template-page-about .p-sec2__profile__item {
  font-size: 14px;
}
.page-template-page-about .p-sec2__profile__item p:first-child {
  letter-spacing: 6.6px;
  font-weight: 500;
}
.page-template-page-about .p-sec2__right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .page-template-page-about .p-sec2__right {
    width: 100%;
  }
}
.page-template-page-about .p-sec2__right__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 1.306rem + 0.83vw, 1.875rem);
  letter-spacing: 6.6px;
  font-weight: 500;
}
.page-template-page-about .p-sec2__right__title span {
  color: #C51B1B;
}
.page-template-page-about .p-sec2__right__list {
  margin-top: 30px;
  list-style: outside;
  padding-left: 14px;
  position: relative;
}
.page-template-page-about .p-sec2__right__list::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #C51B1B;
  position: absolute;
  left: 6.5px;
  z-index: -1;
}
.page-template-page-about .p-sec2__right__item::marker {
  content: "⚫︎";
  font-size: 14px;
}
.page-template-page-about .p-sec2__right__item > div {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  margin-left: 10px;
  font-size: 14px;
}
.page-template-page-about .p-sec2__right__item:last-child {
  margin-bottom: 0;
}
.page-template-page-about .p-sec2__right__mark {
  background-image: url(../images/object-about_back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom 3px;
}
.page-template-page-about .p-sec2__bottom {
  width: 100%;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
@media screen and (max-width: 480px) {
  .page-template-page-about .p-sec2__bottom {
    padding-left: 0;
  }
}
.page-template-page-about .p-sec2__bottom__text {
  width: 100%;
  font-size: 14px;
  line-height: 2.2;
}
.page-template-page-about .p-sec2__bottom__btn {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page-template-page-about .p-sec2__bottom__btn {
    margin-left: 0;
  }
}

.page-template-page-works .p-fv {
  width: 100%;
  height: 660px;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-fv_works.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
@media screen and (max-width: 480px) {
  .page-template-page-works .p-fv {
    height: auto;
  }
}
.page-template-page-works .p-fv__inner {
  width: 100%;
  align-items: flex-start;
  position: relative;
}
.page-template-page-works .p-fv__inner__left {
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem);
  color: #fff;
  text-align: justify;
  padding-left: clamp(0.625rem, 0.366rem + 1.1vw, 1.125rem);
  border-left: 4px solid #C51B1B;
  line-height: 1.5;
}
.page-template-page-works .p-fv__inner__right {
  width: 53%;
}
@media screen and (max-width: 1023px) {
  .page-template-page-works .p-fv__inner__right {
    width: 100%;
    margin-top: 5%;
  }
}
.page-template-page-works .p-fv__inner__wrap {
  position: relative;
}
.page-template-page-works .p-fv__inner__after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #C51B1B;
  right: -100%;
  top: 0;
}

.page-template-page-works .p-sec1 {
  width: 100%;
  height: auto;
}
.page-template-page-works .p-sec1__image {
  margin-top: 30px;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
.page-template-page-works .p-sec1__list {
  width: 100%;
  margin-top: 40px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px clamp(1rem, -0.099rem + 4.69vw, 3.125rem);
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
@media screen and (max-width: 480px) {
  .page-template-page-works .p-sec1__list {
    padding-left: 0;
  }
}
.page-template-page-works .p-sec1__list__item {
  width: 100%;
}
.page-template-page-works .p-sec1__list__btn {
  margin-top: 0;
}
.page-template-page-works .p-sec1__middle {
  font-size: 12px;
  font-weight: 700;
  margin-top: 40px;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
@media screen and (max-width: 480px) {
  .page-template-page-works .p-sec1__middle {
    padding-left: 0;
  }
}
.page-template-page-works .p-sec1__middle a {
  text-decoration: underline;
}
.page-template-page-works .p-sec1__bottom {
  width: 100%;
  padding-left: clamp(1rem, 0.547rem + 1.93vw, 1.875rem);
}
@media screen and (max-width: 480px) {
  .page-template-page-works .p-sec1__bottom {
    padding-left: 0;
  }
}
.page-template-page-works .p-sec1__bottom__text {
  width: 100%;
  margin-top: 40px;
  font-size: 14px;
  line-height: 2.2;
}
.page-template-page-works .p-sec1__bottom__btn {
  margin-right: 0;
  margin-left: auto;
}

.page-template-page-contact .p-fv {
  width: 100%;
  height: 660px;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-fv_contact.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
@media screen and (max-width: 480px) {
  .page-template-page-contact .p-fv {
    height: auto;
  }
}
.page-template-page-contact .p-fv__inner {
  width: 100%;
  align-items: flex-start;
  position: relative;
}
.page-template-page-contact .p-fv__inner__left {
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.875rem, 1.552rem + 1.38vw, 2.5rem);
  color: #fff;
  text-align: justify;
  padding-left: clamp(0.625rem, 0.366rem + 1.1vw, 1.125rem);
  border-left: 4px solid #C51B1B;
  line-height: 1.5;
}
.page-template-page-contact .p-fv__inner__right {
  width: 60%;
}
@media screen and (max-width: 1023px) {
  .page-template-page-contact .p-fv__inner__right {
    width: 100%;
    margin-top: 5%;
  }
}
.page-template-page-contact .p-fv__inner__wrap {
  position: relative;
}
.page-template-page-contact .p-fv__inner__after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #C51B1B;
  right: -100%;
  top: 0;
}

.page-template-page-contact .p-contact__wrap {
  margin-bottom: clamp(1.875rem, 1.514rem + 1.54vw, 2.5rem);
}
.page-template-page-contact .c-fadeSection {
  height: auto;
}
.page-template-page-contact .wpcf7 {
  background: unset;
  border: none;
  padding: inherit;
}

.single-post .p-fv {
  width: 100%;
  height: 660px;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(../images/img-footer_back.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
@media screen and (max-width: 480px) {
  .single-post .p-fv {
    height: auto;
  }
}
.single-post .p-fv__inner {
  width: 100%;
  align-items: flex-start;
  position: relative;
}
.single-post .p-fv__inner__left {
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.875rem, 1.552rem + 1.38vw, 2.5rem);
  color: #fff;
  text-align: justify;
  padding-left: clamp(0.625rem, 0.366rem + 1.1vw, 1.125rem);
  border-left: 4px solid #C51B1B;
  line-height: 1.5;
}
.single-post .p-fv__inner__right {
  width: 70%;
}
@media screen and (max-width: 1023px) {
  .single-post .p-fv__inner__right {
    width: 100%;
    margin-top: 5%;
  }
}
.single-post .p-fv__inner__wrap {
  position: relative;
}
.single-post .p-fv__inner__after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #C51B1B;
  right: -100%;
  top: 0;
}

.single-post .p-sec1 {
  width: 100%;
  height: auto;
}

.u-required {
  font-size: 12px;
  font-weight: bold;
}

.l-footer {
  background-image: url(../images/img-footer_back.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(160, 160, 160, 0.3);
  background-blend-mode: overlay;
  color: #fff;
  height: fit-content;
}
.l-footer__inner {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    gap: 50px;
  }
}
.l-footer__left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .l-footer__left {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__left .c-title {
    width: 80%;
    margin: auto;
  }
}
.l-footer__right {
  width: 45%;
}
@media screen and (max-width: 1023px) {
  .l-footer__right {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__right {
    width: 100%;
  }
}
.l-footer__left address {
  width: 100%;
  margin-top: 50px;
  font-size: 14px;
}
.l-footer__addressJp {
  width: 100%;
  margin: 30px 0;
}
.l-footer__addressEn {
  font-family: "Montserrat", sans-serif;
}
.l-footer__nav {
  margin-top: 40px;
}
.l-footer__nav__list {
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav__list {
    gap: 18px;
    justify-content: space-between;
  }
}
.l-footer__nav__item {
  width: fit-content;
  font-family: "Montserrat", sans-serif;
}
.l-footer__nav__item a {
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 2px;
}
.l-footer__nav__item a::after {
  height: 1px;
  width: 100%;
  content: "";
  display: inline-block;
  background-color: #C51B1B;
  position: absolute;
  bottom: 0;
  left: -100%;
  transition: ease 0.3s;
}
.l-footer__nav__item a:hover::after {
  left: 0;
}
.l-footer small {
  display: block;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.l-header {
  width: 210px;
  height: 100%;
  margin: 0;
  margin-right: auto;
  justify-content: center;
  z-index: 1000;
  transition: ease-in-out 0.4s;
  background-image: url(../images/object-back.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .l-header {
    left: -100%;
    width: 250px;
    transition: all 0.5s;
  }
}

.open .l-header {
  left: 0;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
  .open .toggle_btn {
    left: 280px;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .open .toggle_btn span:nth-child(1),
  .open .toggle_btn span:nth-child(3) {
    width: 16px;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translate(-1px, 4px) rotate(-45deg);
    transform: translate(-1px, 4px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translate(-1px, -4px) rotate(45deg);
    transform: translate(-1px, -4px) rotate(45deg);
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
}

@media screen and (max-width: 1024px) {
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}
.l-main {
  width: 100%;
  margin: 0;
}

.l-outer {
  align-items: flex-start;
  overflow-x: hidden;
  background-color: #000;
}
.l-outer__left {
  width: 210px;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .l-outer__left {
    width: 0;
    height: 0;
  }
}
.l-outer__right {
  width: calc(100% - 210px);
}
@media screen and (max-width: 1024px) {
  .l-outer__right {
    width: 100%;
  }
}

.l-wrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(3.75rem, 1.81rem + 8.28vw, 7.5rem) 30px;
}
@media screen and (max-width: 480px) {
  .l-wrap {
    padding-bottom: 25%;
  }
}

/****** TOPへ戻るボタン ******/
#topBtn {
  width: 55px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 777;
}