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

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

/* sass変数の定義 */
:root {
  --blue: #3296c8;
  --m-blue: #cce5f1;
  --l-blue: #eaf4f9;
  --grey: #a6a6a6;
}

* {
  font-weight: 400;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #000;
  background-color: #fff;
}
@media (max-width: 1000px) {
  body {
    letter-spacing: 0.03em;
  }
}

a {
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}

img {
  vertical-align: middle;
}

h2 {
  letter-spacing: 0.2em;
}

h3:not(.ly_point h3) {
  letter-spacing: 0.2em;
}

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

.w_1200 {
  max-width: 1300px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .flex {
    display: block;
  }
}

.note {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.tit {
  text-align: center;
}
.tit > p {
  display: inline-block;
}
.tit > p span {
  display: block;
}
.tit .en {
  border-bottom: 1px solid var(--blue);
  padding: 0 60px 10px;
  font-size: 40px;
  font-weight: 300;
  color: var(--blue);
}
@media (max-width: 1000px) {
  .tit .en {
    padding: 0 30px 5px;
    font-size: 28px;
  }
}
.tit .ja {
  padding-top: 10px;
  font-size: 20px;
}
@media (max-width: 1000px) {
  .tit .ja {
    font-size: 16px;
  }
}

.box_tit {
  width: 230px;
  height: 230px;
  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;
  text-align: center;
}
@media (max-width: 1000px) {
  .box_tit {
    width: 160px;
    height: 160px;
  }
}

.blue_dot li {
  position: relative;
  padding-left: 1.2em;
}
.blue_dot li::before {
  content: "●";
  color: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}

.blue_dl {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 2;
}
@media (max-width: 1000px) {
  .blue_dl {
    line-height: 1.8;
  }
}
.blue_dl dt {
  color: var(--blue);
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .blue_dl dt {
    display: block;
  }
}
.blue_dl dt::before, .blue_dl dt::after {
  display: inline-block;
}
.blue_dl dt::before {
  content: "【";
}
.blue_dl dt::after {
  content: "】";
}
@media (max-width: 1000px) {
  .blue_dl dd {
    padding-left: 0.5em;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 2px dotted var(--blue);
  }
  .blue_dl dd:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
  }
}

.border_w {
  position: relative;
}
.border_w::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - 30px);
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (max-width: 1000px) {
  .border_w::before {
    bottom: calc(100% - 10px);
  }
}

.deco {
  position: relative;
  overflow: hidden;
}
.deco::before, .deco::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 20;
}
@media (max-width: 1000px) {
  .deco::before, .deco::after {
    content: none;
  }
}

.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110px;
  padding: 0 30px;
  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;
  background-color: #fff;
  text-align: center;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .ly_header {
    height: 65px;
    padding: 0 15px;
  }
}
.ly_header h1 {
  width: 30%;
  max-width: 360px;
}
@media (max-width: 1000px) {
  .ly_header h1 {
    width: auto;
    max-width: 200px;
  }
}
.ly_header .ly_nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  letter-spacing: 0.01em;
}
.ly_header .ly_nav ul {
  width: 60%;
  color: var(--blue);
}
.ly_header .ly_nav ul li {
  width: 25%;
  border-left: 1.5px solid var(--blue);
}
.ly_header .ly_nav ul li a {
  padding: 15px 0;
  font-size: 14px;
  font-weight: 500;
}
.ly_header .ly_nav .contact_btn {
  padding: 0.5em 1.5em;
  background-color: var(--blue);
  color: #fff;
}
.ly_header .ly_nav .contact_btn > p {
  line-height: 1.3;
  font-weight: 500;
}
.ly_header .ly_nav .contact_btn > p:nth-child(2) {
  font-size: 20px;
}

.ly_drawer .bl_drawerBtn {
  position: fixed;
  width: 40px;
  height: 25px;
  top: 20px;
  right: 15px;
  z-index: 300;
}
.ly_drawer .bl_drawerBtn span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: #3f9ce8;
  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: 0px;
}
.ly_drawer .bl_drawerBtn span:nth-child(2) {
  top: 11px;
}
.ly_drawer .bl_drawerBtn span:nth-child(3) {
  bottom: 0;
}
.ly_drawer .bl_drawerMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding: 50px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 200;
}
.ly_drawer .bl_drawerMenu .drawerLogo {
  max-width: 200px;
  margin: 0 auto;
}
.ly_drawer .bl_drawerMenu ul {
  margin: 70px auto;
}
.ly_drawer .bl_drawerMenu ul li a {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
}
.ly_drawer .bl_drawerMenu ul li + li {
  margin-top: 40px;
}
.ly_drawer .bl_drawerMenu .contact_btn {
  padding: 10px 0;
  margin-top: 70px;
  background-color: var(--blue);
  color: #fff;
}
.ly_drawer .bl_drawerMenu .contact_btn p {
  line-height: 1;
  font-weight: 500;
}
.ly_drawer .bl_drawerMenu .contact_btn p:nth-child(2) {
  font-size: 25px;
  margin-top: 5px;
}

body.is_active {
  height: 100%;
}
body.is_active .js_drawerBtn span:nth-child(1) {
  -webkit-transform: translate(-20px, 13px) rotate(45deg);
          transform: translate(-20px, 13px) 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(-20px, -10px) rotate(-45deg);
          transform: translate(-20px, -10px) rotate(-45deg);
}
body.is_active .js_drawerMenu {
  right: 0;
  visibility: visible;
  opacity: 1;
}

main {
  margin-top: 110px;
}
@media (max-width: 1000px) {
  main {
    margin-top: 65px;
  }
}

.ly_mv {
  position: relative;
}
.ly_mv .swiper {
  height: calc(100vh - 110px);
}
@media (max-width: 1000px) {
  .ly_mv .swiper {
    height: 100%;
    max-height: 800px;
  }
}
.ly_mv .swiper .swiper-slide img {
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ly_mv .mv_txt {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}
.ly_mv .mv_txt h2 {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .ly_mv .mv_txt h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
.ly_mv .mv_txt p {
  padding: 0 10px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.7em;
}
@media (max-width: 1000px) {
  .ly_mv .mv_txt p {
    font-size: 16px;
    letter-spacing: 0.3em;
  }
}
.ly_mv .mv_deco {
  position: absolute;
  bottom: 0;
  width: 100vw;
  z-index: 1;
}

.ly_point {
  margin-top: 100px;
}
@media (max-width: 1000px) {
  .ly_point {
    margin-top: 65px;
  }
}
.ly_point .tit {
  position: relative;
}
.ly_point .tit::before, .ly_point .tit::after {
  content: "";
  position: absolute;
  width: 35vw;
  height: 100%;
  background-image: url(../img/point_deco.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 1000px) {
  .ly_point .tit::before, .ly_point .tit::after {
    background-image: url(../img/point_deco_sp.png);
  }
}
.ly_point .tit::before {
  top: -50px;
  left: 0;
}
@media (max-width: 1000px) {
  .ly_point .tit::before {
    top: -25px;
  }
}
.ly_point .tit::after {
  bottom: -50px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1000px) {
  .ly_point .tit::after {
    bottom: -25px;
  }
}
.ly_point .bl_point {
  margin-top: 70px;
}
@media (max-width: 1000px) {
  .ly_point .bl_point {
    margin-top: 45px;
  }
}
.ly_point .bl_point .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;
}
.ly_point .bl_point .point_cont {
  width: 30%;
}
@media (max-width: 1000px) {
  .ly_point .bl_point .point_cont {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .ly_point .bl_point .point_cont > div {
    width: 90%;
  }
}
.ly_point .bl_point .point_cont h3 {
  margin: 50px 0;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 1000px) {
  .ly_point .bl_point .point_cont h3 {
    margin: 20px 0;
  }
}
.ly_point .bl_point .point_cont:nth-child(1) h3 {
  margin-bottom: 25px;
}
@media (max-width: 1000px) {
  .ly_point .bl_point .point_cont:nth-child(1) h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 1000px) {
  .ly_point .bl_point .point_cont + .point_cont {
    margin-top: 65px;
  }
}

.ly_works {
  background-color: var(--l-blue);
  padding-top: 80px;
  margin-top: 150px;
}
@media (max-width: 1000px) {
  .ly_works {
    padding-top: 60px;
    margin-top: 60px;
  }
}
.ly_works::before {
  background-image: url(../img/border_wave.svg);
  background-size: 120% auto;
}
.ly_works .deco::before, .ly_works .deco::after {
  background-image: url(../img/works_deco.svg);
  width: 300px;
  height: 140px;
}
@media (max-width: 1000px) {
  .ly_works .deco::before, .ly_works .deco::after {
    content: "";
    width: 100px;
    height: 50px;
  }
}
.ly_works .deco::before {
  top: 0;
  right: 85%;
}
@media (max-width: 1000px) {
  .ly_works .deco::before {
    right: auto;
    left: 80%;
  }
}
.ly_works .deco::after {
  bottom: 15%;
  left: 85%;
}
@media (max-width: 1000px) {
  .ly_works .deco::after {
    bottom: 3%;
    left: auto;
    right: 80%;
  }
}
.ly_works .tit {
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .ly_works .tit {
    margin-bottom: 20px;
  }
}
.ly_works .bl_works {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 200px;
}
@media (max-width: 1000px) {
  .ly_works .bl_works {
    margin-bottom: 120px;
  }
}
.ly_works .bl_works > div {
  width: 30%;
}
@media (max-width: 1000px) {
  .ly_works .bl_works > div {
    width: 100%;
  }
}
.ly_works .bl_works > div img {
  margin-bottom: 0.5em;
}
.ly_works .bl_works > div p {
  font-size: min(1.5vw, 16px);
}
@media (max-width: 1000px) {
  .ly_works .bl_works > div p {
    font-size: 16px;
  }
}
.ly_works .bl_works > div p span {
  display: block;
  padding-left: 5.5em;
}
@media (max-width: 1000px) {
  .ly_works .bl_works > div + div {
    margin-top: 50px;
  }
}

.ly_about .about_mv {
  width: 100vw;
  padding-top: 70px;
  background-image: url(../img/about_mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
@media (max-width: 1000px) {
  .ly_about .about_mv {
    padding-top: 40px;
    background-image: url(../img/about_mv_sp.jpg);
  }
}
.ly_about .about_mv h2 {
  width: 250px;
  height: 250px;
  margin: 0 auto 70px;
  font-size: 40px;
  background-color: var(--blue);
}
@media (max-width: 1000px) {
  .ly_about .about_mv h2 {
    width: 160px;
    height: 160px;
    margin-bottom: 35px;
    font-size: 28px;
  }
}
.ly_about .about_mv img {
  width: 40vw;
  max-width: 680px;
}
@media (max-width: 1000px) {
  .ly_about .about_mv img {
    width: 90vw;
    max-width: 400px;
  }
}
.ly_about .bl_about {
  background-color: #fff;
  padding-top: 70px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about {
    padding-top: 40px;
  }
}
.ly_about .bl_about .about_cont01 {
  text-align: center;
  font-size: 28px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 .ly_container {
    max-width: 100%;
    padding: 0;
  }
}
.ly_about .bl_about .about_cont01 h3 {
  display: inline-block;
  padding: 20px 2em;
  border-radius: 40px;
  color: #fff;
  background-color: var(--blue);
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 h3 {
    padding: 15px 2em;
  }
}
.ly_about .bl_about .about_cont01 p {
  margin: 20px auto 50px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.3em;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 p {
    margin-bottom: 40px;
    letter-spacing: 0.1em;
  }
}
.ly_about .bl_about .about_cont01 p::before, .ly_about .bl_about .about_cont01 p::after {
  content: "";
  position: relative;
  bottom: -1em;
  background-image: url(../img/about_hukidashi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  display: inline-block;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 p::before, .ly_about .bl_about .about_cont01 p::after {
    width: 30px;
    height: 30px;
  }
}
.ly_about .bl_about .about_cont01 p::before {
  margin-right: 1em;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 p::before {
    margin-right: 0;
  }
}
.ly_about .bl_about .about_cont01 p::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 1em;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 p::after {
    margin-left: 0;
  }
}
.ly_about .bl_about .about_cont01 img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont01 img {
    height: 60px;
  }
}
.ly_about .bl_about .about_cont02 {
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont02 {
    margin-top: 0;
    background-color: var(--l-blue);
  }
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont02 .ly_container {
    max-width: 100%;
    padding: 0;
  }
}
.ly_about .bl_about .about_cont02 .about_cont02_box {
  gap: 50px;
  padding: 70px 60px;
  background-color: var(--l-blue);
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont02 .about_cont02_box {
    padding: 40px 0 60px;
    background-color: none;
  }
}
.ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(1) h3 {
  margin-bottom: 1em;
  color: var(--blue);
  font-size: 28px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(1) h3 {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(1) > .sponly {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 50px;
  }
  .ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(1) > .sponly img {
    width: 50%;
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(1) > .sponly p {
    width: 50%;
    padding-left: 35px;
  }
  .ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(1) > .sponly p span {
    display: block;
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(2) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.ly_about .bl_about .about_cont02 .about_cont02_box > div:nth-child(2) p + p {
  margin-top: 20px;
}
.ly_about .bl_about .about_cont03 {
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont03 {
    margin-top: 0;
  }
}
.ly_about .bl_about .about_cont03 > img.sponly {
  width: 100vw;
  margin-bottom: 50px;
}
.ly_about .bl_about .about_cont03 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ly_about .bl_about .about_cont03 h3 span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1em;
  color: var(--blue);
  font-size: 28px;
  letter-spacing: 0.2em;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont03 h3 span {
    font-size: 18px;
  }
}
.ly_about .bl_about .about_cont03 h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--blue);
}
.ly_about .bl_about .about_cont03 .about_cont03_box {
  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;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont03 .about_cont03_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.ly_about .bl_about .about_cont03 .about_cont03_box dl {
  width: 60%;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont03 .about_cont03_box dl {
    width: 100%;
  }
}
.ly_about .bl_about .about_cont03 .about_cont03_box dl dt {
  width: 35%;
  font-size: 20px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont03 .about_cont03_box dl dt {
    width: auto;
    font-size: 16px;
  }
}
.ly_about .bl_about .about_cont03 .about_cont03_box dl dd {
  width: 60%;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont03 .about_cont03_box dl dd {
    width: 100%;
    font-size: 16px;
  }
}
.ly_about .bl_about .about_cont03 .about_cont03_box img {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ly_about .bl_about .about_cont04 .about_cont04_box {
  position: relative;
  margin-top: 120px;
  padding: 80px 150px 60px 100px;
  border: 1px solid var(--blue);
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont04 .about_cont04_box {
    margin-top: 50px;
    padding: 40px 25px;
  }
}
.ly_about .bl_about .about_cont04 .about_cont04_box h3 {
  position: absolute;
  top: -4%;
  display: inline-block;
  padding: 0 0.5em;
  background-color: #fff;
  color: var(--blue);
  font-size: 28px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont04 .about_cont04_box h3 {
    top: -2%;
    left: 13%;
    font-size: 16px;
  }
}
.ly_about .bl_about .about_cont04 .about_cont04_box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont04 .about_cont04_box > div {
    -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;
    gap: 15px;
  }
}
.ly_about .bl_about .about_cont04 .about_cont04_box > div p {
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 3;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont04 .about_cont04_box > div p {
    font-size: 16px;
    line-height: 2;
  }
}
.ly_about .bl_about .about_cont04 .about_cont04_box > div img {
  width: 20%;
  max-width: 150px;
}
@media (max-width: 1000px) {
  .ly_about .bl_about .about_cont04 .about_cont04_box > div img {
    width: 50%;
    max-width: auto;
  }
}

.ly_access {
  margin-top: 100px;
}
@media (max-width: 1000px) {
  .ly_access {
    padding: 35px 0;
    margin-top: 35px;
    background-color: var(--l-blue);
  }
}
@media (max-width: 1000px) {
  .ly_access .ly_container {
    max-width: 100%;
    padding: 0;
  }
}
.ly_access .bl_access {
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .ly_access .bl_access {
    margin-top: 35px;
  }
}
.ly_access .bl_access > div {
  width: 50%;
}
@media (max-width: 1000px) {
  .ly_access .bl_access > div {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .ly_access .bl_access .bl_left {
    height: 300px;
  }
}
@media (max-width: 1000px) {
  .ly_access .bl_access .bl_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ly_access .bl_access .bl_right > div:nth-child(1) {
  padding: 60px 0;
  padding-left: 40px;
  background-color: var(--m-blue);
  letter-spacing: 0.25em;
}
@media (max-width: 1000px) {
  .ly_access .bl_access .bl_right > div:nth-child(1) {
    padding: 35px 0 0;
    background: none;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
    letter-spacing: 0.15em;
  }
}
.ly_access .bl_access .bl_right > div:nth-child(1) p + p {
  margin-top: 0.5em;
}
.ly_access .bl_access .bl_right > div:nth-child(2) {
  background-color: var(--blue);
  color: #fff;
}
.ly_access .bl_access .bl_right > div:nth-child(2) a {
  padding: 20px 0;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20%;
}
@media (max-width: 1000px) {
  .ly_access .bl_access .bl_right > div:nth-child(2) a {
    padding: 30px 0;
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
.ly_access .bl_access .bl_right > div:nth-child(2) a::before {
  content: "";
  background-image: url(../img/access_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 60px;
  display: block;
}
@media (max-width: 1000px) {
  .ly_access .bl_access .bl_right > div:nth-child(2) a::before {
    width: 55px;
    height: 40px;
  }
}

.ly_recruit {
  margin-top: 110px;
}
@media (max-width: 1000px) {
  .ly_recruit {
    margin-top: 0;
  }
}
.ly_recruit .recruit_mv {
  width: 100vw;
  padding: 60px 0 200px;
  background-image: url(../img/recruit_mv.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv {
    padding: 30px 0 60px;
    background-image: url(../img/recruit_mv_sp.jpg);
  }
}
.ly_recruit .recruit_mv > .recruit_mv_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv > .recruit_mv_wrap {
    display: block;
  }
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv > .recruit_mv_wrap.ly_container {
    max-width: 100%;
    padding: 0;
  }
}
.ly_recruit .recruit_mv > .recruit_mv_wrap h2.circle_width {
  width: 320px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv > .recruit_mv_wrap h2.circle_width {
    width: 200px;
  }
}
.ly_recruit .recruit_mv > .recruit_mv_wrap h2.circle_width .circle_heigth {
  position: relative;
  height: 320px;
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv > .recruit_mv_wrap h2.circle_width .circle_heigth {
    height: 200px;
  }
}
.ly_recruit .recruit_mv > .recruit_mv_wrap h2.circle_width .circle_heigth p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  color: #0071bc;
  font-size: 40px;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv > .recruit_mv_wrap h2.circle_width .circle_heigth p {
    font-size: 32px;
  }
}
.ly_recruit .recruit_mv > .recruit_mv_wrap img {
  width: 40vw;
  max-width: 570px;
}
@media (max-width: 1000px) {
  .ly_recruit .recruit_mv > .recruit_mv_wrap img {
    width: 80vw;
    max-width: 300px;
    margin-top: 25px;
  }
}
.ly_recruit .bl_recruit::before {
  background-image: url(../img/border_wave02.svg);
  background-size: 120% auto;
}
.ly_recruit .bl_recruit > section {
  background-color: var(--m-blue);
}
.ly_recruit .bl_recruit h3 {
  font-size: 26px;
  color: #fff;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit h3 {
    font-size: 21px;
  }
}
.ly_recruit .bl_recruit .box_tit {
  position: relative;
  top: 100px;
  left: 0;
  line-height: 2;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .box_tit {
    width: 100%;
    height: auto;
    top: -20px;
    margin-left: calc(50% - 50vw);
  }
}
.ly_recruit .bl_recruit .recruit_cont_box {
  width: 83%;
  max-width: 820px;
  padding: 40px 50px 40px 90px;
  margin-left: auto;
  background-color: #fff;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont_box {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: none;
  }
}
.ly_recruit .bl_recruit .recruit_cont01 {
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont01 {
    padding: 100px 0 50px;
    font-size: 16px;
  }
}
.ly_recruit .bl_recruit .recruit_cont01 .box_tit {
  background-color: var(--blue);
  margin-top: -80px;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont01 .box_tit {
    margin-top: -30px;
  }
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont01 p {
    background-color: #fff;
    padding: 30px 25px;
  }
}
.ly_recruit .bl_recruit .recruit_cont01 ul {
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont01 ul {
    margin-top: 20px;
  }
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont01 ul li + li {
    margin-top: 0.5em;
  }
}
.ly_recruit .bl_recruit .recruit_cont01::before {
  background-image: url(../img/recruit_deco01.svg);
  width: 380px;
  height: 130px;
  bottom: 10%;
  right: 90%;
}
.ly_recruit .bl_recruit .recruit_cont01::after {
  background-image: url(../img/recruit_deco02.svg);
  width: 320px;
  height: 180px;
  left: 90%;
  bottom: -10%;
}
.ly_recruit .bl_recruit .recruit_cont02 {
  line-height: 2;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont02 {
    padding: 50px 0;
    background-color: #fff;
  }
}
.ly_recruit .bl_recruit .recruit_cont02 .box_tit {
  background-color: var(--grey);
}
.ly_recruit .bl_recruit .recruit_cont02 ul {
  font-size: 18px;
}
.ly_recruit .bl_recruit .recruit_cont02 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  margin-left: -50px;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont02 dl {
    display: block;
    padding-top: 1em;
    margin-top: 25px;
    margin-left: 0;
    border-top: 3px dotted var(--blue);
    font-size: 16px;
  }
}
.ly_recruit .bl_recruit .recruit_cont02 dl dt {
  width: 30%;
  padding-right: 0.5em;
  color: var(--blue);
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont02 dl dt {
    width: auto;
    padding-right: 0;
    font-size: 16px;
  }
}
.ly_recruit .bl_recruit .recruit_cont02 dl dd {
  width: 70%;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont02 dl dd {
    width: 100%;
    font-size: 16px;
  }
}
.ly_recruit .bl_recruit .recruit_cont02::before {
  background-image: url(../img/recruit_deco03.svg);
  width: 410px;
  height: 300px;
  bottom: 10%;
  right: 80%;
}
.ly_recruit .bl_recruit .recruit_cont03 {
  padding: 80px 0 170px;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 {
    padding: 40px 0;
  }
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box {
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box {
    max-width: 100%;
  }
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box h3 {
  position: relative;
  padding: 15px 0;
  margin: 0 auto;
  border-radius: 20px;
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box h3 {
    padding: 10px 0;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box h3::before {
  content: "";
  background-image: url(../img/recruit_hukidashi.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 30px;
  height: 40px;
  position: absolute;
  top: 80%;
  left: 50%;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box h3::before {
    width: 15px;
    height: 20px;
  }
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box ul {
    margin-top: 20px;
  }
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box .circle_width {
  width: 30%;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box .circle_width {
    width: 32%;
  }
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box .circle_width .circle_heigth {
  position: relative;
  padding-top: 100%;
  height: 0;
}
.ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box .circle_width .circle_heigth p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  color: var(--blue);
  font-size: 21px;
}
@media (max-width: 1000px) {
  .ly_recruit .bl_recruit .recruit_cont03 .recruit_cont03_box .circle_width .circle_heigth p {
    font-size: min(3.2vw, 16px);
    letter-spacing: normal;
  }
}
.ly_recruit .bl_recruit .recruit_cont03::before {
  background-image: url(../img/recruit_deco04.svg);
  width: 400px;
  height: 310px;
  top: 30%;
  left: 85%;
}

.ly_footer {
  position: relative;
  padding: 50px 0;
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 1000px) {
  .ly_footer {
    padding: 30px 0 20px;
  }
}
@media (max-width: 1000px) {
  .ly_footer .w_1200 {
    max-width: 400px;
  }
}
.ly_footer .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ly_footer .footter_cont {
  border-bottom: 0.5px solid #fff;
  padding: 30px 0;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont {
    padding: 20px 0;
  }
}
.ly_footer .footter_cont:nth-child(1) {
  padding-bottom: 50px;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(1) {
    padding-bottom: 20px;
    border: none;
  }
}
.ly_footer .footter_cont:nth-child(1) a {
  width: 30%;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(1) a {
    width: 100%;
    max-width: 240px;
  }
}
.ly_footer .footter_cont:nth-child(2) {
  gap: 30px;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.ly_footer .footter_cont:nth-child(2) > .flex {
  gap: 30px;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(2) > .flex {
    text-align: left;
  }
}
.ly_footer .footter_cont:nth-child(2) > a {
  width: 30px;
}
.ly_footer .footter_cont:nth-child(3) ul {
  gap: 60px;
}
.ly_footer .footter_cont:nth-child(4) {
  border: none;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(4) {
    border-bottom: 0.5px solid #fff;
    margin-bottom: 20px;
  }
}
.ly_footer .footter_cont:nth-child(4) p {
  padding-bottom: 30px;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(4) p {
    border-bottom: 0.5px solid #fff;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.ly_footer .footter_cont:nth-child(4) > div {
  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;
  gap: 50px;
}
@media (max-width: 1000px) {
  .ly_footer .footter_cont:nth-child(4) > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.ly_footer .footter_cont:nth-child(4) > div a {
  width: 100%;
  max-width: 200px;
}
.ly_footer .copyright {
  font-size: 12px;
}
@media (max-width: 1000px) {
  .ly_footer .copyright {
    letter-spacing: 0.1em;
  }
}
.ly_footer .totop {
  display: none;
  right: 20px;
  width: 70px;
  height: 70px;
  -webkit-box-shadow: 2px 2px 8px 2px rgba(166, 166, 166, 0.2);
          box-shadow: 2px 2px 8px 2px rgba(166, 166, 166, 0.2);
  z-index: 100;
}
@media (max-width: 1000px) {
  .ly_footer .totop {
    right: 10px;
    width: 60px;
    height: 60px;
  }
}

.js_fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translate(0, 150px);
          transform: translate(0, 150px);
}
@media (max-width: 1000px) {
  .js_fadeIn {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}
.js_fadeIn.is_active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

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

.js_delay03 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media (max-width: 1000px) {
  .js_delay03 {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}/*# sourceMappingURL=style.css.map */