@charset "UTF-8";
:root {
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Afacad", sans-serif;
  --font-size-base: 0.9375rem;
  --font-size-18: 1rem;
  --font-size-20: 1rem;
  --font-size-24: 1.125rem;
  --font-size-26: 1.25rem;
  --font-size-32: 1.375rem;
  --font-size-50: 1.75rem;
  --color-blue: #1e4ca2;
  --color-main: #333;
  --color-grey: #e3e3e3;
  --color-brown: #984024;
  --color-red: #B22D35;
  --color-border: #dfdfdf;
  --inner-padding: 15px;
  --header-height: 60px;
  --line-height: 1.8;
}

@media screen and (min-width: 768px) {
  :root {
    --inner-padding: 50px;
    --font-size-base: 1rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-24: 1.5rem;
    --font-size-26: 1.625rem;
    --font-size-32: 2rem;
    --font-size-50: 3.125rem;
    --header-height: 100px;
    --line-height: 2;
  }
}
* {
  box-sizing: border-box;
}

a, button, input, textarea, select {
  color: inherit;
  font-size: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

html {
  font-size: 100%;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}
body {
  font-size: var(--font-size-base);
  font-family: var(--font-family-ja);
  color: var(--color-main);
  font-weight: 400;
  line-height: 1.5;
}

p {
  line-height: var(--line-height);
}

/** utilities **/
.u-only-sp {
  display: block;
}

.u-only-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
}
/** layout **/
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
  margin-top: var(--header-height);
}

.l-section {
  margin-bottom: 60px;
}

.l-container {
  width: min(100% - var(--inner-padding) * 2, 1100px);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .l-section {
    margin-bottom: 100px;
  }
}
/** hero **/
.p-top__hero-text {
  font-size: var(--font-size-50);
  line-height: 1.5;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
  padding-inline: var(--inner-padding);
  width: 100%;
  text-align: center;
}

.swiper-slide {
  position: relative;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 600px;
  max-height: calc(100vh - var(--header-height) - 50px);
  aspect-ratio: 1536/864;
  -o-object-fit: cover;
     object-fit: cover;
}

/** news **/
.p-top__news-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .p-top__news-inner {
    grid-template-columns: auto 1fr;
    gap: 60px;
  }
}
/** parts **/
.c-article {
  border-bottom: 1px solid var(--color-border);
}
.c-article a, .c-article > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1em 0;
}

.c-article__time {
  font-family: var(--font-family-en);
  font-size: 0.875rem;
  font-weight: 400;
}

.c-article__title {
  font-weight: 500;
}

.c-title-en {
  font-size: var(--font-size-32);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c-title-en--blue {
  color: var(--color-blue);
}

.c-title-en--brown {
  color: var(--color-brown);
}

.c-title-ja {
  font-size: var(--font-size-32);
}

.c-title-ja--blue {
  color: var(--color-blue);
}

.c-title-ja--brown {
  color: var(--color-brown);
}

.c-title-heading3 {
  font-size: var(--font-size-24);
}

.c-title-heading4 {
  font-size: var(--font-size-20);
}

.c-button-1 {
  --_color: #fff;
  --_bg-color: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 350px);
  height: 70px;
  background-color: var(--_bg-color);
  border: 1px solid var(--color-brown);
  transition: background-color 0.3s ease-out;
}

.c-button-1__text {
  color: var(--_color);
  font-size: var(--font-size-18);
  font-weight: 500;
  transition: color 0.3s ease-out;
}

.c-button-1:hover {
  --_color: var(--color-brown);
  --_bg-color: #fff;
}

@media screen and (min-width: 768px) {
  .c-button-1:hover {
    --_color: var(--color-brown);
    --_bg-color: #fff;
  }
}
/** about **/
.p-top__about {
  background-color: var(--color-grey);
  padding: 60px 0;
}

.p-top__about-title {
  text-align: center;
  margin-bottom: 30px;
}

.p-top__about-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.p-top__about-item h3 {
  font-size: var(--font-size-20);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.p-top__about-item img {
  display: block;
  width: 100%;
  aspect-ratio: 400/240;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1em;
}

@media screen and (min-width: 600px) {
  .p-top__about-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-top__about {
    padding: 100px 0;
  }
  .p-top__about-title {
    margin-bottom: 50px;
  }
  .p-top__about-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
/** area **/
.p-top__area-title {
  text-align: center;
  margin-bottom: 40px;
}

.p-top__area-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-top__area-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-top__area-item-text img {
  display: block;
  width: min(100%, 200px);
  height: auto;
  margin-bottom: 2em;
}
.p-top__area-item-text h3 {
  margin-bottom: 1em;
  font-size: var(--font-size-18);
}
.p-top__area-item-text a {
  color: var(--color-brown);
}
.p-top__area-item-text address {
  display: block;
  margin-bottom: 2em;
}

.p-top__area-item-map iframe {
  width: 100%;
  aspect-ratio: 600/400;
}

.p-top__about-item-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__area-title {
    margin-bottom: 60px;
  }
  .p-top__area-item {
    grid-template-columns: auto 54.5454545455%;
    gap: 50px;
  }
  .p-top__area-item-text address a:hover {
    text-decoration: underline;
  }
}
/** footer **/
.l-footer {
  background-color: var(--color-blue);
  padding: 30px 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.l-footer__nav-items {
  display: none;
}

.l-footer__copy-right {
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 50px 0 30px;
  }
  .l-footer__nav-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
/** header **/
.l-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: var(--header-height);
}

.l-header__inner {
  height: inherit;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo img {
  display: block;
  width: min(100%, 70px);
  height: auto;
}

.l-header__nav {
  text-transform: uppercase;
  font-size: 0.9375rem;
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 100%;
  max-height: 100vh;
  height: 100%;
  overflow-y: scroll;
  padding: 50px 0 100px;
  background-color: var(--color-blue);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.l-header__nav.is-active {
  transform: translateX(0%);
}

.l-header__nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.l-header__nav-item a {
  display: block;
  padding: 1em 0;
}

.l-header__hamburger {
  --_space: 5px;
  position: relative;
  display: block;
  height: var(--header-height);
  width: auto;
  aspect-ratio: 1;
  border: none;
  background-color: var(--color-blue);
}
.l-header__hamburger span {
  background-color: #fff;
  width: 30%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.l-header__hamburger span:nth-of-type(1) {
  translate: -50% calc(-50% - var(--_space));
}
.l-header__hamburger span:nth-of-type(2) {
  translate: -50% -50%;
}
.l-header__hamburger span:nth-of-type(3) {
  translate: -50% calc(-50% + var(--_space));
}

.l-header__hamburger.is-active span:nth-of-type(1) {
  translate: -50% -50%;
  rotate: 45deg;
}
.l-header__hamburger.is-active span:nth-of-type(2) {
  translate: -50% -50%;
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-of-type(3) {
  translate: -50% -50%;
  rotate: -45deg;
}

@media screen and (min-width: 768px) {
  .l-header__logo img {
    width: min(100%, 140px);
  }
  .l-header__nav {
    width: 50%;
  }
  .l-header__hamburger {
    --_space: 9px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    padding: 0 40px 0 40px;
  }
  .l-header__nav-items {
    height: inherit;
  }
  .l-header__nav-item a {
    display: block;
    padding: 0;
    transition: color 0.3s ease-out;
    cursor: pointer;
  }
  .l-header__nav-item a:hover {
    color: var(--color-brown);
  }
  .l-header__nav {
    flex: 1;
    width: auto;
    max-height: none;
    position: static;
    background-color: transparent;
    overflow-y: visible;
    color: var(--color-main);
    padding: 0;
    transform: translateX(0%);
  }
  .l-header__nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-direction: row;
  }
  .l-header__hamburger {
    display: none;
  }
}
/** table **/
.c-tables {
  margin-bottom: 70px;
  width: 100%;
}

.c-table {
  width: 100%;
}
.c-table tr {
  width: 100%;
  display: flex;
  font-size: 0.875rem;
}
.c-table tr:nth-of-type(odd) {
  background-color: rgba(152, 64, 36, 0.1);
}
.c-table th {
  padding: 1em;
  width: clamp(100px, 18.1818181818%, 200px);
  text-align: left;
}
.c-table td {
  padding: 1em;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .c-table tr {
    font-size: 1rem;
  }
}
.p-default__section--center {
  text-align: center;
}

.p-default__section > h2, .p-default__section > h3, .p-default__section > h4, .p-default__section > h5 {
  margin-top: 50px;
}
.p-default__section > p {
  margin-top: 2em;
}
.p-default__section h2, .p-default__section h3, .p-default__section h4, .p-default__section h5 {
  margin-bottom: 20px;
}
.p-default__section h2 {
  font-size: var(--font-size-26);
}
.p-default__section h3 {
  font-size: var(--font-size-24);
}
.p-default__section h4 {
  font-size: var(--font-size-20);
}
.p-default__section h5 {
  font-size: var(--font-size-18);
}
.p-default__section p {
  margin-bottom: 2em;
}
.p-default__section a {
  color: var(--color-brown);
}
.p-default__section > .wp-block-image,
.p-default__section .wp-block-columns {
  margin-top: 40px;
  margin-bottom: 40px;
}
.p-default__section .wp-block-group {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .p-default__section > .wp-block-image,
  .p-default__section .wp-block-columns {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .p-default__section .wp-block-group {
    margin-bottom: 190px;
  }
  .p-default__section a:hover {
    text-decoration: underline;
  }
}
.p-page {
  margin-bottom: 50px;
}

.p-page__body {
  margin-bottom: 40px;
  height: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e4ca2;
  color: #fff;
  text-align: center;
}

.p-page__title-en {
  font-size: var(--font-size-50);
  margin-bottom: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
}

.p-page__title-ja {
  font-size: var(--font-size-20);
}

.p-page__breadcrumb {
  font-size: 0.75rem;
}

.p-page__breadcrumb {
  font-size: 0.75rem;
  line-height: 1.5;
}
.p-page__breadcrumb a {
  color: var(--color-main);
  transition: color 0.3s ease-out;
}
.p-page__breadcrumb > span:first-of-type {
  padding-right: 6px;
  text-transform: uppercase;
}
.p-page__breadcrumb > span:not(:first-of-type) {
  padding: 0 6px;
}

@media screen and (min-width: 768px) {
  .p-page {
    margin-bottom: 80px;
  }
  .p-page__body {
    height: 300px;
  }
}
.p-company__title,
.p-product__title {
  margin-bottom: 40px;
  text-align: center;
}

.p-product__subtitle,
.p-company__subtitle {
  margin-bottom: 30px;
  text-align: center;
}

.p-product__p {
  margin-bottom: 1em;
}

.p-company__block:not(:last-of-type) {
  margin-bottom: 100px;
}

.p-company__map iframe {
  width: 100%;
  aspect-ratio: 1100/650;
}

@media screen and (min-width: 768px) {
  .p-company__title,
  .p-product__title {
    margin-bottom: 60px;
  }
  .p-product__subtitle,
  .p-company__subtitle {
    margin-bottom: 40px;
  }
  .p-company__map iframe {
    aspect-ratio: 1100/450;
  }
}
/* p-company */
.p-product__blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-product__list {
  margin-bottom: 50px;
  padding: 30px 25px;
  background-color: rgba(152, 64, 36, 0.1);
  line-height: var(--line-height);
  list-style-type: decimal;
}

.p-product__figure img {
  display: block;
  margin-inline: auto;
  width: min(100%, 700px);
  height: auto;
}

.p-product__block-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.p-product__block-items img {
  display: block;
  width: min(100%, 550px);
  height: auto;
  margin-inline: auto;
}

.p-product__block-item-list {
  background-color: #e3e3e3;
  padding: 30px 20px;
  margin-bottom: 20px;
}
.p-product__block-item-list h4 {
  font-size: var(--font-size-20);
  margin-bottom: 1em;
  text-align: center;
}
.p-product__block-item-list ul {
  line-height: var(--line-height);
}
.p-product__block-item-list ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.p-product__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.p-product__gallery img {
  display: block;
  width: min(100%, 340px);
  aspect-ratio: 300/200;
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-product__blocks {
    gap: 100px;
  }
  .p-product__list {
    margin-bottom: 60px;
    padding: 50px;
  }
  .p-product__block-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-product__block-item-list {
    padding: 30px;
    margin-bottom: 30px;
    min-height: 450px;
  }
  .p-product__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
/****フォーム ***/
.form-row {
  --bottom: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: var(--bottom);
}

.form-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .form-row {
    --bottom: 60px;
    gap: 30px;
    grid-template-columns: 230px 1fr;
    align-items: center;
  }
  .form-row.form-row--flex-start {
    align-items: flex-start;
  }
  .form-label {
    justify-content: space-between;
    gap: 20px;
  }
}
/*** 必須・任意ボタン ***/
.form-label .optional,
.form-label .required {
  display: inline-block;
  padding: 5px 12px;
  font-weight: 400;
  font-size: 0.75rem;
}

.form-label .optional {
  background-color: #E7DFD5;
}

.form-label .required {
  background-color: var(--color-red);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .form-label .optional,
  .form-label .required {
    padding: 7px 16px;
  }
}
/*** input ***/
.form-select select {
  appearance: none; /* 矢印などを消す（Chrome / Firefox）*/
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
  min-width: 250px;
}

.form-select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.form-select::before {
  z-index: 2;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-main);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .form-select select {
    min-width: 400px;
  }
}
.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input textarea {
  position: relative;
  width: 100%;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
}

.form-input input::file-selector-button {
  border: 1px solid #D7DFDF;
  padding: 10px 20px;
  background-color: #ECECEC;
}

.form-input textarea {
  min-height: 150px;
}

.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #C3C3C3;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #C3C3C3;
}

/*** checkbox ***/
.form-checkbox label::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox label:has(input:checked)::before {
  --bg: black;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-blue);
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-checkbox label {
  padding-left: 1.8em;
  margin-right: 1em;
  position: relative;
}

.form-checkbox label::before {
  --bg: #fff;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-color: var(--bg);
}

.form-radio label:has(input:checked)::after,
.form-checkbox label:has(input:checked)::after {
  display: block;
}

/* privacy */
.privacy-privacy {
  text-align: center;
  margin-bottom: 50px;
}
.privacy-privacy p {
  line-height: 3;
}
.privacy-privacy a {
  color: var(--color-link);
}

/*** エラーメッセージ ***/
.wpcf7-form-control-wrap {
  height: inherit;
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 3px);
  font-size: 0.875rem;
}

.form-checkbox .wpcf7-not-valid-tip {
  left: 50%;
  translate: -50% 0;
  width: 100%;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/** ボタン **/
.form-button.c-button-1 {
  cursor: pointer;
  margin-inline: auto;
  justify-content: center;
}

.cf-turnstile{
	margin-bottom: 40px;
}

/*# sourceMappingURL=style.css.map */