/* =========================
   Base
========================= */
:root{
  --container: 1170px;
  --brand-red: #b71a35;
  --nav-text: #2d384b;
  --white: #fff;

  --font-heading: "Noto Serif JP", serif;
  --font-en: "Roboto";
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
b{ font-weight: bold; }
strong { font-weight: 700!important; }
img{ max-width:100%; height:auto; display:block; }

body{ margin: 0!important; }

/* body scroll lock (SP menu open) */
body.is-menu-open{ overflow:hidden; }

.forSP {display: none!important;}

@media (max-width: 767px){
  .forPC {display: none!important;}
  .forSP {display: block!important;}
}

/* =========================
   Layout (stage / container)
========================= */

.page{
  width: 100%;
  min-width: 1170px;
  overflow: auto;
}

@media (max-width: 767px){
  .page{
    min-width: initial;
  }
}

/* 背景を1920まで見せる */
.stage{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 106px;
}

/* コンテンツ幅を1170に固定 */
.container{
  max-width: var(--container); /* 1170px */
  margin: 0 auto;
  padding: 0 15px;             /* 最低余白 */
  box-sizing: border-box;
}

/* =========================
   Header Layout
========================= */
.site-header{
  background: var(--white);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999999999999;
}

/* 1170 container */
.site-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between; /* ロゴ左／その他右 */
}

/* Logo */
.site-header__logo{
  min-width: 70px;
  margin: 30px 30px 19px 20px;
}
.site-header__logo img {
  width: 70px;
}
.site-header__logo-sub{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
}
.site-header__logo-main{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .06em;
}

/* PC nav (right side) */
.site-nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.site-nav__list{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link{
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link:hover{ opacity:.7; }

/* PC CTA pill */
.site-nav__cta{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  margin-right: 30px;
  border: solid 2px #b71a35;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__cta-text{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
}

/* right arrow icon (circle + line) */
.site-nav__cta-icon{
  width: 44px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.site-nav__cta-icon::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width: 34px; height:2px;
  background:#fff;
  transform: translateY(-50%);
  border-radius: 2px;
}
.site-nav__cta-icon::after{
  content:"";
  position:absolute;
  right:0; top:50%;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 999px;
  transform: translateY(-51%);
}

.site-nav__cta-icon .circle-icon::before {
  content: "";
  position: absolute;
  right: 4px;          /* 外円内径中央 */
  top: 50%;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.site-nav__cta:hover .site-nav__cta-icon .circle-icon::before {
  background: var(--brand-red);
  transition : 0.3s;
}

@media (max-width: 850px) {
  .site-nav {
    gap: 17px;
  }
  .site-nav__list {
    gap: 17px;
  }
  .site-nav__link {
    font-size: 15px;
  }
  .site-nav__cta-text {
    font-size: 15px;
  }
}

/* =========================
   SP elements (default hidden on PC)
========================= */
.site-header__sp-right{
  display: none; 
}
.sp-menu{
    display:none;
}

.site-nav__toggle{
  display: none; /* PCでは非表示 */
}

/* =========================
   Breakpoint: SP (<=767)
========================= */
@media (max-width: 767px){
  .site-header__inner{
    padding: 15px 15px;
  }
  .site-header__logo {
    margin: 6px 0 0px 0px
  }

  /* ✅ PC nav hidden on SP */
  .site-nav{ display:none; }

  /* ✅ SP right area shown */
  .site-header__sp-right{
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sp-mini-banner{
    display: inline-flex;
    align-items: center;
  }
  .sp-mini-banner img{
    width: 88px;  /* 画像に合わせて微調整OK */
    height: auto;
  }

  /* ✅ Hamburger only on SP */
  .sp-menu-btn{
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 999px;
    background: var(--brand-red);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }
  .sp-menu-btn__line{
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .sp-menu-btn.is-open .sp-menu-btn__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .sp-menu-btn.is-open .sp-menu-btn__line:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open .sp-menu-btn__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* SP menu overlay */
  .sp-menu{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.0); /* 透明（必要なら暗幕に変更可） */
    pointer-events: none;
    z-index: 1000;
  }

  .sp-menu__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--brand-red);
    padding: 22px 18px 18px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    pointer-events: auto;
  }

  /* open state */
  .sp-menu.is-open{
    pointer-events: auto;
  }
  .sp-menu.is-open .sp-menu__panel{
    transform: translateX(0);
  }

  .sp-menu__close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #fff;
    color: var(--brand-red);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .sp-menu__logo{
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
  }
  .sp-menu__logo-sub{
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .08em;
  }
  .sp-menu__logo-main{
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .06em;
  }

  .sp-menu__nav{
    margin-top: 26px;
    display: flex;
    flex-direction: column;
  }

  .sp-menu__link{
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255,255,255,.35);
  }

  /* SP CTA pill (white) */
  .sp-menu__cta{
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 999px;
    background: #b71a35;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    width: 330px;
    margin: auto;
    justify-content: center;
    gap: 20px;
  }

  .sp-menu__cta-icon{
    width: 44px;
    height: 12px;
    position: relative;
    display: inline-block;
  }
  .sp-menu__cta-icon::before{
    content:"";
    position:absolute;
    left:0; top:50%;
    width: 34px; height:2px;
    background: #ffffff;
    transform: translateY(-50%);
    border-radius: 2px;
  }
  .sp-menu__cta-icon::after{
    content:"";
    position:absolute;
    right:0; top:50%;
    width: 13px;
    height: 13px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    transform: translateY(-50%);
  }

  .sp-menu__cta-icon .circle-icon::before {
  content: "";
  position: absolute;
  right: 4px;          /* 外円内径中央 */
  top: 50%;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

  .sp-menu__banner{
    margin-top: 16px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
  }

  /* PCナビは消す */
  .site-nav__list{
    display: none;
  }

  .site-nav__cta{
    display: none;
  }

  /* 右側エリア表示 */
  .site-header__sp-right{
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .site-nav__toggle{
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: var(--red);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }

  .site-nav__toggle span{
    width: 16px;
    height: 2px;
    background: #fff;
    margin: 0;
  }

  /* 初期非表示 */
.sp-menu{
  display: none;
}

/* SP時のみ有効 */
@media (max-width: 767px){

  .sp-menu{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
  }

  .sp-menu__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--red);
    padding: 22px 18px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }

  .sp-menu.is-open{
    pointer-events: auto;
  }

  .sp-menu.is-open .sp-menu__panel{
    transform: translateX(0);
  }

  .sp-menu__close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #fff;
    color: var(--red);
    font-size: 22px;
  }
}

}


/* ========================================
   HERO
======================================== */

.hero {
  width: 100%;
}

.hero__bg {
  height: 1086px;
  margin: 0 auto;
  background: url("./assets/images/main.png") center/cover no-repeat;
  overflow: hidden;
}

.hero__inner {
  padding: 166px 0 140px;
  text-align: center;
  color: #fff;
}

/* ===== メインコピー ===== */

.hero__title {
  margin: 0 0 320px;
  font-family: var(--font-heading);
}

.hero__title-main {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  color: #2d384b;
  letter-spacing: 7.8px;
}

.hero__title-main .accent {
  color: var(--brand-red);
  font-size: 96px;
  font-weight: 500;
}

/* ===== 下ブロック ===== */

.hero__sub {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-heading);
}


.hero__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 0px;
}
.hero__heading rt {
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: -20px;
}

.hero__lead {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 2;
  margin: 52px 0 0 0;
}

.hero__lead-strong {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.8;
}

/* ===== SP ===== */

.sp-only {
  display: none;
}

@media (max-width: 767px) {

  .hero__bg {
  height: 750px;
  margin: 0 auto;
  background: url("./assets/images/main-sp.png") center/cover no-repeat;
  overflow: hidden;
  border-bottom-left-radius: 10%;
  border-bottom-right-radius: 10%;
}

  .hero__inner {
    padding: 0 0 100px;
  }

  .hero__title {
    margin: 0 0 90px;
    padding-left: 3rem;
  }

  .hero__title-main {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero__title-main .accent {
    font-size: 60px;
  }

  .hero__heading {
    font-size: 40px;
  }

  .hero__lead {
    font-size: 16px;
    margin: 20px 0 0 0;
  }

  .hero__lead-strong {
    font-size: 24px;
    margin: 0;
  }

  .sp-only {
    display: inline;
  }
}



/* ===== MESSAGE ===== */
.section-message{
  margin-top: 143px;
}

.message{
  display: flex;
  align-items: flex-start;
  gap: 65px;              /* 画像と本文の間隔（見た目優先） */
}

.message__media{
  flex: 0 0 470px;        /* デザインの写真幅に寄せる */
}

.message__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;       /* 角丸が必要ならここで */
}

.message__body{
  flex: 1;
  min-width: 0;
}

.message__kicker{
  position: relative;
  margin: 0;
  padding-top: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-top: solid 4px #2d384b;
}
.message__kicker::after{
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 24px;
  border-top: solid 4px #b71a35;
}

.message__title{
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 60px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.message__title-red{
  color: var(--red);
}

.message__title-navy{
  color: var(--navy);
}

.message__text{
  margin-top: 46px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy);
}

.message__text .main-txt {
  padding-left: 1rem;
}

.message__text .copy {
  font-size: 20px;
  font-weight: 700;
}

.message__sign{
  margin: 28px 0 0;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--navy);
}

/* ===== SP（767px以下：縦並び） ===== */
@media (max-width: 767px){
  .section-message{
    padding: 0;
    margin-top: 0;
  }

  .message{
    flex-direction: column;
    gap: 36px
  }

  .message__media{
    flex: none;
    width: 100%;
  }

  .message__title{
    font-size: 44px; /* SPの見え方に合わせて調整 */
  }

  .message__kicker {
  font-size: 20px;
  }

  .message__text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  
  .message__text .copy {
    font-size: 18px;
  }
  .message__media img {
    margin-top: 30px;
  }
}

/* =========================
   MVV
========================= */

.mvv{
  margin-top: 120px;
  padding: 185px 0;
  background-repeat: no-repeat;
  background-position: center;
}
.mvv__inner.container {
  padding: 0;
}

.mvv__item .mvv-ja {
  margin-top: 15px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: bold;
}

.mvv__text ul li {
  padding-left: 1.5rem;
}

/* =========================
   PC（768px以上）
========================= */
@media (min-width: 768px){

  .mvv{
    background-image: url("./assets/images/mvv-bg-pc.png"); /* ←PC用 */
    background-size: 1880px auto; /* 1920基準で中央表示 */
  }

  .mvv__grid{
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

  .mvv__item{
    flex: 1 1 0;
    padding: 44px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .mvv__divider{
    width: 1px;
    background: rgba(255,255,255,0.35);
    margin: 34px 0;
  }

  .mvv__title{
    margin: 0;
    font-family: var(--font-en);
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.06em;
  }

  .mvv__title .mvv-ja {
    font-family: var(--font-heading);
  }

  .mvv__dot{
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-red);
    margin: 14px 0 18px;
  }

  .mvv__text{
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    line-height: 2.1;
  }
  .mvv__text.vision{
    margin-top: 16px;
  }
  .mvv__text ul {
    margin: 0 0 0 18px;
    list-style: none;
  }
  .mvv__text ul li{
    position: relative;
    text-align: left;
  }
  .mvv__text ul li::before{
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    width: 13px;
    border: solid 1px #fff;
  }
}

/* =========================
   SP（767px以下）
========================= */
@media (max-width: 767px){

  .mvv{
    display: flex;
    align-items: center;
    margin-top: 45px;
    height: 1360px;
    background-image: url("./assets/images/mvv-bg-sp.png"); /* ←SP用 */
    background-size: cover;
    padding: 70px 0;
  }

  .mvv__grid{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
  }

  .mvv__item{
    position: relative;
    padding: 34px 26px;
  }

  /* 横線仕切り */
  .mvv__divider{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.35);
  }

  .mvv__title{
    position: relative;
    margin: 0;
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0.04em;
  }

  .mvv__dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand-red);
    position: absolute;
    top: 146px;
    left: 192px;
  }

  .mvv__text.value {
    text-align: left;
  }

  .mvv__text{
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 2.2;
    margin-top: 55px;
  }

  .mvv__text ul li {
    position: relative;
    list-style: none;
  }

  .mvv__text ul li::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    width: 13px;
    border: solid 1px #fff;
  }
}


/* =========================================================
   BUSINESS section (PC/SP) — translucent overlap + X + bg words
   ========================================================= */

/* --- section wrapper --- */
.business{
  width: 100%;
  max-width: 1920px;      /* 背景は1920まで */
  margin: 0 auto;
  position: relative;
  font-family: var(--font-heading);
}

/* --- header area (title) --- */
.business__head{
  max-width: 1170px;
  margin: 0 auto;
  padding: 0px 15px 0px;
  text-align: center;
  margin-top: 40px;
}

.business__kicker{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .2em;
  color: var(--nav-text);
  margin: 0 0 8px;
  position: relative;
}

.business__kicker::before{
  content:"";
  display:block;
  width:6px;
  height:6px;
  background: var(--brand-red);
  border-radius: 99px;
  margin: 0 auto 10px;
}

.business__en{
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 60px;
  margin: 0 0 22px;
  color: var(--nav-text);
}

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

.business__lead{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 46px;
  line-height: 1.6;
  color: var(--nav-text);
  margin: 0 auto;
}
.business__lead .accent{ color: var(--brand-red); }

.business__desc{
  font-size: 16px;
  line-height: 32px;
  margin: 40px 0 60px;
}

/* --- panels area (background wide) --- */
.business__panels{
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 555px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

/* --- common panel styles (no flat color) --- */
.biz-panel{
  position: relative;
  color: #fff;
  padding: 110px 160px 120px;
  overflow: hidden;
  background: transparent;
}

.biz-panel--consult.biz-panel {
  padding-left: 0;
}

.biz-panel--web.biz-panel {
  padding-right: 0;
}

/* main translucent surface */
.biz-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.90;   /* ★透過感 */
  z-index: 0;
}


/* text on top */
.biz-panel__title,
.biz-panel__text{
  position: relative;
  z-index: 2;
}

.biz-panel__title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .08em;
  margin: 0 0 18px;
  text-align: center;
  max-width: 680px;
  padding-right: 25px;
  padding-left: 60px;
}

.biz-panel__text .head-text {
  font-size: 20px;
  font-weight: normal;
  display: block;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding-top: 17px;
  margin-bottom: -35px;
}

.biz-panel__text .list-head {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  padding-left: 1rem;
  margin-top: 30px;
  position: relative;
}

.biz-panel__text .list-head::before {
  content: "";
  width: 12px;
  border-top: solid 1px #ffffff;
  position: absolute;
  top: 15px;
  left: -1px;
}

.biz-panel__text .list-txt {
  display: inline-block;
  padding-left: 1rem;
}

.biz-panel--consult .biz-panel__title {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  padding-right: 60px;
}

.biz-panel__text{
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 16px;
  line-height: 2;
  margin: 0;
  max-width:680px;
  padding-right: 25px;
  padding-left: 30px;
}

/* left (navy) */
.biz-panel--consult{
  width: 55%;
  border-radius: 0 50% 50% 0;
  z-index: 1;
}

.biz-panel--consult::before{
  background: rgba(45, 56, 75, 0.92);
}

/* right (red) — overlap */
.biz-panel--web{
  width: 55%;
      border-radius: 50% 0 0 50%;
  margin-left: -10%;  /* ★重なり量 */
  z-index: 2;
  text-align: left;
}

.biz-panel--web::before{
  background: rgba(183, 26, 53, 0.90);
}

/* right side text aligned like design */
.biz-panel--web .biz-panel__text{
  margin-right: auto;
}

.biz-panel--consult .biz-panel__text{
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}

/* --- center X badge --- */
.biz-x{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 5;
}

.biz-x span{
  position: absolute;
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
}

.biz-x span:nth-child(1){ transform: rotate(45deg); }
.biz-x span:nth-child(2){ transform: rotate(-45deg); }

/* --- big faded words (PC) ---
   ※ ::before/::after は面と光で使ってるので title に乗せる
*/
.biz-panel--consult::after{
  content: "内を織る";
  position: absolute;
  left: 0px;
  bottom: -15px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 90px;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.biz-panel--web::after{
  content: "外へ鳴らす";
  position: absolute;
  right: 0px;
  bottom: -15px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 90px;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   SP (<= 767)
========================= */
@media (max-width: 767px){

  .business__head{
    padding: 0px 15px 30px;
    margin-top: 60px;
  }

  .business .section-title {
    margin-top: 0px;
  }
  .biz-panel__title {
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    font-size: 30px;
  }

  .business__kicker {
    margin: 0;
  }

  .business__desc{
  margin: 53px 0 20px;
  }

  .business__en{
    font-size: 60px;
  }

  .business__jp{
    font-size: 24px;
    line-height: 1.5;
  }

  .business__lead{
    font-size: 30px;
    line-height: 1.5;
  }
  .biz-panel--consult .biz-panel__title {
    margin-left: initial;
    padding-right: 30px;
    padding-left: 30px;
    text-align: left;
    font-size: 30px;
  }

  .biz-panel--consult .biz-panel__text {
    margin-left: initial;
    padding-right: 30px;
    padding-left: 30px;
    text-align: left;
  }

  .biz-panel--web .biz-panel__text {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
  }

  .business__panels{
    display: block;
    overflow: hidden;
  }

  .biz-panel{
    width: 100%;
    padding: 56px 0 86px;
    min-height: auto;
  }

  /* vertical overlap */
  .biz-panel--consult{
    width: auto;
    border-radius: 0 0 260px 260px;
    padding-bottom: 360px;
    z-index: 1;
  }

  .biz-panel--web{
    width: auto;
    border-radius: 260px 260px 0 0;
    margin-left: 0;
    margin-top: -180px; /* ★重なり量 */
    padding: 360px 0 0 0;
    z-index: 2;
  }

  .biz-panel--consult::after {
    left: 50%;
    bottom: 200px;
    transform: translateX(-50%);
    font-size: 70px;
  }

  .biz-panel--web::after {
    right: 50%;
    top: 200px;
    bottom: 0;
    transform: translateX(50%);
    font-size: 70px;
  }

  /* crossing shadow position */
  .business__panels::before{
    width: 420px;
    height: 420px;
    top: 62%;
  }

  .biz-x{
    width: 110px;
    height: 110px;
    top: 50%;
    transform: translate(-50%, -98%);
    z-index: 6;
  }
  .biz-x span{ width: 52px; }

  /* big faded words positions (SP) */
  .biz-panel--consult .biz-panel__title::before{
    left: -40px;
    bottom: -320px;
    font-size: 64px;
  }

  .biz-panel--web .biz-panel__title::before{
    right: -60px;
    bottom: -320px;
    font-size: 64px;
  }
}



/* =========================
   SERVICE section (only)
========================= */

.service{
  background: #fff;
  padding: 35px 0 90px;
  margin-top: 45px;
}

.service__head{
  position: relative;
  margin-bottom: 46px;
  width: 800px;
}

.service__kicker{
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--nav-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service__dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-red);
  display: inline-block;
}

.service__title{
  margin: 0 0 12px;
  padding-bottom: 80px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: var(--nav-text);
  line-height: 1.05;
  border-bottom: solid 4px #2d384b;
  position: relative;
}

.service__title::after {
  content: "";
  position: absolute;
  border-bottom: solid 4px #b71a35;
  bottom: -4px;
  left: 0;
  width: 24px;
}

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


/* ---------- 上段：左テキスト + 右丸画像 ---------- */
.service__hero{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 26px;
  margin-bottom: 46px;
}

.service__hero-text{
  max-width: 470px;
}

.service__hero-name{
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--nav-text);
}

.service__hero-desc{
  margin: 0;
  padding-right: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.0;
  color: var(--nav-text);
}

.service__hero-desc .service-copy {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

/* 丸画像（共通） */
.service__circle{
  width: 360px;
  height: 360px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

/* 外側リング（赤＋紺） */
.service__circle::before,
.service__circle::after{
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  pointer-events: none;
}

.service__circle::before{
  border: 18px solid var(--brand-red);
}

.service__circle::after{
  inset: 0;
  border: 10px solid var(--nav-text);
  opacity: 0.98;
}

/* 中の画像 */
.service__circle img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PCの見え方：右に少しはみ出す（デザインの“食い込み”再現） */
.service__circle--top{
  margin-right: -40px;
  transform: translateY(-24px);
}

/* ---------- 3カラム（上段） ---------- */
.service__grid{
  margin-bottom: 110px;
}

.service__grid--top3 .service__card{
  margin-top: 80px;
  margin-bottom: 40px;
  flex: 1 1 0;
  font-family: var(--font-heading);
}

.service__card{
  position: relative;
  padding-top: 18px;
}

.service__card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: var(--brand-red);
  z-index: 1;
}

.service__card::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D5D5D5;
}

.service__card-title{
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--nav-text);
}

.service__card-subtitle{
  margin: 20px 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--nav-text);
  position: relative;
}

.service__card-subtitle::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 20px;
  height: 3px;
  background: var(--brand-red);
  z-index: 1;
}

.service__card-text{
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.0;
  color: var(--nav-text);
}

.service__card .plan-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service__card .plan-item {
  width: 45%;
  background-color: #F1F1F1;
  border-radius: 30px;
  padding: 20px;
}

.service__card .plan-title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding-left: 1rem;
  margin-bottom: 0;
}

.service__card .plan-title::before {
    content: "";
    width: 12px;
    position: absolute;
    border-top: solid 2px #b71a35;
    top: 11px;
    left: 0px;
}

.service__card .plan-amount {
  display: inline-block;
  font-size: 16px;
}

.service__card .plan-amount span {
  font-size: 12px;
}

.service__card .plan-amount ruby{
  display: flex;
  flex-direction: column;
  text-align: justify;
  text-align-last: justify;
}

.service__card .plan-txt {
  font-size: 16px;
}

/* ---------- 中段：左丸画像 + 右テキスト ---------- */
.service__feature{
  display: flex;
  align-items: center;
  gap: 46px;
  margin: 18px 0 80px;
}

.service__circle--bottom{
  width: 380px;
  height: 380px;
  margin-left: -40px;      /* 左にはみ出し */
}

.service__feature-text{
  flex: 1;
  min-width: 0;
  padding-left: 30px;
}

.service__feature-name{
  margin: 0 0 10px;
  padding-top: 36px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--nav-text);
  position: relative;
}

.service__feature-name::before{
  content: "";
  position: absolute;
  top: 0;
  left: -107px;
  width: 580px;
  border-bottom: solid 4px #2d384b;
}

.service__feature-name::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  border-bottom: solid 4px #b71a35;
}

.service__feature-desc{
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.0;
  color: var(--nav-text);
}

.service__feature-desc .service-copy {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

/* ---------- 下段 3カラム ---------- */
.service__grid--bottom3 .service__card{
  flex: 1 1 0;
  margin-top: 60px;
}

/* ---------- 採用スイッチ枠 ---------- */
.service__ad{
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 30px;
}

.service__ad-text{
  max-width: 670px;
}

.service__ad-title{
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--nav-text);
    border-top: solid 4px #2d384b;
    position: relative;
    padding-top: 47px;
}

.service__ad-title::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 36px;
  border-bottom: solid 4px #b71a35;
}

.service__ad-desc{
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.0;
  color: var(--nav-text);
}

.service__ad-desc .service-copy {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.service__ad-banner{
  display: block;
  width: 470px;
  height: 100%;
  max-width: 40%;
}

.service__ad-banner:hover {
  opacity: 0.7;
  transition : 0.3s;
}

.service__ad-banner img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* =========================
   SP (<= 767px)
========================= */
@media (max-width: 767px){
  .service{
    padding: 0px 0 54px;
    margin-top: 50px;
  }

  .service__head {
    width: 100%;
    margin-bottom: 30px;
  }

  .service__title{
    padding-bottom: 40px;
    font-size: 60px;
  }

  .service__hero{
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
  }

  .service__hero-name {
    font-size: 20px;
  }

  .service__hero-text {
    width: 100%;
    max-width: initial;
  }

  .service__card .plan-item {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .service__hero-desc {
    padding-right: 0;
  }

  /* SPは3カラム→縦、区切り線を入れて“リスト感” */
  .service__grid{
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
  }

  .service__grid--top3 .service__card {
    margin-top: 40px;
  }

  .service__card:last-child{
    border-bottom: none;
  }

  .service__feature{
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
    margin: 80px 0 26px;
  }

  .service__circle--bottom{
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .service__ad{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 18px;
  }

  .service__ad-banner{
    max-width: 100%;
    width: 100%;
  }

  .service__feature-text{
    padding-left: 0;
  }

  .service__feature-name::before {
    width: 100%;
    left: 0;
  }

  .service__card .plan-amount span {
    padding-left: 0;
  }
}

/* =========================
   SERVICE：外側にはみ出すリング（赤＋ネイビーがズレる）
========================= */
:root{
  --ring-red: #b71a35;
  --ring-navy: #2d384b;
}

/* 外側リングを描くラッパー */
.service-ring{
  position: relative;
  display: inline-block;
  isolation: isolate; /* z-indexの事故防止 */
}

/* サイズ（リング込みの外寸ではなく「中の画像円」の基準） */
.service-ring--lg{
  --circle-size: 590px;
  --ring-w: 102px;       /* 輪の太さ */
  --ring-shift: 28px;   /* 赤と紺のズレ */
  --ring-out: 18px;     /* 外にはみ出す量（リングが外へ出る） */
}

@media (max-width: 767px){
  .service-ring--lg{
    width: 90%;
    margin: 0 auto;
    --circle-size: 100%;
    --ring-w: 14px;
    --ring-shift: 12px;
    --ring-out: 16px;
  }
}

/* 内側：画像を円で切り抜く箱 */
.service-circle{
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 9999px;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 1; /* リングより前 */
}

.service-circle > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 外側リング（2枚）— 画像に密着しつつ“外へ”はみ出す */
.service-ring::before,
.service-ring::after{
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
  top: 90px;
  left: 90px;
  right: 90px;
  bottom: 90px;

  /* ★リングは border ではなく box-shadow で外側にだけ描く */
  box-shadow: 0 0 0 var(--ring-w) transparent;
}

/* ネイビー（左下へ） */
.service-ring::before{
  box-shadow: 0 0 0 var(--ring-w) var(--ring-navy);
  transform: translate(calc(-1 * var(--ring-shift)), var(--ring-shift));
}

/* 赤（右上へ） */
.service-ring::after{
  box-shadow: 0 0 0 var(--ring-w) var(--ring-red);
  transform: translate(var(--ring-shift), calc(-1 * var(--ring-shift)));
}

/* 反転（赤＝左上／ネイビー＝右下） */
.service-ring--flip::before{
  transform: translate(var(--ring-shift), var(--ring-shift));
}
.service-ring--flip::after{
  transform: translate(calc(-1 * var(--ring-shift)), calc(-1 * var(--ring-shift)));
}

/* =========================
   NEWS
========================= */
.news{
  position: relative;
  padding: 90px 0 10px;
  overflow: hidden; /* 右の大きい面をはみ出し管理 */
  background: #fff;
}

/* 右の大きい薄グレー面（1920側まで伸びる） */
.news::before{
  content:"";
  position:absolute;
  top: 40px;          /* 見出しより少し下から面が出る感じ */
  right: 0;
  width: min(1275px, 100%);
  height: 675px;
  background: #f1f1f1;
  border-radius: 200px 0 0 0; /* PC画像の角丸ニュアンス */
  z-index: 0;
}

/* 左見出し＋右一覧 */
.news__inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* 見出し（左） */
.news__head{
  width: 320px;
  flex: 0 0 320px;
}

.news__kicker{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--nav-text);
}

.news__dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-red);
  display: inline-block;
}

.news__title{
  margin: 0;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  color: var(--nav-text);
}

/* “N”だけ赤（画像の雰囲気） */
.news__title::first-letter{
  color: var(--brand-red);
}

/* 右の一覧パネル */
.news__panel{
  flex: 1;
  max-width: 760px;
  margin-left: auto;
  padding: 144px 46px 46px;
}

/* リスト */
.news__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.news__item{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(45,56,75,0.10);
}

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

.news__date{
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: rgba(45,56,75,0.65);
  line-height: 1.6;
  white-space: nowrap;
  margin-top: 1px;
}

/* タイトルリンク */
.news__link{
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--nav-text);
}

.news__item a.news__link:hover{
  opacity: 0.7;
  transition : 0.3s;
}

/* 右端の小アイコン（外部リンク/メモ風） */
.news__icon{
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-block;
  opacity: 0.65;
}

/* 外部リンクっぽい */
.news__icon--external{
  background:
    linear-gradient(currentColor,currentColor) 3px 3px/8px 1px no-repeat,
    linear-gradient(currentColor,currentColor) 10px 3px/1px 8px no-repeat,
    linear-gradient(currentColor,currentColor) 6px 7px/7px 1px no-repeat,
    linear-gradient(currentColor,currentColor) 12px 1px/1px 7px no-repeat;
  color: var(--nav-text);
}

/* メモ（ノート）っぽい */
.news__icon--note{
  background:
    linear-gradient(currentColor,currentColor) 3px 4px/8px 1px no-repeat,
    linear-gradient(currentColor,currentColor) 3px 7px/8px 1px no-repeat,
    linear-gradient(currentColor,currentColor) 3px 10px/6px 1px no-repeat,
    linear-gradient(currentColor,currentColor) 2px 2px/10px 10px no-repeat;
  mask: none;
  color: rgba(45,56,75,0.8);
  opacity: 0.6;
}

/* =========================
   SP（767以下）
========================= */
@media (max-width: 767px){
  .news{
    margin-top: 130px;
    padding: 48px 0 70px;
    overflow: visible;
  }

  .news::before{
    top: 0;
    width: 90%;
    height: 100%;
    border-radius: 120px 0 0 0; /* SPの角丸ニュアンス */
  }

  .news__inner{
    flex-direction: column;
    gap: 26px;
  }

  .news__head{
    width: 90%;
    flex: auto;
    position: absolute;
    top: -170px;
    left: 20px;
  }

  .news__title{
    font-size: 60px;
  }

  .news__panel{
    max-width: 80%;
    padding: 50px 26px 20px;
  }

  .news__item{
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }

  .news__date{
    width: auto;
    flex: none;
  }
}


/* =========================
   FOOTER / CONTACT
========================= */

.site-footer{
  margin: 0;
}

/* 背景は「1920まで」見せる */
.site-footer__stage{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: url("./assets/images/footer-bg-pc.png") center/cover no-repeat;
  border-radius: 50px 50px 0 0;
  padding: 113px 0 90px;
}

/* 中身は1170に収める */
.site-footer__container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* 左ブロック（タイトル＋リード） */
.site-footer__head{
  color: #fff;
}

.site-footer__title{
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.site-footer__lead{
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}


/* 右CTA（白いピル） */
.site-footer__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 18px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-red);
  text-decoration: none;

  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;

  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border: solid 2px #b71a35;
}

/* 右端の「線＋丸」 */
.site-footer__cta-icon{
  position: relative;
  width: 44px;
  height: 16px;
  flex: 0 0 auto;
}

.site-footer__cta-icon::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--brand-red);
  transform: translateY(-50%);
}

.site-footer__cta-icon::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--brand-red);
  transform: translateY(-50%);
}

.site-footer__cta-icon .circle-icon::before {
  content: "";
  position: absolute;
  right: 4px;          /* 外円内径中央 */
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--brand-red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.site-footer__cta:hover .site-footer__cta-icon .circle-icon::before {
  background: #ffffff;
  transition : 0.3s;
}


/* 下のネイビー帯 */
.site-footer__bottom{
  background: var(--nav-text);
  padding: 20px 0;
}

.site-footer__copy{
  display: block;
  text-align: center;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* =========================
   SP（767以下）
========================= */
@media (max-width: 767px){

  .site-footer__stage{
    background: url("./assets/images/footer-bg-sp.png") center/cover no-repeat;
    padding: 80px 0 60px;
    margin-bottom: -3px;
  }

  .site-footer__container{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    padding: 0 15px;
  }

  .site-footer__title{
    font-size: 30px;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .site-footer__lead{
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    margin-top: 25px;
  }

  .site-footer__cta{
    width: auto;
    margin: 0 auto;
    padding: 18px 60px;
    font-size: 24px;
    justify-content: space-between; /* 文字とアイコンを両端へ */
  }

  .site-footer__cta-icon{
    width: 56px;
    height: 18px;
  }

  .site-footer__cta-icon::before{
    width: 42px;
  }

  .site-footer__cta-icon::after{
    width: 17px;
    height: 17px;
  }
  .site-footer__cta-icon .circle-icon::before {
    right: 5px;
    width: 11px;
    height: 11px;
  }

  .site-footer__bottom{
    padding: 24px 0;
  }

  .site-footer__copy{
    font-size: 12px;
  }
  .site-footer__container .site-footer__head {
    margin: 0 auto;
  }

}

.float-banner {
  position: absolute;
  top: 115px;
  right: 30px;
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
.page-top.is-show{
  opacity: 1;
  visibility: visible;
}

.page-top-wrap {
  position: relative;
  width: 70px;
  bottom: 70px;
}

.page-top-wrap img {
  position: absolute;
}

.page-top img:last-of-type {
  opacity: 0;
  transition: opacity .3s;
}

.page-top:hover img {
  opacity: 1;
}

@media (max-width: 767px){
  .page-top{
    right: 20px;
  }
  .page-top-wrap {
    width: 50px;
    bottom: 40px;
  }
}
  

/* =========================
  :hover
========================= */

.site-nav__cta:hover {
  border: solid 2px #b71a35;
  color: #b71a35;
  background: #ffffff;
  transition : 0.3s;
}

.site-nav__cta:hover .site-nav__cta-icon::before {
  background: #b71a35;
  transition : 0.3s;
}

.site-nav__cta:hover .site-nav__cta-icon::after {
  border: 2px solid #b71a35;
  transition : 0.3s;
}

.float-banner:hover {
  opacity: 0.7;
  transition : 0.3s;
  cursor:pointer
}

.site-footer__cta:hover {
  border: solid 2px #b71a35;
  color: #ffffff;
  background: #b71a35;
  transition : 0.3s;
}

.site-footer__cta:hover .site-footer__cta-icon::before {
  background: #ffffff;
  transition : 0.3s;
}

.site-footer__cta:hover .site-footer__cta-icon::after {
  border: 2px solid #ffffff;
  transition : 0.3s;
}


/* SPメニューはスマホだけ表示したいなら（必要に応じて） */
@media (min-width: 768px) {
  .sp-menu,
  .sp-overlay {
    display: none !important;
  }
}

/* オーバーレイ */
.sp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 999;
}

/* メニュー本体（右からスライドイン） */
.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(100vw, 100%);
  background: #fff;
  transform: translateX(250%);
  transition: transform .25s ease;
  z-index: 1000;
  box-shadow: -8px 0 24px rgba(0,0,0,.15);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* 開いた状態 */
.sp-menu.is-open {
  transform: translateX(0);
  right: 0;
}
.sp-overlay.is-open {
  opacity: 1;
}

/* 中身はお好みで */
.sp-menu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-bottom:1px solid #eee;
}
.sp-menu__list{
  list-style:none;
  margin:0;
  padding:12px 40px 24px;
}
.sp-menu__list a{
  display:block;
  padding:14px 8px;
  text-decoration:none;
  color:#111;
}
.sp-menu__cta a{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  margin-right: 30px;
  border: solid 2px #b71a35;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.is-fixed {
  overflow: hidden;
}

.sp-menu__nav .sp-menu__list li {
  font-family: var(--font-heading);
  font-size: 20px;
  border-bottom: solid 1px #b71a35;
  padding: 15px;
}

.sp-menu__nav .sp-menu__list li:last-of-type {
  border: none;
}

.sp-menu__nav .sp-menu__list li a {
  color: #b71a35;
  font-weight: 600;
}

.sp-menu__cta-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .02em;
    padding: 10px;
}

.sp-menu__cta-icon {
    width: 44px;
    height: 12px;
    position: relative;
    display: inline-block;
}

.news__link {
    display: block;
    align-items: center;
    gap: 6px;
}

.news__icon {
    width: 16px;
    height: auto;
    transform: translateY(2px);
}





/*-----------------------------------------
---------------page-inquiry ---------------
------------------------------------------*/

.page-inquiry .container {
  margin-top: 106px;
  padding: 0 15px;
}

.page-inquiry .page-content{
  text-align: left;
}

.page-title {
  position: relative;
  margin-top: 60px;
  margin-left: 37px;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-size: 60px;
}

@media (max-width: 768px) {
  .page-title {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 30px;
  }
}

.page-title::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--brand-red);
  border-radius: 6px;
  top: 50%;
  left: -37px;
  transform: translateY(-50%);
}

.Breadcrumbs {
  display: flex;
  list-style: none;
  padding: 0;
}

.Breadcrumbs .Breadcrumbs-item {
  font-family: var(--font-heading);
  position: relative;
}

.Breadcrumbs .Breadcrumbs-item a {
  color: #000;
  text-decoration: none;
}

.Breadcrumbs .Breadcrumbs-item a:hover {
  opacity: 0.7;
  transition : 0.3s;
}

.Breadcrumbs .Breadcrumbs-item.-child {
  margin-left: 52px;
}

.Breadcrumbs .Breadcrumbs-item.-child::before{
  content: "";
  position: absolute;
  width: 20px;
  border-bottom: solid 1px #000000;
  top: 50%;
  left: -40px;
}

.page-inquiry .container {
  margin-top: 106px;
  margin-bottom: 60px;
  padding: 0 15px;
}

.page-inquiry .page-content {
  font-family: var(--font-heading);
}

.page-inquiry .wp-block-heading {
  position: relative;
  font-family: var(--font-heading);
  color: var(--nav-text);
  border-top: solid 4px #2d384b;
  padding-top: 30px;
  font-weight: 800;
  font-size: 24px;
  margin-top: 50px;
}

.page-inquiry .wp-block-heading::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 36px;
  border-bottom: solid 4px #b71a35;
}

.page-inquiry .page-content .site-nav__cta {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .page-inquiry .wp-block-heading {
    font-size: 30px;
  }

  .page-inquiry .page-content .site-nav__cta {
    display: flex;
    justify-content: space-evenly;
    margin-right: 0;
  }

}
