/* ===== TOP Hero (base) ===== */
.hero-inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  min-height:520px;
  padding:28px 16px 28px;
}

.hero-media{
  position:absolute;
  left:150px;
  right:86px;
  top:0;
  bottom:0;
  background: url("../img/imghero.jpg") center/cover no-repeat;
}

.hero-copy{
  position:relative;
  z-index:2;
  max-width:520px;
  padding:34px 0 0 0;
  margin-left:22px;
}

.text-accent{
  color: var(--red);
}

.hero-en{
  margin:15px 0 10px;
  margin-bottom: -2px;
  color:rgb(32, 32, 32);
  font-weight:500;
  font-family: 'Oswald', sans-serif;
  letter-spacing:.13em;
  font-size:20px;
}

.hero-ja{
  margin:0 0 18px;
  margin-bottom: 50px;
  color:rgb(32, 32, 32);
  font-weight:700;
  letter-spacing:.03em;
  line-height:1.2;
  font-size:70px;
}
.hero-ja span{ display:block; white-space: nowrap; }

.hero-tagline{
  display:inline-block;
  margin:0 0 10px;
  padding:5px 10px;
  background:rgb(32, 32, 32);
  color:#fff;
  font-weight:400;
  letter-spacing:.02em;
  border-radius:0px;
}
.hero-tagline--3{ font-weight:600; }

/* Hero scroll */
.hero-scroll{
  position:absolute;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-scroll__label{
  writing-mode:vertical-rl;
  letter-spacing:.20em;
  font-family: 'Oswald', sans-serif;
  font-weight:500;
  opacity:.95;
}

.hero-scroll__arrow{
  width:2px;
  height:44px;
  background:rgba(255,255,255,.9);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.hero-scroll--sp{display:none;}

/* ===== TOP SP ===== */
@media (max-width: 680px){
  :root{
    --sp-scroll-h: 70px;
    --sp-scroll-raise: -20px;
    --sp-scroll-right-gap: 50px;
  }

  .hero{ margin-top: calc(var(--header-h) * -1); }

  .hero-inner{
    min-height: 100svh;
    padding-bottom: 0;
  }

  .hero-media{
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../img/imghero_sp_v2.png") center bottom no-repeat;
    background-size: cover;
    background-position: center top;
  }

  .hero-copy{
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-h) + 12px);
    display: block;
    max-width: 100%;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: calc(var(--sp-scroll-h) + 16px);
  }

  .hero-head{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
  }
  html.is-ready .hero-head{
    opacity: 1;
    transform: translateY(0);
  }

  .hero-en{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin: 1px 0 0 0;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .hero-ja{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin: -5px;
  }

  .hero-ja{ order: 1; }
  .hero-en{ order: 2; }

  /* 1行目は今まで通り（ブロックのまま）＝改行される */
  .hero-ja > span:first-child{
    display: block;
    white-space: nowrap; /* 念のため */
  }

  /* 2行目だけ縦1列に固定して折れを防止 */
  .hero-ja > span:last-child{
    display: inline-block;
    white-space: nowrap;
  }

  .hero-ja .text-accent{
    display: inline;
    white-space: inherit;
  }

  .hero-tagline{
    writing-mode: horizontal-tb;
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 10px;
    font-size: clamp(16px, 4.6vw, 20px);
    padding: 5px 5px;
  }

  .hero-tagline--1{ white-space: nowrap; }
  .hero-tagline--3{ display:none; }

  .hero-scroll--pc{display:none;}
  .hero-scroll--sp{
    display:flex;
    left: 0;
    right: var(--sp-scroll-right-gap);
    bottom: calc(env(safe-area-inset-bottom) + var(--sp-scroll-raise));
    height: var(--sp-scroll-h);
    background:#111;
    color:#fff;
    flex-direction:column;
    gap:15px;
  }
  .hero-scroll--sp .hero-scroll__label{
    font-size: 18px;
    writing-mode:horizontal-tb;
    letter-spacing:.12em;
    font-weight: 300;
  }
  .hero-scroll--sp .hero-scroll__arrow{
    position:relative;
    bottom:12px;
    width:2px;
    height:24px;
  }

  /* SPはFV文字アニメしない（レイアウト保持） */
  .hero-copy .hero-en,
  .hero-copy .hero-ja span{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ===== TOP PC: full-bleed (like luffia) ===== */
@media (min-width: 681px){
  .hero{
    position:relative;
    overflow:hidden;
    margin-top: calc(var(--header-h) * -1);
    background: url("../img/imghero.png") center / cover no-repeat;
  }

  .hero-inner{
    max-width: var(--container);
    margin: 0 auto;
    min-height: clamp(620px, 75vh, 720px);
    padding: 50px 16px 56px;
    padding-top: calc(56px + var(--header-h));
    display:block;
  }

  .hero-media{ display:none !important; }

  .hero-copy{
    position:relative;
    z-index:2;
    max-width: 560px;
    margin-left: 22px;
    padding-top: 10px;
  }

  .hero-en{ color:rgb(32, 32, 32); }
  .hero-ja{ color:rgb(32, 32, 32); }

  .hero-tagline{
    background: rgb(32, 32, 32);
    display:block;
    width:fit-content;
    font-weight:400;
  }

  .hero-scroll--pc{
    background:#111;
    color:#fff;
    position: fixed;
    right: 0;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    width: 46px;
    z-index: 900;
  }

  /* PC FV copy reveal */
  .hero-copy .hero-en,
  .hero-copy .hero-ja span{
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
    will-change: opacity, transform, filter;
  }

  html.is-ready .hero-copy .hero-en,
  html.is-ready .hero-copy .hero-ja span{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  html.is-ready .hero-copy .hero-en{ transition-delay: .05s; }
  html.is-ready .hero-copy .hero-ja span:nth-child(1){ transition-delay: .18s; }
  html.is-ready .hero-copy .hero-ja span:nth-child(2){ transition-delay: .32s; }
}

/* Sub copy reveal (hero-tagline) */
.hero-copy .hero-tagline{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
html.is-ready .hero-copy .hero-tagline{
  opacity: 1;
  transform: translateY(0);
}
html.is-ready .hero-tagline--1{ transition-delay: .45s; }
html.is-ready .hero-tagline--2{ transition-delay: .60s; }
html.is-ready .hero-tagline--3{ transition-delay: .75s; }

@media (prefers-reduced-motion: reduce){
  .hero-copy .hero-tagline{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Hero copy card (PC/SP 共通) ===== */
.hero-head{
  position: relative;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

/* PC：横組み（文字幅にフィット） */
@media (min-width: 681px){
  .hero-head{
    display: inline-block;
    padding: 18px 1px 1px 25px;
    margin-bottom: 30px;
  }
}

/* SP：縦組み（既存のflexレイアウトを維持） */
@media (max-width: 680px){
  .hero-head{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;

    /* ここはお好みでOK：いまの 50px だと大きいので少し控えめ推奨 */
    padding: 22px 18px 3px;

    margin-bottom: 20px;
    margin-top: 20px;

    width: fit-content;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Hero scroll bar fade */
.hero-scroll--pc{
  transition: opacity .4s ease, visibility .4s ease;
  flex-direction: column;
  gap: 24px;
}
.hero-scroll--pc.is-scrollbar-hidden{
  opacity: 0;
  visibility: hidden;
}

@keyframes scroll-bounce{
  0%{ transform: translateY(0); opacity: 1; }
  40%{ transform: translateY(10px); opacity: .9; }
  70%{ transform: translateY(0); opacity: 1; }
  100%{ transform: translateY(0); opacity: 1; }
}

/* ===== Loader ===== */
.site-loader{
  position: fixed;
  inset: 0;
  background: #eeeeee;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.0s ease, visibility .7s ease;
}
.site-loader__inner{ text-align: center; }

.site-loader__logo-img{
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: scale(1);
  opacity: 1;
}

.site-loader__line{
  width: 180px;
  height: 2px;
  background: var(--red);
  margin: 14px auto 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderLine 1.0s ease forwards;
}

@keyframes loaderLine{ to{ transform: scaleX(1); } }

html.is-loading,
html.is-loading body{
  height: 100%;
  overflow: hidden;
}

html.is-loaded .site-loader__logo-img{
  animation: loaderLogoOut .7s ease forwards;
}
@keyframes loaderLogoOut{
  to{ transform: scale(1.22); opacity: 0; }
}

html.is-loaded .site-loader{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =========================
   ABOUT intro（1枚画像版）
   ========================= */
.about-intro { 
  padding: 72px 16px 88px; 
  margin-top: 25px;
  
}
.about-intro__inner { max-width: var(--container); margin: 0 auto; }

.about-card{
  background: #fff;
  border: 2px solid rgba(29, 29, 29, 0.521);
  border-radius: 4px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.about-card__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.about-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}

.about-title__en{
  font-family: 'Oswald', sans-serif;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
}
.about-title__en::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--red);
}
.about-title__ja{
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--red);
}

.about-lead{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: .01em;
}
.about-text{
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  letter-spacing: .01em;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 44px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}
.about-btn:hover{
  background: var(--red);
  transform: translateY(-1px);
}
.about-btn__arrow{ font-family: 'Oswald', sans-serif; }

@media (max-width: 900px){
  .about-card{ grid-template-columns: 1fr; padding: 18px; }
  .about-lead{ font-size: 20px; }
  .about-btn{ width: 100%; }
}

/* =========================
   SERVICE intro
   ========================= */
.service-intro{
  padding: 0 16px 88px;
}

.service-intro__inner{
  max-width: var(--container);
  margin: 0 auto;
}

.service-card{
  background: #fff;
  border: 2px solid rgba(29, 29, 29, 0.521);
  border-radius: 4px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.service-card--reverse .service-card__body{
  order: 1;
}

.service-card--reverse .service-card__image{
  order: 2;
}

.service-card__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.service-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}

.service-title__en{
  font-family: 'Oswald', sans-serif;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
}

.service-title__en::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.service-title__ja{
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--red);
}

.service-lead{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: .01em;
}

.service-text{
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  letter-spacing: .01em;
}

.service-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 44px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}

.service-btn:hover{
  background: var(--red);
  transform: translateY(-1px);
}

.service-btn__arrow{
  font-family: 'Oswald', sans-serif;
}

@media (max-width: 900px){
  .service-card{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .service-card--reverse .service-card__body,
  .service-card--reverse .service-card__image{
    order: initial;
  }

  .service-lead{
    font-size: 20px;
  }

  .service-btn{
    width: 100%;
  }
}

/* =========================
   PRODUCT intro
   ========================= */
.product-intro{
  padding: 0 16px 88px;
}

.product-intro__inner{
  max-width: var(--container);
  margin: 0 auto;
}

.product-card{
  background: #fff;
  border: 2px solid rgba(29, 29, 29, 0.521);
  border-radius: 4px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.product-card__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.product-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}

.product-title__en{
  font-family: 'Oswald', sans-serif;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
}

.product-title__en::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.product-title__ja{
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--red);
}

.product-lead{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: .01em;
}

.product-text{
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  letter-spacing: .01em;
}

.product-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 44px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}

.product-btn:hover{
  background: var(--red);
  transform: translateY(-1px);
}

.product-btn__arrow{
  font-family: 'Oswald', sans-serif;
}

@media (max-width: 900px){
  .product-card{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .product-lead{
    font-size: 20px;
  }

  .product-btn{
    width: 100%;
  }
}

/* =========================
   TOP NEWS
   ========================= */
.top-news{
  padding: 0 16px 88px;
}

.top-news__inner{
  max-width: var(--container);
  margin: 0 auto;
  background: var(--red);
  border-radius: 14px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 180px 1px 1fr;
  gap: 36px;
  align-items: start;
}

.top-news__head{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-top: 4px;
}

.top-news__title{
  margin: 0;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
}

.top-news__more{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  transition: opacity .2s ease, transform .2s ease;
}

.top-news__more:hover{
  opacity: .85;
  transform: translateX(2px);
}

.top-news__more-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  border: 1.5px solid rgba(255,255,255,.95);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.top-news__divider{
  width: 1px;
  min-height: 100%;
  background: rgba(255,255,255,.8);
}

.top-news__body{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-news__item{
  display: grid;
  grid-template-columns: 120px 112px 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.top-news__item:hover{
  opacity: .88;
  transform: translateX(4px);
}

.top-news__date{
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.top-news__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 14px;
  background: #111;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.top-news__text{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
}

.top-news__item{
  cursor: pointer;
}

.top-news__text{
  text-decoration: none;
}

.top-news__item:hover .top-news__text{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== NEWS Tablet ===== */
@media (max-width: 980px){
  .top-news__inner{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 26px;
  }

  .top-news__divider{
    display: none;
  }

  .top-news__head{
    gap: 18px;
    padding-top: 0;
  }

  .top-news__title{
    font-size: 44px;
  }

  .top-news__more{
    font-size: 18px;
  }

  .top-news__item{
    grid-template-columns: 110px 100px 1fr;
    gap: 14px;
  }

  .top-news__date{
    font-size: 16px;
  }

  .top-news__label{
    font-size: 13px;
    min-height: 28px;
    padding: 4px 10px;
  }

  .top-news__text{
    font-size: 15px;
  }
}

/* ===== NEWS SP ===== */
@media (max-width: 680px){
  .top-news{
    padding: 0 16px 72px;
  }

  .top-news__inner{
    padding: 24px 18px;
    border-radius: 10px;
  }

  .top-news__title{
    font-size: 36px;
  }

  .top-news__more{
    font-size: 16px;
  }

  .top-news__body{
    gap: 14px;
  }

  .top-news__item{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.28);
  }

  .top-news__item:first-child{
    border-top: none;
    padding-top: 0;
  }

  .top-news__date{
    font-size: 15px;
  }

  .top-news__label{
    width: fit-content;
    font-size: 12px;
    min-height: 26px;
  }

  .top-news__text{
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =========================
   TOP CONTACT CTA
   ========================= */
.top-contact-cta{
  position: relative;
  width: 100%;
  background: #111;
  margin-top: 0;
}

.top-contact-cta__link{
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.top-contact-cta__link::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111 0%, #1a1a1a 55%, var(--red) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}

.top-contact-cta__link:hover::before{
  opacity: 1;
}

.top-contact-cta__inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 220px;
  padding: 54px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.top-contact-cta__head{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.top-contact-cta__en{
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: .08em;
  color: #fff;
}

.top-contact-cta__ja{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.82);
}

.top-contact-cta__body{
  display: flex;
  align-items: center;
  gap: 26px;
}

.top-contact-cta__lead{
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .04em;
  color: #fff;
  text-align: right;
}

.top-contact-cta__arrow{
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,.9);
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.top-contact-cta__link:hover .top-contact-cta__arrow{
  transform: translateX(6px);
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

.sp-only{
  display: none;
}

@media (max-width: 900px){
  .top-contact-cta__inner{
    min-height: auto;
    padding: 44px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .top-contact-cta__body{
    width: 100%;
    justify-content: space-between;
  }

  .top-contact-cta__lead{
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
  }

  .top-contact-cta__arrow{
    width: 62px;
    height: 62px;
    font-size: 24px;
  }
}

@media (max-width: 680px){
  .top-contact-cta__inner{
    padding: 36px 16px 38px;
    gap: 22px;
  }

  .top-contact-cta__en{
    font-size: 44px;
    letter-spacing: .06em;
  }

  .top-contact-cta__ja{
    font-size: 12px;
    letter-spacing: .14em;
  }

  .top-contact-cta__body{
    align-items: flex-end;
    gap: 18px;
  }

  .top-contact-cta__lead{
    font-size: 14px;
    line-height: 1.8;
  }

  .top-contact-cta__arrow{
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
}

/* =========================
   TOP COMPANY MINI CTA
   ========================= */
.top-company-mini{
  padding: 32px 16px 40px;
  background: #f7f7f7;
}

.top-company-mini__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-company-mini__text{
  margin: 0;
  font-size: 14px;
  color: #555;
  letter-spacing: .04em;
}

.top-company-mini__link{
  display: block;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .12em;
  transition: transform .25s ease, opacity .25s ease;
}

.top-company-mini__label{
  font-size: 18px;
}

.top-company-mini__arrow{
  font-size: 18px;
}

.top-company-mini__link:hover{
  transform: translateX(4px);
  opacity: .7;
}

/* SP */
@media (max-width: 680px){
  .top-company-mini__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-company-mini__label{
    font-size: 16px;
  }
}