@charset "UTF-8";
/* CSS変数カスタムプロパティ */

/* 色の変数 */
:root {
  /* 背景系 */
  --bg-primary: #1d4ab2;
  --bg-secondary: #ffdd03;
  --bg-light: #fff;
  --bg-dark: #000;

  /* テキスト系 */
  --text-primary: #000; /* メインの文字色 */
  --text-secondary: #1d4ab2;
  --text-accent: #ffdd03; /* アクセント文字色*/
  --text-on-light: #fff; /* 濃い背景の上に乗る文字色 */

  /* アクセント・装飾 */
  --color-vivid: #d02000;
  --color-earth: #8b4513;
  --color-alert: #e34f50;
}

/* 全体的な設定 */
html {
  height: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 16px × 0.625 = 10px */
  /* visibility: hidden; */
}
/* html.wf-active {
    visibility: visible;
  } */
body {
  min-height: 100dvh;
}
body,
input,
select,
textarea {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
    sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 2px;
  color: var(--text-main);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
.f-century {
  font-family:
    "Montserrat", "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.f-mplus {
  font-family:
    "M PLUS 1", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
    "MS PGothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.f-bebas {
  font-family: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  body,
  input,
  select,
  textarea {
    font-size: 1.6rem;
  }
}

/* モバイルメニュー開閉時の背面スクロール防止 */
body.is-fixed {
  overflow: hidden;
  height: auto;
}
/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
/* リンク */
a {
  text-decoration: none;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 問い合わせフォームで非表示にするclass */
.wpcf7-spinner {
  display: none !important;
}

/*---------------------*/
/* ヘッダー・フッター共通メニュー */
/* 追従するグローバルメニュー */
.p-nav.header-box {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  opacity: 1;
  height: auto;
  background: var(--bg-light);
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition:
    right 0.6s,
    opacity 0.6s;
}
.p-nav-inner {
  width: 100%;
  background-color: var(--bg-primary);
}
.p-navlist {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px 0;
}
.p-navlist .nav-link {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: 600;
  align-items: center;
  color: var(--text-on-light);
  transition: transform 0.3s ease;
}
.p-navlist .nav-link:hover {
  transform: translateY(-2px);
}
.p-navlist .nav-en {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-accent);
}
@media screen and (max-width: 1024px) {
  .p-navlist {
    max-width: 800px;
  }
  .p-navlist .nav-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-navlist .nav-link {
    font-size: 1.6rem;
  }
  .p-navlist .nav-en {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .p-navlist {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
  .p-navlist > .nav-item {
    min-width: 0;
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.2;
  }
  .p-navlist > *:nth-child(1),
  .p-navlist > *:nth-child(2),
  .p-navlist > *:nth-child(3) {
    grid-column: span 2;
  }
  .p-navlist > *:nth-child(4),
  .p-navlist > *:nth-child(5) {
    grid-column: span 3;
  }
  .p-navlist .nav-link {
    font-size: 1.4rem;
  }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  z-index: 999;
  position: relative;
  width: 100%;
}
.p-header {
  display: block;
  background: var(--bg-light);
}
.p-header .header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 15px 20px;
}
.p-header .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.p-header .header-title {
  max-width: 350px;
  margin-bottom: 0;
}
.header-telarea.sp-only {
  display: none;
}
.header-telarea .number {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--color-vivid);
  margin-bottom: 5px;
}
.header-telarea .number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 32px;
  background-image: url(..//images/common/icon-tel-red.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header-telarea .time {
  font-size: 1.4rem;
  text-align: right;
  font-weight: 600;
}
/* ハンバーガーメニュー */
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--bg-primary);
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
@media screen and (max-width: 1024px) {
  .p-header .header-inner {
    padding: 10px 20px;
  }
  .p-header .header-title {
    max-width: 280px;
  }
  .p-header .tel-area .number {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .p-header .header-inner {
    padding: 12px;
  }
  .p-header .header-title {
    max-width: 250px;
  }
  .top-header .tel-area {
    display: none;
  }
  .p-hamburger {
    display: block;
  }
  .p-nav.header-box {
    position: fixed;
    top: -100%;
    left: 0;
    right: auto;
    opacity: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    background: initial;
    transition:
      top 0.7s ease,
      opacity 0.7s ease;
  }
  .p-nav.header-box.is-active {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    opacity: 1;
  }
  .header-box .p-navlist {
    flex-direction: column;
    row-gap: 20px;
    padding: 30px 0;
  }
  .header-box .p-navlist > .nav-item {
    text-align: center;
  }
  .header-box .p-navlist .nav-link {
    display: inline-flex;
    min-width: 12em;
  }
  .header-telarea {
    display: none;
  }
  .header-telarea.sp-only {
    display: block;
    background-color: var(--bg-light);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 10px -1px rgba(0, 0, 0, 0.2);
    margin-top: -1px;
  }
}
@media screen and (max-width: 600px) {
  .header-box .p-navlist {
    display: flex;
    flex-direction: column;
  }
  .header-box .p-navlist .nav-link {
    font-size: 1.6rem;
  }
  .header-telarea .number {
    font-size: 2.8rem;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
}
footer .section-inner {
  width: 100%;
}
.bg-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 50px 0 30px;
  overflow: hidden;
  clip-path: inset(0);
}
.bg-wrapper .parallax-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bg-wrapper .parallax-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/footer-bk.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}
footer .logo-area {
  max-width: 400px;
  margin: 0 auto 20px;
}
footer .map-area {
  margin-bottom: 30px;
}
footer iframe {
  width: 100%;
  height: 350px;
  max-width: 1000px;
}
footer .info-area {
  color: var(--text-on-light);
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding-left: 20px;
}
footer .info-area .left {
  margin-right: 3rem;
}
footer small {
  font-size: 1.4rem;
  color: var(--text-on-light);
}
@media screen and (max-width: 1024px) {
  .bg-wrapper {
    padding: 30px 0;
  }
  footer .logo-area {
    max-width: 300px;
  }
  footer .map-area {
    margin-bottom: 10px;
  }
  footer iframe {
    height: 300px;
  }
  footer .info-area {
    padding-left: 0;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  footer small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  footer .p-nav-inner .section-inner {
    padding: 0;
  }
}
@media screen and (max-width: 430px) {
  footer .logo-area {
    max-width: 85%;
    margin: 0 auto 20px;
  }
  footer iframe {
    height: 250px;
  }
  footer .info-area li {
    line-height: 1.6;
  }
  footer .info-area .row {
    display: flex;
    flex-direction: column;
  }
}

/*---------------------*/
/* 全体共通 */
.section {
  padding-top: 50px;
  margin-bottom: 50px;
}
.bk-color {
  background-color: var(--bg-primary);
  padding-bottom: 50px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .section-inner {
    padding: 0 20px;
  }
}

/*---------------------*/
/* 共通タイトル */
.cs-header {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
}
.cs-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--bg-dark);
  transform: translateY(-50%);
  z-index: 1;
}
.cs-headerttl {
  position: relative;
  z-index: 2;
  background-color: var(--bg-light);
  padding: 0 24px;
  display: inline-block;
  font-size: 5.2rem;
  line-height: 1;
  letter-spacing: 5px;
  margin: 0;
}
.s-ttlarea {
  margin-bottom: 40px;
  text-align: center;
}
.ttlline .s-ttl {
  font-size: 3.2rem;
  color: var(--text-secondary);
  display: inline;
  padding: 0 10px;
  background: linear-gradient(transparent 60%, #ffdd03 60%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.ttlline.is-show .s-ttl {
  background-size: 100% 100%;
}
.ttlcolumn .s-ttl {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.bk-color .ttlcolumn .s-ttl {
  color: var(--text-accent);
}
.ttlcolumn .ttl-en {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff9900;
}
.bk-color .ttlcolumn .ttl-en {
  color: var(--text-on-light);
}
@media screen and (max-width: 767px) {
  .cs-headerttl {
    font-size: 4.2rem;
    letter-spacing: 4px;
    padding: 0 15px;
  }
  .s-ttlarea {
    margin-bottom: 30px;
  }
  .ttlline .s-ttl {
    font-size: 2.6rem;
  }
  .ttlcolumn .s-ttl {
    display: block;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-headerttl {
    font-size: 3.2rem;
    letter-spacing: 3px;
    padding: 0 10px;
  }
  .ttlline .s-ttl {
    font-size: 2.2rem;
  }
  .ttlcolumn .s-ttl {
    display: block;
    font-size: 2.6rem;
  }
}

/*---------------------*/
/* 共通改行 */
.br-1280,
.br-1024,
.br-960,
.br-767,
.br-600,
.br-430 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-1280 {
    display: block;
  }
  .br-none1280 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .br-1024 {
    display: block;
  }
  .br-none1024 {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .br-960 {
    display: block;
  }
  .br-none960 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br-767 {
    display: block;
  }
  .br-none767 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .br-600 {
    display: block;
  }
  .br-none600 {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .br-430 {
    display: block;
  }
  .br-none430 {
    display: none;
  }
}

/*---------------------*/
/* 共通ボタン */
.c-btnarea {
  text-align: center;
}
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 360px;
  margin: 0 auto;
  border-radius: 50px;
  font-size: 2.4rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px;
  background-color: var(--bg-primary);
  color: var(--text-on-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
}
.c-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.c-btn .arrow {
  position: absolute;
  right: 30px;
  font-size: 3rem;
  font-weight: 600;
  transition: transform 0.3s;
}
.c-btn:hover .arrow {
  transform: translateX(4px);
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 300px;
    font-size: 2rem;
  }
  .c-btn .arrow {
    right: 20px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 430px) {
  .c-btn {
    width: 280px;
    font-size: 1.8rem;
    padding: 10px;
  }
}

/*---------------------*/
/* 共通　フッターバナーリンク */
.cs-banner {
  background-color: var(--bg-dark);
}
.cs-banner .banners {
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.cs-banner .banner {
  position: relative;
  display: block;
  flex: 1;
  text-decoration: none;
  overflow: hidden;
}
.cs-banner .img-wrap {
  width: 100%;
  height: 320px;
}
.cs-banner .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cs-banner .banner:hover .img-wrap img {
  transform: scale(1.08);
}
.cs-banner .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px 15px 160px;
  box-sizing: border-box;
  color: var(--bg-light);
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  z-index: 1;
}
.cs-banner .banner.left .content {
  background-color: rgba(0, 38, 134, 0.86);
}
.cs-banner .banner.right .content {
  background-color: rgba(213, 32, 0, 0.86);
}
.cs-banner .content-icon-left {
  position: absolute;
  left: 10px;
  top: -22px;
  width: 180px;
  height: auto;
  object-fit: contain;
  z-index: -1;
}
.cs-banner .content-icon-right {
  position: absolute;
  left: 10px;
  top: -24px;
  width: 120px;
  height: auto;
  object-fit: contain;
  z-index: -1;
}
.cs-banner .text {
  font-size: 2.6rem;
  text-align: center;
  width: 100%;
}
.cs-banner .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bg-light);
  font-size: 1.4rem;
  text-align: center;
  padding-left: 4px;
}
.cs-banner .banner.left .icon {
  color: var(--bg-primary);
}
.cs-banner .banner.right .icon {
  color: var(--color-vivid);
}
@media screen and (max-width: 1024px) {
  .cs-banner .content {
    height: 60px;
    padding: 10px 20px 10px 90px;
  }
  .cs-banner .content-icon-left {
    top: 3px;
    width: 110px;
  }
  .cs-banner .content-icon-right {
    top: 3px;
    width: 70px;
  }
  .cs-banner .img-wrap {
    height: 280px;
  }
  .cs-banner .text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .cs-banner .content {
    height: 50px;
    padding: 10px 20px 10px 60px;
  }
  .cs-banner .content-icon-left {
    top: 7px;
    width: 80px;
  }
  .cs-banner .content-icon-right {
    top: 7px;
    width: 50px;
  }
  .cs-banner .img-wrap {
    height: 230px;
  }
  .cs-banner .text {
    font-size: 1.6rem;
  }
  .cs-banner .icon {
    width: 25px;
    height: 25px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .cs-banner .banners {
    flex-direction: column;
    row-gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}

/*---------------------*/
/*  共通　トライクバナーのリンク */
.cs-trikeb .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  background-color: var(--bg-dark);
  padding: 24px;
  box-sizing: border-box;
}
.cs-trikeb .flow-content {
  text-align: center;
  color: var(--text-on-light);
  z-index: 1;
}
.cs-trikeb .flow-title {
  font-size: 2.8rem;
  color: #ffcc00;
  margin-bottom: 10px;
}
.cs-trikeb .flow-text {
  font-size: 1.8rem;
  color: var(--text-accent);
}
.cs-trikeb .flow-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-height: 180%;
  width: 250px;
  height: auto;
}
.cs-trikeb .left-img {
  left: -125px;
}
.cs-trikeb .right-img {
  right: -125px;
}
@media screen and (max-width: 1024px) {
  .cs-trikeb .content {
    padding: 20px 50px;
    box-sizing: border-box;
  }
  .cs-trikeb .flow-img {
    width: 20vw;
    max-height: none;
  }
  .cs-trikeb .left-img {
    left: -20px;
  }
  .cs-trikeb .right-img {
    right: -20px;
  }
  .cs-trikeb .flow-title {
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .cs-trikeb .content {
    padding: 15px 30px;
  }
  .cs-trikeb .flow-title {
    font-size: 2.4rem;
  }
  .cs-trikeb .flow-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .cs-trikeb .flow-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-trikeb .flow-title {
    font-size: 2.2rem;
  }
  .cs-trikeb .flow-text {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
  .cs-trikeb .flow-img {
    top: 40%;
    width: 26vw;
  }
}

/* 共通　お問い合わせ cs-contact */
.cs-contact .box {
  border: 5px solid var(--bg-primary);
  padding: 40px 60px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--bg-light);
  overflow: hidden;
  box-sizing: border-box;
}
.cs-contact .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, #fffad9 52%, #ffffff 52%);
  z-index: 0;
}
.cs-contact .box > * {
  position: relative;
  z-index: 1;
}
.cs-contact .info {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-contact .pre {
  color: var(--color-vivid);
  font-size: 1.6rem;
  font-weight: bold;
}
.cs-contact .title {
  font-size: 2.6rem;
  margin: 0;
}
.cs-contact .title span {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 10px;
}
.cs-contact .tel-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-contact .tel-icon {
  width: 40px;
  height: auto;
  object-fit: contain;
}
.cs-contact .tel-num {
  font-size: 7rem;
  font-weight: 900;
  color: var(--color-vivid);
  text-decoration: none;
  line-height: 1;
}
.cs-contact .action {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}
.cs-contact .btn {
  background-color: var(--bg-primary);
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s;
  white-space: nowrap;
}
.cs-contact .btn:hover {
  background-color: var(--color-vivid);
}
.cs-contact .arrow {
  position: absolute;
  right: 30px;
  font-weight: bold;
  transition: transform 0.3s;
}
.cs-contact .btn:hover .arrow {
  transform: translateX(4px);
}
.cs-contact .note {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
}
@media screen and (max-width: 1280px) {
  .cs-contact .box {
    padding: 40px;
  }
  .cs-contact .tel-num {
    font-size: 6rem;
  }
  .cs-contact .btn {
    font-size: 2.4rem;
  }
  .cs-contact .arrow {
    position: absolute;
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .cs-contact .box {
    padding: 30px;
  }
  .cs-contact .title {
    display: flex;
    flex-direction: column;
  }
  .cs-contact .tel-num {
    font-size: 5rem;
  }
  .cs-contact .btn {
    font-size: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .cs-contact .box {
    padding: 20px;
  }
  .cs-contact .tel-icon {
    width: 30px;
  }
  .cs-contact .tel-num {
    font-size: 4.2rem;
  }
  .cs-contact .btn {
    font-size: 1.6rem;
  }
  .cs-contact .note {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cs-contact .box {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  .cs-contact .box::before {
    background: #fefce8;
    width: 100%;
    height: 60%;
  }
  .cs-contact .info,
  .cs-contact .action {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cs-contact .info {
    margin-bottom: 10px;
    gap: 5px;
  }
  .cs-contact .title {
    font-size: 20px;
  }
  .cs-contact .title span {
    display: block;
    margin: 5px 0 0 0;
    font-size: 1.6rem;
  }
  .cs-contact .tel-block {
    justify-content: center;
  }
  .cs-contact .tel-num {
    font-size: 3.6rem;
  }
  .cs-contact .action {
    margin-bottom: 10px;
  }
  .cs-contact .btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    box-sizing: border-box;
    padding: 8px 20px;
  }
  .cs-contact .note {
    margin-top: 0;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-contact .box {
    padding: 20px 12px;
  }
  .cs-contact .title span {
    font-size: 1.3rem;
  }
  .cs-contact .tel-icon {
    width: 25px;
  }
  .cs-contact .tel-num {
    font-size: 8vw;
  }
  .cs-contact .btn {
    font-size: 1.4rem;
  }
  .cs-contact .note {
    text-align: left;
    font-size: 1.2rem;
  }
  .cs-contact .note .br-960 {
    display: none;
  }
}

/*---------------------*/
/* 共通　お問い合わせリンク */
.cs-contact .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.cs-contact .c-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: var(--bg-light);
  border: 4px solid;
  padding: 30px 20px;
  box-sizing: border-box;
}
.cs-contact .c-box.tel {
  border-color: var(--color-vivid);
}
.cs-contact .c-box.mail {
  border-color: var(--bg-primary);
}
.cs-contact .c-icon {
  margin-right: 20px;
  object-fit: contain;
  height: 100%;
}
.cs-contact .c-icon img {
  width: auto;
  height: 100%;
  display: block;
}
.cs-contact .c-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.cs-contact .c-label {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.cs-contact .c-num {
  font-size: 4.5rem;
  font-weight: bold;
  color: var(--color-vivid);
  line-height: 1;
}
.cs-contact .c-text {
  font-size: 4.5rem;
  font-weight: bold;
  color: var(--text-secondary);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .cs-contact .content {
    gap: 20px;
  }
  .cs-contact .c-box {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 960px) {
  .cs-contact .content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .cs-contact .c-icon {
    max-height: initial;
    height: 70px;
    margin-right: 10px;
  }
  .cs-contact .c-num {
    font-size: 4.2rem;
  }
  .cs-contact .c-text {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-contact .c-box {
    padding: 20px 10px;
  }
  .cs-contact .c-icon {
    height: 50px;
  }
  .cs-contact .c-num {
    font-size: 3rem;
    letter-spacing: 1px;
  }
  .cs-contact .c-text {
    font-size: 3rem;
  }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ホバーするとふわっと上がる */
.hoverup {
  transition: transform 0.3s ease;
}
.hoverup:hover {
  transform: translateY(-4px);
}
