@charset "UTF-8";
.ly_openAn {
  width: 100vw;
  height: 100vh;
  background: #141414;
  overflow: hidden;
  position: fixed;
  z-index: 9999;
}

.bl_openAn_group {
  width: 100vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.bl_openAn_imgWrapper {
  width: 50vw;
  max-width: 200px;
  margin: 0 auto;
}
.bl_openAn_imgWrapper img {
  width: 100%;
}

.bl_openAn_txtGroup {
  text-align: center;
  font-size: 24px;
  color: #fff;
  margin-top: 27px;
}

.bl_openAn_curtain {
  background: #0f2350;
  width: 100vw;
  height: 100vh;
  transform: translateY(0%);
}

@media screen and (min-width: 1080px) {
  .bl_openAn_txtGroup {
    font-size: 38px;
    margin-top: 48px;
  }
}
.ly_header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.3s;
}

@media screen and (min-width: 1080px) {
  .ly_header {
    height: 85px;
  }
}
.bl_header_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
}

.bl_header_logoWrapper {
  display: block;
  width: 50px;
  z-index: -2;
}
.bl_header_logoWrapper img {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .bl_header_inner {
    width: 80%;
  }
  .bl_header_logoWrapper {
    width: 85px;
  }
}
@media screen and (min-width: 1080px) {
  .header-active.bl_header {
    background: rgba(100, 100, 100, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}

@media screen and (min-width: 1080px) {
  .header-active .bl_header_pc_nav_list_item a {
    color: #fff;
  }
}

.bl_header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_sp_hamburger_menu_bg {
  width: 100vw;
  height: 100vh;
  background: #646464;
  position: absolute;
  top: 0;
  right: -100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  z-index: -1;
}

.bl_header_sp_hamburger_btn .bl_header_sp_hamburger_btn_line,
.bl_header_sp_hamburger_btn .bl_header_sp_hamburger_btn_line2 {
  display: block;
  width: 30px;
  height: 1px;
  transition: all 0.3s;
  background: #191919;
}
.bl_header_sp_hamburger_btn .bl_header_sp_hamburger_btn_line2 {
  margin-top: 8px;
}

.bl_header_sp_hamburger_btn_line {
  -webkit-animation: hamburger 0.5s forwards;
          animation: hamburger 0.5s forwards;
}

@-webkit-keyframes hamburger {
  0% {
    transform: translateY(5px) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(0);
  }
  75% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-8px);
  }
}

@keyframes hamburger {
  0% {
    transform: translateY(5px) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(0);
  }
  75% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-8px);
  }
}
.bl_header_sp_hamburger_btn_line2 {
  -webkit-animation: hamburger2 0.5s forwards;
          animation: hamburger2 0.5s forwards;
}

@-webkit-keyframes hamburger2 {
  0% {
    transform: translateY(-4px) rotate(-45deg);
  }
  50% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes hamburger2 {
  0% {
    transform: translateY(-4px) rotate(-45deg);
  }
  50% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.bl_header_sp_hamburger_menu_body {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.bl_header_sp_hamburger_menu_body .bl_header_sp_hamburger_menu .bl_header_sp_hamburger_menu_list {
  font-size: 22px;
  color: #fff;
  text-align: center;
}
.bl_header_sp_hamburger_menu_body .bl_header_sp_hamburger_menu .bl_header_sp_hamburger_menu_list + .bl_header_sp_hamburger_menu_list {
  margin-top: 24px;
}

.bl_header_sp_hamburger_menu_list_line {
  display: block;
  width: 100%;
  height: 0.5px;
  background: #141414;
  margin: 5px 0 20px 0;
}

.is-active .bl_header_sp_hamburger_menu_bg {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.is-active .bl_header_sp_hamburger_btn span:nth-of-type(1) {
  -webkit-animation: hamburger-active1 0.8s forwards;
          animation: hamburger-active1 0.8s forwards;
}

.is-active .bl_header_sp_hamburger_btn span:nth-of-type(2) {
  -webkit-animation: hamburger-active2 0.8s forwards;
          animation: hamburger-active2 0.8s forwards;
}

@-webkit-keyframes hamburger-active1 {
  0% {
    transform: translateX(-8px);
  }
  25% {
    transform: translateX(0px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(5px) rotate(45deg);
  }
}

@keyframes hamburger-active1 {
  0% {
    transform: translateX(-8px);
  }
  25% {
    transform: translateX(0px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(5px) rotate(45deg);
  }
}
@-webkit-keyframes hamburger-active2 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-4px) rotate(-45deg);
  }
}
@keyframes hamburger-active2 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-4px) rotate(-45deg);
  }
}
@media screen and (min-width: 1080px) {
  .bl_header_sp {
    display: none;
  }
}
.bl_header_pc {
  display: none;
}

@media screen and (min-width: 1080px) {
  .bl_header_pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
  }
  .bl_header_pc_nav_list {
    line-height: 85px;
    display: flex;
    gap: 30px;
    align-items: center;
    overflow: scroll;
    -ms-overflow-style: none;
  }
  .bl_header_pc_nav_list::-webkit-scrollbar {
    display: none;
  }
  .bl_header_pc_nav_list_item {
    color: #191919;
    flex-shrink: 0;
  }
  .bl_header_pc_nav_list_item a {
    transition: all 0.3s;
  }
  .bl_header_pc_nav_list_item a:hover {
    opacity: 0.7;
  }
}
.bl_header_pc_nav_sub {
  width: 200px;
  padding: 50px 20px;
  background: rgba(100, 100, 100, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: absolute;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.bl_header_pc_nav_sub_list {
  line-height: 1.5em;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.bl_header_pc_nav_sub_list + .bl_header_pc_nav_sub_list {
  margin-top: 14px;
}

.is-active .bl_header_pc_nav_sub {
  opacity: 1;
  visibility: visible;
}

.ly_footer {
  width: 100%;
  background: radial-gradient(#191919, #505050);
  color: #fff;
  padding-top: 30px;
}

@media screen and (min-width: 1080px) {
  .ly_footer {
    padding-top: 57px;
  }
}
.bl_footer_inner {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .bl_footer_inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  .bl_footer_left {
    display: flex;
    gap: 29px;
  }
}
.bl_footer_logoWrapper {
  text-align: center;
  margin: 0 auto;
  width: 70px;
}
.bl_footer_logoWrapper img {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .bl_footer_logoWrapper {
    width: 120px;
  }
}
.bl_footer_address,
.bl_footer_contact {
  text-align: center;
}

.bl_footer_address {
  margin-top: 12px;
}

.bl_footer_contact {
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .bl_footer_address,
.bl_footer_contact {
    text-align: left;
  }
}
.bl_footer_line_pc {
  display: none;
}

@media screen and (min-width: 1080px) {
  .bl_footer_line_pc {
    display: block;
    width: 1px;
    height: 170px;
    background: #fff;
  }
}
.bl_footer_nav_body {
  margin: 0 auto;
  margin-top: 29px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.bl_footer_nav_line {
  display: block;
  width: 1px;
  height: 17px;
  background: #fff;
  transform: rotate(15deg);
}

.bl_footer_nav_sub {
  display: none;
}

.bl_footer_nav_list:nth-child(4) {
  position: relative;
}

@media screen and (min-width: 768px) {
  .bl_footer_nav_body {
    justify-content: center;
  }
}
@media screen and (min-width: 1080px) {
  .bl_footer_nav_body {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .bl_footer_nav_list {
    flex-shrink: 0;
  }
  .bl_footer_nav_list a {
    transition: all 0.3s;
  }
  .bl_footer_nav_list a:hover {
    opacity: 0.7;
  }
  .bl_footer_nav_list:nth-child(7) {
    position: relative;
  }
  .bl_footer_nav_sub {
    line-height: 1.8em;
    width: 150px;
    display: block;
    position: absolute;
    top: 32px;
    left: 0;
  }
  .bl_footer_nav_sub_list::before {
    content: "";
    width: 17px;
    height: 17px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    margin-right: 7px;
  }
}
.bl_footer_copyRight_wrapper {
  margin: 0 auto;
  margin-top: 33px;
  padding: 4px 0;
  text-align: center;
  background: #dedede;
}

.bl_footer_copyRight {
  font-family: "Lato";
  color: #191919;
}

@media screen and (min-width: 1080px) {
  .bl_footer_copyRight_wrapper {
    margin-top: 57px;
  }
}
body {
  font-size: 14px;
  font-family: "Noto Serif JP";
  color: #191919;
  line-height: 1.5em;
  letter-spacing: 1px;
}

span {
  display: inline-block;
}

@media screen and (min-width: 1080px) {
  body {
    font-size: 16px;
  }
}
.bl_cont_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

@media screen and (min-width: 1080px) {
  .bl_cont_inner {
    width: 80%;
  }
}
.bl_imgWrapper img {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .el_lb {
    display: none;
  }
}
.un_lb__reverse {
  display: none;
}

@media screen and (min-width: 1080px) {
  .un_lb {
    display: none;
  }
  .un_lb__reverse {
    display: block;
  }
}
.ly_kv {
  padding: 65px 0;
}

.ly_kv__top {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.ly_cont {
  padding: 65px 0;
}

.ly_cont__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-behavior: smooth;
  position: relative;
}

.ly_cont__bgBlack {
  background: #414141;
}

.ly_cont__bgBlue {
  background: #165e83;
}

.ly_cont__single {
  padding: 40px 0;
}

.ly_kv,
.ly_cont {
  scroll-snap-align: start;
}

@media screen and (min-width: 1080px) {
  .ly_kv {
    padding: 140px 0;
  }
  .ly_cont {
    padding: 140px 0;
  }
  .ly_cont__single {
    padding: 50px 0;
  }
}
.ly_kv__single {
  overflow: hidden;
}

.ly_cont__access {
  background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/acess_bgImg-2500px.png) left bottom/cover;
}

@media screen and (min-width: 1080px) {
  .ly_cont_access {
    background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)) 70% 70%/cover, url(../img/acess_bgImg-2500px.png) 70% 70%/cover;
  }
}
.ly_secTtl {
  --pseudo-width: 120px;
}

.ly_secTtl {
  position: relative;
}

.ly_secTtl::before {
  content: "";
  display: block;
  width: var(--pseudo-width);
  height: 1px;
  background: #0f2350;
  position: absolute;
  left: -18px;
  bottom: -10px;
}

@media screen and (min-width: 768px) {
  .ly_secTtl {
    --pseudo-width: 220px;
  }
}
@media screen and (min-width: 1080px) {
  .ly_secTtl {
    --pseudo-width: 450px;
  }
  .ly_secTtl::before {
    width: var(--pseudo-width);
    bottom: -20px;
  }
}
.ly_secTtl2 {
  text-align: center;
}

.ly_btn {
  margin-top: clamp(45px, 10vh, 73px);
}

.ly_btn2 {
  text-align: center;
  margin-top: 45px;
}

.bl_scrollSnap {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  /* スクロールバー非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bl_scrollSnap::-webkit-scrollbar {
  display: none;
}

.bl_kv_single_ttl_jp {
  font-size: 32px;
  transform: translateX(47px);
}

.bl_kv_single_ttl_en {
  font-size: 18px;
  font-family: "Lato";
  color: #0f2350;
  margin-top: 18px;
  transform: translateX(74px);
  letter-spacing: 5px;
}

.bl_kv_single_img {
  width: 70%;
  margin: 0 0 0 auto;
  margin-top: 32px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.bl_kv_single_img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bl_kv_single_ttl_jp {
    font-size: 52px;
  }
  .bl_kv_single_ttl_en {
    font-size: 32px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1080px) {
  .bl_kv_single_ttl_jp {
    font-size: 80px;
    transform: translateX(175px);
  }
  .bl_kv_single_ttl_en {
    font-size: 40px;
    margin-top: 52px;
    transform: translateX(255px);
  }
  .bl_kv_single_img {
    margin-top: 52px;
    border-radius: 30px 0 0 30px;
  }
}
.bl_secTtl_jp {
  font-size: 20px;
  font-weight: 600;
  transform: translateX(30px);
}

.bl_secTtl_en {
  font-size: 12px;
  font-family: "Lato";
  color: #0f2350;
  transform: translateX(46px);
  margin-top: 3px;
  letter-spacing: 2px;
}

.bl_secTtl_jp__white {
  color: #fff;
}

.bl_secTtl_en__white {
  color: #fff;
}

.bl_secTtl_imgWrapper img {
  margin-bottom: 8px;
  transform: translateX(30px);
}

@media screen and (min-width: 768px) {
  .bl_secTtl_jp {
    margin-top: 16px;
    font-size: 32px;
    transform: translateX(50px);
  }
  .bl_secTtl_en {
    margin-top: 16px;
    font-size: 22px;
    transform: translateX(80px);
  }
  .bl_secTtl_imgWrapper img {
    margin-bottom: 8px;
    transform: translateX(50px);
  }
}
@media screen and (min-width: 1080px) {
  .bl_secTtl_jp {
    font-size: 54px;
    transform: translateX(120px);
  }
  .bl_secTtl_en {
    font-size: 31px;
    margin-top: 35px;
    transform: translateX(200px);
  }
  .bl_secTtl_imgWrapper img {
    margin-bottom: 24px;
    transform: translateX(120px);
  }
}
.bl_secTtl2_jp {
  font-size: 18px;
  font-weight: 600;
  margin-top: 21px;
  line-height: 125%;
}

.bl_secTtl2_en {
  font-size: 12px;
  font-family: "Lato";
  margin-top: 7px;
  letter-spacing: 3px;
  color: #0f2350;
  text-indent: 3px;
}

.bl_secTtl2_jp__white {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .bl_secTtl2_jp {
    font-size: 26px;
  }
  .bl_secTtl2_en {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .bl_secTtl2_jp {
    font-size: 40px;
    margin-top: 45px;
  }
  .bl_secTtl2_en {
    font-size: 24px;
    margin-top: 12px;
  }
}
.bl_access {
  margin-top: 35px;
}

.bl_access_map {
  width: 100%;
  height: clamp(230px, 40vh, 300px);
  max-width: 1500px;
  margin: 0 auto;
}
.bl_access_map iframe {
  width: 100%;
  height: 100%;
}

.bl_access_body {
  width: 90%;
  margin: clamp(20px, 3vh, 36px) auto 0 auto;
}

.bl_access_txt {
  font-size: clamp(16px, 3vw, 24px);
  line-height: 150%;
}

@media screen and (min-width: 1080px) {
  .bl_access_map {
    margin-top: 60px;
  }
  .bl_access_body {
    width: 80%;
  }
}
.el_btn {
  display: block;
  width: 160px;
  text-align: center;
  padding: 6px 0;
  margin: 0 0 0 auto;
  background: #0f2350;
  position: relative;
  color: #fff;
}

.el_btn::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 14px;
}

@media screen and (min-width: 1080px) {
  .el_btn {
    width: 250px;
    padding: 10px 0;
    background: none;
    border: 1px solid #0f2350;
    transition: all 0.3s;
    position: relative;
    z-index: 11;
  }
  .el_btn:after {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 20px;
    transition: all 0.3s;
  }
  .el_btn:before {
    content: "";
    width: 0;
    height: 100%;
    background: #0f2350;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s;
  }
  .el_btn:hover {
    color: #fff;
  }
  .el_btn:hover:before {
    width: 100%;
  }
  .el_btn:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateX(5px) rotate(45deg);
  }
}
.el_btn2 {
  display: inline-block;
  width: 120px;
  padding: 7px 0;
  background: #141414;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #191919;
  transition: all 0.3s;
}

.el_btn2:hover {
  background: #fff;
  color: #191919;
}

@media screen and (min-width: 1080px) {
  .el_btn2 {
    width: 230px;
    padding: 17px 0;
    border-radius: 20px;
    font-size: 22px;
  }
}
.el_shape {
  width: 40px;
  height: 40px;
  filter: blur(3px);
  position: absolute;
  top: 80px;
  left: 36px;
  -webkit-animation: rotate infinite alternate 5s ease-in;
          animation: rotate infinite alternate 5s ease-in;
}

.el_shape2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(5px);
  position: absolute;
  top: 40px;
  right: 20px;
  -webkit-animation: scale infinite alternate 7s linear;
          animation: scale infinite alternate 7s linear;
}

.el_shape3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  filter: blur(2px);
  position: absolute;
  bottom: 40px;
  left: 15px;
  -webkit-animation: scale infinite alternate 7s ease-in 2s;
          animation: scale infinite alternate 7s ease-in 2s;
}

.el_shape4 {
  width: 40px;
  height: 40px;
  position: absolute;
  filter: blur(1px);
  bottom: 60px;
  right: 28px;
  -webkit-animation: rotate infinite alternate 5s ease-out 2s;
          animation: rotate infinite alternate 5s ease-out 2s;
}

.el_shape,
.el_shape2,
.el_shape3,
.el_shape4 {
  opacity: 0.1;
  background: #0f2350;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}
@media screen and (min-width: 1080px) {
  .el_shape {
    width: 80px;
    height: 80px;
    top: 100px;
    left: 40px;
  }
  .el_shape2 {
    width: 300px;
    height: 300px;
    top: 90px;
    right: 300px;
  }
  .el_shape3 {
    width: 120px;
    height: 120px;
    bottom: 140px;
    left: 140px;
  }
  .el_shape4 {
    width: 80px;
    height: 80px;
    bottom: 120px;
    right: 60px;
  }
}
.el_spacer {
  display: block;
  height: 12px;
}

.ly_kv__top {
  width: 100%;
  padding-top: 50px;
  background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/kv_bgImg2-2500px.jpg) 70% 70%/cover;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .ly_kv__top {
    padding-top: 85px;
    background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/kv_bgImg2-3500px.jpg) 70% 70%/cover;
  }
}
.ly_cont__news {
  position: relative;
}

.ly_cont__business {
  background: #F0FFED;
  overflow: hidden;
}

.ly_cont__recruit {
  background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/recruit_bgImg-2500px.png) bottom center/cover;
}

@media screen and (min-width: 1080px) {
  .ly_cont__recruit {
    background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/recruit_bgImg-3500px.png) bottom center/cover;
  }
}
.ly_cont__case {
  background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/caseStudy_bgImg-2500px.png) bottom center/cover;
}

@media screen and (min-width: 1080px) {
  .ly_cont__case {
    background: linear-gradient(rgba(188, 226, 232, 0.7), rgba(188, 226, 232, 0.7)), url(../img/caseStudy_bgImg-3500px.png) 70% 70%/cover;
  }
}
.ly_cont__contact {
  scroll-snap-align: end;
  margin-bottom: 0;
}

.bl_cont_group {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

/* 全体のスタイル */
.bl_kv_mainCopy {
  width: clamp(320px, 60vw, 975px);
  max-width: 975px;
  font-size: clamp(38px, 6vw, 87px);
  line-height: 1.4;
  font-weight: 600;
  position: absolute;
  bottom: 30vh;
  left: 0;
}
.bl_kv_mainCopy span {
  display: inline-block;
}

.bl_kv_mainCopy_upper {
  transform: translateX(27px);
  width: clamp(290px, 70vw, 600px);
}

.bl_kv_mainCopy_under {
  transform: translateX(100px);
  width: clamp(180px, 50vw, 400px);
}

/* 小さいフォント */
.bl_kv_mainCopy_fontSmall {
  font-size: clamp(26px, 5vw, 50px);
}

/* 「施工力」のオレンジ色のテキスト */
.bl_kv_mainCopy_fontOrange {
  color: #0f2350;
}

/* 「護」の青色のテキスト */
.bl_kv_mainCopy_fontBlue {
  color: #0f2350;
}

.bl_kv_mainCopy {
  --pseudo-width-before: 167px;
  --pseudo-width-after: 260px;
}

.bl_kv_mainCopy::before {
  content: "";
  width: var(--pseudo-width-before);
  height: 1px;
  background: #fff;
  position: absolute;
  top: -10px;
  left: 0px;
}

.bl_kv_mainCopy::after {
  content: "";
  width: var(--pseudo-width-after);
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  right: 0px;
}

@media screen and (min-width: 1080px) {
  .bl_kv_mainCopy {
    --pseudo-width-before: 464px;
    --pseudo-width-after: 550px;
  }
  .bl_kv_mainCopy::before {
    width: var(--pseudo-width-before);
    top: -30px;
  }
  .bl_kv_mainCopy::after {
    width: var(--pseudo-width-after);
    bottom: -30px;
  }
  .bl_kv_mainCopy_upper {
    transform: translateX(79px);
  }
  .bl_kv_mainCopy_under {
    transform: translateX(271px);
  }
}
.bl_news_body {
  width: 90%;
  margin: 0 auto;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  margin-top: 21px;
  max-width: 965px;
}

.bl_news {
  padding: 13px 18px;
}
.bl_news a {
  display: flex;
  gap: 40px;
  align-items: center;
}

.bl_news_date {
  font-family: "Lato";
  color: #0367b5;
}

.bl_news + .bl_news {
  border-top: 1px solid #dedede;
}

@media screen and (min-width: 768px) {
  .bl_news {
    padding: 13px 48px;
  }
  .bl_news_body {
    width: 80%;
  }
}
@media screen and (min-width: 1080px) {
  .bl_news_body {
    margin-top: 46px;
  }
  .bl_news {
    padding: 20px 120px;
  }
  .bl_news a {
    gap: 267px;
  }
  .bl_news_ttl {
    font-size: 18px;
  }
}
.bl_business {
  margin-top: 27px;
  max-width: 1250px;
}

.bl_business_mainCopy {
  font-size: clamp(16px, 5vw, 32px);
  line-height: 150%;
  color: #fff;
  padding: 20px 0;
  text-shadow: 2px 2px 2px #141414;
  text-align: center;
  background-image: url(../img/sp_bizD_copy.jpg);
  background-size: cover;
  background-position: center center;
}

.bl_business_txt {
  width: 90%;
  margin: 0 auto;
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .bl_business {
    margin-top: 70px;
    display: flex;
    gap: 38px;
    align-items: center;
  }
  .bl_business_mainCopy {
    padding: 47px 0;
    width: 55%;
  }
  .bl_business_txt {
    margin-top: 0;
    width: 40%;
  }
}
@media screen and (min-width: 1450px) {
  .bl_business {
    margin: 0 auto;
    margin-top: 90px;
  }
}
.bl_philosophy {
  margin-top: 30px;
  max-width: 600px;
}

.bl_philosophy_mainCopy {
  width: clamp(190px, 70vw, 422px);
  margin: 0 auto;
  font-size: clamp(20px, 4vw, 35px);
  line-height: 150%;
}
.bl_philosophy_mainCopy .bl_philosophy_mainCopy_green {
  color: #0f2350;
}
.bl_philosophy_mainCopy .bl_philosophy_mainCopy_blue {
  color: #0367b5;
  transform: translateX(-30px);
  white-space: nowrap;
}

.bl_philosophy_txtGroup {
  margin-top: 27px;
}

.bl_philosophy_txt:last-child {
  margin-top: 13px;
}

@media screen and (min-width: 1080px) {
  .bl_philosophy {
    margin: 60px 0 0 auto;
  }
}
.bl_recruit_body {
  margin: 0 auto;
  max-width: 1500px;
  margin-top: 28px;
}

.bl_recruit_imgGroup {
  display: none;
  width: 20vw;
  position: absolute;
  top: -30px;
  right: 20px;
}

.bl_recruit_img,
.bl_recruit_img2,
.bl_recruit_img3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.5;
  position: absolute;
}

.bl_recruit_img {
  top: -40px;
  left: -30px;
}

.bl_recruit_img2 {
  left: 0px;
}

.bl_recruit_img3 {
  top: 40px;
  left: -32px;
}

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

.bl_recruit_txt + .bl_recruit_txt {
  margin-top: 13px;
}

.bl_recruit_txt + .bl_recruit_txt:last-child {
  margin-top: 18px;
}

.bl_recruit_txt:last-child {
  text-align: right;
}

.bl_recruit_txt_underLine {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_body {
    margin-top: 57px;
  }
  .bl_recruit_imgGroup {
    top: -30px;
    right: 80px;
  }
  .bl_recruit_img,
.bl_recruit_img2,
.bl_recruit_img3 {
    width: 205px;
    height: 205px;
  }
  .bl_recruit_img {
    top: 0px;
    left: -130px;
  }
  .bl_recruit_img2 {
    top: 130px;
    left: 0px;
  }
  .bl_recruit_img3 {
    top: 280px;
    left: -132px;
  }
  .bl_recruit {
    width: 735px;
    margin: 0 0 0 30px;
  }
  .bl_recruit_txt + .bl_recruit_txt {
    margin-top: 18px;
  }
  .bl_recruit_txt + .bl_recruit_txt:last-child {
    margin-top: 36px;
  }
  .bl_recruit_txt:last-child {
    font-size: 18px;
  }
}
.bl_case {
  margin-top: 120px;
}

.bl_case_txt + .bl_case_txt {
  margin-top: 13px;
}

@media screen and (min-width: 1080px) {
  .bl_case {
    margin: 120px auto 0 30px;
    width: 500px;
  }
}
.bl_works_cont {
  margin-top: 60px;
}

iframe {
  width: 100%;
}

.bl_works_cont {
  display: block;
}
.bl_works_cont table {
  width: 100%;
  color: #fff;
  border: none;
}
.bl_works_cont div + div {
  margin-top: 24px;
}
.bl_works_cont thead {
  font-size: 16px;
}
.bl_works_cont thead tr {
  border-bottom: 1px solid #fff;
}
.bl_works_cont thead tr th {
  padding: 7px 12px;
}
.bl_works_cont thead tr th:first-child {
  width: 70%;
  border-right: 1px solid #fff;
}
.bl_works_cont thead tr th:nth-child(2) {
  width: 30%;
  text-align: center;
}
.bl_works_cont tbody tr {
  border-bottom: 1px solid #fff;
}
.bl_works_cont tbody tr td,
.bl_works_cont tbody tr th {
  padding: 7px 12px;
}
.bl_works_cont tbody tr th {
  width: 70%;
  border-right: 1px solid #fff;
}
.bl_works_cont tbody tr td {
  width: 30%;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .bl_works_cont {
    margin-top: 80px;
  }
  .bl_works_cont table + table {
    margin-top: 37px;
  }
  .bl_works_cont thead {
    font-size: 22px;
  }
  .bl_works_cont thead tr th {
    padding: 15px 24px;
  }
  .bl_works_cont tbody tr td,
.bl_works_cont tbody tr th {
    padding: 15px 24px;
  }
}
.ly_cont__bgMain_gradation {
  background: linear-gradient(#bce2e8, #bce2e8);
}

.ly_access_btn {
  margin-top: 12px;
  text-align: center;
}

.bl_recruit_btnGroup {
  width: 100%;
  max-width: 945px;
  height: 39px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 21px;
}

.bl_recruit_btn {
  width: 50%;
  text-align: center;
  color: #c3c3c3;
  background: rgba(100, 100, 100, 0.5);
  position: relative;
}

.bl_recruit_btn::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 9px solid rgba(100, 100, 100, 0.5);
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  bottom: -27px;
}

.bl_recruit_btn + .bl_recruit_btn {
  border-left: 1px solid #fff;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_btnGroup {
    font-size: 24px;
    height: 56px;
  }
  .bl_recruit_btn {
    padding: 14px 0;
  }
  .bl_recruit_btn::before {
    width: 30px;
    height: 30px;
    border-top: 30px solid rgba(100, 100, 100, 0.5);
    border-right: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
    bottom: -90px;
  }
}
.bl_recruit_btn.tab-active {
  background: #0f2350;
  color: #fff;
}

.bl_recruit_btn.tab-active::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 9px solid #0f2350;
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  bottom: -27px;
}

.bl_recruit_cont_table {
  display: none;
}

.bl_recruit_cont_table.tab-active {
  display: block;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_btn.tab-active::before {
    content: "";
    width: 30px;
    height: 30px;
    border-top: 30px solid #0f2350;
    border-right: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
    bottom: -90px;
  }
}
.bl_recruit_cont_table_ttl {
  font-size: 18px;
}

.bl_recruit_cont_table_ttl::before {
  display: inline-block;
  content: "";
  width: 3px;
  height: 28px;
  background: rgba(3, 103, 181, 0.5);
  margin-right: 8px;
  vertical-align: middle;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_cont_table_ttl {
    font-size: 24px;
  }
  .bl_recruit_cont_table_ttl::before {
    width: 3px;
    height: 28px;
    margin-right: 14px;
  }
}
.bl_recruit_cont_table {
  max-width: 745px;
  margin: 0 auto;
  margin-top: 40px;
}
.bl_recruit_cont_table table {
  width: 100%;
  margin-top: 21px;
  border: 1px solid #dedede;
  line-height: 175%;
}
.bl_recruit_cont_table table tbody tr th {
  width: 30%;
  padding: 18px 0;
  text-align: center;
  background: #ffeabd;
  border-top: 1px solid #0f2350;
  border-right: 1px solid #0f2350;
  vertical-align: middle;
}
.bl_recruit_cont_table table tbody tr:first-of-type th {
  border-top: none;
}
.bl_recruit_cont_table table tbody tr td {
  width: 70%;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  background: #fff;
  padding: 18px 14px;
}

.bl_recruit_modal_btnGroup {
  width: 90%;
  max-width: 1200px;
  display: grid;
  gap: 24px;
  margin: 24px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_recruit_modal_btnGroup {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 32px;
  }
}

.bl_recruit_modal_btn {
  width: 100%;
  height: 250px;
  background-size: cover;
  border-radius: 24px;
  border: 2px solid #0f2350;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.bl_recruit_modal_btn:hover {
  opacity: 0.7;
}

.bl_recruit_modal_btn__full {
  background-image: url(../img/recruit_modal_btn-2000px.png);
  background-position: 60% 40%;
}

.bl_recruit_modal_btn__part {
  background-image: url(../img/recruit_modal_btn2-2000px.png);
  background-position: 60% 40%;
}

.bl_recruit_modal_btn_ttl {
  display: inline-block;
  padding: 18px 32px;
  text-align: center;
  background: rgba(100, 100, 100, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  position: absolute;
  right: 0;
  bottom: 50%;
}
@media screen and (min-width: 768px) {
  .bl_recruit_modal_btn_ttl {
    padding: 24px 48px;
  }
}

dialog {
  display: block;
  padding: 0;
  margin: 0;
}

.bl_recruit_cont_table2_bg {
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 0;
  background: rgba(100, 100, 100, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}
.bl_recruit_cont_table2_bg .bl_recruit_cont_table2 {
  display: block;
  width: 90vw;
  max-width: 750px;
  padding: 50px;
  border-radius: 24px;
  background: #fff;
  transform: translate(-50%, -50%);
  position: relative;
  top: 50%;
  left: 50%;
}
.bl_recruit_cont_table2_bg dl {
  margin-top: 16px;
  display: flex;
  padding-bottom: 8px;
  border-bottom: 1px solid #dedede;
}
.bl_recruit_cont_table2_bg dl dt {
  width: 30%;
}
.bl_recruit_cont_table2_bg dl dd {
  width: 70%;
}

.bl_recruit_cont_table2_closeBtn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 50px;
  top: 30px;
  cursor: pointer;
}

.bl_recruit_cont_table2_closeBtn_line {
  width: 20px;
  height: 2px;
  background: #141414;
  transform: translateY(-5px) rotate(45deg);
}

.bl_recruit_cont_table2_closeBtn_line2 {
  width: 20px;
  height: 2px;
  background: #141414;
  transform: translateY(-26px) rotate(-45deg);
}
@media screen and (min-width: 1080px) {
  .bl_recruit_cont_table2_closeBtn_line2 {
    transform: translateY(-29px) rotate(-45deg);
  }
}

.bl_recruit_cont_table2_bg.is-active {
  height: 100vh;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.bl_recruit_certification {
  margin-top: 26px;
}

.bl_recruit_certification_item_ttl {
  font-size: 16px;
  color: #0367b5;
  text-align: center;
}

.bl_recruit_certification_item_listGroup {
  width: 70%;
  margin: 0 auto;
  margin-top: 10px;
  line-height: 175%;
}

.bl_recruit_certification_item_list {
  list-style-type: disc;
}

.bl_recruit_certification_line {
  margin: 0 auto;
  width: 100%;
  height: 1px;
  background: #dedede;
  margin-top: 13px;
  margin-bottom: 18px;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_certification {
    margin-top: 120px;
  }
  .bl_recruit_certification_item {
    width: 50%;
  }
  .bl_recruit_certification_item_ttl {
    font-size: 28px;
  }
  .bl_recruit_certification_item_listGroup {
    margin-top: 21px;
  }
  .bl_recruit_certification_upper,
.bl_recruit_certification_under {
    display: flex;
    justify-content: space-between;
  }
  .bl_recruit_certification_line {
    margin-top: 21px;
    margin-bottom: 32px;
  }
  .bl_recruit_certification_line__pcNone {
    display: none;
  }
}
.bl_recruit_voiceGroup {
  max-width: 945px;
  margin: 0 auto;
  margin-top: 21px;
}

.bl_recruit_voice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bl_recruit_voice img {
  width: 20%;
}

.bl_recruit_voice:nth-child(2) {
  flex-direction: row-reverse;
}

.bl_recruit_voice + .bl_recruit_voice {
  margin-top: 18px;
}

.bl_recruit_voice_txtGroup {
  width: 80%;
  padding: 13px 22px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}

.bl_recruit_voice_txtGroup::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid #fff;
  position: absolute;
  top: 14px;
  right: -18px;
}

.bl_recruit_voice_txtGroup__reverse::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 9px solid transparent;
  border-right: 9px solid #fff;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
  position: absolute;
  top: 14px;
  left: -18px;
}

.bl_recruit_voice_txt + .bl_recruit_voice_txt {
  margin-top: 12px;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_voiceGroup {
    margin-top: 50px;
  }
  .bl_recruit_voice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: center;
  }
  .bl_recruit_voice img {
    width: 7%;
  }
  .bl_recruit_voice_txtGroup {
    width: 93%;
    padding: 32px 23px;
    border-radius: 10px;
  }
  .bl_recruit_voice + .bl_recruit_voice {
    margin-top: 32px;
  }
}
.bl_recruit_address_txt {
  margin-top: 34px;
  line-height: 175%;
}

.bl_recruit_address {
  margin-top: 32px;
  padding: 23px 0;
  background: url(../img/sp_recruit_address_bgImg.png;);
  background-size: cover;
  overflow: hidden;
}

.bl_recruit_address_domicile,
.bl_recruit_address_domicile2 {
  width: 90%;
  color: #fff;
  margin: 0 auto;
}

.bl_recruit_address_domicile2 {
  margin-top: 3px;
  margin-left: 100px;
}

.bl_recruit_address_line {
  width: 100%;
  height: 1px;
  background: #fff;
}

@media screen and (min-width: 1080px) {
  .bl_recruit_address_txt {
    margin-top: 60px;
    text-align: center;
    font-size: 22px;
  }
  .bl_recruit_address_domicileGroup {
    width: 50%;
    margin: 0 auto;
  }
  .bl_recruit_address {
    margin-top: 60px;
    padding: 47px 0;
  }
  .bl_recruit_address_domicile,
.bl_recruit_address_domicile2 {
    font-size: 24px;
    margin: 0 auto;
  }
  .bl_recruit_address_domicile2 {
    margin-top: 6px;
    margin-left: 200px;
  }
}
.el_btn2__tel {
  font-family: "Lato";
  width: 160px;
}

.el_btn2__tel:before {
  content: url(../img/sp_recruit_address_tel_ico.svg);
  margin-right: 7px;
  vertical-align: middle;
}

@media screen and (min-width: 1080px) {
  .el_btn2__tel {
    width: 280px;
  }
  .el_btn2__tel:before {
    content: url(../img/pc_ecruit_address_tel_ico.svg);
    margin-right: 7px;
  }
}
.ly_cont__page {
  padding-top: 0;
}

.bl_contact_txt + .bl_contact_txt {
  margin-top: 12px;
}

.bl_contact_form {
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .bl_contact_txt + .bl_contact_txt {
    margin-top: 24px;
  }
  .bl_contact_form {
    margin-top: 38px;
  }
}
.bl_company_cont table {
  width: 100%;
  color: #fff;
}
.bl_company_cont table + table {
  margin-top: 24px;
}
.bl_company_cont tbody tr {
  border-bottom: 1px solid #fff;
}
.bl_company_cont tbody tr td,
.bl_company_cont tbody tr th {
  padding: 10px 20px;
  vertical-align: middle;
}
.bl_company_cont tbody tr th {
  width: 35%;
  border-right: 1px solid #fff;
  text-align: center;
}
.bl_company_cont tbody tr td {
  width: 65%;
}

@media screen and (min-width: 1080px) {
  .bl_works_cont {
    margin-top: 80px;
  }
  .bl_works_cont tbody tr td,
.bl_works_cont tbody tr th {
    padding: 18px 32px;
  }
}
.bl_company_history_cont {
  margin-top: 45px;
}
.bl_company_history_cont table {
  width: 100%;
}
.bl_company_history_cont table + table {
  margin-top: 24px;
}
.bl_company_history_cont tbody tr {
  border-bottom: 1px solid #191919;
}
.bl_company_history_cont tbody tr td,
.bl_company_history_cont tbody tr th {
  padding: 10px 20px;
  vertical-align: middle;
}
.bl_company_history_cont tbody tr th {
  width: 35%;
  border-right: 1px solid #191919;
  text-align: center;
}
.bl_company_history_cont tbody tr td {
  width: 65%;
}

@media screen and (min-width: 1080px) {
  .bl_works_history_cont {
    margin-top: 50px;
  }
  .bl_works_history_cont tbody tr td,
.bl_works_history_cont tbody tr th {
    padding: 18px 32px;
  }
}
.bl_single_secTtl {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bl_single_secTtl::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background: #0f2350;
}

.bl_single_cont {
  margin-top: 24px;
}

.bl_single_cont_ttl {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
}

.bl_single_cont_txtGroup {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.bl_singleTtl {
  display: block;
  line-height: 175%;
  font-size: clamp(18px, 4vw, 24px);
}

.bl_singleTtl__center {
  text-align: center;
}

.bl_singleTxt {
  margin-top: 32px;
  text-align: right;
  font-size: 18px;
}

.bl_single_secChange {
  margin: 50px 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.bl_single_secChange img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.bl_single_secChange__2 img {
  -o-object-position: center 30%;
     object-position: center 30%;
}

.ly_cont__confirm {
  height: 100vh;
}

.wp-contact dl:first-of-type {
  margin-top: 0;
}

.wp-contact dd {
  text-align: left;
  margin-top: 5px;
  width: 100%;
  padding: 5px 8px;
}

.bl_confirm_btnGroup {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.bl_confirm_btnGroup .bl_confirm_btn {
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .bl_confirm_btnGroup {
    margin-top: 60px;
  }
}
.ly_cont_archive {
  padding-bottom: 50px;
}

@media screen and (min-width: 1080px) {
  .ly_cont_archive {
    padding-bottom: 100px;
  }
}
.ly_cont_post {
  padding-bottom: 50px;
}

@media screen and (min-width: 1080px) {
  .ly_cont_post {
    padding-bottom: 100px;
  }
}
.bl_single_ttl_jp {
  font-size: 18px;
  transform: translateX(0);
  margin-left: 47px;
  margin-right: 12px;
  line-height: 150%;
}

.bl_single_ttl_en {
  margin-top: 6px;
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .bl_single_ttl_jp {
    font-size: 42px;
  }
  .bl_single_ttl_en {
    margin-top: 24px;
    font-size: 22px;
  }
}
.bl_post_date {
  width: 100px;
  text-align: center;
  padding: 5px;
  background: #0f2350;
  color: #fff;
}

.bl_post_ttl {
  line-height: 150%;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.bl_post_cont {
  margin-top: 18px;
}
.bl_post_cont p {
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .bl_post_ttl {
    font-size: 28px;
  }
  .bl_post_cont {
    margin-top: 32px;
  }
  .bl_post_cont p {
    margin-top: 18px;
  }
}
.bl_404_txt {
  margin-top: 25px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .bl_404_txt {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  label {
    display: flex;
    justify-content: space-between;
  }
}
/* コンタクトフォームスタイル */
.wp-contact {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 30px;
}

/* 必須ラベル */
.wp-contact label,
.wp-contact dl {
  display: block;
  margin-top: 12px;
}

.wp-required-label {
  background-color: #ed6d00;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  border-radius: 12px;
  margin-left: 5px;
}

/* 入力フィールド */
input[type=text],
input[type=email],
textarea {
  margin-top: 5px;
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #0f2350;
}

textarea {
  height: 100px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .wp-contact {
    width: 70%;
    margin: 0 auto;
    margin-top: 60px;
  }
  .wp-contact label,
.wp-contact dl {
    display: flex;
    justify-content: center;
    gap: 120px;
  }
  .wp-contact-item {
    width: 100%;
    max-width: 300px;
    text-align: right;
  }
  textarea {
    height: 150px;
  }
}
/* 送信ボタン */
.wp-submit-btn-container {
  text-align: center;
  margin-top: 20px;
}

.wp-submit-btn {
  background-color: #222;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.wpcf7-spinner {
  display: none;
}

.pagination {
  width: 90%;
  margin: 0 auto;
  margin-top: 32px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
.nav-links .page-numbers {
  display: block;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 1px solid #191919;
  background: #141414;
  color: #fff;
  font-family: "Lato";
  font-size: 16px;
}
.nav-links .current {
  background: #fff;
  color: #191919;
}

@media screen and (min-width: 1080px) {
  .pagination {
    margin-top: 60px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links .page-numbers {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 22px;
  }
}
.wp-block-table {
  border: none !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important; /* 必要に応じて調整 */
  background-color: transparent !important;
  color: inherit !important; /* 親要素の文字色を継承 */
  font-size: inherit !important; /* 親要素のフォントサイズを継承 */
  line-height: inherit !important; /* 親要素の行高を継承 */
  text-align: left !important; /* デフォルトのテキスト配置 */
}

.wp-block-table th,
.wp-block-table td {
  border: none !important;
  background-color: transparent !important;
  color: inherit !important;
  font-weight: normal !important; /* thのデフォルトの太字をリセット */
  vertical-align: middle;
}

.wp-block-table th:first-child,
.wp-block-table td:first-child {
  border-right: 1px solid #fff !important; /* 必要に応じて調整 */
}

.wp-block-table thead {
  border-bottom: 1px solid #fff !important; /* 必要に応じて調整 */
}

.wp-block-table thead th {
  /* thead th 特有のスタイルがあればリセット */
  font-weight: normal !important;
  background-color: transparent !important;
}

.wp-block-table tbody tr {
  background-color: transparent !important;
}

.wp-block-table tbody tr:nth-child(even) {
  background-color: transparent !important; /* 縞模様の背景色をリセット */
}

.wp-block-table tbody td .wp-block-table thead th:nth-child(2) {
  text-align: left !important; /* 必要に応じて調整 */
}

.wp-block-table tbody th {
  text-align: center !important; /* 必要に応じて調整 */
}

.wp-block-table figcaption {
  margin-top: 0 !important;
  font-size: inherit !important;
  color: inherit !important;
  text-align: left !important; /* 必要に応じて調整 */
}
/*# sourceMappingURL=styles.css.map */