

/*---- モバイルファースト----*/
/* Reset and Base Styles */
body {
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

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

.app-container {
  background: white;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

/* Header Section */
.header {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
	height: auto;
	padding-top: 370px;
	padding-bottom: 24px;
}

.header-bg-desktop {
  position: absolute;
  inset: 0;
  display: none;
}

.header-bg-desktop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-bg-mobile {
  position: absolute;
  inset: 0;
}

.header-bg-mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: 80%;
  max-width: 1251.15px;
}

.header-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}


/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.desktop-nav-links {
  position: absolute;
  left: 569px;
  top: 33px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.nav-link {
  font-size: 16px;
  color: black;
  cursor: pointer;
}

.desktop-buttons {
  display: contents;
}
.btn-download {
	background-color: var(--orange);
	color: #fff;
	border-radius: 100px;
	padding: 12px 24px;
	align-items: center;
	justify-content: center;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid #e78532;
}



/* Mobile Hamburger */
.mobile-hamburger {
  position: fixed;
  right: 11px;
  top: 10px;
  z-index: 50;
}

.hamburger-button {
  width: 39px;
  height: 39px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s;
}
.hamburger-button i {
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 440px;
  background: white;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu-open {
  transform: translateX(0);
}

.mobile-menu-content {
  position: relative;
  height: 100%;
  background: rgba(231, 133, 50, 0.3);
  padding: 24px;
}

.mobile-menu-item {
  font-weight: 500;
  font-size: 16px;
  color: var(--blue);
  text-align: center;
  margin-top: 25px;
	display: block;
}

.mobile-menu-item:first-child {
  margin-top: 160px;
}

.mobile-menu-buttons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-btn-download,
.mobile-btn-contact {
	height: 57px;
	border-radius: 28.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	transition: opacity 0.3s;
	padding: 10px 26px;
}
.mobile-btn-download {
	background-color: var(--orange);
	color: #fff;
}

.mobile-btn-contact {
	background:#fff;
	color: var(--orange);
	border: solid 1px var(--orange);
}




/* Hero Content */
.hero-content {
  position: relative;
  left: auto;
  top: auto;
	padding: 0 24px 24px; 
}

.hero-subtitle {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3b617d;
  letter-spacing: 0.8px;
}

.hero-line {
  height: 0;
  width: 149px;
  margin-top: 7px;
  border-bottom: 2px solid #3B617D;
}

.hero-title-wrapper {
  margin-top: 13px;
}

.hero-title-1 {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #3b617d;
  line-height: 50px;
  letter-spacing: 1.6px;
  margin-bottom: 0;
}

.hero-title-2 {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #e78532;
  line-height: 50px;
  letter-spacing: 1.6px;
}

.hero-title-accent {
  color: #3b617d;
}

.hero-description {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #404040;
  margin-top: 18px;
}

.hero-cta {
  background: #e78532;
  height: 58px;
  border-radius: 29px;
  width: 222px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.hero-cta:hover {
  opacity: 0.9;
}

.hero-cta a {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: white;
}

/* Problems Section */
.problems-section {
  background: var(--grad);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 85%;
  margin: 0 auto;
  position: relative;
}

.problems-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: white;
  line-height: 34px;
}

.problems-title-block {
  display: block;
}

.problems-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-circle {
	position: relative;
	width: 137px;
	height: 137px;
	background-color: #fff;
	border-radius: 1000px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.problem-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.problem-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 32px;
  font-size: 15px;
  text-align: center;
  color: #e78532;
  white-space: pre-line;
}

.problems-conclusion {
  margin-top: 25px;
  max-width: 396px;
  margin-left: auto;
  margin-right: auto;
}


.conclusion-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: white;
  line-height: 32px;
  padding: 0 16px;
}

.conclusion-text span {
	display: inline-block;
	color: #fff;
	background-color: #e78532;
	margin: 5px;
	padding: 0 3px;
}

/* Service Section */


.service-section {
  padding: 48px 0;
  position: relative;
}

.section-bg-text {
  position: absolute;
  left: 22px;
  top: 42px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #f3f3f3;
}

.section-subtitle {
  background: linear-gradient(to bottom, #e78532, #f97966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 47px;
}

.section-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #324c6b;
  letter-spacing: 1px;
  margin-top: 8px;
}

.section-title-highlight {
  font-weight: 800;
  color: #e78532;
}

.service-description {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  line-height: 24px;
  margin-top: 22px;
  max-width: 401px;
}

.service-list {
  display: flex;
  justify-content: center;  /* 中央寄せ */
  gap: 24px;                /* 各ボックスの間隔 */
  flex-wrap: wrap;          /* 小さい画面では折り返す */
  margin-top: 48px;
}	
	.service-item {
		padding: 32px 12px;
		background-color: #FEFFE6;
		border: solid 2px var(--orange);
		border-radius: 15px;
		color: var(--blue);
	}
	.service-item-ttl {
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 12px;
		text-align: center;
	}
	.service-item-txt {
		font-size: 15px;
		line-height: 1.6;
	}	
	
/*
.company-diagram {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.company-label {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #324c6b;
  letter-spacing: 0.8px;
}

.company-icon {
  position: relative;
  margin-top: 16px;
}

.company-icon img {
  width: 79px;
  opacity: 0.8;
}

.company-arrow {
  position: relative;
}

.company-arrow img {
  width: 214px;
}

.arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-icon svg {
  width: 42.465px;
  height: 79px;
}
*/


.reasons-header {
  margin: 36px 0;
  text-align: center;
}

.reasons-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reasons-logo img {
  height: 59.838px;
  width: auto;
}

.reasons-logo p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--blue);
  letter-spacing: 1.2px;
}

.reasons-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--blue);
  letter-spacing: 1.2px;
}

.reasons-number {
  color: #e78532;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 各ポイントカード */
.reason-card {
  background: #F2F2F2;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.reason-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reason-text {
  padding: 24px;
}

.reason-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 12px 12px;
}

.reason-point {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.reason-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--orange);
}

.reason-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
  margin-bottom: 16px;
}

.reason-title span {
  color: var(--orange);
}
.reason-description {
	color: #333;
	line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background: #feffe6;
  padding: 48px 0;
}

.benefits-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  text-align: center;
}

.benefits-quote {
  color: #e78532;
}

.benefits-highlight {
	color: var(--orange);
	font-size: 24px;
}

.benefits-image-wrapper {
  position: relative;
  margin-top: 32px;
}

.benefits-image {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.benefits-image-desktop {
  display: none;
  max-width: 1168px;
}

.benefits-image-mobile {
  display: block;
  max-width: 423.708px;
}

.benefits-box {
  background: white;
  max-width: 95%;
  margin: -32px auto 0;
  padding: 24px 0;
  position: relative;
	border-bottom: solid 2px #324c6b;
	border-top: solid 2px #324c6b;
}


.benefits-box-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  text-align: center;
}

.benefits-box-subtitle {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  text-align: center;
  line-height: 26px;
  margin-top: 16px;
}

.benefits-content {
  margin-top: 32px;
  max-width: 388px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-content p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #324c6b;
  line-height: 22px;
}

.benefits-content p + p {
  margin-top: 24px;
}

.benefits-conclusion {
  position: relative;
  margin-top: 36px;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-conclusion-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #e78532;
  text-align: center;
  line-height: 32px;
  position: relative;
  padding: 12px 0;
	background-color: #F7E0BA;
}

.mobile-break {
  display: inline;
}

/* CTA Section */
.cta-section {
  background: var(--grad);
  padding: 48px 0;
}

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

.cta-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: white;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}

.cta-button {
  background: white;
  height: 61px;
  border-radius: 30.5px;
  width: 289px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cta-button:hover {
  opacity: 0.9;
}

.cta-button p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--orange);
}

/* Flow Section */
.flow-section {
  padding: 48px 0;
  position: relative;
}


.flow-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.flow-step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step {
  background: #f8f8f8;
  border-radius: 5px;
  padding: 24px;
  width: 85%;
  max-width: 396px;
  height: auto;
  position: relative;
}

.flow-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  margin-top: -21px;
}

.flow-step-number svg {
  display: block;
  width: 100%;
  height: 100%;
}

.flow-step-number p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #f8f8f8;
}

.flow-step-icon {
  width: 53px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.flow-step-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #3b617d;
  text-align: center;
  line-height: 24px;
  margin-top: 10px;
  white-space: pre-line;
}

.flow-step-desc {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #404040;
  text-align: center;
  line-height: 26px;
  margin-top: 16px;
}

.flow-step-divider {
  margin: 16px 0;
  border-top: 2px dashed #E78532;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.flow-arrow svg {
  width: 30px;
  height: 30px;
  transform: rotate(180deg);
}

/* FAQ Section */
.faq-section {
  background: var(--orange);
  padding: 24px 0;
}

.faq-header {
  position: relative;
}

.faq-bg-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: white;
  opacity: 0.2;
  text-align: center;
}

.faq-subtitle {
  display: none;
}

.faq-title {
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  white-space: nowrap;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 397px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
	background: white;
	box-shadow: 0px 4px 4px 0px rgba(213, 213, 213, 0.25);
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.faq-item:hover {
	background: #f9fafb;
}
.faq-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-q {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #206aa4;
  letter-spacing: 3.2px;
}

.faq-question-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #666666;
}

.faq-icon {
  width: 15px;
  height: 15px;
}

.faq-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.faq-answer {
  display: none;
  padding: 0 16px 16px 56px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #404040;
  line-height: 1.6;
  border-top: 1px solid #e5e5e5;
}

/* 開いた状態 */
.faq-item.active .faq-answer {
  display: block;
}

/* ＋→－の切り替え（縦線を消す） */
.faq-item.active .faq-line-vertical {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* アニメーションを滑らかにするための初期状態 */
.faq-line-vertical {
  transition: opacity 0.2s ease;
}
/* Overview Section */
.overview-section {
  background: #fff;
  padding: 24px 0;
}

.overview-header {
  position: relative;
}

.overview-bg-text {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 64px;
	color: #f3f3f3;
	position: absolute;
	left: 22px;
	
}

.overview-table {
	margin: 36px auto;
	max-width: 76%;
}

.overview-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.overview-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  line-height: 46px;
	white-space: nowrap;
}

.overview-value {
	font-size: 12px;
	line-height: 24px;
	border-bottom: solid 1px #CACACA;
	padding-bottom: 10px;
}

/* Contact Section */
.contact-section {
  background: #f3f3f3;
  padding: 24px 0;
}

.contact-header {
  position: relative;
  text-align: center;
}

.contact-bg-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: white;
}

.contact-subtitle {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #e78532, #f97966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  opacity: 0.7;
}

.contact-title {
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #324c6b;
}

.contact-form {
  margin-top: 40px;
  max-width: 347px;
  margin-left: auto;
  margin-right: auto;
  background: white;
  padding: 24px;
  border-radius: 10px;
}

.contact-intro {
  font-size: 11px;
  color: #404040;
  text-align: center;
  line-height: 24px;
}

.form-fields {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
}
.required {
	color: #FF3333;
}
.form-label {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #324c6b;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  background: #f3f3f3;
  border: 1px solid #cacaca;
  border-radius: 5px;
  padding: 16px;
}

 .form-field input {
  height: 50px;
  display: flex;
  align-items: center;
}

.form-textarea {
  height: 176px;
}

.form-input p,
.form-textarea p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
}
.form-input::placeholder {          
  font-size: 14px;          /* フォントサイズ */
  opacity: 1;               /* Safariなどで薄くなるのを防ぐ */
  line-height: 1.6;         /* 行間を整える */
}
.form-textarea::placeholder {          
  font-size: 14px;          /* フォントサイズ */
  opacity: 1;               /* Safariなどで薄くなるのを防ぐ */
  line-height: 1.6;         /* 行間を整える */
}
.form-divider {
  height: 1px;
  background: #DDDDDD;
  margin-top: 24px;
}

.form-submit {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.submit-button {
  background: var(--orange);
	color: #fff;
	font-weight: 600;
  height: 38px;
  border-radius: 5px;
  width: 163px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.submit-button:hover {
  opacity: 0.9;
}


/* Footer */
footer {
	background-color: #404040;
	color: #fff;
	padding: 1rem 2rem;
	margin:0;
	overflow:hidden;
	margin-top: auto;
		
}
.footer-inner {
  display: block;
  padding: 20px 0;
}

/* 左カラム（会社情報） */
.footer-left .footer-name {
	font-weight: bold;
	margin-bottom: 6px;
	font-size: 20px;
}

.footer-left {
  margin-bottom: 24px; /* SNS リストとの間の余白 */
}
.footer-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}
.footer-add {
	font-size: 10px;
	margin-top: 0;
}
/* 右カラム（SNSタイトル） */
.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 13px;
	border-bottom: solid 1px #f3f3f3;
	padding-bottom: 10px;
}

/* SNS リスト */
.footer-sns-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sns-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-sns-list li img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-sns-list a {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	font-size: 12px;
}

.footer-sns-list a:hover {
  opacity: 0.8;
}

footer .copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
}



/* サンクスページ専用リセット */
.thanks-page .header {
  padding-top: var(--nav-h, 80px) !important; /* ヘッダー内ナビ高さだけ確保 */
  min-height: auto !important;
  height: auto !important;
}

/* hero や背景など不要部分を非表示 */
.thanks-page .header-bg-desktop,
.thanks-page .header-bg-mobile,
.thanks-page .header-overlay,
.thanks-page .hero-content {
  display: none !important;
}

/* デスクトップ時も同様に適用 */
@media (min-width: 1024px) {
  .thanks-page .header {
    min-height: auto !important;
    padding-top: var(--nav-h, 80px) !important;
  }
}

.thanks-title {
	text-align: center;
	font-size: 20px;
	color: var(--orange);
	margin: 4rem auto;
	padding-bottom: 10px;
	border-bottom: solid;
}
.thanks-text {
	text-align: center;
}
.thanks-btn {
	width: fit-content;
	background-color: var(--orange);
	color: #fff;
	padding: 12px 24px;
	margin: 3rem auto;
	border-radius: 100px;		
}

/* Desktop Styles */
@media (min-width: 1024px) {
	.header {
		max-width: none;   
		width: 100vw;      
		margin: 0;         
		min-height: 800px;   
		padding-top: 0;         
	}
  .header-bg-desktop {
	  display: block;
	  width: 100%;
  }

  .header-bg-mobile {
    display: none;
  }

  .header-overlay {
    width: 40%;
  }

  .desktop-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: transparent;              /* ←最初は透明 */
    box-shadow: none;
    transition:
      background-color .25s ease,
      box-shadow .25s ease,
      backdrop-filter .25s ease;
  }
	.desktop-nav.nav-scrolled {
		background: rgba(255,255,255,0.9);
		box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	}



  .desktop-nav > .logo img {
    height: 48px;         
    width: auto;
  }

  .desktop-nav-links {
    position: static;      /* ← 重要 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex: 1;               /* 中央に広がる */
  }

  .desktop-buttons {
    position: static;      
    display: flex;
    align-items: center;
    gap: 24px;
  }


  .mobile-hamburger {
    display: none;
  }

  .hero-content {
	  position: absolute;      /* 従来どおり重ねる */
	  left: 10%;
	  top: 27%;
	  padding: 0;             
	}

  .hero-subtitle {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .hero-line {
    width: 224px;
    margin-top: 5px;
  }

  .hero-title-wrapper {
    margin-top: 43px;
  }

  .hero-title-1 {
    font-size: 40px;
    line-height: 66px;
    letter-spacing: 2px;
  }

  .hero-title-2 {
    font-size: 40px;
    line-height: 66px;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 16px;
    margin-top: 28px;
  }

  .hero-cta {
    margin-top: 32px;
  }

  .problems-section {
    padding: 64px 0;
	  overflow: visible;
  }

/* ▼下向き三角形を追加 */
.problems-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
	bottom: -80px;
  height: 80px; /* 三角形の高さ */
  background: #f97966; 
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
  .problems-title {
    font-size: 36px;
    line-height: 50px;
  }

  .problems-title-block {
    display: inline;
  }

  .problems-grid {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
  }

  .problem-circle {
    width: 170px;
    height: 170px;
  }

  .problem-text {
    font-size: 22px;
  }

  .problems-conclusion {
    margin-top: 110px;
    max-width: 1034px;
  }

  .conclusion-text {
    font-size: 32px;
  }
	.conclusion-text span {
		padding: 12px 20px;
	}

  .service-section {
    padding: 80px 0;
  }

  .section-bg-text {
    left: calc(50% - 584px);
    font-size: 200px;
  }

  .section-subtitle {
    font-size: 32px;
    margin-top: 134px;
  }

  .section-title {
    font-size: 36px;
    letter-spacing: 1.8px;
  }

  .service-description {
    font-size: 20px;
    line-height: 40px;
    max-width: none;
  }
	.service-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr); 
		width: 90%;
		margin: 4rem auto;
		
	}


  .company-label {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .company-icon img {
    width: 87px;
  }

  .company-arrow img {
    width: 244px;
  }

  .reasons-header {
    margin-top: 96px;
  }
	.reason-title {
		font-size: 1.6rem;
	}

  .reasons-logo img {
    height: 85px;
  }

  .reasons-logo p {
    font-size: 36px;
    letter-spacing: 1.8px;
  }

  .reasons-title {
    font-size: 36px;
    letter-spacing: 1.8px;
  }
	.reason-content {
		flex-direction: row;
		align-items: center;
		gap: 40px;
		background-color: var(--gray);
		padding: 2rem;
  }

  .reason-card.reverse .reason-content {
    flex-direction: row-reverse;
  }

  .reason-text {
    flex: 1;
    padding: 48px;
  }

  .reason-image {
    flex: 1;
  }

  .reason-image img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .reason-card {
    background: none;
    box-shadow: none;
  }


  .benefits-section {
    padding: 80px 0;
  }

  .benefits-title {
    font-size: 36px;
  }
	.benefits-highlight {
		font-size: 50px;
	}

  .benefits-image-desktop {
	  display: block;
	  max-width: 1168px;
	  object-fit: cover;
	  height: 500px;
  }

  .benefits-image-mobile {
    display: none;
  }

  .benefits-box {
    max-width: 796px;
    padding: 48px;
  }

  .benefits-box-title {
    font-size: 40px;
  }

  .benefits-box-subtitle {
    font-size: 28px;
    line-height: 45px;
  }

  .benefits-content {
    max-width: 878px;
  }

  .benefits-content p {
    font-size: 20px;
    line-height: 40px;
  }

  .benefits-conclusion {
    max-width: 654px;
  }

  .benefits-conclusion-bg {
    height: 34px;
  }

  .benefits-conclusion-text {
    font-size: 32px;
    line-height: 40px;
    padding: 0;
  }

  .mobile-break {
    display: none;
  }

  .cta-section {
    background: #e78532;
    padding: 80px 0;
  }

  .cta-box {
    padding: 64px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: row;
	  justify-content: center;
	  color: var(--orange);
	  font-weight: 700;
	  
  }

  .flow-section {
    padding: 80px 0;
  }

  .section-bg-text {
    left: calc(50% - 587px);
  }

  .section-subtitle {
    margin-top: 128px;
  }

  .flow-steps {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .flow-step {
    width: 204px;
  }

  .flow-step-number {
    left: calc(50% - 21px);
  }

  .flow-step-icon {
    width: 64px;
  }

  .flow-step-title {
    font-size: 20px;
    line-height: 28px;
  }

  .flow-step-desc {
    font-size: 16px;
  }

  .flow-arrow {
    display: none;
  }

  .faq-section {
    padding: 0 0 80px;
  }

  .faq-bg-text {
    font-size: 200px;
  }

  .faq-subtitle {
    top: 121px;
    left: calc(50% - 25px);
    transform: none;
    font-size: 32px;
  }

  .faq-title {
    top: 163px;
    left: calc(50% - 133px);
    transform: none;
    font-size: 40px;
  }

  .faq-list {
    max-width: 1028px;
  }

  .faq-item-content {
    padding: 24px;
  }

  .faq-q {
    font-size: 48px;
    letter-spacing: 4.8px;
  }

  .faq-question-text {
    font-size: 20px;
  }

  .faq-icon {
    width: 21px;
    height: 21px;
  }
	.faq-item.active .faq-answer {
		padding: 24px;
		font-size: 20px;
	}

  .overview-section {
    padding: 80px 0;
  }

  .overview-bg-text {
    font-size: 200px;
	  left: calc(50% - 556px);
  }

  .overview-subtitle {
    top: 154px;
    left: calc(50% - 556px);
    font-size: 32px;
  }

  .overview-title {
    top: 196px;
    left: calc(50% - 559px);
    font-size: 40px;
  }


.overview-table {
	margin: 45px auto;
	display: grid;
	grid-template-columns: 3fr 7fr;; 
	width: 62%;
}

	.overview-label,
	.overview-value {
		line-height: 70px;
		font-size: 20px;
		border-bottom: solid 1px var(--gray);
	}
	.overview-value {
		padding: 0;
	}

  .contact-section {
    padding: 0 0 80px;
  }

  .contact-bg-text {
    font-size: 200px;
  }

  .contact-subtitle {
    top: 121px;
    left: calc(50% - 87px);
    transform: none;
    font-size: 32px;
  }

  .contact-title {
    top: 163px;
    left: calc(50% - 119px);
    transform: none;
    font-size: 40px;
  }

  .contact-form {
    max-width: 966px;
    padding: 48px;
    border-radius: 0;
  }

  .contact-intro {
    font-size: 20px;
    line-height: 36px;
  }

  .form-label {
    font-size: 20px;
  }

  .form-input p,
  .form-textarea p {
    font-size: 16px;
  }

  .submit-button {
    height: 65px;
    width: 267px;
	  font-size: 18px;
  }
 
  .submit-button p {
    font-size: 20px;
  }

  .footer-inner {
	  width: 80%;
	  margin: auto;
	  display: flex;
	  align-items: flex-start;
	  padding: 30px 0;
	  justify-content: space-between;
  }

  .footer-left {
    margin-bottom: 0; /* 2 カラムなので余白をリセット */
  }
	.footer-left .footer-name {
		font-size: 3rem;
	}
	.footer-add {
		font-size: 16px;
	}
	.footer-right {
		margin-top: 10px;
	}
	.footer-title {
		font-size: 16px;
	}
	footer .copyright {
		margin-top: 30px;
		font-size: 14px;			
  }
}
@media (min-width: 1439px) {
	.section-container {
		max-width: 70%;
	}

}

