@charset "UTF-8";
@media (max-width: 1000px) {
  .pconly {
    display: none !important;
  }
}

@media (max-width: 1000px) {
  .pc-tab {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .pc-tab {
    display: none !important;
  }
}

.tab-sp {
  display: none !important;
}
@media (max-width: 1000px) {
  .tab-sp {
    display: block !important;
  }
}

.sponly {
  display: none !important;
}
@media (max-width: 1000px) {
  .sponly {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .sponly {
    display: block !important;
  }
}

/* sass変数の定義 */
/* 疑似クラス:rootでcss変数の定義 */
:root {
  --ye: #ffe51d;
}

* {
  font-weight: 500;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  background-color: #fff;
}

.ly_container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1000px) {
  .ly_container {
    max-width: 600px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

h2 p.en {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: min(8vw, 140px);
}
@media (max-width: 1000px) {
  h2 p.en {
    font-size: 50px;
  }
}
h2 p.en span {
  color: var(--ye);
}
h2 p.ja {
  padding: 10px 25px;
  border-left: 5px solid var(--ye);
  font-size: 35px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  h2 p.ja {
    padding: 5px 10px;
    font-size: 16px;
    border-width: 3px;
  }
}

.contact_btn {
  background-color: var(--ye);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .contact_btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.contact_btn p {
  line-height: 1;
}
.contact_btn p:nth-child(1) {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .contact_btn p:nth-child(1) {
    font-size: 12px;
  }
}
.contact_btn p:nth-child(2) {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .contact_btn p:nth-child(2) {
    font-size: 20px;
  }
}

.ly_header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
@media (max-width: 1000px) {
  .ly_header {
    height: 50px;
  }
}
.ly_header h1 {
  width: 25%;
  max-width: 300px;
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .ly_header h1 {
    width: 145px;
    padding-left: 10px;
  }
}
.ly_header .ly_nav {
  width: 75%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5%;
}
.ly_header .ly_nav > ul {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}
.ly_header .ly_nav > ul li {
  color: #fff;
}
.ly_header .ly_nav .contact_btn {
  padding: 0 3%;
  height: 100%;
}
.ly_header.is_active {
  background-color: #333;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.ly_drawer .bl_drawerBtn {
  position: fixed;
  width: 30px;
  height: 50px;
  right: 10px;
  top: 0;
  z-index: 300;
}
.ly_drawer .bl_drawerBtn span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--ye);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.ly_drawer .bl_drawerBtn span:nth-child(1) {
  top: 15px;
}
.ly_drawer .bl_drawerBtn span:nth-child(2) {
  top: 26px;
}
.ly_drawer .bl_drawerBtn span:nth-child(3) {
  top: 37px;
}
.ly_drawer .bl_drawerMenu {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 85vw;
  padding: 90px 30px 30px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 200;
}
.ly_drawer .bl_drawerMenu ul li a {
  position: relative;
  padding: 1em 2em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: -1px;
  font-size: 16px;
}
.ly_drawer .bl_drawerMenu ul li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: var(--ye);
}
.ly_drawer .bl_drawerMenu .contact_btn {
  gap: 0.5em;
  padding: 15px 20px;
  margin-top: 50px;
  border-radius: 5px;
}

body.is_active {
  height: 100%;
  overflow: hidden;
}
body.is_active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 50;
}
body.is_active .js_drawerBtn span {
  background-color: #333;
}
body.is_active .js_drawerBtn span:nth-child(1) {
  -webkit-transform: translate(-15px, 17px) rotate(45deg);
          transform: translate(-15px, 17px) rotate(45deg);
}
body.is_active .js_drawerBtn span:nth-child(2) {
  opacity: 0;
}
body.is_active .js_drawerBtn span:nth-child(3) {
  -webkit-transform: translate(-15px, -5px) rotate(-45deg);
          transform: translate(-15px, -5px) rotate(-45deg);
}
body.is_active .js_drawerMenu {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.ly_mv {
  position: relative;
}
@media (max-width: 1000px) {
  .ly_mv {
    padding-top: 50px;
    height: 100vh;
    max-height: 700px;
    background-color: #333;
  }
}
.ly_mv .bl_swiper {
  width: 100vw;
  background-color: #333;
}
@media (max-width: 1000px) {
  .ly_mv .bl_swiper {
    height: 80vh;
    max-height: 450px;
  }
}
.ly_mv .bl_swiper .swiper {
  -webkit-mask-image: url(../img/mv_mask.png);
          mask-image: url(../img/mv_mask.png);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top 0 left 0;
          mask-position: top 0 left 0;
  height: 100%;
}
@media screen and (max-width: 500px) {
  .ly_mv .bl_swiper .swiper {
    -webkit-mask-image: url(../img/mv_mask_sp.png);
            mask-image: url(../img/mv_mask_sp.png);
  }
}
.ly_mv .swiper-pagination {
  position: absolute;
  bottom: 18% !important;
  left: 63% !important;
  width: 30% !important;
  -webkit-transform: rotate(-52deg);
          transform: rotate(-52deg);
}
@media (max-width: 1000px) {
  .ly_mv .swiper-pagination {
    width: 40% !important;
    left: 55% !important;
    bottom: 35% !important;
  }
}
.ly_mv .swiper-pagination-bullet {
  background-color: #575a5f;
  border-radius: 0;
  width: 10%;
  max-width: 50px;
  height: 20px;
  opacity: 1;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
}
@media (max-width: 1000px) {
  .ly_mv .swiper-pagination-bullet {
    max-width: 20px;
    height: 10px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px) !important;
  }
}
.ly_mv .swiper-pagination-bullet-active {
  background-color: #ffe51d;
}
.ly_mv > p {
  position: absolute;
  left: 15%;
  color: #fff;
  line-height: 1.5;
  z-index: 1;
}
@media (max-width: 1000px) {
  .ly_mv > p {
    left: 30px;
  }
}
.ly_mv > p.txt_ja {
  top: 20%;
  font-size: min(4.5vw, 80px);
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 1000px) {
  .ly_mv > p.txt_ja {
    font-size: 28px;
  }
}
.ly_mv > p.txt_ja span {
  color: var(--ye);
}
.ly_mv > p.txt_en {
  top: 60%;
  font-size: min(1.5vw, 24px);
}
@media (max-width: 1000px) {
  .ly_mv > p.txt_en {
    font-size: 16px;
    top: 75%;
  }
}
.ly_mv .scrolldown {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 15px;
  -webkit-animation: arrowmove 3s ease-in-out infinite;
          animation: arrowmove 3s ease-in-out infinite;
}
@-webkit-keyframes arrowmove {
  0% {
    bottom: 50px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 50px;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 50px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 50px;
  }
}
@media (max-width: 1000px) {
  .ly_mv .scrolldown {
    width: 12px;
    bottom: 20px;
    right: 20px;
  }
  @-webkit-keyframes arrowmove {
    0% {
      bottom: 20px;
    }
    50% {
      bottom: 25px;
    }
    100% {
      bottom: 20px;
    }
  }
  @keyframes arrowmove {
    0% {
      bottom: 20px;
    }
    50% {
      bottom: 25px;
    }
    100% {
      bottom: 20px;
    }
  }
}
.ly_mv::after {
  content: "";
  background-image: url(../img/bg_grey.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100vw;
  height: 180%;
  top: 100%;
  z-index: -1;
}
@media (max-width: 1000px) {
  .ly_mv::after {
    content: none;
  }
}

.ly_strength {
  position: relative;
  margin-top: 140px;
}
@media (max-width: 1000px) {
  .ly_strength {
    margin-top: 45px;
  }
}
.ly_strength .bl_strength {
  margin-top: 120px;
  padding: 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength {
    margin-top: 30px;
    padding: 0;
    display: block;
  }
}
.ly_strength .bl_strength li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li {
    padding: 10px 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 40px -20px #707070;
            box-shadow: 0px 0px 40px -20px #707070;
  }
}
.ly_strength .bl_strength li > div {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 40px -20px #707070;
          box-shadow: 0px 0px 40px -20px #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li > div {
    width: 50%;
    height: auto;
    margin-bottom: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.ly_strength .bl_strength li > div span {
  position: absolute;
  top: -10%;
  left: -10%;
  color: var(--ye);
  font-size: 60px;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li > div span {
    top: -20%;
    left: -20%;
  }
}
.ly_strength .bl_strength li > div img {
  width: 70%;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li > div img {
    width: 90%;
  }
}
.ly_strength .bl_strength li > p {
  text-align: center;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li > p {
    width: 50%;
  }
}
.ly_strength .bl_strength li > p span {
  display: inline-block;
  font-size: 24px;
  background-color: var(--ye);
  padding: 0 0.5em;
  margin-bottom: 5px;
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li > p span {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .ly_strength .bl_strength li:nth-child(3) {
    position: relative;
  }
  .ly_strength .bl_strength li:nth-child(3) > p {
    position: absolute;
    width: auto;
    right: 20px;
  }
}
@media (max-width: 1000px) {
  .ly_strength::after {
    content: "";
    background-image: url(../img/bg_grey_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100vw;
    height: 100%;
    top: -45px;
    z-index: -1;
  }
}

.ly_message {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 1000px) {
  .ly_message {
    margin-top: 50px;
  }
}
.ly_message h2 {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media (max-width: 1000px) {
  .ly_message h2 {
    padding-left: 20px;
  }
}
.ly_message .bl_message {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 50px;
}
@media (max-width: 1000px) {
  .ly_message .bl_message {
    display: block;
  }
}
.ly_message .bl_message .bl_message_l {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  height: 100vh;
  padding-top: 10vh;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_l {
    top: 50px;
    height: 38vh;
    padding: 30px 0 0;
    background-color: #fff;
  }
}
.ly_message .bl_message .bl_message_l > div p:nth-of-type(1) {
  padding: 10px 25px;
  border-left: 5px solid var(--ye);
  font-size: 35px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_l > div p:nth-of-type(1) {
    padding: 0 10px;
    font-size: 16px;
    border-width: 3px;
  }
}
.ly_message .bl_message .bl_message_l > div p:nth-of-type(2) {
  margin: 130px auto;
  font-size: 40px;
  line-height: 2;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_l > div p:nth-of-type(2) {
    margin: 25px auto;
    font-size: 24px;
  }
}
.ly_message .bl_message .bl_message_l > div p:nth-of-type(2) span {
  background-color: var(--ye);
  padding: 0.1em 0.4em;
  margin: 0 0.3em;
}
.ly_message .bl_message .bl_message_l > div p:nth-of-type(3) {
  font-size: 30px;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_l > div p:nth-of-type(3) {
    font-size: 16px;
  }
}
.ly_message .bl_message .bl_message_l > div p:nth-of-type(3) span {
  font-size: 20px;
  margin-right: 1em;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_l > div p:nth-of-type(3) span {
    font-size: 12px;
  }
}
.ly_message .bl_message .bl_message_r {
  width: 50%;
  color: #fff;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_r {
    width: 100%;
  }
}
.ly_message .bl_message .bl_message_r h3 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_r h3 {
    font-size: 24px;
  }
}
.ly_message .bl_message .bl_message_r p {
  max-width: 420px;
  font-size: 20px;
  line-height: 2.5;
  font-weight: 400;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_r p {
    max-width: 100%;
    font-size: 14px;
  }
}
.ly_message .bl_message .bl_message_r .bl_messageItem {
  height: 100vh;
  padding: 0 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media (max-width: 1000px) {
  .ly_message .bl_message .bl_message_r .bl_messageItem {
    height: 65vh;
    padding: 100px 50px;
  }
}
.ly_message .bl_message .bl_message_r .bl_messageItem:nth-child(1) {
  background-image: url(../img/message01.jpg);
}
.ly_message .bl_message .bl_message_r .bl_messageItem:nth-child(2) {
  background-image: url(../img/message02.jpg);
}
.ly_message .bl_message .bl_message_r .bl_messageItem:nth-child(3) {
  background-image: url(../img/message03.jpg);
}

.ly_service {
  margin-top: 200px;
  line-height: 2;
  font-size: 20px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .ly_service {
    margin-top: 50px;
    font-size: 16px;
  }
}
.ly_service h2 + p {
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .ly_service h2 + p {
    margin-top: 25px;
  }
}
.ly_service h2 + p span {
  background-color: var(--ye);
  padding: 0 0.5em;
}
.ly_service .bl_service h3 {
  display: inline-block;
  padding: 0.5em 0.3em;
  margin-bottom: 25px;
  font-size: 40px;
  background-color: var(--ye);
}
@media (max-width: 1000px) {
  .ly_service .bl_service h3 {
    margin-bottom: 15px;
    font-size: 25px;
  }
}
.ly_service .bl_service .bl_serviceBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
}
.ly_service .bl_service .bl_serviceBox .text {
  width: 50%;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox .text {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.ly_service .bl_service .bl_serviceBox .text h3 {
  position: relative;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox .text h3 {
    position: static;
  }
}
.ly_service .bl_service .bl_serviceBox .text h3::after {
  display: inline-block;
  position: absolute;
  bottom: -110%;
  left: 90%;
  font-size: min(15vw, 300px);
  line-height: 1;
  font-weight: bold;
  color: #f5f5f5;
  z-index: -1;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox .text h3::after {
    bottom: auto;
    top: -48vh;
    left: 0;
    font-size: 170px;
  }
}
.ly_service .bl_service .bl_serviceBox .image {
  position: absolute;
  right: 0;
  width: 50%;
  max-width: 900px;
  height: 800px;
  background-size: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(70% 0, 100% 0, 100% 40%, 60% 100%, 0 100%);
          clip-path: polygon(70% 0, 100% 0, 100% 40%, 60% 100%, 0 100%);
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox .image {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 45vh;
    margin-bottom: 30px;
  }
}
.ly_service .bl_service .bl_serviceBox:nth-child(1) {
  padding-top: 130px;
  padding-bottom: 450px;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox:nth-child(1) {
    padding: 0;
  }
}
.ly_service .bl_service .bl_serviceBox:nth-child(1) .text h3::after {
  content: "01";
}
.ly_service .bl_service .bl_serviceBox:nth-child(1) .image {
  background-image: url(../img/service01.jpg);
}
.ly_service .bl_service .bl_serviceBox:nth-child(2) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 450px;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox:nth-child(2) {
    padding: 0;
  }
}
.ly_service .bl_service .bl_serviceBox:nth-child(2) .text h3::after {
  content: "02";
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox:nth-child(2) .text h3::after {
    left: auto;
    right: 0;
  }
}
.ly_service .bl_service .bl_serviceBox:nth-child(2) .image {
  right: auto;
  left: 0;
  background-image: url(../img/service02.jpg);
  -webkit-clip-path: polygon(0 40%, 0 0, 30% 0, 100% 100%, 40% 100%);
          clip-path: polygon(0 40%, 0 0, 30% 0, 100% 100%, 40% 100%);
}
.ly_service .bl_service .bl_serviceBox:nth-child(3) {
  padding-bottom: 250px;
}
@media (max-width: 1000px) {
  .ly_service .bl_service .bl_serviceBox:nth-child(3) {
    padding: 0;
  }
}
.ly_service .bl_service .bl_serviceBox:nth-child(3) .text h3::after {
  content: "03";
}
.ly_service .bl_service .bl_serviceBox:nth-child(3) .image {
  background-image: url(../img/service03.jpg);
}

.bl_txtanimation {
  margin-top: 60px;
  background-image: url(../img/txtanimation.svg);
  background-repeat: repeat-x;
  background-size: cover;
  width: 100vw;
  height: 150px;
  -webkit-animation: bgscroll 60s linear infinite;
          animation: bgscroll 60s linear infinite;
}
@media (max-width: 1000px) {
  .bl_txtanimation {
    height: 100px;
  }
}
@-webkit-keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}
@keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}

.ly_recruit {
  width: 100vw;
  padding-bottom: 150px;
  background-image: url(../img/recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .ly_recruit {
    padding-top: 30px;
    padding-bottom: 90px;
  }
}
.ly_recruit h2 {
  color: #fff;
  font-size: min(8vw, 140px);
  font-weight: bold;
  position: relative;
  top: 60px;
  left: -40px;
}
@media (max-width: 1000px) {
  .ly_recruit h2 {
    font-size: 60px;
    top: 0;
    left: 0;
  }
}
.ly_recruit .bl_recruit {
  padding: 80px 0;
  background-color: var(--ye);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit {
    padding: 40px 25px;
    display: block;
  }
}
.ly_recruit .bl_recruit .bl_recruit_l {
  position: relative;
}
.ly_recruit .bl_recruit .bl_recruit_l dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_l dl {
    display: block;
  }
}
.ly_recruit .bl_recruit .bl_recruit_l dl dt {
  width: 30%;
  margin-bottom: 1em;
  border-right: 1px solid #333;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_l dl dt {
    width: 100%;
    border-right: none;
    border-top: 1px solid #ead112;
    margin-bottom: 0;
    padding-top: 0.5em;
  }
}
.ly_recruit .bl_recruit .bl_recruit_l dl dd {
  width: 70%;
  padding-left: 25px;
  margin-bottom: 1em;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_l dl dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0.5em;
    margin-bottom: 0;
    font-weight: normal;
  }
  .ly_recruit .bl_recruit .bl_recruit_l dl dd:last-of-type {
    border-bottom: 1px solid #ead112;
  }
}
.ly_recruit .bl_recruit .bl_recruit_l p {
  margin-top: 0.5em;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_l p {
    margin: 25px 0;
    text-align: center;
  }
}
.ly_recruit .bl_recruit .bl_recruit_l::after {
  position: absolute;
  top: -15%;
  right: 0;
  content: "";
  display: block;
  width: 2px;
  height: 200px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  background-color: #333;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_l::after {
    content: none;
  }
}
.ly_recruit .bl_recruit .bl_recruit_r {
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_r {
    padding-left: 0;
    padding: 30px 20px;
    border: 1px solid #000;
  }
}
.ly_recruit .bl_recruit .bl_recruit_r p:nth-child(1) {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.ly_recruit .bl_recruit .bl_recruit_r p:nth-child(1)::after {
  content: "▼";
  display: inline-block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ly_recruit .bl_recruit .bl_recruit_r p:nth-child(2) {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .bl_recruit_r p:nth-child(2) {
    font-size: 26px;
  }
}

.ly_company {
  position: relative;
  width: 100vw;
  height: 600px;
  background-image: url(../img/company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .ly_company {
    height: 800px;
  }
}
.ly_company h2 p.en {
  font-size: 60px;
}
@media (max-width: 1000px) {
  .ly_company h2 p.en {
    font-size: 50px;
  }
}
.ly_company h2 p.ja {
  font-size: 26px;
}
@media (max-width: 1000px) {
  .ly_company h2 p.ja {
    font-size: 16px;
  }
}
.ly_company .bl_company {
  position: relative;
  top: 130px;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 1000px) {
  .ly_company .bl_company {
    top: -50px;
    padding: 30px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ly_company .bl_company .bl_map {
  width: 45%;
}
@media (max-width: 1000px) {
  .ly_company .bl_company .bl_map {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 200px;
  }
}
.ly_company .bl_company .bl_overview {
  width: 50%;
}
@media (max-width: 1000px) {
  .ly_company .bl_company .bl_overview {
    width: 100%;
  }
}
.ly_company .bl_company .bl_overview dl {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1000px) {
  .ly_company .bl_company .bl_overview dl {
    margin-top: 20px;
    display: block;
    font-size: 14px;
  }
}
.ly_company .bl_company .bl_overview dl dt {
  width: 20%;
  margin-bottom: 1em;
  border-right: 1px solid #333;
}
@media (max-width: 1000px) {
  .ly_company .bl_company .bl_overview dl dt {
    width: 100%;
    margin-bottom: 0.5em;
    border-right: none;
    font-weight: bold;
  }
  .ly_company .bl_company .bl_overview dl dt:first-of-type {
    padding-top: 1em;
    border-top: 1px solid #e5e5e5;
  }
}
.ly_company .bl_company .bl_overview dl dd {
  width: 80%;
  margin-bottom: 1em;
  padding-left: 20px;
}
@media (max-width: 1000px) {
  .ly_company .bl_company .bl_overview dl dd {
    width: 100%;
    margin-bottom: 1em;
    padding-left: 0;
    padding-bottom: 1em;
    border-bottom: 1px solid #e5e5e5;
    font-weight: normal;
  }
  .ly_company .bl_company .bl_overview dl dd:last-of-type {
    margin-bottom: 1.5em;
  }
}

.ly_footer {
  position: relative;
  padding-top: 300px;
  padding-bottom: 30px;
  background-color: #333;
  color: #fff;
  text-align: center;
}
@media (max-width: 1000px) {
  .ly_footer {
    padding-top: 230px;
    padding-bottom: 0;
  }
}
.ly_footer .ly_container {
  max-width: 600px;
}
.ly_footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .ly_footer ul {
    display: block;
  }
}
.ly_footer ul li {
  width: 25%;
  border-left: 1px solid var(--ye);
  border-right: 1px solid var(--ye);
  margin-left: -1px;
}
@media (max-width: 1000px) {
  .ly_footer ul li {
    width: 100%;
    border-left: none;
    border-right: none;
    margin-left: 0;
    border-top: 1px solid #575a5f;
    border-bottom: 1px solid #575a5f;
    margin-bottom: -1px;
    text-align: left;
  }
}
.ly_footer ul li a {
  width: 100%;
}
@media (max-width: 1000px) {
  .ly_footer ul li a {
    position: relative;
    padding: 1em 2em;
  }
  .ly_footer ul li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: var(--ye);
  }
}
.ly_footer .footerLogo {
  width: 300px;
  margin: 70px auto 20px;
}
@media (max-width: 1000px) {
  .ly_footer .footerLogo {
    width: 250px;
    margin-top: 50px;
  }
}
.ly_footer .insta {
  margin: 0 auto 20px;
  width: 35px;
}
.ly_footer .copyright {
  font-weight: normal;
  font-size: 10px;
}
.ly_footer .contact_btn {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  color: #333;
  padding: 20px;
  margin-top: 30px;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}
.fadeIn.is_active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.delay_time_02 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay_time_03 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}/*# sourceMappingURL=style.css.map */