/* Base Styles */
body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFF8E5;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

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

/* Main Visual */
.main-visual {
  background-color: #f0f0f0;
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.header-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.header-logo img {
  height: 40px;
}

.visual-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
  position: relative;
  text-align: center;
}

.visual-text {
  z-index: 2;
  position: relative;
  width:600px;
}


.label {
  background-color: #FFD700;
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
}

.visual-text h1 {
  font-size: 2rem;
  margin-top: 1rem;
}

.big {
  font-size: 1.5em;
  font-weight: 600;
}

.highlight {
  color: #FFD700;
  font-size: 5rem;
  font-weight: bold;
}

.desc {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

.support {
  background: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.cta-btn::before {
  content: "\2709";
  font-size: 1.3rem;
  display: inline-block;
}

.cta-btn small {
  font-size: 0.85rem;
  font-weight: normal;
  color: #fff;
  position: relative;
}

.cta-btn small::before,
.cta-btn small::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transform: rotate(20deg);
  position: absolute;
  top: 50%;
}

.cta-btn small::before {
  left: -25px;
}

.cta-btn small::after {
  right: -25px;
  transform: rotate(-20deg);
}

.cta-btn:hover {
  background: #e64a00;
}

.visual-image {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards 0.5s;
}

.girl-fade {
  width: 100%;
  height: auto;
}

.below-visual-message {
  background-color: #FFD700;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
  color: #222;
}

/* お悩み */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 47%;
  height: 2px;
  background-color: #222;
  position: absolute;
  bottom: 0;
}

.section-title::before {
  left: 0;
}

.section-title::after {
  right: 0;
}

.section-title .highlight-orange {
  color: #f4a000;
  font-weight: bold;
  position: relative;
}

.section-title .highlight-orange::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 15%;
    width: 56px;
    height: 24px;
    border-bottom: 2px solid #222;
    /* border-left: 2px solid #222; */
    transform: translateX(-50%) rotate(-45deg);
    background: transparent;
}
.section-title .highlight-orange-2::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 49.1%;
    width: 56px;
    height: 24px;
    border-bottom: 2px solid #222;
    /* border-left: 2px solid #222; */
    transform: translateX(-50%) rotate(-45deg);
    background: transparent;
}
/* Concern Grid */
.concern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    width: 1000px;
    margin: 60px auto;
}

.concern-item {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 2rem 1rem 3.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.concern-num {
  position: absolute;
  top: -20px;
  left: 0px;
  background: #FFD700;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.concern-item p {
  margin: 0.75rem 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

.concern-item .subtext {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

.highlight-orange {
  color: #f4a000;
  font-weight: bold;
}
.highlight-orange-2 {
  color: #f4a000;
  font-weight: bold;
}
.concern-illust img {
 margin: 0 auto;
}
.concern-caption {
 font-size:2rem;
 color: #f4a000;
    font-weight: bold;
}
.solution-section {
    padding: 6rem 1rem;
    text-align: center;
}
/* CVRセクション */
.cvr-section {
  background-color: #FFE033;
  padding: 4rem 1rem;
  text-align: center;
}

.cvr-box {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 30px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cvr-box h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cvr-box p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.cvr-box p strong {
  font-weight: bold;
}

/* CTAボタン：既存スタイルを流用する場合 */
.cta-btn {
  margin-top: 1rem;
  background: #FF5000;
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
  position: relative;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.cta-btn::before {
  content: "\2709";
  font-size: 1.3rem;
  display: inline-block;
}

.cta-btn span {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-btn small {
  font-size: 0.85rem;
  font-weight: normal;
  color: #fff;
  position: relative;
}

.cta-btn small::after {
  right: -25px;
  transform: rotate(-20deg);
}

.cta-btn:hover {
  background: #e64800;
}
/* Service Section */
.service-section {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.service-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  text-decoration: none;
  color: #222;
}
.service-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  color: #FFA500;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-sub {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.service-lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.service-illustration img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 2rem;
}

.service-highlight {
  font-weight: bold;
  color: #FFA500;
  font-size: 2rem;
}




@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 6rem 1rem;
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid #eee;
}

.section:nth-child(even) {
  background-color: #fff;
}
/* 導入実例セクション */
.case-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.case-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.case-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #222;
}

.case-subtext {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.case-images {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.case-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.case-row img {
  width: 480px;
  max-width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
/* 特長セクション */
.features-section {
  background-color: #fff;
  padding: 4rem 1rem;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}


.features-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-top: 0.3rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-box.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 55%;
}

.feature-image {
  flex: 1 1 40%;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  border-radius: 10px;
}

.feature-point {
  background-color: #fff8d5;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: bold;
  color: #222;
  font-size: 1.4rem;
}

.feature-point .point-label {
  color: #f4b400;
  margin-right: 0.6rem;
}

.feature-point .point-title {
  color: #222;
}
.comparison-section {
  background: #f9f9f9;
  padding: 4rem 1rem;
}

.comparison-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}


.comparison-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.comparison-table thead {
  background: #fff;
  border-bottom: 2px solid #eee;
}

.comparison-table th,
.comparison-table td {
  text-align: center;
  padding: 1.2rem 0.8rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  vertical-align: top;
}

.comparison-table th {
  background: #fdfdfd;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.comparison-table td .small {
  font-size: 0.85rem;
  color: #555;
}

.comparison-table td.highlight {
  color: #f39800;
  font-weight: bold;
}

.brand {
  font-weight: bold;
}

.brand .bold {
  font-weight: 600;
  color: #222;
}
.price-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}
.price-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 5px 0 20px;
}
.price-inner {
  max-width: 800px;
  margin: 0 auto;
}

.price-section .section-label {
  color: #f4a300;
  font-weight: bold;
  font-size: 1.2rem;
}

.price-section .section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 5px 0 20px;
}

.price-section .price-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

.price-plan {
  background: #fff3b0;
  border-radius: 20px;
  margin: 20px auto;
  padding: 25px 30px;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.plan-title {
  background: #ffa500;
  color: white;
  font-weight: bold;
  padding: 8px 0;
  border-radius: 30px;
  margin-bottom: 15px;
  font-size: 18px;
}

.plan-price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.flow-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.flow-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-section .section-label {
  color: #f5b400;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.flow-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.flow-step {
  flex: 1 1 200px;
  max-width: 200px;
  text-align: center;
}

.flow-step .step-label {
  color: #f5b400;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 26px;
}

.flow-step img {
  height: auto;
  margin: 0 auto;
}

.step-text {
  font-size: 16px;
  color: #333;
  margin-top: 26px;
}
/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: "Noto Sans JP", sans-serif;
}
.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
}
.faq-section .section-label {
  text-align: center;
  font-weight: bold;
  color: #f6a700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  cursor: pointer;
  font-weight: bold;
  background: #fcb900;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto;
  border: none;
}
.faq-answer {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    width: 958px;
    margin: 0 auto
}
.faq-item.active .faq-answer {
  display: block;
}

.faq-cta {
  display: inline-block;
  text-align: center;
  background-color: #ff5e00;
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
  margin: 2rem auto 0;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 360px;
}

.faq-cta-sub {
  font-size: 13px;
  font-weight: normal;
  display: block;
  margin-bottom: 0.2rem;
}

.faq-cta-main {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

.faq-cta i {
  margin-right: 0.4em;
}

.faq-cta:hover {
  background-color: #e04e00;
}

.faq-answer {
  text-align: center; /* CTAを中央揃えに */
}

.company-section {
margin: 80px 0;
}
.company-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin: 0 auto 40px;
}

.company-box {
  background-color: #fff;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}

.company-info {
  text-align: left;
}

.company-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  gap: 10px;
}

.company-row dt {
  width: 120px;
  font-weight: bold;
  color: #f5a623;
  flex-shrink: 0;
}

.company-row dd {
  margin: 0;
  flex: 1;
  color: #333;
}
/* 共通 */
.contact-section {
  background-color: #ffe100;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .section-label {
  color: #f4a900;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-section .contact-section-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
}

.contact-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px;
  text-align: left;
}

.contact-note {
  color: #f4a900;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 14px;
  color: #222;
}

.contact-form .required {
  color: red;
  margin-left: 5px;
  font-weight: normal;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 12px 10px;
  border: none;
  background: #f2f2f2;
  border-radius: 5px;
  font-size: 16px;
}

.checkbox-area {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 30px;
}

.contact-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 14px 0;
  background-color: #ff6600;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-submit:hover {
  background-color: #e55400;
}


/* Responsive */
@media screen and (min-width: 768px) {
  .visual-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .visual-text {
    z-index: 2;
  }

  .visual-image {
    position: relative;
    margin-top: 2rem;
  }
  
  
  
  
  /* flow */
  
}

/* Utility: fade-in animation trigger class */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* =====================
   ▼ レスポンシブ対応
====================== */
@media screen and (max-width: 768px) {
  .header-logo {
    top: 0rem;
    left: 0rem;
  }
  .header-logo img {
    height: 35px;
  }
  .visual-inner {
    flex-flow: wrap;
  }
  .visual-text {
    width: 100%;
  }
  .big {
    font-size: 0.8em;
  }
  .visual-text h1 {
    font-size: 1.2rem;
    margin-left: 15px;
    margin-top: 0;
    margin-bottom: 0;
    width: 49%;
  }
  .section,.solution-section {
    padding: 4rem 1rem;
  }
  .support {
    width: 43%;
    color: #333333;
    margin-bottom: 0;
    margin-right: 173px;
    font-size: 0.6rem;
  }
  .below-visual-message {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .concern-item p {
    font-size: 1.2rem;
  }
  .concern-grid {
    gap: 0;
    width: 100%;
    margin: 20px auto;
  }
  .concern-item {
    margin: 20px 0;
  }
  .concern-caption {
    font-size: 1.5rem;
  }
  .case-title {
    font-size: 1.5rem
  }
  .price-title {
    font-size: 1.5rem
  }
  .service-highlight {
    font-size: 1.5rem;
  }
  .service-section-title {
    font-size: 1.5rem;
  }
  .features-title {
    font-size: 1.5rem;
  }
  .comparison-title {
    font-size: 1.5rem;
  }
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 100%;
    width: 100%;
    background: #ececec;
  }

  .flow-step img {
    width: 88px;
  }

  .flow-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .flow-step .step-label {
    font-size: 1.6rem;
  }

  .step-text {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 60px 15px;
  }
  .faq-title {
    font-size: 1.5rem
  }
  .faq-question {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 96%;
  }

  .faq-answer {
    width: 85%;
  }
  .company-section-title {
    font-size: 22px;
  }
  .company-box {
    padding: 30px 20px;
    max-width: 90%;
    margin: 0 5%;
  }

  .company-row {
    flex-direction: column;
  }

  .company-row dt {
    width: auto;
    margin-bottom: 5px;
  }

  .company-row dd {
    font-size: 15px;
  }
  .contact-section .contact-section-title {
    font-size: 22px;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .contact-form label {
    font-size: 13px;
  }

  .contact-form input {
    font-size: 15px;
  }

  .contact-submit {
    font-size: 15px;
    padding: 12px 0;
  }
  .cta-btn {
    padding:0;
    margin: 0;
  }
  .section-heading {
    margin-bottom: 0rem;
  }
  .service-section {
    padding: 2rem 1rem;
  }
  .comparison-section {
    padding: 2rem 1rem;
  }
  .contact-section {
    padding: 30px 20px;
  }
  .company-section {
    margin: 40px 0;
  }
  .cta-btn::before {
    content: none;
  }
  .cta-btn::before {
    content: none;
  }
  .cta-btn small::before, .cta-btn small::after {
    content: none;
  }
  .cvr-box {
    padding: 3rem 1rem;
  }
  .cta-btn {
    padding: 7px 19px;
    font-size: 0.9rem;
  }
  
  .visual-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .visual-image {
    position: relative;
    width: 100%;
  }

  .visual-image img {
    width: 83%;
    height: auto;
    display: block;
    position: relative;
    right: -132px;
  }

  .visual-text {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1rem;
    z-index: 2;
    border-radius: 1rem;
  }

  .visual-text .highlight {
    color: #ffe600; /* 強調カラーなど */
    font-size: 2.5rem
  }
  .desc {
    font-size: 0.8rem;
    width: 50%;
    margin-left: 8px;
    margin-bottom: 0;
  }
  .label {
    font-size: 0.6rem;
    margin-right: 179px;
  }
  .cta-btn small {
    font-size: 0.7rem;
  }
}


/* メール */
#formWrap {
	width:700px;
	margin:200px auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
#formWrap h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
    background: #fff;
	border:1px solid #ccc;
	padding: 32px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
/*メールレスポンシブ*/
@media screen and (max-width: 768px) {
#formWrap {
	width:95%;
	margin: 0 auto 120px auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
.contact-header,.thanks-text {
    padding: 0 5%;
}
}
.submit-button {
  background-color: #FFD500;
  color: #000;
  font-weight: bold;
  padding: 1em 2.5em;
  font-size: 1.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
  background-color: #ffdb33;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.back-button {
  background-color: transparent;
  color: #555;
  padding: 1em 2em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 50px;
  margin-left: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #f5f5f5;
}
a.return-top-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8em 1.6em;
  background-color: #FFD500;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

a.return-top-link:hover {
  background-color: #ffdd33;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.contact-header,.center {
  margin-top: 200px;
}
.contact-header,.thanks-text {
  font-size: 1.2rem;
  line-height: 2.2rem;
}