/* Main CSS */
:root {
  --color-white: #FFFFFF;
  --color-gray-100: #F9F9F9;
  --color-gray-200: #F2F2F2;
  --color-gray-300: #E6E6E6;
  --color-gray-400: #C0C0C0;
  --color-gray-500: #9E9E9E;
  --color-gray-600: #757575;
  --color-gray-700: #5A5A5A;
  --color-gray-800: #404040;
  --color-gray-900: #222222;
  --color-black: #111111;
  --color-text-light: #666666;

  /* Typography */
  --font-heading: 'Poppins', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;

  /* Spacing */
  --spacing-xs: 0.4rem;
  --spacing-s: 0.8rem;
  --spacing-m: 1.6rem;
  --spacing-l: 2.4rem;
  --spacing-xl: 3.2rem;
  --spacing-xxl: 4.8rem;
  --spacing-xxxl: 6.4rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-m);
}

.alert {
  padding: 1rem;
  text-align: center;
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
}

.alert.alert-success {
  background-color: #d1e7dd;
  color: #0a3622;
}

.alert.alert-danger {
  background-color: #f8d7da;
  color: #58151c;
}

/* Typography */
.section-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  margin-bottom: var(--spacing-m);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--color-gray-700);
  margin-bottom: var(--spacing-xl);
}

.accent {
  color: var(--color-primary);
  position: relative;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
  transform: scaleX(0.8);
  opacity: 0.5;
}

.highlight {
  background: linear-gradient(transparent 60%, var(--color-accent-light) 40%);
  font-weight: 700;
  padding: 0 4px;
}

.secound-highlight {
  font-weight: 800;
  font-size: 1.6rem;
  padding: 0 4px;
  color: black;
}
/* Layout Sections */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

section {
  padding: var(--spacing-xxxl) 0;
  position: relative;
}

/* Background Decorations */
.bg-decoration {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

/* Header */
.header {
  padding: var(--spacing-m) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-image {
  height: 60px;
  margin: -10px;
}

.header-cta-ps {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--spacing-l);
}

.nav-link {
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-medium);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.user-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.user-menu-button span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-gray-800);
  transition: all var(--transition-fast);
}

.checkbox {
  display: none;
}

.nav-list-ps {
  position: relative;
  left: none;
  top: none;
  margin: auto;
  width: auto;
  height: 100%;
  display: flex;
  display: none;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  z-index: 50;
  background: transparent;
  transition: none;
  transform: none;
}




/* Footer */
.footer {
  background-color: var(--color-gray-900);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0 var(--spacing-l);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-l);
}

.footer-top .logo-image {
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-links-title {
  font-weight: 700;
  margin-bottom: var(--spacing-m);
  color: var(--color-gray-300);
}

.footer-links-list li {
  margin-bottom: var(--spacing-s);
}

.footer-links-list a {
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--color-white);
}

.footer-social-title {
  font-weight: 700;
  margin-bottom: var(--spacing-m);
  color: var(--color-gray-300);
}

.social-icons {
  display: flex;
  gap: var(--spacing-m);
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-primary);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-gray-500);
  font-size: 1.4rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-l);
}

.footer-legal a {
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* Hero Section */
.hero {
  min-height: 650px;
  padding: var(--spacing-xxl) 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-m);
}

.hero-text {
  font-size: 2rem;
  margin-bottom: var(--spacing-l);
  color: var(--color-gray-700);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-m);
}

.hero-image {
  position: relative;
  height: 480px;
}

.card-visual {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  width: 480px;
  height: 480px;
  margin: 0 auto;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backface-visibility: hidden;
  transition: transform var(--transition-medium);
}

.card-front {
  transform: rotateY(0deg);
  transform: rotateZ(16deg);
}

.card-back {
  transform: rotateY(180deg);
}

.card-visual:hover .card-front {
  transform: rotateY(-180deg);
}

.card-visual:hover .card-back {
  transform: rotateY(0deg);
  transform: rotateZ(16deg);
}

.capsule-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.capsule {
  position: absolute;
  border-radius: var(--radius-full);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 50%, var(--color-accent) 50%);
  box-shadow: var(--shadow-md);
  background: linear-gradient(to bottom, rgba(230 243 249 / 80%) 50%, var(--color-accent) 50%);
}

.capsule-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  transform: rotate(-15deg);
}

.capsule-1 > div {
  width: 10px;
  height: 17px;
  top: 14%;
  left: 13%;
  position: absolute;
  background: rgba(230 243 249 / 80%) 50%;
  border-radius: 25px;
  transform: rotate(40deg);
}

.capsule-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 5%;
  transform: rotate(20deg);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 50%, var(--color-primary) 50%);
}

.capsule-2 > div {
  width: 11px;
  height: 17px;
  top: 63%;
  left: 17%;
  position: absolute;
  background: rgba(230 243 249 / 80%) 50%;
  border-radius: 25px;
  transform: rotate(-45deg);
}

.capsule-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 20%;
  transform: rotate(10deg);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 50%, var(--color-secondary) 50%);
}

.capsule-3 > div {
  width: 11px;
  height: 17px;
  top: 63%;
  left: 17%;
  position: absolute;
  background: rgba(230 243 249 / 80%) 50%;
  border-radius: 25px;
  transform: rotate(-45deg);
}


.section-video {
  margin-top: 4.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}
.top_video {
  width: 100%;
  max-width: 800px;
}

/* Manufacturing Steps Section */
.mfg-steps {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.mfg-steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-top: 30px;
}

.mfg-step-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 25px;
  width: calc(25% - 30px);
  min-width: 440px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mfg-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mfg-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff6b6b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.mfg-step-icon {
  margin: 15px 0 20px;
  color: #ff6b6b;
}

.mfg-step-icon-svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}




/* Contact Form Section */
.contact-section {
  padding: 60px 0;
  padding: 75px 0;
  background: linear-gradient(to right, var(--color-primary-light), var(--color-primary));
}

.section-title-contact {
  color: white;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-label.required::after {
  content: "*";
  color: #ff4d4d;
  margin-left: 4px;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s ease;
  color: #333;
}

.form-control:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}


.form-textarea {
  min-height: 150px;
  resize: vertical;
  color: #333;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  background-color: var(--color-secondary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(46, 134, 171, 0.25);
}

.submit-button:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 134, 171, 0.35);
}

button#confirm:disabled, .submit-button:disabled {
  background: #ccc;
}

.show-count {
  color: #333;
}

.contact-text {
  color: gray;
}

.ps-br {
  display: none;
}


@media (max-width: 768px) {
  .contact-section {
    /* padding: 40px 0; */
    padding: 70px 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}


@media (max-width: 991px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    margin-top: var(--spacing-xl);
  }
  
  .hero-title {
    font-size: 3.3rem;
  }

  .mfg-step-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  /* header */
  .nav-list, .header-cta {
    display: none;
  }

  .header-cta-ps {
    display: block;
  }

  .user-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    overflow: hidden;
    gap: 7px;
    background: transparent;
    transition: background-color var(--transition-fast);
  }

  .span-container,
  .checkbox {
    display: flex;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    top: 38px;
    position: fixed;
  }
  .checkbox {
    opacity: 0;
    z-index: 100;
  }
  .span-container {
    display: flex;
    flex-flow: row wrap;
    z-index: 90;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
  }
  .span-container span {
    width: 25px;
    transition: all 250ms ease-out;
    transform-origin: 0 0;
    margin: 3px;
  }
  .span-container.active span:nth-last-child(1) {
    transform: rotate(-45deg) translate(-1px, 0px);
    width: 28px;
    position: absolute;
    top: 59%;
    left: 10px;
  }
  .span-container.active span:nth-last-child(2) {
    transform: rotate(0deg) scale(0.2, 0.2);
    opacity: 0;
  }
  .span-container.active span:nth-last-child(3) {
    transform: rotate(45deg) translate(0px, -1px);
    width: 28px;
    position: absolute;
    bottom: 63%;
    left: 10px;
  }
  .navbar {
    justify-content: flex-start;
  }
  .nav .nav-list-ps {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 50;
    background: #444;
    transition: all 250ms ease-out;
    transform: translateX(100%);
    backdrop-filter: blur(50px);
    padding-top: 80px;
    background-color: rgb(206 206 206 / 95%);
    padding-left: 30px;
    gap: 15px;
    a {
        text-decoration: none;
        color: white;
        font-size: clamp(1.4rem, 2.4vw, 2.2rem);
        margin: 1rem auto;
    }
    a:hover {
        color: salmon;
    }
  }
  .nav-list-ps {
    transform: translateX(100%);
    transition: transform 250ms ease-out;
  }
  .nav-list-ps.active {
    transform: translateX(0%);
  }

  .card-visual {
    width: 300px;
    height: 300px;
  }

  .hero-content {
    align-items: flex-start;
    text-align: start;
  }

  .hero-image {
    height: 370px;
  }

  .capsule-1 {
    top: 0;
  }

  .capsule-2 {
    bottom: 24%;
  }

  .capsule-3 {
    top: 60%;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-l);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-m);
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-m);
    text-align: center;
  }
  .mfg-steps {
    padding: 60px 15px;
  }
  
  .mfg-steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .mfg-step-card {
    width: 100%;
    max-width: 350px;
    min-width: auto;
  }

  .ps-br {
    display: block;
  }
}




/* ===========================
   プライバシーポリシー
   =========================== */

/* ベース設定 */
#privacy-policy {
  max-width: 820px;           /* 読みやすい横幅 */
  margin: 0 auto;             /* 中央寄せ */
  padding: 2.5rem 1.2rem 4rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

/* 見出しレベル 2 */
#privacy-policy h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: #111;
}

/* 見出しレベル 3 */
#privacy-policy h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.3rem 0 1rem;
  padding-left: 0.6rem;
  border-left: 4px solid #ff6b00; /* ブランドアクセント色 */
}

/* 段落 */
#privacy-policy p {
  margin: 0.9rem 0;
}

/* 箇条書き */
#privacy-policy ul,
#privacy-policy ol {
  margin: 0.6rem 0 1.4rem 1.3rem;
  padding-left: 1rem;
}
#privacy-policy li {
  margin: 0.4rem 0;
  list-style-position: outside;
}

/* 住所ブロック */
#privacy-policy address {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  background: #f7f7f7;
  border-radius: 6px;
  font-style: normal;
  line-height: 1.6;
}

/* リンク */
#privacy-policy a {
  color: #ff6b00;
  text-decoration: underline;
}
#privacy-policy a:hover {
  text-decoration: none;
}

/* レスポンシブ調整 */
@media (max-width: 600px) {
  #privacy-policy {
    padding: 2rem 0.9rem 3rem;
  }
  #privacy-policy h2 {
    font-size: 1.6rem;
  }
  #privacy-policy h3 {
    font-size: 1.1rem;
  }
}


/* ===========================
   特商法表記
   =========================== */
#commerce-law {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 4rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

/* 見出しレベル 2 */
#commerce-law h2 {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: #111;
}

/* 見出しレベル 3 */
#commerce-law h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.3rem 0 1rem;
  padding-left: 0.6rem;
  border-left: 4px solid #ff6b00;  /* ブランドアクセント色 */
}

/* 段落 */
#commerce-law p {
  margin: 0.9rem 0;
}

/* 箇条書き */
#commerce-law ul {
  margin: 0.6rem 0 1.4rem 1.3rem;
  padding-left: 1rem;
}
#commerce-law li {
  margin: 0.4rem 0;
  list-style-position: outside;
}

/* リンク */
#commerce-law a {
  color: #ff6b00;
  text-decoration: underline;
}
#commerce-law a:hover {
  text-decoration: none;
}

/* レスポンシブ調整 */
@media (max-width: 600px) {
  #commerce-law {
    padding: 2rem 0.9rem 3rem;
  }
  #commerce-law h2 {
    font-size: 1.6rem;
  }
  #commerce-law h3 {
    font-size: 1.1rem;
  }
}


/* Login Section */
.login-section, .register-section {
  min-height: calc(100vh - 200px);
  padding: 60px 0;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container, .register-container {
  max-width: 400px;
  width: 90%;
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.login-container h2, .register-container h2 {
  margin-bottom: 2rem;
}

.login-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
}

.login-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #ff6b6b;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-form-group {
  position: relative;
}

.login-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.login-input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.login-input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

.submit_btn {
  text-align: center;
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #ff6b6b, #ff5252);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 107, 107, 0.2);
}

.submit_btn:hover {
  background: linear-gradient(to right, #ff5252, #ff3838);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
}

.submit_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(255, 107, 107, 0.2);
}

.login-register {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.75rem;
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-radius: 4px;
  background-color: rgba(46, 125, 50, 0.1);
}

.login-register:hover {
  background-color: rgba(46, 125, 50, 0.15);
  color: #1b5e20;
}

.forgot-password {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.75rem;
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-radius: 4px;
  background-color: rgba(255, 107, 107, 0.1);
}

.forgot-password:hover {
  background-color: rgba(255, 107, 107, 0.15);
  color: #ff5252;
}

.box-label-option {
  font-size: 1.3rem;
}


.display-block {
  display: block;
}


@media (max-width: 576px) {
  .login-section {
    padding: 40px 20px;
  }

  .login-container {
    padding: 1.5rem;
  }

  .login-title {
    font-size: 1.5rem;
  }
}



/* アカウント作成完了画面 */
.register_complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-l) var(--spacing-xxl);
  min-height: 50vh;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border: .5px solid #e5e5e5;
  border-radius: var(--radius-lg);
}

.register_complete h2 {
  font-size: xx-large;
  margin-top: var(--spacing-m);
  margin-bottom: var(--spacing-xxl);
}

.register_complete h4 {
  margin-bottom: var(--spacing-l);
}

.register_complete p {
  font-size: 1.8rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.register_complete img {
  max-width: 150px;
}

@media (max-width: 768px) {
  .register_complete h2 {
    font-size: x-large;
  }

  .register_complete p {
    font-size: 1.6rem;
  }

  .register_complete img {
    max-width: 100px;
}
}

@media (max-width: 600px) {
  .register_complete {
    margin: 0 var(--spacing-m);
    padding: 0 var(--spacing-xl);
  }
}