/* CSS Variables */
:root {
  --main-color: #005DAD;
  --secondary-color: #FF8900;
  --light-blue: #E3F2FD;
  --dark-blue: #1976D2;
  --text-color: #333;
  --white: #fff;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Utility Classes */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  border: 3px solid rgb(255 255 255);
  box-shadow: 3px 3px 7px rgb(170 168 168 / 30%);
}

.btn--orange {
  background: var(--secondary-color);
  color: var(--white);
}

.btn--orange:hover {
  background: #E55A2B;
  transform: translateY(2px);
}

.btn--large {
  padding: 14px 28px;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  border: 3px solid rgb(255 255 255);
  box-shadow: 3px 3px 7px rgb(170 168 168 / 30%);
}

h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 0.1rem;
  margin-bottom: 4rem;
  line-height: 1.5;
  position: relative;
}

h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 140px;/*線の長さ*/
  height: 3px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color:var(--main-color);/*線の色*/
}

/* Header */
.header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px
}

.header__logo img {
  height: 32px;
  max-width: 100%;
}

/* fv Section */
.fv {
  background-image: url(../img/fv_bg.webp);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  overflow: hidden;
}

.fv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 3rem;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  position: relative;
  z-index: 1;
  top: 80px;
}

.fv__catch {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px 20px;
}

.fv__title {
  margin-bottom: 30px;
  
}

.fv__title-banner-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  white-space: nowrap;
}
.fv__title-banner {
  display: inline-block;
  color: white;
  padding: 6px 20px;
  margin-bottom: 0;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  width: fit-content;
  z-index: -2;
}
.fv__title-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  transform: skew(-25deg);
  content: '';
  z-index: -1;
}
.fv__title-banner__big{
  font-size: 38px;
}
.fv__title-banner__big_2{
  font-size: 50px;
}

.fv__price {
width: fit-content;
  margin-bottom: 20px;
  text-align: center;
  background: rgb(255 255 255 / 80%);
  box-shadow: 3px 3px 7px rgb(170 168 168 / 30%);
font-size: 1.1rem;
color: #333;
line-height: 1.8;
padding: 16px;
font-weight: 500;
}

.fv__price-text {
background-color: var(--light-blue);
width: 19%;
font-size: 1.5rem;
font-weight: 700;
color: var(--dark-blue);
text-align: center;
padding: 16px;
}

.fv__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: -3rem;
  z-index: -1;
}

.fv__banner {
  background: linear-gradient(0deg, #004A89, #005DAD);
  color: var(--white);
  padding: 1rem 0;
  margin: 80px 0 0 0;
}
.service__banner {
  background: linear-gradient(0deg, #004A89, #005DAD);
  color: var(--white);
  padding: 1rem 0;
  margin: 0 0 0 0;
}

.fv__banner-inner,.service__banner-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fv__banner-award img,.service__banner-award img{
width: 8rem;
}

.fv__banner-content,.service__banner-content {
  flex: 1;
}

.fv__banner-text,.service__banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.fv__banner-note,.service__banner-note {
  font-size: 12px;
  color:var(--white);
  margin: 0;
  line-height: 1.4;
}

/* Problem Section */
.problem {
  padding: 80px 0;
  background: #FAFAFA;
}

.problem__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.problem__comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}

.problem__before,
.problem__after {
  padding: 0;
  background: var(--white);
  box-shadow: 3px 3px 19px rgb(224 224 224 / 27%);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  border-radius: 6px;
}
.problem__after{
background: #e6e6e6;
}

.problem__period-banner {
  padding: 8px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 6px 6px 0 0;
}

.problem__period-banner--blue {
  background: var(--main-color);
}

.problem__period-banner--gray {
  background: #4A4A4A;
}

.problem__subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 2rem 1.5rem 1rem;
  line-height: 1.3;
  flex-grow: 0;
}

.problem__icon {
  display: flex;
  justify-content: center;
}

/* .problem__icon img {
  width: 14rem;
  height: 14rem;
  object-fit: contain;
} */

.problem__before img{
  width: 14rem;
  height: 14rem;
  object-fit: contain;
}
.problem__after img{
  width: 14rem;
height: 14rem;
object-fit: contain;
}

.problem__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 1.5rem 2rem;
  font-weight: 500;
  flex-grow: 1;
}

.problem__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem__arrow img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* Service Section */
.service {
  padding: 80px 0;
}

.service__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.service__description {
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  color: #333;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- サービス比較ブロック --- */
.service__comparison {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin: 0 auto 2.5rem auto;
  max-width: 800px;
  position: relative;
}

.service__regular,
.service__check {
  flex: 1 1 0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.service__regular {
  border: 2px solid var(--main-color);
}

.service__check {
  border: 2px solid var(--secondary-color);
  background: #fff7ea;
}

.service__box-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background:var(--main-color);
  border-radius: 6px 6px 0 0;
  width: 100%;
  text-align: center;
  padding: 0.7em 0;
  letter-spacing: 0.05em;
}

.service__check .service__box-title {
  background: var(--secondary-color)
}

.service__list {
  margin: 1rem 1rem 1rem 1.2rem;
  padding: 0 0 0 1.2em;
  list-style: disc;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.service__plus {
  font-size: 6rem;
  color: var(--secondary-color);
  text-align: center;
  line-height: 3rem;
  font-weight: 900;
}
.service__plus-text{
  font-size: 1.5rem;
  font-weight: 700;
}

.service__point{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service__point_text {
  position: relative;
  background: #E3F2FD;
  padding: 1.5rem;
  gap: 0.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}

.service__point_text::after {
  content: '';
  position: absolute;
  left: -27px;
  top: 56px;
  width: 0px;
  height: 0;
  border-top: 30px solid #E3F2FD;
  border-left: 34px solid transparent;
  border-right: 0px solid transparent;
}

.service__point-time{
font-size: 2rem;
}

.service__point-header {
  width: 3rem;
}

.service__point-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service__point-icon {
  width: 20%;
  max-width: 300px;
  flex-shrink: 0;
}

.service__point-content p {
  font-size: 18px;
  font-weight: 600;
  color:var(--dark-blue);
  margin: 0;
  text-align: left;
}

.service__cta {
  text-align: left;
  background: #e4edf3;
}

.service__cta-inner {
  background-image: url(../img/cta_bg.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

.service__cta-title{
  color: var(--main-color);
  margin-bottom: 1rem;
  position: inherit;
  text-align: left;

}

.service__cta-title:before {
  content: none;
}

.service__cta-text{
  width: fit-content;
}

.service__cta-text p{
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-arrow {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.btn:hover .cta-arrow {
  transform: translateX(3px);
}
/* 料金セクション全体 */
.pricing {
  padding: 60px 0 80px 0;
  background-size: cover;
}

/* プランカード */
.pricing__inner {
  max-width: 420px;
  margin: 0 auto;
}
.pricing__about{
  background: #f1f9ff;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

/* プランタイトル */
.pricing__subtitle {
  background: var(--dark-blue);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  border-radius: 6px 6px 0 0;
  padding: 18px 0 14px 0;
  margin: 0 0 18px 0;
  letter-spacing: 0.08em;
}

/* 金額 */
.pricing__amount {
  text-align: center;
  margin-bottom: 0.5em;
}
.pricing__price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark-blue);
  display: block;
  letter-spacing: 0.05em;
}
.pricing__additional {
  font-size: 1rem;
  color: #666;
  display: block;
  margin-bottom: 1.2em;
}

/* 特徴リスト */
.pricing__features {
  margin: 0 auto 1.5em auto;
  padding: 1.2em 1.2em 1.2em 2.2em;
  box-sizing: border-box;
  width: 90%;
}
.pricing__feature {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1rem;
  color: #222;
  margin-bottom: 0.7em;
  font-weight: 500;
}
.pricing__feature:last-child {
  margin-bottom: 0;
}
.pricing__check {
  color: #ff9900;
  font-size: 1.2em;
  margin-top: 0.1em;
  font-weight: bold;
}

/* 注意書き */
.pricing__note {
  text-align: center;
  font-size: 0.95em;
  color: #1976D2;
  margin: 1.2em 0 0;
  font-weight: 500;
}

/* CTAボタン */
.pricing__cta {
  text-align: center;
}
.pricing__cta .btn--orange {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1em 2.5em;
  border-radius: 8px;
  margin-top: 0.5em;
  box-shadow: 0 2px 8px rgba(255, 153, 0, 0.10);
}

/* Flow Section */
.flow {
  padding: 80px 0;
  background: #f2f7fc;
}

.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.flow__steps {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: 6px;
}

.flow__step {
  display: flex;
  text-align: center;
  background: #f2f7fc;
  padding: 0 0.5rem;
  border-radius: 6px;
  width: 190px;
  min-height: 19rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.flow__step-icon img {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
}

.flow__step-title {
  font-size: 17px;
  font-weight: 600;
  color: #1976D2;
  line-height: 1.4;
  min-height: 2.7em;
  display: flex;
  align-items: center;
}

.flow__step-description {
  font-size: 14px;
  line-height: 1.4;
  margin: 1rem;
  list-style: disc;
  text-align: left;
  font-weight: 500;
}

p.flow__step-description{
  margin: 1rem 0.5rem 0 ;
}

.flow__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-arrow-img {
  width: 2rem;
  height: 2rem;
  filter: opacity(0.5);
  position: absolute;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: white;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__item {
  margin-bottom: 40px;
}

.faq__question,
.faq__answer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.faq__q,
.faq__a {
  background: var(--main-color);
  color:var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq__a {
  color: var(--main-color);
  background-color: var(--white);
  border: 1px solid var(--main-color);
}

.faq__question p,
.faq__answer p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.faq__question p{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--main-color);
}
.faq__answer{
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 2rem;
}

/* Contact Section */
.contact {
  padding: 2.5rem 0;
  background: linear-gradient(0deg, #004A89, #005DAD);
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact__title {
  font-size: 32px;
  font-weight: 700;
  color:var(--white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.contact__title:before {
  content: none;
}

.contact__box {
  background: white;
  border: 2px solid #1976D2;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.contact__cta {
  margin-bottom: 30px;
}


.contact__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1000px;
  align-items: stretch;
}
.contact__col {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.15);
  padding: 1rem;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  justify-content: center;
}
.contact__col--form {
  margin-right: 10px;
}
.contact__col--tel {
  margin-left: 10px;
}
.contact__col-caption {
  font-size: 14px;
  text-align: center;
}
.contact__col .btn {
  margin-top: 8px;
  width: 220px;
  justify-content: center;
}
.contact__phone-text {
  font-size: 15px;
  text-align: center;
}
.contact__phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  letter-spacing: 2px;
}
.contact__phone-hours {
  font-size: 13px;
  color: #666;
  text-align: center;
}
.contact__phone-number-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  
}
.contact__phone-number-group img {
  width: 3rem;
}

/* Footer */
.footer {
  max-width: 1200px;
  padding: 2rem 2rem 1rem;
  margin: 0 auto;
}

.footer__logo img {
  height: 40px;
  max-width: 100%;
}

.footer__nav {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__contact {
  text-align: right;
}

.footer__hours {
  font-size: 14px;

}

.footer__company {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--main-color);
}

.footer__company p {
  margin: 5px 0;
}
.footer__company-name{
  font-size: 1.2rem;
  font-weight: 700;
}
.footer__company-address{
  display: flex;
  gap: 1rem;
}

.footer__content_inner{
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__bottom {
  padding-top: 1rem;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.footer__privacy {

  text-decoration: none;
}

.footer__privacy:hover {
  text-decoration: underline;
}

.footer__copyright {
  margin: 0;
}

