@charset "utf-8";
/* ========== MAIN VISUAL ========== */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ロゴ */
.mv__logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 2;
}

.mv__logo img {
  width: 240px;
  height: 56px;
}

/* 背景画像エリア */
.mv__inner {
  position: relative;
  width: 100%;
  height: 800px;
  background-image: url(../img/mainimg.jpg);
  background-size: cover;
  background-position: center top;
}

/* GO To Market テキスト画像 */
.mv__catch {
  position: absolute;
  bottom: 330px;
  left: 40px;
}

.mv__maintxt {
  width: 1050px;
  height: 170px;
}

/* 矢印ライン */
.mv__arrow {
  position: absolute;
  bottom: 280px;
  left: 0;
}

.mv__arrow img {
  width: 1600px;
  max-width: none;
  display: block;
}

/* テキストブロック */
.mv__heading {
  position: absolute;
  bottom: 90px;
  left: 40px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.mv__sub {
  font-weight: 400;
  font-size: 27px;
  margin: 0 0 8px;
  line-height: 1.4;
}

.mv__main {
  font-weight: 700;
  font-size: 45px;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mv__company {
  font-weight: 400;
  font-size: 27px;
  margin: 0;
  line-height: 1.4;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
.mv {
  margin-bottom: 40px;
}


  .mv__logo {
    position: relative;
    top: auto;
    left: auto;
    background-color: #fff;
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
    z-index: auto;
  }

  .mv__logo img {
    width: 160px;
    height: auto;
  }

  .mv__inner {
    height: calc(100vh - 56px);
    background-image: url(../img/mainimg.jpg);
    background-position: center top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mv__catch {
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    margin-bottom: 10px;
  }

  .mv__maintxt {
    width: 85%;
    height: auto;
    content: url(../img/sp_maintxt.png);
  }

.mv__arrow {
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}

.mv__arrow img {
  width: 90%;
  max-width: none;
}
  .mv__heading {
    position: relative;
    bottom: auto;
    left: auto;
    width: 85%;
  }

  .mv__sub {
    font-size: 15px;
  }

  .mv__main {
    font-size: 22px;
  }

  .mv__company {
    font-size: 15px;
  }

}
/* ========== /MAIN VISUAL ========== */


/* ========== SIDE FIXED BUTTON ========== */
.side-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-btn.is-visible {
  opacity: 1;
  visibility: visible;
}

.side-btn a {
  display: block;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.side-btn a:hover {
  opacity: 0.8;
}

.side-btn img {
  width: 62px;
  height: 290px;
  display: block;
}
@media screen and (max-width: 768px) {
.side-btn {
	display: none;
}

}

/* ========== /SIDE FIXED BUTTON ========== */





/* ========== USEFUL ARTICLES ========== */
.articles {
  background-color: #0099c3;
  padding: 60px 0;
  margin: 0 0 180px;
}

.articles .sec-heading__title {
  color: #fff;
}

.articles__inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}

.articles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

.articles__item {
  width: calc((100% - 100px) / 6);
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 0;
}

.articles__item a {
  display: block;
  text-decoration: none;
}

/* サムネイルエリア */
.articles__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ロゴ表示（画像なし）の場合 */
.articles__thumb--noimg img {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}

/* 抜粋テキスト */
.articles__text {
  font-size: 16px;
  color: #fff;
  margin: 12px 0 0;
  line-height: 1.6;
}

/* 一覧ボタン */
.articles__btn {
  text-align: center;
  margin-top: 50px;
}

.btn-more {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  padding: 14px 60px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-more:hover {
  background-color: #fff;
  color: #0099c3;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .articles {
    overflow: hidden;
  }

  .articles__inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .articles__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
  }

  .articles__item {
    width: 100%;
    flex-shrink: 1;
  }

  .articles__item a {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .articles__thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }

  .articles__thumb--noimg img {
    max-width: 80px;
    max-height: 40px;
  }

  .articles__text {
    margin: 0;
    flex: 1;
    min-width: 0;
  }

  .articles__btn {
    padding: 0;
  }

  .btn-more {
    display: block;
    text-align: center;
    padding: 14px 20px;
  }

}
/* ========== /USEFUL ARTICLES ========== */


/* ========== BNR ========== */
.bnr{
	width: 750px;
	height: 120px;
	margin: 0 auto 200px;
}
@media screen and (max-width: 768px) {

.bnr{
	display: none;
}
.sp_bnr{
	width: 90%;
	height: auto;
	margin: 0 auto 80px;
}
.sp_bnr img{
	width: 100%;
	height: auto;
}

}

/* ========== BNR ========== */



/* ========== RESOURCES ========== */
.resources {
  width: 100%;
  padding: 80px 0 100px;
}

.resources__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル */
.resources__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 42px;
  font-weight: 500;
  color: #0099c3;
  margin: 0 auto 50px;
  max-width: 1200px;
  line-height: 1.4;
}

/* ウェーブ背景エリア */
.resources__wave {
  width: 100%;
  height: 480px;
  background-image: url(../img/wave_bg.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* 3つのアイテム並び */
.resources__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* 各アイテム */
.resources__item {
  width: 300px;
  height: 240px;
  flex-shrink: 0;
}

/* サークル背景 */
.resources__circle {
  width: 300px;
  height: 240px;
  background-image: url(../img/ciecle.png);
  background-size: 210px 210px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 68px;
  padding-top: 40px;
}

/* 説明テキスト */
.resources__desc {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin: 20px 0 8px;
  line-height: 1.7;
}

/* ラベル（非効率性 etc） */
.resources__label {
  font-family: "Zen Old Mincho", serif;
  font-size: 45px;
  font-weight: 400;
  color: #0099c3;
  margin: 55px 0 0;
  line-height: 1.2;
  opacity: 0.4;
}

/* 下部テキスト */
.resources__foot {
  width: 560px;
  margin: 0 auto;
}

.resources__foot-sub {
  font-size: 16px;
  color: #333333;
  margin: 0 0 20px;
}

.resources__foot-main {
  font-size: 16px;
  color: #333333;
  margin: 0;
  line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .resources__title {
    font-size: 28px;
    padding: 0 20px;
    text-align: center;
  }

  .resources__wave {
    height: auto;
    background-size: auto 100%;
    background-position: center;
    padding: 40px 0;
    gap: 20px;
    box-sizing: border-box;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
  }

  .resources__items {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .resources__item {
    width: 48%;
    height: auto;
    flex-shrink: 1;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .resources__circle {
    width: 100%;
    height: 180px;
    background-size: 160px 160px;
    background-position: center top;
    padding-left: 10px;
    padding-top: 15px;
    box-sizing: border-box;
  }

  .resources__desc {
    font-size: 14px;
    margin: 10px 0 4px;
  }

  .resources__label {
    font-size: 28px;
    margin: 10px 0 0;
  }

  .resources__foot {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

}


/* ========== /RESOURCES ========== */





/* ========== CTA BUTTONS ========== */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 0 60px;
  margin-bottom: 150px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 440px;
  height: 60px;
  padding: 0 24px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn--contact {
  background-color: #0099c3;
  color: #fff;
}

.cta-btn--diagnosis {
  background-color: #004364;
  color: #fff;
}

.cta-btn--contact:hover {
  background-color: #fff;
  color: #0099c3;
  outline: 2px solid #0099c3;
}

.cta-btn--diagnosis:hover {
  background-color: #fff;
  color: #004364;
  outline: 2px solid #004364;
}

.cta-btn__text {
  font-size: 16px;
  font-weight: 400;
}

/* CSS矢印 */
.cta-btn__arrow {
  display: inline-flex;
  align-items: center;
  width: 32px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.cta-btn__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.cta-btn__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 2px;
  background-color: #fff;
  transform-origin: right center;
  transform: translateY(-100%) rotate(45deg);
  transition: background-color 0.3s ease;
}

.cta-btn--contact:hover .cta-btn__arrow::before,
.cta-btn--contact:hover .cta-btn__arrow::after {
  background-color: #0099c3;
}

.cta-btn--diagnosis:hover .cta-btn__arrow::before,
.cta-btn--diagnosis:hover .cta-btn__arrow::after {
  background-color: #004364;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    padding: 40px 0;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .cta-btn {
    width: 90%;
    height: 60px;
  }
}
/* ========== /CTA BUTTONS ========== */





/* ========== SERVICE ========== */
.service__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.service__catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  margin: 0 auto 50px;
  color: #333333;
}

.service__text {
  width: 560px;
  margin: 0 auto 70px;
  line-height: 1.8;
}

.service__text p {
  margin: 0 0 20px;
}

.service__text p:last-child {
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .service__inner {
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .service__catch {
    font-size: 20px;
  }

  .service__text {
    width: 90%;
  }

}
/* ========== /SERVICE ========== */






/****about****/
.aboutSection {
  position: relative;
  padding: 140px 0 80px;
  margin-bottom: 150px;
  overflow: hidden;
}

/* ①青背景：左からスライド */
.aboutBg {
  position: absolute;
  top: 80px;
  left: 0;
  width: calc((100vw - 1200px) / 2 + 950px);
  height: calc(100% - 160px);
  background-color: #0099c3;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.aboutSection.is-active .aboutBg {
  transform: translateX(0);
}

/* コンテンツ共通 */
.aboutInner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 1200px;
  margin: 0 auto;
}

/* ②テキスト：ふわっと */
.aboutText {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.aboutSection.is-active .aboutText {
  opacity: 1;
  transform: translateY(0);
}

.aboutLabel {
  font-family: "Zilla Slab", serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.aboutLabel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}

.aboutHeading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 16px 0 20px;
  line-height: 1.5;
  font-family: "Zilla Slab", serif;
}

.aboutBody {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ③画像：右からふわっと */
.aboutImage {
  flex-shrink: 0;
  width: 450px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 1.2s, transform 0.7s ease 1.2s;
}

.aboutSection.is-active .aboutImage {
  opacity: 1;
  transform: translateX(0);
}

.aboutImage img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.35);
}

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

/****about****/
.aboutSection {
  position: relative;
  padding: 40px 0;
  margin-bottom: 70px;
  overflow: hidden;
}

/* ①青背景：左からスライド */
.aboutBg {
  position: absolute;
  top: 0;
  left: 0;
  /* 左余白 + テキストエリア + gap + 画像500pxの半分 */
  /* (100vw - 1200px) / 2 + 1200px - 500px + 250px = (100vw - 1200px)/2 + 950px */
  width: 100%;
  height: 70%;
  background-color: #0099c3;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.aboutSection.is-active .aboutBg {
  transform: translateX(0);
}

/* コンテンツ共通 */
  .aboutInner {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    width: 90%;
  }

/* ②テキスト：ふわっと */
.aboutText {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
  width: 100%;
}

.aboutSection.is-active .aboutText {
  opacity: 1;
  transform: translateY(0);
}

.aboutLabel {
  font-family: "Zilla Slab", serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.aboutLabel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}

.aboutHeading {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 16px 0 20px;
  line-height: 1.5;
}

.aboutBody {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  width: 100%;
}

/* ③画像：右からふわっと */
.aboutImage {
    width: 100%;
  }

.aboutSection.is-active .aboutImage {
  opacity: 1;
  transform: translateX(0);
}

.aboutImage img {
    width: 100%;
  }




}





/* ========== PLAN ========== */
.plan {
  width: 100%;
  margin-bottom: 150px;
}

.plan__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* フェーズヘッド */
.plan__phase {
  margin-bottom: 100px;
}

.plan__phase-head {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

/* フェーズラベルボックス */
.plan__phase-label {
  width: 90px;
  height: 90px;
  background-color: transparent;
  display: block;
  flex-shrink: 0;
  padding-bottom: 0;
  gap: 0;
}
.plan__phase-label img {
  width: 90px;
  height: 90px;
  display: block;
}

.plan__phase-num-label {
  display: none;
}

.plan__phase-num {
  display: none;
}

/* フェーズタイトル */
.plan__phase-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.5;
}

/* サブタイトル */
.plan__phase-sub {
  font-size: 21px;
  font-weight: 500;
  color: #0099c3;
  margin: 0 0 40px;
}

/* フロー画像 */
.plan__flow {
  margin-bottom: 40px;
}

.plan__flow img {
  width: 1030px;
  height: 150px;
  display: block;
}

/* テキスト＋Market */
.plan__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
}

.plan__body-text {
  width: 560px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.8;
  padding-right: 0;
}

.plan__body-text p {
  margin: 0 0 20px;
}

.plan__body-text p:last-child {
  margin: 0;
}

.plan__body-img {
  flex-shrink: 0;
}

.plan__body-img img {
  width: 370px;
  height: 252px;
  display: block;
}

/* 3カラム */
.plan__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.plan__col {
  width: calc((100% - 40px) / 3);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.plan__col-title {
  font-size: 21px;
  font-weight: 500;
  color: #0099c3;
  margin: 0 0 8px;
}

.plan__col-text {
  font-size: 15px;
  color: #333333;
  margin: 0 0 20px;
  line-height: 1.6;
}

.plan__col-img {
  margin-top: auto;
}
.plan__col-img img {
  width: 180px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
.plan {
  margin-bottom: 50px;
}

.plan__phase {
  margin-bottom: 20px;
}


  .plan__inner {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .plan__phase-head {
    align-items: flex-end;
    gap: 6px;
  }

  .plan__phase-label {
    width: 70px;
    height: 70px;
  }

  .plan__phase-label img {
    width: 70px;
    height: 70px;
  }

  .plan__phase-num-label {
    display: none;
  }

  .plan__phase-num {
    display: none;
  }


  .plan__phase-title {
    font-size: 30px;
  }

  .plan__phase-sub {
    font-size: 18px;
  }

  .plan__flow img {
    width: 100%;
    height: auto;
  }

  .plan__body {
    flex-direction: column;
  }

  .plan__body-text {
    padding-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .plan__body-img img {
    width: 100%;
    height: auto;
  }

  .plan__cols {
    flex-direction: column;
    gap: 40px;
  }

  .plan__col {
    width: 90%;
    margin: 0 auto;
  }

  .plan__col-img img {
    width: 60%;
    height: auto;
  }
}

/* フェーズ2：テキスト左・画像右レイアウト */
.plan__body--reverse {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.plan__body-img--right {
  flex-shrink: 0;
}

.plan__body-img--right img {
  width: 450px;
  height: 480px;
  display: block;
  object-fit: cover;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .plan__flow img {
    width: 70%;
    height: auto;
    margin: 0 auto;
    content: url(../img/sp_img01.jpg);
  }

  .plan__body--reverse {
    flex-direction: column;
  }

  .plan__body-img--right img {
    width: 100%;
    height: auto;
  }

}




/* ========== /PLAN ========== */



/* ========== REASON ========== */
.reason {
  width: 100%;
  margin-bottom: 40px;
}

.reason__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.reason__list {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.reason__item {
  width: 280px;
  min-height: 480px;
  background-color: #0099c3;
  flex-shrink: 0;
  padding: 30px 20px;
  box-sizing: border-box;
}

/* 数字＋縦棒 */
.reason__num-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.reason__num {
  font-family: "Zen Old Mincho", serif;
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.reason__bar {
  display: inline-block;
  width: 4px;
  height: 50px;
  background-color: #fff;
}

/* 見出し */
.reason__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px;
  line-height: 1.6;
}

/* 本文 */
.reason__text {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .reason__inner {
    width: 90%;
  }

  .reason__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .reason__item {
    width: 100%;
    min-height: auto;
  }

}
/* ========== /REASON ========== */





/* ========== CASE ========== */
.case {
  width: 100%;
  margin-bottom: 150px;
}

.case__inner {
  width: 100%;
}

/* 事例リスト */
.case__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0 0 50px;
  padding: 0 40px;
  box-sizing: border-box;
  justify-content: flex-start;
}

.case__item {
  width: calc((100% - 120px) / 5);
  min-height: 520px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.case__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

/* サムネイル */
.case__thumb {
  width: 90%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 15px auto 0;
}

.case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ボディ */
.case__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case__title {
  font-size: 21px;
  color: #333333;
  margin: 0 0 10px;
  line-height: 1.4;
  font-weight: 500;
}

.case__text {
  font-size: 16px;
  color: #333333;
  margin: 0 0 14px;
  line-height: 1.6;
  flex: 1;
}

/* タグ */
.case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.case__tag {
  display: inline-block;
  background-color: #0099c3;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  line-height: 1.4;
}

/* 一覧ボタン */
.case__btn {
  text-align: center;
  margin-bottom: 60px;
}

.btn-more--dark {
  color: #004364;
  border-color: #004364;
}

.btn-more--dark:hover {
  background-color: #004364;
  color: #fff;
}

/* 検索ボックス */
.case__search {
  width: 720px;
  margin: 0 auto;
  border: 1px solid #0099c3;
  padding: 40px;
  box-sizing: border-box;
}

.case__search-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin: 0 0 30px;
  border-bottom: 1px solid #0099c3;
  padding-bottom: 16px;
}

.case__search-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.case__search-group {
  margin-bottom: 24px;
}

.case__search-label {
  font-size: 16px;
  color: #333333;
  margin: 0 0 12px;
  font-weight: 500;
}

.case__search-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* チェックボックス */
.case__check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.case__check input[type="checkbox"] {
  display: none;
}

.case__check span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid #0099c3;
  color: #0099c3;
  font-size: 14px;
  line-height: 1.4;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* レ点（チェックマーク） */
.case__check span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 9px;
  border-right: 2px solid #0099c3;
  border-bottom: 2px solid #0099c3;
  transform: rotate(45deg) translateY(-2px);
  margin-right: 6px;
  transition: border-color 0.2s ease;
}

.case__check input[type="checkbox"]:checked + span {
  background-color: #0099c3;
  color: #fff;
}

.case__check input[type="checkbox"]:checked + span::before {
  border-color: #fff;
}

/* 検索ボタン */
.case__search-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.case__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #004364;
  color: #fff;
  font-size: 16px;
  padding: 14px 80px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.case__search-btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .case__list {
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 90%;
    margin: 0 auto 50px;
  }

  .case__item {
    width: 100%;
    min-height: auto;
  }

  .case__btn {
    padding: 0 20px;
  }

  .btn-more--dark {
    display: block;
    text-align: center;
    padding: 14px 20px;
  }

  .case__search {
    width: 90%;
    padding: 24px 20px;
  }

  .case__search-btn {
    padding: 14px 40px;
  }

}
/* ========== /CASE ========== */




/* ========== FLOW ========== */
.flow {
  width: 100%;
  margin-bottom: 150px;
}

.flow__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

/* PC：flexで横一列 */
.flow__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow__img {
  width: 205px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__img img {
  width: 205px;
  height: 168px;
  object-fit: contain;
  display: block;
}

.flow__label {
  font-size: 16px;
  color: #333333;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 30px;
  list-style: none;
}

.flow__arrow img {
  width: 20px;
  height: 40px;
  display: block;
  object-fit: contain;
}

/* SP：gridで3列・2列を制御 */
@media screen and (max-width: 768px) {

  .flow__inner {
    padding: 40px 0;
    width: 90%;
    margin: 0 auto;
  }

  .flow__list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    align-items: center;
  }

  .flow__item {
    width: 28%;
    margin: 0 0 15px;
  }

  .flow__img {
    width: 100%;
    height: auto;
  }

  .flow__img img {
    width: 100%;
    height: auto;
  }

  .flow__arrow {
    width: 6%;
    padding: 0 0 30px;
  }

  .flow__arrow img {
    width: 15px;
    height: auto;
  }

  .flow__label {
    font-size: 13px;
  }

}
/* ========== /FLOW ========== */



/* ========== NEWS ========== */
.news {
  width: 100%;
  margin-bottom: 150px;
}

.news__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.news__list {
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
}

.news__item {
  border-bottom: 1px solid #e0e0e0;
}

.news__item:first-child {
  border-top: 1px solid #e0e0e0;
}

.news__item a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
}

.news__item a:hover .news__title {
  text-decoration: underline;
}

.news__date {
  flex-shrink: 0;
  font-size: 16px;
  color: #333333;
}

.news__cat {
  flex-shrink: 0;
  display: inline-block;
  background-color: #0099c3;
  color: #fff;
  font-size: 16px;
  padding: 4px 16px;
  min-width: 100px;
  text-align: center;
}

.news__title {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}

/* ボタン */
.news__btn {
  display: flex;
  justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .news__inner {
    width: 90%;
    padding: 40px 0;
    box-sizing: border-box;
  }

  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news__btn .cta-btn {
    width: 90%;
  }

}
/* ========== /NEWS ========== */






/* ========== COMPANY ========== */
.company {
  width: 100%;
  margin-bottom: 50px;
}

.company__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.company__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 800px;
}

.company__table tr {
  border-bottom: 1px solid #e0e0e0;
}

.company__table tr:first-child {
  border-top: 1px solid #e0e0e0;
}

.company__table th {
  width: 140px;
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.company__table td {
  padding: 20px 16px;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  vertical-align: top;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {

  .company__inner {
    width: 90%;
    padding: 40px 0;
    box-sizing: border-box;
  }

  .company__table {
    max-width: 100%;
  }

  /* SP時：th・tdを縦並びに */
  .company__table tr {
    display: block;
    padding: 16px 0;
  }

  .company__table tr:first-child {
    border-top: 1px solid #e0e0e0;
  }

  .company__table th {
    display: block;
    width: 100%;
    padding: 0 0 6px;
    font-size: 14px;
    color: #0099c3;
    white-space: normal;
  }

  .company__table td {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 16px;
  }

}
/* ========== /COMPANY ========== */


@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/
.sp_bnr{
	display: none;
}

}