@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&display=swap');

:root {
  --ouchiblack: rgba(51, 51, 51, 1);
  --ouchiblue: rgba(15, 110, 190, 1);
  --ouchiblue2: rgba(68, 142, 204, 1);
  --ouchigray2: rgba(142, 142, 142, 1);
  --ouchilight-blue1: rgba(175, 207, 233, 1);
  --ouchilight-blue2: rgba(246, 250, 253, 1);
  --ouchilight-yellow: rgba(255, 252, 240, 1);
  --ouchiorange1: rgba(239, 130, 0, 1);
  --ouchiorange4: rgba(254, 250, 246, 1);
  --ouchired2: rgba(240, 70, 75, 1);
  --ouchiwhite: rgba(255, 255, 255, 1);
  --ouchiyellow: rgba(255, 245, 0, 1);
  --ouchiyellow-green1: rgba(55, 170, 5, 1);
  --ouchiyellow-green2: rgba(99, 189, 61, 1);
}

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

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  background-color: var(--ouchilight-yellow);
  color: var(--ouchiblack);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-wrapper {
  min-width: 1440px;
  width: 100%;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
/*  padding: 0 1rem; */
}

.sp-only {
  display: none;
}

.logotxt-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.logotxt-header h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--ouchiblue);
}

.heading-logo {
  width: 100%;
  max-width: 377px;
  height: auto;
}

section {
  scroll-margin-top: 60px; /* ヘッダー高さ */
}

a:hover{
  opacity: 0.6;
}

@media screen and (max-width: 767.9px) {
  .logotxt-header {
    gap: 0;
  }

  .sp-only {
    display: inline;
  }
}


/******************************************************************/
/* HEADER */
/******************************************************************/
header.siteheader{
  background-color: var(--ouchilight-yellow);
  box-shadow:0px 4px 4px rgba(221, 221, 221, 0.2);
  position: sticky;
  top: 0;
  padding:1rem 2.5rem 0 2.5rem;
  z-index:100;
}
header.siteheader h1{ margin:0; padding:0;}
@media screen and (max-width: 767.9px) {
  header.siteheader{
    padding:0.5rem 1rem 0px 1rem;
  }
  header.siteheader h1 img{
    width:100%;
  }
}



/******************************************************************/
/* MAIN */
/******************************************************************/
picture.heroimg img{
  width:100%;
}


/* Feature Section */
.feature-section{
  padding:2.25rem 1rem 4rem 1rem;
}
.circular-features {
  display: flex;
  justify-content: space-between;
  margin-bottom:1rem;
}
.circular-feature {
  box-sizing: border-box;
  width: 304px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 8px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.circular-feature-blue {
  background: var(--ouchiblue);
}
.circular-feature-orange {
  background: var(--ouchiorange1);
}
.circular-feature-green {
  background: var(--ouchiyellow-green1);
}
.feature-content {
  text-align: center;
  font-size: clamp(1.05rem, 3.6vw, 1.5rem);
  font-weight: 500;
  color: var(--ouchiwhite);
  letter-spacing: 0.03em;
  line-height: 1.45;
  padding: 0.8rem;
}

.feature-content span {
  display: block;
  font-size: clamp(1.6rem, 5.4vw, 2.25rem);
  font-weight: 800;
  color: var(--ouchiyellow);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

@media screen and (max-width: 767.9px) {
  .feature-section{
    padding:1.25rem 1rem 4rem 1rem;
  }
  .circular-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .circular-feature {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: 304px;
    aspect-ratio: 1 / 1;
    border: 4px solid white;
  }

  .circular-feature:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }
}

.financial-planning-card {
  box-sizing: border-box;
  background: var(--ouchilight-blue2);
  border: 6px solid var(--ouchiblue);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.planning-ceo {
  flex: 0 0 25%;
}

.planning-ceo img {
  width: 100%;
  display: block;
  max-width:230px;
}

.planning-details {
  flex: 1;
}

.planning-details h2.planning-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ouchiorange1);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.planning-details h2.planning-title span { 
  font-size: 2rem;
  color: var(--ouchiblue);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.bullet-points {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.planning-details ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  padding: 0;
  margin: 0;
}

.planning-details ul li {
  position: relative;
  list-style: none;
  padding-left: 0.8em;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ouchiblack);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.planning-details ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.7em;
  color: var(--ouchiorange1);
  font-size: 0.5em;
}


.planning-image {
  width: 13rem;
  object-fit: cover;
  border: 1px solid var(--ouchigray2);
  flex-shrink: 0;
  display: block;
}

@media screen and (max-width: 1024px) {
  .bullet-points {
    flex-direction: column;
    gap: 1rem;
  }

  .planning-image {
    width: 100%;
  }

  .planning-details h2.planning-title {
    line-height: 1.2;
    text-align:center;
  }

  .financial-planning-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .planning-ceo,
  .planning-details {
    width: 100%;
  }

  .planning-ceo img {
    width: 60%;
    margin: 0 auto;
  }

}


.arrow-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.arrow-icon {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

.cta-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ouchiblack);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}

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

.cta-element {
  width: clamp(96px, 20vw, 160px);
  height: auto;
}

.cta-card {
  background: var(--ouchiblue);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-header-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ouchiwhite);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.cta-header-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ouchiwhite);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.cta-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.star-icon {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

.cta-badge {
  background: var(--ouchiyellow);
  color: var(--ouchiblue);
  padding: 0.5rem 1.5rem;
  border-radius: 2.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.cta-promise {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.promise-highlight {
  color: var(--ouchiyellow);
}

.promise-text {
  color: var(--ouchiwhite);
}

@media screen and (max-width: 767.9px) {

  .cta-header-text {
    font-size: 1.5rem;
  }

  .cta-header-main {
    font-size: 2rem;
  }

  .cta-card {
    padding:1.5rem 1rem;
  }

  .cta-badge-wrapper {
    gap:0.25rem;
  }

  .star-icon {
    width: 30px;
  }

  .cta-badge {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .cta-promise {
    font-size: 1.75rem;
  }
}



/* Info Section */
.info-section {
  background: var(--ouchiwhite);
  padding: 5rem 1rem;
}

.info-header {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.info-header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.free-badge {
  background: var(--ouchiorange1);
  color: var(--ouchiwhite);
  padding: 0.5rem 1.5rem;
  border-radius: 56px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.info-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.title-orange,.title-blue{
  font-size: 2rem; 
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.title-orange {
  color: var(--ouchiorange1);
}
.title-blue {
  color: var(--ouchiblue);
}

.info-title span.uetsuki {
  font-size: 1rem; 
  font-weight: 400;
  vertical-align: top;
}

.info-main-title {
  font-size: 3rem; 
  font-weight: 700;
  color: var(--ouchiblue);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom:1rem;
}

.info-description ,.difference-description {
  width: 100%;
  font-size: 1rem; 
  font-weight: 500;
  color: var(--ouchiblack);
  letter-spacing: 0.003em;
  line-height: 1.8;
  padding-top:1rem;
  padding-bottom:1.5rem;
}

.small-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.6;
}

.info-image {
  width: 200px;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .info-image {
    display: none;
  }

  .info-section {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }

  .info-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-header-content {
    min-width: auto;
    width: 100%;
    gap:0;
  }


/*
  .free-badge,
  .title-orange,
  .title-blue {
    font-size: 1.25rem;
  }
*/

  .free-badge{
    margin-bottom:0.5rem;
  }

  .title-orange,.title-blue {
    line-height:1.4;
  }

  .info-main-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom:0;
  }

  .difference-description {
    padding:0;
  }
}


.service-items {
  display: flex;
  flex-wrap: wrap;
/*  justify-content: center; */
  justify-content: flex-start;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 3rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 0 1 120px;
}

.service-item img {
  width: 120px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.service-item p {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ouchiblue);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {

  .service-items {
    gap: 0.5rem;
  }

  .service-item {
    flex: 0 1 calc(25% - 0.375rem);
  }

  .service-item img {
    width: 100%;
    max-width: 72px;
  }

}


.promise-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.promise-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* 左線 / 文字 / 右線 */
  align-items: center;
  column-gap: 1.375rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ouchiblue);
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}

.promise-title::before,
.promise-title::after {
  content: '';
  height: 2px;
  background: var(--ouchiorange1);
  min-width: 1.5rem;
}

.promise-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.promise-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 4.5rem) / 4);
  background: var(--ouchilight-blue2);
  border: 2px solid var(--ouchiblue);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.promise-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ouchiorange1);
  text-align: center;
  letter-spacing: 0.035em;
  line-height: 1.2;
  white-space: pre-line;
}

.promise-card p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ouchiblack);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.starsection-common {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 6rem;
}

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

.section-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ouchiblue);
  letter-spacing: 0.03em;
  line-height: 1.4;
  white-space: nowrap;
}


@media screen and (max-width: 767.9px) {
  .starsection-common {
    margin-bottom: 3.5rem;
  }
}

.media-description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ouchiblack);
  letter-spacing: 0.003em;
  line-height: 1.8;
}

.media-description h4{
  font-size: 1.125rem;
  font-weight: 700;
  color : var(--ouchiorange1);
  margin-top:1rem;
  margin-bottom:0.5rem;
}

.media-description ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.media-description li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 700;
}

.media-description li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--ouchiorange1);
  font-size: 0.9em;
}

.media-description li span{
  margin-left:0.5rem;
  color: var(--ouchiblue);
}

/* ScrollHint */
.scrollhint-wrapper {
  width: 100%;
  overflow: visible;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  position: relative;
  align-self: stretch;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  min-width: 720px;
  border-collapse: collapse;
  width: 100%;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--ouchigray2);
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
}

.comparison-table th {
  background: var(--ouchilight-blue2);
  font-weight: 700;
}

.comparison-table th:first-child {
  text-align: left;
  white-space: nowrap;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--ouchiwhite);
  text-align:right;
}

.comparison-table .highlight {
  background: var(--ouchiorange4);
  color: var(--ouchiorange1);
}


span.nijumaru,span.maru,span.sankaku{
  font-size:1rem;
  display:block;
  font-weight: 800;
}
span.nijumaru{
  color: var(--ouchiyellow-green1);
}

span.maru{
  color: var(--ouchiorange1);
}



.comparison-table small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
}


@media screen and (max-width: 767.9px) {
  .promise-card {
    flex: 0 0 100%;
  }

  .promise-cards {
    gap: 1rem;
  }

  .section-header h3 {
    font-size: 1.25rem;
    white-space: normal;
    text-align: center;
  }

  .media-description ul {
    display: block;
  }

  .media-description li {
    white-space: normal;
    line-height: 1.8;
  }
}

.media-images {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.media-image {
  flex: 0 0 calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-image img {
  max-width: 100%;
  height: auto;
}

.mediatitle {
  position: relative;
  color: var(--ouchiblue);
  font-size: 1rem;
  font-weight:800;
  line-height: 1.8;
  text-align: left;
  width: 100%;
}

.mediatitle::before {
  content: "●";
  color: var(--ouchiorange1);
  font-size: 0.9em;
  display: inline-block;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.media-image .caption {
  margin-top: 0.5rem;
  color: var(--ouchiblack);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}
.media-image .caption a{
  color: var(--ouchiblack);
}

@media screen and (max-width: 767.9px) {
  .media-image {
    flex: 0 0 100%;
  }
}

/* Flow Section */
.flow-section {
  background: var(--ouchiorange4);
  border-radius: 1rem;
  padding: 5rem 1rem;
}

@media (max-width: 768px) {
  .flow-section {
    padding: 3.75rem 1rem;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step {
  background: var(--ouchiwhite);
  border: 0.125rem solid #ef8200;
  border-radius: 1rem;
  overflow: hidden;
  padding:2.5rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
}

.step-number {
  background: var(--ouchiorange1);
  color: var(--ouchiwhite);
  border-radius: 2.5rem;
  padding: 0.25rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.step-number strong {
  font-weight: 700;
  font-size: 2rem;
}

.step-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ouchiorange1);
}

.step-body {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.step-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.step-highlight {
  font-weight: 700;
  color: var(--ouchiblue);
  margin-top: 0.5rem;
}

.step-button {
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  border-radius: 2.5rem;
  background: var(--ouchiyellow-green1);
  color: var(--ouchiwhite);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; 
}
a.step-button {
  text-decoration:none;
}

.step-button img{
  width:20px;
  height: auto;
  display: block; 
}

.step-image {
  width: 7.5rem;
  align-self: flex-end;
}

.step-arrow {
  width: 2.5rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .step {
    padding:1rem;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom:0;
  }

  .step-number {
    padding: 0 2.25rem;
    align-self: flex-start;
  }

  .step-header h3 {
    white-space: normal;
    font-size: 1.6rem;
  }
  .step-image {
    display: none;
  }

}


/* CTA Consultation Section */
.cta-consultation-section {
  padding: 0.5rem 1rem 5rem 1rem;
  position: relative;
}

.cta-top-image {
  display: block;
  margin: 0 auto -0.1rem auto;
  width: 10rem;
  height: auto;
}

.cta-consultation-card {
  background: var(--ouchiblue);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-consultation-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-consultation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.consultant-avatar {
  width: 6rem;
  height: auto;
  object-fit: cover;
}

.consultation-message {
  display: flex;
  flex-direction: column;
}

.message-highlight {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ouchiyellow);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.message-promise {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.promise-yellow {
  color: var(--ouchiyellow);
}

.promise-white {
  color: var(--ouchiwhite);
}

.gift-banner {
  background: #fff5f5;
  border: 0.1875rem solid var(--ouchired2);
  border-radius: 1rem;
  padding: 1rem 2rem 0.5rem 4rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.gift-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gift-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ouchiblack);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.gift-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ouchired2);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.gift-image {
  width: 8.5rem;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-types {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-item {
  background: var(--ouchiwhite);
  border-radius: 1rem;
  flex: 1 1 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cta-item-header {
  padding: 0.5rem;
  border-radius: 0.8rem 0.8rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--ouchiwhite);
}

.cta-phone .cta-item-header {
  background: var(--ouchiblue2);
}

.cta-line .cta-item-header {
  background: var(--ouchiyellow-green2);
}

.cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
}

.cta-body a{
  text-decoration:none;
}

.cta-phone{
  border: 0.125rem solid var(--ouchiblue2);
}

.cta-line{
  border: 0.125rem solid var(--ouchiyellow-green2);
}

.cta-phone .cta-body,
.cta-phone .cta-body a {
  color: var(--ouchiblue);
}

.cta-line .cta-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--ouchiyellow-green1);
  text-align:left;
  padding-top:0.75rem;
}

.line-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem; /* アイコンと文字の間隔 */
  text-decoration: none;
}

.line-contact img,
.line-contact .line-text {
  display: inline-block;
  vertical-align: middle;
}

.line-logo {
  width: 3.5rem;
  height: auto;
  object-fit: cover;
}

.line-text {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ouchiyellow-green1);
  white-space: nowrap;
}

.line-arrow {
  width: 2.5rem;
  height: auto;
  object-fit: cover;
}

.cta-main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  gap: 0.5rem;
}

.cta-sub-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-sub-text span {
  color: var(--ouchiblack);
}

.cta-form-wrapper {
  display: flex;
  justify-content: center;
}

.cta-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--ouchiorange1);
  color: var(--ouchiwhite);
  font-size: 1.5em;
  font-weight: 800;
  padding: 1em 1.5em;
  border-radius: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta-form-button img {
  width: 30px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .cta-consultation-section {
    padding: 0.5rem 1rem 3.75rem 1rem;
  }



  .cta-consultation-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .cta-consultation-card {
    padding: 1rem;
  }

  .gift-banner {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
    gap: 0.75rem;
  }

  .gift-text {
    width: 100%;
  }

  .gift-title {
    font-size: 1.4rem;
  }

  .gift-main {
    font-size: 2rem;
    width: 100%;
  }

  .gift-image {
    width: 5.5rem;
  }

  .cta-types {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cta-item {
    max-width: none;
    width: 100%;
  }

  .cta-item-header h3 {
    font-size: 1.25rem;
  }

  .cta-form-button {
    padding: 1em 1em;
    gap: 0.5rem;
  }

}


/* FAQ Section */
.faq-section {
  background: var(--ouchilight-blue2);
  padding: 5rem 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--ouchiwhite);
  border: 0.125rem solid var(--ouchiblue);
  border-radius:1rem;
  margin-bottom:1.625rem;
}

.faq-item-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem 1rem 2.5rem ;
  gap: 1rem;
  background: var(--ouchiblue);
  border-radius:0.8rem 0.8rem 0 0;
}

.faq-q {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 6.5rem;
  height: 6.5rem;
  background: var(--ouchiyellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ouchiblack);
  flex-shrink: 0;
}
.faq-q span {
  display: inline-block;
  margin-bottom: 0.125rem;
  border-bottom: 2px dotted;
}
.faq-item-header h3 {
  margin-left: 7.5rem; /* 黄円分の余白 */
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ouchiwhite);
}

.faq-body {
  padding:1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ouchiblack);
}

.faq-body p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
}

.faq-body p img {
  width: 165px;
  height: auto;
  flex-shrink: 0;
}

.faq-item:nth-child(3n + 1) {
  border-color: var(--ouchiorange1);
}
.faq-item:nth-child(3n + 1) .faq-item-header {
  background: var(--ouchiorange1);
}
.faq-item:nth-child(3n + 1) .faq-q span {
  border-bottom-color: var(--ouchiorange1);
}

.faq-item:nth-child(3n + 2) {
  border-color: var(--ouchiyellow-green1);
}
.faq-item:nth-child(3n + 2) .faq-item-header {
  background: var(--ouchiyellow-green1);
}
.faq-item:nth-child(3n + 2) .faq-q span {
  border-bottom-color: var(--ouchiyellow-green1);
}

.faq-item:nth-child(3n) {
  border-color: var(--ouchiblue);
}
.faq-item:nth-child(3n) .faq-item-header {
  background: var(--ouchiblue);
}
.faq-item:nth-child(3n) .faq-q span {
  border-bottom-color: var(--ouchiblue);
}

@media screen and (max-width: 767.9px) {

  .faq-section {
    padding: 3.75rem 1rem;
  }

  .faq-item {
    padding: 0;
    margin-bottom:0.875rem;
  }

  .faq-item-header {
    position: relative;
    align-items: center;
    padding: 6rem 1.5rem 1rem 1.5rem; /* 円の分だけ上に余白 */
    gap: 0;
  }

  .faq-q {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .faq-item-header h3 {
    margin-left: 0;
    font-size: 1.25rem;
  }

  .faq-body p {
    flex-direction: column;
    align-items: center;
  }

  .faq-body p img {
    width: 100%;
    max-width: 165px;
  }
}


/* Voices Section */
.voices-section {
  background: var(--ouchiorange4);
  border-radius: 1rem;
  padding: 5rem 1rem;
}


.voice-types {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.voice-illustration {
  display: flex;
  justify-content: center;
}

.voice-illustration img{
  width: 10rem;
  height: auto;
}

.voice-type-holder {
  width:100%;
  display: flex;
  flex-direction: column;
}
.voice-item {
  background: var(--ouchiwhite);
  border: 0.125rem solid var(--ouchiblue2);
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 2.25rem 1.875rem;
}

.voice-item-header {
  padding-bottom: 1.25rem;
}

.voice-item-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ouchiblue);
}

.voice-info {
  font-weight: 500;
  padding: 0.5rem 0;
  border-top: 2px dotted var(--ouchiorange1);
  border-bottom: 2px dotted var(--ouchiorange1);
}

.voice-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ouchiblack);
  padding-left: 5.6em;   /* 「お客様名：」分 */
  text-indent: -5.6em;
}

.voice-info-title {
  color: var(--ouchiorange1);
  margin-right:0.3rem;
}

.voice-body {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
.voice-qa {
  margin: 0;
}

.voice-qa dt {
  position: relative;
  font-weight: 700;
  color: var(--ouchiblue);
  line-height: 1.6;
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-top: 1rem;
}

.voice-qa dt:first-child {
  margin-top: 0;
}
.voice-qa dt::before {
  content: "Q";
  font-weight: 800;
  color: var(--ouchiblue);
  margin-right: 0.5em;
}
.voice-qa dd {
  font-weight: 500;
  line-height: 1.7;
}
.voice-qa dd span{
  color: var(--ouchiorange1);
}

@media screen and (max-width: 767.9px) {
  .voices-section {
    padding: 3.75rem 1rem;
  }

  .voice-types {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .voice-item-header h3 {
    font-size: 1.25rem;
  }
}



/* Form Section */
.form-section {
  background:var(--ouchiwhite);
  padding: 4rem 1rem;
}

.form-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ouchiblue);
}
.form-gift-card{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom:4rem;
}
div.form-title h3{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ouchiorange1);
  text-align:center;
  margin-bottom:2rem;
}



.divider-image {
  display: flex;
  justify-content: center;
  width: 100%;
}

.divider-image img {
  max-width: 345px;
  width: 100%;
  height: auto;
}
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  background: var(--ouchilight-blue1);
  border: none;
  font-size: 1rem; 
  font-weight: 700;
  color: var(--ouchiblack);
  line-height: 1.8;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a.back-to-top {
  text-decoration:none;
}

.back-to-top img {
  width: 2.5rem;
  height: auto;
}


@media screen and (max-width: 767.9px) {
  .form-section {
    padding: 3.75rem 1rem;
  }
}



/******************************************************************/
/* FOOTER */
/******************************************************************/
footer.site-footer {
  background: var(--ouchiblue);
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.footer-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ouchiwhite);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.8;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 840px;
}

.footer-logo {
  width: 100%;
  max-width: 27rem;
  height: auto;
}

.store-info-cards {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  width: 100%;
}

.store-card {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.store-card-header {
  background: var(--ouchiorange1);
  padding: 0.75rem 0 0.5rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ouchiwhite);
  letter-spacing: 0.035em;
  line-height: 1.4;
}

.store-card-body {
  background: var(--ouchiwhite);
  border: 0.25rem solid #ef8200;
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
}

.store-card-body address {
  font-style: normal;
  color: var(--ouchiblack);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ouchiblue);
  text-decoration: underline;
  letter-spacing: 0.02em;
  line-height: 1.8;
  transition: opacity 0.2s;
}

.store-details {
  display: flex;
  flex-direction: column;
}

.store-details div {
  display: flex;
  gap: 0.5rem;
}

.detail-label {
  color: var(--ouchiblue);
  letter-spacing: 0.02em;
  line-height: 1.6;
  white-space: nowrap;
}

.store-details span:not(.detail-label) {
  color: var(--ouchiblack);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.store-phone {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.store-phone a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ouchiblue);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.footer-info p,
.privacy-link,
.copyright {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ouchiwhite);
  text-align: center;
  letter-spacing: 0.015em;
  line-height: 1.6;
}
.privacy-link{
  text-decoration:none;
}

@media screen and (max-width: 767.9px) {
  footer.site-footer {
    padding: 1rem 1rem 6rem 1rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0;
  }
  .footer-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.25rem 0;
  }

  .store-info-cards {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .store-card-body {
    padding: 1.5rem;
  }

  .store-phone {
    gap: 0;
  }

}









/******************************************************************/
/* FLOATING CTA */
/******************************************************************/
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: -webkit-transform .5s cubic-bezier(.4, 0, .2, 1), opacity .4s ease;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .4s ease;
  pointer-events: none;
  -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
}

.floating-cta.is-visible {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.floating-cta-trust {
  display: none;
}

.floating-cta-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #0f6ebe;
  background: -webkit-linear-gradient(top, #1a7fd4 0%, #0f6ebe 100%);
  background: linear-gradient(180deg, #1a7fd4 0%, #0f6ebe 100%);
}

.floating-btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 6px;
  text-decoration: none;
  color: #fff;
  position: relative;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.floating-btn:active {
  opacity: .85;
}

.btn-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.floating-btn-phone {
  background: #ef8200;
  background: -webkit-linear-gradient(top, #ff9315 0%, #ef8200 100%);
  background: linear-gradient(180deg, #ff9315 0%, #ef8200 100%);
}

.floating-btn-line {
  background: #06C755;
  background: -webkit-linear-gradient(top, #00D95F 0%, #06C755 100%);
  background: linear-gradient(180deg, #00D95F 0%, #06C755 100%);
}

.floating-btn-form {
  background: #3b82c4;
  background: -webkit-linear-gradient(top, #4a94d6 0%, #3b82c4 100%);
  background: linear-gradient(180deg, #4a94d6 0%, #3b82c4 100%);
}

.floating-cta-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  padding: 6px 12px;
  font-size: .6875rem;
  font-weight: 600;
  color: #666;
}

.footer-badge {
  background: #e53935;
  color: #fff;
  font-size: .5625rem;
  font-weight: 800;
  padding: 2px 6px;
  margin-right: 5px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: .03em;
}

.footer-text {
  color: #0f6ebe;
  font-weight: 800;
  margin-right: 3px;
}

.footer-divider {
  color: #ddd;
  margin: 0 6px;
  font-weight: 300;
}

.floating-cta-footer svg {
  fill: #2e7d32;
  width: 13px;
  height: 13px;
  margin-right: 3px;
}

.footer-trust {
  color: #555;
}

/*
@media screen and (max-width: 767.9px) {
  main {
    padding-bottom: 72px;
  }
}
*/


/* タブレット表示 (768px - 1023px) */
@media screen and (min-width: 768px) {
  .floating-cta {
    bottom: 14px;
    right: 14px;
    left: auto;
    width: auto;
    min-width: 175px;
    max-width: 190px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%);
    -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
  }

  .floating-cta.is-visible {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .floating-cta-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #FFE135;
    background: -webkit-linear-gradient(315deg, #FFE847 0%, #FFD600 100%);
    background: linear-gradient(135deg, #FFE847 0%, #FFD600 100%);
    padding: 5px 12px;
  }

  .cta-badge-free {
    background: #e53935;
    color: #fff;
    font-size: .5rem;
    font-weight: 800;
    padding: 2px 6px;
    margin-right: 6px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    letter-spacing: .02em;
  }

  .cta-header-text {
    color: #0f6ebe;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .03em;
  }

  .floating-cta-inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .floating-btn {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: 36px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .floating-btn:last-child {
    border-bottom: none;
  }

  .floating-btn:hover {
    opacity: .9;
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px);
  }

  .btn-icon {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .btn-icon svg {
    width: 14px;
    height: 14px;
  }

  .btn-label {
    font-size: .6875rem;
    font-weight: 700;
  }

  .floating-cta-footer {
    display: none;
  }

  .floating-cta-trust {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    padding: 5px 10px;
    margin: 0;
    font-size: .5625rem;
    font-weight: 600;
    color: #0f6ebe;
  }

  .floating-cta-trust svg {
    width: 11px;
    height: 11px;
    fill: #2e7d32;
    margin-right: 3px;
  }
}


/* PC表示 (1024px+) */
@media screen and (min-width: 1024px) {
  .floating-cta {
    bottom: 18px;
    right: 18px;
    min-width: 190px;
    max-width: 210px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
  }

  .floating-cta-header {
    padding: 6px 14px;
  }

  .cta-badge-free {
    font-size: .5625rem;
    padding: 2px 7px;
  }

  .cta-header-text {
    font-size: .75rem;
  }

  .floating-btn {
    min-height: 40px;
    padding: 9px 14px;
  }

  .btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }

  .btn-icon svg {
    width: 15px;
    height: 15px;
  }

  .btn-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
  }

  .floating-cta-trust {
    padding: 6px 12px;
    font-size: .625rem;
  }

  .floating-cta-trust svg {
    width: 12px;
    height: 12px;
  }
}

@media print {
  .floating-cta {
    display: none;
  }
}
