@charset "UTF-8";
/* html */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  scroll-behavior: smooth;
}

a {
  transition: 0.5s;
}
a:hover, a:active {
  opacity: 0.7;
}

.wrapper {
  position: relative;
}

.container {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
}

.container-inner {
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  background-color: rgb(25, 76, 177);
  border: solid 2px rgb(25, 76, 177);
  border-radius: 30px;
  transition: 0.5s;
}
.read-more:hover, .read-more:active {
  color: rgb(25, 76, 177);
  background-color: rgb(255, 255, 255);
}

.read-more--white {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: rgb(25, 76, 177);
  letter-spacing: 0.075em;
  background-color: rgb(255, 255, 255);
  border: solid 2px rgb(255, 255, 255);
  border-radius: 30px;
  transition: 0.5s;
}
.read-more--white:hover, .read-more--white:active {
  color: rgb(255, 255, 255);
  background-color: rgb(25, 76, 177);
}

.scroll-up {
  transition: 0.8s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}

.scroll-up.on {
  transform: translateY(0);
  opacity: 1;
}

.fvphotoArea .fvphotoArea-inner {
  overflow: hidden;
}
.fvphotoArea .fvphotoArea-inner::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgb(25, 76, 177);
}
.fvphotoArea.move .fvphotoArea-inner::before {
  animation: barAnime forwards 1.5s 1 ease 0.1s normal;
  -webkit-clip-path: polygon(26% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(26% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.fvphotoArea .fvphotoArea-inner {
  opacity: 0;
}
.fvphotoArea.move .fvphotoArea-inner {
  animation: photoAnime forwards 0.5s 1 ease 0.5s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* header */
.header {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100px;
  transition: 0.5s;
}
.header.change-color {
  background-color: rgb(255, 255, 255);
}
.header.change-color .header__logo h1 a {
  background-image: url(../img/hd_logo_on.png);
}
@media screen and (min-width: 1025px) {
  .header.change-color .header__nav-list a {
    color: rgb(25, 76, 177);
  }
  .header.change-color .header__nav-list a.current::after {
    background-color: rgb(25, 76, 177);
  }
  .header.change-color .header__tel a span {
    color: rgb(25, 76, 177);
  }
  .header.change-color .header__tel a::before {
    background-image: url(../img/hd_icon_tel_on.png);
  }
}
.header.change-color__hamburger-button span {
  background-color: rgb(25, 76, 177);
}
.header__container {
  width: 1720px;
  max-width: 95%;
  height: 100%;
}
.header__content {
  height: 100%;
}
.header__content-inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  width: clamp(200px, 169.2px + 9.625vw, 354px);
  height: 100%;
  padding-top: 5px;
}
.header__logo h1 {
  width: 100%;
  aspect-ratio: 354/50;
}
.header__logo h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/hd_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.header__nav {
  height: 100%;
}
.header__nav-inner {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.header__nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, -57.57px + 6.592vw, 69px);
  height: 100%;
  margin-right: clamp(20px, -23.52px + 4.246vw, 58px);
}
.header__nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 11px;
}
.header__nav-list a {
  position: relative;
  font-size: clamp(13px, 9.564px + 0.335vw, 16px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.075em;
}
.header__nav-list a.current::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255);
}
.header__tel {
  height: 100%;
  margin-right: clamp(20px, -10.922px + 3.017vw, 47px);
}
.header__tel a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding-top: 10px;
}
.header__tel a span {
  font-size: clamp(20px, 8.547px + 1.117vw, 30px);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
}
.header__tel a::before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/19;
  background-image: url(../img/hd_icon_tel.png);
  background-size: cover;
}
.header__contact {
  height: 100%;
}
.header__contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: clamp(100px, 77.095px + 2.235vw, 120px);
  height: 100%;
  background-color: rgb(44, 105, 226);
  padding-top: 12px;
}
.header__contact a:hover, .header__contact a:active {
  background-color: rgb(255, 255, 255);
  opacity: 1;
}
.header__contact a:hover span, .header__contact a:active span {
  color: rgb(44, 105, 226);
}
.header__contact a:hover::before, .header__contact a:active::before {
  background-image: url(../img/hd_icon_mail_on.png);
}
.header__contact a span {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: rgb(255, 255, 255);
  letter-spacing: 0.075em;
  transition: 0.5s;
}
.header__contact a::before {
  content: "";
  display: block;
  width: 31px;
  aspect-ratio: 31/25;
  background-image: url(../img/hd_icon_mail.png);
  background-size: cover;
  transition: 0.5s;
}

/* header 1024px以下 */
@media screen and (max-width: 1024px) {
  .header {
    height: 60px;
  }
  .header__logo {
    padding-top: 0;
  }
  .header__nav {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 100vw;
    width: 100%;
    height: 100vh;
    background-color: #194cb1;
    opacity: 0;
    transition: 0.5s;
  }
  .header.active .header__nav {
    right: 0;
    opacity: 1;
  }
  .header__nav-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 1024px) and (max-height: 500px) {
  .header__nav-inner {
    justify-content: flex-start;
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-menu {
    flex-direction: column;
    gap: clamp(12px, 10.636px + 0.426vw, 15px);
    height: unset;
    margin-right: 0;
  }
  .header__nav-list a {
    font-size: clamp(20px, 17.273px + 0.852vw, 26px);
  }
  .header__tel {
    height: unset;
  }
  .header__contact {
    height: unset;
  }
  .header__contact a {
    width: 180px;
    height: 100px;
  }
  .header__hamburger-button {
    display: block;
    position: fixed;
    z-index: 120;
    top: 15px;
    right: 15px;
    width: 29px;
    height: 29px;
  }
  .header__hamburger-button span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(255, 255, 255);
    transition: 0.5s;
  }
  .header__hamburger-button span:nth-child(1) {
    top: 0px;
  }
  .header__hamburger-button span:nth-child(2) {
    top: 13px;
  }
  .header__hamburger-button span:nth-child(3) {
    top: 26px;
  }
  .header.change-color .header__hamburger-button span {
    background-color: rgb(25, 76, 177);
  }
  .header.active .header__hamburger-button span {
    background-color: rgb(255, 255, 255);
  }
  .header.active .header__hamburger-button span:nth-child(1) {
    transform: translateY(13px) rotate(-315deg);
  }
  .header.active .header__hamburger-button span:nth-child(2) {
    background-color: rgba(0, 0, 0, 0);
  }
  .header.active .header__hamburger-button span:nth-child(3) {
    transform: translateY(-13px) rotate(315deg);
  }
}
/* firstView */
.firstView__container {
  height: clamp(550px, 34.637px + 50.279vw, 1000px);
  background-image: url(../img/mainvisual_bg.jpg);
  background-size: cover;
}
.firstView__container-inner {
  display: flex;
  height: 100%;
}
.firstView__catchphrase {
  position: relative;
  width: 50%;
  height: 100%;
}
.firstView__catchphrase-inner {
  position: absolute;
  z-index: 50;
  top: clamp(153px, 9.844px + 13.966vw, 278px);
  right: clamp(10px, 0.838px + 0.894vw, 18px);
  width: 80.69%;
  aspect-ratio: 112 / 75;
  background-image: url(../img/main-visual_cp_01.svg);
  background-size: cover;
}
.firstView__img {
  position: relative;
  width: 50%;
  height: 100%;
}
.firstView__img-inner {
  position: absolute;
  right: 0;
  bottom: calc(-1 * clamp(25px, -3.631px + 2.793vw, 50px));
  width: 103.65%;
  aspect-ratio: 995/800;
  -webkit-clip-path: polygon(26% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(26% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.firstView__img-inner img {
  width: 100%;
  height: 100%;
}

/* firstView 1024px以下 */
@media screen and (max-width: 1024px) {
  .firstView__container {
    height: clamp(400px, 100px + 39.063vw, 500px);
  }
  .firstView__catchphrase-inner {
    top: clamp(95px, 4.529px + 11.765vw, 125px);
  }
}
/* firstView 768px以下 */
@media screen and (max-width: 768px) {
  .firstView__container {
    height: 600px;
    padding-top: 90px;
  }
  .firstView__container-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .firstView__catchphrase {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 80%;
    max-width: 250px; */
    width: 90%;.firstView__img
    max-width: 390px;
  }
  .firstView__catchphrase-inner {
    top: unset;
    right: unset;
    width: 100%;
  }

  .firstView__img {
    width: 95%;
  }

  .firstView__img-inner {
    right: unset;
    bottom: unset;
    width: 100%;
    -webkit-clip-path: polygon(26% 0%, 98% 0%, 98% 100%, -4% 100%);
    clip-path: polygon(26% 0%, 98% 0%, 98% 100%, -4% 100%);
  }

  video {
    width: 100%;
    height: auto;
  }
  /* .fvphotoArea .fvphotoArea-inner {
      opacity: 1;
  } */
  
  .fvphotoArea.move .fvphotoArea-inner::before {
    content: none;
  }
}
/* service */
.service__container {
  background: linear-gradient(108.5deg, #fff 0%, #fff 34%, #e5eeff 34%, #e5eeff 100%);
  padding: clamp(147px, 74.849px + 7.039vw, 210px) 0 clamp(98px, 49.899px + 4.693vw, 140px);
}
.service__container-inner {
  display: flex;
}
.service__img {
  display: flex;
  align-items: center;
  width: 60%;
  padding-left: clamp(50px, -4.263px + 11.587vw, 200px);
}
.service__img-inner {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: clamp(375px, -54.469px + 41.899vw, 750px);
  aspect-ratio: 749/697;
}
.service__img-inner .photoArea-inner {
  width: 100%;
  height: 100%;
}
.service__img-inner .photoArea-inner img {
  width: 100%;
  height: 100%;
}
.service__text {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__text-inner {
  width: clamp(448px, 228.112px + 21.453vw, 640px);
  padding-top: clamp(12px, 6.274px + 0.559vw, 17px);
}
.service__text-inner h2 {
  font-size: clamp(56px, 28.514px + 2.682vw, 80px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.1em;
}
.service__text-inner h3 {
  font-size: clamp(14px, 7.128px + 0.67vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.2em;
}
.service__text-inner h4 {
  font-size: clamp(20px, 17.4px + 0.813vw, 33px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  margin-top: clamp(25px, 13.547px + 1.117vw, 35px);
  letter-spacing: 0.075em;
  line-height: 1.455;
  margin-bottom: clamp(14px, 7.128px + 0.67vw, 20px);
}
.service__text-inner p {
  font-size: clamp(14px, 11.709px + 0.223vw, 16px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  line-height: 2.25;
  letter-spacing: 0.092em;
}
.service__text-inner .read-more {
  margin-top: clamp(29px, 14.112px + 1.453vw, 42px);
}

/* service 1024px以下 */
@media screen and (max-width: 1024px) {
  .service__container {
    padding: clamp(105px, 85.936px + 5.957vw, 147px) 0 clamp(70px, 57.291px + 3.972vw, 98px);
  }
  .service__container-inner {
    flex-direction: column;
  }
  .service__img {
    order: 2;
    justify-content: center;
    width: 100%;
    padding-left: 0;
  }
  .service__img img {
    width: clamp(280px, 236.879px + 13.475vw, 375px);
    height: clamp(205px, 124.832px + 7.821vw, 275px);
  }
  .service__text {
    order: 1;
    width: 100%;
  }
  .service__text-inner {
    width: clamp(280px, 43.972px + 73.759vw, 800px);
    text-align: center;
    margin: 0 auto;
  }
  .service__text-inner h2 {
    font-size: clamp(50px, 44px + 1.875vw, 80px);
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: rgb(25, 76, 177);
    letter-spacing: 0.1em;
  }
  .service__text-inner h3 {
    font-size: clamp(14px, 7.128px + 0.67vw, 20px);
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    color: rgb(25, 76, 177);
    letter-spacing: 0.2em;
  }
  .service__text-inner h4 {
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    color: rgb(38, 38, 38);
    letter-spacing: 0.075em;
    line-height: 1.455;
    margin: clamp(25px, 13.547px + 1.117vw, 35px) 0 clamp(14px, 7.128px + 0.67vw, 20px);
    font-size: clamp(19px, 17.4px + 0.6vw, 30px);
  }
  .service__text-inner p {
    font-size: clamp(14px, 11.709px + 0.223vw, 16px);
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    color: rgb(38, 38, 38);
    line-height: 2.25;
    letter-spacing: 0.092em;
  }
  .service__text-inner .read-more {
    margin: clamp(29px, 14.112px + 1.453vw, 42px) auto 40px;
  }
}
/* service 768px以下 */
@media screen and (max-width: 768px) {
  .service__img {
    max-width: 90%;
    margin: 0 auto;
  }
}
/* works */
.works__container {
  padding: clamp(60px, 48px + 3.75vw, 120px) 0 clamp(66px, -8.441px + 7.263vw, 131px);
  background-image: url(../img/works_bg.jpg);
  background-size: cover;
}
.works__text {
  text-align: center;
}
.works__text h2 {
  font-size: clamp(56px, 28.514px + 2.682vw, 80px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.1em;
}
.works__text h3 {
  font-size: clamp(14px, 7.128px + 0.67vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.2em;
}
.works__text h4 {
  font-size: clamp(25px, 20px + 1.563vw, 50px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  letter-spacing: 0.075em;
  line-height: 1.455;
  margin: clamp(22px, 17.8px + 1.313vw, 43px) 0 clamp(11px, 8.8px + 0.688vw, 22px);
}
.works__text p {
  font-size: clamp(14px, 12.8px + 0.375vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  line-height: 2;
  letter-spacing: 0.08em;
}
.works__img {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(38px, 30.6px + 2.313vw, 75px);
}
.works__img-inner {
  display: inline-block;
  overflow: hidden;
  position: relative;
  max-width: calc(33.3333333333% - 10px);
  aspect-ratio: 400/300;
}
.works__img-inner img {
  width: 100%;
  height: 100%;
}
.works .read-more {
  margin: clamp(41px, 32.8px + 2.563vw, 82px) auto 0;
}

/* works 768px以下 */
@media screen and (max-width: 768px) {
  .works__img {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .works__img-inner {
    max-width: 100%;
  }
  .works__text p br {
    display: none;
  }
}
/* equipment-company */
.equipment-company {
  padding: clamp(72px, 57.6px + 4.5vw, 144px) 0 clamp(56px, 45px + 3.438vw, 111px);
}
.equipment-company__container-inner {
  display: flex;
}
.equipment-company__equipment {
  padding-right: clamp(35px, 17.821px + 1.676vw, 50px);
}
.equipment-company__company {
  padding-left: clamp(35px, 17.821px + 1.676vw, 50px);
}
.equipment-company__equipment, .equipment-company__company {
  width: 50%;
}
.equipment-company__equipment h2, .equipment-company__company h2 {
  font-size: clamp(40px, 32px + 2.5vw, 80px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.1em;
  text-align: center;
}
.equipment-company__equipment h3, .equipment-company__company h3 {
  font-size: clamp(14px, 7.128px + 0.67vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.2em;
  text-align: center;
}
.equipment-company__equipment p, .equipment-company__company p {
  font-size: clamp(14px, 13.2px + 0.25vw, 18px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  line-height: 1.6;
  letter-spacing: 0.075em;
  margin-top: clamp(20px, 16px + 1.25vw, 40px);
  padding-right: 2px;
}
.equipment-company__equipment .read-more, .equipment-company__company .read-more {
  margin: clamp(22px, 17.6px + 1.375vw, 44px) auto 0;
}
.equipment-company__img {
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 590/330;
  margin-top: clamp(19px, 15.2px + 1.188vw, 38px);
}
.equipment-company__img .photoArea-inner {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.equipment-company__img img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.equipment-company__img img:hover, .equipment-company__img img:active {
  transform: scale(1.1);
}

/* equipment-company 1024px以下 */
@media screen and (max-width: 1024px) {
  .equipment-company__container-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .equipment-company__equipment {
    padding-right: 0;
  }
  .equipment-company__company {
    padding-left: 0;
  }
  .equipment-company__equipment, .equipment-company__company {
    width: clamp(280px, 43.972px + 73.759vw, 800px);
    text-align: center;
  }
}
/* equipment-company 768px以下 */
@media screen and (max-width: 768px) {
  .equipment-company__equipment p br {
    display: none;
  }
}
/* recruit */
.recruit__container {
  position: relative;
  height: clamp(500px, 167.877px + 32.402vw, 790px);
}
.recruit__text {
  display: flex;
  justify-content: end;
  position: absolute;
  z-index: 2;
  left: 0;
  width: 47%;
  height: 100%;
  background-image: url(../img/recruit__text-bg.png);
  background-size: cover;
  padding: clamp(40px, -106.592px + 14.302vw, 168px) 3% clamp(40px, -81.397px + 11.844vw, 146px) 0;
}
.recruit__text-inner {
  width: clamp(448px, 228.112px + 21.453vw, 640px);
}
.recruit__text-inner h2 {
  font-size: clamp(40px, 32px + 2.5vw, 80px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
}
.recruit__text-inner h3 {
  font-size: clamp(13px, 11.6px + 0.438vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.2em;
}
.recruit__text-inner h4 {
  font-size: clamp(20px, 16px + 1.25vw, 40px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.075em;
  line-height: 1.455;
  margin: clamp(13px, 10.4px + 0.813vw, 26px) 0 clamp(15px, 12px + 0.938vw, 30px);
}
.recruit__text-inner p {
  font-size: clamp(14px, 12.8px + 0.375vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1.8;
  letter-spacing: 0.092em;
}
.recruit__text-inner .read-more--white {
  margin-top: clamp(28px, 22.4px + 1.75vw, 56px);
}
.recruit__img {
  position: absolute;
  z-index: 1;
  right: 0;
  width: 53.5%;
  height: 100%;
  padding-top: 90px;
}
.recruit__img-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.recruit__img-inner .photoArea-inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1050/700;
}
.recruit__img-inner .photoArea-inner img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* recruit 1024px以下 */
@media screen and (max-width: 1024px) {
  .recruit__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: unset;
    background-image: url(../img/recruit__text-bg.png);
    background-size: 130%;
    padding-bottom: 60px;
  }
  .recruit__text {
    justify-content: center;
    position: relative;
    left: unset;
    width: clamp(280px, 43.972px + 73.759vw, 800px);
    height: unset;
    -webkit-clip-path: unset;
            clip-path: unset;
    background-image: unset;
    padding: clamp(84px, 67.2px + 5.25vw, 168px) 0 0 0;
  }
  .recruit__text-inner {
    width: 100%;
    text-align: center;
  }
  .recruit__text-inner .read-more--white {
    margin: clamp(28px, 22.4px + 1.75vw, 56px) auto 0;
  }
  .recruit__img {
    position: relative;
    right: unset;
    width: clamp(280px, 43.972px + 73.759vw, 800px);
    height: unset;
    aspect-ratio: 1050/700;
    margin-top: 60px;
    padding-top: 0;
  }
  .recruit__img-inner .photoArea-inner {
    aspect-ratio: 1050/700;
  }
  .recruit__img-inner img {
    content: url("../img/recruit_sp.jpg");
  }
}
/* recruit 768px以下 */
@media screen and (max-width: 768px) {
  .recruit__text-inner p br {
    display: none;
  }
}
/* news-topics */
.news-topics {
  padding: clamp(25px, 3.2px + 6.813vw, 134px) 0 clamp(84px, 67.2px + 5.25vw, 168px);
}
.news-topics__container-inner {
  display: flex;
  flex-wrap: wrap;
}
.news-topics__title {
  width: 50%;
}
.news-topics__title h2 {
  font-size: clamp(30px, 24px + 1.875vw, 60px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.1em;
}
.news-topics__title h2 span {
  font-size: clamp(25px, 20px + 1.563vw, 50px);
}
.news-topics__title h3 {
  font-size: clamp(14px, 7.128px + 0.67vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.2em;
  margin-top: clamp(4px, 3.2px + 0.25vw, 8px);
}
.news-topics__read-more {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 50%;
  padding-top: 5px;
}
.news-topics__text {
  width: 100%;
  padding-top: clamp(34px, 27.2px + 2.125vw, 68px);
}
.news-topics__text ul {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 16px + 1.25vw, 40px);
}
.news-topics__text ul li a {
  display: flex;
  align-items: center;
  gap: clamp(14px, 11.2px + 0.875vw, 28px);
}
.news-topics__text ul li a time {
  font-size: clamp(13px, 12.4px + 0.188vw, 16px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  letter-spacing: 0.075em;
  padding-left: clamp(2px, 1.6px + 0.125vw, 4px);
}
.news-topics__text ul li a span {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(120px, 114px + 1.875vw, 150px);
  height: clamp(24px, 22.8px + 0.375vw, 30px);
  font-size: clamp(13px, 12.4px + 0.188vw, 16px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.075em;
  background-color: rgb(25, 76, 177);
  border-radius: calc(0.5 * clamp(24px, 22.8px + 0.375vw, 30px));
}
.news-topics__text ul li a p {
  font-size: clamp(13px, 12.4px + 0.188vw, 16px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  color: rgb(38, 38, 38);
  letter-spacing: 0.075em;
  line-height: 2;
}

/* news-topics 768px以下 */
@media screen and (max-width: 768px) {
  .news-topics__title {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .news-topics__read-more {
    order: 3;
    width: 100%;
    margin-top: 40px;
  }
  .news-topics__read-more .read-more {
    margin: 0 auto;
  }
  .news-topics__text {
    order: 2;
    width: 100%;
  }
  .news-topics__text ul {
    gap: 40px;
  }
  .news-topics__text ul li a {
    flex-wrap: wrap;
  }
  .news-topics__text ul li a p {
    display: inline-block;
    width: 100%;
  }
}
/* contact */
.contact__container {
  background-image: url(../img/contact_bg.jpg);
  background-size: cover;
  padding: clamp(45px, 36px + 2.813vw, 90px) 0 clamp(50px, 40px + 3.125vw, 100px);
}
.contact__title {
  width: 100%;
  text-align: center;
}
.contact__title h2 {
  font-size: clamp(30px, 24px + 1.875vw, 60px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.12em;
}
.contact__title h3 {
  font-size: clamp(14px, 7.128px + 0.67vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  color: rgb(255, 255, 255);
  letter-spacing: 0.2em;
  margin-top: clamp(4px, 3.2px + 0.25vw, 8px);
}
.contact__title h4 {
  font-size: clamp(14px, 7.128px + 0.67vw, 20px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  margin-top: clamp(17px, 13.6px + 1.063vw, 34px);
}
.contact__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(27px, 21.6px + 1.688vw, 54px);
}
.contact__tel {
  width: 50%;
  text-align: right;
  padding-right: clamp(18px, 14.4px + 1.125vw, 36px);
}
.contact__tel a {
  font-size: clamp(26px, 22.4px + 1.125vw, 44px);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: rgb(255, 255, 255);
  letter-spacing: 0.13em;
}
.contact__tel a span {
  font-size: clamp(22px, 19.2px + 0.875vw, 36px);
  letter-spacing: 0.1em;
}
.contact__contact {
  width: 50%;
  padding-left: clamp(25px, 20px + 1.563vw, 50px);
}
.contact__contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(280px, 256px + 7.5vw, 400px);
  height: clamp(70px, 64px + 1.875vw, 100px);
  font-size: clamp(18px, 16.4px + 0.5vw, 26px);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(25, 76, 177);
  letter-spacing: 0.12em;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  border-radius: calc(0.5 * clamp(70px, 64px + 1.875vw, 100px));
  transition: 0.5s;
}
.contact__contact a:hover, .contact__contact a:active {
  color: rgb(255, 255, 255);
  background-color: rgb(25, 76, 177);
}

/* contact 1024px以下 */
@media screen and (max-width: 1024px) {
  .contact__text {
    flex-direction: column;
    gap: 20px;
  }
  .contact__tel {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  .contact__contact {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-left: 0;
  }
}
/* footer */
.footer {
  background-color: rgb(19, 41, 85);
  padding: clamp(59px, 47.2px + 3.688vw, 118px) 0 clamp(25px, 20px + 1.563vw, 50px);
}
.footer__container-inner {
  display: flex;
  flex-wrap: wrap;
}
.footer__logo {
  width: 50%;
}
.footer__logo h2 {
  width: clamp(220px, 66.536px + 14.972vw, 354px);
  aspect-ratio: 354/50;
}
.footer__logo h2 img {
  width: 100%;
  height: 100%;
}
.footer__logo address {
  font-size: clamp(10px, 9.2px + 0.25vw, 14px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  margin-top: clamp(29px, 23.4px + 1.75vw, 57px);
}
.footer__nav {
  display: flex;
  justify-content: end;
  gap: clamp(39px, 31.4px + 2.375vw, 77px);
  width: 50%;
  padding-top: clamp(9px, 7.4px + 0.5vw, 17px);
}
@media screen and (max-width: 1550px) {
  .footer__nav {
    padding-right: 50px;
  }
}
.footer__nav-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 12.8px + 1vw, 32px);
}
.footer__nav-list {
  font-size: clamp(12px, 11.4px + 0.188vw, 15px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  color: rgb(255, 255, 255);
  letter-spacing: 0.075em;
}
.footer__copyright {
  width: 100%;
  text-align: right;
  margin-top: clamp(41px, 32.8px + 2.563vw, 82px);
}
.footer__copyright small {
  font-size: clamp(10px, 9.8px + 0.063vw, 11px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  color: rgb(255, 255, 255);
  letter-spacing: 0.05em;
}

/* footer 1024px以下 */
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 35%;
  }
  .footer__nav {
    width: 65%;
  }
}
/* footer 768px以下 */
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 100%;
    text-align: center;
  }
  .footer__logo h2 {
    margin: 0 auto;
  }
  .footer__nav {
    display: none;
  }
  .footer__copyright {
    text-align: center;
  }
}
/* page-top */
.page-top {
  position: absolute;
  z-index: 95;
  bottom: clamp(35px, 10px + 7.813vw, 160px);
  right: clamp(20px, 6.8px + 4.125vw, 86px);
}
.page-top a {
  display: inline-block;
  width: clamp(34px, 27.4px + 2.063vw, 67px);
  aspect-ratio: 67/200;
}
.page-top a:hover, .page-top a:active {
  opacity: 1;
}
.page-top a img {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */

/* WP構築後の細かい調整 */

video#myVideo {
		position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);align-content;
}

.fvphotoArea.move .fvphotoArea-inner .slick-list::before {
animation: barAnime forwards 1.5s 1 ease 0.1s normal;
			}

		figure.pc {
    display: block;
		margin: 2em 0 0;
		}
		figure.sp {
    display: none;
		}