@charset "UTF-8";

/* ***********************************
 *  共通スタイル設定
 *
 *  〜799px：SP
 *  800px〜：PC
 *  800px～1099px：タブレット/小型PC(状況に応じて対応)
 * ***********************************
 *  2025.5.2 新規作成
 *
 * *********************************** */

/* ***********************************
 *  〜799px：SP
 * *********************************** */

/*  header
 * *********************************** */
.header {
  background-color: transparent;
  position: relative;
  height: auto;
  z-index: 100;
  display: flex;
  justify-content:space-between;
  width: 100%;
  background-color: transparent;
  padding: 3.8vw 0 1vw;
  align-items: center;
}

.header * {
  color: #fff;
}

.header.header-sub {
  background-color: #000;
}

header.header-sub.bg-transparent {
  background-color: transparent;
}

.header-left {
  padding-left: 4vw;
}

.logo-wrapper img {
  height: 10.5vw;
}

.header-left a {
  display: flex;
  align-items: center;
}

.logo-text {
  white-space: nowrap;
  font-weight: bold;
  font-size: 3vw;
  margin-left: 1.6vw;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow-y: scroll;
  padding: 20vw 8vw 14vw 8vw;
  z-index: 101;

  /* ▼ スライドアニメーション用 */
  transform: translateX(100%); /* 画面の右外に配置 */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none; /* 非表示状態ではクリック不可 */
}

.header-nav.active {
  transform: translateX(0); /* 画面内に移動 */
  opacity: 1;
  pointer-events: auto; /* クリック可能に */
}

.header-right {
  position: fixed;
  top: auto;
  right: 4vw;
  width: 10vw;
  height: 10vw;
}

.header-right.untracking {
  position: absolute;
}

.header-right-bg {
  content: "";
  z-index: 50;
  background-color: transparent;
  height: 10vw;
  width: 10vw;
  position: absolute;
  z-index: 110;
  transition: background-color 0.5s ease;
}

/* ヘッダーメニューアイコン */
.cp_hmenuac02 {
  position: absolute;
  width: 7vw;
  height: 7vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 120;
}
.cp_hmenuac02 .cp_bar,
.cp_hmenuac02 .cp_bar::before,
.cp_hmenuac02 .cp_bar::after {
  display: block;
  width: 7vw;
  height: 1px;
  content: '';
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background: #fff;
  position: relative;
}
.cp_hmenuac02 .cp_bar {
  margin: 5px 0;
}
.cp_hmenuac02 .cp_bar::before,
.cp_hmenuac02 .cp_bar::after {
  position: absolute;
  left: 0;
  content: '';
}
.cp_hmenuac02 .cp_bar::before {
  top: -2vw; /* 上のバーを上に配置 */
}
.cp_hmenuac02 .cp_bar::after {
  top: 2vw; /* 下のバーを下に配置 */
}

/* 押下時の変形 */
.cp_hmenuac02.active .cp_bar {
  background: transparent;
}
.cp_hmenuac02.active .cp_bar::before {
  transform: rotate(30deg);
  top: 0;
  transform-origin: center;
}
.cp_hmenuac02.active .cp_bar::after {
  transform: rotate(-30deg);
  top: 0;
  transform-origin: center;
}

.nav-logo {
  position: absolute;
  top: 4vw;
  padding-left: 0;
  margin-left: -4vw;
}
.nav-logo a {
  display: flex;
  align-items: center;
}

.header-nav-text-en {
  /* font-size: 7vw; */
  letter-spacing: 0.5vw;
  font-weight: bold;
  margin-left: 1vw;
  font-size: 5.6vw;
  line-height: 1.2;
}

.header-nav-text-ja {
  font-weight: bold;
  /* font-size: 3vw; */
  font-size: 2.4vw;
  margin-left: 1.5vw;
}

.header-nav-item a {
  position: relative;
  display: block;
  border-bottom: 1px solid #fff;
  /* padding: 1vw 0 4.7vw; */
  padding: 2.4vw 0 4vw;
}

.header-nav-item a:hover {
  border-bottom: 1px solid transparent;
}

.header-nav-item a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  animation: btn-line-anim 2.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  display: inline-block;
}

.header-nav-item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header-nav-item-text {
  margin-top: 2vw;

}

.header-nav-arrow {
  width: 6vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/* パンくず */
.breadcrumbs-wrapper {
  height: 32px;
  background-color: #000;
}

.breadcrumbs-list {
  font-size: 12px;
  padding-right: 60px;
  display: flex;
  justify-content: flex-end;
}

.breadcrumbs-list * {
  color: #8c8c8c;
}

.breadcrumbs-list li + li::before {
  content: ">";
  margin: 0 2px;
}

.breadcrumbs-list li a {
  text-decoration: underline;
}


/*  footer
 * *********************************** */
.footer {
  background-color: #000;
  padding: 9vw 0 30vw;
}
.footer.contact-none {
  padding:  9vw 0 9vw;
}
.footer * {
  color: #fff;
}

.footer-top-left {
  text-align: center;
}
.footer-company img {
  height: 13vw;
  display: block;
  margin: 0 auto;
}
.footer-company-name {
  margin-top: 8vw;
  font-size: 4.5vw;
  font-weight: bold;
}
.footer-company-address {
  margin-top: 4vw;
  display: flex;
  justify-content: center;
  font-size: 4vw;
}
.footer-company-address-zip {
  letter-spacing: .2vw;
}
.footer-company-address-text {
  margin-left: 1vw;
  letter-spacing: .2vw;
}
.footer-tel-wrapper {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer-tel-number-wrapper {
  margin-top: 5.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-tel-number-wrapper img {
  width: 6.5vw;
}
.footer-tel-number {
  font-size: 9vw;
  margin-left: 2vw;
  line-height: 1.4;
}
.footer-tel-number a {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  letter-spacing: .6vw;
}
.footer-tel-time {
  margin-left: 8.5vw;
  font-size: 3.5vw;
}
.footer-contact-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  margin: 6.66vw auto;
  height: 30vw;
  width: 68vw;
  transition: all .3s linear;
}
.footer-contact-btn::after {
  content: '';
  height: 1px;
  width: 6.66vw;
  right: 0;
  background-color: #fff;
  position: absolute;
  transform: translateX(50%);
}
.footer-contact-btn img {
  width: 8vw;
}
.footer-contact-btn span {
  font-size: 6.5vw;
  font-weight: bold;
  margin-left: 2.5vw;
}
.icon-mail-b {
  display: none;
}
.footer-contact-btn:hover {
  background-color: #fff;
}
.footer-contact-btn:hover .icon-mail-b {
  display: block;
}
.footer-contact-btn:hover .icon-mail-w {
  display: none;
}
.footer-contact-btn:hover span {
  color: #000;
}
.footer-contact-btn:hover::after {
  background-color:#000
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  font-size: 4vw;
  width: 60vw;
  margin: 0 auto;
}
.footer-nav-item {
  margin-bottom: 5vw;
}
.footer-nav-item a,
.footer-privacy a {
  transition: all 0.1s linear;
}
.footer-nav-item a:hover,
.footer-privacy a:hover {
  opacity: .6;
}

.footer-bottom {
  text-align: center;
  font-size: 3.5vw;
  margin-top: 7vw;
}

.footer-privacy {
  font-size: 4vw;
}

.footer-copyright {
  font-size: 3vw;
  margin-top: 7.4vw;
}

/* SP 固定フッター */
.sp-contact-footer {
  background-color: transparent;
  display: flex;
  color: #fff;
  padding: 4vw;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.sp-contact-footer.show {
  opacity: 1;
  visibility: visible;
}
.sp-contact-footer * {
  color: #fff;
}
.sp-contact-footer-btn {
  display: flex;
  align-items: center;
  height: 13vw;
  border: 1px solid #fff;
  width: 46%;
  justify-content: center;
  background-color: #000;
}
.sp-contact-footer .sp-contact-footer-btn:first-of-type {
  margin-right: 2vw;
}
.sp-contact-footer .sp-contact-footer-btn:nth-of-type(2) {
  margin-left: 2vw;
}
.sp-contact-footer-btn img {
  width: 4.4vw;
}
.sp-contact-footer-btn span {
  font-size: 4vw;
  font-weight: bold;
  margin-left: 1.6vw;
}


/*  animation
 * *********************************** */
/* アニメーションスタイル */
/* 左からマスク */
.mask-wrapper {
  overflow: hidden;
}
.mask-wrapper > * {
  display: inline-block;
  clip-path: inset(0 100% 0 0); /* 最初は全部隠す（右側100%カット） */
  transition: clip-path .5s ease;
}

.mask-wrapper.visible > * {
  clip-path: inset(0 0 0 0); /* 全体が見えるように */
}

/* その場でフェードイン */
.fade-in,
.fade-in-sp {
  opacity: 0;
  transition: opacity 0.6s linear;
}
.fade-in.visible,
.fade-in-sp.visible {
  opacity: 1;
}

/* フェード＋ぼかし */
.fade-blur {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s linear, filter 0.3s linear;
}
.fade-blur.visible {
  opacity: 1;
  filter: blur(0);
  transition-delay: 0s, 0.3s;
}

/* 下からふわっと */
.fade-up,
.fade-up-sp {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible,
.fade-up-sp.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 順にその場でフェードイン */
.fade-in-order > * {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-order > *.visible {
  opacity: 1;
}

/* 順に下からその場でフェードイン */
.fade-up-order > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up-order > *.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ***********************************
 *  800px～：PC
 * *********************************** */
@media screen and (min-width: 800px) {

  /*  header
  * *********************************** */
  .header {
    padding: 36px 0;
  }
  .header-left {
    padding-left: 50px;
  }
  .header-mail,
  .header-tel {
    display: flex;
    align-items: center;
    transition: all 0.1s linear;
  }
  .header-mail:hover,
  .header-tel:hover {
    opacity: .6;
  }
  .header-tel {
    margin-left: 40px;
  }
  .header-mail span,
  .header-tel span {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
  }
  .header-mail img,
  .header-tel img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
  }

  .header-right {
    width: auto;
    height: auto;
    top: 0;
    right: 0;
  }
  .header-right-inner {
    display: flex;
    margin-right: 120px;
    padding: 36px 0 36px 36px;
  }
  .header-right-adjustment {
    display: flex;
    height: 60px;
  }
  .header-right-bg {
    height: 100%;
    width: 100%;
    z-index: -1;
  }
  .cp_hmenuac02 {
    z-index: 110;
    top: 50%;
    left: auto;
    right: 24px;
    width: auto;
  }
  .cp_hmenuac02 .cp_bar::before {
    top: -10px;
  }
  .cp_hmenuac02 .cp_bar::after {
    top: 10px;
  }
  .cp_hmenuac02 .cp_bar, .cp_hmenuac02 .cp_bar::before, .cp_hmenuac02 .cp_bar::after {
    width: 40px;
  }
  .header-nav {
    top: 0;
    display: flex;
    align-items: center;
    height: 100vh;
    width: auto;
    right: 0;
    left: auto;
    padding: 20px 7vw 40px 7vw;
    background-color: #1e1e1e;
  }
  .header-nav .header-nav-list-wrapper:nth-of-type(n+2) {
    margin-left: 40px;
  }
  .header-nav-text-en {
    font-size: 32px;
    letter-spacing: 2px;
    margin-left: 10px;
  }
  .header-nav-text-ja {
    font-size: 16px;
    margin-left: 10px;
  }
  .header-nav-arrow {
    width: 28px;
  }
  .header-nav-list {
    width: 300px;
  }
  .header-nav-item a {
    padding: 24px 0 16px;
  }
  /* .header-nav-item:first-of-type a {
    padding: 0 0 16px;
  } */
  .header-nav-item-text {
    margin: 0;
  }


  /*  footer
  * *********************************** */
  .footer,
  .footer.contact-none {
    padding: 60px 7vw 80px 4vw;
  }
  .footer-inner {
    max-width: 1260px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
  }
  .footer-top-left {
    text-align: left;
  }
  .footer-top-right {
    display: flex;
    margin: 30px 2vw 0 2vw;
  }

  .footer-company img {
    height: 80px;
    margin: 0;
  }
  .footer-company-name {
    margin-top: 40px;
    font-size: 20px;
  }

  .footer-company-address {
    margin-top: 30px;
    font-size: 16px;
    display: block;
  }
  .footer-company-address-zip {
    letter-spacing: .1em;
  }
  .footer-company-address-text {
    margin-left: 0;
    letter-spacing: inherit;
  }
  .footer-tel-wrapper {
    margin-bottom: 30px;
  }
  .footer-tel-number-wrapper{
    margin-top: 0;
  }
  .footer-tel-number-wrapper img {
    width: 32px;
  }
  .footer-tel-number {
    font-size: 34px;
    margin-left: 8px;
  }
  .footer-tel-number a {
    letter-spacing: inherit;
  }
  .footer-tel-time {
    margin-left: 40px;
    font-size: 16px;
  }

  .footer-contact-btn {
    height: 80px;
    width: 300px;
    margin: 0;
  }
  .footer-contact-btn::after {
    width: 30px;
  }
  .footer-contact-btn img {
    width: 24px;
  }
  .footer-contact-btn span {
    font-size: 24px;
    margin-left: 16px;
  }

  .footer-nav {
    font-size: 16px;
    justify-content: flex-start;
    width: auto;
    margin-left: calc(4vw + 15px);
  }
  .footer-nav-item {
    margin-bottom: 28px;
  }
  .footer-nav .footer-nav-list-wrapper:nth-of-type(n+2) {
    margin-left: 2vw;
  }

  .footer-bottom {
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    margin-top: 60px;
    margin-right: 2vw;
  }
  .footer-privacy {
    font-size: 18px;
  }
  .footer-copyright {
    margin-top: 0;
    font-size: 16px;
  }

  
  /*  main
  * *********************************** */
  main {
    position: relative;
  }


  /*  PAGE TOP
  * *********************************** */
  .page-top {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 7vw;
    max-width: 110px;
    padding: 2vw 0 3vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    cursor: pointer;
  }

  .page-top.show {
    opacity: 1;
    visibility: visible;
  }

  .page-top.stop {
    position: absolute;
  }

  .page-top-text {
    writing-mode: vertical-rl;
    font-weight: bold;
    margin: 20px auto 0;
  }
  .page-top .scroll-line {
    top: 0;
    height: 70px;
    position: relative;
  }
  .page-top .scroll-line::after {
    background-color: #000;
  }

}


/* ***********************************
 *  800px～1099px：タブレット/小型PC
 * *********************************** */
@media screen and (min-width: 800px) and (max-width: 1099px) {

  /*  header
  * *********************************** */
  .header-left {
    padding-left: 2vw;
  }
  .logo-wrapper img {
    height: 56px;
  }
  .logo-text {
    margin-left: 8px;
  }
  .cp_hmenuac02 {
    right: 8px;
  }
  .header-right-inner {
    margin-right: 88px;
  }
  .header-tel {
    margin-left: 20px;
  }
  .header-mail img, .header-tel img {
    margin-right: 6px;
  }
  .header-mail span, .header-tel span {
    font-size: 20px;
  }

  /*  footer
  * *********************************** */
  .footer-top-left {
    width: 30%;
  }
  .footer-contact-btn {
    width: 240px;
  }
  .footer-tel-number {
    font-size: 26px;
    letter-spacing: 2px;
    white-space: nowrap;
  }
  .footer-company img {
    height: 60px;
  }
  .footer-company-name {
    font-size: 18px;
  }
  .footer-company-address {
    font-size: 14px;
  }

}