@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* =====================================================
   =====================================================
   ******************  _layout.scss  *******************
   =====================================================
   ===================================================== */
body {
  width: 100%;
  color: #444C56;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  /* SP */
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    /* ドロワーメニューを開いたときに、背景のスクロールを禁止する */
  }
  body.fixed {
    overflow: hidden;
  }
}

main {
  padding-top: 80px;
  /* TABLET,SP */
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

/* =====================================================
   =====================================================
   ****************  _component.scss  ******************
   =====================================================
   ===================================================== */
/* === max-widthを指定して中央寄せ（section要素に適用） === */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  /* TABLET,SP */
}
@media screen and (max-width: 767px) {
  .container {
    max-width: none;
    margin: 0;
  }
}

/* === ヘッダー === */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 10vw);
  margin: 0 auto;
  padding: 16px 0;
}
header .header__container .header__company .header__companyText {
  font-size: 24px;
  font-weight: bold;
  color: #009FE8;
}
header .header__container .pc {
  display: block;
}
@media screen and (max-width: 767px) {
  header .header__container .pc {
    display: none;
  }
}
header .header__container .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  header .header__container .sp {
    display: block;
  }
}
header .header__container .header__navigation {
  display: flex;
  align-items: center;
}
header .header__container .header__navigation .header__navigationList {
  display: flex;
  align-items: center;
}
header .header__container .header__navigation .header__navigationList .header__navigationItem {
  position: relative;
  padding: 8px 16px 0;
  line-height: 1;
}
header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
  font-size: 14px;
}
header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink::before, header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink::after {
  display: block;
  position: absolute;
  left: 50%;
  background-color: #009FE8;
  transform: translateX(-50%);
  transition: all 0.3s;
  content: "";
}
header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink::before {
  bottom: 3px;
  width: 19px;
  height: 1px;
}
header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink::after {
  bottom: 0;
  width: 9px;
  height: 1px;
}
header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink:hover::before {
  width: 9px;
}
header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink:hover::after {
  width: 19px;
}
header .header__container .header__navigation .contactButton {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #009FE8;
  transition: all 0.3s;
}
header .header__container .header__navigation .contactButton .contactButton__link {
  transition: all 0.3s;
  color: #fff;
  font-size: 14px;
}
header .header__container .header__navigation .contactButton:hover {
  border: 1px solid #009FE8;
  background-color: #fff;
}
header .header__container .header__navigation .contactButton:hover .contactButton__link {
  color: #009FE8;
}
header {
  /* SP */
}
@media screen and (max-width: 767px) {
  header .header__container {
    width: 100%;
    padding: 10px 20px;
  }
  header .header__container .header__logo .header__logoLink .header__logoImage {
    width: 85px;
    height: auto;
  }
  header .header__container {
    /* TABLET,SP用ナビゲーション(ハンバーガーボタン) */
  }
  header .header__container .menuButton {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    padding-top: 4px;
  }
  header .header__container .menuButton .menuButton__lines {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
  }
  header .header__container .menuButton .menuButton__lines .menuButton__line {
    display: block;
    width: 2px;
    background-color: #009FE8;
    /* それぞれの高さを指定 */
  }
  header .header__container .menuButton .menuButton__lines .menuButton__line.--left, header .header__container .menuButton .menuButton__lines .menuButton__line.--right {
    height: 20px;
  }
  header .header__container .menuButton .menuButton__lines .menuButton__line.--center {
    height: 10px;
  }
  header .header__container .menuButton {
    /* 状態切り替え */
  }
  header .header__container .menuButton.active .menuButton__lines .menuButton__line.--left, header .header__container .menuButton.active .menuButton__lines .menuButton__line.--right {
    height: 10px;
  }
  header .header__container .menuButton.active .menuButton__lines .menuButton__line.--center {
    height: 20px;
  }
  header .header__container .menuButton .menuButton__text {
    color: #009FE8;
    font-size: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
  }
  header .header__container {
    /* TABLET,SP用ナビゲーション(ドロワーメニュー) */
  }
  header .header__container .header__navigation.--drawer {
    display: none;
  }
  header .header__container .header__navigation.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    row-gap: 24px;
    backdrop-filter: blur(10px);
  }
  header .header__container .header__navigation .header__navigationList {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 12px;
  }
  header .header__container .header__navigation .header__navigationList .header__navigationItem {
    display: flex;
    justify-content: center;
    width: 163.5px;
    padding: 12px 0 8px;
    border: 1px solid #009FE8;
    border-radius: 4px;
    background-color: #fff;
  }
  header .header__container .header__navigation .header__navigationList .header__navigationItem .header__navigationLink {
    padding-bottom: 15px;
  }
  header .header__container .header__navigation .contactButton {
    padding: 16px 42px;
  }
}

/* === フッター === */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  border-top: 1px solid #ccc;
  padding: 40px 0;
}
footer .footer__title {
  font-size: 24px;
  font-weight: bold;
  color: #009FE8;
}
footer .footer__text {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  footer .footer__title {
    font-size: 20px;
  }
}

/* === パンくずリスト === */
.breadcrumb {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #444C56;
}
.breadcrumb .breadcrumb__link {
  color: #444C56;
}
.breadcrumb .breadcrumb__link:hover {
  color: #009FE8;
}
.breadcrumb .breadcrumb__separator {
  font-size: 10px;
}
.breadcrumb .breadcrumb__current {
  color: #444C56;
}

/* === セクションタイトル === */
.sectionTitle {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.sectionTitle .sectionTitle__title {
  font-size: 28px;
}
.sectionTitle .sectionTitle__subtitle {
  display: flex;
  align-items: center;
  color: #009FE8;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  column-gap: 12px;
}
.sectionTitle .sectionTitle__subtitle .threeDot {
  --dot-total-w: 35;
  --dot-w: 7;
  --dot-col: var(--main-color, #009FE8);
  display: block;
  width: calc(var(--dot-total-w) * 1em / 16);
  height: calc(var(--dot-w) * 1em / 16);
  background: linear-gradient(to right, var(--dot-col) 0, var(--dot-col) calc(var(--dot-w) * 1em / 16), rgba(0, 0, 0, 0) calc(var(--dot-w) * 1em / 16), rgba(0, 0, 0, 0) calc(var(--dot-w) * 2em / 16));
  background-repeat: repeat-x;
  background-size: calc(var(--dot-w) * 2em / 16) calc(var(--dot-w) * 1em / 16);
}
.sectionTitle .sectionTitle__subtitle .threeDot.--animation {
  animation: dotinfinity 1s linear infinite;
}
@keyframes dotinfinity {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: 165.3%;
  }
}

/* === 変数 === */
/* === メインビジュアル === */
.mainVisual {
  display: flex;
  align-items: center;
  height: 60vh;
  min-height: 540px;
  background: url(../image/top/mv.png) center/cover no-repeat;
  padding: 0 20px;
}
.mainVisual .mainVisual__content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 1200px;
  margin: 0 auto;
}
.mainVisual .mainVisual__content .mainVisual__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: bold;
}
.mainVisual .mainVisual__content .mainVisual__subtitle {
  max-width: 500px;
  width: 100%;
  font-size: 24px;
}
.mainVisual {
  /* TABLET,SP */
}
@media screen and (max-width: 767px) {
  .mainVisual {
    align-items: flex-end;
  }
  .mainVisual .mainVisual__content {
    width: 100%;
    margin-bottom: 40px;
    row-gap: 20px;
  }
  .mainVisual .mainVisual__content .mainVisual__title {
    font-size: 28px;
  }
  .mainVisual .mainVisual__content .mainVisual__subtitle {
    max-width: 320px;
    font-size: 20px;
  }
}

/* === お知らせ === */
.news {
  margin: 80px 0;
}
.news .news__container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.news .news__container .news__content {
  width: 800px;
}
.news .news__container .news__content .news__contentList .news__contentItem {
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  border-bottom: 1px solid #ccc;
  row-gap: 16px;
}
.news .news__container .news__content .news__contentList .news__contentItem:first-child {
  border-top: 1px solid #ccc;
}
.news .news__container .news__content .news__contentList .news__contentItem .news__contentItemTitle a {
  color: blue;
  text-decoration: underline;
}
.news .news__container .news__content .news__contentList .news__contentItem .news__contentItemTitle a:hover {
  opacity: 0.5;
}
.news {
  /* SP */
}
@media screen and (max-width: 1040px) {
  .news {
    margin: 60px 0;
  }
  .news .news__container {
    flex-direction: column;
    row-gap: 40px;
  }
  .news .news__container .news__content {
    width: 100%;
  }
  .news .news__container .news__content .news__contentList .news__contentItem {
    padding: 20px;
  }
}

/* === 背景2 === */
.backgroundGroup {
  padding: 80px 0;
  background-color: #FAFAFA;
}

/* === 当社の特徴 === */
.feature {
  margin-bottom: 100px;
}
.feature .feature__container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.feature .feature__container .feature__list {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.feature .feature__container .feature__list .featureItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.feature .feature__container .feature__list .featureItem .featureItem__image {
  width: 100%;
}
.feature .feature__container .feature__list .featureItem .featureItemText {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}
.feature .feature__container .feature__list .featureItem .featureItemText .featureItemText__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.feature .feature__container .feature__list .featureItem .featureItemText .featureItemText__description {
  text-align: center;
}
.feature {
  /* SP */
}
@media screen and (max-width: 767px) {
  .feature {
    margin-bottom: 80px;
  }
  .feature .feature__container .feature__list {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .feature .feature__container .feature__list .featureItem {
    max-width: 400px;
    width: 100%;
  }
  .feature .feature__container .feature__list .featureItem .featureItemText .featureItemText__title {
    font-size: 18px;
  }
}

/* === 事業内容 === */
.service .service__container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.service .service__container .service__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 40px;
}
.service .service__container .service__list .serviceItem {
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
}
.service .service__container .service__list .serviceItem .serviceImage {
  display: block;
  width: 100%;
  height: auto;
}
.service .service__container .service__list .serviceItem .serviceBody {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 40px;
}
.service .service__container .service__list .serviceItem .serviceBody .serviceBody__title {
  font-size: 24px;
}
.service .service__container .service__list .serviceItem .serviceBody .serviceBody__title .small {
  font-size: 14px;
}
.service .service__container .service__list .serviceItem .serviceBody .serviceBody__list .serviceBody__item {
  display: inline-block;
  position: relative;
  margin-right: 24px;
  margin-bottom: 16px;
  padding-left: 14px;
  font-size: 12px;
}
.service .service__container .service__list .serviceItem .serviceBody .serviceBody__list .serviceBody__item::before {
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #009FE8;
  content: "";
}
.service {
  /* SP */
}
@media screen and (max-width: 767px) {
  .service .service__container .service__list .serviceItem .serviceBody {
    padding: 40px 20px;
  }
  .service .service__container .service__list .serviceItem .serviceBody .serviceBody__title {
    font-size: 20px;
  }
}

/* === 会社概要 === */
.company {
  margin: 80px 0;
}
.company .company__container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.company .company__container .company__content {
  width: 800px;
}
.company .company__container .company__content .company-table {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.company .company__container .company__content .company-table .company-table__inner {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.company .company__container .company__content .company-table .company-table__inner .company-table__title {
  width: 160px;
  padding: 32px 20px;
  border-bottom: 1px solid #3A4D63;
}
.company .company__container .company__content .company-table .company-table__inner .company-table__text {
  flex: 1;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.company {
  /* SP */
}
@media screen and (max-width: 1040px) {
  .company {
    margin: 60px 0;
  }
  .company .company__container {
    flex-direction: column;
    row-gap: 40px;
  }
  .company .company__container .company__content {
    width: 100%;
  }
  .company .company__container .company__content .company-table {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
  }
  .company .company__container .company__content .company-table .company-table__inner {
    display: flex;
    border-bottom: 1px solid #ccc;
  }
  .company .company__container .company__content .company-table .company-table__inner .company-table__title {
    width: 120px;
    font-size: 16px;
    padding: 20px 16px;
  }
  .company .company__container .company__content .company-table .company-table__inner .company-table__text {
    padding: 20px 16px;
    row-gap: 8px;
  }
}