body{
  background: transparent;
}

:root {
    --font-size-footer-normal: 14px;
    --font-size-min: 14px;
    --font-size-normal: 16px;
    --font-size-ttl:20px;
    --font-size-big: 32px;
}
a:hover {
  text-decoration: none;
}
.post, .page {
    margin: 0;
}
/* 共通ボタン */
.common-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 20px;
  background: #2f6bb7;
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size-normal);
  border-radius: 4px;
  width: 90%;
  max-width: 400px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 2px solid #2f6bb7;
}

/* hover時 */
.common-btn:hover {
  background: #ffffff;
  color: #2f6bb7;
  font-weight: bold;
}

/* アイコン */
.common-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #2f6bb7;
  border-radius: 3px;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

/* hover時：アイコンも反転 */
.common-btn:hover .common-btn-icon {
  background: #2f6bb7;
  color: #ffffff;
  transform: translateX(4px);
}

/* news用 */
.news-button {
  margin-left: auto;
}

.sec-ttl {
  font-size: 40px;
  padding: 10px 0;
  font-weight: normal;
  color: #111;
  padding-bottom: 12px;
  border-bottom: 1px solid #bfc6cc;
  height: 65px;
}
.flow {
  background-color: #2f6fb6;
  color: #fff;
  padding: 180px 0;
  display: flex;
  margin-top: 180px;
}
.flow-container{
  margin: auto;
  max-width: 1100px;
  width: 90%;
}

.flow-ttl {
  color: #fff;
  margin: 0;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  padding: 70px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  position: relative;
}

.flow-number {
  font-size: 100px;
  font-weight: bold;
  color: rgba(255,255,255,0.3);
  margin-right: 30px;
  line-height: 1;
  min-width: 70px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.flow-text {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-left: 120px;
    max-width: 800px;
    width: 90%;
}
.flow-text h3 {
  font-size: var(--font-size-big);
  margin: 0;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
  font-weight: normal;
  max-width: 300px;
  width: 100%;
}

.flow-text p {
  font-size: var(--font-size-normal);
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.flow-button {
  margin-top: 40px;
}

.flow-button{
  color: #2f6fb6;
  background-color: #fff;;
}
.flow-button-icon{
  background-color: #2f6bb7;
  color: #fff;
}
/* レスポンシブ */
@media screen and (max-width: 600px) {
  .flow-item {
    flex-direction: column;
  }

  .flow-number {
    margin-bottom: 10px;
  }
}
.flow-item {
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

/* 表示された時 */
.flow-item.is-visible {
  opacity: 1;
}

.news {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px;
}

.news-title {
  margin-bottom: 20px;
  border: none;
}

.news-list {
  list-style: none;
  margin: 0;
}

.news-item {
  border-top: 1px solid #ccc;
  margin: 0;
}

.news-item:last-child {
  border-bottom: 1px solid #ccc;
}

.news-item a {
  display: flex;
  align-items: center;
  padding: 18px 10px;
  color: #000;
  text-decoration: none;
}

.news-item a:hover {
  background-color: #eef4fa;
}

.news-date {
  color: #ff7a00;
  font-size: 14px;
  margin-right: 20px;
  white-space: nowrap;
}

.news-text {
  flex: 1;
  font-size: 15px;
}

.news-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #2f6fb6;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.no-post {
  padding: 20px;
  color: #666;
}
.tel-box{
  color: #fff;
  text-decoration: none;
}
.tel-box:hover{
  color: #fff;
}
.breadcrumb a{
  color: #fff;
  text-decoration: none;
}
  
@media (max-width: 1024px) {
  .common-btn{
    width: 100%;
  }
}
@media (max-width: 500px) {
  :root {
    --font-size-footer-normal: 14px;
    --font-size-normal: 16px;
    --font-size-big: 22px;
  }
    .sec-ttl{
  font-size: 30px;
  }
  .flow-text{
    margin: 0;
    flex-direction: column;
    gap: 0;
  }
  .flow-number {
        margin-bottom: 10px;
        top: 40px;
        transform: translateY(10px);
        font-size: 80px;
    }
    .flow-text h3 {
        text-align: left;
        margin-left: 130px;
        font-weight: normal;
        font-size: 25px;
    }
    .flow-text p{
      width: 100%;
      margin: 30px 0 0;
    }
    .news-arrow{
      display: none;
    }
    .news-item a{
      position: relative;
      padding-right: 10px;
      line-height: 1.3;
    }
    .news-title{
      margin-bottom: 0;
    }
    .contact-bg {
      font-size: 50px;
    }
    .badge {
      font-size: var(--font-size-footer-normal);
    }
    .news-list {
      padding: 0;
    }
}