/* 共通設定 */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  background: #f7faff;
  color: #222;
}

h1,
h2,
h3 {
  font-weight: bold;
  margin: 0 0 16px 0;
}

h2 span {
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ヘッダー */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff62;
}

.logo {
  height: 40px;
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  margin-right: 24px;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #fff;
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #fff;
}

.nav {
  padding-right: 24px;
}

.nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0 32px;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #0077c8;
}

a.contact-btn {
  background: #0077c8;
  border: 1px solid #005fa3;
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #fff;
  border: 1px solid #005fa3;
  color: #005fa3;
}

/* メインビジュアル */
.main-visual {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, #b3e0ff 0%, #eaf6ff 100%);
  /* padding-bottom: 32px; */
  height: 700px;
}

.main-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.contact .main-img {
  filter: brightness(0.7);
}

.main-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -30%);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: rgba(88, 88, 88, 0.306);
  padding: 24px 0;
}

.contact,
.main-copy {
  background: none;
}

.main-copy h1 {
  font-size: 2.2rem;
  margin-bottom: 32px;
  text-shadow: 2px 2px #333;
}

.main-copy h1 span {
  font-size: 1rem;
}

.main-copy p {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.cta-btn {
  background: #0077c8;
  color: #fff;
  padding: 12px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #005fa3;
}

/* アイコン機能一覧 */
.icon-features {
  background: #fff;
  padding: 24px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #333;
}

.icon-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.icon-track {
  display: flex;
  gap: 16px;
  animation: slideIcons 40s linear infinite;
  width: max-content;
}

.icon-track img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

@keyframes slideIcons {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-33.333% - 8px));
  }
}

/* ホバー時に一時停止 */
.icon-slider:hover .icon-track {
  animation-play-state: paused;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .icon-track {
    gap: 12px;
  }

  .icon-track img {
    width: 56px;
    height: 56px;
  }
}

/* 商品紹介 */
.product-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: linear-gradient(180deg, #fff 0%, #eaf6ff 100%);
  padding: 40px 0;
}

/* スライドショー */
.slick {
  position: relative;
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slick-slide.active {
  opacity: 1;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slick-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.slick-dot.active {
  background: #fff;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: background 0.3s;
  z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(255, 255, 255, 1);
}

.slick-prev {
  left: 16px;
}

.slick-next {
  right: 16px;
}

.product-img {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  /* display: flex;
  flex-wrap: wrap; */
  gap: 16px;
}

.product-img img {
  max-width: 120px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-info {
  min-width: 220px;
}


.product-info p {
  font-size: 1.3rem;
  font-weight: 600;
}

.buy-btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 12px;
  transition: background 0.2s;
}

.buy-btn:hover {
  background: #e67c00;
}

/* お悩み解決・特徴セクション */
.problem-features-section {
  background: linear-gradient(180deg,
      #ff6b6b 0%,
      #ff8e53 15%,
      #ffb366 30%,
      #87ceeb 45%,
      #b3e0ff 60%,
      #e0f4ff 75%,
      #f0f8ff 100%);
  padding: 60px 32px;
  text-align: center;
}

.problem-container {
  margin-bottom: 60px;
}

.problem-container h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.problem-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.problem-item img {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
}

.problem-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.solution-arrow {
  background: linear-gradient(45deg, #0077c8, #005fa3);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 119, 200, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.features-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.features-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.feature {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto 16px auto;
}

.feature-text {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* シーン紹介 */
.scene-section {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.scene-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.scene-item {
  width: 200px;
  background: #eaf6ff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scene-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}

/* 収納方法 */
.howto-section {
  background: #eaf6ff;
  padding: 40px 0;
  text-align: center;
}

.howto-img {
  width: 220px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.howto-section iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 600px;
  display: block;
  margin: auto;
}

/* お客様の声 */
.voice-section {
  background: #333;
  padding: 64px 32px;
  text-align: center;
}

.voice-section h2 {
  color: #fff;
}

.voice-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voice-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.voice-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.voice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

.voice-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.voice-age-gender {
  background: #0077c8;
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.voice-date {
  color: #6c757d;
  font-size: 0.9rem;
}

.voice-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-weight: bold;
  color: #495057;
  font-size: 1rem;
}

.voice-content p {
  margin: 0;
  line-height: 1.6;
  color: #495057;
  font-size: 1rem;
}

/* FAQ */
.faq-section {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #eaf6ff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  color: #0077c8;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #d1e7ff;
}

.faq-q {
  background: #0077c8;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px 16px;
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-a {
  background: #28a745;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item.open .faq-answer {
  display: flex;
}

.faq-item.open .faq-question {
  background-color: #d1e7ff;
  border-radius: 8px 8px 0 0;
}

/* フッター */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 40px 0 20px 0;
  border-top: 1px solid #444;
}

.footer-logo {
  height: 48px;
  margin: 0 auto 16px auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.footer-nav a:hover {
  background: #444;
  color: #b3e0ff;
}

/* レスポンシブ */

@media (max-width: 900px) {

  /* ハンバーガーメニューを表示 */
  .hamburger-menu {
    display: flex;
  }

  /* ナビゲーションメニューを非表示 */
  .nav {
    display: none;
  }

  .nav.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav.active ul {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    text-align: center;
  }

  .nav.active a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .nav.active a:hover {
    color: #b3e0ff;
  }

  .nav.active .contact-btn {
    background: #0077c8;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
  }

  .nav.active .contact-btn:hover {
    background: #005fa3;
  }

  .header {
    flex-direction: row;
    gap: 8px;
    padding: 12px 8px;
  }

  .main-copy h1 {
    font-size: 1.5rem;
  }

  .features-section,
  .voice-list {
    flex-direction: column;
    align-items: center;
  }

  .product-intro {
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .icon-list {
    gap: 8px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-info h2,
  .product-info p{
    text-align: center;
}
}

@media (max-width: 768px) {
  .main-copy {
    text-shadow: none;
    padding: 12px 0;
  }

  .main-copy h1 {
    font-size: 1.3rem;
  }

  .icon-list,
  .problem-list {
    flex-direction: column;
    gap: 8px;
  }

  .feature,
  .scene-item,
  .voice-item {
    /* width: 90vw; */
    min-width: unset;
    max-width: 340px;
  }

  .faq-list {
    max-width: 98vw;
  }

  /* お悩み解決・特徴セクションのレスポンシブ対応 */
  .problem-features-section {
    padding: 40px 16px;
  }

  .problem-container h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .problem-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-item {
    padding: 20px;
  }

  .problem-item img {
    width: 60px;
    height: 60px;
  }

  .solution-arrow {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .features-container {
    padding: 24px 16px;
  }

  .features-container h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .feature {
    padding: 16px;
  }

  /* .feature img {
    width: 48px;
    height: 48px;
  } */

  .feature-text {
    font-size: 0.9rem;
  }

  /* お客様の声セクションのレスポンシブ対応 */
  .voice-section {
    padding: 40px 16px;
  }

  .voice-item {
    padding: 16px;
  }

  .voice-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .voice-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .voice-age-gender {
    font-size: 0.8rem;
    padding: 3px 10px;
  }

  .voice-date {
    font-size: 0.85rem;
  }

  .voice-rating {
    align-self: flex-end;
  }

  .star {
    font-size: 1rem;
  }

  .rating-text {
    font-size: 0.9rem;
  }

  .voice-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .slick {
    width: 300px;
    height: 300px;
  }

  .feature {
    padding: 16px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo {
    margin-bottom: 8px;
  }

  .footer {
    padding: 32px 0 12px 0;
  }

  .contact-form-section {
    padding: 24px 0 16px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-form {
    width: 98%;
    padding: 0 2px;
  }

  .contact-form th,
  .contact-form td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-right: 0;
    padding-left: 0;
  }

  .contact-form th {
    font-size: 0.95rem;
    padding-bottom: 4px;
    padding-right: 0;
  }

  .contact-form td {
    padding-bottom: 16px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 10px 8px;
  }

  .form-btn-wrap {
    margin-top: 16px;
  }
}

/* FAQアコーディオン用JS */

/* お問い合わせフォーム */

.main-visual.contact,
.contact .main-img {
  height: 500px;
}

.contact-header {
  text-align: center;
  margin: 32px 0;
}

.contact-header ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header ul li {
  background: #005fa3;
  opacity: 0.7;
  border-radius: 20px;
  list-style: none;
  position: relative;
}

.contact-header ul li.active {
  background: #005fa3;
  opacity: 1;
  border-radius: 20px;
  list-style: none;
  position: relative;
}

.contact-header ul li::after {
  content: url(./img/arrow.png);
  position: absolute;
  top: 20px;
  right: -25px;
  width: 20px;
  height: 20px;
}

.contact-header ul li:nth-child(3):after {
  display: none;
}

.contact-header ul li p {
  color: #fff;
  padding: 8px 32px;
}

.contact-form-section {
  background: #fff;
  padding: 48px 0 32px 0;
  max-width: 900px;
  margin: 40px auto 40px auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 119, 200, 0.07);
}

.contact-form {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 18px;
}

.contact-form th {
  text-align: left;
  font-weight: 600;
  width: 190px;
  vertical-align: top;
  padding-right: 12px;
  font-size: 1rem;
}

.contact-form td {
  width: auto;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b3e0ff;
  border-radius: 6px;
  font-size: 1rem;
  background: #f7faff;
  box-sizing: border-box;
  transition: border 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border: 1.5px solid #0077c8;
  outline: none;
  background: #eaf6ff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.required {
  color: #fff;
  background: #d32f2f;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.optional {
  color: #fff;
  background: #888;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.privacy-policy {
  margin: 32px 0 16px 0;
  font-size: 1rem;
}

.privacy-policy label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.privacy-policy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0077c8;
}

.form-btn-wrap {
  text-align: center;
  margin-top: 24px;
}

.submit-btn {
  background: #0077c8;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 40px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 119, 200, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #005fa3;
}

.confirm-box,
.send-box {
  max-width: 800px;
  margin: 32px auto;
  text-align: center;
}

input[type="submit" i] {
  background: #0077c8;
  padding: 24px;
  color: #fff;
  border-radius: 10px;
}

.confirm-box button {
  background: #0077c8;
  padding: 24px;
  color: #fff;
  border-radius: 10px;
}

.send-box {
  max-width: 500px;
  background: #d1e7ff;
  box-shadow: 1px 1px #333;
  padding: 32px;
  border-radius: 10px;
}

.element_wrap {
  display: flex;
  align-items: center;
  padding: 16px;

}

.element_wrap label {
  max-width: 300px;
  width: 100%;
}

.element_wrap input,
.element_wrap textarea {
  width: 100%;
  background: #6c757d46;
  border-radius: 5px;
  padding: 8px;
}

.element_wrap textarea {
  height: 200px;
}

.element_wrap p {
  display: flex;
  width: 100%;
}

.element_wrap p input {
  width: 10%;
}

.error_list {
  padding: 10px 30px;
  color: #ff2e5a;
  font-size: 86%;
  text-align: left;
  border: 1px solid #ff2e5a;
  border-radius: 5px;
}

.button {
  text-align: center;
}

form.confirm {
  text-align: center;
}

form.confirm .element_wrap {
  padding: 8px;
}

form.confirm input[type="submit" i] {
  margin: 0 16px;
}

.send-box {
  text-align: center;
}

@media (max-width: 600px) {
  .main-visual {
    height: 500px;
  }

  .main-img {
    height: 500px;
  }

  .contact-form table {
    padding: 16px;
    border-spacing: 0 8px;
  }

  .contact-form-section {
    padding: 24px 0 16px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-form {
    width: 98%;
    padding: 0 2px;
  }

  .contact-form th {
    /* width: 100px; */
    font-size: 0.95rem;
    padding-right: 4px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 10px 8px;
  }

  .form-btn-wrap {
    margin-top: 16px;
  }

  .privacy-policy {
    margin: 16px 0 16px 0;
  }

  .contact-header ul li p {
    color: #fff;
    padding: 4px 8px;
  }
}
