@charset "UTF-8";
/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
  box-sizing: border-box; /* box-sizingを追加すると便利です */
}

/* HTML5 display-role reset for older browsers */
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;
}

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

/* ----------------------------------- */
/* --- フォーム要素のリセットCSS --- */
/* ----------------------------------- */
input,
button,
textarea,
select {
  -webkit-appearance: none; /* Safari, Chromeなどのベンダープレフィックス */
  -moz-appearance: none; /* Firefox */
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}

/* buttonとinput[type="button"]などにカーソルをポインターに */
button,
input[type=button],
input[type=submit],
input[type=reset] {
  cursor: pointer;
}

/* iOSでの内側の影を削除 */
input[type=text],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
}

/* selectの矢印を非表示にする（基本的なリセット） */
select::-ms-expand {
  /* IE */
  display: none;
}

/* textareaのリサイズを無効化（必要に応じて縦(vertical)や横(horizontal)に設定） */
textarea {
  resize: none;
}

.text-example {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .text-example {
    font-size: 1.2rem;
  }
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.76;
  color: #db4434;
  background-color: #fff;
}

body:not(.page-home) {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  body:not(.page-home) {
    margin-top: 64px;
  }
}

a {
  cursor: pointer;
}

header a:not(.thin-button),
footer a:not(.thin-button) {
  position: relative;
}
header a:not(.thin-button)::after,
footer a:not(.thin-button)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #db4434;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: left center;
}
@media (hover: hover) {
  header a:not(.thin-button):hover::after,
  footer a:not(.thin-button):hover::after {
    transform: scaleX(1);
  }
}

main {
  position: relative;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 577px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .under-tablet-only {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .over-tablet-only {
    display: none !important;
  }
}

/* ===============================================
 *  アニメーション
 =============================================== */
.animate-fade-up {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.animate-fade-up.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.animate-to-right {
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left center;
  transition: transform 1.3s ease-in-out;
}
.animate-to-right.is-visible {
  transform: scaleX(1);
  opacity: 1;
}

.animate-border-top-to-right {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: visible;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.3s ease-in-out;
  background: #db4434;
}
.animate-border-top-to-right.is-visible {
  transform: scaleX(1);
}

.animate-border-top-to-right--with-margin {
  width: calc(100% - 200px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .animate-border-top-to-right--with-margin {
    width: calc(100% - 60px);
    margin-inline: auto;
  }
}

.inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 100px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 30px;
  }
}

section {
  padding-block: 80px;
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.sub-page-hero {
  padding-top: 80px;
  position: relative;
  width: 100%;
}
.sub-page-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 1440/645;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sub-page-hero__image {
    aspect-ratio: 360/397;
  }
}
.sub-page-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0%;
     object-position: center 0%;
  transition: object-position 0.5s ease-out;
  transition: object-position 0.5s ease-out, -o-object-position 0.5s ease-out;
}
.sub-page-hero__text-area {
  position: absolute;
  bottom: 100px;
  left: 100px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sub-page-hero__text-area {
    bottom: 30px;
    left: 30px;
  }
}
.sub-page-hero__text-area__title {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Poiret One", sans-serif;
}
@media screen and (max-width: 768px) {
  .sub-page-hero__text-area__title {
    font-size: 27px;
  }
}
.sub-page-hero__text-area__description {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .sub-page-hero__text-area__description {
    font-size: 12px;
  }
}

.page-service .sub-page-hero__text-area__description {
  text-transform: none;
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.sub-page-nav {
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .sub-page-nav {
    padding-top: 120px;
  }
}
.sub-page-nav__main-contents {
  width: 100%;
  padding-left: 100px;
  display: flex;
  align-items: end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sub-page-nav__main-contents {
    padding-left: 30px;
    flex-direction: column;
    align-items: start;
    gap: 52px;
  }
}
.sub-page-nav__main-contents__nav {
  flex-shrink: 0;
}
.sub-page-nav__main-contents__nav__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .sub-page-nav__main-contents__nav__list {
    gap: 8px;
  }
}
.sub-page-nav__main-contents__nav__list__item a {
  font-size: 32px;
  font-family: "Poiret One", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .sub-page-nav__main-contents__nav__list__item a {
    font-size: 30px;
  }
}
.sub-page-nav__main-contents__image {
  width: 100%;
  aspect-ratio: 1000/506;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sub-page-nav__main-contents__image {
    aspect-ratio: 345/230;
  }
}
.sub-page-nav__main-contents__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-page-nav__lines {
  margin-top: 92px;
  margin-inline: auto;
  width: calc(100% - 200px);
  aspect-ratio: 1240/74;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sub-page-nav__lines {
    margin-top: 36px;
    margin-inline: 30px;
    width: calc(100% - 60px);
    aspect-ratio: auto;
    height: 74px;
  }
}
.sub-page-nav__lines img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sub-page-nav__lines img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.section-title__en {
  font-family: "Poiret One", sans-serif;
  line-height: 1;
  font-size: 60px;
  font-family: "Poiret One", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 40px;
    line-height: 1.3;
  }
}
.section-title__jp {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section-title__jp {
    margin-top: 8px;
    line-height: 1.76;
  }
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.thin-button {
  display: inline-flex;
  justify-content: center;
  gap: 6px;
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  transition: all 0.3s ease-in-out;
}
.thin-button::before {
  content: "(";
  font-size: 24px;
}
.thin-button::after {
  content: ")";
  font-size: 24px;
}
@media (hover: hover) {
  .thin-button:hover {
    gap: 16px;
    font-size: 22px;
  }
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding-inline: 45px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 64px;
    padding-inline: 20px;
  }
}
.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 36px;
    height: 36px;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
}
.header__nav__list__item a {
  font-family: "Poiret One", sans-serif;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .header__hamburger-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .header__hamburger-button__line {
    display: block;
    width: 60px;
    height: 1px;
    background: #db4434;
  }
  .header__hamburger-button__line:nth-child(2) {
    width: 40px;
  }
}
.header__hamburger-button.is-open .header__hamburger-button__line {
  transition: all 0.3s ease-in-out;
}
.header__hamburger-button.is-open .header__hamburger-button__line:nth-child(1) {
  transform: translateY(8px) rotate(-12deg);
}
.header__hamburger-button.is-open .header__hamburger-button__line:nth-child(2) {
  opacity: 0;
}
.header__hamburger-button.is-open .header__hamburger-button__line:nth-child(3) {
  transform: translateY(-8px) rotate(12deg);
}

.global-nav {
  z-index: 100;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 64px);
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding-inline: 30px;
  opacity: 0;
  visibility: hidden;
}
.global-nav__nav {
  margin-top: 20px;
  width: 100%;
}
.global-nav__nav__list {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.global-nav__nav__list__item {
  width: 100%;
  padding-block: 20px 32px;
  border-top: 1px solid #db4434;
}
.global-nav__nav__list__item a {
  font-size: 30px;
  font-family: "Poiret One", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.global-nav__logo {
  width: 100%;
  padding-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}
.global-nav__logo__shape {
  flex: 182;
}
.global-nav__logo__text {
  flex: 109;
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.footer .inner {
  padding: 0;
}
.footer__lines {
  margin-left: auto;
  width: calc(100% - 100px);
}
@media screen and (max-width: 768px) {
  .footer__lines {
    width: calc(100% - 30px);
    height: 72px;
  }
}
.footer__lines img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__contact {
  margin-top: 72px;
  width: calc(100% - 100px);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 112px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    width: 100%;
    flex-direction: column-reverse;
    align-items: start;
    gap: 40px;
  }
}
.footer__contact__image {
  width: 100%;
  aspect-ratio: 807/556;
  overflow: hidden;
}
.footer__contact__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .footer__contact__image {
    width: calc(100% - 60px);
  }
}
.footer__contact__text-area {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__contact__text-area {
    padding-inline: 30px 20px;
  }
}
.footer__contact__text-area__copy {
  margin-top: 52px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .footer__contact__text-area__copy {
    margin-top: 24px;
    font-size: 20px;
  }
}
.footer__contact__text-area .thin-button {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .footer__contact__text-area .thin-button {
    margin-top: 28px;
  }
}
.footer__bottom {
  margin-top: 108px;
  padding-top: 20px;
  padding-bottom: 100px;
  margin-inline: 100px;
  border-top: 1px solid #db4434;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-inline: 30px;
    padding-top: 40px;
    padding-bottom: 50px;
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
}
.footer__bottom__nav__list {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .footer__bottom__nav__list {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
.footer__bottom__nav__list__item a {
  font-size: 30px;
  font-family: "Poiret One", sans-serif;
  text-transform: uppercase;
}
.footer__bottom__copyright {
  font-size: 14px;
  font-family: "Poiret One", sans-serif;
}

.footer--contact .footer__bottom {
  margin-top: 0;
  padding-top: 32px;
  border-top: none;
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
/* ===============================================
 * フォーム
 =============================================== */
.wpcf7 {
  width: 100%;
  margin-inline: auto;
  letter-spacing: 0em !important;
}
.wpcf7 * {
  box-sizing: border-box;
}
.wpcf7 .wpcf7-form {
  width: 100%;
  margin-inline: auto;
}
.wpcf7 {
  /* インナーコンテナ */
}
.wpcf7 .contactFormInner {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .wpcf7 .contactFormInner {
    gap: 8px;
  }
}
.wpcf7 {
  /* 各行のラッパー */
}
.wpcf7 .contactFormItem {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #db4434;
}
.wpcf7 .contactFormItem:first-child {
  border-top: 1px solid #db4434;
}
@media (max-width: 768px) {
  .wpcf7 .contactFormItem {
    gap: 8px;
    flex-direction: column;
    align-items: start;
  }
  .wpcf7 .contactFormItem:first-child {
    padding-top: 8px;
  }
}
.wpcf7 .contactFormItem {
  /* 送信ボタンエリア用の修飾クラス */
}
.wpcf7 .contactFormItem .submitWrapper {
  margin-top: 24px;
  border-bottom: none;
  align-items: center;
  justify-content: center;
}
.wpcf7 .contactFormItem .submitWrapper .contactFormItemContent {
  width: auto; /* ボタンの幅に合わせる */
  flex: 0 0 auto;
}
.wpcf7 {
  /* 見出し（ラベル）エリア */
}
.wpcf7 .contactFormItemTitle {
  width: 143px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  gap: 2px;
}
.wpcf7 {
  /* 必須・任意バッジ */
}
.wpcf7 .contactFormItemRequired,
.wpcf7 .contactFormItemOptional {
  margin-top: 2px;
  font-size: 10px;
  white-space: nowrap;
}
.wpcf7 {
  /* 入力エリアのラッパー */
}
.wpcf7 .contactFormItemContent {
  flex-grow: 1;
  width: 100%;
  position: relative;
  background: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .wpcf7 .contactFormItemContent {
    border-top: 1px solid #db4434;
  }
}
.wpcf7 .contactFormItemContent .wpcf7-not-valid-tip {
  margin-top: 4px;
  margin-bottom: 12px;
  margin-left: 32px;
  font-size: 12px;
  color: #e03131;
  display: block;
}
@media screen and (max-width: 768px) {
  .wpcf7 .contactFormItemContent .wpcf7-not-valid-tip {
    margin-left: 20px;
  }
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  height: 100%;
}
.wpcf7 {
  /* ==========================================================================
        Input Elements Styling (タグ別の基本スタイル)
  ========================================================================== */
}
.wpcf7 input {
  width: 100%;
  box-sizing: border-box;
  /* ラジオボタン・チェックボックス以外にappearance: noneを適用 */
}
.wpcf7 input:not([type=radio]):not([type=checkbox]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 {
  /* テキスト入力系 (text, email, url, tel, password) */
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 input[type=password],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 16px 32px;
}
@media screen and (max-width: 768px) {
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=url],
  .wpcf7 input[type=tel],
  .wpcf7 input[type=password],
  .wpcf7 textarea,
  .wpcf7 select {
    padding: 16px 20px;
  }
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 input[type=password],
.wpcf7 textarea,
.wpcf7 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* ブラウザ標準スタイルをリセット */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=password]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: #adb5bd;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=password]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #adb5bd;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=password]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #339af0;
  box-shadow: 0 0 0 3px rgba(51, 154, 240, 0.1);
}
.wpcf7 {
  /* テキストエリア固有 */
}
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical; /* 縦方向のみリサイズ許可 */
}
.wpcf7 {
  /* セレクトボックス - デフォルトスタイルへ戻す */
}
.wpcf7 select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto; /* OS標準の矢印を表示 */
  cursor: pointer;
}
.wpcf7 {
  /* チェックボックスのラッパー (CF7が出力するspan) */
}
.wpcf7 .wpcf7-checkbox {
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .wpcf7 .wpcf7-checkbox {
    padding: 16px 20px;
    gap: 14px;
  }
  .wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 15px;
    line-height: 1.4;
  }
}
.wpcf7 {
  /* ラジオボタンのラッパー (CF7が出力するspan) */
}
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.wpcf7 {
  /* チェックボックス・ラジオボタンのアイテムのラッパー (CF7が出力するspan) */
}
.wpcf7 .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.wpcf7 {
  /* チェックボックス & ラジオボタン本体 */
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  position: relative;
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0; /* サイズ固定 */
  /* ネイティブスタイルを完全に削除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* カスタムスタイル適用 */
  border: none; /* 境界線なし */
  border-radius: 0; /* 完全に角を直角に */
  background-color: #fff;
  outline: none; /* フォーカス時のアウトラインも削除 */
  /* チェック時の背景色 */
}
.wpcf7 input[type=checkbox]:checked,
.wpcf7 input[type=radio]:checked {
  background-color: #db4434;
  /* 白いチェックマークを表示 */
}
.wpcf7 input[type=checkbox]:checked::after,
.wpcf7 input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  /* フォーカス時のスタイル（アクセシビリティのため） */
}
.wpcf7 input[type=checkbox]:focus,
.wpcf7 input[type=radio]:focus {
  box-shadow: 0 0 0 2px rgba(219, 68, 52, 0.2);
}
.wpcf7 {
  /* 送信ボタン */
}
.wpcf7 .submitWrapper {
  position: relative;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  width: 250px;
  height: 44px;
  border-radius: 50vh;
  background: #db4434;
  color: #fff;
  padding-inline: 32px;
  overflow: hidden;
}
.wpcf7 .submitWrapper .contactFormItemText {
  position: relative;
}
.wpcf7 .submitWrapper:focus-within {
  border-radius: 24px;
  background: #db4434 !important;
  color: #fff !important;
}
@media (hover: none) {
  .wpcf7 .submitWrapper {
    border-radius: 24px;
    background: #db4434 !important;
    color: #fff !important;
  }
  .wpcf7 .submitWrapper:active {
    opacity: 0.7;
    scale: 0.98;
  }
}
.wpcf7 .submitWrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: #ac3629;
  border-radius: 50vh;
  transition: all 0.5s;
}
@media (hover: hover) {
  .wpcf7 .submitWrapper:hover::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
  }
}
.wpcf7 .submitWrapper .contactFormItemButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
}
.wpcf7 .submitWrapper .contactFormItemButton input {
  height: 100%;
  width: 100%;
}
.wpcf7 .submitWrapper:active {
  transform: translateY(1px);
}
.wpcf7 .submitWrapper.submitting {
  opacity: 0.7;
  cursor: wait;
}

/* ===============================================
   * メッセージ
   =============================================== */
.wpcf7-response-output {
  display: block;
  font-size: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 16px !important;
  color: #333;
  border: none !important;
  padding: 0;
}

.invalid .wpcf7-response-output {
  color: red;
}

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

/* ===============================================
   * Turnstileの認証
   =============================================== */
.wpcf7-turnstile {
  margin-bottom: 24px;
}

/* ===============================================
 *  追加（プライバシーポリシーと送信）
 =============================================== */
.contactFormItem.policy {
  margin-top: 68px;
  width: 100%;
  height: 204px;
  background: #f5f5f5;
  padding: 40px 40px 0 40px;
  overflow-y: scroll;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .contactFormItem.policy {
    margin-top: 28px;
  }
}

.submitArea {
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .submitArea {
    margin-top: 24px;
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
.submitArea .contactFormItem:first-child {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: none;
}
.submitArea .contactFormItem:first-child .wpcf7-checkbox {
  padding: 0;
}
.submitArea .contactFormItem:first-child .wpcf7-checkbox .wpcf7-list-item label {
  gap: 24px;
}
.submitArea .contactFormItem:first-child .wpcf7-checkbox input {
  background: #f5f5f5;
}
.submitArea .contactFormItem:first-child .wpcf7-checkbox input:checked {
  background: #db4434;
}
.submitArea .contactFormItem:first-child .contactFormItemContent {
  background: none;
}
@media screen and (max-width: 768px) {
  .submitArea .contactFormItem:first-child .contactFormItemContent {
    border: none;
  }
}
.submitArea .contactFormItem:first-child .contactFormItemContent .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.submitArea .contactFormItem:first-child:first-child {
  border-top: none;
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.page-about .mission {
  padding-bottom: 184px;
}
@media screen and (max-width: 768px) {
  .page-about .mission {
    padding-bottom: 80px;
  }
}
.page-about .mission__detail {
  margin-top: 140px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-about .mission__detail {
    margin-top: 70px;
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
.page-about .mission__detail__text-area {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page-about .mission__detail__text-area {
    flex-shrink: initial;
  }
}
.page-about .mission__detail__text-area__copy {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page-about .mission__detail__text-area__copy {
    font-size: 20px;
    font-weight: 700;
  }
}
.page-about .mission__detail__text-area__description {
  margin-top: 72px;
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .page-about .mission__detail__text-area__description {
    margin-top: 24px;
  }
}
.page-about .mission__detail__image {
  width: 100%;
  height: auto;
  aspect-ratio: 600/400;
  overflow: hidden;
}
.page-about .mission__detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-about .vision {
  height: 860px;
  padding: 0;
  background: #db4434;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-about .vision {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
.page-about .vision__text-area {
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .page-about .vision__text-area {
    padding-left: 0;
    padding-inline: 30px;
    padding-block: 72px 88px;
  }
}
.page-about .vision__text-area__copy {
  margin-top: 120px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page-about .vision__text-area__copy {
    margin-top: 64px;
    font-size: 20px;
    font-weight: 700;
  }
}
.page-about .vision__text-area__description {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2.3;
}
.page-about .vision__image {
  height: 100%;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-about .vision__image {
    width: 100%;
    height: auto;
    aspect-ratio: 375/446;
  }
}
.page-about .vision__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .company-profile {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .page-about .company-profile {
    padding-top: 68px;
    padding-bottom: 0;
  }
}
.page-about .company-profile .inner {
  position: relative;
  margin-inline: auto;
  width: calc(100% - 200px);
  padding-block: 40px 108px;
}
@media screen and (max-width: 768px) {
  .page-about .company-profile .inner {
    margin-inline: auto;
    padding-inline: 0;
    width: calc(100% - 60px);
    padding-block: 32px 100px;
  }
}
.page-about .company-profile__list {
  margin-top: 120px;
  display: flex;
  align-items: start;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .page-about .company-profile__list {
    margin-top: 52px;
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
.page-about .company-profile__list__block {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-about .company-profile__list__block {
    width: 100%;
    gap: 24px;
  }
}
.page-about .company-profile__list__block__item {
  display: flex;
}
.page-about .company-profile__list__block__item__label {
  flex-shrink: 0;
  width: 118px;
}
@media screen and (max-width: 768px) {
  .page-about .company-profile__list__block__item__label {
    width: 87px;
  }
}
.page-about .company-profile__list__block__item__value.business {
  transform: translateY(-6px);
  line-height: 2.5;
}
.page-about .message {
  padding-block: 194px 128px;
}
@media screen and (max-width: 768px) {
  .page-about .message {
    padding-block: 100px 146px;
  }
}
.page-about .message .inner {
  display: flex;
  align-items: start;
  gap: 88px;
}
@media screen and (max-width: 768px) {
  .page-about .message .inner {
    flex-direction: column-reverse;
    align-items: start;
    gap: 52px;
  }
}
.page-about .message__ceo-image {
  flex-shrink: 0;
  width: 480px;
  height: auto;
  aspect-ratio: 480/320;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-about .message__ceo-image {
    width: 100%;
    height: auto;
    aspect-ratio: 315/210;
  }
}
.page-about .message__ceo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .message__text-area .animate-border-top-to-right {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page-about .message__text-area .animate-border-top-to-right {
    display: none;
  }
}
.page-about .message__text-area__message {
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .page-about .message__text-area__message {
    margin-top: 52px;
  }
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.page-contact .contact__introduction {
  padding-block: 140px 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction {
    padding-block: 56px 0;
  }
}
.page-contact .contact__introduction .inner {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction .inner {
    padding-inline: 30px;
  }
}
.page-contact .contact__introduction .section-title {
  margin-left: 100px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction .section-title {
    margin-left: 0;
    padding-bottom: 16px;
    padding-bottom: 60px;
  }
}
.page-contact .contact__introduction .section-title__jp {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: "EB Garamond", serif;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction .section-title__jp {
    margin-top: 0px;
  }
}
.page-contact .contact__introduction__content-area {
  padding-top: 100px;
  padding-right: 100px;
  display: flex;
  align-items: start;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction__content-area {
    padding-top: 36px;
    padding-right: 30px;
    flex-direction: column;
    align-items: start;
    gap: 36px;
    border-bottom: none;
  }
}
.page-contact .contact__introduction__content-area__image {
  width: calc(100% + 30px);
  margin-left: -30px;
  height: 352px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction__content-area__image {
    height: auto;
    aspect-ratio: 345/192;
  }
}
.page-contact .contact__introduction__content-area__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.page-contact .contact__introduction__content-area__text-area {
  width: 100%;
  padding-bottom: 20px;
}
.page-contact .contact__introduction__content-area__text-area__copy {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction__content-area__text-area__copy {
    font-size: 20px;
  }
}
.page-contact .contact__introduction__content-area__text-area__description {
  margin-top: 40px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__introduction__content-area__text-area__description {
    margin-top: 24px;
  }
}
.page-contact .contact__form-area {
  padding-block: 132px 100px;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__form-area {
    padding-block: 16px 100px;
  }
}
.page-contact .contact__form-area .inner {
  padding: 0;
  margin-left: 100px;
  width: 100%;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__form-area .inner {
    max-width: none;
    margin-left: 0;
    padding-inline: 30px;
  }
}
.page-contact .contact__form-area__required {
  margin-bottom: 20px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: #db4434;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__form-area__required {
    margin-bottom: 8px;
  }
}
.page-contact .contact__form-area__note {
  border-top: 1px solid #db4434;
  margin-top: 60px;
  padding-top: 32px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__form-area__note {
    margin-top: 32px;
  }
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
.page-service .outline {
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .page-service .outline {
    padding-top: 60px;
    padding-bottom: 68px;
  }
}
.page-service .outline__detail {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .page-service .outline__detail {
    margin-top: 60px;
  }
}
.page-service .outline__detail__copy {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-service .outline__detail__copy {
    font-size: 20px;
  }
}
.page-service .outline__detail__bottom {
  padding-bottom: 120px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 124px;
}
@media screen and (max-width: 768px) {
  .page-service .outline__detail__bottom {
    padding-bottom: 92px;
    flex-direction: column;
    align-items: start;
    gap: 132px;
  }
}
.page-service .outline__detail__bottom__description {
  line-height: 2.3;
}
.page-service .outline__detail__bottom__image {
  width: 100%;
  max-width: 454px;
  aspect-ratio: 454/238;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .outline__detail__bottom__image {
    max-width: none;
  }
}
.page-service .outline__detail__bottom__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-service .our-services {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-service .our-services {
    padding-top: 0;
  }
}
.page-service .our-services .inner {
  padding: 0;
  margin-inline: auto;
  width: calc(100% - 200px);
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding-bottom: 148px;
}
@media screen and (max-width: 768px) {
  .page-service .our-services .inner {
    width: calc(100% - 60px);
    margin-inline: 30px;
    padding-bottom: 72px;
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
.page-service .our-services .section-title {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page-service .our-services .section-title {
    text-align: left;
  }
}
.page-service .our-services__cover-image {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  width: 100%;
  aspect-ratio: 660/880;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__cover-image {
    position: relative;
    top: auto;
    aspect-ratio: 315/419;
  }
}
.page-service .our-services__cover-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-service .our-services__content__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__content__list {
    margin-top: 36px;
    gap: 44px;
  }
}
.page-service .our-services__content__list__item {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__content__list__item {
    width: 100%;
    gap: 2px;
  }
}
.page-service .our-services__content__list__item__main-contents__image {
  flex-shrink: 0;
  width: 463px;
  aspect-ratio: 463/309;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__content__list__item__main-contents__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 300/200;
  }
}
.page-service .our-services__content__list__item__main-contents__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-service .our-services__content__list__item__main-contents__title {
  width: 100%;
  max-width: 463px;
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__content__list__item__main-contents__title {
    font-size: 20px;
    max-width: none;
  }
}
.page-service .our-services__content__list__item__main-contents__description {
  margin-top: 20px;
  width: 100%;
  max-width: 463px;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__content__list__item__main-contents__description {
    margin-top: 16px;
    max-width: none;
  }
}
.page-service .our-services__content__list__item__number {
  font-size: 14px;
  font-weight: 600;
  font-family: "EB Garamond", serif;
  writing-mode: vertical-rl;
  display: flex;
  font-style: italic;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-service .our-services__content__list__item__number {
    font-size: 12px;
    transform: translateX(16px);
  }
}
.page-service .value {
  padding-block: 80px 0;
}
@media screen and (max-width: 768px) {
  .page-service .value {
    padding-block: 42px 0;
  }
}
.page-service .value .inner {
  justify-content: space-between;
  align-items: start;
}
.page-service .value__image {
  display: block;
  margin-top: 64px;
  width: 100%;
  height: auto;
  aspect-ratio: 1240/600;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .value__image {
    margin-top: 36px;
    aspect-ratio: 315/419;
  }
}
.page-service .value__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-service .value__list {
  margin-top: 92px;
  padding-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media screen and (max-width: 768px) {
  .page-service .value__list {
    margin-top: 54px;
  }
}
.page-service .value__list__item {
  padding-block: 32px 64px;
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid #db4434;
}
@media screen and (max-width: 768px) {
  .page-service .value__list__item {
    width: 100%;
    padding-block: 16px 32px;
  }
}
.page-service .value__list__item__title-area {
  display: flex;
  align-items: center;
}
.page-service .value__list__item__title-area__num {
  width: 100px;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 768px) {
  .page-service .value__list__item__title-area__num {
    flex-shrink: 0;
    width: 74px;
    font-size: 12px;
  }
}
.page-service .value__list__item__title-area__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0em;
}
.page-service .value__list__item__description {
  margin-top: 24px;
  margin-left: 100px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-service .value__list__item__description {
    margin-top: 16px;
    margin-left: 74px;
  }
}
.page-service .support {
  padding-block: 80px 180px;
  padding-right: 100px;
  display: flex;
  align-items: start;
  gap: 68px;
}
@media screen and (max-width: 768px) {
  .page-service .support {
    padding-block: 48px 112px;
    padding-right: 30px;
    flex-direction: column;
    gap: 48px;
  }
}
.page-service .support__image {
  display: block;
  width: 100%;
  height: 228px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .support__image {
    height: auto;
    aspect-ratio: 345/128;
  }
}
.page-service .support__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-service .support__text-area {
  width: 100%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-service .support__text-area {
    padding-left: 30px;
  }
}
.page-service .support__text-area__title {
  font-size: 20px;
  font-weight: 700;
}
.page-service .support__text-area__description {
  margin-top: 28px;
}

/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
/*!
Theme Name: Theme Name
Author: Your Name
Description: Description
Version: 1.0.0
Text Domain: -
*/
@media screen and (max-width: 768px) {
  .page-home {
    overflow-x: hidden;
  }
}
.page-home .first-view {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  z-index: 50;
}
.page-home .first-view__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-home .first-view__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .first-view__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 100;
}
.page-home .first-view__text-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-inline: 100px;
  color: #fff;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .page-home .first-view__text-area {
    padding-inline: 30px;
  }
}
.page-home .first-view__text-area__expertise {
  margin-bottom: 4vw;
  font-size: 1vw;
  font-family: "EB Garamond", serif;
  font-style: italic;
}
.page-home .first-view__text-area__expertise span {
  text-transform: uppercase;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-home .first-view__text-area__expertise span {
    margin-bottom: 8px;
  }
}
.page-home .first-view__text-area__expertise .span2 {
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .page-home .first-view__text-area__expertise {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 34px;
  }
}
.page-home .first-view__text-area__title {
  width: 100%;
  margin-bottom: 82px;
}
@media screen and (max-width: 768px) {
  .page-home .first-view__text-area__title {
    margin-bottom: 40px;
  }
}
.page-home .first-view__text-area__title picture {
  width: 100%;
  height: 100%;
}
.page-home .first-view__text-area__title picture img,
.page-home .first-view__text-area__title picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page-home .first-view__text-area__title {
    margin-left: 0;
    width: 58%;
  }
}
.page-home .first-view__text-area span {
  display: block;
}
.page-home .hero {
  height: 100vh;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-home .hero {
    height: auto;
  }
}
.page-home .hero .inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-inline: 100px;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .page-home .hero .inner {
    padding-inline: 30px;
  }
}
.page-home .hero__text-contents {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-home .hero__text-contents {
    margin-top: 100px;
  }
}
.page-home .hero__text-contents__copy {
  margin-bottom: 180px;
  font-size: 1.4vw;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page-home .hero__text-contents__copy {
    margin-bottom: 120px;
    font-size: 16px;
    font-weight: 700;
  }
}
.page-home .hero__text-contents__expertise {
  margin-bottom: 4vw;
  font-size: 1vw;
  font-family: "EB Garamond", serif;
  font-style: italic;
}
.page-home .hero__text-contents__expertise span {
  text-transform: uppercase;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-home .hero__text-contents__expertise span {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .hero__text-contents__expertise {
    margin-bottom: 34px;
    font-size: 12px;
    font-weight: 600;
  }
}
.page-home .hero__text-contents__title {
  margin-bottom: 82px;
}
@media screen and (max-width: 768px) {
  .page-home .hero__text-contents__title {
    margin-bottom: 40px;
  }
}
.page-home .hero__text-contents__title picture {
  width: 100%;
  height: 100%;
}
.page-home .hero__text-contents__title picture img,
.page-home .hero__text-contents__title picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page-home .hero__text-contents__title {
    margin-left: 0;
    width: 58%;
  }
}
.page-home .hero__image {
  position: absolute;
  bottom: 24px;
  right: 184px;
  width: 536px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.page-home .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0%;
     object-position: center 0%;
  transition: object-position 0.3s ease-in-out;
  transition: object-position 0.3s ease-in-out, -o-object-position 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .page-home .hero__image {
    right: 30px;
    bottom: 50%;
    transform: translateY(50%);
    width: 60%;
  }
}
.page-home .front-about__main-contents {
  padding-top: 60px;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 128px;
}
.page-home .front-about__main-contents__text-contents {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 2.3;
}
.page-home .front-about__main-contents__text-contents__text {
  margin-top: 152px;
}
@media screen and (max-width: 768px) {
  .page-home .front-about__main-contents__text-contents__text {
    margin-top: 44px;
  }
}
.page-home .front-about__main-contents .thin-button {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .page-home .front-about__main-contents .thin-button {
    margin-top: 40px;
  }
}
.page-home .front-about__main-contents__logo {
  z-index: 3;
  position: absolute;
  right: -100px;
  top: 208px;
  width: calc(100% - 500px);
  max-width: 50vw;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .page-home .front-about__main-contents__logo {
    right: -30px;
    top: auto;
    bottom: -52px;
    transform: translateY(100%);
    width: 85%;
    max-width: none;
  }
}
.page-home .front-about__main-contents__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-home .front-about__image {
  position: relative;
  display: block;
  margin-top: 100px;
  width: 100%;
  aspect-ratio: 1240/656;
}
@media screen and (max-width: 768px) {
  .page-home .front-about__image {
    margin-top: 224px;
    aspect-ratio: 315/242;
  }
}
.page-home .front-about__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-home .front-about__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .front-service {
  padding-top: 0;
}
.page-home .front-service .inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-home .front-service .inner {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.page-home .front-service__image-area {
  width: 100%;
  max-width: calc(50% - 160px);
  flex-shrink: 0;
  overflow: hidden;
}
.page-home .front-service__image-area__image {
  width: 100%;
  aspect-ratio: 454/238;
  overflow: hidden;
}
.page-home .front-service__image-area__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page-home .front-service__image-area {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .page-home .front-service__image-area .thin-button {
    margin-top: 48px;
  }
}
.page-home .front-service__text-area {
  width: 50%;
  flex-shrink: 0;
}
.page-home .front-service__text-area .animate-border-top-to-right {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-home .front-service__text-area .animate-border-top-to-right {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .front-service__text-area {
    width: 100%;
  }
}
.page-home .front-service__text-area__copy {
  margin-top: 108px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-home .front-service__text-area__copy {
    margin-top: 32px;
  }
}
.page-home .front-service__text-area .thin-button {
  margin-top: 24px;
}
.page-home .front-value-and-service {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page-home .front-value-and-service {
    padding-top: 0;
  }
}
.page-home .front-value-and-service .inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-home .front-value-and-service .inner {
    flex-direction: column;
    align-items: start;
    gap: 54px;
  }
}
.page-home .front-value-and-service__item {
  width: 100%;
}
.page-home .front-value-and-service__item__image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.page-home .front-value-and-service__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
  transition: all 0.7s ease-in-out;
}
.page-home .front-value-and-service__item__text-area {
  margin-top: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-home .front-value-and-service__item__text-area {
    margin-top: 28px;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
.page-home .front-value-and-service__item__text-area__en {
  font-size: 30px;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.page-home .front-value-and-service__item__text-area__jp {
  font-size: 24px;
  font-weight: 700;
}
.page-home .front-value-and-service__item .thin-button {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page-home .front-value-and-service__item .thin-button {
    margin-top: 20px;
  }
}
@media (hover: hover) {
  .page-home .front-value-and-service__item:hover .thin-button {
    gap: 16px;
    font-size: 22px;
  }
  .page-home .front-value-and-service__item:hover .thin-button:hover {
    gap: initial;
    font-size: initial;
  }
  .page-home .front-value-and-service__item:hover .front-value-and-service__item__image img {
    transform: scale(1.1);
  }
}/*# sourceMappingURL=style.css.map */