@charset "utf-8";

/*=========================================
 utility
==========================================*/
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}

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

/*=========================================
 base
==========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

/*=========================================
 page-top
==========================================*/
.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  font-size: 16px;
  padding-top: 1px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #222;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  letter-spacing: 1px;
  line-height: 1.2;
  z-index: 999;
}

.page-top.is-active {
  opacity: 1;
  visibility: visible;
}

/*=========================================
 header
==========================================*/
/* LP用：headerをrelativeに */
.lp-page #header {
  position: relative;
  z-index: 100;
}

.header {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-main {
  height: 82px;
}

.header-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header-main__logo-wrap {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 14px;
}

.logo:hover {
  opacity: 0.7;
}

.header-main__lead {
  line-height: 1.22;
  font-size: 0.79em;
}

.header__btn {
  position: relative;
  height: 82px;
  background: #da1e29;
  overflow: hidden;
  flex-shrink: 0;
}

.header__btn::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -320px;
  width: 320px;
  height: 160px;
  background: white;
  transform: rotate(-45deg);
  opacity: 0.5;
  z-index: 0;
  transition: all 0.3s ease-out;
}

.header__btn:hover::before {
  top: 100%;
  left: 100%;
}

.header__btn--link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 45px;
  color: #fefefe;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.hamburger {
  display: none;
}

/*=========================================
 gnav
==========================================*/
.gnav-first {
  border-top: solid 2px #d9d9d9;
  background: #fff;
}

.gnav__list {
  display: flex;
}

.gnav-first__list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.gnav__item:hover {
  background: #da1e29;
  transition: 0.4s;
}

.gnav__link {
  color: #000;
}

.gnav__link:hover {
  color: #fff;
}

.gnav-first__item {
  width: 100%;
  padding: 14px 0;
  text-align: center;
}

.gnav-first__item:hover {
  padding: 0;
}

.gnav-first__link {
  display: block;
  height: 100%;
  padding: 14px 0;
  border-left: solid 2px #d9d9d9;
}

.gnav-first__link--last {
  border-right: solid 2px #d9d9d9;
}

.gnav-first__link:hover {
  display: flex;
  justify-content: center;
  height: 100%;
  padding: 0;
  align-items: center;
  border: none;
}

.tb-show-btn {
  display: none;
}

.js-header {
  display: none;
}

/*=========================================
 main
==========================================*/
main {
  display: block;
}

/*=========================================
 LP hero
==========================================*/
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-hero__content {
  display: grid;
  grid-template-columns: 521px 1fr;
  grid-template-rows: auto auto auto 1fr;
  column-gap: 80px;
  row-gap: 24px;
}

.lp-hero__logo-mark {
  grid-column: 1;
  grid-row: 1;
}

.lp-hero__catchcopy {
  grid-column: 1;
  grid-row: 2;
}

.lp-hero__desc {
  grid-column: 1;
  grid-row: 3;
}

.lp-hero__register {
  grid-column: 1;
  grid-row: 4;
}

.lp-hero__mock {
  grid-column: 2;
  grid-row: 1 / -1;
}

.lp-hero__logo-mark {
  height: 32px;
  line-height: 0;
}

.lp-hero__logo-mark img {
  height: 32px;
  width: auto;
}

.lp-hero__catchcopy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-hero__catchcopy--line {
  font-size: clamp(2rem, 3.7vw, 3.375rem);
  font-weight: 900;
  color: #3ac041;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.lp-hero__catchcopy--main {
  font-size: clamp(2rem, 3.7vw, 3.375rem);
  font-weight: 900;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.lp-hero__desc {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* 登録エリア（緑背景） */
.lp-hero__register {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 0 114px;
  margin-top: 16px;
}

.lp-hero__register::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: -9999px;
  background: #3ac041;
  z-index: -1;
}

.lp-hero__register-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 153px;
}

.lp-hero__register-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.lp-register-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: #fff;
  border-radius: 100px;
  font-size: 17px;
  font-weight: bold;
  color: #3ac041;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.lp-register-btn:hover {
  opacity: 0.8;
}

.lp-register-btn__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: solid 2px #3ac041;
  border-right: solid 2px #3ac041;
  transform: rotate(45deg);
}

.lp-hero__register-note {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.lp-hero__register-sep {
  width: 0;
  height: 153px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  align-self: center;
}

.lp-hero__register-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lp-hero__register-qr-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.lp-hero__register-qr img {
  width: 105px;
  height: 105px;
  object-fit: cover;
}

/* 右側：スマホモックアップ */
.lp-hero__mock {
  position: relative;
  height: 352px;
  align-self: flex-end;
  margin-right: 24px;
}

.lp-hero__mock img {
  position: absolute;
  top: -270px;
  left: 10%;
  right: 10.3%;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
}

/*=========================================
 LP contents
==========================================*/
.lp-contents {
  padding: 112px 20px;
}

.lp-contents__inner {
  display: flex;
  flex-direction: column;
  gap: 96px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-contents__item {
  display: flex;
  gap: 80px;
  align-items: center;
}

.lp-contents__item--reverse {
  flex-direction: row;
}

.lp-contents__text {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lp-contents__title {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* 特典バッジ */
.lp-benefit-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  min-width: 60px;
}

.lp-benefit-badge::before {
  content: "";
  position: absolute;
  top: -19px;
  left: -22px;
  width: 103px;
  height: 103px;
  background: #dd1e29;
  border-radius: 50%;
}

.lp-benefit-badge__label {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.lp-benefit-badge__num {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}

.lp-contents__title-text {
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  font-weight: bold;
  color: #333;
  line-height: 1.6;
}

.lp-contents__desc {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* コンテンツ内リンクボタン */
.lp-contents-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 52px;
  background: #fff;
  border: 2px solid #3ac041;
  border-radius: 100px;
  font-size: 17px;
  font-weight: bold;
  color: #3ac041;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  align-self: flex-start;
}

.lp-contents-btn:hover {
  background: #3ac041;
  color: #fff;
}

.lp-contents-btn:hover .lp-contents-btn__arrow {
  border-color: #fff;
}

.lp-contents-btn__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: solid 2px #3ac041;
  border-right: solid 2px #3ac041;
  transform: rotate(45deg);
  transition: border-color 0.2s;
}

.lp-contents__img {
  flex: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.lp-contents__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/*=========================================
 LP CTA
==========================================*/
.lp-cta {
  padding: 0 20px 120px;
}

.lp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 80px 64px 64px;
  background: #3ac041;
  border-radius: 24px;
}

.lp-cta__body {
  display: flex;
  flex-direction: column;
  gap: 33px;
  flex: 1;
}

.lp-cta__heading {
  font-size: clamp(1.8rem, 3.1vw, 2.83rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

.lp-cta__desc {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

.lp-cta__note {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.lp-cta__note a {
  text-decoration: underline;
  color: #fff;
  display: inline;
}

.lp-cta__links {
  flex-shrink: 0;
  background: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  width: 592px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.lp-cta__links svg {
  fill: #3ac041;
}

.lp-cta__id,
.lp-hero__register-id {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #3ac041;
  text-align: center;
  white-space: nowrap;
}

.lp-hero__register-id {
  color: #fff;
}

.lp-cta__register {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  min-height: 153px;
}

.lp-cta__register-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.lp-cta__register-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #3ac041;
  text-align: center;
}

.lp-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  height: 70px;
  background: #3ac041;
  border-radius: 100px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.lp-cta-btn:hover {
  opacity: 0.8;
}

.lp-cta-btn__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.lp-cta__sep {
  width: 0;
  height: 100%;
  border-left: 1px solid #d9d9d9;
  align-self: center;
}

.lp-cta__register-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lp-cta__qr-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #3ac041;
  text-align: center;
}

.lp-cta__qr-img {
  width: 105px;
  height: 105px;
  object-fit: cover;
}

/*=========================================
 footer (contact)
==========================================*/
.footer {
  background: #272727;
  color: #fff;
}

.contact-bg {
  background: url("../images/c-contact-navi_bg.webp") no-repeat center 15%;
  background-size: 100%;
}

.contact__inner {
  position: relative;
  height: 500px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact__content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0px 0px 51px 9px rgba(160, 160, 160, 0.5);
}

.contect__heading-wrap {
  text-align: center;
}

.contact__heading {
  font-size: 2.38em;
  color: #000;
  font-weight: 500;
}

.contact__heading--sp-br {
  display: none;
}

.contact__heading-lead {
  margin-top: 13px;
  font-size: 1.44em;
  font-weight: 500;
  color: #da1e29;
}

.contact__text {
  margin-top: 17px;
  color: #000;
  line-height: 1.7;
}

.contact__btn {
  display: block;
  width: 100%;
  margin: 30px auto 0;
  border-radius: 17px;
  background: #da1e29;
  text-align: center;
}

.contact__btn-include {
  position: relative;
  overflow: hidden;
}

.contact__btn-include::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -450px;
  width: 450px;
  height: 200px;
  background: white;
  transform: rotate(-45deg);
  opacity: 0.5;
  z-index: 0;
  transition: all 0.3s ease-out;
}

.contact__btn-include:hover::before {
  top: 100%;
  left: 100%;
}

.contact__btn--link {
  display: block;
  height: 100%;
  padding: 20px 0;
  font-size: 1.16em;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.contact__btn--title {
  font-size: 1.53em;
  font-weight: bold;
}

.contact__btn--lead {
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
}

/*=========================================
 footer (hytorc navi)
==========================================*/
.hytorc__content:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.hytorc__mask {
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hytorc__link {
  color: #fff;
}

.hytorc__detail--title {
  font-size: 1.66em;
  font-weight: bold;
  line-height: 1.23;
}

.hytorc__detail--text {
  margin-top: 17px;
  line-height: 1.5;
}

.hytorc__btn {
  width: fit-content;
  margin-top: 25px;
  border-radius: 11px;
  border: solid 2px #fff;
}

.hytorc__btn--text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 75px 19px 36px;
  color: #fff;
  font-weight: bold;
}

.hytorc__btn--text::before,
.hytorc__btn--text::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 48px;
}

.hytorc__btn--text::before {
  width: 16px;
  height: 2px;
  background: #fff;
}

.hytorc__btn--text::after {
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.hytorc-navi {
  background: url(../images/c-hytorc-navi_bg.webp) no-repeat;
  background-size: cover;
}

.hytorc-navi__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 56px 0 64px 47px;
  align-items: center;
}

.hytorc-navi__main-title {
  width: 50%;
  height: 100%;
  margin-top: 17px;
  padding: 20px 0 18px 21px;
  background: #fff;
}

.hytorc-navi__main-tite--title {
  color: #000;
  font-size: 2.22em;
  font-weight: bold;
  line-height: 1.4;
}

/*=========================================
 footer (solution)
==========================================*/
.solution {
  background: #223743;
}

.solution__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 76px 0 52px;
}

.solution__heading {
  font-size: 2em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.solution__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 48px;
  margin-top: 70px;
}

.solution__item {
  width: 30%;
}

.solution__item:nth-child(2),
.solution__item:nth-child(5),
.solution__item:nth-child(8),
.solution__item:nth-child(11) {
  width: 40%;
}

.solution__item:last-child {
  width: 100%;
}

.solution__link {
  position: relative;
  padding-left: 19px;
  color: #fff;
  font-size: 1.11em;
}

.solution__link::before {
  content: "";
  position: absolute;
  top: 4.2px;
  left: 0;
  display: inline-block;
  width: 11px;
  height: 11px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.solution__link:hover {
  opacity: 0.7;
}

/*=========================================
 footer (sitemap)
==========================================*/
.footer__top {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 39px;
}

.sitemap {
  display: flex;
  gap: 0;
}

.sitemap__title-link {
  font-size: 1.15em;
  color: #fff;
}

.sitemap__title-link:hover {
  opacity: 0.7;
}

.sitemap__socket--title-br {
  display: none;
}

.accordion-btn {
  display: none;
}

.sitemap__list-wrap {
  margin-top: 50px;
  flex: 1;
  padding-right: 20px;
}

.sitemap__list-wrap--top {
  margin-top: 0;
}

.sitemap__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 13px;
  padding: 13px 0 0 8px;
}

.sitemap__item {
  display: block;
  border: solid;
  border-width: 0 1px;
  padding: 0 5px;
  margin-left: -1px;
}

.sitemap__link {
  padding: 0 22px;
  color: #fff;
}

.sitemap__link:hover {
  opacity: 0.7;
}

.sitemap__list-sp {
  display: none;
}

.footer__company-about {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 38px;
  align-items: center;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
}

.footer__logo:hover {
  opacity: 0.7;
}

.footer__logo--link {
  display: flex;
  align-items: center;
}

.company-address {
  margin-left: 21px;
  line-height: 1.38;
}

.sns {
  display: flex;
  gap: 28px;
  align-items: center;
}

.facebook {
  width: 41px;
  height: auto;
}

.youtube {
  width: 57px;
  height: auto;
}

.sns__btn:hover {
  opacity: 0.7;
}

.footer__bottom {
  height: 61px;
  color: #fff;
  background: #000;
}

.footer__bottom--inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 61px;
}

.footer__site-about {
  display: flex;
  gap: 24px;
}

.footer__site-about-text {
  color: #fff;
}

.footer__site-about-text:hover {
  opacity: 0.7;
}

.copyright {
  letter-spacing: 0.02em;
}

/*=========================================
 1100px以下
==========================================*/
/*=========================================
 1024px以下
==========================================*/
@media screen and (max-width: 1024px) {
  .header-main {
    height: 75px;
  }

  .logo__svg {
    width: 250px;
    height: auto;
  }

  .header-main__lead {
    font-size: 0.85em;
  }

  .header__btn {
    height: 75px;
  }

  .header__btn--link {
    padding: 0 25px;
    font-size: 0.91em;
  }

  .contact__content {
    right: 20px;
  }

  /* Hero */
  .lp-hero__content {
    grid-template-columns: 521fr 319fr;
    column-gap: 24px;
  }

  .lp-hero__mock img {
    top: auto;
    bottom: 110px;
    width: 90%;
  }

  /* CTA */
  .lp-cta__inner {
    flex-direction: column;
    align-items: center;
    padding: 64px 40px;
    gap: 48px;
  }

  .lp-cta__body {
    text-align: center;
    gap: 24px;
  }

  .lp-cta__links {
    width: 100%;
    max-width: 560px;
  }

  /* Solution */
  .solution__inner {
    padding: 60px 20px;
  }

  .solution__item,
  .solution__item:nth-child(2),
  .solution__item:nth-child(5),
  .solution__item:nth-child(8),
  .solution__item:nth-child(11) {
    width: 50%;
  }

  .solution__heading {
    font-size: 1.88em;
  }

  /* Footer */
  .footer__top {
    padding: 40px 20px 0;
  }

  .company-address {
    margin: 0 15px;
  }

  .sns {
    gap: 15px;
  }

  .footer__bottom {
    height: 100%;
    padding: 0 20px;
  }

  .footer__site-about {
    gap: 10px;
  }

  .footer__site-about-text {
    font-size: 0.89em;
  }

  .copyright {
    font-size: 0.8em;
  }
}

/*=========================================
 900px以下（ハンバーガーメニュー）
==========================================*/
@media screen and (max-width: 900px) {
  .lp-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .logo {
    margin: 0 0 0 20px;
  }

  .logo__svg {
    width: 220px;
  }

  .header-main {
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 99;
  }

  .header-main__lead {
    display: none;
  }

  .tb-none-btn {
    display: none;
  }

  .gnav-wrap {
    height: 0;
  }

  .gnav-wrap.is-active {
    position: fixed;
    width: 100%;
  }

  .gnav-first {
    position: fixed;
    width: 100%;
    height: calc(100vh - 75px);
    margin-top: 75px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    overflow: scroll;
    transform: translateX(105%);
    transition: transform 0.5s ease 0s;
    z-index: 998;
  }

  .gnav-first.is-active {
    transform: translateX(0);
  }

  .gnav-first__list {
    flex-direction: column;
    height: auto;
    min-height: 100%;
  }

  .gnav-first__item {
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #d9d9d9;
  }

  .gnav-first__item:last-child {
    border: none;
  }

  .gnav-first__item:hover {
    border: none;
  }

  .gnav-first__link {
    display: block;
    padding: 20px 20px;
    font-size: 1.11em;
    border-left: 0;
  }

  .gnav-first__link:hover {
    display: block;
    padding: 20px 20px;
  }

  .gnav-first__link--last {
    border: none;
  }

  .header__btn--link {
    display: block;
    padding: 20px 20px;
    font-size: 1.11em;
  }

  .tb-show-btn {
    display: block;
    height: auto;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    padding: 10px;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .hamburger-btn {
    transition: transform 0.5s ease 0s;
    width: 32px;
    height: 20px;
    display: block;
    position: relative;
  }

  .hamburger-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #5f5f5f;
    left: 0;
    transition: all 0.5s ease 0s;
  }

  .hamburger-line__top {
    top: 0;
  }
  .hamburger-line__center {
    top: 8px;
  }
  .hamburger-line__bottom {
    top: 16px;
  }

  .hamburger.is-active .hamburger-line__top {
    transform: rotate(45deg);
    top: 8px;
  }

  .hamburger.is-active .hamburger-line__center {
    display: none;
  }

  .hamburger.is-active .hamburger-line__bottom {
    transform: rotate(-45deg);
    top: 8px;
  }

  /* Contact */
  .contact__content {
    width: 65%;
    padding: 40px 20px;
  }

  .contact__heading {
    font-size: clamp(2rem, 3.5vw, 2.38rem);
  }

  .contact__heading-lead {
    font-size: clamp(1.2rem, 2.5vw, 1.44rem);
  }

  /* hytorc-navi */
  .hytorc-navi__inner {
    gap: 20px;
    padding-left: 20px;
  }

  /* Hero */
  .lp-hero__register-qr-label,
  .lp-hero__register-label {
    font-size: 18px;
  }
}

/*=========================================
 768px以下
==========================================*/
@media screen and (max-width: 768px) {
  /* Hero */
  .lp-hero {
    padding: 60px 0 0;
  }

  .lp-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .lp-hero__catchcopy--line,
  .lp-hero__catchcopy--main {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  .lp-hero__mock {
    width: 100%;
    max-width: 320px;
    height: 330px;
    margin: 60px auto 0;
  }

  .lp-hero__mock img {
    bottom: -50px;
    width: 80%;
    z-index: 1000;
  }

  .lp-hero__register {
    justify-content: center;
    gap: 24px;
  }

  .lp-hero__register::before {
    top: -200px;
  }

  .lp-hero__register-label,
  .lp-hero__register-qr-label {
    font-size: 18px;
  }

  /* Contents */
  .lp-contents {
    padding: 80px 20px;
  }

  .lp-contents__inner {
    gap: 64px;
  }

  .lp-contents__item,
  .lp-contents__item--reverse {
    flex-direction: column;
    gap: 32px;
  }

  .lp-contents__item--reverse {
    flex-direction: column-reverse;
  }

  .lp-contents__text {
    flex: none;
    width: 100%;
  }

  .lp-contents__img {
    width: 100%;
    height: 250px;
  }

  .lp-contents-btn {
    align-self: center;
  }

  /* CTA */
  .lp-cta__inner {
    padding: 48px 24px;
    border-radius: 16px;
  }

  .lp-cta__id {
    font-size: 20px;
    gap: 24px;
  }

  .lp-cta__register-label,
  .lp-cta__qr-label {
    font-size: 18px;
  }

  /* Contact */
  .contact-bg {
    background-size: cover;
  }

  .contact__content {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
  }

  /* Solution */
  .solution__inner {
    padding: 60px 20px;
  }

  .solution__list {
    margin-top: 40px;
  }

  /* sitemap */
  .sitemap {
    flex-wrap: wrap;
  }

  .sitemap__list-wrap {
    flex: 0 0 48%;
    margin-top: 30px;
    padding-right: 10px;
  }

  /* footer */
  .footer__company-about {
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px 40px;
  }

  .footer__logo-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .company-address {
    margin: 0;
    text-align: center;
  }

  .sns {
    gap: 30px;
  }

  .footer__bottom--inner {
    gap: 20px;
    flex-direction: column;
    padding: 25px 0;
    text-align: center;
    line-height: 1.2;
  }

  .footer__site-about {
    justify-content: center;
  }
}

/*=========================================
 520px以下
==========================================*/
@media screen and (max-width: 520px) {
  /* Hero */
  .lp-hero {
    padding: 40px 0 0;
  }

  .lp-hero__register {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 20px;
    margin: 16px 0 0;
  }

  .lp-hero__register-sep {
    width: 100%;
    height: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .lp-hero__register-link {
    height: auto;
    gap: 16px;
  }

  .lp-hero__register-qr {
    gap: 12px;
  }

  .lp-register-btn {
    padding: 16px 32px;
    font-size: 16px;
  }

  /* Contents */
  .lp-contents {
    padding: 60px 24px;
  }

  .lp-contents__title {
    gap: 24px;
  }

  .lp-benefit-badge__label {
    font-size: 14px;
  }

  .lp-benefit-badge__num {
    font-size: 36px;
  }

  .lp-benefit-badge::before {
    width: 80px;
    height: 80px;
    top: -12px;
    left: -11px;
  }

  .lp-contents-btn {
    padding: 16px 32px;
    font-size: 15px;
  }

  /* CTA */
  .lp-cta {
    padding: 0 16px 80px;
  }

  .lp-cta__inner {
    padding: 40px 20px;
  }

  .lp-cta__links {
    padding: 40px 20px;
  }

  .lp-cta__id {
    font-size: 16px;
    gap: 16px;
  }

  .lp-cta__register {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 24px;
  }

  .lp-cta__register-link {
    height: auto;
    gap: 16px;
  }

  .lp-cta__sep {
    width: 100%;
    height: 0;
    border-left: none;
    border-top: 1px solid #d9d9d9;
    align-self: auto;
  }

  .lp-cta__register-qr {
    gap: 12px;
  }

  .lp-cta__register-label,
  .lp-cta__qr-label {
    font-size: 16px;
  }

  /* Contact */
  .contact__inner {
    height: 430px;
  }

  .contact__content {
    width: 94%;
    padding: 20px 10px;
  }

  .contact__text {
    margin-top: 20px;
    font-size: 0.89em;
  }

  .contact__heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .contact__heading-lead {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .contact__btn {
    margin-top: 20px;
  }

  .contact__btn--title {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  .contact__btn--lead {
    margin-top: 7px;
    font-size: 0.85em;
  }

  .contact__heading--sp-br {
    display: block;
  }

  /* Solution */
  .solution__item,
  .solution__item:nth-child(2),
  .solution__item:nth-child(5),
  .solution__item:nth-child(8),
  .solution__item:nth-child(11) {
    width: 100%;
  }

  .solution__heading {
    font-size: 1.5em;
  }

  /* footer sitemap accordion */
  .accordion {
    display: block;
  }

  .sitemap__list-wrap {
    flex: none;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-bottom: solid 1px #525252;
  }

  .sitemap__title {
    position: relative;
  }

  .accordion-title {
    padding: 0.75em 20px;
  }

  .sitemap__title-link {
    width: fit-content;
  }

  .accordion-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 2.6em;
    height: 2.6em;
    cursor: pointer;
  }

  .accordion-btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.3em);
    right: calc(50% - 0.3em);
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transition: 0.3s;
    transform: rotate(135deg);
  }

  .accordion-btn.close::after {
    transform: rotate(-45deg);
  }

  .accordion-box {
    display: none;
  }

  .sitemap__list {
    margin-top: 15px;
    padding: 0 0 15px 30px;
    flex-direction: column;
  }

  .sitemap__list-sp {
    display: flex;
    flex-direction: column;
    border-bottom: solid 1px #525252;
  }

  .sitemap__item {
    margin: 0;
    padding: 0 0 16px;
    border: 0;
    width: 100%;
  }

  .sitemap__item-sp {
    padding: 0;
    border-bottom: solid 1px #525252;
  }

  .sitemap__item-sp:last-child {
    border-bottom: 0;
  }

  .sitemap__link {
    padding: 0;
  }

  .sitemap__link-sp {
    display: block;
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .footer__company-about {
    padding: 60px 20px;
  }

  .footer__svg {
    width: 250px;
  }

  .company-address {
    font-size: 0.79em;
  }

  .footer__bottom--inner {
    padding: 30px 0;
  }

  .footer__site-about {
    font-size: 0.89em;
    flex-direction: column;
  }

  .copyright {
    font-size: 0.68em;
  }

  /* hytorc navi */
  .hytorc-navi__inner {
    flex-direction: column;
    padding: 60px 20px;
  }

  .hytorc-navi__main-title {
    display: none;
  }

  .page-top {
    width: 65px;
    height: 65px;
    font-size: 0.77em;
  }
}

/*=========================================
 390px以下
==========================================*/
@media screen and (max-width: 390px) {
  .logo__svg {
    width: 190px;
  }

  .gnav-first__link {
    padding: 15px 20px;
  }

  .lp-hero__catchcopy--line,
  .lp-hero__catchcopy--main {
    font-size: 1.6rem;
  }
}

/*=========================================
LINE LPheader
==========================================*/
.hyt-new-header__logo{
	width: 21em;
}

.hyt-new-header__nav-list{
	gap: 25px;
}

.hyt-new-header__top{
	max-width: 1440px;
	margin: 0 auto;
}

@media screen and (max-width: 1350px) {
	.hyt-new-header__logo{
		width: 260px;
	}
	.hyt-new-header__nav-list{
	gap: 14px;
}

	
}