@charset "UTF-8";
/* =========================
  Base
========================= */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: "M PLUS 1p", sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #3A5DC1;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1, h2, h3, p {
  margin: 0;
}
h2 {
  font-size: 32px;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  font-weight: 700;
}
table {
  border-collapse: collapse;
  width: 100%;
}
section {
  padding: 80px 0;
  scroll-margin-top: 100px;
}
.reason h2::after, .consultation-items h2::after, .shop-info h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.purchase-items h2::after, .flow h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: rgba(255, 255, 255, .2);
  margin: 20px auto 0;
}
.pc-only {
  display: inline;
}
/* =========================
  Header
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0934B2;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo img {
  width: 60px;
  height: auto;
}
.header-info p:first-child {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.header-info p:last-child {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.header-tel {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.header-tel i {
  margin-right: 6px;
}
header nav ul {
  display: flex;
  gap: 20px;
}
header nav a {
  display: block;
  background: #fff;
  color: #0934B2;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
}
.hamburger {
  display: none;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger span {
  transition: .3s;
}
/* =========================
  Hero
========================= */
main {
  padding-top: 100px;
}
.hero {
  position: relative;
  min-height: 640px;
  padding: 80px 40px 40px;
  background: #0934B2;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-points {
  position: relative;
  z-index: 20;
  width: 45%;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-points img {
  width: 56px;
  height: auto;
}
.hero-points p {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .5);
}
.hero-points strong {
  color: #FF6947;
  font-size: 56px;
  font-weight: 800;
}
.hero-image {
  position: absolute;
  top: 40px;
  right: 0;
  width: 900px;
  z-index: 10;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-copy {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-copy h1, .hero-copy p {
  display: inline-block;
  background: linear-gradient(to bottom, #FEDE78 0%, #FEDE78 24%, #FFFAEB 55%, #E7C659 84%, #E7C659 100%);
  color: #0934B2;
  font-weight: 800;
  font-size: 36px;
  padding: 10px 30px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
  width: fit-content;
}
.hero-copy h1 {
  margin-bottom: 10px;
}
.hero-copy h1 span {
  display: inline;
}
/* =========================
  Reason
========================= */
.reason {
  background: #fff;
  padding: 80px 40px;
}
.reason h2 {
  color: #0934B2;
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
}
.reason-list {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.reason-card {
  flex: 1;
  padding: 40px 24px;
  border: 3px solid #59EBDB;
  background: #EEFDFB;
}
.reason-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-bottom: 20px;
}
.reason-card p {
  font-size: 16px;
}
.reason-image {
  position: relative;
  max-width: 1200px;
  height: 300px;
  margin: 0 auto;
}
.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reason-image p {
  position: absolute;
  left: 24px;
  bottom: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}
/* =========================
  Purchase Items
========================= */
.purchase-items {
  background-color: #0934B2;
  padding: 80px 40px;
  color: #fff;
  text-align: center;
}
.purchase-items h2 {
  font-size: 32px;
  margin-bottom: 60px;
}
.purchase-items > p:first-of-type {
  margin-bottom: 50px;
  font-size: 16px;
}
.purchase-items ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.purchase-items li {
  width: calc((100% - 100px)/3);
  background: rgba(255, 255, 255, 0.2);
}
.purchase-items li img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.purchase-items li p {
  font-size: 20px;
  font-weight: 700;
  padding: 12px;
}
.purchase-items > p:last-of-type {
  font-size: 16px;
}
/* =========================
  Consultation Items
========================= */
.consultation-items {
  background: #fff;
  padding: 80px 40px;
}
.consultation-items h2 {
  color: #0934B2;
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}
.consultation-lead {
  color: #0934B2;
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.consultation-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}
.consultation-image img {
  width: 400px;
  height: 470px;
  object-fit: cover;
  display: block;
}
.consultation-text {
  flex: 1;
}
.consultation-text ul {
  margin-bottom: 50px;
}
.consultation-text li {
  background: #E7FCFA;
  border: 1px solid #59EBDB;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.consultation-text p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
/* =========================
  Area Info
========================= */
.area-info {
  background: #fff;
  padding: 80px 40px;
  text-align: center;
}
.area-info h2 {
  color: #0934B2;
  font-size: 32px;
  margin-bottom: 40px;
}
.area-info h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.area-info p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
.area-info p + p {
  margin-top: 20px;
}
.area-info p {
  background: #F4F5FC;
  padding: 28px 32px;
  border-left: 6px solid #0934B2;
}
/* =========================
  Flow
========================= */
.flow {
  padding: 80px 40px;
  background: #0934B2;
}
.flow h2 {
  color: #fff;
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
}
.flow-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 70px;
  background: #fff;
  border-radius: 40px;
}
.flow-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  gap: 30px;
  position: relative;
  min-height: 200px;
}
.flow-item:not(:last-child) {
  margin-bottom: 30px;
}
.flow-number {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  background: #0934B2;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.flow-number::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 1px;
  height: 140px;
  background: #0934B2;
  transform: translateX(-50%);
}
.flow-text h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow-text p {
  font-size: 16px;
  line-height: 1.8;
}
.flow-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
/* =========================
   Shop Info
========================= */
.shop-info {
  background: #fff;
  padding: 80px 40px;
}
.shop-info h2 {
  color: #0934B2;
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
}
.shop-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}
.shop-map {
  width: 45%;
}
.shop-map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 12px;
}
.shop-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin-bottom: 20px;
}
.shop-detail {
  flex: 1;
}
.shop-detail h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
.shop-detail ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop-detail li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.shop-detail li i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0934B2;
  color: #0934B2;
  font-size: 32px;
  flex-shrink: 0;
}
.shop-detail li h4 {
  color: #0934B2;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: -3px;
}
.shop-detail li p {
  line-height: 1.8;
}
/* =========================
  Contact
========================= */
.contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0934B2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  z-index: 9999;
}
.contact-form {
  background: #FF6F3D;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid #fff;
}
.contact-line {
  background: #06C755;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fff;
}
.contact-line .bi-line {
  font-size: 28px;
}
.contact-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.contact-phone p, .contact-phone a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.sp-tel {
  display: none;
}
/* =========================
  Footer
========================= */
footer {
  background: #fff;
  text-align: center;
  color: #0934B2;
  font-size: 12px;
  padding: 80px 40px;
  margin-bottom: 100px;
}
/* =========================
  Items Page
========================= */
.items-page {
  background: #fff;
  padding: 80px 40px;
}
.items-page h1 {
  color: #0934B2;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.items-page h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.items-page > p {
  text-align: center;
  margin-bottom: 60px;
}
.items-page-list {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.items-page-list li {
  width: calc((100% - 80px) / 3);
  background: #F4F5FC;
  border-radius: 16px;
  padding: 16px;
}
.items-page-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.items-page-list h3 {
  background: rgba(255, 255, 255, .85);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  padding: 14px 8px;
  margin-top: -64px;
  position: relative;
  z-index: 1;
}
.items-page-list p {
  font-size: 16px;
  line-height: 1.8;
  padding: 24px 8px 8px;
}
/* =========================
  Method Page
========================= */
.method-page {
  background: #fff;
  padding: 80px 80px;
}
.method-page h1 {
  color: #0934B2;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.method-page h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.method-lead {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.8;
}
.method-card-list {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.method-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 2px solid #0934B2;
  border-radius: 16px;
  padding: 36px 44px;
  transition: background .3s, border-color .3s;
}
.method-card h2 {
  color: #0934B2;
  font-size: 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.method-card > p {
  margin-bottom: 44px;
}
.method-card h3 {
  color: #0934B2;
  font-size: 18px;
  margin-bottom: 10px;
}
.method-card li {
  margin-bottom: 8px;
}
.method-card li i {
  color: #0934B2;
  margin-right: 6px;
}
.method-check-list {
  margin-bottom: 44px;
}
.method-recommend {
  background: #F4F5FC;
  padding: 24px;
  margin-bottom: 40px;
}
.method-button {
  display: block;
  margin-top: auto;
  padding: 12px 24px;
  border: 3px solid #0934B2;
  border-radius: 999px;
  color: #0934B2;
  font-weight: 800;
  text-align: center;
  transition: background .3s, color .3s;
}
.method-card:hover {
  background: #EEF2FB;
}
.method-card:hover .method-button {
  background: #0934B2;
  color: #fff;
}
.method-recommend h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.method-recommend li i {
  color: #333;
}
.method-note {
  max-width: 1200px;
  margin: 0 auto 60px;
  background: #F4F5FC;
  border-radius: 16px;
  padding: 40px 48px;
}
.method-note h2 {
  color: #0934B2;
  font-size: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.method-note p {
  margin-bottom: 32px;
}
.method-note h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.method-note ul {
  margin-left: 20px;
  margin-bottom: 32px;
}
.method-note ul li {
  list-style: disc;
  margin-bottom: 6px;
}
.method-up-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.method-up-list > div {
  width: calc((100% - 24px) / 2);
  background: #fff;
  border: 1px solid #0934B2;
  padding: 24px;
}
.method-up-list h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.method-up-list p {
  margin-bottom: 0;
}
/* =========================
  Store Purchase Page
========================= */
.store-purchase-page {
  background: #fff;
  padding: 80px 40px;
}
.store-purchase-page h1 {
  color: #0934B2;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.store-purchase-page h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.store-purchase-lead {
  text-align: center;
  margin-bottom: 60px;
}
.store-flow-list {
  max-width: 1100px;
  margin: 0 auto 60px;
}
.store-flow-item {
  background: #F4F5FC;
  border-radius: 16px;
  padding: 32px 24px;
}
.store-flow-item h2 {
  color: #0934B2;
  font-size: 24px;
  border-bottom: 3px solid #0934B2;
  padding-bottom: 8px;
  margin-bottom: 32px;
}
.store-flow-item h2 span {
  display: inline-block;
  border: 2px solid #0934B2;
  border-radius: 999px;
  padding: 0 10px;
  margin-right: 10px;
  font-size: 18px;
}
.store-flow-content {
  display: flex;
  align-items: center;
  gap: 32px;
}
.store-flow-content img {
  width: 300px;
  height: 180px;
  object-fit: cover;
  display: block;
}
.store-flow-content p {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
}
.store-flow-arrow {
  width: 0;
  height: 0;
  margin: 24px auto;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 28px solid #0934B2;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .2));
}
.store-flow-message {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 60px;
}
.free-guarantee {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFF0EC;
  padding: 48px 40px;
  text-align: center;
}
.free-label {
  display: inline-block;
  background: #FFE2DC;
  color: #FF6947;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid #fff;
}
.free-guarantee h2 {
  font-size: 24px;
  margin-bottom: 28px;
}
.free-guarantee p {
  line-height: 1.8;
  margin-bottom: 40px;
}
.free-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.free-list li {
  width: 100px;
  height: 100px;
  background: #FF6947;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.free-list strong {
  font-size: 28px;
  line-height: 1.2;
}
/* =========================
  Visit Purchase Page
========================= */
.visit-area {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}
.visit-area h2 {
  color: #0934B2;
  font-size: 24px;
  margin-bottom: 24px;
}
.visit-area-box {
  border: 1px solid #0934B2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.visit-map {
  height: 360px;
  background: #ddd;
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visit-area-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 24px 20px 10px;
}
.visit-area-text p {
  font-weight: 700;
}
.visit-area-text span {
  background: #F4F5FC;
  padding: 6px 18px;
  border-radius: 999px;
}
.visit-area-note {
  padding: 10px 20px 32px;
  line-height: 1.8;
}
/* =========================
  Shop Page
========================= */
.shop-page {
  background: #fff;
  padding: 80px;
}
.shop-page h1 {
  color: #0934B2;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.shop-page h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.shop-page-content {
  max-width: 1100px;
  margin: 80px auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.shop-page-map {
  width: 45%;
}
.shop-page-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.shop-page-detail {
  flex: 1;
}
.shop-page-detail h2 {
  margin-bottom: 40px;
}
.shop-page-detail ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shop-page-detail li {
  display: flex;
  gap: 20px;
}
.shop-page-detail li i {
  width: 50px;
  height: 50px;
  border: 2px solid #0934B2;
  color: #0934B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.shop-page-detail h3 {
  color: #0934B2;
  font-size: 18px;
  margin-bottom: 4px;
}
.head-office {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.head-office::before {
  content: "";
  display: block;
  height: 1px;
  background: #0934B2;
  margin-bottom: 50px;
}
.head-office h2 {
  color: #333;
  margin-bottom: 30px;
}
.head-office h2::before, .head-office h2::after {
  content: "■";
  color: #AFC0FF;
  margin: 0 10px;
}
.head-office-lead {
  margin-bottom: 40px;
}
.head-office-card {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #AFC0FF;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
}
.head-office-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.head-office-card dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
}
.head-office-card dt {
  color: #0934B2;
  font-weight: 700;
}
/* =========================
  Contact Page
========================= */
.contact-page {
  background: #fff;
  padding: 80px 40px;
}
.contact-page h1 {
  color: #0934B2;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.contact-page h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.contact-boxes {
  width: fit-content;
  margin: 60px auto 0;
}
.contact-tel-box {
  width: 100%;
  margin: 0 0 40px;
  padding: 12px 32px;
  background: #FFF0EC;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
}
.contact-tel-box span {
  font-size: 20px;
}
.contact-tel-box a {
  font-size: 32px;
  font-weight: 800;
}
.contact-line-box {
  width: 100%;
  margin: 0 0 50px;
  padding: 12px 32px;
  background: #EDFAF0;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
}
.contact-line-box span {
  font-size: 20px;
}
.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: #06C755;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}
.contact-line-btn .bi-line {
  font-size: 24px;
}
.contact-lead {
  max-width: 1000px;
  margin: 0 auto 70px;
  line-height: 1.8;
}
.contact-form-page {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form-page label {
  display: block;
  margin-bottom: 20px;
}
.contact-form-page input[type="text"], .contact-form-page input[type="email"], .contact-form-page textarea {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 4px;
  font: inherit;
}
.contact-form-page textarea {
  height: 160px;
  resize: vertical;
}
.zip-field input {
  max-width: 300px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group p {
  margin-bottom: 8px;
}
.form-group label {
  display: inline-block;
  margin-right: 24px;
  margin-bottom: 8px;
}
.contact-form-page button {
  display: block;
  min-width: 140px;
  margin: 20px auto 0;
  padding: 12px 40px;
  border: none;
  border-radius: 999px;
  background: #FF6947;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
/* =========================
  Thanks Page
========================= */
.thanks-page {
  background: #fff;
  padding: 100px 40px;
}
.thanks-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #F4F5FC;
  border-radius: 24px;
  text-align: center;
}
.thanks-card > i {
  color: #0934B2;
  font-size: 64px;
  margin-bottom: 24px;
}
.thanks-card h1 {
  color: #0934B2;
  font-size: 36px;
  margin-bottom: 28px;
}
.thanks-card h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  background: #AFC0FF;
  margin: 20px auto 0;
}
.thanks-card p {
  line-height: 1.8;
  margin-bottom: 40px;
}
.thanks-tel {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #FFF0EC;
  padding: 12px 32px;
  border-radius: 999px;
  margin-bottom: 40px;
}
.thanks-tel span {
  font-weight: 700;
}
.thanks-tel a {
  font-size: 28px;
  font-weight: 800;
  color: #333;
}
.thanks-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 40px;
  background: #FF6947;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
}
/* =========================
  Tablet / Small PC
========================= */
@media (max-width: 1100px) {
  /* Header */
  header {
    padding: 12px 16px;
  }
  .header-logo {
    gap: 10px;
  }
  .header-logo img {
    width: 48px;
  }
  .header-info p:first-child {
    font-size: 16px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }
  .hamburger span {
    width: 22px;
    height: 2px;
    background: #0934B2;
    margin: 0 auto;
  }
  header nav {
    display: none;
  }
  header nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0934B2;
    padding: 20px;
  }
  header nav.active ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  header nav.active a {
    text-align: center;
  }
  /* Hero */
  main {
    padding-top: 72px;
  }
  .hero {
    min-height: 560px;
    padding: 60px 32px 40px;
  }
  .hero-points {
    width: 42%;
  }
  .hero-points img {
    width: 44px;
  }
  .hero-points p {
    font-size: 28px;
    white-space: nowrap;
  }
  .hero-points strong {
    font-size: 42px;
  }
  .hero-image {
    width: 720px;
  }
  .hero-copy h1, .hero-copy p {
    font-size: 26px;
    padding: 8px 24px;
    white-space: nowrap;
  }
  /* Contact */
  .contact {
    gap: 10px;
    padding: 12px;
  }
  .contact-form, .contact-line, .contact-phone {
    flex: 1;
  }
  .contact-form {
    font-size: 16px;
    padding: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    box-sizing: border-box;
  }
  .contact-line {
    font-size: 16px;
    padding: 12px;
    justify-content: center;
    height: 62px;
    box-sizing: border-box;
  }
  .contact-line .bi-line {
    font-size: 20px;
  }
  .contact-phone p {
    display: none;
  }
  .pc-tel {
    display: none;
  }
  .sp-tel {
    display: inline;
  }
  .contact-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #0934B2;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    height: 62px;
    box-sizing: border-box;
  }
}
/* =========================
  SP Responsive
========================= */
@media (max-width:768px) {
  .pc-only {
    display: none;
  }
  header {
    padding: 12px 16px;
  }
  .header-logo {
    gap: 10px;
  }
  .header-logo img {
    width: 48px;
  }
  .header-info p:first-child {
    font-size: 16px;
  }
  .header-info p:last-child {
    font-size: 10px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }
  .hamburger span {
    width: 22px;
    height: 2px;
    background: #0934B2;
    margin: 0 auto;
  }
  main {
    padding-top: 72px;
  }
  .hero {
    min-height: auto;
    padding: 32px 16px 48px;
    overflow: hidden;
  }
  .hero-points {
    position: relative;
    z-index: 30;
    width: 78%;
    margin-bottom: -160px;
  }
  .hero-points li {
    gap: 10px;
    margin-bottom: 8px;
  }
  .hero-points img {
    width: 32px;
  }
  .hero-points p {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
  }
  .hero-points strong {
    font-size: 20px;
    font-weight: 800;
  }
  .hero-image {
    position: relative;
    z-index: 10;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 28px;
  }
  .hero-image img {
    width: 100%;
    display: block;
  }
  .hero-copy {
    position: relative;
    z-index: 40;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .hero-copy h1, .hero-copy p {
    box-sizing: border-box;
    background: linear-gradient(to bottom, #FEDE78 0%, #FEDE78 24%, #FFFAEB 55%, #E7C659 84%, #E7C659 100%);
    color: #0934B2;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    clip-path: none;
  }
  .hero-copy h1 {
    width: 100%;
    font-size: 18px;
    padding: 14px 20px;
  }
  .hero-copy p {
    width: 100%;
    font-size: 16px;
    padding: 12px 18px;
  }
  .hero-copy h1 span {
    display: block;
  }
  /* Reason */
  .reason {
    padding: 60px 16px;
    margin-top: 0;
  }
  .reason h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .reason h2::after {
    width: 160px;
    height: 6px;
    margin-top: 16px;
  }
  .reason-list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .reason-card {
    padding: 24px 18px;
  }
  .reason-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .reason-card p {
    font-size: 14px;
  }
  .reason-image {
    height: 220px;
  }
  .reason-image p {
    left: 16px;
    bottom: 12px;
    font-size: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  }
  /* Purchase Items */
  .purchase-items {
    padding: 60px 16px;
  }
  .purchase-items h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .purchase-items h2::after {
    width: 160px;
    height: 6px;
    margin-top: 16px;
  }
  .purchase-items > p:first-of-type {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .purchase-items ul {
    gap: 16px;
    margin-bottom: 32px;
  }
  .purchase-items li {
    width: calc((100% - 16px) / 2);
  }
  .purchase-items li img {
    width: 100%;
    height: auto;
    display: block;
  }
  .purchase-items li p {
    font-size: 14px;
    padding: 10px 6px;
  }
  .purchase-items > p:last-of-type {
    font-size: 14px;
  }
  /* Consultation Items */
  .consultation-items {
    padding: 60px 16px;
  }
  .consultation-items h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .consultation-items h2::after {
    width: 160px;
    height: 6px;
    margin-top: 16px;
  }
  .consultation-lead {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .consultation-content {
    flex-direction: column;
    gap: 24px;
  }
  .consultation-image {
    width: 100%;
  }
  .consultation-image img {
    width: 100%;
    height: auto;
  }
  .consultation-text {
    width: 100%;
  }
  .consultation-text ul {
    margin-bottom: 24px;
  }
  .consultation-text li {
    padding: 12px;
    font-size: 14px;
  }
  .consultation-text p {
    font-size: 14px;
  }
  /* Flow */
  .flow-list {
    padding: 32px 20px;
  }
  .flow-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: auto;
  }
  .flow-item:not(:last-child) {
    margin-bottom: 32px;
  }
  .flow-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin: 0;
    font-size: 20px;
    order: 1;
  }
  .flow-number::after {
    height: 100px;
  }
  .flow-text {
    flex: 1;
    order: 2;
  }
  .flow-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .flow-text p {
    font-size: 14px;
    line-height: 1.8;
  }
  .flow-image {
    display: none;
  }
  /* Shop Info */
  .shop-info {
    padding: 60px 16px;
  }
  .shop-info h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .shop-info h2::after {
    width: 160px;
    height: 6px;
    margin-top: 16px;
  }
  .shop-content {
    flex-direction: column;
    gap: 32px;
  }
  .shop-map {
    width: 100%;
  }
  .shop-map iframe {
    height: 280px;
  }
  .shop-detail {
    width: 100%;
  }
  .shop-detail h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
  }
  .shop-detail ul {
    gap: 16px;
  }
  .shop-detail li {
    gap: 12px;
  }
  .shop-detail li i {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .shop-detail li h4 {
    font-size: 16px;
  }
  .shop-detail li p {
    font-size: 14px;
  }
  /* Contact */
  .contact {
    flex-direction: column;
    gap: 6px;
    padding: 8px 12px;
  }
  .contact-form, .contact-line, .contact-phone {
    width: 100%;
    flex: none;
    height: auto;
    min-height: unset;
  }
  .contact-form {
    font-size: 14px;
    padding: 8px;
    text-align: center;
  }
  .contact-line {
    font-size: 14px;
    padding: 8px;
    justify-content: center;
    height: auto;
  }
  .contact-line .bi-line {
    font-size: 14px;
  }
  .contact-phone p {
    display: none;
  }
  .pc-tel {
    display: none;
  }
  .sp-tel {
    display: inline;
  }
  .contact-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px;
    background: #fff;
    color: #0934B2;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    height: auto;
  }
  footer {
    margin-bottom: 130px;
  }
  /***** items-page *****/
  .items-page {
    padding: 60px 16px;
  }
  .items-page h1 {
    font-size: 32px;
  }
  .items-page-list {
    gap: 16px;
  }
  .items-page-list li {
    width: calc((100% - 16px) / 2);
    padding: 10px;
  }
  .items-page-list h3 {
    font-size: 14px;
    padding: 8px 4px;
    margin-top: -40px;
  }
  .items-page-list p {
    font-size: 12px;
    padding: 16px 4px 4px;
  }
  /***** method-page *****/
  .method-page {
    padding: 60px 16px;
    border-radius: 0;
  }
  .method-page h1 {
    font-size: 32px;
  }
  .method-page h1::after {
    width: 160px;
    height: 6px;
  }
  .method-lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .method-card-list {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .method-card {
    padding: 28px 20px;
  }
  .method-card h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .method-card > p {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .method-card h3 {
    font-size: 16px;
  }
  .method-card li {
    font-size: 14px;
  }
  .method-recommend {
    padding: 20px;
  }
  .method-note {
    padding: 28px 20px;
    margin-bottom: 40px;
  }
  .method-note h2 {
    font-size: 20px;
    align-items: flex-start;
  }
  .method-note p, .method-note li {
    font-size: 14px;
  }
  .method-up-list {
    flex-direction: column;
    gap: 16px;
  }
  .method-up-list > div {
    width: 100%;
    padding: 20px;
  }
  /***** store-purchase-page *****/
  .store-purchase-page {
    padding: 60px 16px;
  }
  .store-purchase-page h1 {
    font-size: 32px;
  }
  .store-purchase-page h1::after {
    width: 160px;
    height: 6px;
  }
  .store-purchase-lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .store-flow-item {
    padding: 24px 16px;
  }
  .store-flow-item h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .store-flow-item h2 span {
    font-size: 14px;
  }
  .store-flow-content {
    flex-direction: column;
    gap: 20px;
  }
  .store-flow-content img {
    width: 100%;
    height: auto;
  }
  .store-flow-content p {
    font-size: 14px;
  }
  .store-flow-message {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .free-guarantee {
    padding: 36px 20px;
  }
  .free-guarantee h2 {
    font-size: 22px;
  }
  .free-guarantee p {
    font-size: 14px;
    text-align: left;
  }
  .free-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .free-list li {
    width: 90px;
    height: 90px;
    font-size: 14px;
  }
  .free-list strong {
    font-size: 24px;
  }
  /*****  Visit Purchase Page *****/
  .visit-area {
    margin-bottom: 40px;
  }
  .visit-area h2 {
    font-size: 20px;
  }
  .visit-map {
    height: 240px;
  }
  .visit-area-text {
    flex-wrap: wrap;
    gap: 10px;
  }
  .visit-area-text p {
    width: 100%;
  }
  .visit-area-note {
    font-size: 14px;
  }
  /***** shop-page *****/
  .shop-page {
    padding: 60px 16px;
  }
  .shop-page h1 {
    font-size: 32px;
  }
  .shop-page h1::after {
    width: 160px;
    height: 6px;
  }
  .shop-page-content {
    flex-direction: column;
    gap: 32px;
    margin: 50px auto;
  }
  .shop-page-map {
    width: 100%;
  }
  .shop-page-map iframe {
    height: 280px;
  }
  .shop-page-detail {
    width: 100%;
  }
  .shop-page-detail h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 28px;
  }
  .shop-page-detail ul {
    gap: 16px;
  }
  .shop-page-detail li {
    gap: 12px;
  }
  .shop-page-detail li i {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .shop-page-detail h3 {
    font-size: 16px;
  }
  .shop-page-detail p {
    font-size: 14px;
  }
  .head-office {
    margin-top: 40px;
  }
  .head-office::before {
    margin-bottom: 40px;
  }
  .head-office h2 {
    font-size: 22px;
  }
  .head-office-lead {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .head-office-card {
    padding: 24px 20px;
  }
  .head-office-card h3 {
    font-size: 22px;
  }
  .head-office-card dl {
    grid-template-columns: 80px 1fr;
    gap: 10px;
  }
  .head-office-card dt, .head-office-card dd {
    font-size: 14px;
  }
  /***** contact-page *****/
  .contact-page {
    padding: 60px 16px;
  }
  .contact-page h1 {
    font-size: 32px;
  }
  .contact-page h1::after {
    width: 160px;
    height: 6px;
  }
  .contact-boxes {
    width: 100%;
  }
  .contact-tel-box {
    width: 100%;
    flex-direction: column;
    gap: 4px;
    margin: 40px auto 40px;
    padding: 16px;
  }
  .contact-tel-box span {
    font-size: 14px;
  }
  .contact-tel-box a {
    font-size: 30px;
  }
  .contact-line-box {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto 50px;
    padding: 16px;
  }
  .contact-line-box span {
    font-size: 14px;
  }
  .contact-lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .form-group label {
    display: block;
    margin-right: 0;
  }
  .zip-field input {
    max-width: 100%;
  }
  /***** thanks-page *****/
  .thanks-page {
    padding: 60px 16px;
  }
  .thanks-card {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .thanks-card > i {
    font-size: 52px;
  }
  .thanks-card h1 {
    font-size: 26px;
  }
  .thanks-card h1::after {
    width: 160px;
    height: 6px;
  }
  .thanks-card p {
    font-size: 14px;
    text-align: left;
  }
  .thanks-tel {
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
  }
  .thanks-tel span {
    font-size: 14px;
  }
  .thanks-tel a {
    font-size: 24px;
  }
  .thanks-button {
    width: 100%;
    text-align: center;
  }
}