/***********************************/
/* common */
/***********************************/
html {
  scroll-behavior: smooth;
}

:root {
  --bg: #EBF0F5;
  /* ページ背景 */
  --base: #004896;
  /* ベースカラー */
  --txt: #333333;
  /* テキストカラー */
  --warn: #FFDF00;
  /* 注意・ポイント */
  --area: #E1EBF7;
  /* エリア背景・タイトル */
}

body {
  font-family: 'Noto Sans JP', 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--txt);
  font-weight: 400;
}

a:hover {
  opacity: 0.8;
}

h2 {
  font-size: 22px;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h4 {
  font-size: 16px;
  font-weight: 500;
}

img {
  width: 100%;
}


/***********************************/
/* header */
/***********************************/
header {
  position: fixed;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
}

.header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  width: 350px;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(125, 135, 140, 0.1);
  padding: 10px;
  z-index: 1000;
  margin-top: 16px;
}

.logo_sp {
  width: 200px;
}

.nav_icon {
  width: 47px;
  height: 47px;
  cursor: pointer;
  display: block;
}

.drawer_nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--base);
  z-index: 999;
  padding: 100px 40px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.8s ease;
}

.drawer_nav.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.drawer_links {
  list-style: none;
  padding: 0;
}

.drawer_links li {
  color: #ffff;
  padding: 16px 0;
  text-align: center;
}

.drawer_links li a {
  font-size: 18px;
  font-weight: 500;
}

.tel_text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

.bg_white {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base);
  background-color: #fff;
  height: 24px;
  width: 62px;
  margin-right: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}


.contact_btn {
  width: 285px;
  min-width: 200px;
  height: 60px;
  padding: 10px;
  border-radius: 50px;
  background: var(--warn);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto;
  transition: background-color 0.5s ease, color 0.5s ease, filter 0.5s ease;
}

.contact_btn a {
  color: var(--txt);
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  padding-left: 42px;
  position: relative;
}

.contact_btn::before {
  content: "";
  background: url(./img/mail_icon.svg) no-repeat;
  width: 29px;
  height: 23px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.contact_btn:hover {
  filter: brightness(0.95);
}

.pc-on {
  display: none;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  .drawer_nav {
    display: none;
  }

  .sp-on {
    display: none;
  }

  .pc-on {
    display: block;
  }

  .header_pc {
    width: 100%;
    min-width: 1000px;
    height: 80px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding: 0 12px;
    box-shadow: 0 0 40px rgba(125, 135, 140, 0.1);
  }

  .pc_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 800px;
  }

  .logo_pc {
    width: 213px;
  }

  .contact_btn {
    margin: 0;
  }

  .pc_nav li a {
    font-size: 16px;
    font-weight: 500;
  }

  .pc_nav .contact_btn a {
    font-size: 18px;
    font-weight: 500;
  }

  .li_column .tel_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .bg_white {
    background-color: var(--base);
    color: #fff;
  }
}

/* ラージPC（1440px以上） */
@media screen and (min-width: 1440px) {
  .header_pc {
    width: 1360px;
  }

  .pc_nav {
    width: 1036px;
  }
}

/***********************************/
/* FirstView Section */
/***********************************/
#FirstViewSection {
  padding-top: 80px;
  margin-bottom: 30px;
}

.ashirai {
  width: 50px;
  position: relative;
  left: 120px;
  margin-bottom: -28px;
}

#FirstViewSection .main_title {
  margin: 0 0 32px;
  padding: 0;
}

#FirstViewSection .main_title .mini {
  font-size: 22px;
}

.main_visual {
  text-align: center;
  margin-bottom: 32px;
}

.FV_img {
  width: 280px;
}

.point_box_wrap {
  margin-bottom: 40px;
}

.point_box {
  max-width: 320px;
  margin: 0 auto;
}

.text_blue {
  color: var(--base);
}

.point_num {
  position: relative;
  font-style: italic;
  font-weight: 500;
  margin: 8px 0 -8px 16px;
  z-index: 5;
}

.text_12 {
  font-size: 12px;
}

.parallelogram_box {
  width: fit-content;
  padding: 16px 20px 12px;
  height: 60px;
  background-color: var(--area);
  transform: skewX(-15deg);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}

.point_item {
  font-size: 22px;
  font-weight: 500;
}

.text_20 {
  font-size: 20px;
  font-weight: normal;
}

.highlight {
  background: linear-gradient(transparent 70%, var(--warn) 70%);
}

.text-large {
  font-size: 1.2em;
  font-weight: 500;
}

.wheat_mark_wrap {
  display: flex;
  max-width: 370px;
  justify-content: space-between;
  margin: 0 auto;
}

.wheat_mark {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 160px;
}

.wheat_mark2 {
  width: 200px;
}

.wheat_icon {
  width: 16px;
}

.wheat_mark p {
  font-size: 10px;
  padding-bottom: 10px;
}

.text_16 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 4px 0;
}

.bold {
  font-weight: 500;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  #FirstViewSection {
    display: flex;
    justify-content: space-around;
    padding-top: 120px;
    max-width: 1000px;
    margin: 0 auto 40px;
  }

  .ashirai {
    left: 150px;
  }

  .firstview_body {
    margin-top: 30px;
  }

  #FirstViewSection .main_title {
    font-size: 32px;
  }

  #FirstViewSection .main_title .mini {
    font-size: 28px;
  }
}

/* ラージPC（1440px以上） */
@media screen and (min-width: 1440px) {
  #FirstViewSection {
    max-width: 1200px;
    margin-bottom: 70px;
  }

  .main_visual {
    margin-bottom: 0;
  }

  .ashirai {
    width: 100px;
  }

  #FirstViewSection .main_title {
    margin: 0 0 40px;
    width: 600px;
  }

  .firstview_body {
    margin-top: 80px;
  }

  .FV_img {
    width: 550px;
  }

  .point_box_wrap {
    margin-bottom: 60px;
  }

  .point_box {
    max-width: 500px;
  }

  .parallelogram_box {
    height: 90px;
    padding: 21px 36px 12px;
  }

  .point_item {
    font-size: 32px;
    font-weight: 500;
  }

  .text_20 {
    font-size: 28px;
  }

  .point_num {
    font-size: 30px;
    margin: 20px 0 -20px 40px;
  }

  .text_12 {
    font-size: 20px;
  }

  .wheat_mark_wrap {
    max-width: none;
    width: 640px;
  }

  .wheat_mark {
    width: 260px;
  }

  .wheat_mark2 {
    width: 370px;
  }

  .wheat_icon {
    width: 28px;
  }

  .wheat_mark p {
    font-size: 16px;
  }

  .text_16 {
    font-size: 40px;
  }
}


/***********************************/
/* ロゴslider */
/***********************************/
.slider-main {
  background: #fff;
  padding: 8px 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.slider {
  display: flex;
  align-items: center;
  padding: 0 30px;
  animation: scroll-logo 40s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.slider .items {
  padding: 0 15px;
  flex-shrink: 0;
}

.slider .items img {
  display: block;
  width: auto;
}

/* アニメーション */
@keyframes scroll-logo {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-66.6666%);
  }
}

@media screen and (min-width: 1024px) {

  .slider-main {
    padding: 0;
  }

  .slider {
    height: 150px;
    animation: scroll-logo 55s linear infinite;
  }

  .slider .items {
    padding: 0 30px;
  }
}

/***********************************/
/* Ploblem */
/***********************************/
.main_title {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.bg_text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  font-weight: 500;
  color: var(--area);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.main_title h2 {
  position: relative;
  top: 40px;
  font-size: 22px;
  z-index: 1;
  font-weight: 500;
}

#Problem .items {
  max-width: 300px;
  height: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 20px;
  background-color: #E8E8E8;
  margin-bottom: 12px;
}

/* 改行が必要な項目だけ */
#Problem .items.multiline {
  white-space: normal;
  height: auto;
  flex-direction: row;
  flex-wrap: wrap;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

#Problem img {
  position: relative;
  left: 80%;
  z-index: -3;
  width: 60px;
}

/* ラージPC（1440px以上） */
@media screen and (min-width: 1024px) {
  #Problem {
    padding: 0 0 180px;
  }

  .bg_text {
    font-size: 180px;
  }

  .main_title {
    margin-bottom: 180px;
  }

  .main_title h2 {
    font-size: 48px;
    top: 140px;
    font-weight: 500;
  }


  #Problem .problem_img {
    position: absolute;
    width: 137px;
    bottom: -30px;
    left: 815px;
    top: -180px;
  }

  #Problem .item_wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 972px;
    margin: 200px auto 0;
  }

  #Problem .items {
    width: 300px;
    height: 100px;
    margin: 0 18px;
    position: relative;
  }

  #Problem .problem_arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 140px;
    z-index: 2;
    width: 30px;
  }
}

/***********************************/
/* Solution */
/***********************************/
#Solution {
  position: relative;
  margin-top: -24px;
  margin-bottom: 80px;
  background-color: var(--warn);
  padding: 40px 20px;
  z-index: -2;
}

#Solution h2 {
  text-align: center;
}

#Solution .solution_item_box {
  background-color: #FFF5B0;
  width: 300px;
  height: auto;
  border-radius: 20px;
  text-align: center;
  padding: 32px 20px;
  margin: 0 auto 12px;
}

#Solution .items {
  margin-bottom: 20px;
}

.solution_img {
  position: relative;
  left: 8%;
  margin-bottom: -24px;
  z-index: -1;
  width: 60px;
}


.solution_item_img {
  width: 115px;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  #Solution {
    height: 440px;
  }

  .img_wrap {
    position: relative;
    width: 1250px;
    margin: 0 auto;
    z-index: 3;
  }

  .solution_img {
    position: absolute;
    width: 154px;
    top: 170px;
    left: 0;
  }

  .solution_item_box_wrap {
    display: flex;
    justify-content: center;
    max-width: 972px;
    margin: 0 auto;
    margin-top: 40px;
  }

  #Solution .solution_item_box .items {
    height: 72px;
  }

  #Solution .mini {
    height: 8px;
  }
}

/***********************************/
/* Features */
/***********************************/
#Feature {
  margin-bottom: 80px;
}

#Feature .main_title {
  margin-bottom: 50px;
}

.feature_img {
  position: relative;
  left: 8%;
  top: -40px;
  width: 61px;
}

.feature_item_wrap {
  background-color: var(--area);
  padding: 60px 20px 20px;
  border-radius: 50px 50px 0 0;
  margin-top: -45px;
}

.feature_item {
  margin: 0 auto 40px;
  max-width: 320px;
}

.feature_item .cirecle p {
  font-weight: 600;
}

.cirecle {
  background-color: #fff;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin: 40px auto 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature_num {
  font-size: 48px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
}

.feature_item_img {
  width: 200px;
  margin-top: 8px;
}

.item_text {
  letter-spacing: 1.28px;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  #Feature {
    margin-bottom: 100px;
  }

  #Feature .main_title {
    margin-bottom: 150px;
  }

  .feature_img {
    width: 150px;
    left: 15%;
  }

  .feature_item_wrap {
    border-radius: 200px 200px 0 0;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .feature_item_wrap_inner {
    width: 1100px;
    display: flex;
    margin: 0 auto;
  }

  .cirecle {
    width: 320px;
    height: 320px;
  }

  .feature_num {
    font-size: 64px;
    top: -35px;
  }

  .feature_item_img {
    width: 250px;
    margin-top: 16px;
  }

}

/***********************************/
/* Price */
/***********************************/
#Price {
  margin-bottom: 80px;
}

#Price .main_title {
  margin-bottom: 35px;
}

/* タイトル調整（必要に応じて） */
#Price .bg_text {
  font-size: 48px;
}

#Price .main_title h2 {
  position: relative;
  top: 30px;
  margin-bottom: -55px;
}

#Price .title_cap {
  font-size: 11px;
  font-weight: 300;
  text-align: center;
  padding: 16px 20px 0;
}

.price_img {
  position: relative;
  left: 72%;
  margin-bottom: -4px;
  width: 80px;
}

/* スクロール全体の枠とスペース */
#Price .scroll-table-wrap {
  padding-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

#Price .scroll-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 transparent;
  padding-bottom: 16px;
  box-sizing: content-box;
}

/* スクロールバー（Webkit） */
#Price .scroll-table::-webkit-scrollbar {
  height: 8%;
}

#Price .scroll-table::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
  border-radius: 9999px;
}

#Price .scroll-table::-webkit-scrollbar-track {
  background-color: transparent;
}

/* テーブル設定 */
#Price .styled-table {
  min-width: 670px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

/* ヘッダー行 */
#Price .table-headline {
  background-color: transparent;
  color: #fff;
  height: 60px;
  font-size: 16px;
}

#Price .table-headline th {
  width: 200px;
  text-align: center;
  padding: 16px;
  background-color: #5283B3;
  border: solid 0.5px var(--area);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  letter-spacing: 1.18px;
}

/* データ行 */
#Price .table-dataline {
  background-color: #fff;
}

#Price .table-dataline td {
  min-width: 200px;
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  border: solid 0.5px var(--area);
  letter-spacing: 1.18px;
}

#Price .table-dataline .serviceline {
  font-weight: 700;
  letter-spacing: 1.18px;
}

/* 備考など */
#Price .note {
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 0.8px;
  padding-left: 24px;
  padding-right: 24px;
}

/* PC（1440px以上） */
@media screen and (min-width: 1024px) {
  #Price {
    margin-bottom: 120px;
  }

  #Price .main_title {
    margin-bottom: 100px;
  }

  #Price .main_title h2 {
    top: 90px;
  }

  #Price .bg_text {
    font-size: 140px;
  }

  #Price .title_cap {
    font-size: 14px;
    padding-top: 32px;
  }

  .price_img {
    width: 200px;
  }

  #Price .scroll-table-wrap {
    padding-bottom: 0;
  }

  /* テーブル設定 */
  #Price .styled-table {
    max-width: 984px;
    margin: 0 auto;
  }

  /* ヘッダー行 */
  #Price .table-headline th {
    font-size: 20px;
    padding: 23px;
  }

  /* データ行 */
  #Price .table-dataline td {
    font-size: 16px;
    padding: 8px 16px;
  }

  /* 備考など */
  #Price .note {
    font-size: 14px;
    width: 984px;
    margin: 0 auto;
    padding: 0 0 0 12px;
  }
}

/***********************************/
/* CTA */
/***********************************/
.CTA_area {
  background-image: url(./img/CTA_img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.CTA_area .contact_btn a {
  color: var(--txt);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding-left: 0;
  position: relative;
}

.CTA_area .contact_btn::after {
  content: "";
  background: url(./img/Arrow.svg) no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-22%);
}

/* ラージPC（1440px以上） */
@media screen and (min-width: 1024px) {

  .CTA_area {
    height: 400px;
    background-image: url(./img/CTA_img_pc.png);
  }

  .CTA_area .contact_btn {
    width: 600px;
    height: 90px;
  }

  .CTA_area .contact_btn a {
    font-size: 24px;
  }

  .CTA_area .contact_btn::after {
    right: 50px;
  }

  .CTA_area .contact_btn::before {
    width: 31px;
    height: 25px;
    left: 50px;
  }
}

/***********************************/
/* Difference */
/***********************************/

#Difference {
  margin-bottom: 80px;
}

#Difference .main_title {
  margin-bottom: 50px;
}

#Difference .main_title h2 {
  margin-bottom: -45px;
}

.difference_img {
  position: relative;
  left: 4%;
  margin-bottom: -24px;
  width: 100px;
}

/* スクロール全体の枠とスペース */
#Difference .scroll-table-wrap {
  padding-bottom: 16px;
  padding-left: 24px;
  position: relative;
  overflow: visible;
}

#Difference .scroll-table {
  overflow-x: auto;
  overflow-y: visible;
  /* 擬似要素の飛び出し表示用 */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 transparent;
  padding-bottom: 16px;
  box-sizing: content-box;
  position: relative;
}

/* スクロールバー（Webkit） */
#Difference .scroll-table::-webkit-scrollbar {
  height: 8%;
}

#Difference .scroll-table::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
  border-radius: 9999px;
}

#Difference .scroll-table::-webkit-scrollbar-track {
  background-color: transparent;
}

/* テーブル設定 */
#Difference .styled-table {
  min-width: 750px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  padding-top: 20px;
}

/* ヘッダー行 */
#Difference .table-headline {
  background-color: transparent;
  height: 50px;
  font-size: 16px;
}

#Difference .table-headline th {
  min-width: 130px;
  text-align: center;
  padding: 8px 16px;
  background-color: #C8D2DA;
  border: solid 0.5px var(--area);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  letter-spacing: 1.18px;
  font-weight: 300;
}

/* キャリアマートだけ飛び出す装飾 */
#Difference .table-headline .bg_yellow {
  background-color: var(--warn);
  position: relative;
  z-index: 1;
  font-weight: 500;
  min-width: 180px;
}

#Difference .table-headline .bg_yellow::before {
  content: "";
  position: absolute;
  top: -20px;
  /* 上方向への飛び出し */
  left: 0;
  width: 100%;
  height: 70px;
  /* 飛び出し背景の高さ */
  background-color: var(--warn);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: solid 0.5px var(--area);
  z-index: -1;
}

/* データ行 */
#Difference .table-dataline {
  background-color: #fff;
}

#Difference .table-dataline td {
  min-width: 130px;
  padding: 8px 16px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: solid 0.5px var(--area);
  letter-spacing: 1.18px;
  font-weight: 300;
  font-size: 16px;
}

#Difference .table-dataline .serviceline {
  font-weight: 300;
  letter-spacing: 1.18px;
  font-size: 14px;
  height: 46px;
}

/* キャリアマート列の強調 */
#Difference .table-dataline .bg_yellow {
  background-color: var(--warn);
  font-weight: 500;
  min-width: 180px;
}

/* 強調文字 */
#Difference .table-dataline .bold {
  font-weight: 400;
}

/* 丸記号 ◎○△× の大きさ調整 */
#Difference .table-dataline .bg_circle {
  font-size: 22px;
}

/* 空白ヘッダーセルの背景色 */
#Difference .table-headline .blank {
  background-color: var(--area);
}

/* ラージPC（1024px以上） */
@media screen and (min-width: 1024px) {

  #Difference .main_title {
    margin-bottom: 100px;
  }

  #Difference .img_wrap {
    width: 984px;
  }

  .difference_img {
    width: 200px;
    top: 50px;
    left: 25px;
  }

  /* テーブル設定 */
  #Difference .styled-table {
    width: 984px;
    margin: 0 auto;
  }

  /* ヘッダー行 */
  #Difference .table-headline {
    padding: 13.5px;
  }

  #Difference .table-headline th {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  /* キャリアマートだけ飛び出す装飾 */
  #Difference .table-headline .bg_yellow {
    font-size: 20px;
    padding: 6.5px 8px 13.5px;
  }

  #Difference .table-headline .bg_yellow::before {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  /* キャリアマート列の強調 */
  #Difference .table-dataline .bg_yellow {
    font-size: 20px;
    padding: 13.5px;
  }

  /* 丸記号 ◎○△× の大きさ調整 */
  #Difference .table-dataline .bg_circle {
    font-size: 32px;
    padding: 6.5px;
  }

}


/***********************************/
/* CaseStudy */
/***********************************/

#CaseStudy {
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.main_title {
  text-align: center;
  padding: 40px 0 20px;
}

.infinity-scroll_wrap {
  background-color: var(--area);
  height: 500px;
  border-top-left-radius: 100px;
  overflow: hidden;
}

.infinity-scroll {
  width: 100%;
  margin-top: 60px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.scroll-track {
  display: flex;
  justify-content: start;
  margin-left: 60px;
  padding-right: 30px;
  width: auto;
}

.case_study_box {
  width: 234px;
  height: 380px;
  border-top-left-radius: 32px;
  border: solid 2px #5283B3;
  text-align: center;
  background-color: #fff;
  margin-right: 16px;
  flex-shrink: 0;
}

.case_study_box img {
  width: 230px;
  padding-bottom: 20px;
  border-top-left-radius: 30px;
}

.name {
  font-size: 11px;
}

.line {
  border-top: 1.5px solid #5283B3;
  width: 100px;
  margin: 8px auto;
}

.cap {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin: 16px;
  height: 60px;
}

.text {
  font-size: 13px;
  text-align: left;
  margin: 0 16px 16px;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  .infinity-scroll_wrap {
    height: 600px;
  }

  .infinity-scroll {
    margin-top: 100px;
  }

  @media screen and (min-width:1360px) {
    .scroll-track {
      justify-content: center;
      margin-right: 0;
      overflow-x: hidden;
      padding-right: 0;
    }
  }

}

/***********************************/
/* Flow */
/***********************************/
#Flow {
  margin-bottom: 80px;
  color: var(--base);
}

#Flow .main_title h2 {
  color: var(--txt);
}

.flow_box {
  width: 280px;
  padding: 40px;
  background-color: #fff;
  text-align: center;
  margin: 0 auto 16px;
}

.flow_box h3 {
  height: 60px;
}

#Flow .num {
  font-size: 32px;
  font-family: "Roboto", serif;
  margin-bottom: 20px;
}

#Flow .line {
  width: 45px;
  border-top: 2px solid;
  margin-bottom: 20px;
}

#Flow img {
  width: 80px;
}

#Flow .text {
  margin: 10px 0 0;
  font-size: 16px;
}

#Flow .mini {
  font-size: 12px;
}

/*PC（1024px以上） */
@media screen and (min-width: 1024px) {
  .flow_box_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 120px;
  }

  .flow_box {
    width: 230px;
    padding: 40px 35px;
    margin-right: 12px;
  }
}

/* ラージPC（1440px以上） */
@media screen and (min-width: 1440px) {
  .flow_box_wrap {
    width: 1200px;
  }
}


/***********************************/
/* Question */
/***********************************/
#Question {
  margin-bottom: 80px;
}

#Question .main_title {
  margin-bottom: -10px;
}

.question_img {
  position: relative;
  left: 80%;
  width: 51px;
}

#Question h4 {
  color: var(--base);
  font-weight: 500;
  margin: 8px 0 32px;
}

#Question .item_wrap {
  width: 320px;
  min-height: 240px;
  margin: 0 auto;
  letter-spacing: 1.18px;
  border-bottom: dotted 3px #5283B3;
  margin-bottom: 60px;
}

#Question .item {
  margin-bottom: 50px;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  #Question .main_title {
    margin-bottom: 60px;
  }

  .question_img {
    width: 120px;
    left: 860px;
  }

  #Question .item_wrap {
    width: 700px;
    min-height: 168px;
  }

  #Question h4 {
    font-size: 20px;
  }
}

/***********************************/
/* Contact */
/***********************************/
#Contact {
  margin-bottom: 80px;
}

#Contact .main_title {
  margin-bottom: 40px;
}

/* タイトル調整（必要に応じて） */
#Contact .bg_text {
  font-size: 48px;
}

#Contact .main_title h2 {
  position: relative;
  top: 30px;
  margin-bottom: -55px;
}

.contact_img {
  position: relative;
  left: 65%;
  margin-bottom: -4px;
  width: 91px;
}

.form_box {
  padding: 20px 0;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
}

.form_box_inner {
  width: 80%;
  margin: 0 auto;
}

.form_box_inner iframe {
  width: 100%;
  border: none;
  height: 1200px;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  #Contact .bg_text {
    font-size: 140px;
  }

  #Contact .main_title h2 {
    top: 100px;
    margin-bottom: 0;
  }

  .contact_img {
    width: 240px;
    left: 860px;
  }

  .form_box {
    border-radius: 200px 200px 0 0;
    padding: 100px 0 50px;
  }

  .form_box_inner {
    max-width: 1000px;
  }

  .form_box_inner iframe {
    height: 1400px;
  }
}

/***********************************/
/* Campany */
/***********************************/
#Company {
  margin-bottom: 80px;
}

.company__list {
  display: flex;
  align-items: start;
  padding: 24px 0;
  margin: 0 auto;
  width: 327px;
  line-height: 1.5;
  border-top: 1px solid #C8D2DA;
}

.company__list:last-child {
  border-bottom: 1px solid #C8D2DA;
}

#Company .name {
  font-size: 14px;
  color: var(--base);
  font-weight: 500;
  width: 100px;
}

#Company .company__list .content {
  width: 227px;
  font-size: 14px;
}

/* PC（1024px以上） */
@media screen and (min-width: 1024px) {
  #Company {
    margin-bottom: 200px;
  }

  .company__list {
    width: 692px;
  }

  #Company .name {
    width: 170px;
  }

  #Company .company__list .content {
    width: 500px;
    font-size: 16px;
  }
}

/***********************************/
/* footer */
/***********************************/

#Footer {
  background-color: #fff;
  height: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#Footer img {
  width: 263px;
  margin-bottom: 12px;
}

#Footer p {
  font-size: 12px;
  color: var(--base);
}