@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');

a {
  cursor: pointer;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:hover {
  transition: 0.25s;
  opacity: 0.7;
}

a {
  opacity: 1;
  transition: 0.25s;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  margin: 0;
  overflow-x: clip;
  color: #0A1232;
  font-weight: 500;
  background-color: #fff;
}

.eng {
  font-family: "Barlow", sans-serif;
}

html {
  color: #000;
  font-family: "Noto Sans JP", serif;
}

.w-1160 {
  width: 100%;
  margin: auto;
  max-width: 1160px;
  padding-left: 0px;
  padding-right: 0px;
}
.w-1000 {
  width: 100%;
  margin: auto;
  max-width: 1000px;
  padding-left: 0px;
  padding-right: 0px;
}

section {
  width: 100%;
}

picture {
  width: 100%;
  height: auto;
  object-fit: contain;
}


picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* これはフォーム */


.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.contact-table tr {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.contact-table tr:last-of-type {
  margin-bottom: 48px;
}

.contact-table th,
.contact-table td {
  vertical-align: top;
}

.contact-table th {
  width: 260px;
  font-size: 17px;
  font-weight: 400;
}

.contact-table td {
  width: calc(100% - 260px);
}

.privacy {
  margin: 0px 0 12px;
  text-align: center;
  font-weight: 400;
  letter-spacing: .05em;
}
.privacy a{
  color: #0A1232;
  text-decoration-line: underline;   /* 下線の太さ（≈1.5～2px） */
  text-underline-offset: 0.2em;        /* ← 文字からの離し量 */
  text-decoration-skip-ink: auto;      /* 文字の交差部を綺麗に */
}

.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table input[type="tel"],
.contact-table textarea {
  width: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 16px;
  background: #EFEFEF;
  display: block;
}

.contact-table textarea {
  min-height: 160px;
  resize: vertical;
}

.req {
  color: #EF363A;
  margin-left: .35em;
}

.note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.err {
  color: #EF363A;
  font-size: 13px;
  margin-top: 6px;
}

.consent {
  display: flex;
  align-items: center;
  gap: .6em;
  justify-content: center;
  font-weight: 500;
  font-size: 17px;
  height: 25px;
}

.form-submit {
    margin-top: 47px;
}

.btn {
  background: #89D967;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 22px;
  cursor: pointer;
  transition: .25s;
  letter-spacing: .2em;
  width: 264px;
  text-align: center;
  margin: auto;
  display: block;
}

.btn:hover {
  transform: translateY(-1px)
}

.alert {
  background: #f0fff0;
  border: 1px solid #b7f0b7;
  color: #174f17;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px
}

.alert.errbox {
  background: #fff3f3;
  border-color: #f4bcbc;
  color: #7b1111
}




.main-ttl {
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  padding-left: 64px;
  position: relative;
}

/* ▶ を :before だけで描画 */
.main-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 37.04px;
  /* 幅 */
  height: 40.81px;
  /* 高さ */
  background: #E31E24;
  /* 赤 */
  /* 左辺が垂直で右が頂点の三角形 */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.section-top-message__inner .main-ttl::before {
  background: #fff;
}

.sub-ttl {
  font-size: 25px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1;
  padding-left: 64px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 66px;
  color: #fff;
}

.footer a {
  font-size: 12px;
  text-align: center;
  display: block;
  margin: auto;
  width: max-content;
  border-bottom: 1px solid #fff;
}

.footer p {
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
}

.section-top-message__inner {
  padding-top: 70px;
  padding-bottom: 180px;
}

.section-top-message {
  background-image: url(../images/bg-message.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.section-top-message__inner__text-box {
  margin-top: 54px;
  text-align: center;
}

.section-top-message__inner__text-box p {
  margin-top: 54px;
  font-size: 25px;
  letter-spacing: .05em;
  text-align: center;
  line-height: 1;
}

.section-top-message__inner__text-box p span {
  background: #dddddd;
  padding: 3px 5px;
  margin-right: 5px;
  color: #D02627;
}

.section-top-message__inner__text-box p span:last-child {
  background: #fff;
}

.section-top-about__inner {
  padding-top: 75px;
  padding-bottom: 352px;
  position: relative;
}

.section-top-about__inner picture {
  position: absolute;
  right: -64px;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-top-about__inner picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.section-top-about__inner h3.sub-ttl {
  margin-bottom: 85px;
}


.section-top-about__inner p {
  line-height: 2.5;
  font-size: 20px;
  font-weight: 400;
  padding-left: 64px;
}

.section-top-about__inner h2,
.section-top-about__inner h3 {
  color: #D02627;
  position: relative;
  z-index: 3;
}

.section-top-service {
  background-image: url(../images/bg-service.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 75px;
  padding-bottom: 135px;
}

.section-top-service h2,
.section-top-service h3 {
  color: #D02627;
}

/* 親をGridに */
.section-top-service__inner.w-1160 ul {
  position: relative;
  margin-top: -32px;
  display: grid;
  grid-template-columns: repeat(2, 500px);
  gap: 0px 110px;
  justify-content: center;
  align-items: start;
}

/* カード本体 */
.section-top-service__inner.w-1160 ul li {
  width: 500px;
  height: 500px;
  text-align: center;
  position: relative;
}

.section-top-service__inner.w-1160 ul li::before {
  width: 100%;
  height: 100%;
  top: 35px;
  background-color: #fff;
  content: "";
  z-index: 0;
  border-radius: 1000000000px;
  position: absolute;
  left: 0;
  filter: drop-shadow(0 0 30px #FFD6D2);
}


.section-top-service__inner.w-1160 ul li span.eng {
  font-size: 70px;
  text-align: center;
  padding-bottom: 12px;
  display: block;
  width: max-content;
  margin-bottom: 40px;
  border-bottom: 1.2px solid #D02627;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  color: #D02627;
  position: relative;
  z-index: 2;
}

.section-top-service__inner.w-1160 ul li h4 {
  font-weight: 500;
  color: #D02627;
  font-size: 25px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.section-top-service__inner.w-1160 ul li p {
  position: relative;
  z-index: 2;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.88;
}

/* 1個目だけ2カラムぶち抜き＋中央配置 */
.section-top-service__inner.w-1160 ul li:first-child {
  grid-column: 1 / -1;
  /* 2列をまたぐ */
  justify-self: center;
  /* 真ん中に */
}

.section-top-service__inner.w-1160 ul li:nth-child(1)::after {
  background-image: url(../images/service01.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  bottom: calc(-9px - 33px);
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 2;
}

.section-top-service__inner.w-1160 ul li:nth-child(2)::after {
  background-image: url(../images/service02.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  bottom: calc(18.68px - 33px);
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 2;
}

.section-top-service__inner.w-1160 ul li:nth-child(3)::after {
  background-image: url(../images/service03.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  bottom: calc(-16px - 33px);
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 2;
}/* 倍率のデフォルト */
.section-top-service__inner.w-1160 { --amp-scale: 1.2; }

/* ふわふわ */
.section-top-service__inner.w-1160 ul li{
  --amp: 8px;
  animation: bobY 7s cubic-bezier(.36,0,.64,1) infinite alternate;
  will-change: transform;
}

/* 個別差分 */
.section-top-service__inner.w-1160 ul li:nth-child(1){ --amp: 10px;  animation-duration:2s; animation-delay:0s; }
.section-top-service__inner.w-1160 ul li:nth-child(2){ --amp:10px;  animation-duration:2s; animation-delay:-.8s; }
.section-top-service__inner.w-1160 ul li:nth-child(3){ --amp: 10px;  animation-duration:2s; animation-delay:-1.6s; }

/* ここで倍率を掛ける */
@keyframes bobY{
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-1 * var(--amp) * var(--amp-scale, 1))); }
}

/* SPは元から控えめに（さらに1.2倍が乗る） */
@media (max-width: 768px){
  .section-top-service__inner.w-1160 ul li{ --amp: 6px; }
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce){
  .section-top-service__inner.w-1160 ul li{ animation: none; }
}
/* SPは1カラムに（任意） */
@media (max-width: 768px) {
  .section-top-service__inner.w-1160 ul {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .section-top-service__inner.w-1160 ul li {
    width: min(92vw, 500px);
    height: auto;
    /* 必要なら可変 */
    aspect-ratio: 1 / 1;
    /* 円を保つなら */
  }

  .section-top-service__inner.w-1160 ul li:first-child {
    grid-column: auto;
    justify-self: center;
  }
}


.section-top-company__inner.w-1160 {
  padding-top: 76px;
  padding-bottom: 125px;
  color: #fff;
}

.footer__wrap {
  background-image: url(../images/footer-bg-pc.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.section-top-company__inner.w-1160 .main-ttl::before {
  background: #fff;
}

.section-top-company__inner.w-1160 .sub-ttl {
  margin-bottom: 85px;
}

.section-top-company__wrap {
  display: flex;
  justify-content: space-between;
  max-width: calc(1029px + 64px);
  width: 100%;
  padding-left: 64px;
  justify-content: space-between;
}

.section-top-company__wrap table,
.section-top-company__wrap iframe {
  width: calc(50% - 40px);
}

.section-top-company__wrap iframe {
  height: 350px;
}

table.section-top-company__table {
  color: #fff;
}

table.section-top-company__table tbody {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

table.section-top-company__table tr {
  font-size: 17px;
  font-weight: 400;
  display: flex;
  line-height: 1.5;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}


table.section-top-company__table tr th {
  width: 125px;
  font-weight: 400;
  display: block;
}

table.section-top-company__table tr td {
  width: calc(100% - 165px);
}

.section-top-contact {
  background-color: #fff;
  max-width: 1340px;
  border-radius: 30px;
  padding: 37px 90px;
  margin: auto;
}

.section-top-contact .main-ttl {
  margin-bottom: 60px;
  color: #D02627;
}

.section-top-contact__inner__table {
  padding-left: 64px;
  max-width: calc(1029px + 64px);
}

.section-top-contact__inner__table>p:first-child {
  font-weight: 400;
}

.section-top-contact__inner__table>p:first-child span {
  color: #D02627;
}

section.section-top-fv {
  position: relative;
  height: 1024px;
  scroll-margin-top: 0 !important;
}

section.section-top-fv img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

section.section-top-fv .img01 {
  position: absolute;
  width: 922px;
  height: 244px;
  object-fit: contain;
  object-position: center center;
  left: 50%;
  transform: translateX(-50%);
  top: 222px;
}

section.section-top-fv .img02 {
  position: absolute;
  width: 342px;
  height: 521px;
  object-fit: contain;
  object-position: center bottom;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
}

.icon-wrap {
  max-width: 1293px;
  bottom: 117px;
  position: absolute;
  z-index: 5;
}

.icon-wrap picture {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
}

.icon-wrap {
  max-width: 1293px;
  bottom: 117px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
  --amp1: 16px;
  /* icon01 */
  --amp2: 16px;
  /* icon02 */
  --amp3: 16px;
  /* icon03 */
}

/* 共通 */
.icon-wrap picture {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
  will-change: transform;
  pointer-events: none;
  /* 任意 */
  animation-name: floatY;
  animation-duration: 3s;          /* ← 6秒 = 上3秒 + 下3秒 */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: normal;      /* ← alternate ではなく normal */
}

/* 重ね順を 1,2,3 に固定 & それぞれ速度と位相をズラす */
.icon-wrap .icon01 {
  z-index: 3;
  --amp: var(--amp1);
  animation-duration: 3s;
  animation-delay: -.3s;
}

.icon-wrap .icon02 {
  z-index: 2;
  --amp: var(--amp2);
  animation-duration: 3s;
  animation-delay: -.9s;
}

.icon-wrap .icon03 {
  z-index: 1;
  --amp: var(--amp3);
  animation-duration: 3s;
  animation-delay: -.5s;
}

.icon01 {
  display: block;
  position: relative !important;
}

@keyframes floatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(calc(-1 * var(--amp, 10px))); } /* 上に3秒 */
  100% { transform: translateY(0); }                           /* 下に3秒 */
}

/* SP は振れ幅を少し控えめに */
@media (max-width: 768px) {
  .icon-wrap {
  --amp1: 16px;
  /* icon01 */
  --amp2: 16px;
  /* icon02 */
  --amp3: 16px;
  /* icon03 */
  }

@keyframes floatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(calc(-1 * var(--amp, 10px))); } /* 上に3秒 */
  100% { transform: translateY(0); }                           /* 下に3秒 */
}
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .icon-wrap picture {
    animation: none;
  }
}



:root {
  --accent: #C82626;
  --track: #EDEDED;
}

* {
  box-sizing: border-box
}

body {
  margin: 0
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.header__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 17px 45px 24px 20px;
  display: flex;
  align-items: flex-end;
  gap: 11px;
}

.header__logo img {
  height: 28px;
  display: block;
}

.header__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.header__progress {
  height: 8px;
  background: var(--track);
  border-radius: 999px;
  overflow: hidden;
}

.header__progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width .15s linear;
  border-radius: 999px;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font: 700 14px/1.2 "M PLUS 1p", system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans JP", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header__nav a {
  color: var(--accent);
  text-decoration: none;
  padding: 0;
  position: relative;
  white-space: nowrap;
  font-size: 18px;
}

.main-offset {
  height: 95px;
}

.header__logo {
  width: 144px;
  height: auto;
}

.header__logo img {
  width: 144px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.section-top-fv__inner>picture {
  height: 100%;
  width: 100%;
  display: block;
}

.section-top-fv__inner>picture img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width:768px) {
  .header__inner {
    padding: 12px 16px 8px;
    gap: 16px;
  }

  .header__logo img {
    height: 24px
  }

  .header__nav {
    gap: 12px;
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .header__nav::-webkit-scrollbar {
    display: none
  }
}

/* 固定ヘッダーで隠れないように（JSでも設定するが保険） */
section {
  scroll-margin-top: 80px;
}
section.head__under_page {
    padding: 94px;
    background: url(../images/under-bg.jpg);
    background-size: cover;
    background-position: center top;
    color: #D02627;
}

.privacy-cont__inner.w-1000 p{
  line-height: 2;
  font-weight: 400;
}
.privacy-cont__inner.w-1000 h3{
  line-height: 2;
  font-weight: 700;
  margin-top: 60px;
  font-size: 22px;
}.privacy-cont__inner.w-1000{
  padding-top: 76px;
  padding-bottom: 76px;
}
.privacy-cont__inner.w-1000 .last{
text-align: right;
margin-top: 32px;
}

@media (max-width:1340px) {
  .section-top-contact {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width:1160px) {
  .w-1160,
  .w-1000 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-ttl {
    font-size: 56px;
    padding-left: 40px;
  }

  .sub-ttl {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1;
    padding-left: 40px;
  }

  .main-ttl::before {
    width: 18px;
    height: 24px;
  }

  .section-top-message__inner__text-box p {
    margin-top: 40px;
    font-size: 20px;
    letter-spacing: .05em;
    text-align: center;
    line-height: 1;
  }

  .section-top-message__inner__text-box {
    margin-top: 40px;
    text-align: center;
  }

  .section-top-service__inner.w-1160 ul {
    position: relative;
    margin-top: 0px;
    display: grid;
    grid-template-columns: repeat(2, 45vw);
    gap: 0px 32px;
    justify-content: center;
    align-items: start;
  }

  .section-top-service__inner.w-1160 ul li {
    width: 45vw;
    height: 45vw;
    text-align: center;
    position: relative;
  }

  .section-top-contact {
    border-radius: 20px;
    padding: 40px 40px;
    margin: auto;
  }

  .section-top-contact__inner__table {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(1029px + 80px);
  }

  .section-top-company__wrap {
    max-width: calc(1029px + 40px);
    width: 100%;
    padding-left: 40px;
  }

  .section-top-company__wrap table,
  .section-top-company__wrap iframe {
    width: calc(50% - 20px);
  }

  table.section-top-company__table tr {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    line-height: 1.5;
    flex-wrap: wrap;
    width: 100%;
    gap: 32px;
  }

  .section-top-service__inner.w-1160 ul li span.eng {
    font-size: 40px;
    padding-bottom: 12px;
    margin-bottom: 40px;
  }

  .section-top-service__inner.w-1160 ul li p {
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.88;
    font-size: 14px;
  }

  .section-top-service__inner.w-1160 ul li::before {
    top: 24px;
  }

  .section-top-service__inner.w-1160 ul li h4 {
    font-weight: 500;
    color: #D02627;
    font-size: 20px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }

  section.section-top-fv .img01 {
    position: absolute;
    width: 90vw;
    height: auto;
    object-fit: contain;
    object-position: center center;
    left: 50%;
    transform: translateX(-50%);
    top: 20vw;
  }

  section.section-top-fv .img02 {
    position: absolute;
    width: 40vw;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
  }

  section.section-top-fv {
    position: relative;
    height: 110vw;
    scroll-margin-top: 0 !important;
  }

  .icon-wrap {
    max-width: 1293px;
    bottom: 10vw;
  }
  section.head__under_page {
    padding-left: 25px;
    padding-right: 25px;
}
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.privacy-cont__inner.w-1000 ol.number > li {
    position: relative;
    counter-increment: liNum;
    line-height: 2;
    font-weight: 400;
}
.privacy-cont__inner.w-1000 ol.number > li::before {
    position: absolute;
    top: 0;
    left: -2em;
    content: "(" counter(liNum) ")";
}

.privacy-cont__inner.w-1000 ol.katakana {
    margin-top: 1em;
    padding-left: 2em;
}

.privacy-cont__inner.w-1000 ol.katakana > li {
    list-style-type: katakana;
    line-height: 2;
    font-weight: 400;
}
.privacy-cont__inner.w-1000 ol.number {
    padding-left: 2em;
}
@media (max-width:768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .header__inner {
    padding: 4px 7px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .header__logo {
    width: 96px;
    height: auto;
    margin: auto;
  }

  .header__progress {
    height: 4px;
    background: var(--track);
    border-radius: 999px;
    overflow: hidden;
  }

  .header__inner {
    gap: 0px;
  }

  .header__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    width: 100%;
  }

  .header__nav a {
    color: var(--accent);
    text-decoration: none;
    padding: 0;
    position: relative;
    white-space: nowrap;
    font-size: 10px;
  }

  .site-header {
    width: 100%;
  }

  .header__inner {
    width: 100%;
  }

  .section-top-message__inner__text-box p {
    margin-top: 40px;
    font-size: 16px;
    letter-spacing: .05em;
    text-align: left;
    line-height: 1;
  }

  .main-ttl {
    font-size: 40px;
    padding-left: 30px;
  }

  .sub-ttl {
    font-size: 15px;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1;
    padding-left: 30px;
  }

  section#ABOUT {
    overflow: hidden;
  }

  section.section-top-fv {
    position: relative;
    height: 178vw;
    scroll-margin-top: 0 !important;
  }

  .section-top-message__inner {
    padding-top: 73px;
    padding-bottom: 98px;
  }
.form-submit {
    margin-top: 18px;
}
  .section-top-message__inner__text-box p {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: .05em;
    text-align: left;
    line-height: 1;
  }

  .section-top-message__inner__text-box {
    margin-top: 62px;
    text-align: center;
    padding-left: 30px;
  }

  .section-top-about__inner picture {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: left bottom;
    object-fit: contain;
  }

  .section-top-about__inner picture img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: left bottom;
    object-fit: contain;
  }

.section-top-about__inner {
    padding-top: 75px;
    padding-bottom: 0;
    height: 205vw;
    position: relative;
}
  .section-top-about__inner p {
    line-height: 2;
    font-size: 4vw;
    font-weight: 400;
    padding-left: 0;
    position: absolute;
    z-index: 2;
    right: 14vw;
    bottom: 69vw;
  }

  .section-top-service {
    background-image: url(../images/bg-service-sp.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 54px;
    padding-bottom: calc(43px + 43px);
  }

  .section-top-service__inner.w-1160 ul li {
    width: 100vw;
    height: 100vw;
    text-align: center;
    position: relative;
  }

  .section-top-service__inner.w-1160 ul {
    position: relative;
    margin-top: 0px;
    display: grid;
    grid-template-columns: repeat(1, 100vw);
    gap: 80px;
    justify-content: center;
    align-items: start;
    margin-top: 40px;
  }

  .section-top-service__inner.w-1160 ul li h4 {
    font-weight: 500;
    color: #D02627;
    font-size: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
  }

  .section-top-service__inner.w-1160 ul li span.eng {
    font-size: 54px;
    padding-bottom: 4px;
    margin-bottom: 40px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .section-top-service__inner.w-1160 ul li:nth-child(2)::after {
    background-image: url(../images/service02.png);
    bottom: calc(-22px - 24px);
    z-index: 2;
  }

  .section-top-service__inner.w-1160 ul li:nth-child(3)::after {
    background-image: url(../images/service03.png);
    bottom: calc(-16px - 24px);
  }

  .section-top-company__wrap {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    flex-wrap: wrap;
  }

  .section-top-company__wrap iframe {
    width: 100%;
  }

  .section-top-company__wrap table {
    width: calc(100% - 60px);
    margin: auto;
  }

  table.section-top-company__table tr {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    line-height: 1.5;
    flex-wrap: wrap;
    width: 100%;
    gap: 6px;
    flex-direction: column;
  }

  table.section-top-company__table tr th,
  table.section-top-company__table tr td {
    width: 100%;
  }

  .section-top-company__inner.w-1160 .sub-ttl {
    margin-bottom: 49px;
  }

  .section-top-company__wrap iframe {
    width: 100%;
    margin-top: 24px;
  }

  .section-top-company__inner.w-1160 {
    padding-top: 54px;
    padding-bottom: 24px;
    color: #fff;
  }

  .section-top-contact {
    border-radius: 20px;
    padding: 28px 14px;
    margin: auto;
  }

  .section-top-contact__inner__table {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(1029px + 0px);
  }

  .contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }

  .section-top-contact .main-ttl {
    margin-bottom: 40px;

  }

  .section-top-contact__inner__table>p:first-child {
    font-weight: 400;
    font-size: 15px;
  }

  .contact-table tr {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 3px;
  }

  .contact-table th {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
  }

  .contact-table input[type="text"],
  .contact-table input[type="email"],
  .contact-table input[type="tel"],
  .contact-table textarea {
    width: 100%;
    padding: 6px 10px;
  }

  .contact-table td {
    width: 100%;
  }

  .contact-table tr:last-of-type {
    margin-bottom: 18px;
  }

  .privacy {
    margin: 0px 0 14px;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
  }

  .btn {
    background: #89D967;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 16px;
    cursor: pointer;
    transition: .25s;
    width: 100%;
    text-align: center;
    margin: auto;
    display: block;
    max-width: 440px;
  }

  .footer a {
    font-size: 10px;
    text-align: center;
    display: block;
    margin: auto;
    width: max-content;
    border-bottom: 1px solid #fff;
  }

  .footer p {
    font-size: 10px;
    margin-top: 10px;
    text-align: center;
  }

  .footer {
    padding-top: 32px;
    padding-bottom: 33px;
    color: #fff;
  }

  .section-top-message {
    background-image: url(../images/message-bg-sp.jpg);
  }

  .footer__wrap {
    background-image: url(../images/footer-bg-sp.jpg);
  }

  section.section-top-fv .img01 {
    width: 80vw;
    left: 50%;
    transform: translateX(-50%);
    top: 12vw;
  }

  section.section-top-fv .img02 {
    width: 60vw;
  }

  .icon-wrap {
    bottom: 24vw;
  }

.privacy-cont__inner.w-1000 p{
  line-height: 2;
  font-weight: 400;
  font-size: 12px;
}

.privacy-cont__inner.w-1000 ol.number > li {
  font-size: 12px;
}
.privacy-cont__inner.w-1000 ol.number > li::before {
  font-size: 12px;
}

.privacy-cont__inner.w-1000 ol.katakana {

  font-size: 12px;
}

.privacy-cont__inner.w-1000 ol.katakana > li {

  font-size: 12px;
}
.privacy-cont__inner.w-1000 ol.number {

  font-size: 12px;
}
.privacy-cont__inner.w-1000 h3{
  line-height: 2;
  font-weight: 700;
  margin-top: 30px;
  font-size: 18px;
}.privacy-cont__inner.w-1000{
  padding-top: 43px;
  padding-bottom: 43px;
}
.privacy-cont__inner.w-1000 .last{
text-align: right;
margin-top: 24px;
}
section.head__under_page {
    padding: 54px 25px;
    background: url(../images/under-bg-sp.jpg);
    background-size: cover;
    background-position: center top;
}

.main-offset {
  height: 62px;
}
.main-ttl::before {
    top: 9px;
    transform: translateY(0%);
    width: 20px;
    height: 22px;
}
}

/* 初期状態 */
[data-inview]{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
/* 表示状態 */
.is-inview{
  opacity: 1;
  transform: none;
}


/* ===== 20px square checkbox ===== */
:root{
  --cb-size: 20px;
  --cb-bg:   #EDEDED;   /* 塗り */
  --cb-st:   #B5B5B6;   /* 枠線（内側） */
  --cb-tick: #0A1232;   /* チェック色 */
  --cb-focus:#2A629B;   /* フォーカスリング */
}

/* リセットしてカスタム描画 */
input[type="checkbox"].cb {
  -webkit-appearance: none;
          appearance: none;
  width: var(--cb-size);
  height: var(--cb-size);
  box-sizing: border-box;
  background: var(--cb-bg);
  border: none;                      /* 外枠は使わず */
  box-shadow: inset 0 0 0 1px var(--cb-st); /* ← 内側1pxボーダー */
  border-radius: 0;                  /* 角丸不要なら0のまま */
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: box-shadow .2s, background-color .2s, transform .06s;
}

/* ホバー時：枠を少しだけ濃く */
input[type="checkbox"].cb:hover {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--cb-st) 80%, #000 20%);
}

/* チェック時：チェックマークを描画（背景画像にSVG） */
input[type="checkbox"].cb:checked {
  /* 塗りはそのまま or 少し濃くしてもOK */
  background-color: var(--cb-bg);
  background-image: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 12" fill="none" stroke="%230A1232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 6l4 4L15 0"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 9px; /* 目安 */
}

/* キーボード操作の可視リング */
input[type="checkbox"].cb:focus-visible {
  outline: 2px solid var(--cb-focus);
  outline-offset: 2px;
}

/* アクティブ時の小さな押し込み表現（任意） */
input[type="checkbox"].cb:active { transform: translateY(1px); }

/* 無効状態 */
input[type="checkbox"].cb:disabled {
  opacity: .55;
  cursor: not-allowed;
}
