
body {
  margin: 0;
  font-family: "Shippori Mincho","Yu Mincho","游明朝",YuMincho,"ヒラギノ明朝 ProN",serif,"Sawarabi Mincho";
  background-color: #fff;
  color: #333;
}
.hero-section {
  background: #0d1a2b;
  color: white;
  padding: 10px 20px 50px 20px;
  text-align: center;
}
.site-title {
  margin-bottom: 80px;
}
.hero-copy {
  font-size: 1.6em;
  margin-top: 20px;
}
.hero-subcopy {
  margin-top: 10px;
  font-size: 1em;
}
.cta-button {
  display: inline-block;
  background: #f47c3c;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  margin-top: 30px;
  border-radius: 6px;
  font-weight: bold;
}
footer {
  background: #0d1a2b;
  color: white;
  text-align: center;
  padding: 20px;
}
.services {
  padding: 60px 20px;
  text-align: center;
}
.service-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.service-box {
  background: #fff;
  /* border: 1px solid #ccc; */
  padding: 30px;
  width: 300px;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
  box-shadow: 4px 4px 4px 4px rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* お悩みセクション */
.worry-section {
  /*background: #f4f6f9;*/
  padding: 80px 20px;
  text-align: center;
}
.section-title {
  font-size: 1.7em;
  color: #0d1a2b;
  margin-bottom: 40px;
  font-weight: normal;
}
.worry-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 30px;
}
.worry-circle {
  background: #f5f5f5;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: #0d1a2b;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 0.95em;
  line-height: 1.5em;
}
.support-message {
  margin-top: 150px;
  font-size: 1.5em;
  color: #0d1a2b;
}
.support-message span {
  color: #f47c3c;
  font-weight: bold;
}

.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.flow04 > li {
  list-style-type: none;
  width: 100%;
  max-width: 300px;
  display: flex;
}

.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #0d1a2b;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #0d1a2b;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  /* border: 1px solid #ccc; */
  position: relative;
}

.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 1px solid #ccc;
  border-right: 4px solid #0d1a2b;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow04 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}

.flow04 > li dl dd {
  margin-left: 0;
}

.flow04 > li dl {
  width: 100%;
}

@media(max-width: 767px){
  .flow04 {
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }
}


/* takaki-bd風 左右交互コンサルセクション */
.consulting-section {
  padding: 80px 20px;
  background: #fff;
}
.consulting-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 60px 15%;
  flex-wrap: wrap;
}
.consulting-block.reverse {
  flex-direction: row-reverse;
}
.consulting-img {
  flex: 1 1 45%;
}
.consulting-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.consulting-text {
  flex: 1 1 45%;
}
.consulting-text h3 {
  font-size: 1.6em;
  color: #0d1a2b;
  margin-bottom: 10px;
}
.consulting-text p {
  font-size: 1em;
  color: #333;
}

.overlay-img {
  position: relative;
  width: 100%;
}

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

.img-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  margin: 0;
  pointer-events: none; /* クリック無効 */
  white-space: nowrap;
  padding: 5px 10%;
  /* background: rgba(255, 255, 255, 0.6); */
}

.background_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  position: relative;
  background: #0d1a2b; /* 背景色 */
  border: 2px solid #0d1a2b;
  padding: 1em 2em;
  font-weight: bold;
  color: #fff; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
}

.background_btn01:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff; /* 矢印の色 */
  border-right: 2px solid #fff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

/* マウスオーバーした際のデザイン */
.background_btn01:hover {
  background: #fff; /* 背景色 */
  color: #0d1a2b; /* 文字色 */
}

.background_btn01:hover:before {
  border-top: 2px solid #0d1a2b; /* 矢印の色 */
  border-right: 2px solid #0d1a2b; /* 矢印の色 */
}
