@charset "UTF-8";
html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 749px) {
  html {
    scroll-padding-top: 60px;
  }
}
html body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  /* ───── ベース（PC 共通）───── */
  /* ───── ハンバーガーボタン ───── */
  /* スマホ用メディアクエリ（幅 575px 以下）------------------------------- */
  /* ───── スマホ専用 ───── */
}
html body header {
  background: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
}
html body header .header-inner {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner {
    width: 100%;
  }
}
html body header .header-inner .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
html body header .header-inner .logo img {
  width: 190px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .logo img {
    width: 120px;
    padding: 0px 10px;
  }
}
html body header .header-inner .logo p {
  font-weight: 600;
  font-size: 16px;
  margin-left: 20px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .logo p {
    display: none;
  }
}
html body header .header-inner .header-menu {
  display: flex;
}
html body header .header-inner .header-menu .menu-left {
  margin-right: 20px;
}
html body header .header-inner .header-menu .menu-left .menu-top {
  display: flex;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
  margin: 5px 0px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-left .menu-top {
    width: 48%;
    border-bottom: none;
    margin: 0px;
  }
}
html body header .header-inner .header-menu .menu-left .menu-bottom {
  display: flex;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-left .menu-bottom {
    width: 48%;
  }
}
html body header .header-inner .header-menu .menu-left .menu-title1 {
  color: #004097;
  font-weight: 600;
  margin-right: 20px;
  font-size: 12px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-left .menu-title1 {
    color: #fff;
    font-size: 14px;
  }
}
html body header .header-inner .header-menu .menu-left .menu-title2 {
  color: #00897C;
  font-weight: 600;
  margin-right: 20px;
  font-size: 12px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-left .menu-title2 {
    color: #fff;
    font-size: 14px;
  }
}
html body header .header-inner .header-menu .menu-left ul {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
html body header .header-inner .header-menu .menu-left ul li a {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-left ul li a.pc-only {
    display: none;
  }
}
html body header .header-inner .header-menu .menu-left ul li:nth-child(1) {
  min-width: 65px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-left ul li a {
    color: #fff;
  }
}
html body header .header-inner .header-menu .menu-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
html body header .header-inner .header-menu .menu-right span {
  font-size: 10px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-right {
    display: block;
  }
}
html body header .header-inner .header-menu .menu-right .dl-btn a {
  display: block;
  background: #00897C;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  text-align: center;
}
html body header .header-inner .header-menu .menu-right .shinchikubtn a {
  display: block;
  background: #1B2333;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  text-align: center;
}
html body header .header-inner .header-menu .menu-right .chukobtn a {
  display: block;
  background: #D6E3E6;
  color: #1B2333;
  padding: 5px 10px;
  font-size: 11px;
  text-align: center;
}
html body header .header-inner .header-menu .menu-right .line-add {
  margin-left: 10px;
}
html body header .header-inner .header-menu .menu-right .line-add img {
  width: 80px;
}
@media screen and (max-width: 749px) {
  html body header .header-inner .header-menu .menu-right .line-add {
    text-align: center;
  }
}
html body .header-inner {
  position: relative;
}
html body .hamburger {
  /* — 見た目 — */
  --line-w: 30px; /* ← 幅 30px に変更 */
  --line-h: 3px; /* 太さは 3px に少し太め */
  --gap: 6px;
  display: none; /* 幅 575px 以下で上書きするので PC も見えるように */
  position: absolute;
  top: 12px; /* お好みで */
  right: 18px; /* お好みで */
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  /* バー 3 本 */
  /* × ボタンへ変形 */
}
html body .hamburger span {
  display: block;
  width: var(--line-w);
  height: var(--line-h);
  margin: var(--gap) 0;
  background: #000; /* ← 黒に変更 */
  transition: 0.3s;
}
html body .hamburger.is-open span:nth-child(1) {
  transform: translateY(calc(var(--gap) + var(--line-h))) rotate(45deg);
}
html body .hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
html body .hamburger.is-open span:nth-child(3) {
  transform: translateY(calc(-1 * (var(--gap) + var(--line-h)))) rotate(-45deg);
}
html body .hamburger.is-open span {
  background: #FFF;
}
@media (max-width: 575px) {
  html body { /* ← ここで SP のみ表示に戻す */
    /* 既存の .header-menu.is-open の指定などはそのまま利用 */
  }
  html body .hamburger {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  html body {
    /* OPEN 時 */
  }
  html body .hamburger {
    display: block;
  }
  html body .header-menu {
    /* 最初は画面外に隠す */
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #0a1524; /* お好みで */
    color: #fff;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 40px 20px 40px;
    display: block !important;
    /* メニュー内リンクを縦並びに */
  }
  html body .header-menu .menu-left,
  html body .header-menu .menu-right {
    width: 100%;
  }
  html body .header-menu .menu-left {
    display: flex;
    justify-content: space-between;
  }
  html body .header-menu .menu-left .menu-title1,
  html body .header-menu .menu-left .menu-title2 {
    margin: 24px 0 12px;
    font-size: 1.2rem;
    font-weight: 600;
  }
  html body .header-menu .menu-left ul {
    margin-bottom: 32px;
  }
  html body .header-menu .menu-left ul li a {
    display: block;
    padding: 12px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  html body .header-menu .menu-left ul li a:hover {
    opacity: 0.8;
  }
  html body .header-menu .menu-right > div {
    margin-bottom: 20px;
  }
  html body .header-menu .menu-right > div a {
    display: block;
    text-align: center;
    background: #fff;
    color: #0a1524;
    padding: 14px 8px;
    border-radius: 4px;
    font-weight: 600;
  }
  html body .header-menu .menu-top {
    margin: 0px;
  }
  html body .header-menu .menu-top, html body .header-menu .menu-bottom, html body .header-menu ul {
    display: block !important;
  }
  html body .header-menu.is-open {
    transform: translateX(0);
  }
}
html body footer {
  padding-bottom: 120px;
}
@media screen and (max-width: 575px) {
  html body footer {
    padding-bottom: 110px;
  }
}
html body footer .individual a {
  display: flex;
  width: 100%;
  background: #4A4D59;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
html body footer .individual a:hover {
  opacity: 0.8;
}
html body footer .individual a span {
  font-size: 30px;
  font-weight: 600;
  border-bottom: 2px solid #FFF;
  color: #FFF;
}
html body footer .footer_bottom {
  background: #232836;
  padding: 40px;
}
@media screen and (max-width: 749px) {
  html body footer .footer_bottom {
    padding: 40px 0px;
  }
}
html body footer .footer_bottom .footer_inner {
  width: 1170px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  html body footer .footer_bottom .footer_inner {
    max-width: 100%;
  }
}
html body footer .footer_bottom .footer_logo {
  text-align: center;
  margin: 50px auto;
}
html body footer .footer-menu {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu {
    display: block;
  }
}
html body footer .footer-menu .menu-left {
  margin-right: 20px;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left {
    display: flex;
    gap: 10px;
    justify-content: space-around;
  }
}
html body footer .footer-menu .menu-left .menu-top {
  display: flex;
  border-bottom: 1px solid #FFF;
  padding-bottom: 5px;
  margin: 5px 0px;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left .menu-top {
    display: block;
    margin: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }
}
html body footer .footer-menu .menu-left .menu-bottom {
  display: flex;
  margin-bottom: 5px;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left .menu-bottom {
    display: block;
  }
}
html body footer .footer-menu .menu-left .menu-title1 {
  color: #FFF;
  font-weight: 600;
  margin-right: 40px;
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  html body footer .footer-menu .menu-left .menu-title1 {
    font-size: 12px;
  }
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left .menu-title1 {
    font-size: 16px;
  }
}
html body footer .footer-menu .menu-left .menu-title2 {
  color: #FFF;
  font-weight: 600;
  margin-right: 40px;
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  html body footer .footer-menu .menu-left .menu-title2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left .menu-title2 {
    font-size: 16px;
  }
}
html body footer .footer-menu .menu-left ul {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left ul {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  html body footer .footer-menu .menu-left ul {
    gap: 20px;
  }
}
html body footer .footer-menu .menu-left ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
}
@media screen and (max-width: 1199px) {
  html body footer .footer-menu .menu-left ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-left ul li a {
    font-size: 16px;
    font-weight: 400;
    padding-left: 15px;
    line-height: 1.8em;
  }
}
html body footer .footer-menu .menu-left ul li:nth-child(1) {
  min-width: 90px;
}
@media screen and (max-width: 1199px) {
  html body footer .footer-menu .menu-left ul li:nth-child(1) {
    min-width: auto;
  }
}
html body footer .footer-menu .menu-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-right {
    display: block;
    width: 100%;
  }
}
html body footer .footer-menu .menu-right .dl-btn a {
  display: block;
  background: #00897C;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
}
@media screen and (max-width: 749px) {
  html body footer .footer-menu .menu-right .dl-btn a {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}
html body main {
  padding-top: 80px;
}
@media screen and (max-width: 749px) {
  html body main {
    padding-top: 50px;
  }
}
html body .serif {
  font-family: "Noto Serif JP", serif;
}
html body .more_btn {
  text-align: center;
  margin: 20px auto;
}
html body .more_btn a {
  display: inline-block;
  background: url(../../images/lp/arrow_r.svg) no-repeat left center;
  background-size: contain;
  font-size: 16px;
  font-weight: 600;
  padding-left: 50px;
  color: #fff;
}
html body .footer_tel {
  color: #FFF;
  text-align: center;
}
html body .footer_tel a {
  color: #FFF;
}
html body .footer_tel a.serif {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2px;
}
html body .footer_tel a.serif::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background: url(../../images/lp/tel.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}
html body .footer_tel .tel_time {
  font-weight: 500;
  font-size: 16px;
}
html body .footer_tel a.privacy_link {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 40px 0px;
}
html body .footer_fix {
  background: #95874D;
  padding: 20px 0px;
  position: fixed;
  bottom: 0px; /* ← 初期は画面外に隠す */
  transition: transform 0.3s ease-out;
  transform: translateY(100%); /* 100% 下へオフセット */
  width: 100%;
  z-index: 99;
}
html body .footer_fix .inner {
  width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
html body .footer_fix .inner .footer_banner {
  width: 420px;
}
html body .footer_fix.is-show {
  transform: translateY(0); /* 画面内にスライドイン */
}
html body .footer_fix2 {
  background: #FFF;
  position: fixed;
  bottom: 0px; /* ← 初期は画面外に隠す */
  transition: transform 0.3s ease-out;
  transform: translateY(100%); /* 100% 下へオフセット */
  width: 100%;
  z-index: 99;
}
html body .footer_fix2 .button3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
html body .footer_fix2 .button3 div {
  border: 1px solid #000;
  padding: 10px;
  font-weight: 600;
  text-align: center;
}
html body .footer_fix2 .button3 div:nth-child(2) {
  border-left: none;
  border-right: none;
}
html body .footer_fix2 .button2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
html body .footer_fix2 .button2 div {
  border: 1px solid #000;
  font-weight: 600;
  text-align: center;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .footer_fix2 .button2 div:nth-child(1) {
  padding: 5px;
}
html body .footer_fix2 .button2 div:nth-child(1) a {
  display: block;
}
html body .footer_fix2 .button2 div:nth-child(1) a img {
  width: 100%;
}
html body .footer_fix2 .button2 div:nth-child(2) {
  border-left: none;
  padding-bottom: 5px;
  background: #02897C;
}
html body .footer_fix2.is-show {
  transform: translateY(0); /* 画面内にスライドイン */
}
html body .pc-only {
  display: none;
}
@media screen and (min-width: 576px) {
  html body .pc-only {
    display: block;
  }
}
html body .xs-only {
  display: none;
}
@media screen and (max-width: 575px) {
  html body .xs-only {
    display: block;
  }
}

/*# sourceMappingURL=lp_common.css.map */
