* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #EAF4FF;
  color: #1c2b3a;
  line-height: 1.8;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.container.narrow {
  max-width: 900px;
}


/* =========================
header
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .50);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

/* スクロール後 */
.header.scrolled {
  background: #fff;

  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  height: 92px;

  display: flex;
  align-items: center;

  gap: 40px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;

  flex-shrink: 0;
}

/* 正方形ロゴ */
.logo-icon {
  width: 58px;
  height: 58px;

  overflow: hidden;

  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト */
.logo-text {
  display: flex;
  flex-direction: column;
}

/* 店名 */
@font-face {
  font-family: "RFPG2";
  src: url("fonts/RFG2SANU.TTC") format("truetype");
}

.logo {
  font-family: "RFPG2", sans-serif;
  font-size: 28px;
  font-weight: 900;

  line-height: 1.2;
  font-weight: normal;
  letter-spacing: .05em;

  color: #e7161a;
}

/* 小さい説明 */
.logo-sub {
  font-size: 11px;

  color: #000;

  letter-spacing: .08em;

  margin-top: 4px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-left: auto;
}

.header-tel {
  font-size: 28px;
  color: #000;
  font-weight: 700;
}

.header-icon {
  width: 20px;
  height: 20px;

  object-fit: contain;
}

.header-mail,
.header-line {
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.header-mail {
  background: #0b6cff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.header-line {
  background: #06C755;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
}


/* =========================
hero
========================= */

.hero {
  padding: 160px 0 100px;

  background:
    linear-gradient(to right,
      rgba(255, 255, 255, .80),
      rgba(255, 255, 255, .4)),
    url("images/main.jpg") center/cover no-repeat;
}

.hero-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-sub {
  color: #0b6cff;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: .08em;
  line-height: 1.2;

  margin-bottom: 30px;

  color: #00359d;
  font-weight: 700;
}

.hero h1 span {
  display: inline-block;

  background: rgba(0, 53, 157, .88);

  color: #fff;

  padding: 10px 22px;

  margin-top: 12px;

  white-space: nowrap;

  box-shadow: 0 10px 25px rgba(0, 53, 157, .18);
}

.hero-desc {
  font-size: 18px;
  color: #0b6cff;
  margin-bottom: 40px;
}

/* =========================
responsive
========================= */

@media (max-width: 768px) {

  .header-inner {
    width: 95%;
    height: auto;
    padding: 12px 0;

    gap: 15px;
    flex-wrap: wrap;
  }

  .logo-wrap {
    width: 100%;
    justify-content: center;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
  }

  .logo {
    font-size: 22px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .header-contact {
    width: 100%;
    margin-left: 0;

    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;
  }

  .header-tel {
    width: 100%;

    text-align: center;
    font-size: 22px;
  }

  .header-mail,
  .header-line {
    flex: 1;
    min-width: 140px;

    padding: 12px;
    font-size: 14px;
  }

}

/* =========================
maker
========================= */

.maker-area {
  width: 100%;

  max-width: 620px;
}

.maker-inner {
  width: 100%;
  display: flex;
  align-items: center;

  gap: 30px;

  margin-top: 10px;

  flex-wrap: nowrap;

  background: rgba(255, 255, 255, .80);
  padding: 10px 20px 10px;
}


/* タイトル */

.maker-title h2 {
  font-size: 16px;

  color: #00359d;

  font-weight: 800;

  white-space: nowrap;

}


/* ロゴ */

.maker-logos {
  display: flex;
  align-items: center;
  gap: 20px;

  flex-wrap: nowrap;
}


/* ロゴ枠 */

.maker-logos img {
  width: 120px;
  height: 36px;

  object-fit: contain;

  object-position: center;

  opacity: .9;

  transition: .3s;
}

.maker-logos img:hover {
  opacity: 1;
}


/* 右画像 */

.hero-image img {
  width: 100%;

  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .15));
}


/* =========================
responsive
========================= */

@media (max-width: 980px) {
  .hero {
    padding: 180px 0 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .maker-area {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 170px 0 60px;
  }

  .hero-inner {
    width: 95%;
    gap: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h1 span {
    padding: 8px 18px;
    font-size: 32px;
  }

  .maker-inner {
    flex-direction: column;
    gap: 15px;
    padding: 12px;
  }

  .maker-logos {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .maker-logos img {
    width: calc((100% - 16px) / 3);
    max-width: 100px;
    height: 24px;
  }
}



/* =========================
section
========================= */

section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.mini-title {
  color: #0b6cff;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 900;
  color: #0d1b2a;
}

.section-title h2 span {
  font-size: 48px;
  color: #0b6cff;
}

/* =========================
contact
========================= */

.contact-cta {
  background: #fff;
  padding: 100px 0;
}

.contact-inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;

  text-align: center;
}


/* 見出し */

.contact-cta h2 {
  font-size: 40px;
  font-weight: 900;

  color: #222;

  margin-bottom: 25px;

  line-height: 1.4;
}

.contact-cta h2 span {
  font-size: 48px;
  color: #0b6cff;
}


/* サブ */

.contact-lead {
  display: inline-block;

  background: #dce8f6;

  color: #0b6cff;

  font-size: 24px;
  font-weight: 800;

  padding: 12px 36px;

  margin-bottom: 55px;
}


/* ボタン */

.contact-buttons {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;

  padding-top: 35px;

  border-top: 1px solid #d9d9d9;
}


/* 共通 */

.contact-btn {
  height: 78px;

  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  color: #fff;

  font-size: 20px;
  font-weight: 800;

  transition: .3s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.contact-btn:hover {
  transform: translateY(-5px);
}


/* アイコン */

.contact-btn img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}


/* メール */

.contact-btn.mail {
  background: linear-gradient(135deg,
      #00a8ff,
      #0b6cff);
}


/* LINE */

.contact-btn.line {
  background: linear-gradient(135deg,
      #06C755,
      #00b94f);
}


/* TEL */

.contact-btn.tel {
  border: 2px solid #0b6cff;
  color: #0b6cff;
  background: transparent;
}


/* responsive */

@media(max-width:768px) {

  .contact-cta {
    padding: 70px 0;
  }

  .contact-cta h2 {
    font-size: 34px;
  }

  .contact-lead {
    font-size: 22px;

    padding: 10px 20px;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .contact-btn {
    height: 88px;

    font-size: 22px;
  }

}

/* =========================
worry
========================= */

.worry {
  background: #f4f8fc;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.worry-card {
  background: #CFE0F3;
  padding: 50px 30px;

  border-radius: 24px;

  text-align: center;

  font-size: 24px;
  font-weight: 700;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);

  transition: .3s;
}

.worry-card:hover {
  transform: translateY(-5px);
}

/* アイコン */

.worry-card img {
  width: 64px;
  height: 64px;

  object-fit: contain;

  margin: 24px auto 0;

  display: block;

  opacity: .92;

  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .08));
}

/* =========================
solution
========================= */

.solution-box {
  display: grid;
  gap: 25px;
}

.solution-item {
  background: #fff;
  padding: 40px;

  border-left: 6px solid #0b6cff;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.solution-item h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0d1b2a;
}


/* =========================
strength
========================= */

.strength {
  background: #CFE0F3;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strength-card {
  background: #fff;
  padding: 45px 35px;

  border-radius: 24px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

  transition: .3s;
}

.strength-card:hover {
  transform: translateY(-6px);
}

.strength-number {
  font-size: 52px;
  font-weight: 900;
  color: #CFE0F3;
  margin-bottom: 15px;
}

.strength-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0d1b2a;
}


/* =========================
gallery
========================= */

.gallery {
  overflow: hidden;

  padding: 80px 0;

  background: #fff;
}


/* 横移動 */

.gallery-track {
  display: flex;

  width: max-content;

  animation:
    gallery-scroll 25s linear infinite;
}


/* 画像グループ */

.gallery-list {
  display: flex;

  gap: 20px;

  padding-right: 20px;
}


/* 画像 */

.gallery-list img {
  width: 320px;
  height: 220px;

  object-fit: cover;

  border-radius: 20px;

  flex-shrink: 0;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .08);
}


/* アニメーション */

@keyframes gallery-scroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* =========================
price
========================= */

.price {
  padding: 100px 0;

  background: #CFE0F3;
}


/* グリッド */

.price-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;
}


/* カード */

.price-card {
  position: relative;

  background: #f4f8fc;

  padding: 40px 30px;

  border-radius: 24px;

  text-align: center;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .04);

  transition: .3s;
}

.price-card:hover {
  transform: translateY(-6px);
}


/* 番号 */

.price-number {
  position: absolute;

  top: 20px;
  left: 20px;

  font-size: 18px;
  font-weight: 800;

  color: #0b6cff;

  opacity: .3;
}


/* タイトル */

.price-card h3 {
  font-size: 28px;

  margin-bottom: 25px;

  color: #0d1b2a;
}


/* 価格 */

.price-value {
  font-size: 42px;
  font-weight: 900;

  color: #0b6cff;

  margin-bottom: 18px;

  line-height: 1;
}


/* 説明 */

.price-card p {
  color: #5c6b7a;

  line-height: 1.8;

  font-size: 15px;
}


/* responsive */

@media(max-width:768px) {

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 35px 24px;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .price-value {
    font-size: 36px;
  }

}

/* =========================
flow
========================= */

.flow {
  background: #EAF4FF;
}

.flow-list {
  display: grid;
  gap: 20px;
}

.flow-item {
  background: #fff;
  padding: 30px;

  border-radius: 18px;

  font-size: 20px;
  font-weight: 700;

  display: flex;
  align-items: center;
  gap: 20px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.flow-item span {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #0b6cff;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}


/* =========================
faq
========================= */

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #EAF4FF;
  padding: 35px;
  border-radius: 20px;
}

.faq-item h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #0d1b2a;
}

/* =========================
contact-form
========================= */

.contact-form {
  padding: 80px 0;
}

.contact-form .section-title {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-form-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  display: grid;
  gap: 24px;
}

.contact-form-inner .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form-inner .form-group {
  display: grid;
  gap: 10px;
}

.contact-form-inner label {
  font-weight: 700;
  color: #1c2b3a;
}

.contact-form-inner label span {
  color: #e7161a;
  font-weight: 700;
}

.contact-form-inner input,
.contact-form-inner textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #d9d9d9;
  background: #fafbff;
  font-size: 16px;
  color: #1c2b3a;
}

.contact-form-inner textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-inner .form-actions {
  display: flex;
  justify-content: flex-end;
}

.contact-form-inner button {
  min-height: 60px;
  padding: 0 40px;
  border: none;
  border-radius: 999px;
  background: #0b6cff;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s;
}

.contact-form-inner button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 108, 255, .2);
}

.form-message {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 18px;
}

.form-message.error {
  background: #ffe7e9;
  color: #a81a2f;
  border: 1px solid #f2c1c8;
}

.form-message.success {
  background: #e8f4ff;
  color: #0b6cff;
  border: 1px solid #b7d8ff;
}

@media(max-width:768px) {
  .contact-form-inner {
    padding: 28px;
  }

  .contact-form-inner .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-inner .form-actions {
    justify-content: center;
  }
}

/* =========================
cta
========================= */

.cta {
  background:
    linear-gradient(135deg,
      #0b6cff,
      #004fc7);

  text-align: center;

  padding: 100px 0;
}

.cta h2 {
  font-size: 48px;

  color: #fff;

  margin-bottom: 20px;

  line-height: 1.4;
}

.cta-lead {
  color: rgba(255, 255, 255, .92);

  font-size: 18px;

  margin-bottom: 45px;

  line-height: 2;
}

/* =========================
shop info
========================= */

.cta-shop {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;

  background: rgba(255, 255, 255, .12);

  border: 1px solid rgba(255, 255, 255, .15);

  border-radius: 24px;

  padding: 28px;

  max-width: 620px;

  margin: auto;

  backdrop-filter: blur(10px);
}


/* ロゴ */

.cta-logo {
  width: 84px;
  height: 84px;

  flex-shrink: 0;
}

.cta-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* テキスト */

.cta-info {
  text-align: left;
}

.cta-name {
  font-family: "RFPG2", sans-serif;
  font-size: 30px;

  color: #fff;

  margin-bottom: 6px;
}

.cta-sub {
  color: rgba(255, 255, 255, .85);

  font-size: 13px;

  letter-spacing: .08em;

  margin-bottom: 14px;
}

.cta-address {
  color: rgba(255, 255, 255, .92);

  font-size: 15px;

  line-height: 1.8;
}


/* responsive */

@media(max-width:768px) {

  .cta {
    padding: 80px 0;
  }

  .cta h2 {
    font-size: 34px;
  }

  .cta-shop {
    flex-direction: column;

    text-align: center;
  }

  .cta-info {
    text-align: center;
  }

}

/* =========================
footer
========================= */

.footer {
  padding: 40px 0;
  background: #0d1b2a;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, .7);
}


/* =========================
responsive
========================= */

@media(max-width:980px) {

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  section {
    padding: 80px 0;
  }

  .header-inner {
    height: auto;
    padding: 15px 0;
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    padding-top: 180px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .worry-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }

  .cta h2 {
    font-size: 36px;
  }

}

/* =========================
thanks.php
========================= */

.thanks {
  padding: 120px 20px;
  background: #f7f9fc;
}

.thanks .container {
  max-width: 800px;
  margin: 0 auto;
}

.thanks-box {
  background: #fff;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.thanks-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.thanks h1 {
  font-size: 38px;
  font-weight: 900;
  color: #1c2b3a;
  margin-bottom: 20px;
  line-height: 1.4;
}

.thanks-lead {
  font-size: 18px;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}

.thanks-note {
  background: #f5f8ff;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
}

.thanks-note p {
  margin: 0;
  line-height: 1.8;
  color: #333;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  background: #0b6cff;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  transition: .3s;
}

.thanks-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 108, 255, .25);
}

@media (max-width: 768px) {

  .thanks {
    padding: 80px 20px;
  }

  .thanks-box {
    padding: 40px 25px;
  }

  .thanks h1 {
    font-size: 28px;
  }

  .thanks-lead {
    font-size: 16px;
  }

  .thanks-btn {
    width: 100%;
  }

}