@charset "UTF-8";

/* reset
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* base
-------------------------------------------------------------- */

:root {
  --header-height: 8rem;
  --main-color: #148E01;
}

html {
  font-size: 10px;
}

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

body {
  position: relative;
  z-index: 0;
  font-family:
    "DIN 2014",
    "Noto Sans CJK JP",
    sans-serif;
  line-height: 1.6;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000000;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


::-moz-selection {
  color: #000000;
  background: var(--main-color);
}

::selection {
  color: #000000;
  background: var(--main-color);
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (max-width: 960px) {
  html {
    font-size: 10px;
    font-size: max(1.7361111111vw, 10px);
  }
}

@media screen and (max-width: 576px) {
  body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

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

a:hover,
a:active {
  text-decoration: none;
}

/* img 
-------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* l-header
---------------------------------------------------------- */

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.l-header.is-hide {
  transform: translateY(-100%);
}

.l-header.is-show {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.l-header__inner {
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  height: 8rem;
}


.l-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.l-header__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.l-header__logo img {
  display: block;
  height: auto;
}

.u-img-invert {
  filter: brightness(0) invert(1);
}


@media screen and (max-width: 960px) {
  body.nav-opend .l-header {
    box-shadow: none;
  }

  body.nav-opend .l-header__logo {
    opacity: 0;
  }


  .l-header__inner {
    padding: 0 1rem 0 2rem;
  }

}



/* l-header__nav
---------------------------------------------------------- */
.l-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(2.4rem, 3vw, 5.8rem);
  position: relative;
}


.l-header__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "DIN 2014", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  position: relative;
}


.l-header__item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--main-color);
  margin-top: 0.4rem;
  font-family: "Noto Sans CJK JP";
}

.l-header__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-1 * (var(--header-height) - 100%));
  width: 100%;
  height: 5px;
  background-color: #148E01;
  opacity: 0;
  transition: opacity 0.2s ease;
  bottom: -2.2rem;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.15s ease;
}

.l-header__item.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}


.l-header__item:hover::after {
  transform: scaleX(1);
  opacity: 1;
}


@media screen and (max-width: 960px) {
  .l-header__right {
    display: none;
  }
}


/* c-btn
---------------------------------------------------------- */

.c-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.c-btn-contact:hover {
  opacity: 0.8;
}

@media screen and (max-width: 960px) {

  .l-nav-modal__cta {
    width: 100%;
    display: flex;
    margin-top: 6rem;
    justify-content: center;
  }

  .c-btn-contact {
    padding: 1.2rem 5.6rem;
    font-size: 2rem;
  }

}

/* Floating Buttons (Combined & Optimized)
------------------------------------------------------- */

.c-floating-box {
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
  padding: 0 0 3rem;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.2s ease;
}

/* 表示フラグ */
.c-floating-box.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ボタン共通 */
.c-floating-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #000;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* お問い合わせボタン（スマホ：左端密着） */
.c-floating-btn--contact {
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 0 100px 100px 0;
  letter-spacing: 0.05em;
}

/* ページトップボタン（スマホ：右から少し離す） */
.c-floating-btn--top {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  margin-right: 1.6rem;
  position: relative;
}

/* ページトップの矢印 */
.c-floating-btn--top::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 0.4rem;
}

/* --- PC版設定（961px以上） --- */
@media screen and (min-width: 961px) {
  .c-floating-box {
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    left: auto;
    right: 0;
    bottom: 5rem;
    gap: 3rem;
    padding: 0;
  }

  /* お問い合わせボタン（PC：右端密着） */
  .c-floating-btn--contact {
    font-size: 1.6rem;
    padding: 1.4rem 6rem 1.4rem 4rem;
    margin-right: -3rem;
    border-radius: 100px 0 0 100px;
    letter-spacing: 0.1em;
    position: relative;
    background: #000;
  }

  /* ページトップボタン（PC：右端から少し離して浮かす） */
  .c-floating-btn--top {
    width: 5.6rem;
    height: 5.6rem;
    margin-right: 2rem;
  }

  /* ホバー時：お問い合わせは少し左へ、トップは少し上へ */
  .c-floating-btn--contact:hover {
    transform: translateX(-10px);
    background: #333;
  }

  .c-floating-btn--top:hover {
    transform: translateY(-5px);
    background: #333;
  }
}

/* l-header__menu
---------------------------------------------------------- */

.l-header__menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .l-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.3rem;
    height: 6.3rem;
    background: transparent !important;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .l-header__line {
    position: relative;
    width: 3rem;
    height: 1.6rem;
    background: transparent !important;
  }

  .l-header__line::before,
  .l-header__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: transform .25s ease, top .25s ease, opacity .25s ease;
  }

  .l-header__line::before {
    top: 0;
  }

  .l-header__line::after {
    top: 1.4rem;
  }


  .l-header__menu.is-active .l-header__line::before {
    top: 0.9rem;
    transform: rotate(45deg);
  }

  .l-header__menu.is-active .l-header__line::after {
    top: 0.9rem;
    transform: rotate(-45deg);
  }


  .l-header__menu.is-active {
    background: transparent !important;
  }

}


/* l-nav-modal
---------------------------------------------------------- */

.l-nav-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.l-nav-modal__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

body.nav-opend {
  overflow: hidden;
}

.l-nav-modal__body {
  height: 100%;
  overflow-y: auto;
  padding: 10rem 2.4rem 6rem;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
  transform: translateY(20px);
}

.l-nav-modal__list {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.2rem;
}


.l-nav-modal__item {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.l-nav-modal__en {
  font-family: "DIN 2014", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(2.4rem, 6vw, 2.8rem);
  color: #000;
  line-height: 1;
}

.l-nav-modal__jp {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--main-color, #168E00);
  line-height: 1.2;
}


.l-nav-modal__item:hover {
  opacity: 0.75;
}

.l-nav-modal__cta:hover {
  opacity: 0.85;
}

.l-nav-modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-nav-modal.is-show .l-nav-modal__body {
  transform: translateY(0);
}



/* l-main
---------------------------------------------------------- */
.l-main {
  display: block;
  position: relative;
  z-index: 0;
  background: #FFF;
}

/* l-footer
---------------------------------------------------------- */

.l-footer {
  background: #000;
  color: #fff;
}

.l-footer__body {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.l-footer__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.l-footer__info {
  margin-bottom: 5rem;
}

.l-footer__logo {
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s ease;
}

.l-footer__logo:hover {
  opacity: 0.7;
}

.l-footer__company {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.l-footer__address {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.l-footer__nav-main {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.l-footer__item {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.l-footer__item:hover {
  color: var(--main-color, #168E00);
}

.l-footer__copy-right {
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 960px) {
  .l-footer__body {
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .l-footer__nav-main {
    gap: 2rem 1.5rem;
  }

  .l-footer__item {
    font-size: 1.3rem;
  }

  .l-footer__address {
    font-size: 1.2rem;
    line-height: 1.6;
  }

}

@media screen and (max-width: 768px) {
  .l-footer__info {
    margin-bottom: 4rem;
  }

  .l-footer__company {
    font-size: 1.4rem;
  }

  .l-footer__item {
    font-size: 1.2rem;
  }

  .l-footer__nav-main {
    gap: 1.6rem 2rem;
  }

  .l-footer__body {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

}



/* c-container
---------------------------------------------------------- */
.c-container-sm,
.c-container-md {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(2rem, 5vw, 10rem);
}

.c-container-sm {
  max-width: 120.6rem;
}

.c-container-md {
  max-width: 131.5rem;
}


@media screen and (max-width: 960px) {}


/* =============================================================
animation
============================================================= */
/* js-fade-in
------------------------------------------------------------- */
.js-fade-in {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-fade-in {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* js-wipe-in-right
------------------------------------------------------------- */
.js-wipe-in-right {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.is-wipe-in-right {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

/* js-wipe-in-left
------------------------------------------------------------- */
.js-wipe-in-left {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}

.is-wipe-in-left {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

/* js-wipe-in-top
------------------------------------------------------------- */
.js-wipe-in-top {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}

.is-wipe-in-top {
  -webkit-clip-path: inset(0 0 -1px 0);
  clip-path: inset(0 0 -1px 0);
}

/* =============================================================
home
============================================================= */
/* p-home-mv
------------------------------------------------------------- */
.p-home-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.p-home-mv .splide__arrows {
  display: none;
}



.p-home-mv__image {
  width: 100%;
}

.p-home-mv .splide__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  /* 位置はサイトに合わせて調整してください */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-home-mv .splide__pagination__page {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: none;
  display: block;
  width: 30px;
  height: 2px !important;
  min-height: auto !important;
  line-height: 1 !important;
  background-color: #fff;
  margin: 0 6px;
  border-radius: 0;
  opacity: 0.4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.p-home-mv .splide__pagination__page.is-active {
  width: 50px;
  opacity: 1;
  background: #fff;
}

.p-home-mv .splide__pagination__page:hover {
  opacity: 0.8;
}

@media screen and (max-width: 960px) {
  .p-home-mv__image {
    aspect-ratio: 1095 / 867;
  }
}

.p-home-mv__image picture,
.p-home-mv__image img {
  display: block;
  width: 100%;
}

.p-home-mv__image img {
  height: 100%;
  object-fit: cover;
}


/* news
---------------------------------------------------------- */
.news {
  padding: 6rem 0;
}

.news__container {
  max-width: 110rem;
  margin-inline: auto;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding: 2rem 0;

}

/* ---------- header ---------- */

.news__title {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
}

.news__title-en {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "DIN 2014", sans-serif;
}

.news__title-ja {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-color);
}

/* ---------- list ---------- */

.news__list {
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0;
}

.news__item+.news__item {
  border-top: 1px dotted #ccc;
}

/* ---------- category ---------- */

.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  height: 2.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.news__category--news {}

.news__category--blog {}

/* ---------- date ---------- */

.news__date {
  font-size: 1.4rem;
  color: #9F9F9F;
  white-space: nowrap;
}

/* ---------- text ---------- */

.news__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.news__text:hover {
  text-decoration: underline;
}

/* ---------- more ---------- */

.news__more {
  text-align: right;
}

.news__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-top: 2rem;
}

.news__more-link:hover {
  text-decoration: underline;
}

.news__arrow {
  display: block;
  width: 3.2rem;
  height: auto;
}


@media screen and (max-width: 768px) {
  .news {
    padding: 4rem 2rem;
  }

  .news__container {
    padding: 1rem 0;
  }

  .news__title {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 0;
  }

  .news__title-en {
    font-size: 2.5rem;
  }

  .news__title-ja {
    font-size: 1.3rem;
  }

  .news__list {
    padding-left: 0;
  }

  .news__item {
    flex-wrap: wrap;
    gap: 0.8rem 1.6rem;
    padding: 2rem 0 1rem;
  }


  .news__category {
    min-width: 7.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }

  .news__date {
    font-size: 1.3rem;
  }


  .news__text {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 0.4rem;
  }

  .news__more-link {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }

  .news__arrow {
    width: 2.2rem;
  }
}

/* NEWSページ
================================================== */

.p-news-page-section {
  padding-block: 6rem 12rem;
  position: relative;
  overflow: hidden;
}

.p-news-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 0;
  height: clamp(8rem, 13vw, 23rem);
  overflow: hidden;
}

.p-news-bg-title {
  position: absolute;
  top: 0.03em;
  right: 0;
  z-index: 0;
  font-family: "DIN 2014", sans-serif;
  font-size: clamp(8rem, 13vw, 23rem);
  font-weight: 700;
  color: #EDEDED;
  letter-spacing: -0.05em;
  line-height: 1;
  width: 200%;
  text-align: right;
  pointer-events: none;
  user-select: none;
}


.p-news-bg-title::after {
  content: "";
  position: absolute;
  bottom: 0.18em;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  z-index: 1;
}

.p-news-layout {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 6rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

/* ---------- メインリスト ---------- */
.p-news-list {
  border-top: none;
  margin-bottom: 4rem;
}

.p-news-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px dotted #ccc;
}

/* 共通パーツ流用 */
.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  height: 2.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.news__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.news__text:hover {
  text-decoration: underline;
}

/* NEWラベル */
.c-label-new {
  background: #BE0000;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0 0.8rem;
}

/* ---------- サイドバー ---------- */
.p-sidebar-section+.p-sidebar-section {
  margin-top: 5rem;
}

.p-sidebar-title {
  font-size: 2rem;
  font-weight: 800;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.p-sidebar-recent li {
  padding: 1.5rem 0;
  border-bottom: 1px dotted #ccc;
}

.p-sidebar-recent__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.p-sidebar-recent a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
}

.p-sidebar-category li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  color: inherit;
  transition: color 0.3s;
}

.p-sidebar-category li a:hover {
  color: var(--main-color);
}

/* ---------- ページネーション ---------- */
.p-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.p-pagination__num {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: underline;
}

.p-pagination__num.is-current {
  color: var(--main-color);
  text-decoration: none;
  font-size: 2.5rem;
}

.p-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  transition: transform 0.3s, opacity 0.3s;
}

.p-pagination__arrow:hover {
  opacity: 0.7;
  transform: translateX(3px);
}

.p-pagination__arrow.is-prev:hover {
  transform: translateX(-3px);
}

.p-pagination .news__arrow {
  width: 2.4rem;
  height: auto;
  transition: none;
}


.p-pagination__arrow.is-prev .news__arrow {
  transform: rotate(180deg);
}


/* ---------- HOMEボタン ---------- */
.p-news-home-btn {
  text-align: center;
  margin-top: 2rem;
}

.c-btn-black {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28rem;
  padding: 1rem;
  background: #000;
  color: #fff;
  border-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
}

@media screen and (max-width: 960px) {
  .p-news-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-news-layout {
    margin-top: 1rem;
  }

  .p-news-item {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0 1.5rem;
  }

  .p-news-item .news__text {
    width: 100%;
    font-size: 1.8rem;
  }

  .c-btn-black {
    width: 25rem;
  }


}

/* --- 記事詳細エリア --- */
.p-entry__header {
  margin-bottom: 3rem;
}

.p-entry__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.p-entry__title {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.4;
  font-weight: 800;
}

.p-entry__content {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 6rem;
}

.p-entry__content p+p {
  margin-top: 2em;
}

.p-entry__content figure {
  margin: 4rem 0;
}

.p-entry__content img {
  width: 80%;
  height: auto;
}



@media screen and (max-width: 768px) {
  .p-entry__header {
    margin-bottom: 1rem;
  }

  .p-entry__title {
    font-size: 2.4rem;
  }

  .p-entry__content figure {
    margin: 2rem 0;
  }

  .p-entry__content img {
    width: 100%;
  }
}

/* ==================================================
  共通：セクション（巨大文字）
================================================== */

.c-section {
  position: relative;
  overflow: hidden;
}

.c-section--py-lg {
  padding-block: 12rem;
}

.c-section::before {
  content: attr(data-bg);
  position: absolute;
  z-index: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #EDEDED;
  font-size: clamp(9rem, 14vw, 24rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.c-section--bg-right::before,
.c-section--bg-left::before {
  top: 4rem;
  right: -2rem;
}


.c-section>.c-container-md {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .c-section--py-lg {
    padding-block: 5rem;
  }
}


/* ==================================================
  共通：セクションタイトル
================================================== */

.c-section-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.c-section-title__ja {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--main-color);
  white-space: nowrap;
}

.c-section-title__en {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.c-section-title--left {
  justify-content: flex-start;
}


.c-section-title--left .c-section-title__line {
  width: 14rem;
  height: 4px;
  background: var(--main-color);
  flex: 0 0 auto;
}

.c-section-title--left .c-section-title__line {
  margin-left: calc(50% - 50vw);
}


.c-section-title--right {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: flex-end;
  width: fit-content;
  z-index: 2;
}

.c-section-title--right .c-section-title__line {
  width: 14rem;
  height: 2px;
  background: var(--main-color);
  flex: 0 0 auto;
}

@media (max-width: 768px) {

  .c-section-title {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 0 1.4rem;
  }

  .c-section-title__en {
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    flex: 1;
  }

  .c-section-title__ja {
    width: 100%;
    font-size: 1.3rem;
    padding-left: 5.2rem;
    margin-top: -0.4rem;
  }

  .c-section-title--left .c-section-title__line {
    width: 6rem;
    flex: 0 0 6rem;
    height: 3px;
  }

  .c-section-title--right {
    position: relative;
    justify-content: flex-end;
    width: 100%;
  }

  .c-section-title--right .c-section-title__line {
    width: 6rem;
    flex: 0 0 6rem;
    height: 3px;
    order: 2;
  }

  /* 英語タイトル（右寄せ時） */
  .c-section-title--right .c-section-title__en {
    order: 1;
    /* ラインの左側に配置 */
    text-align: right;
  }

  .c-section-title--right .c-section-title__ja {
    width: 100%;
    order: 3;
    text-align: right;
    padding-right: 7.4rem;
    padding-left: 0;
    margin-top: -0.4rem;
  }
}


/* ==================================================
  MISSION
================================================== */

.c-section--bg-mission::before {
  top: 4rem;
  right: -1rem;
}

.p-mission {
  margin-top: 5rem;
}

.p-mission__body {
  display: grid;
  grid-template-columns: 1fr 50rem;
  gap: 8rem;
  align-items: start;
}

.p-mission__lead {
  font-size: clamp(3.1rem, 2.8vw, 4.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 3.4rem;
  letter-spacing: -0.01em;
}


.p-mission__lead-accent {
  color: var(--main-color);
  font-size: 1.174em;
}

.p-mission__text p {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 1.6rem;
  font-weight: 600;
}

.p-mission__visual {
  width: 100%;
}

.p-mission__visual {
  display: flex;
  justify-content: center;
}


.p-mission__media {
  width: 100%;
  overflow: hidden;
}

.p-mission__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 960px) {
  .p-mission__body {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .p-mission__visual {
    justify-content: flex-start;
  }
}


@media (max-width: 768px) {
  .c-section--bg-mission::before {
    top: 11rem;
    right: -0.5rem;
  }

  .p-mission__lead {
    line-height: 1.3;
    margin-bottom: 1.4rem;
  }

  .p-mission__text p {
    font-size: 1.5rem;
  }
}

/* ==================================================
  FEATURE
================================================== */

.c-section--bg-feature::before {
  top: 4rem;
  left: -0.5rem
}

.p-feature {
  margin-top: 6rem;
}

.p-feature__head {
  text-align: center;
  margin-bottom: 6rem;
}

.p-feature__lead {
  font-size: clamp(3.0rem, 2.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 2.8rem;
}

.p-feature__lead-accent {
  color: var(--main-color);
}

.p-feature__desc {
  font-size: 1.8rem;
  line-height: 2.1;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}

.p-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.6rem 7rem;
}

.p-feature-item {
  display: block;
}

.p-feature-item__num {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
  margin-right: 1.6rem;
  min-width: auto;
  vertical-align: middle;
}

.p-feature-item__body {
  display: inline;
}

.p-feature-item__title {
  display: inline;
  font-size: 2rem;
  font-weight: 900;
  vertical-align: middle;
}

.p-feature-item__text {
  display: block;
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
}

.p-feature-item--center {
  grid-column: 1 / -1;
  max-width: 72rem;
  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .p-feature__head {
    text-align: left;
  }

  .p-feature__grid {
    grid-template-columns: 1fr;
  }

  .p-feature-item--center {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .c-section--bg-feature::before {
    top: 11rem;
    left: -1rem;
  }

  #feature .p-feature__lead {
    font-size: clamp(2.4rem, 2.6vw, 4.2rem);
    margin-bottom: 1.4rem;
    text-align: center;
    line-height: 1.4;
  }

  .p-feature__head {
    margin-bottom: 4rem;
  }

  .p-feature__desc {
    font-size: 1.5rem;
    line-height: 1.8;
  }


  .p-feature-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .p-feature-item__num {
    flex: 0 0 4.5rem;
    margin-right: 0.8rem;
    font-size: 2.7rem;
    line-height: 1.1;
  }

  .p-feature-item__body {
    display: contents;
  }

  .p-feature-item__title {
    flex: 1;
    font-size: 2rem;
    line-height: 1.4;
    min-width: calc(100% - 5.3rem);
  }

  .p-feature-item__text {
    width: 100%;
    margin-top: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .p-feature__grid {
    gap: 3.8rem 7rem;
  }
}

/* ==================================================
  SERVICE
================================================== */

.c-section--bg-service::before {
  top: 2rem;
  right: -1rem;
}

.p-service {
  margin-top: 6rem;
}

.p-service__lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.2;
  font-weight: 700;
  margin: 0 0 5.2rem;
}

.p-service__cards {
  display: grid;
  gap: 4.8rem;
}

.p-service-card {
  display: grid;
  grid-template-columns: 1fr 34rem;
  gap: 4.8rem;
  align-items: center;
  background: #fff;
  border-radius: 1.4rem;
  padding: 3rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.p-service-card--reverse {
  grid-template-columns: 34rem 1fr;
}

.p-service-card__title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 1.4rem;
}

.p-service-card__catch {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.p-service-card__text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
}


.p-service-card__media {
  width: 100%;
  aspect-ratio: 3 / 2.2;
  justify-self: end;
  overflow: hidden;
}

.p-service-card--reverse .p-service-card__media {
  justify-self: start;
}

@media screen and (max-width: 960px) {
  .p-service__lead {
    text-align: left;
  }

  .p-service-card,
  .p-service-card--reverse {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 2.4rem 2rem;
  }

  .p-service-card__media {
    aspect-ratio: 16/9;
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  .p-service {
    margin-top: 5rem;
  }

  .p-service__lead {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .p-service-card__title {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }

  .p-service-card__catch {
    font-size: 1.5rem;
  }

  .p-service-card__text {
    font-size: 1.4rem;
  }
}

/* ==================================================
  COMPANY
================================================== */

.c-section--bg-company::before {
  top: 2rem;
  left: -1rem;
}

.p-company {
  margin-top: 6rem;
}

.p-company__lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 6rem;
}


.p-company__lead p {
  margin: 10rem 0 6rem;
}

.p-company__table {
  max-width: 72rem;
  margin-inline: auto;
  border-top: 1px dotted rgba(0, 0, 0, 0.25);
}

.p-company__row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.6rem;
  padding: 2.2rem 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.25);
}

.p-company__row dt {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: 0.12em;
}

.p-company__row dd {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}

.p-company__list {
  padding-left: 1.2em;
}

.p-company__list li {
  list-style: disc;
  margin: 0.6rem 0;
}

.p-company__list li:first-child {
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .p-company__row {
    grid-template-columns: 8rem 1fr;
  }
}

@media (max-width: 768px) {
  .p-company__lead {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }

  .p-company__lead p {
    margin: 0 0 4rem;
  }

  .p-company__row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.8rem 0;
  }

  .p-company__row dt {
    display: block;
    font-size: 1.5rem;
  }

  .p-company__row dd {
    display: block;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .p-company__list {
    padding-left: 1.5em;
  }
}


/* ==================================================
  FAQ
================================================== */

.c-section--bg-faq::before {
  top: 2rem;
  right: 0;
}

.p-faq {
  margin-top: 6rem;
}

.p-faq__list {
  max-width: 86rem;
  margin-inline: auto;
  display: grid;
  gap: 2.2rem;
}

.p-faq-item {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.p-faq-item__q {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 1.8rem 2.6rem;
  cursor: pointer;
}

.p-faq-item__q::-webkit-details-marker {
  display: none;
}

.p-faq-item__qmark {
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--main-color);
}

.p-faq-item__qtext {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-faq-item__icon {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
}

.p-faq-item__icon::before,
.p-faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: var(--main-color);
}

.p-faq-item__icon::before {
  width: 3rem;
  height: 4px;
}

.p-faq-item__icon::after {
  width: 4px;
  height: 3rem;
}

.p-faq-item.is-open .p-faq-item__icon::after {
  display: none;
}

.p-faq-item__a {
  display: none;
  grid-template-rows: unset;
  transition: none;
  overflow: hidden;
  padding: 0 2.6rem 2.4rem 7rem;
}

.p-faq-item.is-open .p-faq-item__a {
  display: block;
}

.p-faq-item__abox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: #F4F4F4;
  border-radius: 1.6rem;
  padding: 2rem;
}


.p-faq-item__amark {
  font-size: 4.4rem;
  font-weight: 700;
  color: #ADADAD;
}

.p-faq-item__abox p {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 400;
}


@media screen and (max-width: 960px) {
  .p-faq__list {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {

  .c-section--bg-right::before,
  .c-section--bg-left::before {
    top: 11rem;
    right: -1rem;
  }

  .p-faq-item__q {
    padding: 1.4rem 2.2rem;
  }

  .p-faq-item__qmark {
    font-size: 2.7rem;
  }

  .p-faq-item__qtext {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .p-faq-item__a {
    padding: 0 2.2rem 2.2rem 6rem;
  }

  .p-faq-item__amark {
    font-size: 2.5rem;
  }

  .p-faq-item__abox p {
    font-size: 1.4rem;
  }

  .p-faq-item__abox {
    gap: 1.8rem;
    padding: 1.4rem;
    align-items: start;
  }

  .p-faq-item__icon::before {
    width: 2.6rem;
    height: 3px;
  }

  .p-faq-item__icon::after {
    width: 3px;
    height: 2.6rem;
  }

}


/* Sub Page Common Header
================================================== */
.c-sub-section {
  padding-block: 6rem 12rem;
  position: relative;
  overflow: hidden;
}

.c-sub-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 0;
  height: clamp(8rem, 13vw, 23rem);
  overflow: hidden;
}

.c-sub-bg-title {
  position: absolute;
  top: 0.03em;
  right: 0;
  z-index: 0;
  font-family: "DIN 2014", sans-serif;
  font-size: clamp(8rem, 13vw, 23rem);
  font-weight: 700;
  color: #EDEDED;
  letter-spacing: -0.05em;
  line-height: 1;
  width: 200%;
  text-align: right;
  pointer-events: none;
  user-select: none;
}

.c-sub-bg-title::after {
  content: "";
  position: absolute;
  bottom: 0.18em;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  z-index: 1;
}

.c-sub-section .c-section-title--left {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-bottom: 0;
  padding-left: 3rem;
}

@media screen and (max-width: 768px) {
  .c-sub-section {
    padding-block: 4rem 8rem;
  }

  .c-sub-header {
    margin-top: 3.5rem;
  }

  .c-sub-bg-title {
    top: 0;
  }

  .c-sub-bg-title::after {
    bottom: 0.15em;
  }

  .c-sub-section .c-section-title--left {
    padding-left: 2rem;
  }

  .c-sub-section .c-section-title {
    flex-wrap: nowrap;
    gap: 0 1rem;
  }

  .c-sub-section .c-section-title__en {
    font-size: 2.2rem;
  }

  .c-sub-section .c-section-title__ja {
    font-size: 1.2rem;
    margin-top: 0;
    padding-left: 0;
  }
}


/* CONTACT Section
================================================== */
.p-contact {
  background-color: #DFF2DC;
  padding: 10rem 0;
}

/* --- タイトル中央揃えカスタム --- */
.c-section-title--center {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1.6rem;
}

.c-section-title--center .c-section-title__line {
  width: 4rem;
  height: 2px;
  background: var(--main-color);
  flex: 0 0 auto;
}

.c-section-title--center .c-section-title__ja {
  width: 100%;
  text-align: center;
  margin-top: 0.8rem;
}

/* --- リード文 --- */
.p-contact__lead {
  text-align: center;
  font-weight: 700;
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-contact__note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: calc(1.6rem * 0.85);
  font-weight: 500;
  line-height: 1.6;
}

/* --- フォームレイアウト --- */
.p-contact__form {
  max-width: 80rem;
  margin: 6rem auto 0;
}

.p-contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
}

.p-contact__label {
  flex: 0 0 22rem;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}


.required.lbl {
  color: #FFF;
  background: var(--main-color);
  border-radius: 2px;
  padding: 0.2em 0.6em;
  font-size: 1.2rem;
  display: inline-block;
  line-height: 1.2;
  font-weight: 700;
  margin-left: 0;
}


.p-contact__input {
  flex: 1;
}

/* --- 入力要素共通（input, textarea, select） --- */
.p-contact__input input[type="text"],
.p-contact__input input[type="tel"],
.p-contact__input input[type="email"],
.p-contact__input select,
.p-contact__input textarea {
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 1.5rem;
  font-size: 1.6rem;
  border-radius: 0;
  font-family: inherit;
}

.p-contact__input textarea {
  height: 12rem;
  resize: vertical;
}

/* --- セレクトボックス（矢印カスタム） --- */
.p-contact__input select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010%2010%22%3E%3Cpath%20d%3D%22M0%202l5%205%205-5H0z%22%20fill%3D%22%23148E01%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: 1.2rem;
  background-position: right 1.5rem center;
  padding-right: 4rem;
}

/* フォーカス時のアクセント線 */
.p-contact__input input:focus,
.p-contact__input select:focus,
.p-contact__input textarea:focus {
  outline: 2px solid var(--main-color);
  outline-offset: -2px;
}

/* --- 送信ボタン --- */
.p-contact__submit {
  text-align: center;
  margin-top: 5rem;
}

.p-contact__btn {
  background: #000;
  color: #fff;
  width: 28rem;
  height: 6rem;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease;
}

.p-contact__btn:hover {
  opacity: 0.7;
}


@media screen and (max-width: 768px) {
  .p-contact {
    padding: 6rem 2rem;
  }

  .p-contact__item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .p-contact__label {
    flex: 0 0 auto;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    display: flex;
    width: 100%;
  }

  .p-contact__input {
    width: 100%;
  }

  .p-contact__btn {
    width: 100%;
    max-width: 23rem;
    height: 5rem;
  }

  #contact .c-section-title__en {
    text-align: center;
  }

  #contact .c-section-title__ja {
    text-align: center;
    padding-left: 0;
  }

  #contact .c-section-title--center .c-section-title__line {
    width: 6rem;
  }

  .p-contact__lead {
    margin-top: 3rem;
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.6;
  }

  .p-contact__note {
    text-align: left;
    margin-top: 1rem;
    font-size: calc(1.5rem * 0.85);
  }

  .p-contact__form {
    margin: 5rem auto 0;
  }

  .p-contact__input select {
    font-size: 1.4rem;
  }

}

/* THANKS Section
================================================== */
.p-thanks-content {
  text-align: center;
  margin-top: 4rem;
}

.p-thanks-status {
  margin-bottom: 4rem;
}

.p-thanks-status__label {
  color: var(--main-color);
  font-size: 2.6rem;
  font-weight: 600;
}

.p-thanks-message {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 600;
  margin-bottom: 4rem;
}

.p-thanks-note {
  font-size: 1.6rem;
  margin-bottom: 6rem;
  font-weight: 500;
}

.p-thanks-home-btn {
  display: flex;
  justify-content: center;
}


@media screen and (max-width: 768px) {
  .p-thanks-status {
    margin-bottom: 2rem;
  }

  .p-thanks-status__label {
    font-size: 2.2rem;
  }

  .p-thanks-message {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .p-thanks-note {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    text-align: left;
  }
}


/* =============================================================
utility
============================================================= */
/* display
------------------------------------------------------------- */
.u-d-block-pc {
  display: block;
}

.u-d-block-sm,
.u-d-block-md,
.u-d-block-lg {
  display: none;
}

@media screen and (max-width: 960px) {
  .u-d-none-lg {
    display: none;
  }

  .u-d-block-lg {
    display: block;
  }

  .u-d-block-pc {
    display: none;
  }
}

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

  .u-d-block-md {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .u-d-none-sm {
    display: none;
  }

  .u-d-block-sm {
    display: block;
  }
}

/* text-align
------------------------------------------------------------- */
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

/* font-weight
------------------------------------------------------------- */
.u-weight-normal {
  font-weight: normal;
}

.u-weight-bold {
  font-weight: bold;
}

/* color
------------------------------------------------------------- */
.u-color-green {
  color: var(--main-color);
}

/* margin
------------------------------------------------------------- */
.u-mt-05 {
  margin-top: 0.5rem;
}

.u-mt-10 {
  margin-top: 1rem;
}

.u-mt-15 {
  margin-top: 1.5rem;
}

.u-mb-05 {
  margin-bottom: 0.5rem;
}

.u-mb-10 {
  margin-bottom: 1rem;
}

.u-mb-15 {
  margin-bottom: 1.5rem;
}

.u-mb-20 {
  margin-bottom: 2rem;
}

.u-mb-25 {
  margin-bottom: 2.5rem;
}

.u-mb-30 {
  margin-bottom: 3rem;
}