html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /* Added for modern use */
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.sp_only {
  display: none;
}

/***** 新規ヘッダー *****/
.header {
  background: white;
  position: fixed;
  height: 80px;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  height: 80px;
  padding-left: 20px;
  box-sizing: border-box;
}

.logo img {
  height: 50px;
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.nav {
  display: flex;
  gap: 30px;
  margin-right: 20px;
}

.nav a {
  text-decoration: none;
  color: #3E3A39;
  font-size: 16px;
}

.header-buttons {
  display: flex;
}

.header .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  width: 160px;
  height: 80px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  transition: opacity 0.3s;
}

.header .btn:hover {
  opacity: 0.85;
}

.btn img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}

.download {
  background-color: #f99e00;
}

.contact {
  background-color: #169442;
}

.hamburger-button {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-button span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #3E3A39;
  border-radius: 2px;
  position: absolute;
  left: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hamburger-button span:nth-of-type(1) {
  top: 12px;
}

.hamburger-button span:nth-of-type(2) {
  top: 23px;
}

.hamburger-button span:nth-of-type(3) {
  top: 34px;
}

/* ▼ メニューが開いた時の「×」印への変形 */
.hamburger-button.is-active span:nth-of-type(1) {
  top: 23px;
  transform: rotate(45deg);
}

.hamburger-button.is-active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger-button.is-active span:nth-of-type(3) {
  top: 23px;
  transform: rotate(-45deg);
}



@media (max-width: 1023px) {
  .hamburger-button {
    display: block;
  }

  .header-nav-wrapper {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    overflow-y: auto;
    gap: 10px;
  }

  /* メニューが開いた時のスタイル */
  .header-nav-wrapper.is-active {
    right: 0;
    /* 画面内にスライドイン */
  }

  .nav {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    margin-bottom: 40px;
    gap: 0;
    width: 100%;
  }

  .nav a {
    display: inline-block;
    font-size: 18px;
    border-bottom: 1px dotted #ADADAD;
    width: 100%;
    padding: 20px 0;
  }

  .header-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .header .btn {
    width: 200px;
    height: auto;
    padding: 15px 10px;
  }
}

/* メインビジュアル */
.main-visual {
  height: 700px;
  padding-top: 80px;
  background-image: url('../images/bg_image.jpg');
  background-size: cover;
  background-position: center;
  margin-bottom: -50px;
}

.main-title {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  padding: 40px 20px;
}

.title_area {
  position: relative;
  z-index: 2;
}

.title_area .title_area_title {
  font-weight: 600;
  color: #000000;
  margin-top: -10px;
  letter-spacing: 4px;
  font-size: 48px;
  line-height: 1.5;
}

.title_area .title_area_title span {
  font-size: 64px;
  color: #169442;
}

.title_area .title_area_title span.h1_number {
  font-size: 96px;
  color: #169442;
  margin: 0 5px;
}

.main-title .jp {
  font-size: 60px;
}

.main-title .en {
  font-size: 80px;
}

.main-title .underline {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.description {
  position: relative;
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  z-index: 1;
}

.highlight {
  color: #169442;
  font-weight: bold;
  font-size: 32px;
}

.description::after {
  content: '';
  width: 60%;
  height: 350px;
  background-image: url('../images/mv_image01.webp');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -240px;
  right: -20%;
  opacity: .6;
}

/* ボタンエリア */
.buttons {
  position: relative;
  display: flex;
  gap: 40px;
  padding-top: 20px;
  z-index: 1;
}

.buttons .btn {
  width: 320px;
  color: white;
  padding: 15px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  border: 3px solid #FFF;
  box-shadow: 0 0 8px #7e7e7e;
  cursor: pointer;
  transition-duration: .4s;
}

.buttons .btn:hover {
  box-shadow: 0 10px 20px #7e7e7e;
  transform: scale(1.1);
}

.btn.dark {
  background-color: #3E3A39;
}

.btn.orange {
  background-color: #f99e00;
}

.btn.green {
  background-color: #169442;
}

.sp_only {
  display: none;
}

.menu-footer_lp-container {
  max-width: 1000px;
  margin: 0 auto 20px;
}

.menu-footer_lp-container #menu-footer_lp {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.menu-footer_lp-container #menu-footer_lp li a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: .3s;
}

.footer-buttons {
  display: none;
}

.menu-footer_lp-container #menu-footer_lp li a:hover {
  opacity: .5;
}

@media (max-width: 1440px) {
  .main-visual {
    overflow: hidden;
    padding-bottom: 100px;
  }
}

@media (max-width: 1023px) {
  .main-title {
    width: 100%;
  }

  .title_area .title_area_title span {
    font-size: 34px;
  }

  .title_area .title_area_title span.h1_number {
    font-size: 48px;
  }

  .title_area .title_area_title {
    font-size: 18px;
  }

  .features::after {
    top: 80px;
  }

  .main-title .jp {
    font-size: 40px;
  }

  .main-title .en {
    font-size: 60px;
  }

  .footer-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
  }

  .footer-buttons button {
    width: 50%;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    padding: 5px 0;
    box-sizing: border-box;
  }

  .menu-footer_lp-container {
    padding-bottom: 80px;
  }

  .highlight {
    font-size: 20px;
  }

  .description::after {
    top: 70px;
    right: 0;
  }
}

@media (max-width: 819px) {
  .title_area .title_area_title {
    margin-top: -10px;
    letter-spacing: 2px;
  }
}

@media (max-width: 767px) {
  .main-title {
    padding: 0 20px 40px;
  }

  .main-visual {
    height: auto;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .sp_only {
    display: block;
  }

  .features::after {
    display: none;
  }

  .description {
    font-size: 16px;
    line-height: 1.8;
  }

  .description::after {
    height: 100px;
  }

  .buttons {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

@media (max-width: 431px) {
  .features::before {
    left: 235px;
    width: 110px;
    height: 110px;
  }

  .main-title .subtitle {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 16px;
    text-align: center;
  }

  .buttons .btn {
    width: 350px;
  }

  .stat::before {
    left: -50px;
  }

  .stat::after {
    right: -50px;
  }
}

/***** こんな悩みありませんか？ *****/

/* Main container */
.main-container_nayami {
  width: 1200px;
  height: 527px;
  margin: 0 auto;
}

.main-container_nayami .content-wrapper {
  position: relative;
  width: 1092px;
  height: 501px;
  top: 13px;
  left: 55px;
}

.main-container_nayami .content-area {
  position: relative;
  width: 1092px;
  height: 427px;
}

/* Header section */
.main-container_nayami .header-section {
  position: absolute;
  top: 0;
  left: 220px;
  width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.main-container_nayami .header-card-container {
  position: relative;
  width: 100%;
  height: 151px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-container_nayami .header-card-container img {
  filter: drop-shadow(0 5px 2px #d7d7d7);
}

.main-container_nayami .header-card {
  position: relative;
  width: 100%;
  background-color: #eaeaea;
  border-radius: 40px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 10px #ADADAD;
}

.main-container_nayami .header-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.main-container_nayami .header-arrow {
  position: relative;
  width: 179.27px;
  height: 50.25px;
  margin-top: -2px;
}

/* Concern cards */
.concern-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.card-1 {
  left: 0;
  top: 114px;
  width: 332px;
  padding: 4px 15px;
}

.card-2 {
  left: 392px;
  top: 192px;
  width: 332px;
  padding: 0 16px;
}

.card-3 {
  left: 760px;
  top: 114px;
  width: 332px;
  padding: 4px 15px;
}

/* Concern images */
.concern-image {
  position: relative;
  height: 150px;
  object-fit: cover;
}

.image-1 {
  width: 170.75px;
}

.image-2 {
  width: 223.3px;
}

.image-3 {
  width: 158.58px;
}

/* Concern content */
.concern-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.concern-arrow {
  position: relative;
  width: 28.58px;
  height: 17.25px;
}

.concern-text-card {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  padding: 24px 20px;
  margin-top: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.concern-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  text-align: center;
  line-height: normal;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .main-container_nayami {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }

  .main-container_nayami .content-wrapper {
    width: 100%;
    max-width: 1092px;
    left: 0;
  }

  .main-container_nayami .content-area {
    width: 100%;
    max-width: 1092px;
  }
}

@media (max-width: 768px) {

  .main-container_nayami,
  .main-container_nayami .content-wrapper {
    height: auto;
  }

  .main-container_nayami .header-section {
    position: relative;
    left: 0;
    width: 100%;
    margin-bottom: 0;
  }

  .main-container_nayami .concern-card {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    margin-bottom: 40px;
    padding: 0 !important;
  }

  .main-container_nayami .content-area {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .main-container_nayami .header-title {
    font-size: 16px;
  }

  .main-container_nayami .concern-text {
    font-size: 18px;
  }

  .main-container_nayami .header-card {
    padding: 10px 0;
  }

  .main-container_nayami .header-arrow {
    width: 70px;
    height: 25px;
  }
}

/***** END｜こんな悩みありませんか？ *****/
/***** 状況に合った支援をご提供 *****/

.main-container_rpo {
  width: 100%;
  height: 600px;
  margin: 100px auto 20px;
}

.main-container_rpo .content-wrapper {
  position: relative;
  width: 100%;
  height: 576px;
  top: 24px;
}

/* Header */
.main-container_rpo .header_rpo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
}

.main-container_rpo .header-image {
  width: 1437px;
  height: 108px;
}

/* Main title */
.main-container_rpo .main-title {
  font-weight: 700;
  color: #169442;
  font-size: 32px;
  text-align: center;
  line-height: 50px;
  margin-top: -100px;
}

/* Steps container */
.steps-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 109px;
  padding: 0 92px;
}

/* Step card */
.step-card {
  display: flex;
  flex-direction: column;
  width: 266px;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Step titles */
.step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  height: 40px;
  margin-top: -1px;
}

h2.step-title-1 {
  color: #61bdb8;
  position: relative;
  margin-bottom: 10px;
}

h2.step-title-2 {
  color: #f1a04f;
  position: relative;
  margin-bottom: 10px;
}

h2.step-title-3 {
  color: #e75a45;
  position: relative;
  margin-bottom: 10px;
}

h2.step-title-1::after {
  position: absolute;
  content: "";
  background-color: #61bdb8;
  width: 80px;
  height: 3px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

h2.step-title-2::after {
  position: absolute;
  content: "";
  background-color: #f1a04f;
  width: 80px;
  height: 3px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

h2.step-title-3::after {
  position: absolute;
  content: "";
  background-color: #e75a45;
  width: 80px;
  height: 3px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

/* Step subtitle container */
.step-subtitle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 0 25px 0;
}

.step-subtitle {
  width: 266px;
  height: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  text-align: center;
  line-height: normal;
}

/* Step content */
.step-content {
  position: relative;
  width: 263px;
  padding: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.step-content-1 {
  height: 216px;
  background-image: url('../images/union-1.svg');
}

.step-content-2 {
  height: 246px;
  background-image: url('../images/union-2.svg');
}

.step-content-3 {
  width: 100%;
  height: 276px;
  background-image: url('../images/union-3.svg');
}

/* Step number */
.step-number {
  position: absolute;
  top: 25px;
  left: 91px;
  width: auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
}

.step-text {
  line-height: 50px;
  white-space: nowrap;
}

.step-digit {
  font-size: 64px;
  line-height: 35px;
  white-space: nowrap;
}

/* Step icons */
.step-icon {
  position: absolute;
}

.step-icon-1 {
  width: 77px;
  height: 77px;
  top: 123px;
  left: 94px;
}

.step-icon-2 {
  width: 77px;
  height: 71px;
  top: 130px;
  left: 94px;
}

.step-icon-3 {
  width: 66px;
  height: 65px;
  top: 131px;
  left: 100px;
}

.bottom_line {
  width: 100%;
  border-bottom: 5px solid #BFBFBF;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .main-container_rpo .main-container {
    width: 100%;
    max-width: 1440px;
  }

  .main-container_rpo .content-wrapper {
    width: 100%;
    max-width: 1441px;
  }

  .main-container_rpo .header {
    width: 100%;
    max-width: 1438px;
  }

  .main-container_rpo .header-image {
    width: 100%;
    max-width: 1437px;
  }
}

@media (max-width: 1024px) {
  .main-container_rpo {
    height: auto;
    margin: 20px auto;
  }

  .main-container_rpo .content-wrapper {
    height: auto;
  }

  .main-container_rpo .main-title {
    font-size: 24px;
    margin-top: -20px;
    line-height: 30px;
  }

  .main-container_rpo .header-image {
    height: auto;
  }

  .step-number {
    width: 90px;
  }

  .steps-container {
    align-items: center;
    gap: 80px;
    padding: 0 30px;
    flex-direction: column;
  }
}

/***** END｜状況に合った支援をご提供 *****/

/***** 提供サービス内容 *****/

/* Main services section */
.services-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(45deg, rgba(255, 238, 238, 1) 0%, rgba(221, 239, 187, 1) 100%);
  padding: 130px 0;
}

/* Header styles */
.header_service {
  width: 100%;
}

.background-title {
  width: 100%;
  height: 96px;
  font-weight: 900;
  color: rgba(244, 244, 244, 0.5);
  font-size: 96px;
  text-align: center;
  letter-spacing: 0;
  line-height: 50px;
}

.services-section .main-title {
  font-weight: 700;
  color: #169442;
  font-size: 32px;
  text-align: center;
  white-space: nowrap;
  margin-top: -100px;
}

/* Description text */
.services-section .description_service {
  font-weight: 700;
  color: black;
  font-size: 20px;
  text-align: center;
  line-height: 45px;
  margin-bottom: 50px;
}

/* Cards container */
.services-section .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 0 23px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Service card styles */
.services-section .service-card {
  display: flex;
  flex-direction: column;
  width: 280px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  background: transparent;
  border: none;
}

.services-section .card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Icon circle */
.services-section .icon-circle {
  position: relative;
  width: 125px;
  height: 125px;
  background: white;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0px 0px 10px #61bdb8;
}

/* Icon positioning */
.services-section .icon {
  position: absolute;
}

.services-section .icon-1 {
  width: 81px;
  height: 88px;
  top: 19px;
  left: 22px;
}

.services-section .icon-2 {
  width: 96px;
  height: 92px;
  top: 17px;
  left: 15px;
}

.services-section .icon-3 {
  width: 68px;
  height: 87px;
  top: 18px;
  left: 29px;
}

/* Service title */
.services-section .service-title {
  width: 100%;
  height: 34px;
  margin-top: 10px;
  font-weight: 700;
  color: black;
  font-size: 20px;
  text-align: center;
  line-height: 45px;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
}

/* Service items */
.services-section .service-items {
  display: flex;
  flex-direction: column;
  width: 240px;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 0;
  flex: 1;
}

.services-section .service-item {
  flex: 1;
  width: 100%;
  font-weight: 400;
  color: black;
  font-size: 16px;
  line-height: 30px;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
  .services-section {
    height: auto;
    min-height: 723px;
    padding: 20px;
  }

  .services-section .cards-container {
    flex-direction: column;
    gap: 20px;
    position: relative;
    transform: none;
    left: 0;
  }

  .services-section .background-title {
    font-size: 72px;
  }

  .services-section .main-title {
    font-size: 28px;
  }

  .services-section .description {
    font-size: 18px;
    max-width: 90%;
    position: relative;
    top: 200px;
    transform: none;
    left: 0;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-section .background-title {
    font-size: 28px;
    line-height: 40px;
  }

  .services-section .main-title {
    font-size: 24px;
    margin-top: -65px;
  }

  .services-section .description {
    font-size: 16px;
    line-height: 35px;
  }

  .services-section .description_service {
    font-size: 16px;
    line-height: 1.5;
  }

  .services-section .service-card {
    width: 100%;
    max-width: 300px;
  }

  .services-section .service-items {
    width: fit-content;
  }

  .services-section .service-item {
    white-space: normal;
    line-height: 35px;
  }
}

/***** END｜提供サービス内容 *****/
/***** ご検討・ご相談 *****/

/* Contact Section */
.contact-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #61bdb8;
  overflow: hidden;
  margin: 0 auto 50px;
  padding: 100px 0 150px;
}

/* Header */
.contact-header {
  width: 1440px;
  height: 112px;
  margin: 0 auto;
}

.contact-title-bg {
  font-weight: 900;
  color: rgba(244, 244, 244, 0.2);
  font-size: 96px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 0;
}

.contact-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}

/* Contact Container */
.contact-container {
  width: 1000px;
  height: auto;
  margin: 150px auto 0;
}

/* Icons */
.contact-icon {
  position: absolute;
  bottom: 240px;
}

/* Main Card */
.contact-card {
  display: flex;
  width: 1000px;
  align-items: stretch;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section Items */
.contact-section-item {
  position: relative;
  width: 332px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 25px;
  padding: 40px;
  flex: 1;
}

.phone-section {
  gap: 25px;
  padding: 39px 49px;
}

/* Section Titles */
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: black;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}

/* Section Descriptions */
.section-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: black;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  letter-spacing: 0;
  margin: 0;
}

/* Contact Buttons */
.contact-button {
  width: 250px;
  height: 50px;
  border-radius: 40px;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-orange {
  background-color: #f99e00;
}

.button-green {
  background-color: #169442;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.6);
}

/* Phone Number */
.phone-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #61bdb8;
  font-size: 24px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: normal;
  margin: 0;
}

/* Phone Hours */
.phone-hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: black;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: normal;
  text-align: center;
  margin: 0;
}

/* Separators */
.separator {
  width: 1px;
  background-color: #c5c5c5;
  height: 200px;
  margin: auto;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .contact-section {
    width: 100%;
    max-width: 1440px;
  }

  .contact-header {
    width: 100%;
    left: 0;
  }

  .contact-title-bg {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .contact-container {
    width: 90%;
    left: 5%;
  }

  .contact-card {
    width: 100%;
  }

  .contact-section-item {
    padding: 30px 40px;
  }

  .contact-button {
    width: 200px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .sp_only {
    display: block;
  }

  .contact-section {
    height: auto;
    min-height: 611px;
    padding: 20px 0;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
  }

  .separator {
    width: 80%;
    height: 1px;
    align-self: center;
  }

  .contact-title {
    font-size: 24px;
    width: auto;
    margin-top: -30px;
  }

  .contact-title-bg {
    font-size: 28px;
  }

  .contact-icon {
    display: none;
  }

  .contact-container {
    top: 150px;
    height: auto;
    margin: 30px auto;
  }
}

/***** END｜ご検討・ご相談 *****/
/***** コンタクトフォーム *****/
.section_contact_form {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.section_contact_form.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-form {
  position: relative;
  background: #f8f6ea;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  max-height: 80vh;
  overflow-x: hidden;
  box-shadow: 0 0 10px #ADADAD;
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.contact-form p {
  position: relative;
  z-index: 2;
}

.contact-form::before {
  position: absolute;
  top: 10px;
  right: -20px;
  content: "";
  width: 220px;
  height: 220px;
  background-image: url('../images/document01.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.contact-form.minimized {
  opacity: 0;
  transform: scale(0.9);
  max-height: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ∧ボタン（右上） */
.toggle-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 14px;
  padding: 0.3rem 0.6rem;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1;
  font-weight: 600;
}

/* ∨ボタン（右上） */
.minimized-toggle-btn {
  position: absolute;
  top: 5;
  right: 15px;
  margin: -10px -10px 0 0;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  background: #f99e00;
  border-radius: 4px;
  box-shadow: 0 0 5px #aaa;
  cursor: pointer;
  display: none;
  color: #fff;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #000;
  font-weight: 600;
}

.contact-form .form-description {
  margin-bottom: 2rem;
  font-size: 1rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 1rem;
}

.contact-form label,
.contact-form .label {
  display: block;
  margin-top: 1.2rem;
  font-weight: bold;
}

.contact-form .required {
  background: rgb(188, 40, 40);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.contact-form .any {
  background: rgb(29, 29, 194);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input[type="radio"],
.contact-form input[type="checkbox"] {
  margin-right: 0.5rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form .btn-submit {
  margin-top: 2rem;
  background-color: #28a745;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}

.contact-form .btn-submit:hover {
  background-color: #218838;
}


/***** END｜コンタクトフォーム *****/
/***** CTA *****/

.webinar_banner {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

.webinar_banner a img {
  width: 800px;
  height: auto;
  box-shadow: 0 0 10px #ADADAD;
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.webinar_banner a img:hover {
  box-shadow: 0 0 20px #5b5b5b;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .webinar_banner img {
    width: 90%;
  }
}

/***** END｜CTA *****/