@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1000px;
  --u-content-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --color-white:#fff;
  --color-grey:#7D7D7D;
  --color-light-grey:#F3F3F3;
  --color-dark-grey:#383838;
  --color-text:#121212;
  --color-text-link:#0072D5;
  --color-main:#EAD600;
  --color-line:#01A444;
  --color-sub:#184416;
  --color-accent:#B4B2A2;
  --color-accent2:#C40000;
  --color-dark:#121212;
  --font-main: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-serif: "Noto Serif JP", sans-serif;
  --font-en: "Oswald", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-width: 100%;
    --u-content-width: 100%;
    --content-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-weight: 400;
  min-width: 1200px;
}

a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

.sp {
  display: none !important;
}

.no-mt {
  margin-top: 0 !important;
}

p {
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  box-sizing: content-box;
  appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header -------------------------------------- */
.l-header-wrap {
  background-color: var(--color-dark);
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 20px 16px 46px;
  width: 100%;
  color: var(--color-white);
  background-color: var(--color-dark);
  z-index: 100;
  transition: 0.4s all;
}
.l-header.is-hide-preparation {
  transform: translateY(-101%);
}
.l-header.hide {
  position: fixed;
  top: 0;
  transform: translateY(0);
}
.l-header.is-scroll-down {
  transform: translateY(-101%);
}

.logo img {
  transition: 0.3s;
}

.c-nav-list {
  display: flex;
  gap: 2vw;
  margin: 0;
  padding: 0;
}
.c-nav-list > li {
  list-style: none;
  position: relative;
}
.c-nav-list > li::before {
  background: var(--color-main);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.c-nav-list > li:hover {
  color: var(--color-main);
}
.c-nav-list > li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.c-nav-list > li.has-sub {
  position: relative;
}

.c-nav-list__link {
  text-decoration: none;
}

.c-nav-list-lv2 {
  display: none;
  position: absolute;
  left: -44px;
  top: 2em;
  margin: 0;
  padding: 20px 0 10px;
  width: 164px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
}
.c-nav-list-lv2 > li {
  list-style: none;
}

.c-nav-list-lv2__link {
  display: block;
  font-size: 15px;
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.c-nav-list-lv2__link:hover {
  color: #BF7939;
  opacity: 1;
}
.c-nav-list-lv2__link span {
  font-size: 26px;
  line-height: 1;
  color: var(--color-light);
}

.l-header-util {
  display: flex;
  gap: 8px;
}

.l-gnav-wrap {
  display: flex;
  gap: 18px;
  margin-left: auto;
  width: fit-content;
}

.c-header-util {
  display: flex;
  margin: 0;
  gap: 8px;
}

.c-header-util__type {
  display: flex;
  align-items: center;
  padding: 6px 13px 8px;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-grey);
  border-radius: 5px;
  transition: 0.2s background-color ease-in;
}
.c-header-util__type:hover {
  background-color: var(--color-dark-grey);
}

.c-header-util__type--line {
  background-color: var(--color-line);
}
.c-header-util__type--line:hover {
  background-color: #008135;
}

.c-header-util__type--mail {
  background-color: var(--color-accent2);
}
.c-header-util__type--mail:hover {
  background-color: #990000;
}

.c-header-util__icon {
  flex-shrink: 0;
}

.c-header-util__number-label {
  line-height: 1;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 500;
}

.c-header-util__label {
  line-height: 1.3;
  font-size: 1.5rem;
  font-weight: 700;
}

.l-header__title {
  text-align: right;
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 500;
}

.c-nav-sub-list {
  display: none;
}

@media print, screen and (min-width: 767px) {
  .l-header-wrap {
    height: 130px;
  }
  body.page-contact .l-header-wrap {
    height: 84px;
  }
  .l-header {
    display: grid;
    grid-template-columns: auto 1fr repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 15px 16px;
    min-width: 1200px;
  }
  .l-header__head {
    grid-area: 1/1/3/2;
  }
  .l-header-copy {
    grid-area: 1/3/2/4;
  }
  .l-header-util-wrap {
    grid-area: 1/4/2/5;
  }
  .l-gnav {
    grid-area: 2/3/3/5;
  }
}
@media screen and (min-width: 767px) and (max-width: 1600px) {
  .l-header__head {
    max-width: 200px;
  }
  .l-header__title {
    font-size: 1.2rem;
  }
  .c-header-util__icon {
    max-width: 20px;
  }
  .c-header-util__number-label {
    font-size: 1.6rem;
  }
  .c-header-util__label {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 767px) and (max-width: 1270px) {
  .c-nav-list > li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header-wrap {
    height: 60px;
  }
  .l-header {
    padding: 0 0 0 10px;
  }
  .l-header:has(.l-gnav-wrap.active) {
    transform: translateY(0) !important;
  }
  .l-header__head {
    max-width: 155px;
    width: 38.25%;
  }
  .l-header-copy {
    flex-shrink: 0;
    padding: 5px;
  }
  .l-header-util-wrap {
    margin-top: 32px;
  }
  .l-header-util {
    flex-direction: column;
    gap: 12px;
  }
  .l-gnav-wrap {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 8px var(--content-space) 100px;
    width: 100%;
    height: calc(100vh - 100%);
    background-color: var(--color-dark);
    overflow: auto;
  }
  .c-nav-list {
    flex-direction: column;
    gap: 0;
  }
  .c-nav-list > li {
    line-height: 1.1;
  }
  .c-nav-list > li::before {
    display: none;
  }
  .c-nav-list__link {
    display: block;
    position: relative;
    padding: 14px 40px 14px 8px;
    border-bottom: 1px solid var(--color-grey);
  }
  .c-nav-list__link::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    right: 17px;
    width: 7px;
    height: 14px;
    background: url(../img/common/arrow02.svg) no-repeat 0 0/contain;
  }
  .c-nav-sub-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 32px 0 0;
    padding: 0;
  }
  .c-nav-sub-list > li {
    padding: 0;
    list-style: none;
  }
  .c-nav-sub-list__link {
    display: inline-block;
    position: relative;
    padding: 14px 30px 14px 8px;
    text-decoration: none;
  }
  .c-nav-sub-list__link::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    right: 9px;
    width: 7px;
    height: 14px;
    background: url(../img/common/arrow02.svg) no-repeat 0 0/contain;
  }
  .l-header__title {
    text-align: left;
    line-height: 1.4;
    font-size: 1.1rem;
  }
}
.l-main {
  overflow: clip;
}

.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: -300px;
  top: calc(50vh - 130px);
  background-color: var(--color-dark);
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  right: 0px;
}
.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.3s;
}
.fix-side a img {
  margin-top: 10px;
}
.fix-side a:hover {
  background-color: var(--color-dark);
}

/* footer -------------------------------------- */
.l-footer-wrap {
  padding: 68px 0;
  color: var(--color-white);
  background-color: var(--color-dark);
}

.l-footer {
  margin: 0 auto;
  padding: 0 var(--content-space);
  max-width: var(--content-max-width);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.l-footer .copyright {
  margin-top: 74px;
  line-height: 1;
  font-size: 12px;
  font-size: 1.2rem;
}

.l-footer__head > :first-child,
.l-footer__body > :first-child {
  margin-top: 0 !important;
}
.l-footer__head > :last-child,
.l-footer__body > :last-child {
  margin-bottom: 0 !important;
}

.l-footer__body {
  padding-top: 64px;
}

.c-footer-info-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-top: 33px;
  gap: 8px 18px;
}

.c-footer-info {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 2 span;
  margin: 0;
  padding: 0;
}

.c-footer-info__title,
.c-footer-info__detail {
  line-height: 1.4;
  font-size: 1.4rem;
}

.c-footer-links {
  display: flex;
  gap: 94px;
}

.c-footer-links__item > :first-child {
  margin-top: 0 !important;
}
.c-footer-links__item > :last-child {
  margin-bottom: 0 !important;
}

.c-footer-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 61px 0 0;
  padding: 0;
}
.c-footer-list > li {
  list-style: none;
  font-size: 1.4rem;
}

.c-footer-list__type {
  text-decoration: none;
}
.c-footer-list__type:hover {
  text-decoration: underline;
}

.l-fix-bottom {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-footer-wrap {
    padding: 65px 0;
  }
  .l-footer-wrap .copyright {
    margin-top: 57px;
  }
  .l-footer__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .ftr-logo {
    width: 60%;
  }
  .l-fix-bottom {
    position: fixed;
    display: flex;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    transform: translateY(101%);
    transition: 0.2s transform ease-in;
  }
  .l-fix-bottom.is-show {
    transform: translateY(0%);
  }
  .l-fix-bottom__type {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 5px;
    text-decoration: none;
    line-height: 1;
    color: var(--color-white);
    background-color: var(--color-grey);
  }
  .l-fix-bottom__type--line {
    background-color: var(--color-line);
  }
  .l-fix-bottom__type--mail {
    background-color: var(--color-accent2);
  }
  .l-fix-bottom__type__icon {
    flex-shrink: 0;
    width: 36px;
  }
  .l-fix-bottom__type__label {
    font-size: 1.5rem;
    font-weight: 700;
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  min-width: var(--u-content-width);
  width: 100%;
  margin: 0;
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-dark-grey);
}
ol.breadcrumbs li {
  list-style: none;
  line-height: 1.6;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 12px;
  padding: 0 12px;
  color: var(--color-grey);
}
ol.breadcrumbs li > a {
  font-size: 1.2rem;
  color: var(--color-main);
}
ol.breadcrumbs li > span {
  font-size: 1.2rem;
  color: var(--color-white);
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    min-width: auto;
    padding: 12px var(--content-space);
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
.openbtn {
  display: none;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  transition: 0.8s;
  pointer-events: none;
}
.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー */
  .openbtn {
    appearance: none;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: var(--color-dark-grey);
    z-index: 99999;
    transition: 0.3s;
    border: none;
    text-transform: uppercase;
  }
  .openbtn.hide {
    right: 10px;
    top: 10px;
  }
  /*ボタン内側*/
  .openbtn span:not(.menu) {
    display: block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 19px;
    width: 21px;
    height: 1px;
    background-color: var(--color-main);
  }
  .openbtn .menu {
    display: block;
    padding-top: 40px;
    height: 60px;
    line-height: 1;
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
  }
  .openbtn span:nth-of-type(1) {
    top: 14px;
  }
  .openbtn span:nth-of-type(2) {
    top: 22px;
  }
  .openbtn span:nth-of-type(3) {
    top: 30px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1),
  .openbtn.active span:nth-of-type(2),
  .openbtn.active span:nth-of-type(3) {
    top: 22px;
  }
  .openbtn.active span:nth-of-type(1) {
    transform: rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    transform: rotate(45deg);
  }
}
.sp-menu-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 200px;
  justify-content: center;
  min-width: 1200px;
  overflow: auto;
}
.sp-menu-link .inner {
  width: 1080px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.sp-menu-link .inner .sp-menu-data {
  border-right: 1px solid #d3cbc6;
}
.sp-menu-link .inner .sp-menu-data .sp-menu-logo {
  width: 380px;
}
.sp-menu-link .inner .sp-menu-data p.addr {
  margin-top: 15px;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.sp-menu-link .inner .sp-menu-data .outlink {
  margin-top: 50px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank {
  margin-top: 25px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a {
  text-decoration: none;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.sp-menu-link .inner .sidemenu-link {
  width: 660px;
}
.sp-menu-link .inner .sidemenu-link nav {
  display: flex;
}
.sp-menu-link .inner .sidemenu-link nav ul {
  width: 50%;
}
.sp-menu-link .inner .sidemenu-link nav ul li {
  margin-bottom: 20px;
  margin-left: 0;
  list-style-type: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
.sp-menu-link .inner .sidemenu-link nav ul li a {
  text-decoration: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link .bnr {
  margin-top: 75px;
}
.sp-menu-link .inner .sidemenu-link .bnr a {
  display: flex;
  align-items: center;
  width: 486px;
  height: 100px;
  border-radius: 50px;
  background-color: #aaa;
  padding-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sp-menu-link .inner .sidemenu-link .bnr a:hover {
  opacity: 0.7;
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .sp-menu-link {
    min-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .sp-menu-link .inner {
    display: block;
    width: 90%;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 100%;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo img {
    zoom: 0.5;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: #d3cbc6;
    line-height: 1.3;
    margin-right: 5px;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

.p-cta {
  position: relative;
  padding: 60px 0 137px;
  color: var(--color-white);
  background-color: var(--color-dark-grey);
}

.p-cta__inner {
  margin: 0 auto;
  max-width: var(--content-max-width);
  padding: 0 var(--content-space);
  width: 100%;
}
.p-cta__inner > :first-child {
  margin-top: 0 !important;
}
.p-cta__inner > :last-child {
  margin-bottom: 0 !important;
}

.p-cta__heading {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}

.p-cta__heading__en,
.p-cta__heading__title {
  grid-row: 1;
  grid-column: 1;
  text-align: center;
}

.p-cta__heading__en {
  line-height: 1;
  color: var(--color-dark);
  font-family: var(--font-en);
  font-size: 24rem;
  font-weight: 500;
}

.p-cta__heading__title {
  padding-top: 34px;
  line-height: 1.7;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
}

.p-cta-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto 0;
  max-width: 880px;
}

.p-cta-button {
  margin: 0;
}

.p-cta-button__type {
  display: grid;
  grid-template-columns: 74px auto;
  align-items: center;
  gap: 14px 16px;
  padding: 26px 59px 26px 50px;
  width: 100%;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-grey);
  border-radius: 5px;
  transition: 0.2s background-color ease-in;
}

.p-cta-button__type--phone {
  background-color: var(--color-line);
}
.p-cta-button__type--phone:hover {
  background-color: #008135;
}

.p-cta-button__type--mail {
  background-color: var(--color-accent2);
}
.p-cta-button__type--mail:hover {
  background-color: #990000;
}

.p-cta-button__icon {
  grid-area: 1/1/3/2;
}

.p-cta-button__main {
  grid-area: 1/2/2/3;
  line-height: 1.3;
  font-size: 3rem;
  font-weight: 700;
}

.p-cta-button__sub {
  grid-area: 2/2/3/3;
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-cta-button__note01 {
  line-height: 1;
  font-size: 2.5rem;
  font-weight: 700;
}

.p-cta-button__note02 {
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 500;
}

.p-cta-button02-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto 0;
}

.p-cta-button02 {
  margin: 0;
}

.p-cta-button02__type {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  width: 100%;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-grey);
  border-radius: 5px;
  transition: 0.2s background-color ease-in;
}

.p-cta-button02__type--phone {
  background-color: var(--color-line);
}
.p-cta-button02__type--phone:hover {
  background-color: #008135;
}

.p-cta-button02__type--mail {
  background-color: var(--color-accent2);
}
.p-cta-button02__type--mail:hover {
  background-color: #990000;
}

.p-cta-button02__icon {
  flex-shrink: 0;
}

.p-cta-button02__main {
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-cta {
    margin-top: 0;
    padding: 43px 0;
    overflow: hidden;
  }
  .p-cta__inner {
    padding: 0;
  }
  .p-cta__heading__en {
    font-size: clamp(7rem, 27.7777777778vw, 11.5rem);
  }
  .p-cta__heading__title {
    padding-top: 34px;
    font-size: 2rem;
  }
  .p-cta-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto 0;
    padding: 0 var(--content-space);
    max-width: 880px;
  }
  .p-cta-button__type {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 8px 4px;
    padding: 20px 10px 20px 10px;
    width: 100%;
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-dark);
    border-radius: 5px;
  }
  .p-cta-button__type--phone {
    background-color: var(--color-line);
  }
  .p-cta-button__type--mail {
    background-color: var(--color-accent2);
  }
  .p-cta-button__icon {
    grid-area: 1/1/2/2;
    text-align: center;
  }
  .p-cta-button__main {
    grid-area: 1/2/2/3;
    font-size: clamp(1.7rem, 5.556vw, 2.3rem);
  }
  .p-cta-button__sub {
    grid-area: 2/1/3/3;
    gap: 12px;
  }
  .p-cta-button__note01 {
    flex-shrink: 0;
    font-size: 1.9rem;
    font-size: clamp(1.6rem, 4.589vw, 1.9rem);
  }
  .p-cta-button__note02 {
    line-height: 1.4;
    font-size: 1.5rem;
  }
  .p-cta-button02-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 20px auto 0;
  }
  .p-cta-button02__type {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 8px;
    padding: 16px 16px 16px 20px;
    width: 100%;
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-dark);
    border-radius: 5px;
  }
  .p-cta-button02__type--phone {
    background-color: var(--color-line);
  }
  .p-cta-button02__type--mail {
    background-color: var(--color-accent2);
  }
  .p-cta-button02__icon {
    text-align: center;
  }
  .p-cta-button02__main {
    font-size: 2.3rem;
  }
}
.c-heading-lv2,
.c-heading-lv3,
.c-heading-lv4,
.c-heading-lv5,
.c-heading-lv6,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)),
:where(.u-editor) h3:where(:not(.is-reset-wp-block)),
:where(.u-editor) h4:where(:not(.is-reset-wp-block)),
:where(.u-editor) h5:where(:not(.is-reset-wp-block)),
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  font-family: var(--font-serif);
  line-height: 1.5;
}
.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 96px 0 24px;
  padding: 6px 24px;
  font-size: 3rem;
  color: var(--color-white);
  background-color: var(--color-dark-grey);
  border-top: 4px solid var(--color-main);
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  position: relative;
  margin: 72px 0 16px;
  padding-bottom: 16px;
  font-size: 2.4rem;
}
.c-heading-lv3::after,
:where(.u-editor) h3:where(:not(.is-reset-wp-block))::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-main);
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 64px 0 16px;
  padding: 4px 0 4px 12px;
  font-size: 2rem;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 26px;
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 700;
}

.c-heading-lv6,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
}

.c-label-heading {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -54px;
  padding: 10px 0;
  width: 719px;
  min-height: 174px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  background-color: var(--color-dark-grey);
  z-index: 3;
}
.p-film-technique-section__inner .c-label-heading {
  transform: translateY(-54px);
}
.p-film-technique-section__inner .c-label-heading + * {
  margin-top: 0;
}
.c-label-heading::before, .c-label-heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--color-dark-grey);
}
.c-label-heading::before {
  width: calc(100% + 100vw);
}
.c-label-heading::after {
  width: 80px;
}

.c-label-heading--left::before {
  right: calc(100% - 1px);
}
.c-label-heading--left::after {
  left: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.c-label-heading--right {
  justify-content: flex-end;
  margin-left: auto;
}
.c-label-heading--right::before {
  left: calc(100% - 0.5px);
}
.c-label-heading--right::after {
  right: calc(100% - 1px);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    margin: 60px 0 16px;
    font-size: 2.1rem;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    margin: 52px 0 15px;
    padding-bottom: 9px;
    font-size: 1.9rem;
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    margin: 40px 0 16px;
    padding: 2px 0 2px 12px;
    font-size: 1.7rem;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    margin: 32px 0 16px;
    font-size: 1.6rem;
  }
  .c-heading-lv6,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    margin: 32px 0 16px;
    font-size: 1.6rem;
  }
  .c-label-heading {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
    width: calc(100% - (64px - var(--content-space)));
    min-height: 129px;
    font-size: 2.5rem;
  }
  .c-label-heading::after {
    width: 64px;
  }
  .c-label-heading--left {
    padding-right: var(--content-space);
  }
  .c-label-heading--right {
    justify-content: flex-start;
    padding-left: var(--content-space);
  }
}
/****************************************************************
Easy Table Of Contents
****************************************************************/
.u-contents #ez-toc-container {
  margin: 50px 0 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.u-contents div#ez-toc-container p.ez-toc-title {
  color: var(--color-white);
}

.u-contents #ez-toc-container .ez-toc-title-container {
  padding: 12px 25px 13px;
  background: var(--color-dark-grey);
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 767px) {
  .u-contents #ez-toc-container .ez-toc-title-container {
    padding: 20px 15px;
  }
}
.u-contents #ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 150%;
  position: relative;
}

.u-contents #ez-toc-container .ez-toc-title-container .ez-toc-title::after {
  display: block;
  content: "";
  background: var(--color-white);
  height: 15.5884572681px;
  width: 18px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
}

.u-contents #ez-toc-container .ez-toc-title-toggle {
  display: inline-block;
}

.u-contents #ez-toc-container .ez-toc-title-toggle .ez-toc-js-icon-con {
  display: none;
}

.u-contents #ez-toc-container .ez-toc-title-toggle a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.u-contents #ez-toc-container.toc_close .ez-toc-title-container .ez-toc-title::after {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.u-contents #ez-toc-container .ez-toc-list {
  margin-top: 0;
}

.u-contents #ez-toc-container .ez-toc-list li {
  font-size: 1.6rem;
  font-weight: normal;
  padding-left: 0;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-grey);
}

.u-contents #ez-toc-container .ez-toc-list li::before {
  display: none;
}

.u-contents #ez-toc-container .ez-toc-list li a,
.u-contents #ez-toc-container .ez-toc-list li a:visited {
  color: var(--color-dark) !important;
}

.u-contents #ez-toc-container .ez-toc-list li a {
  display: block;
  padding: 17px 38px;
  text-decoration: none;
  transition: 0.3s;
}

.u-contents #ez-toc-container .ez-toc-list li a::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 45%;
  left: 15px;
}

.u-contents #ez-toc-container .ez-toc-list li a:hover {
  color: var(--color-dark) !important;
  background: var(--color-light-grey);
}

.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
}

:where(.u-editor) a {
  color: var(--color-text-link);
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
}
.c-unordered-list,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)),
.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 0;
  padding: 0;
}
.c-unordered-list > li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) > li,
.c-order-list > li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) > li {
  position: relative;
  line-height: 1.5;
  font-size: 1.6rem;
}
.c-unordered-list > li > .wp-block-list,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) > li > .wp-block-list,
.c-order-list > li > .wp-block-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) > li > .wp-block-list {
  margin-top: 16px;
}
.c-unordered-list > li + li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) > li + li,
.c-order-list > li + li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) > li + li {
  margin-top: 16px;
}

.c-unordered-list li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  padding-left: 21px;
}
.c-unordered-list li:before,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 5px;
  width: 6px;
  height: 6px;
  background-color: var(--color-grey);
  border-radius: 3px;
}

.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
}
.c-order-list li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  position: relative;
  padding-left: 1.4em;
}
.c-order-list li a,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
.c-order-list li:before,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  position: absolute;
  left: 0;
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-grey);
  font-family: var(--font-en);
  font-weight: 700;
}

dt,
dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 32px;
  }
  .c-order-list,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 32px;
  }
  .c-order-list li a,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
}
.c-for-list,
.c-for-list02,
.wp-block-button:where(:not(.is-reset-wp-block)) {
  text-align: center;
  margin: 48px auto 0;
}
.c-for-list a,
.c-for-list02 a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  position: relative;
  display: block;
  margin: 0;
  padding: 18px 74px 18px 50px;
  border-radius: 60px;
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-dark);
  border: 2px solid var(--color-grey);
  transition: 0.2s all ease-in;
}
.c-for-list a::after,
.c-for-list02 a::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  content: "";
  background: url(../img/common/arrow01.svg) no-repeat center right/contain;
  position: absolute;
  width: 26px;
  height: 6px;
  top: calc(50% - 3px);
  right: 40px;
}
.c-for-list a:hover,
.c-for-list02 a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-dark);
  font-weight: bold;
}
.c-for-list.red a,
.c-for-list02.red a,
.wp-block-button:where(:not(.is-reset-wp-block)).red a {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.c-for-list.red a:hover,
.c-for-list02.red a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)).red a:hover {
  background: var(--color-main);
  color: var(--color-main);
  font-weight: bold;
}
.c-for-list.is-color-main a,
.c-for-list02.is-color-main a,
.wp-block-button:where(:not(.is-reset-wp-block)).is-color-main a {
  color: var(--color-dark);
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.c-for-list.is-color-main a:hover,
.c-for-list02.is-color-main a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)).is-color-main a:hover {
  background-color: var(--color-white);
  border-color: var(--color-grey);
}

.c-for-list,
.c-for-list02 {
  display: flex;
  justify-content: center;
}
.c-for-list.is-left,
.c-for-list02.is-left {
  justify-content: flex-start;
}
.c-for-list.is-right,
.c-for-list02.is-right {
  justify-content: flex-end;
}

.c-for-list02 a {
  color: var(--color-dark);
  background-color: var(--color-white);
}
.c-for-list02 a:hover {
  background-color: var(--color-main);
}

:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)).is-more {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .c-for-list02,
  .wp-block-button:where(:not(.is-reset-wp-block)) {
    text-align: center;
    margin: 23px auto 0;
    display: block !important;
  }
  .c-for-list a,
  .c-for-list02 a,
  .wp-block-button:where(:not(.is-reset-wp-block)) a {
    position: relative;
    display: block;
    width: 100%;
    padding: 17px 45px;
    font-size: 1.6rem;
    margin: 0 auto;
  }
  .c-for-list a::after,
  .c-for-list02 a::after,
  .wp-block-button:where(:not(.is-reset-wp-block)) a::after {
    right: 18px;
  }
  :where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
    margin-top: 30px;
  }
  :where(.u-editor).is-more {
    margin-top: 42px;
  }
}
.c-blockquote,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  padding: 40px 80px 64px;
  border-left: 2px solid var(--color-dark-grey);
  position: relative;
  background-color: var(--color-light-grey);
  background-image: url(../img/common/icon-blockquote-start.svg), url(../img/common/icon-blockquote-end.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 24px 16px, right 24px bottom 24px;
}
.c-blockquote cite,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  margin-top: 16px;
  font-size: 1.6rem;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    margin: 40px auto 0;
    padding: 48px 36px;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    display: block;
    margin-top: 20px;
  }
}
.c-image,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
.c-image img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
.c-image figcaption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 16px;
}
.c-image.is-caption-label,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)).is-caption-label {
  position: relative;
}
.c-image.is-caption-label .wp-element-caption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)).is-caption-label .wp-element-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 4px 10px;
  line-height: 1.2;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 500;
  background-color: var(--color-dark);
}

@media screen and (max-width: 767px) {
  .c-image,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-image img,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 16px;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

.c-iframe iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.u-editor {
  --table-border-color: var(--color-grey);
  --table-bg-color: var(--color-dark);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-editor table {
  margin-top: 40px;
  border-collapse: collapse;
  border: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
.u-editor table tr {
  border-bottom: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.5;
  font-size: 1.6rem;
  padding: 15px 30px;
  text-align: left;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor table tr th {
  padding: 16px 40px;
  font-weight: 700;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr td {
  padding: 16px 32px;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-editor table thead th {
  line-height: 2;
  color: var(--color-white);
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-editor table tbody th {
  color: var(--color-white);
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-editor table tbody td {
  border-right: 1px solid var(--table-border-color);
}

@media screen and (max-width: 767px) {
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
    width: max-content !important;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout.is-stacked-on-mobile {
    width: 100%;
    border: none;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout.is-stacked-on-mobile tr {
    border-bottom: none;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-editor table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  .u-editor table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr th,
  .u-editor table tr td {
    line-height: 1.3;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 30px;
    text-align: left;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  .u-editor table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  .u-editor table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  .u-editor table tbody td {
    border-right: 1px solid var(--table-border-color);
  }
}
.c-grid,
.c-image-grid,
:where(.u-editor) .is-layout-grid:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 0;
  gap: 17px 16px;
  width: 100%;
}
.c-grid > *,
.c-image-grid > *,
:where(.u-editor) .is-layout-grid:where(:not(.is-reset-wp-block)) > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.c-image-grid {
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .c-image-grid {
    gap: 6px;
  }
  .c-image-grid :where(.wp-block-image > img) {
    width: 100%;
  }
  .is-sp-grid-template-columns-1.c-image-grid, .is-sp-grid-template-columns-1.c-grid, .is-sp-grid-template-columns-1.is-layout-grid {
    grid-template-columns: 1fr;
  }
  .is-sp-grid-template-columns-2.c-image-grid, .is-sp-grid-template-columns-2.c-grid, .is-sp-grid-template-columns-2.is-layout-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.u-contents .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 88px auto 60px;
  text-align: center;
}
.u-contents .wp-pagenavi > span,
.u-contents .wp-pagenavi > a {
  display: block;
  margin: 0;
  padding: 16px 12px;
  line-height: 1;
  border: 2px solid var(--color-accent);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}
.u-contents .wp-pagenavi > span.current,
.u-contents .wp-pagenavi > a.current {
  padding: 16px 12px;
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-dark);
  font-weight: 500;
}
.u-contents .wp-pagenavi .pages,
.u-contents .wp-pagenavi .extend {
  padding: 0;
  color: var(--color-dark);
  border: none;
  background: transparent;
}
.u-contents .wp-pagenavi .pages {
  border: none;
}
.u-contents .wp-pagenavi > a {
  text-align: center;
  min-width: 44px;
  text-decoration: underline;
}
.u-contents .wp-pagenavi > a:hover {
  text-decoration: none;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 2;
  color: var(--color-text-link);
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .u-contents .wp-pagenavi {
    margin: 60px auto;
    text-align: center;
  }
  .next-prev {
    flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-group__inner-container > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-group__inner-container > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 637px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}
.c-slider02 .splide__list li {
  padding-left: 0;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url(../img/common/icon-slider-play01.png);
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url(../img/common/icon-slider-stop01.png);
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 95px;
  transition: 0.2s all;
  cursor: pointer;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}

.c-sns-list {
  display: flex;
  gap: 24px;
  margin: 75px 0 0;
  padding: 0;
}
.c-sns-list > li {
  list-style: none;
}

.c-sns-list--contact {
  justify-content: center;
}

.c-sns__type {
  display: block;
}

.c-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 26px;
  margin: 40px 0 0;
  padding: 0;
}
.c-card-wrap > li {
  list-style: none;
  padding: 0;
}
.c-card-wrap > li::before {
  display: none;
}
.c-card-wrap > .c-card {
  margin: 0;
}

.c-card {
  margin-top: 50px;
}

.c-card__type {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--color-dark);
}
.c-card__type:hover .c-card__img {
  opacity: 0.6;
}
.c-card__type > :first-child {
  margin-top: 0 !important;
}
.c-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-card__img {
  aspect-ratio: 317/220;
  overflow: hidden;
  transition: 0.2s opacity;
}
.c-card__img > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-card__prop {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-card__date {
  line-height: 1;
  color: var(--color-dark-grey);
  font-size: 1.4rem;
}

.c-card__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.c-card__category {
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-dark-grey);
}
.c-card__category.c-card__category--tag {
  color: var(--color-white);
  background-color: var(--color-dark-grey);
}

.c-card__title {
  line-height: 1.6;
  font-size: 1.6rem;
}

.c-qa-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 49px 0 0;
}
.c-qa-layout + .c-qa-layout {
  margin-top: 41px;
}

.c-qa-layout__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 14px 16px;
}
.c-qa-layout__head:has(.c-qa-layout__head__trigger) {
  padding: 0;
}

.c-qa-layout__head__trigger {
  appearance: none;
  display: flex;
  align-items: center;
  position: relative;
  gap: 16px;
  margin: 0;
  padding: 14px 50px 14px 16px;
  width: 100%;
  text-align: left;
  color: var(--color-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid var(--color-grey);
}
.c-qa-layout__head__trigger.is-show {
  border-bottom-color: transparent;
}
.c-qa-layout__head__trigger::before, .c-qa-layout__head__trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  right: 16px;
  width: 23px;
  height: 2px;
  background-color: var(--color-grey);
}
.c-qa-layout__head__trigger::after {
  transform: rotate(90deg);
  transition: 0.2s transform ease-in;
}
.c-qa-layout__head__trigger.is-show::after {
  transform: rotate(0deg);
}

.c-qa-layout__head__pref {
  display: inline-block;
  padding: 1px 8px 5px;
  line-height: 1;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--color-dark);
}

.c-qa-layout__title {
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 500;
}

.c-qa-layout__body {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  padding: 24px 16px;
  background-color: var(--color-light-grey);
}

.c-qa-layout__body__pref {
  padding: 1px 8px 5px;
  line-height: 1;
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 2px solid var(--color-main);
}

.c-qa-layout__detail .wp-block-list {
  margin-top: 20px;
}
.c-qa-layout__detail > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-flow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 7px 60px;
  margin: 40px 0 0;
  padding: 0;
}
.c-flow-list > li {
  display: flex;
}
.c-flow-list > .c-flow-list__two-line {
  grid-row: 2 span;
}

.c-flow-list__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 2px;
  min-width: 4rem;
  line-height: 1;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 500;
  background-color: var(--color-dark);
}

.c-flow-list__label {
  flex-grow: 1;
  padding: 8px 20px;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--color-light-grey);
}

.c-flow-list__note {
  display: block;
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 400;
}

.c-spec-block-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 57px;
}

.c-spec-block {
  position: relative;
  margin-top: 30px;
  padding: 0 18px 30px;
  text-decoration: none;
  color: var(--color-dark);
  background-color: var(--color-white);
  transition: 0.2s opacity;
}
.c-spec-block::before, .c-spec-block::after {
  content: "";
  display: block;
  position: absolute;
  top: -29.5px;
  height: 30px;
  background-color: var(--color-white);
}
.c-spec-block::before {
  right: 0;
  width: calc(100% - 30px);
}
.c-spec-block::after {
  width: 30px;
  left: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.c-spec-block:hover {
  opacity: 0.7;
}

.c-spec-block__title,
.c-spec-block__label {
  line-height: 1.4;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
}

.c-spec-block__title {
  position: relative;
  margin-top: 0;
}

.c-spec-block__label {
  display: block;
  margin-top: 4px;
  padding: 2px;
  color: var(--color-main);
  background-color: var(--color-dark);
}

.c-spec-block__plan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.c-spec-block__price {
  margin: 0;
  width: fit-content;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 700;
}

.c-spec-block__price__large {
  font-size: 3.5rem;
}

.c-spec-block__price__unit {
  display: block;
  font-size: 2rem;
}

.c-spec-block__guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 114px;
  height: 114px;
  font-weight: 700;
  z-index: 2;
}
.c-spec-block__guarantee::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  background-color: var(--color-main);
  z-index: -1;
}

.c-spec-block__guarantee__title {
  line-height: 1.3;
}

.c-spec-block__guarantee__detail {
  line-height: 1;
  font-size: 3rem;
}

.c-spec-block__guarantee__pref {
  font-size: 1.4rem;
}

.c-spec-block__guarantee__unit {
  font-size: 2.2rem;
}

.c-spec-block__text {
  margin-top: 12px;
  line-height: 1.7;
  font-size: 1.6rem;
}

.c-spec-label-wrap {
  display: flex;
  justify-content: center;
  margin: 14px 0 0;
  padding: 18px;
  color: var(--color-dark);
  background-color: var(--color-main);
}

.c-spec-label {
  margin: 0;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 500;
}

.c-spec-label__strong {
  font-size: 2.2rem;
  font-weight: 900;
}

.c-spec-label__black {
  font-weight: 900;
}

.c-frame-box {
  margin-top: 50px;
  padding: 32px;
  border: 2px solid var(--color-accent);
}
.c-frame-box > :first-child {
  margin-top: 0 !important;
}
.c-frame-box > :last-child {
  margin-bottom: 0 !important;
}
.c-frame-box :where(p) {
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 59vw;
  }
  .c-slider02 {
    margin-top: 24px;
  }
  .c-slider--sp .splide__controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
  }
  .c-sns-list {
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
  }
  .c-sns-list--contact {
    gap: 15px;
  }
  .c-sns__type img {
    max-width: 48px;
    width: 100%;
  }
  .c-card-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .c-card__type {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .c-card__img {
    flex-shrink: 0;
    max-width: 330px;
    width: 43.19%;
  }
  .c-card__prop {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .c-card__category-wrap {
    gap: 4px;
  }
  .c-card__category {
    padding: 7px;
    font-size: 1.3rem;
  }
  .c-flow-list {
    display: flex;
    flex-direction: column;
    margin-top: 26px;
  }
  .c-spec-block-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 33px;
  }
  .c-spec-block {
    padding: 0 12px 15px;
  }
  .c-spec-block__title {
    margin-top: -12px;
    font-size: 2rem;
  }
  .c-spec-block__label {
    margin-top: 6px;
    font-size: 2.2rem;
  }
  .c-spec-block__detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-spec-block__plan {
    flex-direction: column;
    gap: 6px;
    padding-right: 6px;
  }
  .c-spec-block__price__unit {
    display: inline;
  }
  .c-spec-label-wrap {
    padding: 14px;
  }
  .c-spec-label {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .c-spec-label__strong {
    font-size: 2.4rem;
  }
  .c-frame-box {
    padding: 16px;
    border: 1px solid var(--color-accent);
  }
}
/*
 * pages
 */
.cat-area {
  width: var(--content-width);
  margin: 40px auto 0;
}
.cat-area p.date {
  color: var(--color-accent);
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 12px;
}
.cat-area .cat {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-area .cat a {
  display: inline-block;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-grey);
  color: var(--color-dark-grey);
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.cat-area .cat a:hover {
  background-color: var(--color-sub);
  color: #fff;
}
.cat-area ul.cat {
  display: flex;
  margin-bottom: 30px;
  margin-top: 0;
  padding: 0;
}
.cat-area ul.cat li {
  list-style: none;
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1;
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}
.cat-area ul.cat li a:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.cat-area ul.cat li span.current {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
  line-height: 1;
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}

.cat-area.type-category ul.cat {
  gap: 0;
}
.cat-area.type-category ul.cat li a {
  font-size: 16px;
  padding: 10px 18px;
}
.cat-area.type-category ul.cat li span.current {
  font-size: 16px;
  padding: 10px 18px;
}

.cat02 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.cat02 li {
  list-style: none;
}
.cat02 li a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-grey);
  color: var(--color-dark-grey);
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
}
.cat02 li a:hover {
  background-color: var(--color-sub);
  color: var(--color-white);
  border-color: var(--color-sub);
}
.cat02 li a.is-current {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.tag-area {
  margin-top: 10px;
  display: flex;
}
.tag-area span {
  display: inline-block;
  padding: 1px 12px;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
  color: var(--color-white);
  border-radius: 20px;
  margin-right: 8px;
}

.tag-area.type-tag {
  width: var(--content-width);
  margin: 20px auto 0;
}
.tag-area.type-tag .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.tag-area.type-tag .tag-list li {
  list-style: none;
}
.tag-area.type-tag .tag-list li .tag-filter {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-grey);
  color: var(--color-dark-grey);
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
}
.tag-area.type-tag .tag-list li .tag-filter:hover, .tag-area.type-tag .tag-list li .tag-filter.hover {
  background-color: var(--color-sub);
  color: var(--color-white);
  border-color: var(--color-sub);
}
.tag-area.type-tag .tag-list li .tag-filter.active {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

@media screen and (max-width: 767px) {
  .cat-area {
    margin: 10px auto 0;
    display: block;
  }
  .cat-area .cat {
    display: flex;
    align-items: center;
    margin-top: 12px;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 8px 14px;
    font-size: 1.4rem;
  }
  .cat-area ul.cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 16px;
  }
  .cat-area ul.cat li a:active {
    background-color: var(--color-main);
    color: #fff;
    filter: brightness(1);
  }
  .cat-area ul.cat li span.current {
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 16px;
  }
  .cat-area.type-category ul.cat {
    margin-bottom: 20px;
  }
  .cat-area.type-category ul.cat li {
    margin-bottom: 8px;
  }
}
.c-card__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.c-card__tag {
  display: inline-block;
  padding: 1px 12px;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-grey);
  color: var(--color-dark-grey);
  border-radius: 20px;
}

p.p-no-posts {
  margin-top: 40px;
}

.single-main {
  text-align: center;
  padding: 64px var(--content-space);
  margin-top: 0;
  color: var(--color-white);
  background: var(--color-dark) url(../img/common/main-bg01.png);
}
.single-main .single-main__title {
  width: var(--content-width);
  margin: 24px auto 0;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}
.single-main > :first-child {
  margin-top: 0 !important;
}

/* 施工事例 */
.youtube-gallery {
  margin-top: 40px;
}
.youtube-gallery .wrap {
  display: flex;
  flex-wrap: wrap;
}
.youtube-gallery .wrap .box {
  width: 32%;
  height: auto;
  aspect-ratio: 16/9;
  margin-right: 2%;
  margin-top: 20px;
}
.youtube-gallery .wrap .box iframe {
  width: 100%;
  height: 100%;
}
.youtube-gallery .wrap .box:nth-child(3n) {
  margin-right: 0;
}

.works-table {
  margin-top: 40px;
}
.works-table table {
  width: 100%;
  border-collapse: collapse;
}
.works-table table th {
  width: 146px;
}

.point-gallery {
  margin-top: 20px;
}
.point-gallery .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.point-gallery .wrap .box {
  width: 48%;
  margin-top: 40px;
}
.point-gallery .wrap .box .image {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.point-gallery .wrap .box .image:before {
  content: "POINT";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 700;
  background-color: var(--color-dark);
  color: var(--color-main);
  z-index: 1;
}
.point-gallery .wrap .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.point-gallery .wrap .box .text {
  line-height: 1.5;
  margin-top: 10px;
}

.b-a-gallery .wrap .b-a-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.b-a-gallery .wrap .b-a-box .b-images {
  width: 38%;
}
.b-a-gallery .wrap .b-a-box .b-images .before-image {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.b-a-gallery .wrap .b-a-box .b-images .before-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.b-a-gallery .wrap .b-a-box .b-images span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px;
  font-size: 13px;
  background-color: var(--color-dark);
  color: var(--color-main);
  z-index: 1;
}
.b-a-gallery .wrap .b-a-box .a-images {
  width: 60%;
}
.b-a-gallery .wrap .b-a-box .a-images .after-image {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.b-a-gallery .wrap .b-a-box .a-images .after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.b-a-gallery .wrap .b-a-box .a-images span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px;
  font-size: 15px;
  background-color: var(--color-dark);
  color: var(--color-main);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .single-main {
    text-align: left;
    padding: 32px var(--content-space);
  }
  .single-main .single-main__title {
    margin-top: 12px;
    width: 100%;
    font-size: 2.4rem;
    text-align: left;
    line-height: 1.5;
  }
  /* 施工事例 */
  .youtube-gallery .wrap {
    display: block;
  }
  .youtube-gallery .wrap .box {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-right: 0;
    margin-top: 20px;
  }
  .works-table table th {
    display: block;
    width: 100%;
    border-right: transparent !important;
  }
  .works-table table td {
    display: block;
    width: 100%;
    border-right: transparent !important;
  }
  .point-gallery .wrap {
    display: block;
  }
  .point-gallery .wrap .box {
    width: 100%;
  }
  .point-gallery .wrap .box .image {
    width: 100%;
  }
  .b-a-gallery .wrap .b-a-box {
    display: block;
    margin-top: 60px;
  }
  .b-a-gallery .wrap .b-a-box .b-images {
    width: 100%;
  }
  .b-a-gallery .wrap .b-a-box .a-images {
    width: 100%;
    margin-top: 30px;
  }
}
.u-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 64px var(--content-space);
  width: 100%;
  text-align: center;
  color: var(--color-white);
  background: var(--color-dark) url(../img/common/main-bg01.png);
}
.u-main .u-main__en {
  color: var(--color-main);
  text-transform: uppercase;
  font-size: 3rem;
  font-family: var(--font-en);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1;
}
.u-main .u-main__title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
.u-main .works-title {
  display: flex;
  align-items: center;
}
.u-main .works-title span {
  font-size: 2rem;
  margin-left: 10px;
}
.u-main > :first-child {
  margin-top: 0 !important;
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

.p-film-technique-section {
  grid-column: 1/4;
  position: relative;
  margin-top: 150px;
  padding: 0 0 200px;
  z-index: 1;
  color: var(--color-white);
}
.p-film-technique-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-negative-space);
  width: calc(100% + var(--content-space) * 2);
  height: 100%;
  background: var(--color-dark) url(../img/page/film-technique-bg01.webp) no-repeat right top/51.406% auto;
  z-index: -1;
}

.p-film-technique-section__inner {
  margin: 0 auto;
  padding: 0 var(--content-space);
  width: var(--content-max-width);
}
.p-film-technique-section__inner > :first-child {
  margin-top: 0 !important;
}
.p-film-technique-section__inner > :last-child {
  margin-bottom: 0 !important;
}

.p-film-technique-box {
  margin-top: 53px;
  padding: 40px;
}
.p-film-technique-box > :first-child {
  margin-top: 0 !important;
}
.p-film-technique-box > :last-child {
  margin-bottom: 0 !important;
}

.p-film-technique-box02 {
  margin: 42px 0 0;
  padding: 40px;
  color: var(--color-dark);
}
.p-film-technique-box02 > :first-child {
  margin-top: 0 !important;
}
.p-film-technique-box02 > :last-child {
  margin-bottom: 0 !important;
}
.p-film-technique-box02 p {
  font-size: 1.6rem;
}

.p-film-technique-box02__title {
  margin-top: 30px;
  margin-bottom: 34px;
  line-height: 1.4;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
}
.p-film-technique-box02__title + * {
  margin-top: 0;
}

.p-film-technique-box02__title02 {
  margin-top: 18px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--color-dark);
}
.p-film-technique-box02__title02 + * {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .u-main {
    padding: 32px var(--content-space);
    min-height: 162px;
  }
  .u-main .u-main__en {
    font-size: 2.2rem;
  }
  .u-main .u-main__title {
    font-size: 2.8rem;
    font-weight: bold;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
  .p-film-technique-section {
    padding-bottom: 130px;
  }
  .p-film-technique-section__inner {
    padding: 0;
  }
  .p-film-technique-box {
    padding: var(--content-space);
  }
  .p-film-technique-box02 {
    padding: var(--content-space);
  }
}
.main-image {
  width: 100%;
  height: auto;
}
.main-image img {
  width: 100%;
  height: auto;
}

.p-top-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-top-heading__en,
.p-top-heading__en02 {
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 500;
}

.p-top-heading__en {
  color: var(--color-main);
  font-size: 7rem;
}

.p-top-heading__en02 {
  margin-bottom: -33px;
  color: var(--color-light-grey);
  font-size: 11rem;
}

.p-top-heading__title {
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
}

.p-top-heading02 {
  display: flex;
  align-items: center;
  position: relative;
  padding: 33px 0 32px;
  min-height: 257px;
  color: var(--color-white);
  z-index: 2;
}
.p-top-heading02::before, .p-top-heading02::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--color-dark-grey);
  z-index: -1;
}
.p-top-heading02::before {
  width: calc(100% + 100vw);
}
.p-top-heading02::after {
  width: 101px;
}
.p-top-heading02:not(.p-top-heading02--revers)::before {
  right: -43px;
}
.p-top-heading02:not(.p-top-heading02--revers)::after {
  right: -144px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.p-top-heading02.p-top-heading02--revers {
  padding-left: 19px;
}
.p-top-heading02.p-top-heading02--revers::before {
  left: -20px;
}
.p-top-heading02.p-top-heading02--revers::after {
  left: -121px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.p-top-heading02__title {
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  z-index: 2;
}

.p-top-lead {
  margin-top: 30px;
  padding-top: 23px;
  line-height: 2;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
}
.p-top-lead + p {
  margin-top: 0;
}

.p-top-lead02 {
  margin-top: 51px;
  line-height: 1.4;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
}

.p-top-media {
  display: grid;
  grid-template-columns: 822px auto;
  grid-template-rows: auto 1fr;
  gap: 34px 91px;
  width: fit-content;
}
.p-top-media:not(.p-top-media--revers) {
  padding-left: 101px;
  margin-left: auto;
}

.p-top-media--revers {
  grid-template-columns: auto 543px;
  padding-right: 101px;
}

.p-top-media__head > :first-child,
.p-top-media__body > :first-child,
.p-top-media__bottom > :first-child {
  margin-top: 0 !important;
}
.p-top-media__head > :last-child,
.p-top-media__body > :last-child,
.p-top-media__bottom > :last-child {
  margin-bottom: 0 !important;
}

.p-top-media__head {
  grid-area: 1/1/2/2;
}
.p-top-media--revers .p-top-media__head {
  grid-area: 1/2/2/3;
}

.p-top-media__body {
  position: relative;
  grid-area: 1/2/3/3;
  z-index: 3;
}
.p-top-media--revers .p-top-media__body {
  grid-area: 1/1/3/2;
}

.p-top-media__bottom {
  grid-area: 2/1/3/2;
  z-index: 4;
}
.p-top-media--revers .p-top-media__bottom {
  grid-area: 2/2/3/3;
}

.p-top-media__lead {
  position: relative;
  margin: 0;
  line-height: 1;
  color: var(--color-main);
  text-transform: uppercase;
  font-family: var(--font-en);
  font-size: 7rem;
  font-weight: 500;
  z-index: 4;
}

.p-top-media__lead--revers {
  padding: 0 0 0 19px;
}

.p-top-section {
  margin-top: 120px;
  background-color: var(--content-width);
}
.p-top-section > :first-child {
  margin-top: 0 !important;
}
.p-top-section > :last-child {
  margin-bottom: 0 !important;
}

:where(.p-top-section) p {
  margin-top: 2em;
}

.p-top-section--access {
  margin-top: 0;
  padding-top: 120px;
}

.p-top-section--price {
  margin-top: 90px;
}

.p-top-section--last {
  position: relative;
  z-index: 1;
}
.p-top-section--last::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--color-dark-grey);
  z-index: -1;
}

.p-top-section--black {
  color: var(--color-white);
  background-color: var(--color-dark);
}

.p-top-section--01 {
  margin-top: 0;
  padding: 96px 0 71px;
  color: var(--color-white);
  background-color: var(--color-dark-grey);
  z-index: 2;
}

.p-top-section--02 {
  margin-top: 0;
  padding: 164px 0 140px;
  overflow: hidden;
}

.p-top-section--03 {
  position: relative;
  margin-top: 0;
  padding: 136px 0;
}
.p-top-section--03::before, .p-top-section--03::after {
  content: "";
  display: block;
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: var(--color-dark);
  z-index: 1;
}
.p-top-section--03::before {
  top: -1px;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.p-top-section--03::after {
  bottom: -1px;
  right: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.p-top-section__inner {
  width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-space);
}
.p-top-section--access .p-top-section__inner {
  --content-width: 1160px;
  max-width: calc(var(--content-width) + var(--content-space) * 2);
  width: 100%;
}
.p-top-section--gallery .p-top-section__inner {
  padding: 0;
  max-width: none;
  width: 100%;
}
.p-top-section__inner > :first-child {
  margin-top: 0 !important;
}
.p-top-section__inner > :last-child {
  margin-bottom: 0 !important;
}

.p-top-faq-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0 0;
}
.p-top-faq-content .c-qa-layout {
  margin-top: 0;
}
.p-top-faq-content p {
  font-size: 1.5rem;
}

.p-top-map-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.p-top-map {
  width: calc(50% - 10px);
}
.p-top-map > :first-child {
  margin-top: 0 !important;
}
.p-top-map > :last-child {
  margin-bottom: 0 !important;
}

.p-top-map__detail {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.p-top-map__title {
  margin: 0;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 700;
}

.p-top-map__text {
  margin: 0;
  line-height: 1;
  font-size: 1.6rem;
}

.p-top-map__media {
  margin-top: 19px;
}

.p-top-map__iframe {
  aspect-ratio: 570/365;
}
.p-top-map__iframe iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  position: relative;
  background-color: var(--color-dark);
  z-index: 2;
}
.p-top-main::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 111px;
  background-color: var(--color-dark-grey);
  z-index: -1;
}

.p-top-main__image,
.p-top-main__detail {
  grid-row: 1;
  grid-column: 1;
}

.p-top-main__image {
  padding-left: 12.5%;
}

.p-top-main__detail {
  color: var(--color-white);
}

.p-top-main__detail__sec01,
.p-top-main__detail__sec02,
.p-top-main__detail__sec03 {
  position: absolute;
  z-index: 2;
}

.p-top-main__detail__sec01 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  top: 16.73%;
  left: 6.61%;
}

.p-top-main__detail__sec02 {
  right: 20px;
  bottom: 20px;
  width: 35.15%;
}

.p-top-main__detail__sec03 {
  top: 64%;
  left: 6.61%;
  width: 22%;
}
.p-top-main__detail__sec03 a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-top-main__detail__sec03 a:hover {
  opacity: 0.7;
}
.p-top-main__detail__sec03 p {
  display: flex;
  align-items: center;
}
.p-top-main__detail__sec03 p img {
  margin-left: 10px;
}

@media screen and (max-width: 1500px) {
  .p-top-main__detail__sec03 {
    top: 70%;
  }
}
.p-top-main__lead,
.p-top-main__text {
  margin: 0;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
  font-weight: 700;
}

.p-top-main__lead {
  font-size: clamp(4rem, 3.646vw, 7rem);
}

.p-top-main__text {
  font-size: clamp(2.4rem, 2.576vw, 3.4rem);
}

.p-top-main__arrows {
  position: absolute;
  bottom: -2px;
  left: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1px;
}

.p-top-main__arrow-text {
  margin-bottom: 7px;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.p-top-main__arrow {
  margin: 0 auto;
  width: 19px;
  height: 9px;
  opacity: 0;
  background: url(../img/top/mv-arrow01.webp) no-repeat center center/contain;
}

.p-top-main__arrow--01 {
  animation: arrow-move08 1.5s ease-in-out infinite;
}

.p-top-main__arrow--02 {
  animation: arrow-move08 1.2s 0.5s ease-in-out infinite;
}

.p-top-main__arrow--03 {
  animation: arrow-move08 1.5s 1s ease-in-out infinite;
}

@keyframes arrow-move08 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-top-news-more {
  margin-top: 60px;
}
.p-top-news-more > :first-child {
  margin-top: 0 !important;
}

.p-top-movie {
  margin: 28px auto 0;
  max-width: 896px;
}

.p-top-gallery-slider {
  margin-top: 37px;
}

@media screen and (max-width: 767px) {
  .main-image {
    width: 100%;
    height: auto;
  }
  .main-image img {
    width: 100%;
    height: auto;
  }
  .p-top-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-top-heading__en {
    font-size: 4rem;
  }
  .p-top-heading__en02 {
    margin-bottom: -24px;
    font-size: 6rem;
  }
  .p-top-heading__title {
    font-size: 2.5rem;
  }
  .p-top-heading02 {
    padding: 30px var(--content-space) 30px;
    min-height: auto;
  }
  .p-top-heading02::after {
    width: 64px;
  }
  .p-top-heading02:not(.p-top-heading02--revers) {
    padding-right: 0;
    margin-right: 64px;
  }
  .p-top-heading02:not(.p-top-heading02--revers)::before {
    right: 0;
  }
  .p-top-heading02:not(.p-top-heading02--revers)::after {
    right: -64px;
  }
  .p-top-heading02:not(.p-top-heading02--revers) .p-top-heading02__title {
    margin-right: var(--content-negative-space);
  }
  .p-top-heading02.p-top-heading02--revers {
    margin-left: 64px;
    padding-left: var(--content-space);
  }
  .p-top-heading02.p-top-heading02--revers::before {
    left: 0;
  }
  .p-top-heading02.p-top-heading02--revers::after {
    left: -64px;
  }
  .p-top-heading02__title {
    font-size: 2.5rem;
  }
  .p-top-lead {
    line-height: 1.7;
    font-size: 2rem;
  }
  .p-top-lead02 {
    margin-top: 48px;
    font-size: 2rem;
  }
  .p-top-media {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .p-top-media:not(.p-top-media--revers) {
    padding-left: 0;
    margin-left: auto;
  }
  .p-top-media--revers {
    padding-right: 0;
  }
  .p-top-lead {
    padding-top: 33px;
  }
  .p-top-lead + p {
    margin-top: 12px;
  }
  .p-top-media__bottom {
    padding: 0 var(--content-space);
  }
  .p-top-media__img.p-top-media__img--01 {
    margin-top: -12px !important;
  }
  .p-top-media__lead {
    padding: 0 var(--content-space);
    font-size: 4rem;
  }
  .p-top-media__lead--revers {
    margin-left: 64px;
    padding: 0 0 0 16px;
  }
  .p-top-section {
    margin-top: 80px;
  }
  .p-top-section--access {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .p-top-section--access::before {
    display: none;
  }
  .p-top-section--price {
    margin-top: 100px;
  }
  .p-top-section--01,
  .p-top-section--02,
  .p-top-section--03 {
    margin-top: 0;
  }
  .p-top-section--01 {
    padding: 40px 0;
  }
  .p-top-section--02 {
    padding: 98px 0 140px;
  }
  .p-top-section--03 {
    position: relative;
    padding: 80px 0 90px;
  }
  .p-top-section--03::before, .p-top-section--03::after {
    width: 90px;
    height: 90px;
  }
  .p-top-section--gallery .p-top-section__inner {
    padding: 0 var(--content-space);
  }
  .p-top-faq-content {
    margin-top: 24px;
  }
  .p-top-map-wrap {
    flex-direction: column;
    gap: 36px;
    margin-top: 32px;
  }
  .p-top-map {
    width: 100%;
  }
  .p-top-map__detail {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .p-top-map__media {
    margin-top: 16px;
  }
  .p-top-map__iframe {
    aspect-ratio: 570/365;
  }
  .p-top-main {
    padding-bottom: 40px;
  }
  .p-top-main::before {
    display: none;
  }
  .p-top-main__image {
    padding-left: 11.83%;
    min-height: calc(100vh - 60px);
  }
  .p-top-main__detail__sec01 {
    position: static;
    gap: 20px;
    padding-top: 54px;
    padding-left: 7.72%;
    padding-right: 5px;
  }
  .p-top-main__detail__sec02 {
    position: static;
    margin-top: 18px;
    padding: 0 var(--content-space);
    width: 100%;
  }
  .p-top-main__detail__sec03 {
    position: static;
    width: 100%;
    padding-top: 36px;
    padding-left: 7.72%;
  }
  .p-top-main__detail__sec03 a > img {
    zoom: 0.5;
    height: auto;
  }
  .p-top-main__detail__sec03 a p {
    font-size: 1.3rem;
  }
  .p-top-main__lead,
  .p-top-main__text {
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    font-weight: 700;
  }
  .p-top-main__lead {
    font-size: clamp(2rem, 8.454vw, 3.5rem);
  }
  .p-top-main__text {
    font-size: clamp(1.6rem, 5.797vw, 2.4rem);
  }
  .p-top-main__arrows {
    display: none;
  }
  .p-top-news-more {
    margin-top: 60px;
  }
}
.u-contents {
  width: var(--content-max-width);
  margin: 0 auto;
  padding: 80px var(--content-space) 160px;
}
.u-contents > *:first-child {
  margin-top: 0 !important;
}

.u-contents:has(.p-film-technique-section) {
  display: grid;
  grid-template-columns: 1fr var(--u-content-width) 1fr;
  width: 100%;
}

:where(.u-contents:has(.p-film-technique-section) > *) {
  grid-column: 2/3;
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  .u-contents {
    padding: 52px var(--content-space) 80px;
  }
}