/* index.php reset */
#index > * {
  color: #ffffff;
}
#index header#menu_pc nav li a {
  color: #ffffff;
}

/* ====== main visual ====== */
#index .mv {
  width: 100%;
  height: 100dvh;
  border-top: 10px var(--point1-color) solid;
  position: relative;
  overflow: hidden;
}
#index .mv .mv_copy {
  width: 100vw;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(5rem, 1.8em, 5.6rem);
  line-height: 1.4;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}
#index .mv .mv_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
#index .mv .mv_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/index/mv_fillter.png);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#index .mv li {
  width: 100%;
  height: 100%;
}
#index .mv .mv_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#index .mv li:nth-of-type(1) .mv_img {
  background: url(../images/index/mv_01.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv li:nth-of-type(2) .mv_img {
  background: url(../images/index/mv_02.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv li:nth-of-type(3) .mv_img {
  background: url(../images/index/mv_03.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv li:nth-of-type(4) .mv_img {
  background: url(../images/index/mv_04.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv .mv_box li .mv_img {
  overflow: hidden;
  opacity: 0;
  transform: perspective(100px) translateZ(1em);
  transition:
    transform 7s linear,
    opacity 0.5s ease-in-out;
}
#index .mv .mv_box li .mv_img.mv-fadein {
  overflow: visible;
  opacity: 1;
}
#index .mv .mv_box li .mv_img.mv-zoom {
  overflow: visible;
  opacity: 1;
  transform: perspective(1000px) translateZ(0);
  transition:
    transform 7s linear,
    opacity 0.5s ease-in-out;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .mv .mv_copy {
    top: calc(50% - 2em);
  }
  #index .mv li:nth-of-type(1) .mv_img {
    background: url(../images/index/mv_01.jpg) no-repeat right 49% center;
    background-size: cover;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .mv {
    height: 100svh;
  }
  #index .mv .mv_copy {
    width: 100%;
    padding: 2svh 0;
    font-size: clamp(2.8rem, 5.4vw, 3.6rem);
    line-height: 1.2;
  }
  #index .mv li:nth-of-type(1) .mv_img {
    background: url(../images/index/mv_01.jpg) no-repeat left 22% center;
    background-size: cover;
  }
  #index .mv li:nth-of-type(2) .mv_img {
    background: url(../images/index/mv_02.jpg) no-repeat left 30% center;
    background-size: cover;
  }
  #index .mv li:nth-of-type(3) .mv_img {
    background: url(../images/index/mv_03.jpg) no-repeat left 48% center;
    background-size: cover;
  }
}

#index .top_hl {
  text-align: center;
  font-size: clamp(4rem, 2.6em, 4.8rem);
  font-family: "Zen Old Mincho", serif;
}
#index .top_hl span {
  line-height: 1.2;
}
#index .hl_catch {
  max-width: fit-content;
  width: 100%;
  height: auto;
  margin: 10px auto 20px;
  text-align: center;
  line-height: 0;
}
#index .hl_catch img {
  width: 100%;
  max-height: 60px;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .top_hl {
    font-size: clamp(2.8rem, 5.2vw, 3.4rem);
  }
  #index .hl_catch {
    margin: 0 auto 1svh;
  }
  #index .hl_catch img {
    max-height: 5svh;
  }
}
@media screen and (max-width: 768px) {
  #index .hl_catch img {
    width: auto;
    max-height: 7svh;
  }
}

/* ====== introducs ====== */
#index .introducs {
  margin: 0 auto 0;
  position: relative;
}
#index .introducs .intro_wpap {
  width: 100%;
  padding: 10svh 0 20svh;
  background: url(../images/index/intro_bg.png) no-repeat bottom right;
  background-size: auto 100%;
  position: relative;
}
#index .introducs .intro_wpap::before,
#index .introducs .intro_wpap::after {
  content: "";
  display: block;
  width: 0;
  height: 6px;
  background-image: linear-gradient(90deg, #d99d26, #fff6a7 88%, #f7e46f 92%, #d99d26);
  transition: all 1s ease-out;
}
#index .introducs .intro_wpap.is-active::before,
#index .introducs .intro_wpap.is-active::after {
  width: 80%;
  transition: all 1s ease-out;
}

#index .introducs .intro_wpap::before {
  position: absolute;
  top: 8svh;
  left: 0;
}
#index .introducs .intro_wpap::after {
  position: absolute;
  bottom: 14svh;
  right: 0;
}

#index .introducs .intro_txt {
  width: 100%;
  line-height: 2;
  text-align: center;
  font-size: 1.2em;
  position: relative;
}
#index .introducs .intro_hl {
  width: 100%;
  height: calc(4em - 30px);
  margin: 0 0 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
#index .introducs .intro_hl span {
  display: block;
  width: 100%;
  padding: 10px 0 15px;
  position: absolute;
  bottom: calc((4em - 30px) * -1);
  z-index: 1;
  transition: all 1s;
}
#index .introducs .intro_hl.is-active span {
  bottom: 0;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .introducs .intro_txt {
    line-height: 1.8;
  }
  #index .introducs .intro_wpap {
    padding: 12svh 0 18svh;
  }
  #index .introducs .intro_wpap::before {
    position: absolute;
    top: 5svh;
    left: 0;
  }
  #index .introducs .intro_wpap::after {
    position: absolute;
    bottom: 8svh;
    right: 0;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .introducs .intro_wpap {
    padding: 10svh 3vw 10svh 3vw;
    position: relative;
  }
  #index .introducs .intro_wpap::before,
  #index .introducs .intro_wpap::after {
    height: 4px;
  }
  #index .introducs .intro_wpap::before {
    position: absolute;
    top: 6svh;
    left: 0;
  }
  #index .introducs .intro_wpap::after {
    position: absolute;
    bottom: 6svh;
    right: 0;
  }
  #index .introducs .intro_txt {
    width: 100%;
    line-height: 1.8;
  }
  #index .introducs .intro_hl {
    width: 100%;
    height: 5em;
    margin: 0 0 2svh;
  }
  #index .introducs .intro_hl span {
    padding: 0 2vw 0;
    line-height: 1.4;
    bottom: -4em;
  }
  #index .introducs .intro_txt {
    font-size: 100%;
  }
}
@media screen and (max-width: 430px) {
  #index .introducs .intro_txt {
    font-size: 94%;
    text-shadow:
      0 0 8px #0c3267,
      0 0 6px #0c3267,
      0 0 6px #0953a2,
      0 0 6px #0953a2,
      0 0 6px #0953a2,
      0 0 6px #0953a2,
      0 0 12px #0953a2;
  }
}

/* ====== works ====== */
#index .works {
  padding: 40px 0 140px;
  position: relative;
  z-index: 1;
}

#index .works::before,
#index .works::after {
  content: "";
  display: block;
  width: 0;
  height: 320px;
  background: var(--bg-color);
  transition: all 1s ease-out;
}
#index .works.is-active::before,
#index .works.is-active::after {
  width: 105%;
  transition: all 1s ease-out;
}
#index .works::before {
  background: var(--bg-color) url(../images/index/works_bg1.png) no-repeat center center;
  background-size: 100vw;
  position: absolute;
  top: -3%;
  left: -2%;
  transform: rotate(-3deg);
  z-index: 2;
}
#index .works::after {
  background: var(--bg-color) url(../images/index/works_bg2.png) no-repeat center center;
  background-size: 100vw;
  position: absolute;
  bottom: 12svh;
  right: -2%;
  transform: rotate(3deg);
  z-index: 3;
}
#index .works .works_list {
  margin: auto;
  padding: 6svh 3vw;
  position: relative;
  z-index: 4;
}
#index .works .works_list_box {
  margin-bottom: 30px;
}
#index .works .works_list_box li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#index .works .works_list_box li:nth-of-type(even) {
  flex-direction: row-reverse;
}
#index .works .works_list_box li .works_items {
  width: 65%;
  position: relative;
}
#index .works .works_list_box li:nth-of-type(even) .works_items {
  text-align: right;
}
#index .works .works_list_box li .works_items .works_name {
  margin-bottom: 10px;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8em;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
#index .works .works_list_box li .works_items .works_txt {
  margin: auto;
  line-height: 1.6;
}
#index .works .works_list_box li .works_img {
  width: 30%;
  max-width: 460px;
  text-align: center;
  line-height: 0;
  overflow: hidden;
  transition: 0.4s;
  margin: auto;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .works::before,
  #index .works::after {
    height: 240px;
  }
  #index .works .works_list_box {
    gap: 20px;
  }
  #index .works .works_list {
    padding: 20px;
    border-radius: 20px;
  }
  #index .works .works_list_box li {
    margin-bottom: 5vw;
    justify-content: center;
    gap: 5vw;
  }
  #index .works .works_list_box li .works_items .works_name {
    font-size: clamp(2.4rem, 5vw, 3rem);
  }
  #index .works .works_list_box li .works_img {
    margin: 0;
  }
  #index .works .works_list_box li .works_items {
    width: 56%;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .works {
    padding: 6svh 0;
  }
  #index .works::before,
  #index .works::after {
    height: 18svh;
  }
  #index .works::before {
    top: 36svh;
  }
  #index .works::after {
    bottom: 30svh;
  }
  #index .works::after {
    bottom: 48svh;
  }
  #index .works .works_list_box .works_items {
    max-width: 400px;
    width: 100%;
  }
  #index .works .works_list {
    width: 90%;
    padding: 6vw;
    border-radius: 10px;
  }
  #index .works .works_list_box li .works_img {
    width: 100%;
  }
  #index .works .works_list_box li .works_items {
    width: 100%;
  }
  #index .works .works_list_box li .works_items .works_name {
    font-size: clamp(2.8rem, 5.4vw, 3.6rem);
  }
  #index .works .works_list_box li .works_items .works_txt {
    text-align: left;
  }
}

/* ====== area ====== */
.area {
  padding: 80px 0;
  position: relative;
  z-index: 0;
}
.area .area_img {
  width: 32%;
  position: absolute;
  top: 0;
  right: 40%;
  z-index: 1;
}
.area .area_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
/* #index .area .area_wrap .hl_catch {
  width: 100%;
} */
.area .area_wrap .area_box {
  width: 50%;
  padding-left: 6vw;
}
@media screen and (min-width: 1400px) {
  .area .area_wrap {
    justify-content: flex-end;
    gap: 60px;
  }
  .area .area_wrap .area_box {
    width: fit-content;
    padding-left: 0;
  }
}
.area .area_wrap .area_box h3 {
  text-align: left !important;
}
.area .area_wrap .area_box h3 .hl_catch {
  text-align: left !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}
.area .area_wrap .map {
  width: 50%;
  height: 40vh;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .area .area_wrap .area_box {
    width: 50%;
    padding: 0 3vw 0 4vw;
  }
  .area .area_wrap .map {
    width: 50%;
    height: 30vh;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .area .area_img {
    width: 100%;
    position: absolute;
    top: -2;
    right: -10%;
    z-index: 1;
  }
  .area .area_wrap .area_box {
    width: 100%;
    padding: 0 5vw 0 5vw;
    margin: 5svh auto;
  }
  .area .area_wrap .map {
    width: 80%;
    height: 35svh;
    margin: auto;
  }
}

/* ====== about ====== */
.about {
  padding: 80px 0;
  position: relative;
}
.about::before {
  content: "";
  display: block;
  width: 0;
  height: 240px;
  background: var(--bg-color);
  transition: all 1s ease-out;
  position: absolute;
  top: -3%;
  left: -2%;
  transform: rotate(-3deg);
  z-index: 2;
}
.about.is-active::before {
  width: 105%;
}
.about .about_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.about .about_wrap .about_box {
  width: 50%;
  padding-right: 4vw;
}
@media screen and (min-width: 1400px) {
  .about .about_wrap {
    justify-content: flex-end;
    gap: 60px;
  }
  .about .aaboutwrap .about_box {
    width: fit-content;
    padding-left: 0;
  }
}
.about .about_wrap .about_box h3 {
  text-align: left !important;
  font-size: clamp(2.8rem, 3.2vw, 3.4rem) !important;
}
.about .about_wrap .about_box h3 span {
  line-height: 1.6 !important;
}
.about .about_wrap .about_box h3 .hl_catch {
  text-align: left !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}
.about .about_wrap .about_img {
  width: 46%;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .about .about_wrap {
    align-items: center;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .about .about_wrap .about_box {
    width: 100%;
    padding: 4vw;
  }
  .about .about_wrap .about_box h3 {
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
  }
  .about .about_wrap .about_img {
    width: 80%;
  }
}
@media screen and (max-width: 430px) {
}

/* ====== recruit ====== */
.recruit {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.recruit::before {
  content: "";
  width: 0;
  height: 35%;
  display: block;
  background: var(--bg-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 1s ease-out;
}
.recruit.is-active::before {
  width: 100%;
}
#index .recruit .recruit_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 80px 0;
}
#index .recruit .recruit_box .recruit_img {
  width: 40%;
  overflow: hidden;
}
#index .recruit .recruit_box .recruit_img.sp {
  display: none;
}
#index .recruit .recruit_box .recruit_cntns {
  width: 60%;
  padding: 2svh max(5vw, 50px) 5svh max(10vw, 50px);
  position: relative;
}
#index .recruit .recruit_box .recruit_cntns dt {
  margin-bottom: 40px;
  position: relative;
  display: block;
}
#index .recruit .recruit_box h3 {
  text-align: left !important;
  font-size: 2.2em !important;
}
#index .recruit .recruit_box h3 span {
  line-height: 1.6 !important;
}
#index .recruit .recruit_box h3 .hl_catch {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
#index .recruit .recruit_box .recruit_cntns dd {
  line-height: 1.8;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .recruit .recruit_list_box {
    gap: 20px;
  }
  #index .recruit .recruit_box .recruit_cntns {
    padding: 0 3vw 0 5vw;
  }
  #index .recruit .recruit_box .recruit_cntns dt {
    margin-bottom: 30px;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .recruit .recruit_box {
    justify-content: center;
    margin: 4svh 0 8svh;
  }
  .recruit::before {
    height: 24%;
  }
  #index .recruit .recruit_box .recruit_cntns {
    width: 100%;
    padding: 0 5vw;
    margin-bottom: 0;
  }
  #index .recruit .recruit_box .recruit_img.pc {
    display: none;
  }
  #index .recruit .recruit_box .recruit_img.sp {
    display: block;
    width: 90%;
    margin: 30px auto;
  }
  #index .recruit .recruit_box .recruit_cntns dt {
    margin-bottom: 4svh;
    position: relative;
  }
}
