@charset "UTF-8";
/*===========================
    ベース
===========================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 101px;
}
@media screen and (min-width: 960px) {
  html {
    scroll-padding-top: 116px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  font-weight: 400;
  line-height: 2;
  background-color: white;
  color: #333333;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  border: none;
}

section,
figure {
  width: 100%;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 480px) {
  .sp_only {
    display: none;
  }
}

.no_sp {
  display: none;
}
@media screen and (min-width: 480px) {
  .no_sp {
    display: block;
  }
}

.ly_footer, .ly_services, .ly_works, .ly_flows, .ly_contact, .bl_header, .bl_main_img {
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (min-width: 960px) {
  .bl_contact_body, .bl_footer, .ly_services, .ly_works, .ly_flows, .ly_contact, .bl_header, .bl_main_img {
    padding-right: 5%;
    padding-left: 5%;
  }
}

@media screen and (min-width: 1440px) {
  .ly_services, .ly_works, .ly_flows, .ly_contact, .bl_header, .bl_main_img {
    max-width: 1280px;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.item_center_lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.appear {
  opacity: 0;
  transition: all 0.8s ease;
}
.appear.inview {
  opacity: 1;
}

/* 各セクションの余白 */
.ly_container {
  position: relative;
  margin-top: 157px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .ly_container {
    margin-bottom: 120px;
    row-gap: 80px;
  }
}
@media screen and (min-width: 960px) {
  .ly_container {
    margin-bottom: 160px;
    row-gap: 120px;
  }
}

/* 各セクションの余白(特殊) */
.ly_container.ly_container_sp {
  margin-bottom: 0;
}

/*===========================
    共通部品
===========================*/
/* セクションタイトル */
.bl_sectionTitle {
  margin-bottom: 40px;
}

.bl_sectionTitle_en {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (min-width: 960px) {
  .bl_sectionTitle_en {
    font-size: 80px;
  }
}

.bl_sectionTitle_ja {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .bl_sectionTitle_ja {
    font-size: 14px;
  }
}
.bl_sectionTitle_ja::after {
  background-color: #333333;
  content: "";
  height: 1px;
  width: 56px;
  margin-left: 12px;
}

/* サブセクションタイトル */
.bl_subSectionTitle {
  color: #236a99;
  padding-bottom: 8px;
  border-bottom: 1px solid #236a99;
  font-size: 18px;
  font-weight: 600;
}

/* ボタン */
.el_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 64px;
  line-height: 1.7;
  font-weight: 500;
  color: white;
  background-color: #236a99;
  border: 2px solid #236a99;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.el_btn:hover {
  color: #236a99;
  background-color: white;
}

.bl_list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 0;
  padding-left: 0;
}
.bl_list > li {
  display: flex;
}

.bl_list.bl_no_list {
  counter-reset: count_no;
}
.bl_list.bl_no_list > li::before {
  counter-increment: count_no;
  content: counter(count_no) ".";
  margin-right: 8px;
}

/*===========================
    Main Image
===========================*/
.ly_main_img {
  position: relative;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
@media screen and (min-width: 960px) {
  .ly_main_img {
    width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
}
.ly_main_img::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.bl_main_img {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 100%;
}

.bl_main_img_mainMsg {
  font-size: 24px;
  line-height: 1.7;
  color: white;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .bl_main_img_mainMsg {
    margin-left: 108px;
  }
}

/*===========================
    ヘッダー
===========================*/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 960px) {
  .ly_header {
    height: 101px;
  }
}

.bl_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
}

/* ヘッダーナビゲーション */
@media screen and (max-width: 959px) {
  .bl_nav {
    position: absolute;
    top: -100vh;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    color: #333333;
    background-color: white;
    transition: all 0.3s ease;
  }
}

.bl_nav.open {
  top: 0;
}

@media screen and (max-width: 959px) {
  .bl_headerNav {
    padding-top: 4em;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 960px) {
  .bl_headerNav {
    display: flex;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}

.bl_headerNav_item {
  list-style: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 959px) {
  .bl_headerNav_item {
    font-size: 18px;
    width: 100%;
    margin-bottom: 2em;
  }
  .bl_headerNav_item::after {
    content: "";
    display: block;
    margin-top: 2em;
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
  }
}
@media screen and (min-width: 960px) {
  .bl_headerNav_item {
    font-size: 14px;
    margin-bottom: 1em;
    line-height: 1;
    font-weight: 400;
  }
}
.bl_headerNav_item a {
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.bl_headerNav_item a:hover {
  opacity: 0.5;
}

/* ハンバーガーメニュー */
.bl_hamburgerMenu {
  width: 30px;
  height: 22px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .bl_hamburgerMenu {
    display: none;
  }
}
.bl_hamburgerMenu span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #333333;
}
.bl_hamburgerMenu span:last-child {
  margin-bottom: 0;
}

.bl_hamburgerCloseBtn {
  position: absolute;
  top: 50.5px;
  right: 27px;
  height: 22px;
  width: 30px;
  transform: translateY(-50%);
  padding: 0;
  background-color: transparent;
  color: #333333;
  cursor: pointer;
}
.bl_hamburgerCloseBtn::before, .bl_hamburgerCloseBtn::after {
  content: "";
  position: absolute;
  background-color: #333333;
  width: 31.108px;
  height: 2px;
  display: block;
}
.bl_hamburgerCloseBtn::before {
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: center center;
}
.bl_hamburgerCloseBtn::after {
  top: 50%;
  left: 0;
  transform: rotate(45deg);
  transform-origin: center center;
}
@media screen and (min-width: 960px) {
  .bl_hamburgerCloseBtn {
    display: none;
  }
}

/*===========================
    ページトップ
===========================*/
.ly_pageTopSection {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: clamp(12.5rem, 8.099rem + 18.78vw, 25rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 157px;
}
.ly_pageTopSection:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .ly_pageTopSection {
    margin-top: 181px;
    margin-bottom: 120px;
  }
}

/*===========================
    フッター
===========================*/
.ly_footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f2f8fc;
}

.bl_footer {
  color: #707070;
}

.bl_footer_follow {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 24px;
}

.bl_footer_copyright {
  font-size: 12px;
  line-height: 1;
}

/*===========================
    ヘルパークラス
===========================*/
.hp_fw_normal {
  font-weight: 400 !important;
}

/*===========================
    GA4のバッジ無効化
===========================*/
.grecaptcha-badge {
  visibility: hidden;
}

/*===========================
    お問い合わせ
===========================*/
@media screen and (min-width: 960px) {
  .bl_contact_content {
    display: flex;
    -moz-column-gap: 40px;
         column-gap: 40px;
    justify-content: space-between;
    align-items: center;
  }
}

.bl_contact_img {
  margin-bottom: 32px;
  background-image: url("./../../image/contact.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  aspect-ratio: 524/374;
}
@media screen and (max-width: 959px) {
  .bl_contact_img {
    max-height: 300px;
  }
}
@media screen and (min-width: 960px) {
  .bl_contact_img {
    margin-bottom: 0;
    max-width: 40%;
    min-height: 100%;
  }
}

.bl_contact_body > p {
  margin-bottom: 32px;
}
@media screen and (min-width: 960px) {
  .bl_contact_body > p {
    margin-bottom: 56px;
  }
}

@media screen and (min-width: 960px) {
  .bl_contact_btn_container > .el_btn {
    width: initial;
  }
}

.bl_work_items {
  display: grid;
  row-gap: 40px;
}
@media screen and (min-width: 960px) {
  .bl_work_items {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
  }
}
.bl_work_items > a {
  display: contents;
}

.bl_work_item {
  text-decoration: none;
  color: #333333;
}
@media screen and (min-width: 960px) {
  .bl_work_item {
    display: grid;
    grid-template-rows: subgrid; /* 追加 */
    grid-row: span 2;
    gap: 16px;
  }
}

.bl_work_items.slide .bl_work_item_imgArea {
  aspect-ratio: initial;
}

.bl_work_item_imgArea {
  overflow-y: hidden;
  border: 1px solid #c0c0c0;
  background-color: #e0e0e0;
  margin-bottom: 16px;
  aspect-ratio: 384/250;
}
@media screen and (max-width: 959px) {
  .bl_work_item_imgArea > img {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .bl_work_item_imgArea {
    max-height: 250px;
    margin-bottom: 0;
  }
}

.bl_work_item_imgArea.slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_work_item_info {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  font-size: 14px;
  line-height: 1;
}

/*===========================
    Main Image
===========================*/
.ly_main_img.site {
  background-image: url("./../../image/site/top.webp");
}

.ly_main_img.image {
  background-image: url("./../../image/image/top.webp");
}

/*===========================
    Service
===========================*/
.bl_service {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (min-width: 960px) {
  .bl_service {
    row-gap: 40px;
  }
}

.bl_service_icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.bl_service_icon {
  background-color: #236a99;
  color: white;
  padding: 4px 24px;
  border-radius: 80px;
}
@media screen and (min-width: 960px) {
  .bl_service_icon {
    padding: 8px 24px;
  }
}

/*===========================
    Works
===========================*/
/*===========================
    Flow
===========================*/
.bl_flows {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (min-width: 960px) {
  .bl_flows {
    row-gap: 56px;
  }
}

.bl_flow {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  box-shadow: 0px 0 15px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 960px) {
  .bl_flow {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.bl_flow_step {
  color: #236a99;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl_flow_step_txt {
  font-size: 12px;
  margin-bottom: 8px;
}
@media screen and (min-width: 960px) {
  .bl_flow_step_txt {
    font-size: 14px;
  }
}

.bl_flow_step_no {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .bl_flow_step_no {
    font-size: 16px;
  }
}

.bl_flow_body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bl_flow_body_ttl {
  font-style: 24px;
  line-height: 1.7;
  font-weight: 600;
}

.bl_flow_body_txt {
  line-height: 1.7;
}/*# sourceMappingURL=service.css.map */