@charset "UTF-8";
/* 変数の定義
--------------------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.blue {
  color: #2953ED;
}

.orange {
  color: #D56300;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
table,
tr,
th,
td,
a,
figure {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #000;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 共通
--------------------------------------------------*/
body {
  word-break: break-word;
}

a {
  transition-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

section {
  position: relative;
  z-index: 1;
}

span.word {
  display: inline-block;
}

/* 404
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ヘッダー
--------------------------------------------------*/
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #041C2B;
  /* お問い合わせ CTA（右端寄せ・ボタン風） */
}
.site-header .header-inner {
  padding-left: clamp(50px, 7.14vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header .brand .logo {
  height: 36px;
  width: auto;
}
.site-header .brand .logo.small {
  height: 28px;
}
.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .lang-switch a {
  color: #B6B6B6;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
  font-size: 16px;
}
.site-header .lang-switch .sep {
  color: #B6B6B6;
  padding: 0 5px;
}
.site-header .lang-switch .is-current {
  color: #fff;
}
.site-header .site-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .site-header .site-nav ul {
    gap: 21px;
  }
}
.site-header .site-nav ul li {
  position: relative;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-header .site-nav ul li:hover .en, .site-header .site-nav ul li:hover .ja {
  color: #D56300;
  transition: color 0.3s ease;
}
.site-header .site-nav ul li a {
  display: grid;
  place-items: center;
  color: #ffffff;
  padding: 8px 0;
}
.site-header .site-nav ul li a .en {
  font-family: "EB Garamond", serif;
  color: #B6B6B6;
  font-size: 12px;
  line-height: 1;
  transition: color 0.3s ease;
}
.site-header .site-nav ul li a .ja {
  font-size: clamp(1.2rem, 1.071vw, 1.4rem);
  line-height: 1;
  margin-top: 6px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.site-header .site-nav ul li.current::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #ffffff;
}
@media screen and (max-width: 999px) {
  .site-header .site-nav ul li.current::before {
    display: none;
  }
}
.site-header .site-nav li.cta a {
  background: linear-gradient(90deg, #d56300 0%, #f3a600 100%);
  color: #fff;
  padding: 8px 16px;
  height: 70px;
  font-size: 18px;
  width: clamp(100px, 14.3vw, 200px);
}
.site-header .site-nav li.cta a .en {
  padding-top: 8px;
  color: #FFBF00;
  transition: color 0.3s ease;
}
.site-header .site-nav li.cta a .ja {
  padding-bottom: 8px;
  font-size: clamp(14px, 1.2857vw, 18px);
}
.site-header .site-nav li.cta a:hover .en, .site-header .site-nav li.cta a:hover .ja {
  color: #fff;
  transition: color 0.3s ease;
}

/* PCではハンバーガーを非表示 */
.site-header .menu-toggle {
  display: none;
}

/* ---------------
  モバイル（<=1000px）
------------------*/
@media screen and (max-width: 999px) {
  .site-header {
    /* PCナビを隠すための初期状態 */
  }
  .site-header .header-inner {
    height: 50px;
  }
  .site-header .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #d56300 0%, #f3a600 100%);
    cursor: pointer;
    position: relative;
    z-index: 60;
    padding-top: 6px;
  }
  .site-header .menu-toggle .bar {
    display: block;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .site-header .menu-toggle .tx {
    font-size: 9px;
    letter-spacing: 0em;
    color: #fff;
  }
  .site-header .menu-toggle .bar + .bar {
    margin: 8px 0 5px;
  }
  .site-header .site-nav {
    position: fixed;
    top: 50px; /* ヘッダー高 */
    left: 0;
    right: 0;
    bottom: 0;
    background: #E9E9E9;
    display: block;
    padding: 16px 0 32px;
    overflow-y: auto;
    z-index: 55;
    /* 右からのスライドイン初期状態 */
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), visibility 0s linear 0.35s;
  }
  .site-header .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .site-header .site-nav li {
    height: auto;
    border-bottom: 1px solid #fff;
  }
  .site-header .site-nav li:last-child {
    border-bottom: none;
  }
  .site-header .site-nav li a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 14px 20px !important;
    text-align: left;
    position: relative;
  }
  .site-header .site-nav li a::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-weight: 700;
    font-family: "Shippori Mincho B1", serif;
    font-size: 18px;
  }
  .site-header .site-nav li a .en, .site-header .site-nav li a .ja {
    display: block;
    width: 100%;
    text-align: left;
  }
  .site-header .site-nav li .en {
    font-size: 12px;
    color: #D56300 !important;
    font-weight: 700;
  }
  .site-header .site-nav li .ja {
    font-size: 18px;
    color: #000;
  }
  .site-header .site-nav li.cta {
    width: calc(100% - 40px);
    margin: 20px auto;
    height: auto;
    border-radius: 6px;
    text-align: center;
    place-items: center;
  }
  .site-header .site-nav li.cta a::after {
    color: #fff;
  }
  .site-header .site-nav li.cta a {
    width: 100%;
  }
  .site-header .site-nav li.cta .en {
    padding-top: 0px !important;
    color: #FFBF00 !important;
    text-align: center;
  }
  .site-header .site-nav li.cta .ja {
    color: #fff !important;
    text-align: center;
    font-size: clamp(14px, 1.2857vw, 18px);
  }
  .site-header.is-open .site-nav {
    transform: translateX(0%);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .site-header.is-open .menu-toggle .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .site-header.is-open .menu-toggle .bar:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .site-header .site-nav ul {
    gap: 8px;
  }
  /* PC時の「メニュー」ボタンは非表示（逆に、モバイルのみ表示） */
  .site-header .menu-toggle {
    display: flex;
  }
  /* モバイル時はデフォルトでナビを非表示 */
}
@media screen and (max-width: 999px) and (min-width: 1001px) {
  .site-header .menu-toggle {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .site-header .site-nav {
    display: block;
  }
}
/* ---------------
  モバイル（<=769px）微調整
------------------*/
@media screen and (max-width: 768px) {
  .site-header .header-inner {
    padding-left: 16px;
  }
  .site-header .brand {
    gap: 12px;
  }
  .site-header .brand .logo {
    height: 28px;
  }
  .site-header .brand .lang-switch a {
    font-size: 12px;
  }
  .site-header .site-nav {
    top: 50px;
  }
}
html[lang=en-US] .site-nav ul li a .en {
  font-size: 1.6rem;
  color: #fff !important;
  padding-top: 0px !important;
}
@media screen and (max-width: 768px) {
  html[lang=en-US] .site-nav ul li a .en {
    font-size: 1.6rem;
    color: #D56300 !important;
  }
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* フッター
--------------------------------------------------*/
.site-footer {
  border-top: 1px solid #B6B6B6;
  background: #FAFBFF;
  color: #e5eef3;
}
.site-footer .container {
  width: calc(100% - 14.2857vw);
  margin: auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .site-footer .container {
    width: 90%;
  }
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.site-footer .footer-logo {
  width: 100%;
  max-width: 200px;
  min-width: 140px;
}
.site-footer .company-name {
  color: #041C2B;
  font-weight: 700;
  margin-top: 12px;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
}
.site-footer .footer-address {
  color: #041C2B;
  margin-top: 25px;
  font-style: normal;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
.site-footer .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-right {
    align-items: flex-start;
  }
}
.site-footer .footer-right .footer-nav-sub {
  display: flex;
  gap: 20px;
}
.site-footer .footer-right .footer-nav-sub a {
  font-size: 14px;
  color: #B6B6B6;
  font-weight: 600;
}
.site-footer .footer-right .footer-nav-sub a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-right .footer-nav-sub {
    flex-direction: column;
    gap: 5px;
  }
  .site-footer .footer-right .footer-nav-sub a {
    font-size: 12px;
  }
}
.site-footer .footer-nav {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  color: #041C2B;
  justify-self: end;
  flex-wrap: wrap;
}
.site-footer .footer-nav a {
  font-size: clamp(1.1rem, 1.14vw, 1.6rem);
  font-weight: 600;
}
.site-footer .footer-nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-nav {
    display: none;
  }
}
.site-footer .footer-bottom {
  border-top: 1px solid #B6B6B6;
  background: #041C2B;
  display: grid;
  place-items: left;
  padding: 10px 0;
  color: #c9d8df;
}
.site-footer .footer-bottom small {
  width: calc(100% - 14.2857vw);
  margin: auto;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-bottom small {
    font-size: 10px;
    width: 90%;
  }
}

/* 流用パーツ
--------------------------------------------------*/
.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-view {
    display: block;
  }
}

.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  br.tab {
    display: none;
  }
}
br.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  br.pc-view {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  br.pc-view.blank {
    display: none;
  }
}
br.lg-view {
  display: block;
}
@media screen and (min-width: 1000px) {
  br.lg-view {
    display: none;
  }
}
br.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  br.sp-view {
    display: none;
  }
}
br.sm-view {
  display: none;
}
@media screen and (max-width: 449px) {
  br.sm-view {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  br.lg-none {
    display: none;
  }
}
@media screen and (max-width: 449px) {
  br.sm-none {
    display: none;
  }
}

.x50 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 50%;
}

.x60 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 60%;
}

.x66 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 66.66%;
}

.x70 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 70%;
}

.x80 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 80%;
}

.x85 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 85%;
}

.x90 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 90%;
}

.x40 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 40%;
}

.x120 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 120%;
}

.x130 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 130%;
}

.x140 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 140%;
}

.x150 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 150%;
}

.x160 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 160%;
}

.mb0 {
  margin-bottom: 0;
}

.mb30 {
  margin-bottom: 30px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mt100 {
  margin-top: 100px;
}

.pt100 {
  padding-top: 100px;
}

.w90p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w90p {
    width: 90%;
  }
}

.w70p {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w70p {
    width: 90%;
  }
}

.w60p {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w60p {
    width: 90%;
  }
}

.w50p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w50p {
    width: 90%;
  }
}

.w1000 {
  max-width: 1000px;
  width: 71.42%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w1000 {
    width: 90%;
  }
}

.w1200 {
  max-width: 1200px;
  width: 85.71%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w1200 {
    width: 90%;
  }
}

.w1400 {
  max-width: 1400px;
  width: 85.71%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w1400 {
    width: 90%;
  }
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.tx_justify {
  text-align: justify;
}

/* 共通パーツ
--------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 50px;
  padding: 0 24px;
  font-weight: 800;
  transition: all 0.2s ease;
  background: #2953ED;
  color: #fff;
  width: 230px;
  position: relative;
  overflow: hidden;
  /* 左→右に流れるオレンジグラデーションのオーバーレイ */
  /* テキストはオーバーレイの上に保持 */
}
.btn .label {
  font-weight: 600;
}
.btn .arrow {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.btn.sm {
  height: 50px;
  padding: 0 20px;
  font-weight: 700;
}
.btn:hover {
  box-shadow: var(--shadow-md);
  filter: brightness(1.02);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgb(183, 88, 9) 0%, rgb(224, 131, 0) 40%, rgb(243, 166, 0) 70%, rgb(255, 191, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn > * {
  position: relative;
  z-index: 1;
}

/* 矢印を少し右へ移動（with-arrow のみ対象） */
.btn.with-arrow:hover .arrow {
  transform: translateX(25px);
}

.title-en {
  color: #D56300;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  margin-bottom: 0;
}

.title-ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0px 0 30px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(45deg, rgb(183, 88, 9) 0%, rgb(224, 131, 0) 40%, rgb(243, 166, 0) 70%, rgb(255, 191, 0) 100%);
  /* SVGの塗り・線を親色に合わせる */
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
.contact .container {
  width: calc(100% - 14.2857vw);
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact .container {
    width: 90%;
  }
}
.contact .title-en {
  color: #FFBF00;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.contact .title-ja {
  font-size: 50px;
  margin-bottom: 40px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact .title-ja {
    font-size: clamp(28px, 8vw, 40px);
  }
}
.contact .lead.center {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  letter-spacing: 0.05em;
  color: #fff;
}
.contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  max-width: 870px;
  margin-inline: auto;
}
@media screen and (max-width: 999px) {
  .contact .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.contact .contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  background: #041C2B;
  color: #fff;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}
.contact .contact-card:hover {
  background: #fff;
  color: #D56300;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact .contact-card {
    width: 270px;
    margin-inline: auto;
  }
}
.contact .contact-card svg {
  width: 24px;
  height: 24px;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .contact .contact-card svg {
    width: 20px;
    height: 20px;
  }
}
.contact .contact-card svg,
.contact .contact-card svg * {
  fill: currentColor;
}
.contact .contact-card .label {
  font-size: clamp(14px, 1.43vw, 20px);
}
@media screen and (max-width: 768px) {
  .contact .contact-card .label {
    font-size: 16px;
  }
}

html[lang=en-US] .contact .title-ja {
  font-family: "EB Garamond", serif !important;
}

/* ---------- Subpage KV (common) ---------- */
.kv-hero {
  position: relative;
  min-height: 242px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .kv-hero {
    min-height: 180px;
  }
}
.kv-hero .kv-bg {
  position: absolute;
  inset: 0;
  background: url("../img/common/sub_kv_img.webp") center/cover no-repeat;
  z-index: -1;
}
.kv-hero .hero-inner {
  width: calc(100% - 14.2857vw);
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .kv-hero .hero-inner {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
.kv-hero .hero-inner .breadcrumb {
  margin-top: 12px;
  display: block;
  width: 100%;
  text-align: right;
  gap: 10px;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  font-size: 12px;
  color: #fff;
}
.kv-hero .hero-inner .breadcrumb > * {
  display: inline-block;
  vertical-align: middle;
}
.kv-hero .hero-inner .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.kv-hero .hero-inner .breadcrumb a:hover {
  opacity: 0.8;
}
.kv-hero .hero-inner .breadcrumb .sep {
  display: inline-block;
  width: 10px;
  height: 1px;
  background: #fff;
  margin-inline: 6px;
  vertical-align: middle;
}
.kv-hero .hero-inner .breadcrumb .current {
  opacity: 0.9;
  color: #B6B6B6;
}
.kv-hero .title-en {
  color: #D56300;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.kv-hero .title-ja {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: clamp(30px, 4.2857vw, 60px);
}

html[lang=en-US] .kv-hero .title-en {
  font-size: clamp(30px, 4.2857vw, 60px) !important;
}

.fadein {
  opacity: 0;
}
.fadein.action {
  -webkit-animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards fadein;
          animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards fadein;
}
.fadein_delay {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeinup {
  opacity: 0;
  transform: translateY(30px);
}
.fadeinup.action {
  -webkit-animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards fadeinup;
          animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards fadeinup;
}

@-webkit-keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideup.action {
  -webkit-animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards slideup;
          animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards slideup;
}

@-webkit-keyframes slideup {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideup {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideup-en {
  display: inline-block;
  overflow: hidden;
}
.slideup-en span.move {
  display: inline-block;
  transform: translateY(101%);
}
.slideup-en.action span.move {
  -webkit-animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards slideup-en;
          animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards slideup-en;
}
.slideup-en.action span.move.move_delay {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

@-webkit-keyframes slideup-en {
  0% {
    transform: translateY(101%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideup-en {
  0% {
    transform: translateY(101%);
  }
  100% {
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */