@charset "UTF-8";

/* ==========================================================================
ベース設定
=========================================================================== */
@font-face {
  font-family: "ShipporiAntique";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ShipporiAntique-Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  /* カラー */
  --Main: #000;
  --Accent: #006699;
  --Back: #C1C1C1;

  /* フォント */
  --font_ja: "ShipporiAntique", sans-serif;
  --font_sans: sans-serif;
  --font_en: "futura-pt", sans-serif;
}

.html {
  font-size: calc(100vw / 1280 * 16);
  overflow-x: hidden;
}

#wpadminbar {
  z-index: 10000000!important;
}

.body {
  font-family: var(--font_ja);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background: var(--Main);
  width: 100%;
  padding-top: 5rem;
  counter-reset: number 0;
  position: relative;
  overflow-x: hidden;
}

.body small {
  font-size: max(70%, 10px);
}

.body a {
  color: #fff;
  transition: all 0.3s;
}

.body a:hover {
  filter: brightness(0.7);
}

.forSP {
  display: none;
}

.forSP-inline {
  display: none;
}


/* ==========================================================================
ヘッダー
=========================================================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--Main);
  width: 100%;
  padding: 0 0 0 8.125rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}

.header__logo img {
  width: auto;
  height: 4rem;
}

.header__pcMenu {
  display: flex;
  align-items: center;
}

.header__pcMenu-nav {
  margin-right: 2.5rem;
}

.header__pcMenu-nav .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__pcMenu-nav a {
  font-family: var(--font_sans);
  font-weight: 700;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  height: 5rem;
  position: relative;
}

.header__pcMenu-nav a::before {
  content: "";
  display: inline-block;
  background: var(--Accent);
  width: 100%;
  height: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.header__pcMenu-nav .current-menu-item a {
  color: var(--Accent);
  filter: brightness(1);
}

.header__pcMenu-nav .current-menu-item a::before {
  opacity: 1;
}

.header__pcMenu-btn {
  font-family: var(--font_sans);
  font-weight: 700;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  height: 5rem;
  padding: 0 1.5rem;
}

.body a.header__pcMenu-btn--recruit {
  color: var(--Accent);
  background: #fff;
}

.body a.header__pcMenu-btn--recruit.current {
  color: var(--Accent);
  background: #003651;
}

.header__pcMenu-btn--contact {
  background: var(--Accent);
}

.header__pcMenu-btn--contact.current {
  background: #003651;
}


/* ==========================================================================
トップページ
=========================================================================== */
.inner {
  width: calc(100% - 8.75rem * 2);
  margin: 0 auto;
}

.home__ttl {
  font-family: var(--font_en);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 2.375rem;
  letter-spacing: 0.1em;
}

*.btn {
  font-family: var(--font_sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 2.5rem auto;
  width: 18.75rem;
  height: 4rem;
  padding: 0 1.5rem;
  margin-top: 2.5rem;
}

*.btn.btn--blue {
  background-image: url(../img/btn_arrow_white.svg);
  background-color: var(--Accent);
}

*.btn.btn--black {
  background-image: url(../img/btn_arrow_white.svg);
  background-color: var(--Main);
}

*.btn.btn--white {
  color: var(--Accent);
  background-image: url(../img/btn_arrow_blue.svg);
  background-color: #fff;
}

/* FV */
.home__fv {
  /* height: calc(100vh - 5rem);
  min-height: 784px; */
  padding-bottom: 13.375rem;
  position: relative;
}

.home__fv-img {
  opacity: 0;
  position: relative;
}

.home__fv-img::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--Accent);
  z-index: 2;
  transition: transform 0.55s ease, opacity 0.2s ease;
  opacity: 0;
}

.home__fv-img.show::before{
  opacity: 1;
  transform: translateX(100%);
}

.home__fv-img img {
  width: 100vw;
  height: 72.70vh;
  min-height: 570px;
  object-fit: cover;
}

.home__fv-img img{
  opacity: 0;
  transition: .5s;
}

.home__fv-img.show img{
  opacity: 1;
}

.home__fv-sideCatch {
  position: absolute;
  top: 34.18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.home__fv-sideCatch svg {
  width: 17.59vw;
}

/* .home__fv-sideCatch path {
  opacity: 0;
} */

.text {
  opacity: 0;
}

.text.is-active {
  --skewX: -15deg;
  --x: 0;
  --x2: -100%;
}

.text svg:nth-of-type(1),
.text svg:nth-of-type(2) {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.text svg:nth-of-type(2) {
  position: absolute;
  top: 0;
}

.text svg:nth-of-type(1) {
  mask-image: linear-gradient(
    to bottom, 
    #000 50%, 
    transparent 50%
  );
  transform: translateX(var(--x, 50%)) skewX(var(--skewX, -40deg));
}

.text svg:nth-of-type(2) {
  mask-image: linear-gradient(
    to bottom, 
    transparent 50%, 
    #000 50%
  );
  transform: translateX(var(--x2, -150%)) skewX(var(--skewX, -40deg));
}

.home__fv-effect {
  width: 35.5rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
}

.home__fv-centerCatch {
  width: 33.625rem;
  position: absolute;
  /* top: 66.62%; */
  bottom: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.home__fv-centerCatch svg,
.home__fv-centerCatch image {
  width: 100%;
}

#mask-path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw 5s ease forwards;
}

.home__fv-centerCatch-ja {
  /* font-size: 1.25vw; */
  font-size: 1rem;
  line-height: 1.13;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0;
}

.home__fv-line {
  display: inline-block;
  background: #fff;
  width: 1px;
  /* height: 80px; */
  height: 5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
}

/* MESSAGE */
.home__message {
  padding-top: 2.1875rem;
  padding-bottom: 6rem;
  position: relative;
}

.home__message-content {
  display: flex;
  align-items: flex-start;
  gap: 6.25rem;
  opacity: 0;
}

.home__message-img {
  width: 29.875rem;
  height: 33.75rem;
  position: relative;
}

.home__message-slider {
  width: 29.875rem;
  height: 33.75rem;
}

.home__message-content-wrap {
  width: 33.125rem;
  padding-top: 5rem;
}

.home__home__message-txt {
  font-size: 1rem;
  margin-top: 2.5rem;
}

.home__message-effect {
  position: absolute;
  right: calc((100% - 80rem) / 2 + 0.875rem);
  bottom: -6.25rem;
  opacity: 0;
}

.home__message-effect img {
  width: 22.5rem;
}

/* WORKS */
.home__works {
  /* background: var(--Accent); */
  padding: 5rem 0;
}

.home__works-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: var(--Accent);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 0%, transparent 0%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 0%, transparent 0%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

.home__works .home__ttl {
  text-align: center;
}

.home__works-imgs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  margin-top: 2.5rem;
}

.home__works-imgs > img {
  width: 280px;
  aspect-ratio: 1;
  object-fit: cover;
}

.home__works-txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  width: 40.9375rem;
  margin: 2.5rem auto 0 ;
}

.home__works .btn {
  margin-left: auto;
  margin-right: auto;
}

.home__works02 {
  overflow: hidden;
  padding: 96px 0;
  position: relative;
}

.home__works02 .home__works-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home__works02 .home__ttl {
  text-align: left;
}

.home__works02 .home__works-txt {
  font-family: var(--font_ja);
  font-size: 0.875rem;
  width: 27.5rem;
  margin-top: 2.5rem;
}

.home__works02 .btn {
  margin-left: 0;
}

.home__works02 .home__works-sliderWrap {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.home__works-slider01 .swiper-wrapper,
.home__works-slider02 .swiper-wrapper {
  transition-timing-function: linear;
  height: 700px;
}

.home__works-slider01 .swiper-slide,
.home__works-slider02 .swiper-slide {
  width: 15.5rem;
  height: 15.5rem;
}

.home__works-slider01 .swiper-slide img,
.home__works-slider02 .swiper-slide img {
  width: 15.5rem;
  height: 15.5rem;
  object-fit: cover;
}

.home__works-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  /* transform: translateY(20px); */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* FACTORY */
.home__factory {
  padding: 5rem 0;
}

.home__factory .home__ttl {
  text-align: center;
  opacity: 0;
}

.home__factory-box {
  background-image: url(../img/home_factory_bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  width: 52.5rem;
  padding: 5rem 0 3.25rem;
  margin: 2.5rem auto 0;
  opacity: 0;
}

.home__factory-box-txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  text-align: center;
}

.home__factory-box .btn {
  margin-left: auto;
  margin-right: auto;
}

/* RECRUIT */
.home__recruit {
  text-align: center;
  position: relative;
}

.home__recruit-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url(../img/home_recruit_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #006699;
  background-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to left, black 0%, black 0%, transparent 0%, transparent 100%);
  mask-image: linear-gradient(to left, black 0%, black 0%, transparent 0%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

.home__recruit-content {
  padding: 5rem 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  position: relative;
  z-index: 1;
}

.home__recruit-txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  margin-top: 2.5rem;
}

.home__recruit .btn {
  margin-left: auto;
  margin-right: auto;
}

.home__recruit-content img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.home__recruit-effect {
  position: absolute;
  top: 28.125rem;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.home__recruit-effect img {
  width: 22.5rem;
}

/* contact */
.home__contact {
  padding: 5rem 0;
}

.home__contact-content {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.home__contact-box {
  font-family: var(--font_sans);
  text-align: center;
  border: 1px solid #fff;
  width: 20rem;
  min-height: 11.75rem;
  padding: 2rem 0 0;
}

.home__contact-box-ttl {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0.05em;
  position: relative;
}

.home__contact-box-ttl::after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 12.5rem;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
}

.home__contact-box-tel {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
}

.home__contact-box-tel::before {
  content: "";
  display: inline-block;
  background: url(../img/phone_icon.svg) no-repeat center / 100% auto;
  width: 1.5rem;
  aspect-ratio: 1;
}

.home__contact-box-txt {
  font-size: 0.75rem;
  line-height: 1.17;
  margin-top: 1rem;
}

.home__contact-box-btn {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--Accent);
  width: 16.5rem;
  height: 3.5rem;
  margin-top: 2.5rem;
}


/* ==========================================================================
固定ページ
=========================================================================== */
.page:not(.home) .inner {
  width: 62.5rem;
}

.page__top {
  display: flex;
  align-items: center;
  height: 15rem;
  padding-left: calc((100% - 80rem) / 2 + 8.75rem);
  position: relative;
}

.page__top-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/page_top_bg_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transition: none;
  will-change: clip-path;  opacity: 1;
  z-index: -1;
}

.page__top img {
  width: 14.4375rem;
  position: absolute;
  top: 1.875rem;
  right: calc((100% - 80rem) / 2 + 2.875rem);
  opacity: 0;
}

.page__top-ttl {
  font-family: var(--font_en);
  font-style: italic;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
}

.page__top-ttl::after {
  content: attr(data-ja);
  font-family: var(--font_sans);
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.page__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/page_ttl_bg_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 7.5rem;
}

.page__heading-ttl {
  font-family: var(--font_sans);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.page__ttl {
  font-family: var(--font_en);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.6875rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.page__ttl::after {
  content: attr(data-ja);
  font-family: var(--font_sans);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 0.8125rem;
  letter-spacing: 0.1em;
}


/* ==========================================================================
WORKS - 製作加工・実績
=========================================================================== */
.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.25rem;
  margin-top: 4.0625rem;
}

.works__list-item {
  font-family: var(--font_sans);
  opacity: 0;
}

.works__list-item img {
  aspect-ratio: 320 / 220;
  object-fit: cover;
}

.works__list-item-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.works__list-item-desc {
  font-size: 0.75rem;
  line-height: 1.8;
  display: grid;
  grid-template-columns: 5rem 1fr;
  row-gap: 0.5rem;
  margin-top: 0.75rem;
}

.works__list-item-desc dd {
  font-weight: 700;
}

.works__results {
  margin-top: 7.5rem;
}

.works__results-grid {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 8.625rem 24.6875rem 4.0625rem 10rem;
  border: 1px solid #5B5B5B;
  border-radius: 0.25rem;
  width: 47.5rem;
  margin: 2.5rem auto 0;
}

.works__results-grid-ttl,
.works__results-grid-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 4;
}

.works__results-grid-ttl > div {
  font-weight: 600;
  text-align: center;
  background: #5B5B5B;
  padding: 0.625rem 0.75rem;
}

.works__results-grid-item > div {
  border-top: 1px solid #5B5B5B;
  padding: 0.625rem 0.75rem;
}

.works__results-grid-item > div:nth-of-type(n+2) {
  border-left: 1px solid #5B5B5B;
}


/* ==========================================================================
FACTORY - 製作工場
=========================================================================== */
.factory__img {
  opacity: 0;
}

.factory__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr auto;
  gap: 0 2.5rem;
  margin-top: 5rem;
  opacity: 0;
}

.factory__box + .factory__box {
  margin-top: 7.5rem;
}

.factory__box01 .factory__box-heading {
  grid-column: 2;
  grid-row: 1;
}

.factory__box02 .factory__box-heading {
  grid-column: 1;
  grid-row: 1;
}

.factory__box-txt {
  font-family: var(--font_sans);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 2.125rem;
}

.factory__box img:nth-of-type(1) {
  width: 30rem;
  aspect-ratio: 480 / 640;
  object-fit: cover;
}

.factory__box01 img:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.factory__box02 img:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.factory__box img:nth-of-type(2) {
  width: 30rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.factory__box01 img:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}

.factory__box02 img:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}

.factory__machines {
  margin-top: 7.5rem;
}

.factory__machines-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.factory__machines-list-item-txt {
  font-family: var(--font_sans);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 0.75rem;
}


/* ==========================================================================
COMPANY - 会社案内
=========================================================================== */
.company__message {
  display: flex;
  gap: 9.875rem;
  margin-top: 5rem;
  opacity: 0;
}

.company__message-txt {
  font-size: 1rem;
  line-height: 2;
  text-align: justify;
  width: 33.125rem;
}

.company__philosophy {
  display: flex;
  gap: 5.5rem;
  margin-top: 3.75rem;
  opacity: 0;
}

.company__philosophy .page__ttl {
  margin-top: 0.375rem;
}

.company__philosophy-box {
  font-size: 2.5rem;
  line-height: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  width: 32.625rem;
  height: 10rem;
}

/* .company__philosophy-box span {
  opacity: 0;
} */

.company__img {
  margin-top: 5rem;
  opacity: 0;
}

.company__info {
  margin-top: 5rem;
}

.dl {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  border-top: 1px solid #aaa;
  width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.dl dt,
.dl dd {
  border-bottom: 1px solid #aaa;
  padding: 1.5rem 0;
}

.dl dt {
  color: var(--Accent);
}

.company__info-dl {
  margin-top: 4rem;
}

.company__info-dl dd > dl {
  display: grid;
  grid-template-columns: 13.625rem 1fr;
}

.company__info-dl dd > dl dt,
.company__info-dl dd > dl dd {
  border-bottom: none;
  padding: 0;
}

.company__info-dl dd > dl dt {
  color: #fff;
}

.company__access {
  margin-top: 7.5rem;
}

.company__access-inner {
  width: 40rem;
  margin: 0 auto;
}

.company__access-txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2.5rem;
}

.company__access-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 22.125rem; /* 黄金比 */
  margin-top: 1.875rem;
}

.company__access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
RECRUIT - 採用情報
=========================================================================== */
.recruit .page__top {
  align-items: flex-start;
  height: 30rem;
  padding-top: 5.875rem;
  padding-left: calc((100% - 80rem) / 2 + 8.75rem);
}

.recruit .page__top-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/recruit_top_bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: inset(0% 0% 100% 0%);
  transition: none;
  will-change: clip-path;  opacity: 1;
  z-index: -1;

}

.recruit .page__top-ttl {
  font-family: var(--font_en);
  font-style: italic;
  font-size: 5rem;
  font-weight: 300;
  line-height: 3.3125rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.recruit .page__top-ttl::after {
  content: attr(data-ja);
  font-family: var(--font_sans);
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  line-height: 0.75rem;
  letter-spacing: 0.1em;
}

.recruit__txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-top: 3.5rem;
}

.recruit__dl {
  grid-template-columns: 10.625rem 1fr;
  margin-top: 3.5rem;
}

.recruit .btn {
  width: 25rem;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
CONTACT - お問い合わせ
=========================================================================== */
/* フォーム */
.contact form {
  font-family: var(--font_sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  width: 56.25rem;
  margin: 3.375rem auto 0;
  position: relative;
}

.contact form p + p {
  margin-top: 1.5rem;
}

.contact form p > label,
.contact form p:has(.wpcf7-radio) {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact form p > label:has(textarea) {
  gap: 1rem;
}

.contact form p:has(.wpcf7-radio) {
  gap: 0.375rem;
}

.contact form p > label:has(.wpcf7-validates-as-required) > span:first-of-type {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.contact form p > label:has(.wpcf7-validates-as-required) > span:first-of-type::after {
  content: "必須";
  font-size: 0.75rem;
  display: inline-flex;
  background: var(--Accent);
  color: #fff;
  height: 1.25rem;
  padding: 0 0.5rem;
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
  font-size: 1rem;
  line-height: 1.8;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  border-radius: 0.25rem;
  width: 100%;
  padding: 0.5rem 1rem;
}

.contact form input[type="text"]:focus,
.contact form input[type="email"]:focus,
.contact form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--Accent);
}

.contact form input[type="text"]::placeholder,
.contact form input[type="email"]::placeholder,
.contact form textarea::placeholder {
  color: #999;
}

.contact form textarea {
  line-height: 1.5;
  border-radius: 0.125rem;
  height: 15rem;
  padding: 1rem;
}

.contact form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact form .wpcf7-radio .wpcf7-list-item,
.contact form .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}

.contact form .wpcf7-radio .wpcf7-list-item label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
}

.contact form .wpcf7-radio .wpcf7-list-item label::before {
  content: "";
  display: inline-block;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 1.25rem;
  aspect-ratio: 1;
}

.contact form .wpcf7-radio .wpcf7-list-item label::after {
  content: "";
  display: inline-block;
  background: var(--Accent);
  border-radius: 50%;
  width: 0.625rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.contact form .wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:checked)::before  {
  border: 2px solid var(--Accent);
}

.contact form .wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:checked)::after {
  opacity: 1;
}

.contact form input[type="radio"],
.contact form input[type="checkbox"] {
  display: none;
}

.contact form p:has(.wpcf7-acceptance) {
  margin-top: 1.875rem;
}

.contact form .wpcf7-acceptance {
  display: flex;
  justify-content: center;
}

.contact form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.contact form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-block;
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
}

.contact form .wpcf7-acceptance .wpcf7-list-item label::before {
  content: "";
  display: inline-block;
  background: #ccc;
  border: 1px solid #fff;
  width: 1.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.1em;
  left: 0;
}

.contact form .wpcf7-acceptance .wpcf7-list-item label::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.4375rem;
  border-left: 0.1875rem solid #fff;
  border-bottom: 0.1875rem solid #fff;
  position: absolute;
  left: 0.3125rem;
  top: 0.5em;
  transform: rotate(-45deg);
  opacity: 0;
}

.contact form .wpcf7-acceptance .wpcf7-list-item label:has(input[type="checkbox"]:checked)::before {
  background: var(--Accent);
}

.contact form .wpcf7-acceptance .wpcf7-list-item label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.contact form .wpcf7-acceptance label {
  font-size: 1rem;
  line-height: 1.8;
}

.contact form .wpcf7-acceptance label a {
  color: var(--Accent);
}

.contact form .wpcf7-acceptance label a::after {
  content: "";
  display: inline-block;
  background: url(../img/tab.svg) no-repeat center / 100% auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.2em;
  margin-right: 0.3em;
  transform: translateY(-0.3em);
}

.contact form .wpcf7-acceptance label .wpcf7-list-item-label {
  display: inline-block;
}

.contact form input[type="submit"],
.contact-confirm input[type="submit"] {
  text-align: left;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.contact form input[type="submit"]:disabled {
  opacity: 0.5;
}

.wpcf7-spinner {
  display: none!important;
}

.wpcf7-turnstile.cf-turnstile {
  margin-top: 1.5rem;
}

.contact-confirm .wpcf7-turnstile.cf-turnstile {
  width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* 確認画面 */
.contact-confirm__txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 5rem;
}

.contact-confirm__dl {
  grid-template-columns: 10.5rem 1fr;
  margin-top: 4.25rem;
}

/* .contact-confirm input[type="submit"] {
  margin-top: 4.375rem;
} */

/* 完了 */
.contact-thanks__txt {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 3.25rem;
}

.contact-thanks .btn {
  margin: 3.5rem auto 0;
}


/* ==========================================================================
PRIVACY POLICY - プライバシーポリシー
=========================================================================== */
.privacy-policy__content {
  font-family: var(--font_sans);
  font-size: 0.875rem;
  line-height: 1.8;
  width: 50rem;
  margin: 5rem auto 0;
}

.privacy-policy__content h2 {
  font-size: 1rem;
  font-weight: 700;
  border-left: 4px solid var(--Accent);
  padding-left: 1rem;
  margin-top: 2.5rem;
}

.privacy-policy__txt + h2 {
  margin-top: 1.875rem;
}

.privacy-policy__content h2 + * {
  margin-top: 1rem;
}

.privacy-policy__content ol li {
  list-style-type: decimal;
  margin-left: 1.5em;
}

.privacy-policy__content > ol > li > ol > li {
  list-style-type: lower-latin;
}


/* ==========================================================================
404
=========================================================================== */
.error404__content {
  text-align: center;
  padding: 6.25rem 0;
}

.error404__ttl {
  font-family: var(--font_en);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 300;
}

.error404__message-ttl {
  font-size: 1rem;
}

.error404__message-txt {
  font-size: 0.75rem;
}

.error404__content .btn {
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
フッター
=========================================================================== */
.footer {
  border-top: 0.0625rem solid #fff;
  padding: 4rem 0;
}

.page .footer {
  margin-top: 7.5rem;
}

/* .contact-thanks .footer {
  margin-top: 2rem;
} */

.footer__content {
  display: flex;
  justify-content: space-between;
  width: 80rem;
  padding: 0 8.75rem;
  margin: 0 auto;
}

.footer__info-flex {
  display: flex;
  align-items: center;
}

.footer__info-logo img {
  width: 10.3125rem;
}

.footer__info-address {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer__copyright {
  font-size: 0.75rem;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.footer__copyright small {
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer__nav .menu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, 1.8125rem);
  grid-template-columns: repeat(2, auto);
  gap: 1rem 5rem;
}

.footer__nav .menu a {
  font-family: var(--font_sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8125rem;
  display: block;
}