* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.hide {
  display: none;
}

.mobile_show {
  display: none;
}
@media (max-width: 768px) {
  .mobile_show {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .mobile_hide {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ff6347;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn--phone {
  background: #ff6347;
}
.btn--form {
  background: #2c5282;
}
.btn__icon {
  font-size: 24px;
}
.btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.btn__label {
  font-size: 12px;
  opacity: 0.9;
}
.btn__number {
  font-size: 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}
.section-title span {
  color: #ff6347;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6347;
}
.section-title--white {
  color: #fff;
}
.section-title--white::after {
  background: #fff;
}

.section-label {
  text-align: center;
  font-size: 14px;
  color: #ff6347;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.section-desc {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}
.section-desc--white {
  color: rgba(255, 255, 255, 0.9);
}

.float-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.float-btn--phone {
  background: #ff6347;
  color: #fff;
}
.float-btn--top {
  background: #2c5282;
  color: #fff;
  display: none;
}
.float-btn:hover {
  transform: scale(1.1);
}

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-up-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-up-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-up-group.is-visible > *:nth-child(1) {
  transition-delay: 0.1s;
}
.js-fade-up-group.is-visible > *:nth-child(2) {
  transition-delay: 0.2s;
}
.js-fade-up-group.is-visible > *:nth-child(3) {
  transition-delay: 0.3s;
}
.js-fade-up-group.is-visible > *:nth-child(4) {
  transition-delay: 0.4s;
}
.js-fade-up-group.is-visible > *:nth-child(5) {
  transition-delay: 0.5s;
}
.js-fade-up-group.is-visible > *:nth-child(6) {
  transition-delay: 0.6s;
}

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 200px;
}
@media (max-width: 768px) {
  .header__logo {
    width: 120px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav-item {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}
.header__nav-item:hover {
  color: #2c5282;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ff6347;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 10px 20px;
}
.header__phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.header__phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3);
}

.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 99, 71, 0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 14px;
  }
}
.hero__title {
  margin-bottom: 40px;
}
.hero__title-main {
  display: block;
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}
.hero__title-accent {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ffeb3b;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero__note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.features__item {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
  transition: all 0.3s ease;
}
.features__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.features__label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}
.features__value {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #ff6347;
}
@media (max-width: 768px) {
  .features__value {
    font-size: 24px;
  }
}

.concerns {
  padding: 80px 0;
  background: #f8f9fa;
}
.concerns__header {
  margin-bottom: 50px;
}
.concerns__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}
.concerns__item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.concerns__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.concerns__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concerns__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concerns__text {
  display: block;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.reasons {
  padding: 80px 0;
  background: #fff;
}
.reasons__header {
  margin-bottom: 60px;
}
.reasons__list {
  display: grid;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.reasons__item {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.reasons__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #ff6347 0%, #ff8c42 100%);
}
.reasons__item--reverse {
  flex-direction: row-reverse;
}
.reasons__number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 99, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons__number span {
  font-size: 36px;
  font-weight: 700;
  color: #ff6347;
}
.reasons__image {
  flex: 0 0 400px;
  height: 300px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.reasons__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reasons__content {
  flex: 1;
}
.reasons__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.reasons__title span {
  color: #ff6347;
}
.reasons__text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.reasons__point {
  display: grid;
  gap: 10px;
}
.reasons__point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}
.reasons__point-item .check {
  color: #4caf50;
  font-weight: 700;
  font-size: 20px;
}

.promise {
  padding: 80px 0;
  background: #f8f9fa;
}
.promise__header {
  margin-bottom: 50px;
}
.promise__box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.promise__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2c5282;
  margin-bottom: 10px;
}
.promise__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}
.promise__content {
  display: flex;
  gap: 40px;
  align-items: center;
}
.promise__image {
  flex: 1;
  background: #f0f0f0;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}
.promise__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promise__features {
  flex: 1;
}
.promise__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}
.promise__check {
  color: #00b900;
  font-weight: 700;
  font-size: 24px;
}

.staff {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.staff__item {
  text-align: center;
}
.staff__image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #e0e0e0;
  margin: 0 auto 15px;
  overflow: hidden;
}
.staff__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff__badge {
  background: #2c5282;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.staff__text {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.works {
  padding: 80px 0;
  background: #fff;
}
.works__header {
  margin-bottom: 50px;
}
.works__list {
  display: grid;
  gap: 50px;
  margin-top: 50px;
}
.works__item {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.works__images {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, #ff6347 0%, #ff8c42 100%);
}
.works__image {
  flex: 1;
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: auto;
}
.works__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.works__arrow {
  font-size: 40px;
  color: #fff;
  margin: 0 20px;
}
.works__content {
  padding: 30px;
}
.works__title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.works__info {
  display: grid;
  gap: 10px;
}
.works__info dt {
  font-weight: 700;
  color: #666;
  display: inline;
}
.works__info dd {
  display: inline;
  margin-left: 10px;
}

.voice {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6347 0%, #ff8c42 100%);
}
.voice__header {
  margin-bottom: 50px;
}
.voice__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.voice__item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
}
.voice__customer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.voice__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff6347;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.voice__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__info {
  flex: 1;
}
.voice__name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.voice__area {
  font-size: 14px;
  color: #666;
}
.voice__content {
  padding-left: 100px;
}
.voice__text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}
.voice__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice__rating .star {
  color: #ffd700;
  font-size: 20px;
}
.voice__rating .rating-text {
  font-size: 16px;
  font-weight: 700;
  color: #ff6347;
}
.voice__cta {
  text-align: center;
}
.voice__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #fff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  color: #ff6347;
}
.voice__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.voice__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flow {
  padding: 80px 0;
  background: #f8f9fa;
}
.flow__header {
  margin-bottom: 50px;
}
.flow__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.flow__item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 30px;
  text-align: center;
  position: relative;
}
.flow__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.flow__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6347 0%, #ff8c42 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}
.flow__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.flow__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.company {
  padding: 80px 0;
  background: #fff;
}
.company__header {
  margin-bottom: 50px;
}
.company__info {
  max-width: 800px;
  margin: 0 auto;
}
.company__table {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.company__table th,
.company__table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.company__table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #666;
  width: 30%;
}
.company__table tr:last-child th,
.company__table tr:last-child td {
  border-bottom: none;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff6347 0%, #ff8c42 100%);
  text-align: center;
}
.cta__content {
  max-width: 800px;
  margin: 0 auto;
}
.cta__title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 32px;
  }
}
.cta__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ff6347;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 20px 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cta__btn--phone {
  background: #fff;
  color: #ff6347;
}
.cta__btn--form {
  background: #2c5282;
  color: #fff;
}
.cta__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta__icon {
  font-size: 30px;
}
.cta__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cta__label {
  font-size: 12px;
  opacity: 0.9;
}
.cta__number {
  font-size: 24px;
}
.cta__note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.contact {
  padding: 80px 0;
  background: #fff;
}
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact__header {
  margin-bottom: 60px;
  text-align: center;
}
.contact__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact__form {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .contact__form {
    padding: 30px 20px;
  }
}
.contact__form .wpcf7 {
  width: 100%;
}
.contact__form .wpcf7 form {
  width: 100%;
}
.contact__form .wpcf7 p {
  margin-bottom: 25px;
}
.contact__form .wpcf7 p:last-of-type {
  margin-bottom: 0;
}
.contact__form .wpcf7 label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}
.contact__form .wpcf7 label span.wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.contact__form .wpcf7 label .wpcf7-required,
.contact__form .wpcf7 label .required {
  color: #ff6347;
  margin-left: 5px;
  font-weight: normal;
}
.contact__form .wpcf7 input[type=text],
.contact__form .wpcf7 input[type=email],
.contact__form .wpcf7 input[type=tel],
.contact__form .wpcf7 input[type=url],
.contact__form .wpcf7 input[type=number],
.contact__form .wpcf7 input[type=date],
.contact__form .wpcf7 input[type=password] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
}
.contact__form .wpcf7 input[type=text]:focus,
.contact__form .wpcf7 input[type=email]:focus,
.contact__form .wpcf7 input[type=tel]:focus,
.contact__form .wpcf7 input[type=url]:focus,
.contact__form .wpcf7 input[type=number]:focus,
.contact__form .wpcf7 input[type=date]:focus,
.contact__form .wpcf7 input[type=password]:focus {
  outline: none;
  border-color: #ff6347;
  box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
  background-color: #fffaf8;
}
.contact__form .wpcf7 input[type=text]:hover:not(:focus),
.contact__form .wpcf7 input[type=email]:hover:not(:focus),
.contact__form .wpcf7 input[type=tel]:hover:not(:focus),
.contact__form .wpcf7 input[type=url]:hover:not(:focus),
.contact__form .wpcf7 input[type=number]:hover:not(:focus),
.contact__form .wpcf7 input[type=date]:hover:not(:focus),
.contact__form .wpcf7 input[type=password]:hover:not(:focus) {
  border-color: #bbb;
}
.contact__form .wpcf7 input[type=text]::-moz-placeholder, .contact__form .wpcf7 input[type=email]::-moz-placeholder, .contact__form .wpcf7 input[type=tel]::-moz-placeholder, .contact__form .wpcf7 input[type=url]::-moz-placeholder, .contact__form .wpcf7 input[type=number]::-moz-placeholder, .contact__form .wpcf7 input[type=date]::-moz-placeholder, .contact__form .wpcf7 input[type=password]::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]::placeholder,
.contact__form .wpcf7 input[type=email]::placeholder,
.contact__form .wpcf7 input[type=tel]::placeholder,
.contact__form .wpcf7 input[type=url]::placeholder,
.contact__form .wpcf7 input[type=number]::placeholder,
.contact__form .wpcf7 input[type=date]::placeholder,
.contact__form .wpcf7 input[type=password]::placeholder {
  color: #999;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]:disabled,
.contact__form .wpcf7 input[type=email]:disabled,
.contact__form .wpcf7 input[type=tel]:disabled,
.contact__form .wpcf7 input[type=url]:disabled,
.contact__form .wpcf7 input[type=number]:disabled,
.contact__form .wpcf7 input[type=date]:disabled,
.contact__form .wpcf7 input[type=password]:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.contact__form .wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  min-height: 150px;
  max-height: 400px;
  resize: vertical;
  transition: all 0.3s ease;
}
.contact__form .wpcf7 textarea:focus {
  outline: none;
  border-color: #ff6347;
  box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
  background-color: #fffaf8;
}
.contact__form .wpcf7 textarea:hover:not(:focus) {
  border-color: #bbb;
}
.contact__form .wpcf7 textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact__form .wpcf7 textarea::placeholder {
  color: #999;
  opacity: 1;
}
.contact__form .wpcf7 select,
.contact__form .wpcf7 .wpcf7-select {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.contact__form .wpcf7 select:focus,
.contact__form .wpcf7 .wpcf7-select:focus {
  outline: none;
  border-color: #ff6347;
  box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
  background-color: #fffaf8;
}
.contact__form .wpcf7 select:hover:not(:focus),
.contact__form .wpcf7 .wpcf7-select:hover:not(:focus) {
  border-color: #bbb;
}
.contact__form .wpcf7 select:disabled,
.contact__form .wpcf7 .wpcf7-select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.contact__form .wpcf7 select option,
.contact__form .wpcf7 .wpcf7-select option {
  padding: 10px;
  background: #fff;
  color: #333;
}
.contact__form .wpcf7 select[multiple] {
  height: auto;
  min-height: 120px;
  padding: 10px;
  background-image: none;
}
.contact__form .wpcf7 select[multiple] option {
  padding: 5px 10px;
  margin: 2px 0;
}
.contact__form .wpcf7 select[multiple] option:checked {
  background: #ff6347;
  color: #fff;
}
.contact__form .wpcf7 input[type=radio],
.contact__form .wpcf7 input[type=checkbox] {
  width: auto;
  margin-right: 10px;
  margin-top: 2px;
  cursor: pointer;
  vertical-align: top;
}
.contact__form .wpcf7 input[type=radio] + span,
.contact__form .wpcf7 input[type=checkbox] + span {
  display: inline-block;
  cursor: pointer;
}
.contact__form .wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.contact__form .wpcf7 .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.contact__form .wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: flex-start;
  font-weight: normal;
  cursor: pointer;
}
.contact__form .wpcf7 .wpcf7-list-item label input {
  margin-top: 3px;
}
.contact__form .wpcf7 .wpcf7-list-item-label {
  display: inline-block;
  margin-left: 5px;
}
.contact__form .wpcf7 input[type=submit],
.contact__form .wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ff6347;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
  border: none;
  font-size: 18px;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.contact__form .wpcf7 input[type=submit]:hover,
.contact__form .wpcf7 .wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.contact__form .wpcf7 input[type=submit]::before,
.contact__form .wpcf7 .wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}
.contact__form .wpcf7 input[type=submit]:hover,
.contact__form .wpcf7 .wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
}
.contact__form .wpcf7 input[type=submit]:hover::before,
.contact__form .wpcf7 .wpcf7-submit:hover::before {
  left: 100%;
}
.contact__form .wpcf7 input[type=submit]:active,
.contact__form .wpcf7 .wpcf7-submit:active {
  transform: translateY(-1px);
}
.contact__form .wpcf7 input[type=submit]:disabled,
.contact__form .wpcf7 .wpcf7-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.contact__form .wpcf7 input[type=submit]:disabled:hover,
.contact__form .wpcf7 .wpcf7-submit:disabled:hover {
  transform: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contact__form .wpcf7 .wpcf7-not-valid {
  border-color: #dc3545 !important;
  background-color: #fff5f5 !important;
}
.contact__form .wpcf7 .wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}
.contact__form .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}
.contact__form .wpcf7 .wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  border: 1px solid;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .contact__form .wpcf7 .wpcf7-response-output.wpcf7-display-none {
  background: #fff3cd;
  color: #856404;
  border-color: #ffc107;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-spam-blocked {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-acceptance-missing {
  background: #fff3cd;
  color: #856404;
  border-color: #ffc107;
}
.contact__form .wpcf7 .wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background: #ff6347;
  opacity: 0;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
  vertical-align: middle;
  transition: opacity 0.3s;
}
.contact__form .wpcf7.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}
.contact__form .wpcf7 input[type=file] {
  width: 100%;
  padding: 10px;
  border: 2px dashed #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact__form .wpcf7 input[type=file]:hover {
  border-color: #ff6347;
  background: #fffaf8;
}
.contact__form .wpcf7 input[type=file]:focus {
  outline: none;
  border-color: #ff6347;
  box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
}
.contact__form .wpcf7 .privacy-policy {
  background: #fff8f0;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}
.contact__form .wpcf7 .privacy-policy label {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
  font-size: 14px;
}
.contact__form .wpcf7 .privacy-policy label input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
}
.contact__form .wpcf7 .privacy-policy label span {
  display: inline-block;
  line-height: 1.6;
}
.contact__form .wpcf7 .privacy-policy label a {
  color: #ff6347;
  text-decoration: underline;
  font-weight: 500;
}
.contact__form .wpcf7 .privacy-policy label a:hover {
  text-decoration: none;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact__info {
    gap: 25px;
  }
}
.contact__info-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.contact__info-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .contact__info-box {
    padding: 25px;
  }
}
.contact__info-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c5282;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6347;
  position: relative;
}
.contact__info-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ff8c42;
}
.contact__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #ff6347;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contact__phone {
    font-size: 24px;
  }
}
.contact__phone:hover {
  transform: scale(1.05);
  color: #ff8c42;
}
.contact__phone-icon {
  font-size: 32px;
  animation: ring 2s ease-in-out infinite;
}
.contact__phone-number {
  letter-spacing: 0.05em;
}
.contact__phone-time {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.contact__company dt {
  font-weight: 700;
  color: #666;
  margin-top: 15px;
  font-size: 14px;
}
.contact__company dt:first-child {
  margin-top: 0;
}
.contact__company dd {
  margin-left: 0;
  margin-top: 5px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.contact__map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact__map:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.contact__map iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 1024px) {
  .contact__content {
    gap: 40px;
  }
  .contact__form {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr;
  }
  .contact__form {
    padding: 30px 20px;
  }
  .contact__form .wpcf7 input[type=submit],
  .contact__form .wpcf7 .wpcf7-submit {
    width: 100%;
    max-width: none;
  }
  .contact__info-box {
    padding: 20px;
  }
}
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0 20px;
}
.footer__content {
  text-align: center;
  margin-bottom: 20px;
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer__logo img {
  width: 150px;
}
.footer__text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
}
.footer__copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copyright p {
  font-size: 12px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .hero__title-main {
    font-size: 24px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .features__item {
    width: 100%;
    max-width: 300px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .concerns__list {
    grid-template-columns: 1fr;
  }
  .reasons__item {
    flex-direction: column !important;
    text-align: center;
  }
  .reasons__image {
    flex: 1 1 100%;
    width: 100%;
    max-width: 400px;
  }
  .reasons__number {
    position: static;
    margin: 0 auto 20px;
  }
  .promise__content {
    flex-direction: column;
  }
  .works__images {
    flex-direction: column;
    gap: 20px;
  }
  .works__arrow {
    transform: rotate(90deg);
  }
  .voice__list {
    grid-template-columns: 1fr;
  }
  .voice__content {
    padding-left: 0;
  }
  .flow__list {
    grid-template-columns: 1fr;
  }
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}