/* =======================================
変数
======================================== */
:root {
  /* ブランドカラー */
  --blue-color: #2f7ed4;
  --navy-color: #065a8e;
}

/* =======================================
共通
======================================== */

html {
  font-size: 20px;
  /* デフォルト16px → 20pxに変更 */
}

html,
body {
  overflow-x: clip;
}



body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.025em;
}

img {
  width: 100%;
}

.container {
  max-width: 1500px;
  /* 中身が1290pxになる */
}

.wrapper {
  overflow: hidden;
}

.ml-50 {
  margin-left: min(calc(25px + (50 - 25) * ((100vw - 992px) / (1500 - 992))),
      50px);
}

.blcok-1200 {
  display: none;
}

a {
  transition: 0.7s;
  cursor: pointer;
}

br.sp-none {
  display: block;
}

br.w-1500-none {
  display: block;
}
.external-icon {
  width: 12px;
  height: auto;
  transform: translateY(-1px);
  display: block;
}

.external-icon img {
  height: auto;
}

@media (max-width: 1500px) {
  .container {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}


@media (max-width: 1500px) {
  :root {
    --c-pad: 15px;
    /* デフォルト */
  }

  :root {
    --c-pad: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media screen and (max-width: 1500px) {
  br.w-1500-none {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  br.sp-none {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .blcok-1200 {
    display: block;
  }
}


.sec-ttl-box {
  margin-bottom: 86px;
}

.sec-ttl-box .sec-en {
  letter-spacing: 0;
  font-size: 96px;
  line-height: 1;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.about .sec-en {
  font-size: 96px;
  line-height: 1;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #ececec !important;
}

.sec-ttl {
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec-ttl::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: #fff;
}

.more-btn,
.more-btn.tagcolle-btn {
  color: #fff;
  padding: 23px 40px;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  letter-spacing: 0.025em;
  margin-top: 70px;
  transition: background 0.7s ease;
  cursor: pointer;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 2;
}

.more-btn.tagcolle-btn {
  box-shadow: none;
  background: none;
  border: none;
  max-width: 180px;
  justify-content: center;
  width: 100%;
}

/* 通常グラデ */
.more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fd6f11, #fd3d11);
  z-index: -1;
}

/* hover用（色逆） */
.more-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fd3d11, #fd6f11);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.more-btn:hover::after {
  opacity: 1;
}

.more-btn .linkbtn__icon {
  line-height: 1;
  width: 17px;
  height: 16px;
  font-size: 0;
  position: relative;
  transform: rotate(-45deg);
  overflow: hidden;
}

.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}

.more-btn:hover .arrow--old {
  transform: translate(100%, -50%);
  /* 右外へスライドアウト */
}

.arrow--new {
  transform: translate(-200%, -50%);
  /* 初期：左外 */
}

.more-btn:hover .arrow--new {
  transform: translate(-50%, -50%);
  /* 中央にスライドイン */
}


@media (max-width: 991px) {
  .sec-ttl-box .sec-en {
    font-size: 70px;
  }

  .more-btn,
  .more-btn.tagcolle-btn {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .sec-ttl-box .sec-en {
    font-size: 55px;
  }

  .more-btn,
  .more-btn.tagcolle-btn {
    background: linear-gradient(90deg, #fd3d11, #fd6f11);
    color: #fff;
    padding: 20px 30px;
  }
}

/* =======================================
header
======================================== */
.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 40px;
}

.header-inner {
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

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

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact {
  color: #fff;
  padding: 14px 40px;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;

  display: inline-flex;
  align-items: center;
  gap: 24px;
  letter-spacing: 0.025em;
  transition: background 0.7s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* 通常グラデ */
.header-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fd6f11, #fd3d11);
  z-index: -1;
}

/* hover用（色逆） */
.header-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fd3d11, #fd6f11);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header-contact:hover::after {
  opacity: 1;
}

.header-contact .linkbtn__icon {
  line-height: 1;
  width: 17px;
  height: 16px;
  font-size: 0;
  position: relative;
  transform: rotate(-45deg);
  overflow: hidden;
}

.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}

.header-contact:hover .arrow--old {
  transform: translate(100%, -50%);
  /* 右外へスライドアウト */
}

.arrow--new {
  transform: translate(-200%, -50%);
  /* 初期：左外 */
}

.header-contact:hover .arrow--new {
  transform: translate(-50%, -50%);
  /* 中央にスライドイン */
}

.logo {
  width: 100%;
}

.logo a {
  cursor: pointer;
  transition: 0.7s;
}

.logo {
  margin: 0;
}

.logo__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.logo__mark img {
  width: 54px;   /* サイズは調整可 */
  height: auto;
  display: block;
}

.logo__text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
}

.scroll-header .logo__text {
  color: #000 !important;
}

.logo a:hover {
  opacity: 0.6;
}

.header-instagram {
  max-width: 32px;
  width: 100%;
  cursor: pointer;
  transition: 0.7s;
  display: block;
}

.header-instagram img {
  width: 32px;
}

.header-instagram:hover {
  opacity: 0.6;
}

.gnav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.gnav ul {
  display: flex;
  gap: 48px;
}

.gnav li a {
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
  /* 下線との距離 */
}

.gnav li.active a::after,
.gnav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fd3d11;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gnav li.active a::after {
  transform: scaleX(1);
}
/* hoverで伸びる */
.gnav li a:hover::after {
  transform: scaleX(1);
}

.gnav a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

/*====== 追従ヘッダー ======*/
.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 24px 40px;
}

.scroll-header-wrap {
  padding: 16px 24px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-header .logo {
  width: 100%;
}

.site-header .logo .sp {
  display: none;
}

.scroll-header .gnav a {
  color: #000000;
}

@media (max-width: 1300px) {
.logo__mark img {
  width: 50px;   /* サイズは調整可 */
  height: auto;
  display: block;
}

.logo__text {
  font-size: 22px;
  letter-spacing: 0;
  color: #fff;
}
.scroll-header .logo__text {
  font-size: 20px;
  letter-spacing: -0.05em}
}
@media (max-width: 1200px) {
  .logo {
    width: 100%;
  }

  .scroll-header .logo {
    width: 100%;
  }

  .gnav ul {
    display: flex;
    gap: 30px;
  }
}

@media (max-width: 1060px) {
  .gnav {
    display: none;
  }

  .header-contact,
  .header-right {
    display: none;
  }

  .site-header,
  .scroll-header {
    position: fixed;
    padding: 10px 15px;
  }

  .scroll-header {
    display: none !important;
  }

  .header-inner {
    padding: 10px 24px;
    background-color: #fff;
  }
  .logo__text {
    font-size: 22px;
    letter-spacing: 0;
    color: #000;
  }
  .site-header .logo .pc {
    display: none;
  }

  .site-header .logo .sp {
    display: block;
  }
}

@media (max-width: 480px) {
  .logo__mark img {
    width: 38px;   /* サイズは調整可 */
    height: auto;
    display: block;
  }

  .logo__text {
    font-size: 18px;
    letter-spacing: 0;
  }
      .header-inner {
        padding: 10px 16px;
        background-color: #fff;
    }
  .logo__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.scroll-header-wrap {
  padding: 10px 16px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
    .scroll-header .logo__text {
        font-size: 18px;
        letter-spacing: -0.05em;
    }
}

/* =======================================
SPMENU
======================================== */
.openbtn {
  position: fixed;
  right: 0;
  top: 0;
  border-radius: 8px;
  width: 55px;
  height: 55px;
  display: none;
  background: linear-gradient(90deg, #fd3d11, #fd6f11);
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}

.openbtn.active {
  background: linear-gradient(-45deg, #1b1a1a 0%, #3e3c3c 100%);
}

.openbtn.active {
  border: 1px solid #fff;
}

.openbtn {
  cursor: pointer;
  margin-left: 0;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 1.4rem;
  border-radius: 2px;
  height: 2px;
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
  left: 10px;
  width: 35px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
  left: 10px;
  width: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 28px;
  left: 10px;
  width: 25px;
}

.openbtn.active span:nth-of-type(1) {
  top: 12px;
  width: 35px;
  left: 8px;
  background-color: #fff;
  transform: translateY(5px) rotate(-160deg);
}

.openbtn.active span:nth-of-type(3) {
  top: 22px;
  left: 8px;
  width: 35px;
  background-color: #fff;
  transform: translateY(-5px) rotate(160deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active p {
  color: #fff;
}


.overlay-menu-inner {
  position: relative;
  padding: 130px 20px 20px;
}

.spNav-top-01 ul li {
  line-height: 1.5;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.spNav-top-01 ul {
  width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
  margin-top: 22px;
}

.sp-nav-copy {
  margin-top: 60px;
  padding-bottom: 80px;
  color: #fff;
  font-size: 12px;
}

.overlay-menu-inner .fa-angle-right {
  padding-right: 5px;
}

.overlay-menu .tel {
  font-size: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  display: flex;
  line-height: 1;
  color: var(--blue-color);
  align-items: center;
  margin-top: 30px;
}

.overlay-menu .tel-text {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-left: 5px;
  padding: 0;
}

.overlay-menu .tel-icon {
  width: 30px;
}

.overlay-menu .tel a {
  display: block;
  font-size: 0;
  line-height: 1;
}

.overlay-menu {
  display: block;
  opacity: 0;
  left: 0;
  top: 0;
  transition: 0.7s;
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 1001;
  pointer-events: none;
  z-index: 1000;
}

.overlay-menu.active {
  opacity: 1;
  background: linear-gradient(90deg, #fd3d11, #fd6f11);
  transform: translate3d(0, 0, 0);
  pointer-events: all;
}

.overlay-menu-inner {
  position: relative;
  padding: 130px 28px 20px;
}

.spNav-top-01 ul li {
  border-bottom: 1px solid #fff;
}

.spNav-top-01 ul li a {
  padding-right: 30px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding: 4px 30px 4px 0;
  font-weight: 500;
  line-height: 1;
}

.spNav-top-01 ul {
  max-width: 100%;
  width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
  margin-top: 15px;
}

.sp-nav-copy {
  margin-top: 60px;
  color: #fff;
  font-size: 12px;
}

/* 初期は閉じる */
.sp-sub-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}

/* 開いた状態 */
.has-sub.is-open .sp-sub-wrap {
  max-height: 600px;
  /* サブ数が増える想定なら大きめでOK */
  opacity: 1;
  transform: translateY(0);
}

/* サブ */
.sp-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
}

.sp-sub li {
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.sp-sub a {
  display: block;
  padding: 16px 18px 16px 34px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.6;
}

.sp-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-nav>li {
  position: relative;
  padding: 0 22px;
  /* 線の左右余白を統一（ここが肝） */
}

/* 親メニューの区切り線（横線） */
.sp-nav>li::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

/* 親リンク */
.sp-nav>li>a {
  display: flex;
  align-items: center;
  padding: 26px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .06em;
}

/* 親ボタン（技術・サービス） */
.sp-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 26px 0;
  background: none;
  border: 0;

  color: #fff;
  font-weight: 800;
  font-size: 34px;
  /* 親だけ少し大きい */
  letter-spacing: .06em;
  text-align: left;

  cursor: pointer;
}

/* + アイコンを右端に揃え、見た目を少し上品に */
.sp-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .95;
}

.sp-plus::before,
.sp-plus::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
}

.sp-plus::before {
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
}

.sp-plus::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
}

.has-sub.is-open .sp-plus::after {
  opacity: 0;
}

.sp-sub-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .38s ease, opacity .25s ease, transform .25s ease;
}

.has-sub.is-open .sp-sub-wrap {
  opacity: 1;
  transform: translateY(0);
}

.sp-sub {
  list-style: none;
  margin: 0;
  padding: 10px 0 18px;
  /* 上下の空気感 */
}

.sp-sub li {
  position: relative;
  padding-left: 16px;
  /* インデント */
}

.sp-sub li::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .28);
}

.sp-sub a {
  display: block;
  padding: 16px 0;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .03em;
  opacity: .95;
}

.sp-sub a:active {
  opacity: .7;
}

.has-sub.is-open>.sp-btn {
  padding-bottom: 18px;
}

.sp-nav>li::after {
  content: none !important;
}

.spNav-top-01 ul li.active a {
  color: #f2aa98;
}

/* 2) 既存の li マージンがサブにも効くのを止める */
.spNav-top-01 .sp-sub li {
  margin-top: 0 !important;
  padding-bottom: 0;
}

.spNav-top-01 .has-sub {
  margin-top: 25px;
  /* 親（技術・サービス）だけ既存と同じ間隔 */
}

/* 3) 既存の “右の丸矢印背景” はサブに要らないので消す */
.spNav-top-01 .sp-sub a {
  background-image: none !important;
  padding-right: 0 !important;
}

/* 4) 親（技術・サービス）のボタンは既存のaと同じ行間・サイズ感に合わせる */
.spNav-top-01 .sp-btn {
  padding: 4px 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

/* 5) 親の “＋/−” を右上の矢印と同じ位置に寄せる */
.spNav-top-01 .sp-plus {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  margin-top: 2px;
}

.spNav-top-01 .sp-plus::before {
  width: 16px !important;
}

.spNav-top-01 .sp-plus::after {
  height: 16px !important;
}

.spNav-top-01 .sp-sub {
  padding: 0 0 6px !important;
}

.spNav-top-01 .sp-sub a {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  padding: 12px 0 12px 16px !important;
  /* インデント */
  opacity: .95;
}

/* 7) サブの線は薄く（border-topではなく border-bottom に統一して見た目を揃える） */
.spNav-top-01 .sp-sub li {
  border-top: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .25) !important;
}

/* 8) 開いてるときの余白（詰まり回避） */
.spNav-top-01 .has-sub.is-open .sp-btn {
  padding-bottom: 10px !important;
}


/* サブの線を完全に消す */
.spNav-top-01 .sp-sub li {
  border: 0 !important;
}

.spNav-top-01 .sp-sub li::after {
  content: none !important;
}

/* 余白だけで階層を表現 */
.spNav-top-01 .sp-sub {
  padding: 6px 0 10px !important;
}

.spNav-top-01 .sp-sub a {
  padding: 12px 0 12px 0 !important;
  /* 左インデント */
  font-size: 16px !important;
  line-height: 1.5 !important;
  opacity: .95;
}

/* サブが親に食い込まないように少し間を空ける */
.spNav-top-01 .has-sub.is-open .sp-sub-wrap {
  margin-top: 6px;
}

#sp-menu .p-mv__copy {
  max-width: 200px;
  margin-left: auto;
  position: static;
  bottom: 0;
}

.overlay-menu {
  padding-bottom: 0;
}

.sp-nav-copy {
  padding-bottom: 30px;
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 1060px) {
  .openbtn {
    top: 23px;
    right: 30px;
    display: block;
  }
  .page.openbtn {
    top: 30px;
    right: 30px;
    display: block;
  }

  .openbtn p {
    font-size: 11px;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding-left: 1px;
    font-weight: 500;
    margin-top: 36px;
  }
}
@media (max-width: 991px) {
  .page.openbtn {
    top: 30px;
    right: 30px;
    display: block;
  }


}
@media (max-width: 480px) {
  .openbtn {
    top: 17px;
    right: 25px;
    display: block;
  }
  .page.openbtn {
    top: 18px;
    right: 25px;
    display: block;
  }

}
/* =======================================
  Contact
======================================= */
.contact-area {
  /* ページ背景に合わせる */
  padding: 0;
  /* 下の余白はお好みで */
  z-index: 3;
  position: relative;
}

/* 外の黒枠：1680px */
.contact-frame {
  max-width: 1680px;
  margin: 0 auto;
  background: #1b1a1a;
  position: relative;
}

/* 中身：1220px */
.contact-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 120px 0 120px;
}

.contact-area .sec-ttl-box {
  margin-bottom: 60px;
}

.contact-en {
  margin: 0;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.contact-ja {
  margin: 14px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-ja::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, .8);
  display: inline-block;
}

/* 右説明文 */
.contact-lead {
  margin: 18px 0 0;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  line-height: 2;
}

/* 共通カード */
.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  min-height: 274px;
  transition: opacity .2s ease;
}

.contact-card:hover {
  opacity: .9;
}

.contact-card__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

.is-tel .contact-card__icon {
  width: 42px;
}

.is-mail .contact-card__icon {
  width: 69px;
}

.is-line .contact-card__icon {
  width: 64px;
}

.contact-card__icon img {
  display: block;
}

.contact-card__main {
  text-align: center;
  color: #fff;
}

.contact-card__tel {
  margin: 0;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-card__sub {
  margin: 6px 0 0;
  line-height: 1;
  letter-spacing: 0;
  font-size: 14px;
}

.contact-card__label {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}

.is-line .contact-card__label {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.is-line .contact-card__label .external-icon {
  line-height: 1;
  font-size: 0;
  transform: translateY(-6px);
}

/* 個別色 */
.contact-card.is-tel {
  background: #3e3c3c;
}

.contact-card.is-mail {
  background: linear-gradient(90deg, #fd3d11, #fd6f11);
}

.contact-card.is-line {
  background: rgba(255, 255, 255, .95);
}

.contact-card.is-line .contact-card__main,
.contact-card.is-line .contact-card__icon {
  color: #111;
}

.contact-area .flex-box {
  display: flex;
  gap: 80px;
}

@media (min-width: 768px) {
  .contact-cards>[class*="col-"]:not(:last-child) .contact-card {
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .contact-card.is-line {
    border-right: none;
  }
}

@media (max-width: 1380px) {
  .contact-frame {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media (max-width: 991px) {
  .contact-inner {
    padding: 80px 0 70px;
  }

  .contact-lead {
    margin-top: 18px;
  }

  .contact-cards {
    margin-top: 0;
  }

  .contact-card {
    min-height: 200px;
    margin-top: 0;
  }

  .contact-card__tel {
    margin: 0;
    line-height: 1;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0;
  }

  .contact-cards.row>* {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .contact-area .flex-box {
    display: block;
    gap: 80px;
  }

  .contact-area .sec-ttl-box {
    margin-bottom: 40px;
  }

  .contact-cards {
    margin-top: 0;
    background: transparent;
  }

  .contact-card {
    margin-top: 0;
    min-height: 150px;
  }

  .is-tel .contact-card__icon {
    width: 32px;
  }

  .is-mail .contact-card__icon {
    width: 49px;
  }

  .is-line .contact-card__icon {
    width: 44px;
  }
}

@media (max-width: 480px) {
  .contact-inner {
    padding: 60px 0;
  }
}

/* =======================================
フッター
======================================== */

.site-footer {
  background: #fff;
  padding: 120px 0 60px;
  color: #000;
}

.footer-main {
  align-items: flex-start;
}

/* 左側 */
.footer-info {
  font-size: 14px;
  line-height: 2;
}

.footer-logo a {
  cursor: pointer;
  transition: 0.7s;
}

.footer-logo a .logo__text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #000;
}

.footer-logo a:hover {
  opacity: 0.6;
}

.footer-logo img {
  width: 54px;
  height: auto;
}

.footer-company {
  margin-top: 20px;
  font-weight: 500;
}



.footer-address {
  color: #b4b4b4;
  font-size: 14px;
  margin-top: 10px;
  line-height: 22px;
}

.footer-address a {
  color: #b4b4b4;
}

.footer-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-copy {
  margin-top: 45px;
  font-size: 14px;
  color: #b4b4b4;
}

/* 右側ナビ */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 24px 50px;
  justify-content: flex-end;
}

.footer-nav-list li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.footer-nav-list a {
  position: relative;
  text-decoration: none;
  /* underline 消す */
  padding-bottom: 6px;
}

/* 下線 */
.footer-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: #fd3d11;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* hover */
.footer-nav-list a:hover::after {
  transform: scaleX(1);
}

/* 上へ戻る */
.pagetop {
  margin-top: 54px;
  font-size: 16px;
  border: 1px solid #000;
  line-height: 1;
  padding: 6px 18px;
  text-decoration: none;
  margin-left: auto;
  color: #000;
  letter-spacing: -0.04em;
}

.pagetop:hover {
  border: 1px solid #fd3d11;
  background-color: #fd3d11;
  color: #fff;
}

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

@media (max-width: 1060px) {
  .footer-logo a .logo__mark img {
    width: 50px;
  }  
  .footer-logo a .logo__text {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .site-footer {
    padding: 60px 0;
  }

  .footer-nav {
    align-items: flex-start;
    margin-top: 40px;
  }

  .footer-nav-list {
    justify-content: flex-start;
  }

  .footer-pagetop {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    padding-top: 0;
    flex-wrap: wrap;
    gap: 20px 35px;
    justify-content: center;
  }

  .footer-copy {
    font-family: "Zen Old Mincho", serif;
    margin-top: 30px;
    font-size: 14px;
    color: #b4b4b4;
  }
}
@media (max-width: 575px) {
    .footer-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        padding-top: 0;
        flex-wrap: wrap;
        gap: 20px 35px;
        justify-content: flex-start;
    }
}
@media (max-width: 480px) {
  .footer-logo a .logo__mark img {
    width: 38px;   /* サイズは調整可 */
    height: auto;
    display: block;
  }

  .footer-logo a .logo__text {
    font-size: 18px;
    letter-spacing: 0;
  }
}